@font-face {
  font-family: 'BourbonGrotesque';
  src: url('../fonts/bourbon-grotesque.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat Thin';
  src: url('../fonts/Montserrat-Light.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat regular';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-style: normal;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'BourbonGrotesque';
}

/* OFFER STRIP */
.offer-strip{
    width:100%;
    background:#7b3000;
    padding:0.5rem 0;
    text-align:center;
    font-size:1rem;
    color: #fff;
    font-weight:500;
    font-family: 'Montserrat Thin';
}

/* LOGO SECTION */
.logo-bar{
    width:100%;
    padding:1vh 0;
    display:flex;
    justify-content:center;
    align-items:center;
    background: #eaa918;
    border: 3px solid #7b3000;
}
.logo-bar img{
    width: 7vw;
    max-width: 250px;
}

/* SECTION */
.hero-section{
  display:flex;
  width:100%;
  min-height:80vh;
}

/* LEFT CONTENT */
.hero-left{
 width: 50%;
    background: #3b2d3a;
    color: #e9d9c9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0vw;
}

.hero-left h1{
  font-size:3vw;
  line-height:1.2;
  font-weight:800;
  letter-spacing:0.1vw;
  margin-bottom:2vh;
}

.hero-left p{
  font-size:1.2vw;
  line-height:1.6;
  max-width:40vw;
 font-family: 'Montserrat regular';
  font-weight:500;
}

.mobile-btn{
     display: none !important;
}

/* RIGHT IMAGE */
.hero-right{
  width:50%;
  height:80vh;
  background:url('../images/vvv.png') no-repeat center center/cover;
}

/* SECTION */
.guarantee{
    width:100%;
    padding:8vh 5vw;
    text-align:center;
    background:#e6d2b5;
}

/* BUTTON (TOP FIRST) */
.btn{
    display:inline-block;
    padding:1rem 3rem;
    background:#f25c13;
    color:#fff;
    font-size:1.1rem;
    font-weight:bold;
    border-radius:0.4rem;
    text-decoration:none;
    margin-bottom: 10vh;
    box-shadow:0 0.4vh 0 #b8430e;
    cursor: pointer;
}

/* CARD */
.card{
        width: 80%;
    margin:0 auto;
    background:#5f744b;
    padding: 15vh 3vw 13vh 3vw;
    border-radius:0.3rem;
    position:relative;
}

/* TOP LOGO */
.badge{
    position:absolute;
    top:-7vh;
    left:50%;
    transform:translateX(-50%);
    width:8vw;
    height:8vw;
    min-width:60px;
    min-height:60px;
}

/* TEXT */
.card h2{
    color:#f5e6c8;
    font-size:1.8rem;
    margin-bottom:2vh;
    letter-spacing:0.05em;
}

.card p{
    color:#f5e6c8;
    font-size:1.2rem;
    line-height:1.5;
    font-family: 'Montserrat Thin';
}

@media (max-width: 1024px){

  .hero-left h1{
    font-size:5vw;
  }

  .hero-left p{
    font-size:2vw;
    max-width:100%;
  }

}

/* --------------------
   MOBILE RESPONSIVE
--------------------- */
@media(max-width:768px){

    .logo-bar img {
        width: 20vw;
        max-width: 250px;
    }
    
      .hero-section{
    flex-direction:column;
  }

  .hero-left{
    width:100%;
    min-height:50vh;
    padding:8vw;
            text-align: center;
  }

  .hero-right{
    width:100%;
    height:50vh;
  }

  .hero-left h1{
    font-size:7vw;
  }

  .hero-left p{
    font-size:3.5vw;
  }
  
    /* Show mobile button */
  .mobile-btn{
    display: inline-block !important;
    margin-top: 4vh;
        margin-bottom: 3vh;
  }
  
  .guarantee .btn{
    display: none;
  }
  
  .guarantee {
    padding: 12vh 5vw 8vh 5vw;
}
  
  .card{
        width:90%;
        padding:7vh 5vw 3vh;
    }

    .badge{
        width:18vw;
        height:18vw;
        top:-5vh;
    }

    .card h2{
        font-size:1.4rem;
    }

    .card p{
        font-size:0.9rem;
    }

    .btn{
        font-size:1.4rem;
        padding:0.8rem 2rem;
    }
    


}

/* Footer */
footer {
    background-color: #000;
    padding: 15px 10px;
    text-align: center;
}

footer a, footer a:hover {
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 0px;
    font-size: 20px;
}


