:root {
  --dark-black: #252525;
  --black: black;
  --light-black: #333;
  --blue: #3071b9;
  --orange: #ed6c00;
  --white: white;
}

.nav-container {
  max-width: 1440px;
  border-bottom-width: 1px;
  border-bottom-color: rgba(255, 255, 255, .3);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 40px;
  display: flex;
  overflow: hidden;
}

.home-hero {
  height: 100vh;
  min-height: 650px;
  background-image: linear-gradient(351deg, rgba(48, 113, 185, .75), rgba(48, 113, 185, .79) 31%, rgba(237, 108, 0, .64) 56%, rgba(237, 108, 0, .33) 84%), url('../images/hero.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  display: flex;
}

.container-flex-vt {
  max-width: 1440px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.navbar {
  background-color: rgba(221, 221, 221, 0);
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.body {
  font-family: Poppins, sans-serif;
}

.h1 {
  color: var(--dark-black);
  text-align: center;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
}

.h2 {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.h2.top-margin {
  margin-top: 50px;
}

.h2.black {
  color: var(--black);
}

.nav-link {
  color: var(--light-black);
  font-size: 1.1rem;
  transition: all .2s;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link.w--current {
  color: var(--light-black);
}

.about {
  padding-top: 120px;
  padding-bottom: 120px;
}

.wrapper-hz {
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
}

.p {
  color: var(--light-black);
  font-size: 1.2rem;
  line-height: 1.5;
}

.image {
  border: 1px solid rgba(51, 51, 51, .2);
  padding: 10px;
}

.about-img-block {
  flex: 1;
  margin-right: 50px;
}

.about-cnt-block {
  width: 57%;
  margin-top: 100px;
}

.trust-us {
  background-color: rgba(233, 233, 233, .8);
  padding-top: 120px;
  padding-bottom: 120px;
}

.trust-img-block {
  flex: 1;
  margin-top: -29px;
  display: flex;
}

.trust-cnt-block {
  padding-left: 10px;
  padding-right: 10px;
}

.h3 {
  color: var(--dark-black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.3;
}

.html-embed {
  width: 80px;
  height: 80px;
}

.wrapper-vt-alt {
  width: 50%;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
}

.wrapper-hz--alt {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  margin-top: 60px;
  display: flex;
}

.photo-gallery {
  padding-top: 120px;
  padding-bottom: 120px;
}

.slider {
  width: 100%;
  height: 750px;
  margin-top: 60px;
}

.slide._1 {
  background-image: url('../images/slide1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide._2 {
  background-image: url('../images/slide2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide._3 {
  background-image: url('../images/slide3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide._4 {
  background-image: url('../images/slide4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact {
  background-color: rgba(48, 113, 185, .1);
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-info-wrapper {
  width: 100%;
}

.contact-info-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-left: 180px;
  padding-right: 180px;
  display: flex;
}

.contact-info-cont {
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.svg-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.text {
  color: var(--light-black);
  font-size: 1rem;
  line-height: 1.5;
}

.text.text-link {
  text-decoration: none;
  transition: all .2s;
}

.text.text-link:hover {
  color: var(--blue);
}

.wrapper-hz-contact {
  width: 100%;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
}

.contact-form-wrapper {
  width: 55%;
}

.map {
  overflow: hidden;
}

.footer {
  background-color: var(--orange);
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .h1 {
    font-size: 4rem;
  }

  .wrapper-hz {
    width: 100%;
    flex-flow: column;
    align-items: flex-start;
  }

  .about-img-block {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .about-cnt-block {
    width: 100%;
    margin-top: 40px;
  }

  .trust-cnt-block {
    width: 100%;
  }

  .wrapper-vt-alt {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .wrapper-hz--alt {
    width: 100%;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
  }

  .contact-info-wrapper {
    width: 100%;
  }

  .wrapper-hz-contact {
    flex-flow: column;
    justify-content: flex-start;
    margin-top: 40px;
  }

  .contact-form-wrapper, .map {
    width: 100%;
  }

  .logo {
    width: 200px;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: var(--orange);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
  }

  .nav-menu {
    background-color: #e2bf9a;
  }

  .footer {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .nav-container, .container-flex-vt {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h1 {
    font-size: 3rem;
  }

  .h2 {
    font-size: 2rem;
  }

  .p {
    font-size: 1.1rem;
  }

  .trust-img-block {
    margin-top: -20px;
  }

  .h3 {
    font-size: 1.4rem;
  }

  .html-embed {
    width: 60px;
    height: 60px;
  }

  .slider {
    height: 550px;
  }

  .contact-info-block {
    padding-left: 97px;
    padding-right: 97px;
  }

  .logo {
    width: 160px;
  }
}

@media screen and (max-width: 479px) {
  .nav-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .h1 {
    font-size: 2.7rem;
  }

  .h2.black {
    font-size: 1.9rem;
  }

  .h3 {
    font-size: 1.3rem;
  }

  .contact-info-block {
    padding-left: 0;
    padding-right: 0;
  }

  .logo {
    width: 140px;
  }
}


