html {
    scroll-behavior: smooth;
  }
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
hl{
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    text-transform: uppercase;
}
p{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
}
.header{
    height: 85vh;
    width: 100%;
    background-image: url(images/small/header_background.jpg);
    background-position: center;
    background-size: cover;
}
.header hl{
    color: #000;
    font-size: 3rem;
    padding-left: 2.5%;
}
nav{
    display: flex;
    padding: 5% 5%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 15vh;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 0.2rem 1rem;
    position: relative;
}
.nav-links ul li a{
    color: #000;
    text-decoration: none;
    font-size: 1em;
}
.nav-links ul li::after{
    content: "";
    width: 0%;
    height: 2px;
    background: #cf6824;
    display: block;
    margin: auto;
    transition: 0.2s;
}
.nav-links ul li:hover::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #cf6824;
    display: block;
    margin: auto;
}

.text-box{
    width: 20rem;
    max-width: 90%;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 47%;
    left: 66%;
    transform: translate(-50%, -50%);
}
.text-box p{
    margin: 0rem 0 1rem;
    font-size: 1.3em;
    text-shadow: 0px 0px 5px #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
@media screen and (max-width: 1081px) {
    .text-box{
        top: 55%;
        left: 50%;
    }
    .header{
        height: 70vh;
        width: 100%;
        background-image: url(images/small/header_background.jpg);
        background-position: center;
        background-size: cover;
    }
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 8px 18px;
    font-size: 15;
    background:#cf6824;
    position: relative;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.5s;
    vertical-align:middle;
    margin-bottom: 1.5rem;
}
.hero-btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.hero-btn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
.hero-btn:hover span {
    padding-right: 25px;
}
  
.hero-btn:hover span:after {
    opacity: 1;
    right: 0;
}
.offers{
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    background-color: #F9FBE7;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.offers div{
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: 1rem;
    width: 25rem;
}
.offers div p{
    margin-top: 1rem;
}
.offers div img{
    width: 100%;
    padding-bottom: 1rem;
}
.splide{
    background-color: #2F2F2F;
    color: #fff;
}
.splide_hl{
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.splide__track{
    padding-bottom: 1rem;
}
.splide img{
    height:120vw;
    max-height: 50vh ;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1081px) {
    .splide img{
        height:55vh;
        max-height: 75vh;
    }
}
.splide_bottom {
    background-color: #2F2F2F;
    padding-bottom: 3rem;
}
@media screen and (max-width: 1081px) {
    .about_me hl{
        font-size: 1.5rem;
        text-align: center;
    }
}
.about_me{
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    background-color: #F9FBE7;
    text-align: justify;
    padding-top: 5rem;
    padding-bottom: 4rem;
}
.about_me div{
    margin: 0.3rem 1rem 1rem 1em;
    width: 38rem;
    max-width: 85vw;
}
.about_me img{
    width: 28rem;
    max-width: 88vw;
    margin: 1rem;
}
.about_me p{
    margin-top: 1rem;
}
.form{
    height: max-content;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(images/small/form_background.jpg);
    background-position: center;
    background-size: cover;
}
.blank_div{
    width: 50vw;
    max-width: 30rem;
    margin: 1rem;
}
.form_div{
    width: 90vw;
    max-width: 44rem;
    background: #ffffff;
    padding: 3vw;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
    position: -webkit-sticky;
    left: 20%;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.form p{
    font-size: 1.1rem;
    max-width: 40rem;
    line-height: 2rem;
    color: #a0a0a0;
    font-weight: 500;
    margin: 1rem 0 2rem 0;
}
.form form{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.form input,
.form textarea{
    border: none;
    padding: 2%;
    width: 96%;
    margin: 0.1rem 0 1rem 0;
    font-size: 1.1rem;
    background: #eee;
}
.form textarea{
    resize: none;
    height: 10rem;
}
.form label{
    color: #a0a0a0;
}
.form input:focus,
.form textarea:focus{
    outline: none;
}

.form input::placeholder,
.form textarea::placeholder{
    color:#bababa
}
.form button{
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 0.8rem;
    font-size: 1.2rem;
    background-color: #ECCDB4;
    color:#000;
    border-radius: 0.5rem;
    transition: 0.3s;
}
.form button:hover{
    background-color: #e0b18a;
}
@media screen and (max-width: 800px) {
    .form_div{
        font-size: 1rem;
    }
    .form input,
    .form textarea{
        font-size: 1rem;
    }
    .form button{
        font-size: 1rem;
    }
}
.contact{
    padding-top: 3rem;
    background-color: #F9FBE7;
    text-align: center;
    padding-bottom: 3rem;
}
.contact p{
    margin-top: 1rem;
}