@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root{
    --red: #ee3623;
}

*{
    font-family: "Nunito", serif;
    border: none; outline: none;
    padding: 0; margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 400;
    transition: .2s linear;
    text-transform: capitalize;
}

*::selection{
    background: var(--red);
    color: #fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    
    
}

.nav-toggle{
    transform: translateX(-30rem);
}

.btn{
    height: 3.5rem;
    width: 15rem;
    background: var(--red);
    color: #fff;
    border-radius: .5rem;
    font-size: 1.7rem;
    cursor: pointer;
    margin: 1rem 0;
    box-shadow: 0 .3rem .5rem var(--red);
    opacity: .7;
}

.btn:hover{
    opacity: 1;
}

.title{
    text-align: center;
    padding: 0rem 1rem;
    font-size: 2.5rem;
    color: #666;
    font-weight: 300;
}

.heading{
    text-align: center;
    padding: .5rem 1rem;
    padding-top: 2rem;
    font-size: 3.5rem;
    color: var(--red);
    text-transform: uppercase;
}

header .menu{
    position: fixed;
    top: 1.5rem; right: 2rem;
    font-size: 3.5rem;
    color: var(--red);
    background: #fff;
    box-shadow: 0 .1rem .3rem rgba(0,0,0,.3);
    padding: .3rem 1.4rem;
    cursor: pointer;
    z-index: 1000;
    overflow: hidden;
}

header .navbar{
    height: 100vh;
    width: 30rem;
    position: fixed;
    top: 0; right: 0;
    background: #111;
    display: none;
}

header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    height: 100%;
    list-style: none;
}

header .navbar ul li{
    margin: 1.4rem;
    animation: fadeIn .2s linear backwards;
    animation-delay: calc(.3s * var(--i));
}

@keyframes fadeIn{
    0%{
        transform: translateY(-8rem);
        opacity: 0;
    }
}

header .navbar ul li a{
    font-size: 3rem;
    color: #fff;
}

header .navbar ul li a:hover{
    color: var(--red);
}

.fa-times{
    transform: rotate(180deg) skew(-180deg);
}

.home{
    position: relative;
    min-height: 100vh;
    z-index: 0;
}

.home .video-contaniner video{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home .content{
    min-height: 100vh;
    width: 45rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(.5rem);
    text-align: center;
    padding: 2rem 3rem;
}

.home .content h1{
    font-size: 4rem;
    padding-top: 4vh;
    color: var(--red);
    font-weight: bold;
    text-transform: uppercase;
}

.home .content h3{
    font-size: 3rem;
    color: var(--red);
    font-weight: lighter;
}

.home .content .form-container form{
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.home .content .form-container form h3{
    font-size: 2.5rem;
    padding: 2rem 1rem;
    color: #333;
    font-weight: 400;
    text-transform: uppercase;
}

.home .content .form-container form span{
    font-size: 2rem;
    display: block;
    padding: 1.4rem 0;
    color: var(--red);
    text-align: left;
}

.home .content .form-container form input{
    height: 3.5rem;
    width: 100%;
    padding: 0 1rem;
    font-size: 1.5rem;
    background: #eee;    
}

.home .content .form-container form .btn{
    width: 15rem;
    background: var(--red);
    margin: 1.5rem 0;
}

.feature{
    background: #2C3A47;
}

.feature .title{
    color: #eee;
}

.feature .card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.feature .card-container .card{
    height: 45rem;
    width: 30rem;
    margin: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.feature .card-container .card img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.feature .card-container .card .info{
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: -100%; left: 0;
    background: linear-gradient(transparent, #000);
    padding: 0 2rem;
    padding-top: 85%;
}

.feature .card-container .card:hover .info{
    bottom: 0;
}

.feature .card-container .card .info h3{
    font-size: 3rem;
    color: #fff;
}

.feature .card-container .card .info .stars i{
    font-size: 1.5rem;
    color: var(--red);
    padding: 1rem 0;
}

.feature .card-container .card .info p{
    font-size: 1.5rem;
    color: #eee;
}

.about .row{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 2rem auto;
    padding: 2rem;
}

.about .row .image img{
    height: 60vh;
    width: 40wh;
}

.about .row .content h3{
    font-size: 3rem;
    color: var(--red);
}

.about .row .content p{
    font-size: 1.7rem;
    color: #666;
    padding: 1rem 0;
}

.about .box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.about .box-container .box{
    margin: 2rem;
    height: 15rem;
    width: 25rem;
    border-radius: 1rem;
    background: var(--red);
    text-align: center;
    color: #fff;
}

.about .box-container .box i{
    font-size: 5rem;
    margin: 2rem 0;
}

.about .box-container .box h3{
    font-size: 2rem;
}

.gallery {
    background: #f9f9f9;
}

.gallery .box-container{
    padding: 4rem 0;
}

.gallery .box-container .box{
    width: 75%;
    margin: 4rem auto;
    border-radius: .5rem;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.gallery .box-container .box .image{
    height: 25rem;
    width: 50%;
}

.gallery .box-container .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery .box-container .box .content{
    height: 100%;
    width: 50%;
    padding: 2rem;
}

.gallery .box-container .box:nth-child(even){
    flex-flow: row-reverse;
}

.gallery .box-container .box:nth-child(even) .content{
    text-align: right;
}

.gallery .box-container .box .content h3{
    color: var(--red);
    font-size: 3rem;
}

.gallery .box-container .box .content p{
    color: #666;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.review .box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.review .box-container .box{
    width: 30rem;
    text-align: center;
    padding: 0 2rem;
    margin: 4rem 1.5rem;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.review .box-container .box i{
    font-size: 6rem;
    margin-top: -3rem;
    color: var(--red);
    opacity: .4;
}

.review .box-container .box p{
    color: #666;
    font-size: 1.3rem;
    padding: 2rem 0;
}

.review .box-container .box .user {
    display: flex;
    align-items: center;
    text-align: left;
    padding: .5rem 0;
    border-top: .1rem solid #3334;
}
.review .box-container .box .user img{
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    object-fit: cover;
    margin: .8rem 1rem;
}

.review .box-container .box .user .info h3{
    color: var(--red);
    font-size: 1.8rem;
}

.review .box-container .box .user .info span{
    color: #666;
    font-size: 1.5rem;
}

.newsletter{
    background: var(--red);
    padding: 3rem;
}

.newsletter .box{
    width: 100%;
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    background: #f9f9f9;
}

.newsletter .box h2{
    color: var(--red);
    font-size: 4rem;
}

.newsletter .box p{
    color: #666;
    font-size: 1.8rem;
}

.newsletter .box form{
    background: #eee;
    width: 60%;
    margin: 2rem auto;
    padding: .5rem 0;
    height: 5rem;
    border-radius: 5rem;
}

.newsletter .box form input[type="email"]{
    width: 71%;
    background: none;
    padding: .5rem;
    font-size: 1.5rem;
}

.newsletter .box form .btn{
    height: 90%;
    width: 26%;
    border-radius: 5rem;
    margin: .1rem 0;
    box-shadow: none;
}

.contact {
    background: #2C3A47;
}

.contact .title{
    color: #eee;
}

.contact form{
    width: 80%;
    text-align: center;
    padding: 4rem 0;
    margin: 0 auto;
}

.contact form .inputBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .inputBox input{
    width: 49%;
    height: 4rem;
}

.contact form input, textarea{
    padding: 0 1rem;
    font-size: 1.7rem;
    margin: 1rem 0;
    color: #333;
}

.contact form textarea{
    width: 100%;
    padding: 1rem;
    resize: none;
}

.contact form .btn{
    box-shadow: none;
    color: #fff;
    opacity: 1;
}

.contact form .btn:hover{
    opacity: .8;
}

.footer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.footer .box{
    width: 30rem;
    margin: 2rem;
    text-align: center;
}

.footer .box:nth-child(1){
    text-align: left;
}

.footer .box h3{
    font-size: 3rem;
    color: var(--red);
    padding: 1rem 0;
}

.footer .box p{
    font-size: 1.5rem;
    color: #666;

}

.footer .box a{
    font-size: 2rem;
    color: #666;
    display: block;
    padding: .2rem 0;

}

.footer .box a:hover{
    text-decoration: underline;
}

.footer .credit{
    font-size: 2rem;
    padding: 2rem;
    margin-top: 1.5rem;
    text-align: center;
    color: #666;
}

.footer .credit span{
    color: var(--red);
}

.marketeru{
    position: fixed;
    bottom: 5rem; right: 5rem;
    z-index: 10000;
}

.marketeru .content i{
    width: 4.5rem;
    line-height: 4.5rem;
    height: 4.5rem;
    color: #ddd;
    background-color: #222;
    cursor: pointer;
    z-index: 10000;
    border: 1px solid #fff;
    border-radius: 5rem;
    margin-right: 1rem;
}

.marketeru .content div{
    font-size: 1.7rem;
    padding: 1rem 3rem;
    
    
    border-radius: .5rem;
    text-align: center;
    color: #ddd;
    background-color: #222;
    
    cursor: pointer;
    z-index: 10000;
    border: 1px solid #fff;

}

.marketeru .content a{
    color: #ddd;
}


@media (max-width:500px) {
    html{
        font-size: 50%;
    }

    .home .content{
        width: 100%;
    }

    .contact form{
        width: 90%;
    }

    .contact form .inputBox input{
        width: 100%;
    }
}


@media (max-width:768px) {
    html{
        font-size: 55%;
    }

    .about .row{
        flex-flow: column;
        width: 90%;
    }

    .about .row .image img{
        width: 90vw;
    }

    .gallery .box-container .box{
        flex-flow: column;
        width: 90%;
    }

    .gallery .box-container .box:nth-child(even){
        flex-flow: column;
    }

    .gallery .box-container .box .image{
        width: 100%;
    }

    .gallery .box-container .box .content{
        width: 100% ;
    }

    .gallery .box-container .box:nth-child(even) .content{
        text-align: left;
    }

    .newsletter .box form{
        width: 100%;
    }
        

}
