/* Section - About */
.container__about {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 500px;
  height: auto;
  color: #212121;
  background: linear-gradient(45deg,
      #0d0d0d 25%,
      #262626 35%,
      #404040 47%,
      #969415 49.8%,
      #ffffff 50%,
      #969415 50.2%,
      #404040 53%,
      #262626 65%,
      #0d0d0d 75%);
  background-size: 250% 250%;
  animation: backcolors 15s ease infinite;
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  position: relative;
  padding: 40px 0;
}

.content__about {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  min-height: 50vh;
}

.content__about section {
  margin-top: 30vh;
  margin-bottom: 60px;
  padding: 20px;
  min-height: 300px;
}

.about__img {
  width: 250px;
  height: 250px;
  display: block;
  margin: 0 auto 20px;
  object-fit: cover;
  background-color: #0d0d0db3;
  color: #F2B705;
  border: 5px ridge #F28705;
  border-radius: 18px;
  box-shadow: 3px 3px 4px #F2F2F2;
  transition: transform 0.3s ease-in-out;
}

.about__img:hover {
  transform: scale(1.03);
}

.content__about h3 {
  color: #f2b705;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.content__about p {
  color: #a6a6a6;
  font-size: 1.1rem;
  line-height: 1.6;
}

#mission {
  margin-bottom: 30vh;
}

@keyframes backcolors {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Responsive */
@media only screen and (min-width: 501px) and (max-width: 1024px) {
  .container__about {
    height: auto;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
  }

  .content__about {
    width: 90%;
  }

  .content__about section {
    min-height: 200px;
    margin-top: 20vh;
  }

  .about__img {
    width: 320px;
    height: 320px;
  }

  .content__about h3 {
    font-size: 2.2rem;
  }

  .content__about p {
    font-size: 1.4rem;
  }

  #mission {
    margin-bottom: 20vh;
  }
}

@media only screen and (min-width: 740px) and (max-width: 845px) and (orientation: landscape) {
  .about__img {
    width: 200px;
    height: 200px;
  }

  .content__about section {
    margin-top: 10vh;
  }

  .content__about h3 {
    font-size: 1.8rem;
  }

  .content__about p {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 500px) {
  .about__img {
    width: 100px;
    height: 100px;
  }

  .content__about h3 {
    font-size: 1.3rem;
  }

  .content__about section {
    margin-top: 15vh;
  }

  #mission {
    margin-bottom: 15vh;
  }
}

/* Styles for Large screens Full HD resolution _ 1920 px above */
@media only screen and (min-width: 1921px) {

  .about__img {
    margin-top: 85px;
  }

  .content__about h3 {
    font-size: 2.8rem;
  }

  .content__about p {
    font-size: 2.1rem;
    line-height: 1.3;
  }
}

/* Styles for Large screens 4 K resolution _ 3840 px above */
@media only screen and (min-width: 3840px) {
  .about__img {
    width: 600px;
    height: 600px;
    margin-top: 125px;
  }

  .content__about h3 {
    font-size: 4.8rem;
  }

  .content__about p {
    font-size: 4.1rem;
    line-height: 1.3;
  }
}