header{
    padding: 0 20px;
}

.menu-burger{
    display: none;
}

.menu-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    z-index: 55;    
    position: relative;
}

.menu-logo{
    /* float: left; */
    width: 162px;
    display: flex;
    justify-content: flex-start;
}

.site-nav{
    height: inherit;
    /* display: flex;
    align-items: center; */
}

.navbar{
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item{
    padding: 15px;
    height: inherit;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    position: relative;
    font-weight: 500;
    font-size: 18px;
    color: #414141;
}

.nav-item:hover{
    color: #0d6efd;
    /* border-bottom: 2px solid #0d6efd; */
    /* transition: all 0.2s; */
}

.nav-item::after{
    content: '';
    width: 0;
    height: 2px;
    background: #0d6efd;
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-item:hover::after{
    width: 100%;
    left: 0;
}

.vcenter{
    padding: 100px 0;
}

.vcenter img{
    padding: 15px 0;
}


.swiper-main-logo .swiper-slide{
    height: 100px;    
    overflow: hidden;
    border-radius: 14px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 25px;
}

.swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.portfolio-section{
    padding: 50px 0;
    margin-top: 50px;
    background: #f3f3f3;
}

.aboutUs{
    padding: 50px 0;
    background: url(../images/sw-bg-wave.svg) center center / cover, rgb(32, 34, 48);
    background-attachment: fixed, scroll;
}

.briefSection{
    padding: 50px 0;
    background: url(../images/sw-bg-wave.svg) center center / cover, rgb(147 158 233);
    background-attachment: fixed, scroll;
}

.contactUs{
    padding-top: 50px;
    padding-bottom: 50px;
}

footer{
    padding-top: 50px;
    background-color: #4660df;
}

.logo-footer{
    display: flex;
    align-items: center;
}

 .links{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style: none;
    padding: 0;
}

 .links li{
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.links li a{
    color: #fff;
    text-decoration: none;
    /* padding-left: 10px; */
}

.links svg{
    padding-right: 10px;
    height: 25px;
    width: 25px;
}

.footer-bottom{
    /* height: 70px; */
    margin-top: 25px;
    text-align: center;
    color: #fff;
    border-top: 1px dashed #fff;
}

.footer-bottom p{
    padding: 25px 0;
    margin: 0;
    font-size: 14px;
    font-weight: 200;
}

.content{
    min-height: 700px;
}



.scrollToTop{
    position: fixed;
    opacity: 0;
    z-index: 9999;
    right: 20px;
    bottom: 45%;
    transition: all 0.4s;
}

.visibleTop{
    opacity: 1;
}

.scrollButton{
    color: #414141;
    width: 30px;
    height: 30px;
}

.scrollButton:hover{
    color: #fd0d71;
    cursor: pointer;
}

.phoneslider{
    width: 250px;
    overflow: hidden;
    position: relative;
}

.bd-phone{
    position: relative;
    z-index: 999;
}

/* .phoneslider */

.phoneslider .bd-phone img{
    width: 250px;
    /* height: 100%; */
    object-fit: contain;
}

.stories-container{
    position: absolute;
    top: 0;
    padding: 40px 0 25px 0;
    /* bottom: 0; */
    left: 0.5em;
    z-index: 99;
    width: 235px;
    overflow: hidden;
    border-radius: 50px;
    background: #fff;
    height: 100%;
}

.phoneWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(../images/blob-3-2.svg) no-repeat;
    background-position: center;
}



/* .swiper-main-stories .swiper-slide{
    width: inherit;
    overflow: hidden;
}

.swiper-main-stories .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
} */



@media screen and (max-width: 768px) {
    .navbar{
        position: fixed;
        opacity: 0;
        top: 0;
        z-index: 99;
        left: -90%;
        height: 100vh;
        width: 80%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: center;
        transition: all ease-in 0.7s;
    }
    
    .menuVisible{
        left: 0;
        opacity: 100;
    }

    .navbar .nav-item{
        height: 70px;
        width: 95%;
    }
    
    .menu-burger{
        width: 25px;
        height: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        cursor: pointer;
    }

    .menuline{
        width: 100%;
        height: 3px;
        border-radius: 10px;
        background-color: #414141;
        transition: all ease-in 0.2s;
    }

    .boldLine{
        width: 120%;
    }

    .miniLine{
        width: 80%;
    }

}

@media screen and (max-width: 992px){
    .menu-header .nav-btn{
        display: none;
    }

    .stepWrapper{
        padding: 15px !important;
    }

    .step{
        margin-bottom: 15px;
    }

    .bigDigit{
        display: none;
    }

    .stepText{
        opacity: 1 !important;
    }
    .reverseBlock{
        flex-direction: column-reverse;
    }   
}

@media screen and (min-width: 992px) {
    .step{
        perspective: 500px;
    }

    .stepOver{
        transform: rotateX(0deg) rotateY(-20deg);
        transform-style: preserve-3d;
    }

    .stepOver:hover{
        transform: rotateX(0deg) rotateY(0deg);
        transform-style: preserve-3d;
    }

}

