.coverSection{
    width: 100%;
    overflow: hidden;
}
.mainCoverImage{
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("/src/mobileCompany.webp");
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.coverShadow{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color:rgb(72, 93, 136);
    opacity: .7;
}
.coverContentDiv{
    color: var(--bgClr);
    padding: 30px 25px;
    grid-template-rows: 1fr auto;
    gap: 80px;
}
.coverContentDiv p,.coverContentDiv h1{
    z-index: 10;
}
.coverInfoDiv{
    max-width: 500px;
    font-size: .85em;
}
.coverInfoTitle{
    animation: toRight 8s both infinite  ;
}
.coverMidInfo{
    animation: toRight 8s both infinite .4s ;
}
.coverDescText{
    animation: toRight 8s both infinite .8s ;
}
.gears{
    height: fit-content;
    max-width: 400px;
    justify-self: flex-end;
    width: 100%;
}
.gear{
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("/src/circle.png");
    background-size: 8em;
    width: 8em;
    height: 8em;
    position: relative;
}
.gear::after{
    background-image: url("/src/gear1.svg");
    width: 3em;
    height: 3em;
    content: "";
    background-size: 3em;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -1.5em;
    margin-top: -1.5em;
    opacity: .6;
    animation: rotate 10s linear infinite;
}

.gear1{
    margin-right: -4em;
}
.gear2{
    margin-top: -80px;
    transform: rotate(200deg);
    background-size: 12em;
    width: 12em;
    height: 12em;
}
.gear3{
    transform: rotate(35deg);
    margin-left: -5.2em;
    background-size: 10em;
    width: 10em;
    height: 10em;
}
.gear2::after{
    background-image: url("/src/gear2.svg");
    background-size: 5.4em;
    width: 5.4em;
    height: 5.4em;
    margin-left: -2.71em;
    margin-top: -2.71em;
    animation: rotate 12s linear infinite ;
}
.gear3::after{
    background-image: url("/src/gear3.svg");
    background-size: 4em;
    width: 4em;
    height: 4em;
    margin-left: -2em;
    margin-top: -2em;
    animation: rotate 5s linear infinite ;
}
.coverDescText{
    opacity: .9;
}
/* aboutUsSection */
.aboutUsGrid{
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin: 40px auto ;
    align-items: center;
    padding-left: 120px;
    max-width: 700px;
}
.aboutUsGrid h2 span{
    color: var(--blueClr1);
}
.aboutTitle{
    border: 2px solid var(--blueClr3);
    white-space: nowrap;
    height: fit-content;
    width: fit-content;
    transform: rotate(90deg);
    padding: 10px 110px 10px 20px;
    position: absolute;
    left: -60px;
    color: var(--blueClr3);
    opacity: .55;
    background-image: url("/src/blueInfo.svg");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 25px;
}
.aboutUsTag{
    position: relative;
}
.aboutUsTag::after{
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: var(--blueClr3);
    content: "";
}
.aboutPic{
    aspect-ratio: 1/.6;
    border-radius: 7px;
    display: none;
    animation: fadeIn .4s linear;
}
.readMore,.seeAllService{
    margin: 20px 0 0 auto;
    padding-right: 27px;
    transition: padding-right .4s;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 22px;
    background-image: url("/src/rightArrow.svg");
    color: var(--blueClr1);
}
.readMore:hover,.seeAllService:hover{
    padding-right: 30px;
}
/* swiper */
.servicesSection h2{
    padding-left: 35px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 25px;
    background-image: url("/src/service.svg");
}
.seeAllService{
    margin: 0;
}
.swiper {
    width: 100%;
    height: fit-content;
}
.servicesSwiper.firstload .swiper-wrapper{
    gap :10px;
    flex-direction:row;
    flex-wrap:wrap;
}
.servicesSwiper.firstload .serviceItem{
    width:100%;
}
.serviceItem{
    border-radius: 7px;
    overflow: hidden;
}
.serviceImage{
    aspect-ratio: 1.8/1;
    transition: transform .4s;
}
.serviceItem:hover .serviceImage{
    transform: scale(1.1);
}
.serviceInfo{
    background-color: var(--bgClr);
    padding: 15px;
    transform: translateY(-20px);
    border-radius: 7px;
}
.servicePagination{
    width: fit-content !important;
    margin: 0 auto;
}
.swiper-pagination-bullet{
    background-color: var(--blackOp1);
    height: 10px;
    width: 10px;
    transition: transform .4s;
}
.swiper-pagination-bullet-active{
    background-color: var(--blueClr1);
    transform: scale(1.2) !important;
}
.servicesSwiper.firstload .serviceItem:nth-child(n+2){
    display : none;
}
@media screen and (min-width:680px) {
    .servicesSwiper.firstload .swiper-wrapper{
        gap : 15px;
    }
    .servicesSwiper.firstload .serviceItem{
        width:calc(100% / 2 - 15px / 2);
    }
     .servicesSwiper.firstload .serviceItem:nth-child(n+2){
        display : unset;
    }
     .servicesSwiper.firstload .serviceItem:nth-child(n+3){
        display : none;
    }
}
@media screen and (min-width : 1000px) {
    .servicesSwiper.firstload .swiper-wrapper{
        gap :40px;
    }
    .servicesSwiper.firstload .serviceItem{
        width:calc(100% / 3 - 40px * 2 / 3);
    }
    .servicesSwiper.firstload .serviceItem:nth-child(n+3){
        display : unset;
    }
     .servicesSwiper.firstload .serviceItem:nth-child(n+4){
        display : none;
    }
}
@media screen and (min-width:869px) {
    .coverContentDiv{
        grid-template-columns: 1.6fr 1fr;
        grid-template-rows: 1fr;
        align-items: center;
        justify-content: space-between;
        aspect-ratio: 1/.5;
        max-height: 500px;
        gap: 20px;
    }
    .coverInfoDiv{
        font-size: 1.08em;
    }
    .gears{
        margin-top: 40px;
        font-size: 1.2em;
    }
    .mainCoverImage{
        background-image: url("/src/company.jpg");
    }
    
}
@media screen and (min-width:1000px) {
    .coverInfoDiv{
        font-size: 1.35em;
        max-width: 600px;
    }
    .gears{
        margin-top: 40px;
        font-size: 1.45em;
        max-width: 600px;
    }
    /* aboutUsGrid */
    .aboutUsGrid{
        padding-left: 150px;
        max-width: 800px;
        margin: 80px auto 80px 0;
    }
    .aboutUsSection{
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .aboutPic{
        display: -webkit-flex;
        display: flex;
        max-width: 500px;
        margin:0 auto;
    }
    /* swiper */
    .serviceImage{
        aspect-ratio: 1.65/1;
    }
}
@keyframes rotate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
@keyframes toRight {
    0% {
        opacity: 0;
        transform: translateX(2%);
    }
    10% {
        opacity: 1;
        transform: translateX(0%);
    }
    90% {
        opacity: 1;
        transform: translateX(0%);
    }
    95% {
        opacity: 0;
        transform: translateX(-2%);
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}