
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300;400;500;600;700&display=swap');
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}





a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

ul{
    padding: 0px;
    margin: 0px;
}

ul li{
    list-style-type: none;
}





:root{
    --main-color : #8d2232;
    --main-fonts : 'Poppins', sans-serif;
    --main-SecondColor : rgb(237, 168, 10);
    --main-Transparent-shadow-Color: rgb(255, 243, 214);
    --main-black-Color : rgb(110, 110, 110);
}



body{
    font-family: 'Montserrat', sans-serif;
   
}


/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--main-SecondColor);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--main-SecondColor);
  }






/* backgrond animation */
.context {
    width: 100%;
    position: absolute;
    top:50vh;
    
}

.context h1{
    text-align: center;
    color: #fff;
    font-size: 50px;
}


.area{
    background: var(--main-Transparent-shadow-Color);
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    width: 100%;
    height:100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: -1;

}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: var(--main-SecondColor);
    animation: animate 25s linear infinite;
    bottom: -150px;   
}

.circles li:nth-child(1){
    left: 5%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;

}


.circles li:nth-child(2){
    left: 6%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 2%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 3%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 90%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 92%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 95%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 85%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 98%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}
.circles li:nth-child(11){
    left: 50%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

.circles li:nth-child(12){
    left: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
    animation-duration: 11s;
}
.circles li:nth-child(13){
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 11s;
}
.circles li:nth-child(14){
    left: 30%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
    animation-duration: 11s;
}
.circles li:nth-child(15){
    left: 80%;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
    animation-duration: 11s;
}

.circles li:nth-child(16){
    left: 70%;
    width: 100px;
    height: 100px;
    animation-delay: 4s;
    animation-duration: 11s;
}

.circles li:nth-child(17){
    left: 60%;
    width: 100px;
    height: 100px;
    animation-delay: 3s;
    animation-duration: 11s;
}
.circles li:nth-child(18){
    left: 40%;
    width: 100px;
    height: 100px;
    animation-delay: 5s;
    animation-duration: 11s;
}
.circles li:nth-child(19){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 7s;
    animation-duration: 11s;
}

.circles li:nth-child(20){
    left: 25%;
    width: 120px;
    height: 120px;
    animation-delay: 8s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}


/* background animaton end */















.topHeader{
    background-color: #2d3436;
    color: #b2bec3;
    font-weight: 300;
}
.topHeader > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid red; */
}
.topHeaderItem{
    /* border: 1px solid red; */
    width: 35%;
}
.topHeaderItem i{
    font-size: 18px;
}
.phoneNumberBox i{
    margin-right: 10px;
}
.phoneNumberBox{
    text-align: center;
}
.emailAddressBox i{
    margin-right: 10px;
}
.emailAddressBox{
    text-align: right;
}

.socialMediaIconsLIst{
    display: flex;
    padding: 6px 0px;
}

.socialMediaIconsLIst a{
    /* border: 1px solid red; */
    color: #b2bec3;
    margin-right: 8px;
}



.main_header{
   
    display: flex;
    align-items: center;
    padding: 6px 50px;
   overflow: hidden;
   position: fixed;
   width: 100%;
   z-index: 11;
   background-color: white;
   background-attachment: fixed;
   box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.02)
}


.logoBox{
    animation-name: slideFromLeft;
    animation-duration: 1s;

}


@keyframes slideFromLeft {
       0%{
        margin-left: -100px;
        }100%{
            margin-left: 0px;
        }
}

.menu{
    animation-name: sliderFromRigh;
    animation-duration: 1s;
}

@keyframes sliderFromRigh {
        0%{
            margin-right: -100px;
        }100%{
            margin-right: 0px;
        }
}




.manuBOx{
    /* border: 1px solid red; */
    overflow: hidden;
    margin-left: auto;
    display: flex;
    align-items: center;
    /* width: 50px; */
}


.menu{
    /* border: 1px solid red; */
   
    position: absolute;
    right: -100%;
    transition: 0.5s;
}


.animate2{
    animation-name: slide1Up;
    animation-duration: 0.5s;
    opacity: 1;
    right: 100px;
}


@keyframes slide1Up {
    0%{
        opacity: 0;
         right: -100%
        
    }100%{
        opacity: 1;
        right: 100px;
    }
}



.manuBOx ul{
   margin: 0px;
   padding: 0px;
}
.manuBOx a{
    color: black;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    padding: 12px 8px;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s;
}
.manuBOx a::after{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0%;
    height: 2.5px;
    background-color: var(--main-SecondColor);
    transition: 0.5s;
}

.manuBOx a:hover::after{
    width: 100%;
}
.manuBOx a:hover{
    color: var(--main-color);
}

.manuBOx a li{
    list-style-type: none;
    display: inline;
}

#responsiveMenu{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: block;
    margin-left: auto;
    position: relative;
}
#responsiveMenu i{
    font-size: 30px;
    color: black;
}

.closeBtn::after{
    content: "X";
    padding: 0px !important;
    width: 100%;
    height: 100%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    font-weight: bold;
    font-family: var(--main-fonts) !important;
}



.menuBtn{
    transition: 0.5s;
}

.animateMenuBtn{
    animation-name: RotateMenuBtn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    transform: rotate(90deg);
    opacity: 1;
    display: none;
}



@keyframes RotateMenuBtn {
        0%{

        transform: rotate(0deg);
        opacity: 1;
        }100%{

            transform: rotate(90deg);
            opacity: 1;
        }
}









.heroSectionContnet{
    text-align: center;
    /* border: 1px solid red; */
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    animation-name: slideUp;
    animation-duration: 1s;
    opacity: 1;
    
}

@keyframes slideUp {
    0%{
        opacity: 0;
        margin-top: 200px;
    }100%{
        opacity: 1;
        margin-top: 0px;
    }
}




.heroSection{
    height: 100vh;
    /* border: 1px solid red; */
    color: white;
    position: relative;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background-color: white;
  
    
}


.heroSectionInnerBox{
    /* border: 1px solid red; */
    width: 100%;
    height: 100%;
    display: flex;
    color: var(--main-color);
    background-color: none;
}

.heroSectionBox{
    width: 50%;
    /* border: 1px solid red; */
}
.heroSectionBox1{
    position: relative;
}
.heroSectionBox1Content{
    /* border: 1px solid red; */
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    animation-name: slideForLeft;
    animation-duration: 1s;
    opacity: 1;
}

@keyframes slideForLeft {
    0%{
        left: 0%;
        opacity: 0;
    }100%{
        left: 50%;
        opacity: 1;
    }
}


.heroSectionBox1 h2{
    font-size: 80px;
    font-weight: 900;
    font-family: var(--main-fonts);
}
.heroSectionBox1 p{
    font-size: 20px;
    color: var(--main-black-Color);
}

.herSectionImg{
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* animation-name: slideUpAndDow;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate; 
     */
    padding: 80px 60px 0px 80px;
}

@keyframes slideUpAndDow {
    0%{
        margin-top: 20px;
    }100%{
        margin-top: 0px;
    }
}


.herSectionImg img{
    width: 100%;
}






.content_section{
    border-radius: 5px;
    /* box-shadow: 0px 0px 20px 10px rgba(255, 247, 228,1); */
    margin-top: 80px;
    margin-bottom: 80px;
    background-color: white;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
}

.secton_2_Title{
    width: 100%;
    padding: 50px;
}

.our_Services_title{
    display: flex;
    flex-direction: column;
  
}
.our_Services_title h1{
    text-align: center;
    font-size: 50px;
    background-color: white;
 
    /* border: 1px solid red; */
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 1;
    color: var(--main-color);
    font-weight: 700;
    /* border: 1px solid red; */
    width: 100%;
    padding: 20px 0px;
    box-shadow: 0px 15px 30px -33px var(--main-SecondColor)
    /* Nabi */
}






.servicesItemPictures{
    /* border: 1px solid red; */
    height: 300px;
    display: flex;
    overflow: hidden;
}


.servicesItemPicturesBox{
    width: 35%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.servicesItemPicturesBox img{
    width: 100%;
}

.our_services_peragraph{
    text-align: center;
   margin-top:  20px;
    text-align: center;
    font-size: 20px;
    color: var(--main-SecondColor);
}



/* content section
 */
.inner_section{
    margin: 80px 0px;
    text-align: center; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.OurServiceBox_2{
    display: flex;
    justify-content: space-between;
}

.OurServiceBox_2_col_2 img{
    width: 100%;
}
.OurServiceBox_2_innerCols{
    width: 50%;
    /* border: 1px solid red; */
}

.ourServicesContent{
    padding: 0px 30px;
}
.ourServicesContent h3{
    font-size: 50px;
    color: var(--main-color);
    font-weight: 600;
    text-align: left;
}
.ourServicesContent p{
    color: var(--main-SecondColor);
}
.ourServicesContent ul{
    text-align: left;
    color: var(--main-SecondColor);
    font-weight: 500;
    
    
}
.ourServicesContent ul li {
    list-style-type: none;
    padding: 5px 0px;
    font-size: 16px ;
}
.ourServicesContent ul li span{
    margin-right: 10px;
}

.ourService_Sec_3{
    flex-direction: row-reverse;
    /* border: 1px solid red; */
}

/* .ourService_Sec_4{
    flex-direction: row-reverse;
} */

.services_sec_5{
    flex-direction: row-reverse;
}

.services_section_7{
    flex-direction: row-reverse;
}

.services_section_9{
    flex-direction: row-reverse;
}
















.outerFooter{
    background-color: var(--main-SecondColor);
}


footer{
    color: white;
    font-weight: 500;
    /* border: 1px solid red; */
   
}

.footerBox{
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
}
.footerItem{
    /* border: 1px solid red; */
    width: 30%;

}
.footerItem h5{
    color: white;
    font-size: 15px;
    font-weight: bold;
}


.footerItem ul{
    margin: 0px;
    padding: 0px;
}
.footerItem ul li{
    list-style-type: none;
    margin: 10px 0px;
}

.footerItem1 ul li span:first-child{
    color: white;
}


.footerItem2{
    text-align: center;
}
.footerItem2 ul li a{
    text-decoration: none;
    color: white;
}
.footerItem2 ul li a:hover{
    text-decoration: none;
}

.footerItem3{
    text-align: left;
}
.footerItem3 input[type="text"]{
        width: 100%;
        padding: 8px;
        border-radius: 0px;
        border: none;
        color: black;
        border: none;
        margin-top: 20px;
        font-weight: 300;
}
.footerItem3 input[type="submit"]{
    background-color: white;
    text-transform: uppercase;
    border: none;
    padding: 6px 20px;
    color: white;
    margin-top: 10px;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.02);
    background-color: black;
    display: flex;
    margin-left: auto;
   
}
.footerItem3 input:focus{
    outline: none;
}

.copyRightSection{
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    align-items: center;
}
.copyRightSection span{
    font-weight: 300;
}
.footericons{
    /* border: 1px solid red; */
    justify-content: flex-end;
    
}

.footericons a{
    /* border: 1px solid red; */
    color: white;
    margin: 8px;
}
.footericons a:hover{
    text-decoration: none;
}
.footericons a i{
    margin: 0px;
}





/* UI cards */
.CardTem{
    width: 350px;
    margin: 20px;
    /* border: 1px solid red; */
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.03);
    transition: 0.5s;
  
}
.CardTem:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.cardImg img{
    width: 100%;
}
.cardInnerTem{
    /* border: 1px solid red; */
}
.cartContent{
    padding: 10px 0px;
}
.cartContent h6{
    font-size: 25px;
    font-family: var(--main-fonts);
    font-weight: bold;
    color: var(--main-SecondColor);
}









/* testimonial car desing */

.testimonialCard{
    /* border: 1px solid red; */
    display: block;
    justify-content: center;
    position: relative;
    margin-top: 20px;
    padding: 20px;
    margin-bottom: 25px;
}
.testimonialCard h3{
    font-family: var(--main-fonts);
    color: var(--main-SecondColor);
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}

.testimonialCard p{
    text-align: center;
    font-family: var(--main-fonts);
    padding: 0px 65px;
    font-size: 20px;
}
.testimonialImg{
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50px;
    margin: auto;

}
.testimonialImg img{
    width: 100%;
    height: 100%;
}
.testimonialContent .doubleQuote{
    display: block;
    color: var(--main-SecondColor);
    font-size: 50px;
    font-weight: bold;
    padding: 0px 15px;
    text-align: left;
}


.slick-dots{
    /* border: 1px solid red; */
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dots li button{
    font-size: 0px;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: none;
    border-radius: 50px;
    border: 1px solid lightgray;
}
.slick-dots li button:focus{
    outline: none;
}
.slick-dots .slick-active button{
    background-color: var(--main-SecondColor);
}

















/* Mobile Responsive desings */

@media only screen and (max-width: 1235px){
    .heroSectionBox1 h2{
        font-size: 60px;
    }
    .herSectionImg{
        padding-left: 10px;
    }
}





@media only screen and (max-width:995px){
    .herSectionImg{
        padding: 0px !important;
        padding: 50px;
        
    }
   
    .heroSectionBox1Content{
        padding-top:0px ;
        position: relative;
    }
     .heroSectionBox1{
        
        height: 350px;
     
    }
    

   
    .animate3{
        animation-name: animate3;
        animation-duration: 1s;
        right: 0% !important;

    }
    @keyframes identifier {
        0%{
            right: -100%;
        }100%{
            right: 0%;
        }
    }
    .menu{
        position: fixed;
        right: -100%;
        top: 0px;
        background-color: white;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .menu a{
        width: 100%;
        text-align: center;
        padding: 20px;
    }


    .heroSection{
        height: auto !important;
    }
    .heroSectionInnerBox{
        margin-top: 115px;
        flex-direction: column;
        text-align: center;
    }
    .heroSectionBox{
        width: 100%;
    }
    .heroSectionBox1 h2{
        font-size: 50px;
        text-align: center;
    }
}



@media only screen and (max-width:980px){
    .servicesItemPictures{
        height:  200px ;
    }
    .ourServicesContent h3{
        font-size: 30px !important;
    }
}

@media only screen and (max-width : 780px){

    .socialMediaIconsLIst {
        justify-content: center;
        /* border: 1px solid red; */
    }
    .emailAddressBox{
        /* border: 1px solid red; */
    }
    .emailAddressBox i{
        display: none;
    }
    .phoneNumberBox i{
        display: none;
    }

}

@media only screen and (max-width : 767px){
    .inner_section{
        margin-top: 0px;
    }
    .servicesItemPictures{
        height: 130px !important;
    }
    .secton_2_Title{
        padding:  20px !important;
    }
    .inner_section{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .OurServiceBox_2_innerCols{
        width: 100%;
    }
    .OurServiceBox_2_innerCols h3{
        text-align: center;
    }
    
}


@media only screen and (max-width: 650px){

    .our_Services_title h1{
        font-size: 8vw;
    }


    footer{
        margin-top: 30px;
    }
    .footerBox{
        flex-direction: column;
        text-align: center;
    }
    .footerItem{
        /* border: 1px solid red; */
        width: 100%;
    }

    .footerItem3 input[type="submit"]{
       display: block;
       margin: auto;
       margin-top: 10px;
    }
    .footerItem3 h5{
        /* border: 1px solid red; */
        text-align: center;
    }

    .copyRightSection{
        flex-direction: column;
        text-align: center;
        
    }
    .footericons{
        width: 100%;
        justify-content: center;
    }

}

@media only screen and (max-width:500px){
    .testimonialCard p{
        
        padding: 0px 0px;
       
    }
}



@media only screen and (max-width: 450px){
   
    .logoBox{
        /* border: 1px solid red; */
        flex-grow: 1;
    }

    .heroSectionBox1Content h2{
        font-size: 10vw;
    }
    .heroSectionBox1{
        height: 500px ;
    }
    
}
