@font-face {
  font-family: "SFMedium";
  src: url("../assets/fonts/SF-Pro-Display-Medium.otf") format("otf"), url("../assets/fonts/SF-Pro-Display-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "SFSemiBold";
  src: url("../assets/fonts/SF-Pro-Display-Semibold.otf") format("otf"), url("../assets/fonts/SF-Pro-Display-Semibold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "SFBold";
  src: url("../assets/fonts/SF-Pro-Display-Bold.otf") format("otf"), url("../assets/fonts/SF-Pro-Display-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "SFRegular";
  src: url("../assets/fonts/SF-Pro-Display-Regular.otf") format("otf"), url("../assets/fonts/SF-Pro-Display-Regular.woff") format("woff");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair";
  src: url("../assets/fonts/PlayfairDisplay-Regular.otf") format("otf"), url("../assets/fonts/PlayfairDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Goldie";
  src: url("../assets/fonts/Goldie_Blanket.otf") format("otf"), url("../assets/fonts/Goldie_Blanket.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "MontserratRegular";
  src: url("../assets/fonts/Montserrat-Regular.otf") format("otf"), url("../assets/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "MontserratBold";
  src: url("../assets/fonts/Montserrat-Bold.otf") format("otf"), url("../assets/fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.title {
  font-family: Playfair;
  font-size: 36px;
  font-weight: normal;
  color: #00316e;
}

.title-white {
  color: white;
}

.btn {
  font-family: SFSemiBold;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 40px;
  letter-spacing: 0.16em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
  outline: none;
}

.btn:hover {
  background-color: #3a858e;
  cursor: pointer;
}

.btn-blue {
  color: white;
  background-color: #23395d;
}

.btn-light-blue {
  background-color: #97c5c5;
  color: white;
}

.btn-lowercase {
  text-transform: lowercase;
}

.script-text {
  font-family: Goldie;
  font-size: 64px;
  color: #23395d;
}

.header {
  padding: 45px 0;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  background-color: white;
  position: relative;
  z-index: 19;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.website-logo-small {
  display: none;
}

.website-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.mobile-menu-btn {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 21px;
  width: 29px;
}

.mobile-menu-btn .mobile-menu-btn-line {
  height: 4px;
  width: 29px;
  background-color: #23395d;
  border-radius: 5px;
  -webkit-transition: .5s;
  transition: .5s;
}

.mobile-menu-btn-active .mobile-menu-btn-line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
}

.mobile-menu-btn-active .mobile-menu-btn-line:nth-child(2) {
  display: none;
}

.mobile-menu-btn-active .mobile-menu-btn-line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
}

.mobile-menu {
  display: none;
  -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;
  padding: 50px 0 20px 0;
  position: absolute;
  top: -300px;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 9;
  -webkit-transition: .5s;
  transition: .5s;
}

.nav-link {
  margin: 0 25px;
  font-family: SFSemiBold;
  text-decoration: none;
  font-size: 16px;
  color: #23395d;
  text-transform: uppercase;
  line-height: 19px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.mobile-nav {
  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;
  margin-bottom: 30px;
}

.mobile-nav-link {
  font-family: SFSemiBold;
  text-decoration: none;
  font-size: 16px;
  color: #23395d;
  text-transform: uppercase;
  line-height: 19px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 25px;
}

.mobile-nav-link:nth-child(1) {
  margin-top: 0;
}

.mobile-socials {
  border-top: 1px solid #EAEAEA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
}

.nav-link:hover {
  text-decoration: underline;
}

.contact-link {
  margin: 0 0 0 25px;
}

.nav-active {
  font-family: SFBold;
  text-decoration: underline;
}

.header-icons {
  position: absolute;
  right: 10px;
  top: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.header-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-icon-link {
  margin: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-section {
  height: 826px;
  background-image: url("../assets/images/hero-image-group.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: scroll-animation;
          animation: scroll-animation;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes scroll-animation {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 22px;
  }
  100% {
    bottom: 20px;
  }
}

@keyframes scroll-animation {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 22px;
  }
  100% {
    bottom: 20px;
  }
}

.intro-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 150px 0;
}

.intro-section .intro-image {
  -webkit-box-shadow: -10px 10px #23395d;
          box-shadow: -10px 10px #23395d;
}

.intro-section .intro-content {
  max-width: 596px;
  margin-left: 30px;
}

.intro-section .intro-content .intro-subtitle {
  font-family: SFRegular;
  font-style: italic;
  color: #00316e;
}

.intro-section .intro-content .intro-title {
  margin: 20px 0 30px 0;
}

.intro-section .intro-content .intro-text {
  font-family: SFRegular;
  font-size: 20px;
  color: #525252;
  line-height: 34px;
}

.intro-section .intro-content .intro-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.services-section .title {
  text-align: center;
  margin-bottom: 40px;
  font-family: MontserratBold;
}

.services-section .services-row {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services-section .services-row .services-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.services-section .services-row .services-column:nth-child(1) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.services-section .services-row .services-column:nth-child(2) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.services-section .services-row .service-card {
  max-width: 560px;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services-section .services-row .service-card .service-card-content {
  width: 100%;
}

.services-section .services-row .service-card .service-card-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
}

.services-section .services-row .service-card .service-card-top {
  height: 44px;
  width: 100%;
  margin-bottom: 15px;
}

.services-section .services-row .service-card .service-subtitle {
  font-family: SFSemiBold;
  font-size: 20px;
  color: #525252;
  text-align: center;
  letter-spacing: 0.17em;
  max-width: 370px;
  margin: 0 auto;
}

.services-section .services-row .service-card .service-title {
  font-family: Goldie;
  font-size: 86px;
  color: #525252;
  text-align: center;
}

.services-section .services-row .service-card .service-text {
  font-family: SFMedium;
  font-size: 20px;
  color: #525252;
  padding: 0 35px;
  margin-top: 20px;
}

.services-section .services-images {
  max-width: 1150px;
  width: 100%;
  margin: 25px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.testimonials-section {
  margin-top: 50px;
}

.testimonials-section .title {
  text-align: center;
  font-family: MontserratBold;
}

.testimonials-section .testimonials-container {
  max-width: 920px;
  margin: 30px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.testimonials-section .testimonial-card {
  padding: 30px 0px;
  border-radius: 5px;
  max-width: 450px;
  width: 100%;
  margin-top: 20px;
  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;
}

.testimonials-section .testimonial-card .testimonial-text {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-family: SFMedium;
  line-height: 170%;
  color: white;
}

.testimonials-section .testimonial-card .testimonial-name {
  font-family: Goldie;
  font-size: 86px;
  text-align: center;
  color: white;
  margin-top: 20px;
}

.get-in-touch-btn {
  margin: 70px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer {
  background-color: #3a858e;
}

.footer .footer-logo-container {
  padding: 35px 0;
}

.footer .footer-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer .footer-content-container .footer-content-column {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 380px;
}

.footer .footer-content-container .column-title {
  color: white;
  font-size: 20px;
  font-family: SFBold;
  margin-bottom: 10px;
}

.footer .footer-content-container .footer-info,
.footer .footer-content-container .footer-text {
  color: white;
  font-size: 18px;
  line-height: 170%;
}

.footer .footer-content-container .footer-info {
  font-family: SFMedium;
}

.footer .footer-content-container .footer-info a {
  color: white;
  text-decoration: none;
}

.footer .footer-content-container .footer-text a {
  font-family: SFRegular;
  color: white;
}

.footer .footer-content-container .footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 15px;
}

.footer .footer-content-container .footer-socials .footer-social-link {
  margin-left: 15px;
}

.footer .footer-content-container .footer-socials .footer-social-link:nth-child(1) {
  margin-left: 0;
}

.footer .footer-content-container .footer-nav {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer .footer-content-container .footer-nav .footer-nav-link {
  color: white;
  font-family: SFRegular;
  font-size: 18px;
  margin-top: 10px;
}

.footer .footer-content-container .footer-nav .footer-nav-link:nth-child(1) {
  margin-top: 0;
}

.footer .footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #97c5c5;
  padding: 15px 0;
  text-align: center;
  color: white;
  font-size: 12px;
  font-family: SFRegular;
}

.about-hero-section {
  height: 826px;
  background-image: url("../assets/images/hero-image-about.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-section-blue {
  background-color: #3a858e;
  padding: 40px 0;
}

.about-section-blue .container {
  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;
}

.about-section-blue .title {
  text-align: center;
}

.about-section-blue .about-subtitle {
  color: white;
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
  font-family: SFSemiBold;
}

.about-section-blue .about-section-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-top: 80px;
}

.about-section-blue .about-section-row .about-section-column {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 360px;
  width: 100%;
}

.about-section-blue .about-section-row .about-section-column .about-column-title {
  font-family: SFMedium;
  letter-spacing: 0.165em;
  color: #23395d;
  font-size: 20px;
  text-transform: uppercase;
  background-color: #eaeaea;
  padding: 10px 35px;
}

.about-section-blue .about-section-row .about-section-column .about-column-text {
  max-width: 350px;
  text-align: center;
  color: white;
  font-family: SFRegular;
  line-height: 19px;
  margin-top: 30px;
}

.about-section-white {
  margin: 80px 0 100px 0;
}

.about-section-white .title {
  text-align: center;
}

.about-section-white .about-section-white-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
}

.about-section-white .about-section-white-row .about-section-white-column {
  max-width: 525px;
  width: 100%;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about-section-white .about-section-white-row .about-section-white-column .column-title-blue {
  font-family: SFMedium;
  font-size: 20px;
  color: #23395d;
}

.about-section-white .about-section-white-row .about-section-white-column .column-text-blue {
  line-height: 19px;
  font-family: SFRegular;
  font-size: 16px;
  color: #525252;
  margin-top: 20px;
}

.about-btn {
  margin-bottom: 150px;
}

.faq-section {
  margin: 50px auto;
}

.faq-section .title {
  text-align: center;
}

.faq-section .faq-container {
  margin-top: 40px;
  position: relative;
}

.faq-section .faq-container .faq-question {
  padding: 15px 0;
  border-bottom: 1px solid #eaeaea;
}

.faq-section .faq-container .faq-question .faq-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.faq-section .faq-container .faq-question .faq-top .faq-title {
  font-family: SFBold;
  font-size: 22px;
  color: #23395d;
  margin: 10px 0;
}

.faq-section .faq-container .faq-question .faq-top .faq-arrow {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-section .faq-container .faq-question .faq-answer {
  overflow: hidden;
  height: 0;
  margin-top: 0;
  font-size: 16px;
  color: #525252;
  font-family: SFRegular;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 19px;
}

.hero-contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-contact .hero-contact-image {
  width: 100%;
  height: auto;
}

.hero-contact .hero-contact-title {
  position: absolute;
  z-index: 99;
  color: white;
  font-size: 46px;
  text-align: center;
  font-family: Playfair;
  font-weight: normal;
}

.contact-form-section {
  margin: 80px 0;
}

.contact-form-section .title {
  text-align: center;
}

.contact-form-section .contact-form-subtitle {
  font-size: 16px;
  color: #525252;
  line-height: 19px;
  text-align: center;
  font-family: SFRegular;
  max-width: 930px;
  margin: 50px auto 0 auto;
}

.contact-form-section .form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
}

.contact-form-section .form-container .form-info {
  max-width: 250px;
  width: 100%;
}

.contact-form-section .form-container .form-info .form-info-title {
  color: #23395d;
  font-family: SFRegular;
  font-weight: bold;
  font-size: 24px;
}

.contact-form-section .form-container .form-info .form-info-text {
  font-size: 18px;
  color: #525252;
  font-family: SFRegular;
  line-height: 170%;
}

.contact-form-section .form-container .contact-form {
  max-width: 760px;
  width: 100%;
}

.contact-form-section .form-container .contact-form .contact-form-title {
  font-family: SFRegular;
  font-weight: bold;
  font-size: 22px;
  color: #23395d;
}

.contact-form-section .form-container .contact-form .form {
  margin-top: 30px;
}

.contact-form-section .form-container .contact-form .form label {
  font-size: 24px;
  color: #23395d;
  font-family: SFRegular;
  font-weight: bold;
}

.contact-form-section .form-container .contact-form .form .form-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 30px 0;
}

.contact-form-section .form-container .contact-form .form .form-row input {
  border: 0.5px solid rgba(82, 82, 82, 0.3);
  background-color: white;
  height: 43px;
  border-radius: 5px;
  padding-left: 10px;
  outline: none;
  font-family: SFRegular;
  color: #525252;
  font-size: 16px;
}

.contact-form-section .form-container .contact-form .form .form-row input::-webkit-input-placeholder {
  color: rgba(82, 82, 82, 0.3);
  font-family: SFRegular;
  font-size: 16px;
}

.contact-form-section .form-container .contact-form .form .form-row input:-ms-input-placeholder {
  color: rgba(82, 82, 82, 0.3);
  font-family: SFRegular;
  font-size: 16px;
}

.contact-form-section .form-container .contact-form .form .form-row input::-ms-input-placeholder {
  color: rgba(82, 82, 82, 0.3);
  font-family: SFRegular;
  font-size: 16px;
}

.contact-form-section .form-container .contact-form .form .form-row input::placeholder {
  color: rgba(82, 82, 82, 0.3);
  font-family: SFRegular;
  font-size: 16px;
}

.contact-form-section .form-container .contact-form .form .form-row input:focus {
  border-color: #23395d;
}

.contact-form-section .form-container .contact-form .form .form-row #first-name,
.contact-form-section .form-container .contact-form .form .form-row #last-name {
  width: 49%;
}

.contact-form-section .form-container .contact-form .form .form-row input[type="email"] {
  width: 100%;
}

.contact-form-section .form-container .contact-form .form .form-row textarea {
  width: 100%;
  border: 0.5px solid rgba(82, 82, 82, 0.3);
  background-color: white;
  border-radius: 5px;
  padding: 5px 10px;
  outline: none;
  font-family: SFRegular;
  color: #525252;
  font-size: 16px;
  resize: none;
}

.contact-form-section .form-container .contact-form .form .form-row textarea::-webkit-input-placeholder {
  color: rgba(82, 82, 82, 0.3);
  font-family: SFRegular;
  font-size: 16px;
}

.contact-form-section .form-container .contact-form .form .form-row textarea:-ms-input-placeholder {
  color: rgba(82, 82, 82, 0.3);
  font-family: SFRegular;
  font-size: 16px;
}

.contact-form-section .form-container .contact-form .form .form-row textarea::-ms-input-placeholder {
  color: rgba(82, 82, 82, 0.3);
  font-family: SFRegular;
  font-size: 16px;
}

.contact-form-section .form-container .contact-form .form .form-row textarea::placeholder {
  color: rgba(82, 82, 82, 0.3);
  font-family: SFRegular;
  font-size: 16px;
}

.contact-form-section .form-container .contact-form .form .phone-number-row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contact-form-section .form-container .contact-form .form .phone-number-row input {
  margin-left: 15px;
  max-width: 130px;
}

.contact-form-section .form-container .contact-form .form .phone-number-row input:nth-child(1) {
  margin-left: 0;
}

.contact-form-section .form-container .contact-form .form .newsletter-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form-section .form-container .contact-form .form .newsletter-checkbox .checkbox-box {
  height: 15px;
  width: 15px;
  border: 0.5px solid rgba(82, 82, 82, 0.3);
  border-radius: 5px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form-section .form-container .contact-form .form .newsletter-checkbox .checkbox-box svg {
  display: none;
}

.contact-form-section .form-container .contact-form .form .newsletter-checkbox #newsletter:checked ~ .checkbox-box svg {
  display: block;
}

.service-container {
  margin: 80px auto;
}

.service-container .title {
  text-align: center;
  margin-bottom: 40px;
  font-family: MontserratBold;
}

.service-container p,
.service-container ul {
  font-family: SFRegular;
  font-size: 16px;
  line-height: 19px;
  color: #525252;
}

.service-container ul {
  padding-left: 30px;
}

.service-container ul li {
  margin: 10px 0;
}

.policy-container {
  margin: 60px auto;
}

.policy-container .title {
  text-align: center;
}

.policy-container p {
  font-family: SFRegular;
  margin-top: 50px;
  line-height: 19px;
}

@media screen and (max-width: 1200px) {
  .container, .intro-section, .services-section, .testimonials-section {
    padding: 0 20px;
    margin: 0 auto;
  }
  .hero-section, .about-hero-section {
    height: 550px;
  }
  .services-section .services-row {
    max-width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .services-section .services-row .services-column {
    width: 49%;
  }
  .services-section .services-row .service-card {
    max-width: 100%;
  }
  .services-images {
    max-width: 100%;
  }
  .services-images img {
    width: 49%;
  }
}

@media screen and (max-width: 1024px) {
  .intro-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 20px;
  }
  .intro-section .intro-content {
    margin-top: 40px;
  }
  .intro-section .intro-image {
    max-height: 500px;
  }
  .intro-section .intro-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .testimonials-section {
    padding: 50px 20px;
  }
  .testimonials-section .testimonial-card {
    max-width: 49%;
    padding: 30px 20px;
  }
  .about-section-blue .about-section-row .about-section-column .about-column-title {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .website-logo {
    display: none;
  }
  .website-logo-small {
    display: block;
  }
  .btn {
    font-size: 16px;
  }
  .website-nav, .header-icons {
    display: none;
  }
  .mobile-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-section, .about-hero-section {
    background-position: top;
    background-size: contain;
  }
  .hero-scroll {
    display: none;
  }
  .services-section .services-row .service-card .service-subtitle {
    max-width: 90%;
  }
  .about-section-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .about-section-row .about-section-column {
    max-width: 50%;
    margin-top: 60px;
  }
  .about-section-row .about-section-column:nth-child(1) {
    margin-top: 0;
  }
  .about-section-white-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-section-white-row .about-section-white-column {
    max-width: 90%;
    margin-top: 60px;
  }
  .about-section-white-row .about-section-white-column:nth-child(1) {
    margin-top: 0;
  }
  .service-container, .faq-section {
    padding: 50px 20px;
  }
  .contact-form-subtitle {
    padding: 0 20px;
  }
  .footer .footer-content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer-content-container .footer-content-column {
    margin-top: 50px;
  }
  .footer .footer-content-container .footer-content-column:nth-child(1) {
    margin-top: 0;
  }
}

@media screen and (max-width: 568px) {
  .title {
    font-size: 26px;
  }
  .hero-section {
    background-image: url("../assets/images/hero-image-mobile.png");
  }
  .intro-text, .service-text {
    font-size: 14px !important;
    line-height: 170%;
  }
  .intro-section .intro-image {
    max-width: 90%;
  }
  .intro-section .intro-content {
    margin-left: 0;
    max-width: 90%;
  }
  .services-row {
    -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;
  }
  .services-row .services-column {
    width: 90% !important;
    margin-top: 20px;
  }
  .services-row .services-column:nth-child(1) {
    margin-top: 20px;
  }
  .services-images {
    -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;
  }
  .services-images img {
    width: 90%;
  }
  .services-images img:nth-child(2) {
    margin-top: 20px;
  }
  .testimonials-container {
    -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;
  }
  .testimonials-container .testimonial-card {
    max-width: 90%;
  }
  .about-hero-section {
    background-image: url("../assets/images/hero-image-about-mobile.png");
  }
  .about-btn {
    max-width: 90%;
    text-align: center;
  }
  .contact-form-section {
    padding: 50px 20px;
  }
  .contact-form-section .form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact-form-section .contact-form {
    margin-top: 30px;
  }
  .contact-form-section .contact-form label {
    font-size: 20px !important;
  }
  .contact-form-section .contact-form .phone-number-row input {
    max-width: 30% !important;
  }
  .contact-form-section .contact-form .form-row .btn {
    margin: 0 auto;
  }
  .hero-contact-title {
    font-size: 46px;
  }
  .hero-contact-image {
    height: 550px !important;
    width: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: -320px 0px;
       object-position: -320px 0px;
  }
  .footer-logo-container img {
    max-width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */