* {
  box-sizing: border-box;
}
body {
  background: linear-gradient(to right, rgb(4, 234, 250), #fff);
}
#section-about-us {
  /* height: 100vh; */

  /* background: linear-gradient(to right, rgba(255,0,0,0.5), rgba(255,0,0,0.2)), url("../images/antalya.jpg"); */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  background-size: cover;
}
#section-about-us .container-about {
  width: 90%;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 4rem;
}
#section-about-us .container-about .row-about {
  display: flex;
  /* height: 50vh; */
  width: 100%;
  justify-content: space-around;
  align-items: center;
  /* border:1px solid #4ca1af; */
  border-radius: 10px;
  padding: 1rem;
  //background-color: rgba(0, 0, 0, 0.438);
 background: linear-gradient(to left, #000000, rgb(4, 234, 250));
  /* box-shadow: 2px 2px 2px 3px #4ca1af ; */
}
#section-about-us .container-about .row-about .col-about {
  width: 40%;
  height: 100%;

}

#section-about-us .container-about .row-about .col-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#section-about-us .container-about .row-about .col-about .about-us-title {
  color: black;
  border-bottom: 3px solid rgba(0, 0, 0, 0.466);
  padding-bottom: 1rem;
  text-align: center;
  color: #fff;
}
#section-about-us .container-about .row-about .col-about .about-us-text {
  color: #fff;
  padding-top: 1rem;
  padding-left: 1rem;
  line-height: 1.75;
}
.about-us-text::first-letter {
  margin-left: 15px;
}

@media screen and (max-width: 1024px) {
  #section-about-us .container-about .row-about {
    flex-direction: column;
  }
  #section-about-us .container-about .row-about .col-about {
    width: 70%;
  }
}
