@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap";html {
    font-family: poppins,sans-serif
}

.modal {
    max-width: 800px!important
}

.scrollbarLight::-webkit-scrollbar,.scrollbarDark::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

.scrollbarLight::-webkit-scrollbar-track {
    border-radius: 100vh;
    background: #e9e3e3
}

.scrollbarLight::-webkit-scrollbar-thumb {
    background: #797979;
    border-radius: 100vh;
    border: 5px solid #9c9fa1
}

.scrollbarLight::-webkit-scrollbar-thumb:hover {
    background: #cfd0d3
}

.no-scrollbar::-webkit-scrollbar {
    display: none
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none
}

.scrollbarDark::-webkit-scrollbar-track {
    border-radius: 100vh;
    background: #000
}

.scrollbarDark::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 100vh;
    border: 5px solid #4f4f4f
}

.scrollbarLight::-webkit-scrollbar-thumb:hover {
    background: #111
}

.linked {
    color: #fff!important
}

input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus {
    -webkit-text-fill-color: gray;
    transition: background-color 5000s ease-in-out 0s;
    background: 0 0!important
}

.is-active {
    color: #fa5252!important
}

.slick-slide {
    padding: 30px
}

.fillter-btn.is-checked {
    color: #fa5252
}

.mymix {
    min-height: 50vh;
    margin-left: -10px;
    margin-right: -10px
}

.three-col .isotop-item,.three-col .grid-sizer {
    width: 33.33%;
    padding: 0 10px
}

.two-col .isotop-item,.two-col .grid-sizer {
    width: 50%;
    padding: 0 10px
}

@media(max-width: 1199px) {
    .three-col .isotop-item,.three-col .grid-sizer {
        width:50%
    }
}

@media(max-width: 576px) {
    .three-col .isotop-item,.three-col .grid-sizer,.two-col .isotop-item,.two-col .grid-size {
        width:100%
    }
}

.three-col .isotop-item>div,.two-col .isotop-item>div {
    margin-bottom: 20px
}

.brand-img {
    max-width: 100%!important;
    width: auto!important;
    height: auto!important;
    overflow: hidden;
    text-align: center
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center
}

.owl-carousel .owl-stage .owl-item {
    padding: 20px 30px
}

.fix {
    display: none
}

.close {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 50px!important;
    height: 50px!important;
    top: -20px!important;
    right: -20px!important;
    border-radius: 50%
}

.close-light {
    background-image: url(../images/closelight.jpg)
}

.close-dark {
    background-image: url(../images/closeDark.png)
}

.modal a.close-modal {
    display: none
}

img.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: -70px
}

.about-text p {
    margin-top: 30px
}

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

a.logo-link span {
    margin-left: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #142e5d
}

a.header-button {
    display: flex;
    align-items: center;
    background-color: #143061;
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    justify-content: center
}

a.header-button img {
    margin-right: 10px
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 999999999999999999;
    display: flex
}

#preloader:before,#preloader:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

#preloader:after {
    left: auto;
    right: 0
}

#preloader .loader_line {
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s
}

.loader_line:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards
}

.loader_line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #999;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms
}

@keyframes lineheight {
    0% {
        height: 0%
    }

    100% {
        height: 100%
    }
}

@keyframes lineround {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%)
    }
}

.portfolio_list {
    min-height: 50vh
}

.preloaded .loader_line:after {
    opacity: 0
}

.preloaded .loader_line {
    opacity: 0;
    height: 100%!important
}

.preloaded:before,.preloaded:after {
    -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    animation: preloadedzero 300ms ease-in-out 500ms forwards
}

@keyframes preloadedzero {
    0% {
        width: 50%
    }

    100% {
        width: 0%
    }
}

@media only screen and (max-width: 992px) {
    .close {
        top:-45px!important;
        right: 5px!important;
        width: 40px!important;
        height: 40px!important
    }
}

.jquery-modal.blocker {
    z-index: 9999999999
}

.close {
    filter: invert(.9);
    transition: .3s
}

.close:hover {
    filter: invert(1)
}

a.play-store-btn {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px
}

@media only screen and (min-width: 1700px) {
    .scroll-hide-1700 {
        overflow:hidden
    }
}

@media(max-width: 1025px) {
    .mt-\[180px\] {
        margin-top:60px
    }
}

@media(max-width: 767px) {
    .sm-hidden {
        display:none!important
    }

    .header-button-wrapper {
        max-width: 300px;
        margin: 0 auto
    }

    footer {
        margin-top: 0
    }

    footer p {
        text-align: center
    }

    a.logo-link {
        flex-direction: column;
        margin: 0 auto 20px
    }

    a.logo-link span {
        margin-left: 0;
        padding-top: 10px
    }

    div.sidebar {
        margin-top: 30px;
        background-color: transparent;
        padding: 0
    }

    div.sidebar .sidebar-inner {
        padding-top: 0
    }

    .profile-details .profile-image {
        position: static;
        margin-top: 0;
        transform: none
    }

    .mobile-header {
        flex-direction: column
    }

    .profile-details {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        background-color: #fff;
        border-radius: 10px;
        -webkit-box-shadow: 5px 5px 5px 0 rgba(0,0,0,.25);
        -moz-box-shadow: 5px 5px 5px 0 rgba(0,0,0,.25);
        box-shadow: 5px 5px 5px 0 rgba(0,0,0,.25);
        padding: 10px;
    }

    .contact-info {
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        -webkit-box-shadow: 5px 5px 5px 0 rgba(0,0,0,.25);
        -moz-box-shadow: 5px 5px 5px 0 rgba(0,0,0,.25);
        box-shadow: 5px 5px 5px 0 rgba(0,0,0,.25);
        margin-top: 15px
    }

    .profile-details img {
        width: 80px;
        height: 80px;
    }

    .profile-details .user-info {
        width: calc(100% - 80px);
        text-align: left;
        padding-left: 15px;
        padding-right: 15px
    }

    .profile-details .user-info h3 {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0
    }

    .about-section>div {
        border-radius: 10px
    }

    .about-section>div>div {
        padding-top: 2rem;
        padding-bottom: 2rem
    }

    h2.about-title {
        font-size: 30px
    }

    h2.about-title:before {
        display: none
    }

    h2.about-title>span {
        padding: 0;
        background-color: transparent
    }

    .profile-details .user-info h2 {
        font-size: 20px;
        margin: 0
    }
}
