/*******************************
          ABOUT SECTION 
********************************/
.about-row .txt-col {
  display: flex;
  align-items: center;
}
.about-row .txt-col h4 {
  font-size: 20px;
}
.about-row .txt-col h1 {
  --f-size: 35px;
  font-size: var(--f-size);
  line-height: calc(var(--f-size) + 7px);
  color: var(--primary);
}

.about-row .img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-row .img-col img {
  flex-shrink: 0;
  max-width: 500px;
}


@media (max-width: 700px) {
  .about-row .txt-col h1 {
    --f-size: 30px;
  }

  .about-row .img-col img {
    max-width: 400px;
  }
}

/*******************************
BREAFDISC SECTION 
********************************/
.breafdisc-sec {
  background: linear-gradient(rgba(0, 0, 0, 0.686), rgba(0, 0, 0, 0.686)),
    url("../../images/Base.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.breafdisc-sec h2 {
  --f-size: 30px;
  color: white;
  font-size: var(--f-size);
  line-height: calc(var(--f-size) + 7px);
}

.breafdisc-sec p {
  color: white;
  font-weight: 200;
}

.breafdisc-sec .side-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  margin-top: 20px;
}

.breafdisc-sec .side-row .img-col img {
  border-radius: var(--radious-prim);
}

.breafdisc-sec .side-row .btn-prim {
  margin-right: 20px;
}

@media (max-width: 600px) {
  .breafdisc-sec h2 {
    --f-size: 25px;
  }

  .breafdisc-sec .side-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .breafdisc-sec .side-row .img-col img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}
