@font-face {font-family:'Poppins';src:url('/font/Poppins.ttf');}
@font-face {font-family:'FjallaOne';src:url('/font/FjallaOne.ttf');}

:root{
    /* --bodyClr : #f4f6f8; */
    --bodyClr : #f7f7f7;
    --bgClr :#fff;
    --whiteOp1:#ffffff2a;
    --whiteOp2:#ffffff46;
    --whiteOp3:#ffffff10;
    --blackOp1 : #1111117c;
    --blackOp2 : #11111159;
    --blackOp3 : #11111131;
    --blackOp4 : #11111121;
    --blackOp5 : #1111111A;
    --blackOp6 : #11111115;
    --blackOp7 : #111111c0;
    --blackOp8 : #1111110a;
    --darkBlueClr : #325ac2;
    --darkBlueOp1 : #4c5c8456;
    --darkBlueOp2 : #4c5c8427;
    --blueClr1 : #37a0f4;
    --blueClr2 : #2587d8;
    --blueClr3 : #2196f3;
    --blueOp1 : #379ff488;
    --blueOp2 : #379ff41f;
    --blueOp3 : #379ff411;
    --clr1:#111;
    --clr3:#333;
    --clr5:#555;
    --clr7:#777;
    --clrC:#ccc;
    --greenClr : #45b453;
    --greenClr2:#009688;
    --pinkClr :#e91e63;
    --purpleClr:#9545D2;
    --darkBlueClr2:#31576e;
    --darkBlueClr3:#334155;
    --darkBlueClr4:#2e3b4c;
    --darkBlueClr5:#6a7183;
    --redClr:rgb(231, 122, 103);
}
body,html{
    width: 100%;
    max-width: 100vw;
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--bodyClr);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}
a{
    text-decoration: none;
    color: unset;
}
p,h1,h2,h3{
    cursor: default;
}
li{
    list-style-type: none;
}
button{
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;

}
.btn{
    background-repeat: no-repeat;
    background-position: center;
    width: 35px;
    height: 35px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px transparent;
}
.container{
    width: 94%;
    margin: 0 auto;
    max-width: 1450px;
}
.flex{
    display: -webkit-flex;
    display: flex;
}
.flexCol{
    flex-direction: column;
}
.flexCenter{
    justify-content: center;
    align-items: center;
}
.alignStart{
    align-items: flex-start;
}
.justifyBetween{
    justify-content: space-between;
    align-items: center;
}
.alignCenter{
    align-items: center;
}
.grid{
    display: -ms-grid;
    display: -moz-grid;
    display: grid;
}
.grid2{
    grid-template-columns: 1fr 1fr;
}
.gap5{
    gap: 5px;
}
.gap10{
    gap: 10px;
}
.gap20{
    gap: 20px;
}
/* fontStyle */
.rtl{
    direction: rtl;
}
.ltr{
    direction: ltr;
}
.hideText{
    color: transparent;
    font-size: 0;
}
.enFont{
    font-family:"Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
}
.titleFont{
    font-family:"FjallaOne", Arial, Helvetica, sans-serif;
}
.textSize1{
    font-size: 2.2em;
}
.textSize2{
    font-size: 1.6em;
}
.textSize3{
    font-size: 1em;
    line-height: 1.5em;
}
.textSize4{
    font-size: .92em;
    line-height: 1.6em;

}
.textSize5{
    font-size: .8em;
    line-height: 1.6em;
}
.textSize7{
    font-size: .75em;
    line-height: 1.6;
}
.textSize6{
    font-size: 1.2em;
}
.textSize8{
    font-size: 1.4em;
}
.bold{
    font-weight: 600;
}
.mainTextClr{
    color: var(--darkBlueClr);
}
.textClr3{
    color: var(--clr3);
}
.textClr5{
    color: var(--clr5);
}
.textClr7{
    color: var(--clr7);
}
.textClrC{
    color: var(--clrC);
}
.whiteTextClr{
    color: var(--bgClr) !important;
}
.justifyText{
    text-align: justify;
}
/* styles */
.hideScrollBar::-webkit-scrollbar {
    display: none;
}
.hideScrollBar {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}
.fitImage{
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.rel{
    position: relative;
}
.mar10{
    margin-top: 10px;
}
.mar15{
    margin-top: 15px;
}
.mar20{
    margin-top: 20px;
}
.mar40{
    margin-top: 40px;
}
.op7{
    opacity: .7;
}
.op9{
    opacity: .9;
}
.blueBtn{
    color: var(--bgClr);
    background-color: var(--blueClr1);
    transition: background-color .4s;
    height: 40px;
    cursor: pointer;
    border-radius: 7px;
}
.blueBtn:hover{
    background-color: var(--blueClr2);
}
.redBtn{
    color: var(--bgClr);
    background-color: rgb(212, 68, 43);
    transition: background-color .4s;
    height: 40px;
    cursor: pointer;
    border-radius: 7px;
}
.redBtn:hover{
    background-color: rgb(170, 63, 44);
}
.btn{
    background-color: var(--bgClr);
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    transition: background-color .4s;
}
.btn:hover{
    background-color: var(--blackOp5);
}

/* header */
header{
    position: sticky;
    top: 0;
    background-color: var(--bgClr);
    z-index: 900;
}
.headerMainDiv{
    height: 50px;
    transition: height .5s;
}
.logo{
    color: var(--darkBlueClr);
    align-items: flex-end;
    font-size: 1.5em;
}
.logo span{
    font-size: .8em;
}
.menuBtn{
    background-size: 24px;
    background-image: url("/src/menu.svg");
}
.headerLinks{
    display: none;
    gap: 25px;
}
.headerLink{
    position: relative;
}
.headerLink::after{
    position: absolute;
    left: 0;
    bottom: -3px;
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--blueOp1);
    transition: width .4s;
}
.headerLink:hover::after{
    width: 100%;
}
.hasDropMenu{
    z-index: 985;
}
.dropDownMenu{
    position: absolute;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    background-color: var(--bgClr);
    transform: translateY(95%);
    pointer-events: none;
    z-index: 984;
    opacity: 0;
    transition: opacity .3s , transform .3s;
    padding: 5px;
}
.dropDownMenu a{
    padding: 10px 15px 10px 10px;
    margin: 0;
}
.dropDownMenu a:hover{
    background-color: var(--blackOp8);
}
.hasDropMenu:hover .dropDownMenu{
    opacity: 1;
    transform: translateY(100%);
    pointer-events: unset;
}
/* navigation */
.navigation{
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
    z-index: 901;
    width: 100%;
    height: 100dvh;
    background-color: var(--blackOp1);
}
.navigation.active{
    opacity: 1;
    pointer-events: unset;
    cursor: pointer;
}
.navMainDiv{
    position: fixed;
    right: 0;
    top: 0;
    height: 100dvh;
    width: 300px;
    background-color: var(--bgClr);
    transform: translateX(300px);
    transition: transform .4s;
    cursor: default;
}
.navMainDiv.active{
    transform: translateX(0);
}
.navBarCloserBtn{
    background-image: url("/src/close.svg");
    background-size: 16px;
    aspect-ratio: 1/1;
    min-height: 35px;
}
.navbarList{
    padding: 10px;
    height: 100dvh;
    overflow-y: auto;
    font-size: .9em;
}
.divider{
    width: 96%;
    height: 1px;
    background-color: var(--blackOp6);
    margin-left: auto;
    margin-right: auto;
}
.navBarLinks{
    gap: 10px;
}
.navBarLink{
    padding: 7px 5px 7px 35px;
    background-position: left 7px center;
    background-repeat: no-repeat;
}
.navBarLink.service{
    background-image: url("/src/service.svg");
    background-size: 18px;
}
.navBarLink.about{
    background-image: url("/src/info.svg");
    background-size: 18px;
    background-position: left 5px center;
}
.navBarLink.contact{
    background-image: url("/src/contact.svg");
    background-size: 17px;
}
.navBarLink.blogs{
    background-image: url("/src/blog.svg");
    background-size: 17px;
}
.serviceLabel{
    cursor: pointer;
}
.serviceInput{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 5px;
    top: 8px;
    pointer-events: none;
    background-image: url("/src/arrowDown.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    transition: transform .4s;
}
.serviceListDiv{
    background-color: var(--blackOp8);
    border-radius: 5px;
    padding: 0;
    max-height: 0;
    transition: max-height ease .4s;
    overflow: hidden;
}
.serviceInput:checked{
    transform: rotate(180deg);
}
.serviceInput:checked + .serviceListDiv{
    max-height: 600px;
    transition: max-height ease-in .4s;
    margin-top: 10px;
}
.serviceListDiv .serviceItem{
    border-radius: 0 !important;
    padding: 10px;
    border-bottom: 1px solid var(--blackOp8);
    margin: 0 5px;
    font-size: .85em;
}
/* footer */
footer{
    margin-top: 50px;
    background-color: var(--clr3);
}
.footerMainDiv{
    display: -ms-grid;
    display: -moz-grid;
    display: grid;
    padding: 30px;
    gap: 30px;
}
.connectList{
    gap: 7px;
}
.socialMediaIcon{
    width: 32px;
    height: 32px;
    background-color: var(--whiteOp3);
    border-radius: 50%;
    transition: background-color .4s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
}
.socialMediaIcon:hover{
    background-color: var(--whiteOp2);
}
.youtube{
    background-image: url("/src/youtube.svg");
}
.telegram{
    background-image: url("/src/telegram.svg");
}
.twitter{
    background-image: url("/src/twitter.svg");
}
.instagram{
    background-image: url("/src/instagram.svg");
}
.whatsapp{
    background-image: url("/src/whatsapp.svg");
    background-size: 18px;
}
@media screen and (min-width:769px) {
    .menuBtn,.navigation{
        display: none;
    }
    .headerLinks{
        display: flex;
    }
    .headerMainDiv{
        height: 65px;
        font-size: 1.04em;
    }
    .footerMainDiv{
        grid-template-columns: 1fr 1fr;
    }
    .logo{
        font-size: 1.9em;
    }
    .headerLogo{
        height :45px;
    }
}
@media screen and (min-width:968px) {
    .footerMainDiv{
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    .footerMainDiv > div{
        margin: 0 auto;
    }
}
@media screen and (min-width:1100px) {
    .footerMainDiv{
        grid-template-columns: 1fr 1fr 1fr 1fr;
        padding: 40px 0;
    }
}