@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,200;1,300;1,400;1,800&display=swap');
*{
     box-sizing: border-box; 
     margin: 0;
     padding: 0;
}
/* ##################html element styling########## */
body{
    font-family: Montserrat, sans-serif;
    line-height: 1.7;
}
ul li{
    list-style: none;
}
a{
    font-size: 1.6rem;
    text-decoration: none;
}
p ,li{
    font-size: 1.6rem;
    margin-bottom: 0.5em;
    letter-spacing: 0.15em;
}
h1 ,h2 ,h3{
    margin-bottom: 0.5em;
    letter-spacing: 0.15em;
    font-weight: 500;

}
/* ###########      utility classes     ############ */
.container{
    max-width: 1200px;
    width: 90%;
     margin: 0% auto;
}
.lg-heading{
    font-size:3.5rem;
}
.md-heading{
    font-size: 2.2rem;
}
.bg-dark{
    background-color: #263236;
}
.tex-red{
    color: #e63946;
}
.text-light{
    color: #f4f4f4;
}
.text-black{
    color: #333333;
}
.text-gray{
    color: #555555;
}
.btn{
    display: inline-block;
    padding: 0.5em 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0.5em 0;
}
.btn-primary{
    background-color: #fff;
    border-radius: 10em;
}
.btn-primary:hover{
    background-color: #dddd;
}
.btn-secondary{
    border: 2px solid #e63946;
    border-radius: 2.5em;
    color: #e63946;
    background-color: #ffff;
}
.btn-secondary:hover{
    background-color: #fcf3f2;
}
/* ##############        header styling        ##################/ */
html{
    font-size: 62.5%;
}
.header{
    position: relative;
    height: 95vh;
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) , url("../img/header-image.jpg") ;
    background-position: center;
    background-size: cover;
    background-repeat:  no-repeat;
}
.navbar {
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.navbar .logo{
    float: left;

}
.navbar .nav-items{
    float: right;
    margin-top: 1rem;
}
.navbar .nav-item{
    display: inline-block;
    padding: 1rem;
    text-transform: uppercase;
}
.navbar a:link,
.navbar a:visited{
    color: #f4f4f4;
}
.navbar a{
    padding-bottom: 0.3rem;
}
.navbar a:hover{
    border-bottom: 1px solid #fff ;
}
.navbar::after{
    content: "";
    display: block;
    clear: both;
}

/* ##################### header content styling ############# */
.header-content{
    position: absolute;
    text-align: center;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(rgba(0,0,0,0.2) rgba(0,0,0,0.2));
}

.header-content h1{
    text-transform: uppercase;
    font-weight: 700;
}
/* ############### showcase section styling##################### */
.showcase{
    background-color: #fff;
    padding: 10rem 0;
}
.row{
    height: 350px;
    box-shadow: 0px 0px 20px 0px #aaa;
}
.row1{
    margin-bottom: 10rem;
}
.row1 .img-box,
.row2 .text-box{
    float: left;
    width: 50%;
}
.row2 .img-box,
.row1 .text-box{
    float: right;
    width: 50%;
}
.row .img-box{
    height: 100%;
}
.row .text-box{
    padding: 3rem;
}
.row .img-box img{
    display: inline-block;
    width: 100%;
    height: 100%;

} 
.row ::after{
    content: "";
    display: block;
    clear: both;
}

/* ############### FEATURES SETION  STYLING ######################### */
.features{
    padding: 10rem 0;
}
.box-wapper{
    box-shadow: 0px 0px 20px 0px #aaa;
}
.box{
    width: 33.33333333%;
    float: left;
    padding: 2rem;
    text-align: center;
}
.box1{
    background-color: #263236;
    color: #fff;
}
.box2{
    background:linear-gradient(25deg,#d64c7f,#ee4758 50%);
    color: #fff;
}
.box3{
    background-color: #263236;
    color: #fff;
}
.box-wapper::after{
    content: "";
    display: block;
    clear: both;
} 
/* ##################### FOOTER STYLING ############## */
 .footer{
    background-color: #263236;
    color: #f4f4f4;
    padding: 2rem;
    text-align: center;
 }
.social-media-links i{
    margin: 2rem;
 }
 /* ################# ABOUT PAGE STYLINH ############################## */
 .about{
    padding: 5rem 0;
 }
.about-heading::after{
    content:"";
    border: 6px solid #e63946;
    display: block;
    width: 100%;
}
/* ######################## ABOUT WAPPER STYLING #################### */
.about-wapper{
    text-align: center;
    margin-top: 2rem;
}
.about-wapper .left{
    float: left;
    width: 50%;
}
.about-wapper .right{
    float: right;
    width: 50%;
}
.about-wapper::after{
    content: "";clear: both;
    display: block;
}
.about-wapper li::before{
    content: "\2713";
    color: #e63946;
    font-weight: bold;
    padding-right: 1rem;
}
/* ################### COUNT STYLING ####################### */
.counts{
    margin-top: 3rem;
}
.count-item{
    width: 25%;
    float: left;
    text-align: center;
}
.counts::after{
    content: "";
    display: block;
    clear: both;
}
.count-item span{
    font-size: 3rem;
    font-weight: 700;
    color: #e63946;
}
.count-item p{
    font-weight: 700;
    color: #555555;
    font-size: 1.5rem;
}
/* ######################### BANNER STYLING ################### */
.cta-banner{
    background:linear-gradient(25deg,#d64c7f,#ee4758 50%);
    color: #f4f4f4;
    padding: 1rem;
    box-shadow: 5px 5px 10px #00000046;
    margin-top: 3rem;
}
.cta-banner-left{
    width: 60%;
    float: left;
}
.cta-line{
    font-weight: 700;
    font-size: 2rem;
    margin-top: 1.5rem;
}
.cta-banner-right{
    width: 40%;
    float: right;
    text-align: right;
}
.cta-banner::after{
    content: "";
    display: block;
    clear: both;
}
.btn-cta{
    text-align: center;
    display: inline-block;
    font-weight: 700;
    font-size: 3rem;
    text-transform: uppercase;
    border: 4px solid white;
    padding: 0.3rem 2.5rem ;
    letter-spacing: 0.5rem;
    color: #f4f4f4;
}
/* ######################## CONTACT PAGE STYLING ############################### */
.contact-form{

    margin-top: 3rem;
    padding: 5rem 0;
    background-color: #f7f7f7;
}
.form-wapper .company-address{
    height: 760px;
    background-color: #fff;
    width: 49%;
    float: left;
    padding: 1rem;
}
.form-wapper .company-address i{
    display: inline-block;
    margin-right: 1rem;
}
.form-wapper .company-address h2{
    display: inline-block;
    text-transform: uppercase;

}
.form-wapper .address-group{
    margin-bottom: 3rem;
}
.form-wapper .company-address img{
    max-width: 90%;
    min-height: 40rem;
    object-fit: cover;
    object-position: right;
}
.form-wapper::after{
    content: "";
    display: block;
    clear: both;
}
/* ############################ FORM STYLING ###################### */
.form-wapper .form{
    background-color: #fff;
    width: 49%;
    float: right;
    font-size: 1.6rem;
    padding: 1rem;
    height: 760px;
}
.form h1::after{
    content: "";
    display: block;
    border: 4px solid #e63946;
    width: 100%;
}
.form-wapper label{
    display: block;
}
.form-wapper .form-input{
    padding: 0.5rem;
    width: 100%;
}
.form-wapper .form .form-group{
    margin-bottom: 1.2rem;
}
.form-wapper .form label::after{
    content: "* ";
    color: #e63946;
}
.form-wapper .form textarea{
    width: 100%;
    height: 315px;
    padding: 1rem;
}
.form-btn{
    font-size: 1.8rem;
    margin: 0  30%;
    padding: 0.5em 3em;
    font-size: 1.8rem;
    text-transform: uppercase;
    background-color: #e63946;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
}
/* ############################# MEDIA QUERIES ############################## */
@media (max-width: 500px){
    html{
        font-size: 50%;
    }
    .navbar .nav-items , .navbar .logo{
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }
    .header-content h1{
        display: none;
    }
    .row{
        height: auto;
        width: 100%;
    }
    .row .img-box, .row .text-box{
        float: none;
        text-align: center;
        width: 100%;
    }
    .features .box{
        float: none;
        width: 100%;
        text-align: center;
        box-shadow: 5px 5px 10px rgba(102,102,102 0.521);
    }
    .features .box2 , .box3{
        margin-top: 7rem;
    }
    .box-wapper{
        box-shadow: none;
    }
    .cta-banner-left,
     .cta-banner-right{
        float: none;
        width: 100%;
        text-align: center;
     }
     .form-wapper .company-address{
        float: none;
        width: 100%;
        height: auto;
        margin-bottom: 5rem;
        text-align: center;
     }
     .form-wapper .form{
        float: none;
        width: 100%;
        height: auto;
        text-align: center;
     }
}

@media(min-width:501px) and (max-widht:768px){
    html{
        font-size: 50%;
    }
    p{
        font-size: 1.8rem;
    }
    .navbar .nav-items , .navbar .logo{
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }
    .row{
        height: auto;
        width: 100%;
    }
    .row .img-box, .row .text-box{
        float: none;
        text-align: center;
        width: 100%;
    }
    .features .box{
        float: none;
        width: 100%;
        text-align: center;
        box-shadow: 5px 5px 10px rgba(102,102,102 0.521);
    }
    .features .box2 , .box3{
        margin-top: 7rem;
    }
    .box-wapper{
        box-shadow: none;
    }
    .cta-banner-left,
     .cta-banner-right{
        float: none;
        width: 100%;
        text-align: center;
     }
     .form-wapper .company-address{
        float: none;
        width: 100%;
        height: auto;
        margin-bottom: 5rem;
        text-align: center;
     }
     .form-wapper .form{
        float: none;
        width: 100%;
        height: auto;
        text-align: center;
     }

}
@media (min-width: 769px)and (max-width:1200px){
    html{
        font-size: 56.25%;
    }
    .row h2{
        font-size: 2.2rem;
        font-weight: 500;
    }
}
@media(orientation:landscape) and (max-height:500px){
    .header{
        /* width: ; */
        height: 90vmax;
    }
}
