body {
      color: #1e1e1e;
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', sans-serif;
    }



header {
    background-color: #000;
    color: #fff;
    font-size: 18px;
    padding: 8px 0;
}
a.logo-top img {
    max-width: 100%;
}

.logo img {
    max-width: 280px;
}

header svg {
    top: -3px;
    position: relative;
}

header a {
  color: #fff;
  text-decoration: none;
}
header a:hover {
  color: #e3c8b9;
  text-decoration: none;
}

.hero {
  position: relative;
        background: url(./img/hero.jpg) center / cover no-repeat;
        min-height: 645px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        color: #1e1e1e;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1250px;
      padding: 20px;
    }

    .hero-content h1 {
      font-family: "Cormorant Garamond", serif;
      font-weight: 700;
      font-size: 100px;
      line-height: 90px;
      color: #e3c8b9;
      position: relative;
      text-align: left;
      text-transform: uppercase;
    }


    .hero-content h1::after {
      content: "";
      position: absolute;
      height: 2px;
      width: 45px;
      max-width: 60%;
      background: #e3c8b9;
      bottom: 0;
      left: 0;
    }
    .hero-content h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 70px;
      color: #fff;
    }

    .hero-content p {
      text-align: left;
      font-size: 20px;
      color: #fff;
    }
    .hero-content p.bigger {
        font-size: 26px;
    }
    .btn-primary {
      background-color: #004aff;
      border: none;
      padding: 7px 30px;
      font-weight: 500;
      text-transform: uppercase;
      border-radius: 0;
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
    }

    .btn-primary:hover {
      background-color: #011e5e;
    }

    .text-section {
      background: linear-gradient(90deg, #dec1af, #eccfbd);
      color: #4a3f35;
      padding: 20px 20px;
      font-size: 18px;
    }
    .logos-section {
      background: linear-gradient(90deg, #dec1af, #eccfbd);
      color: #4a3f35;
      padding: 20px 0;
    }

    .text-section h3 {
      font-family: 'Montserrat', sans-serif;
        font-size: 40px;
        font-weight: normal;
    }


  section.text-section a {
    color: #4a3f35;
    font-size: 18px;
    text-decoration: none;
}

    footer {
      background-color: #1b2e72;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }
    .mobile-only{
        display: none;
    }
    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    .fade-in-up {
        opacity: 0;
        animation: fadeInUp 1s ease-out 0.5s forwards;
    }


.logos{
  max-height: 70px;
}

    @media (max-width: 1024px) {

      .hero {
        min-height: 60vh;
        background-position: center;
      }

      .hero-content h1 strong {
        font-size: 70px;
        line-height: 70px
        }

        header a{
          font-size:16px;
        }

}
    @media (max-width: 768px) {

      .hero {
        min-height: 60vh;
        background-position: center;
      }

  .hero-content h1,
  .hero-content h1 strong
   {
    font-size: 50px;
    line-height: 50px;
}

      .hero-content h2 {
        font-size: 40px;
      }
      header a{
        font-size:16px;
        text-align: left;
      }
      .text-section {
        font-size: 1.2rem;
      }
      .text-section h3 {
        font-size: 25px;
      }
      p{
        text-align: justify !important;
      }
      section.text-section a {
    color: #4a3f35;
    font-size: 16px;
    text-decoration: none;
}
      .mobile-only{
        display: inline;
      }

.col-xs-10{
  width: 80% !important;
}

.col-xs-2{
  width: 15% !important;
}
      .hide-on-xs {
   display: none !important;
 }

}
