@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;700;900&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  border: none;
  scroll-behavior: smooth;
  font-family: 'Barlow', sans-serif;
  background-color: #f8f8f8;
}

li {
  cursor: pointer;
  list-style: none;
}

header {
  overflow: hidden;
  margin: 0 auto;
  max-width: 1440px;
  background-image: url("../images/desktop/image-header.jpg");
  background-size: cover;
  background-position: center;
  height: 90vh;
}

header nav {
  z-index: 999;
  height: 80px;
  width: 100%;
}

header nav .nav-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

header nav .nav-section .left-nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .nav-section .right-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

header nav .nav-section .right-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav .nav-section .right-nav ul li {
  font-weight: 600;
  color: white;
  padding: 10px 18px;
}

header nav .nav-section .right-nav ul #cta {
  text-transform: uppercase;
  border-radius: 50px;
  background-color: white;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: black;
}

header nav .nav-section .right-nav #clickThis {
  display: none;
}

header .hero-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .hero-section .hero-heading {
  margin-top: 4em;
  margin-bottom: 3.5em;
}

header .hero-section .hero-heading h1 {
  text-align: center;
  font-family: 'Fraunces', serif;
  color: white;
  letter-spacing: 10px;
  font-weight: 900;
  font-size: 3rem;
}

main {
  max-width: 1440px;
  margin: 0 auto;
}

main .main-left-to-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .main-left-to-right .main-left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
}

main .main-left-to-right .main-left .text-main {
  width: 70%;
}

main .main-left-to-right .main-left .text-main h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 3.2rem;
  letter-spacing: 1px;
}

main .main-left-to-right .main-left .text-main p {
  font-size: 1.2rem;
  margin-bottom: 3.2rem;
  letter-spacing: 1px;
}

main .main-left-to-right .main-left .text-main a {
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: black;
  text-decoration: none;
  border-bottom: 3px double #fad400;
}

main .main-left-to-right .main-right {
  width: 50%;
  background-color: #fad400;
}

main .main-left-to-right .main-right img {
  height: 100%;
  width: 100%;
}

main .main-right-to-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

main .main-right-to-left .main-left {
  background-color: white;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .main-right-to-left .main-left .text-main {
  width: 70%;
}

main .main-right-to-left .main-left .text-main h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 3.2rem;
  letter-spacing: 1px;
}

main .main-right-to-left .main-left .text-main p {
  font-size: 1.2rem;
  margin-bottom: 3.2rem;
  letter-spacing: 1px;
}

main .main-right-to-left .main-left .text-main a {
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: black;
  text-decoration: none;
  border-bottom: 3px double #fe7867;
}

main .main-right-to-left .main-right {
  width: 50%;
  background-color: #fe7867;
}

main .main-right-to-left .main-right img {
  height: 100%;
  width: 100%;
}

main .top-to-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .top-to-bottom .top-left {
  background-color: #67d1bc;
}

main .top-to-bottom .top-right {
  background-color: #70d4ff;
}

main .top-to-bottom .top-left, main .top-to-bottom .top-right {
  width: 50%;
}

main .top-to-bottom .top-left .image, main .top-to-bottom .top-right .image {
  position: relative;
  width: 100%;
  height: 100%;
}

main .top-to-bottom .top-left .image img, main .top-to-bottom .top-right .image img {
  width: 100%;
  height: 100%;
}

main .top-to-bottom .top-left .image .text-image, main .top-to-bottom .top-right .image .text-image {
  width: 70%;
  text-align: center;
  position: absolute;
  top: 75%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main .top-to-bottom .top-left .image .text-image h1, main .top-to-bottom .top-right .image .text-image h1 {
  font-size: 2.5rem;
  font-family: 'Fraunces', serif;
  letter-spacing: 1px;
}

main .top-to-bottom .top-left .image .text-image p, main .top-to-bottom .top-right .image .text-image p {
  letter-spacing: 1px;
  margin-top: 1.75rem;
  font-size: 1rem;
}

main .top-to-bottom .top-left h1, main .top-to-bottom .top-left p {
  color: #25564b;
}

main .top-to-bottom .top-right h1, main .top-to-bottom .top-right p {
  color: #19536b;
}

.test-container {
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.test-container .test-heading {
  text-align: center;
  margin: 7.5rem 0;
}

.test-container .test-heading h1 {
  text-transform: uppercase;
  letter-spacing: 3.75px;
  font-size: 2rem;
  font-family: 'Fraunces', serif;
  color: gray;
}

.test-container .clients {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.test-container .clients .profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.test-container .clients .profile-pic img {
  width: 100%;
}

.test-container .clients p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  letter-spacing: .5px;
  line-height: 1.75rem;
  font-weight: 600;
}

.test-container .clients h2 {
  font-family: 'Fraunces', serif;
  margin-bottom: .25rem;
  font-weight: 600;
}

.test-container .clients h4 {
  color: gray;
  margin-bottom: 5rem;
}

.test-container .clients .speech {
  text-align: center;
}

.test-container .clients .client-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 .75rem;
}

.test-container .clients .client-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 .75rem;
}

.test-container .clients .client-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 .75rem;
}

.show-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.show-container .pic {
  width: 25%;
}

.show-container .pic img {
  width: 100%;
  height: 100%;
}

footer {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #7ce2d1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .logo-footer {
  margin-top: 3rem;
  text-align: center;
}

footer .logo-footer svg {
  fill: #25564b;
}

footer ul {
  margin: 2.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer ul li {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 1.75em;
  color: #25564b;
}

footer .social {
  width: 100%;
}

footer .social .icons {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .social svg {
  margin: 0 .75em;
}

@media (max-width: 1130px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  main .main-right-to-left .main-left .text-main {
    width: 80%;
  }
  main .main-right-to-left .main-left .text-main h1, p {
    margin-bottom: 2rem;
  }
  main .main-left-to-right .main-left .text-main {
    width: 80%;
  }
  main .main-left-to-right .main-left .text-main h1, p {
    margin-bottom: 2rem;
  }
}

@media (max-width: 765px) {
  .main-left-to-right, .main-right-to-left, .top-to-bottom, .testimonials {
    margin: 0 auto;
    max-width: 600px;
  }
  .show-container {
    width: 100%;
  }
  nav ul {
    position: relative;
    right: -200px;
    top: 120px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: white;
    width: 130px;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .afterOpen {
    position: relative;
    right: 0;
    top: 120px;
    width: 130px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: white;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.397);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.397);
  }
  header nav .nav-section .right-nav ul li {
    color: black;
    text-align: center;
  }
  header nav .nav-section .right-nav #clickThis {
    display: block;
  }
  main .main-left-to-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .main-left-to-right .main-left {
    text-align: center;
    width: 100%;
  }
  main .main-left-to-right .main-right {
    text-align: center;
    width: 100%;
  }
  main .main-right-to-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .main-right-to-left .main-left {
    text-align: center;
    width: 100%;
  }
  main .main-right-to-left .main-right {
    text-align: center;
    width: 100%;
  }
  main .top-to-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .top-to-bottom .top-left {
    width: 100%;
  }
  main .top-to-bottom .top-right {
    width: 100%;
  }
  main .main-left-to-right .main-left .text-main h1, p {
    margin-top: 3rem;
  }
  main .main-right-to-left .main-left .text-main h1, p {
    margin-top: 3rem;
  }
  main .main-left-to-right .main-left .text-main {
    margin-bottom: 3rem;
  }
  main .main-right-to-left .main-left .text-main {
    margin-bottom: 3rem;
  }
  .test-container .clients {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 400px) {
  header .hero-section .hero-heading h1, main .main-left-to-right .main-left .text-main h1, main .main-right-to-left .main-left .text-main h1 {
    font-size: 2.6rem;
  }
  main .top-to-bottom .top-left .image .text-image h1, main .top-to-bottom .top-right .image .text-image h1 {
    font-size: 2rem;
  }
  main .top-to-bottom .top-left .image .text-image, main .top-to-bottom .top-right .image .text-image {
    width: 80%;
  }
  main .top-to-bottom .top-left .image .text-image, main .top-to-bottom .top-right .image .text-image p {
    margin-top: .5em;
  }
}
/*# sourceMappingURL=style.css.map */