/* -------------ABOUT-------------- */

.about {
  display: flex;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 90px 0px 120px 0px;
  padding-left: 10%;
  background: black;
}

.about_description {
  width: 35%;
  margin-top: 40px;
  padding-right: 70px;

  text-align: left;
  color: #fff;
}

.about h2 {
  font-size: 6.4rem;
  font-weight: 300;
  font-family: 'Lato', sans-serif;

  line-height: 4.5rem;
  letter-spacing: 0.9rem;
}

.about h3 {
  margin-top: 68px;
  margin-bottom: 50px;

  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.8rem;
  letter-spacing: 0.2rem;
  white-space: nowrap;
}

.about p {
  letter-spacing: 0.12rem;
  line-height: 3.3rem;
}

.about_description-icon {
  width: 180px;
  height: auto;
  margin-top: 50px;
}

.about_description-icon a {
  position: relative;

  color: #fff;
  font-size: 2.2rem;
  font-weight: 100;
  text-decoration: none;
  text-transform: uppercase;
}

.about_description-icon a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  width: 100px;
  height: 100px;
  border: solid 2px #603813;
  border-radius: 50%;

  transition: .5s;
  transform: translateY(-50%);
  opacity: 1;
}

.about_description-icon a:hover::before {
  transform: translateY(-50%) translateX(100px);
  opacity: 0;
}

.about_img {
  width: 65%;
  height: auto;

  text-align: right;
}

.about_img img {
  width: 100%;
  height: auto;
}

@media(min-width:1550px) {
  .about {
    padding-left: 0%;
  }
}

@media(max-width:1100px) {
  .about_description {
    padding-right: 40px;
  }
}

@media(max-width:950px) {
  .about {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 1160px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 90px 0px 50px 45px;
  }

  .about_description {
    order: 2;
    width: 100%;
    padding-right: 45px;
    margin-top: 80px;

    text-align: left;
  }

  .about_img {
    order: 1;
    width: 100%;
    height: auto;
    
    text-align: right;
  }

  .about_img img {
    width: 85%;
    height: auto;
  }

  .about_description-icon {
    margin-left: auto;
  }
}

@media(max-width:670px) {
  .about {
    max-width: 670px;
    padding: 50px 0px 80px 25px;
  }

  .about_description {
    margin-top: 40px;
    padding-right: 25px;
  }

  .about h2 {
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 4.8rem;
    letter-spacing: 0.5rem;
  }

  .about h3 {
    margin-top: 30px;
    margin-bottom: 40px;

    font-size: 2.0rem;
    line-height: 3.8rem;
    letter-spacing: 0.2rem;
  }

  .about_img {
    order: 1;
    width: 100%;
    height: auto;

    text-align: right;
  }

  .about_img img {
    width: 87%;
    height: auto;
  }
}