
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/


/*** Common CSS Start ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.display-4,
.display-5,
.display-6 {
    font-weight: 600;
}

.wow,
.animated {
    animation-duration: 2s !important;
}
/*** Common CSS End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: 0;
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.btn-border-radius {
    border-radius: 25% 10%;
}

.img-border-radius {
    border-radius: 50% 20% / 10% 40%;
}

.title-border-radius {
    border-radius: 10% 30%;
}
/*** Button End ***/


/*** Topbar Start ***/
.topbar .top-info {
    font-size: medium;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

.topbar .top-link a:hover {
    background: var(--bs-secondary) !important;
}

.topbar .top-link a:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    /* font-size: 16px; */
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
        font-family: 'Fredoka', sans-serif;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/


/*** Hero Header ***/
.hero-header,
.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover !important;
}
/*** Hero Header ***/


/*** About Start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../img/about.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.video.border {
    border-radius: 50% 20% / 10% 40%;
}

.about {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/background.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** About End ***/


/*** service Start ***/
.service {
    background: linear-gradient(rgba(255, 72, 128, 0.05), rgba(255, 72, 128, 0.2));
}

.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    width: 100%;
    height: 100%;
    border-radius: 50% 20% / 10% 40%;
    transition: 0.5s;
    position: relative;
}

.service-content::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
    background: transparent;
    border-radius: 50% 20% / 10% 40%;
    transition: .5s;
}

.service-item:hover {
    border: 1px solid var(--bs-secondary) !important;
}

.service-item:hover .service-content::after {
    background: var(--bs-secondary);
    width: 100%;
    opacity: 1;
    z-index: 1;
}

.service-item .service-content .service-content-inner {
    position: relative;
    z-index: 2;
}

.service-item .service-content-inner i,
.service-item .service-content-inner p,
.service-item .service-content-inner a.h4 {
    transition: 0.5s;
}

.service-item:hover .service-content-inner i,
.service-item:hover .service-content-inner p {
    color: var(--bs-white) !important;
}
.service-item:hover .service-content-inner a.h4 {
    color: var(--bs-primary);
}

.service-item:hover .service-content-inner a.btn-primary {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.service-item .service-content-inner a.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Programs Start ***/
.program {
    background: linear-gradient(rgba(255, 72, 128, 0.1), rgba(255, 72, 128, 0.1));
}

.program .program-item .program-img .program-rate {
    position: absolute;
    width: 100px; 
    top: -20px; 
    left: 50%; 
    margin-left: -50px; 
    border-radius: 10% / 50%;
}

.program .program-item .program-text {
    padding-top: 150px; 
    margin-top: -125px;
}

.program .program-item .program-img img,
.program .program-item .program-teacher img,
.program .program-item:hover .program-text-inner a.h4 {
    transition: 0.5s;
}

.program .program-item:hover .program-img img,
.program .program-item:hover .program-teacher img {
    transform: scale(1.2);
}

.program .program-item:hover .program-text-inner a.h4 {
    color: var(--bs-primary) !important;
}
/*** Programs End ***/


/*** Events Start ***/
.events .events-item {
    width: 100%;
    height: 100%;
    border-radius: 30%;
    position: relative;
}

.events .events-item .events-inner .events-rate {
    position: absolute;
    width: 120px; 
    top: -20px; 
    left: 50%; 
    margin-left: -60px; 
    border-radius: 10% / 50%;
}

.events .events-item .events-inner .events-img .event-overlay {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}

.events .events-item .events-inner .events-img:hover .event-overlay {
    opacity: 1;
}

.events .events-item .events-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(77, 101, 249, .7);
    border-radius: 10px;
    transition: 0.5s;
}

.events .events-item:hover .events-img::after {
    height: 100%;
    opacity: 1;
}

.events .events-item .events-text a.h4,
.events .events-item .events-img img {
    transition: 0.5s;
}

.events .events-item:hover .events-text a.h4 {
    color: var(--bs-primary) !important;
}

.events .events-item:hover .events-img img {
    transform: scale(1.3);
}
/*** Events End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(77, 101, 249, .7);
    border-radius: 10px 10px 0 0;
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
    opacity: 1;
}

.blog .blog-item .blog-date-comments {
    padding-top: 150px !important; 
    margin-top: -125px;
}

.blog .blog-item .blog-img img,
.blog .blog-item .blog-content img,
.blog .blog-item .blog-text-inner a.h4 {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-content img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-text-inner a.h4 {
    color: var(--bs-primary);
}
/*** Blog End ***/



/*** Team Start ***/
.team .team-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.team .team-item .team-icon {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
}

.team .team-item .team-icon a.share-link {
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-icon a.share-link {
    opacity: 1;
}

.team .team-item .team-content,
.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    background: var(--bs-primary) !important;
    border-radius: 0 0 10px 10px;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content p {
    color: var(--bs-dark) !important;
}
/*** Team end ***/


/*** testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
    
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-secondary);
}
/*** testimonial End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, 1)), url(../img/background.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-galary-img img {
    width: 100%;
    border-style: dotted; 
    border-color: var(--bs-primary);
    transition: 0.5s;
}

.footer .footer-galary-img img:hover {
    transform: scale(1.2);
}

.footer-item a.text-body:hover {
    color: var(--bs-secondary) !important;
}
/*** Footer End ***/


/* Sino Soft CSS */
.sinoheader{
    /* width: 100%; */
        display: flex;
        justify-content: center;
        align-items: center;
        /* background: var(--bs-primary); */
        border-radius: 10px;
        line-height:5;
        margin:0 auto;
    
      }
    
    .sinoheader .menu > ul > li{
        display: inline-block;
        line-height: 50px;
        margin-left: 5px;
        
    }
    .sinoheader .menu > ul > li > a{
        font-weight: bold;
        color: rgba(0,0,0,.55);
        position: relative;
        text-transform: capitalize;
        transition: color 0.3s ease;
    }
    .sinoheader .menu > ul > li .sub-menu{
        position: absolute;
        z-index: 500;
        background-color:#ffffff;
        box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
        padding: 20px 30px;
        transition: all 0.5s ease;
        margin-top:25px;
        opacity:0;
        visibility: hidden;
    }
    @media(min-width: 992px){
    .sinoheader .menu > ul > li.menu-item-has-children:hover .sub-menu{
        margin-top: 0;
        visibility: visible;
        opacity: 1;
        border-radius: 10px;
        margin-top: 48px;
    }
    }
    .sinoheader .menu > ul > li .sub-menu > ul > li{
        line-height: 1;
    }
    .sinoheader .menu > ul > li .sub-menu > ul > li > a{
        display: inline-block;
        padding: 10px 0;
        font-size: 15px;
        color: var(--tertiary);
        transition: color 0.3s ease;
        text-decoration: none;
        text-transform: capitalize;
      font-weight: 400;
    }
    .sinoheader .menu > ul > li .single-column-menu{
        min-width: 280px;
        max-width: 350px;
    }
    .sinoheader .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
       line-height: 1;
       display: block; 
    }
    .sinoheader .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
        padding:10px 0;
        display: inline-block;
        font-size: 15px;
        color:#444;
        transition: color 0.3s ease;
        font-weight: bold;
        line-height: 2;
    }
    .sinoheader .menu > ul > li .sub-menu.mega-menu{ 
        left: 50%;
        transform: translateX(-50%);	
    }
    
    .sinoheader .menu > ul > li .sub-menu.mega-menu-column-4{
      max-width: 100vw;
      width: 100vw; 	
      display: flex;
      flex-wrap: wrap;
      padding:5px 0;
    }
    .sinoheader .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
      flex:0 0 25%;
      padding:0 15px;
    }
    .sinoheader .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
        font-size: 16px;
         color: var(--tertiary);
        font-weight: 500;
        line-height: 1;
        padding:10px 0;
    }
    .sinoheader .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
        text-align: center;
    }
    .sinoheader .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
        max-width: 100%;
        width: 100%;
        vertical-align: middle;
        margin-top: 10px;
        /*height: 300px;*/
        object-fit: cover;
        border-radius: 10px;
    }
    .sinoheader .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
    .sinoheader .menu > ul > li .sub-menu > ul > li > a:hover,
    .sinoheader .item-right a:hover,
    .sinoheader .menu > ul > li:hover > a{
         color: var(--tertiary);
    }
    /* banner section */
    .banner-section{
      background-image: url('../img/banner.jpg');
      background-size: cover;
      background-position: center;
      height: 700px;
      width: 100%;
      display: block;
    }
    .mobile-menu-head,
    .mobile-menu-trigger{
        display: none;
    }
    
    /*responsive*/
    @media(max-width: 992px){
    
        .mobile-menu-head,
    .mobile-menu-trigger{
        display: block
       
    }
    
      .inner-banner{
        padding-top: 0;
      }
    
        .sinoheader .item-center{
            order:3;
            flex:0 0 100%;
        }
        .sinoheader .item-left,
        .sinoheader .item-right{
            flex:0 0 auto;
        }
        .v-center{
            justify-content: space-between;
        }
        
    .sinoheader .mobile-menu-trigger{
            display: flex;
            height: 20px;
            width: 32px;
            margin-left: 15px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            
            border: none;
            border-bottom-color: currentcolor;
            border-bottom-style: none;
            border-bottom-width: medium;
            /*position: relative;*/
            padding: .5rem .75rem .5rem .75rem;
            border-bottom: 5px solid var(--bs-secondary);
            margin-top: 15px;
            position: fixed;
            
    }	
        
    /* .sinoheader .mobile-menu-trigger::before,.mobile-menu-trigger::after {
      content: " ";
      height: 5px;
      background: #e92d0c;
      position: absolute;
      left: -.35rem;
      right: 0;
      top: 0;
    } */
    
    .mobile-menu-trigger::after {
      background: var(--tertiary) !important;
    
    }

    
    .sinoheader .mobile-menu-trigger::after {
      top: .5rem;
    }
    
    
    
        
        .sinoheader .mobile-menu-trigger span{
            display: block;
            height: 2px;
            background-color: #333333;
            width: 24px;
            position: relative;
        }
        .sinoheader .mobile-menu-trigger span:before,
        .sinoheader .mobile-menu-trigger span:after{
            content: '';
            position: absolute;
            left:0;
            width: 100%;
            height: 100%;
            background-color: #333333;
        }
        .sinoheader .mobile-menu-trigger span:before{
            top:-6px;
        }
        .sinoheader .mobile-menu-trigger span:after{
            top:6px;
        }
        .sinoheader .item-right{
            align-items: center;
        }
    
        .sinoheader .menu{
            position: fixed;
            width: 320px;
            background-color:#ffffff;
            left:0;
            top:0;
            height: 100%;
            overflow: hidden;
            transform: translate(-100%);
            transition: all 0.5s ease;
            z-index: 1099;
        }
        .sinoheader .menu.active{
           transform: translate(0%);	
        }
        .sinoheader .menu > ul > li{
            line-height: 1;
            margin:0;
            display: block;
        }
        .sinoheader .menu > ul > li > a{
            line-height: 6rem;
            height: 6rem;
            padding:0 50px 0 15px;
            display: block;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            font-size: 20px;
           color: var(--bs-tertiary); 
            /* width: 59vw; */
        }
        .sinoheader .menu > ul > li > a:hover{

         color: var(--bs-primary); 
       
      }
        .sinoheader .menu > ul > li > a i{
            position: absolute;
            height: 6rem;
            width: 6rem;
            top:0;
            right: 0;
            text-align: center;
            line-height: 50px;
            transform: rotate(-90deg);
        }
        .sinoheader .menu .mobile-menu-head{
            display: flex;
            height: 50px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            justify-content: space-between;
            align-items: center;
            position: absolute !important;
            z-index: 501;
            position: sticky;
            background-color: #ffffff;
            top:0;
            width: 100%;
        }
        .sinoheader .menu .mobile-menu-head .go-back{
            height: 50px;
            width: 50px;
            border-right: 1px solid rgba(0,0,0,0.1);
            cursor: pointer;
            line-height: 50px;
            text-align: center;
            color:#000000;
            font-size: 16px;
            display: none;
        }
        .sinoheader .menu .mobile-menu-head.active .go-back{
            display: block;
        }
        .sinoheader .menu .mobile-menu-head .current-menu-title{
            font-size: 15px;
            font-weight: 500;
            color:#000000;
        }
        .sinoheader .menu .mobile-menu-head .mobile-menu-close{
            height: 50px;
            width: 50px;
            border-left: 1px solid rgba(0,0,0,0.1);
            cursor: pointer;
            line-height: 50px;
            text-align: center;
            color:#000000;	
            font-size: 25px;
        }
        .sinoheader .menu .menu-main{
            height: 100%;
            overflow-x: hidden;
            overflow-y: auto;
            top: 60px;
            position: relative;
        }
        .sinoheader .menu > ul > li .sub-menu.mega-menu,
        .sinoheader .menu > ul > li .sub-menu{
            visibility: visible;
            opacity: 1;
            position: absolute;
            box-shadow: none;
            margin:0;
            padding:15px;
            top:0;
            left:0;
            width: 100%;
            height: 100%;
            padding-top: 65px;
            max-width: none;
            min-width: auto;
            display: none;
            transform: translateX(0%);
            overflow-y: auto;
        }
    .sinoheader .menu > ul > li .sub-menu.active{
        display: block;
    }
    @keyframes slideLeft{
        0%{
            opacity:0;
            transform: translateX(100%);
        }
        100%{
            opacity:1;
            transform: translateX(0%);	
        }
    }
    @keyframes slideRight{
        0%{
            opacity:1;
            transform: translateX(0%);
        }
        100%{
            opacity:0;
            transform: translateX(100%);	
        }
    }
        .sinoheader .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
            margin-top:0;
        }
        .sinoheader .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
            margin-bottom: 20px;
        }
        .sinoheader .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
            margin-bottom:0px;
        }
        .sinoheader .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
            flex: 0 0 100%;
            padding: 0px;
        }
        .sinoheader .menu > ul > li .sub-menu > ul > li > a,
        .sinoheader .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
            display: block;
        }
        .sinoheader .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
            margin-bottom: 15px;
        }
        .menu-overlay{
            position: fixed;
            background-color: rgba(0,0,0,0.5);
            left:0;
            top:0;
            width: 100%;
            height: 100%;
            z-index: 1098;
            visibility: hidden;
            opacity:0;
            transition: all 0.5s ease;
        }
        .menu-overlay.active{
          visibility: visible;
          opacity:1;	
        }
    
    }

    .sub-menu-small .list-group {
        margin-left: -45px;
      }
    
    
    /* End of Mega Menu */
    
    .sysre-menu {
        display: flex !important;
        flex-basis: auto;
        flex-grow:1;
      }
    
      .sinoheader .nav-btn {
        display: flex;
      justify-content: start;
      }
    
      .sinoheader ul {
        margin-bottom: 0 !important;
        width: 100%;
      }
    
      @media (max-width: 992px){
    
        .desktop-call-to-action{
         
            padding-top:1rem;
          }
        }
    
        #search-form{
            width: 100%;
        margin: 0 auto;
        position: relative;
        justify-content: center !important;
        display: flex !important;
    
        }

        
     .menuactive{
            color: var(--bs-primary) !important;
    
        }
  .bi-arrow-right::before {
    content: "\f138";
    font-size: 2.5rem;
  }

  .bi-arrow-left::before {
    content: "\f12f";
    font-size: 2.5rem;
  }

  
  .getquote{
    color: #fff;
    background-color: #282c7d;
    border-color: #282c7d;
    border-radius: 2rem !important;
      border-top-left-radius: 2rem;
      border-top-right-radius: 2rem;
      border-bottom-right-radius: 2rem;
      border-bottom-left-radius: 2rem;
    width: 103px;
    font-weight: bold;
    line-height: 3;
    height: 50px;
    padding-left: 16px;
    }
    
    .getquote:hover{
      color: #000;
      background-color: #faa41a;
      border-color: #fff;
      border: 2px solid var(--bs-primary);

    }

    .results li {

      list-style: none;
      
  
    }

    #cookieNotice.display-right {
        right: 80px;
        bottom: 40px;
        max-width: 395px;
      }
      
      #cookieNotice.light {
        background-color: #fff !important;
        background-color: var(--cookieNoticeProLight);
        color: #393d4d;
        color: var(--cookieNoticeProDark);
      }
      #cookieNotice {
        box-sizing: border-box;
        position: fixed;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
        font-family: inherit;
        z-index: 999997;
      }
      #cookieNotice #closeIcon {
        width: 20px;
        height: 20px;
        cursor: pointer;
        color: #bfb9b9;
        overflow: hidden;
        opacity: .85;
        z-index: 999999;
        position: absolute;
        top: 0;
        right: 0;
        background: url(../img/close-icon.svg) 0 0 / 20px 20px no-repeat;
      }
      #cookieNotice * {
        margin: 0;
        padding: 0;
        text-decoration: none;
        list-style: none;
        box-sizing: border-box;
      }
      #cookieNotice .title-wrap {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        background: url(../img/cookie-icon.svg) 0 0 / 40px 40px no-repeat;
        padding-left: 45px;
        height: 40px;
      }
      #cookieNotice .title-wrap svg {
        margin-right: 10px;
      }
      #cookieNotice h4 {
        font-family: inherit;
        font-weight: 700;
        font-size: 18px;
      }
      #cookieNotice.light p, #cookieNotice.light ul {
        color: #393d4d;
        color: var(--cookieNoticeProDark);
      }
      #cookieNotice p, #cookieNotice ul {
        font-size: 14px;
        margin-bottom: 20px;
      }
      #cookieNotice .btn-wrap {
        display: flex;
        flex-direction: row;
        font-weight: 700;
        justify-content: center;
        margin: 0 -5px 0 -5px;
        flex-wrap: wrap;
      }
      #cookieNotice .btn-wrap button {
        flex-grow: 1;
        padding: 0 7px;
        margin: 0 5px 10px 5px;
        border-radius: 20px;
        cursor: pointer;
        white-space: nowrap;
        min-width: 130px;
        line-height: 36px;
        border: none;
        font-family: inherit;
        font-size: 16px;
        transition: box-shadow .3s;
      }
      #cookieNotice button {
        outline: 0;
        border: none;
        appearance: none;
        -webkit-appearance: none;
        appearance: none;
      }
      #cookieNotice .btn-wrap button:hover {
        transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),transform .4s cubic-bezier(.25,.8,.25,1);
        box-shadow: 0 2px 5px 0 rgb(0 0 0 / 30%);
        transform: translate3d(0,-1px,0);
      }
      
/*     
    #crumbs a{
    
        color:#1f3f7a;
        text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
        1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
        font-size: 20px;
    
    }
    
    #crumbs .current{
    
         color: var(--tertiary);
        font-size: 20px;
    
    } */
    

      .divmore {
        display:none;
        padding: 10px;
        /* box-shadow: 0 1px 1px #ccc; */
        margin-bottom: 5px;
       
      }
      .divmore .totop {
        position: fixed;
        bottom: 10px;
        right: 20px;
      }
      .divmore .totop a {
        display: none;
      }
      /* .divmore a, a:visited {
        color: #33739E;
        text-decoration: none;
        display: block;
        margin: 10px 0;
      } */
      .divmore a:hover {
        text-decoration: none;
      }
      #loadMore {
        padding: 10px;
        text-align: center;
        background-color: var(--bs-primary);
        color: #fff;
        /* border-radius: 8px; */
        /* border-width: 0 1px 1px 0; */
        /* border-style: solid; */
        border-color: #fff;
        /* box-shadow: 0 1px 1px #ccc; */
        transition: all 600ms ease-in-out;
        -webkit-transition: all 600ms ease-in-out;
        -moz-transition: all 600ms ease-in-out;
        -o-transition: all 600ms ease-in-out;
      }
      #loadMore:hover {
        background-color: var(--bs-secondary);
        color: #000;
      }
    
    
      .contact #loading:before {
        content: "";
        display: inline-block;
        border-radius: 50% !important;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0 !important;
        border: 3px solid var(--bs-secondary);
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
      }
    
      .contact  #loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
      }
      
      .sysre-a-blog {
          color:var(--bs-primary);
      }
      
       .sysre-a-blog:hover {
          color:#000;
      }
    
    
    
    
    @media (max-width: 992px) {
    
        .sticky-top{
            top:0px !important;
          }
        
    }
    
    .menu-container{
        max-width:98%
    }

    .swiper {
        width: 100%;
        height: 100%;
      }
  
      .swiper-slide {
       
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
      }
  
      .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      .autoplay-progress {
        position: absolute;
        right: 16px;
        bottom: 16px;
        z-index: 10;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: var(--bs-secondary);
      }
  
      .autoplay-progress svg {
        --progress: 0;
        position: absolute;
        left: 0;
        top: 0px;
        z-index: 10;
        width: 100%;
        height: 100%;
        stroke-width: 4px;
        stroke: var(--bs-secondary);
        fill: none;
        stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
        stroke-dasharray: 125.6;
        transform: rotate(-90deg);
      }

      .swiper-nav .fa-chevron-right::before{
        color: var(--bs-secondary) !important;
      }

      .swiper-nav .fa-chevron-left::before {
        color: var(--bs-secondary) !important;
      }

    

      .swiper-pagination-bullet {

        background: var(--bs-secondary);
      }


      .theme-slider .swiper-button-prev::after, .theme-slider .swiper-button-next::after {
        content: none;
      }

      .swiper-button-next::after, .swiper-button-prev::after {

        font-size:25px;
        font-weight: bold;
        color: var(--bs-primary);
      }


    @media (max-width: 993px){
    
        .desktop-only{
         
          display: none;
          }

          
        .mobile-only{
         
            display: block;
            }

        }
    @media (min-width: 993px){
    
            .desktop-only{
             
              display: block;
              }

                  
        .mobile-only{
         
            display: none;
            }
    
    }

    .bg-holder {
        background-position:top;
        width: 100%;
        min-height: 100%;
        top: 0;
        left: 0;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        will-change: transform,opacity,filter;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        background-repeat: no-repeat;
        z-index: 0;
        height:628px;
      }

      .bg-light {
        background-color: rgba(160,42,105,0.1);
      }

      .border-bottom {
        border-bottom: 1px solid rgba(250,124,26,0.4) !important;
      }

      .modal {
        z-index: 9999;
      }


     
    
        .program .program-item .program-text {
            height: 380px;
          }



@media (max-width: 767px){
    
    .program .program-item .program-text {
        height: 450px;
      }


}

@media (min-width:480px) and (max-width: 550px){
    
    .program .program-item .program-text {
        height: 480px;
      }

}

@media (max-width:480px){
    
    .program .program-item .program-text {
        height: 400px;
      }

}

#videography #videography-flters {
	padding: 0;
	margin: 5px 0 35px 0;
	list-style: none;
	text-align: center;
  }
  
  #videography #videography-flters li {
	cursor: pointer;
	margin: 15px 15px 15px 0;
	display: inline-block;
	padding: 10px 20px;
	font-size: 12px;
	line-height: 20px;
	color: #666666;
	border-radius: 4px;
	text-transform: uppercase;
	background: #fff;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
  }
  
  #videography #videography-flters li:hover,
  #videography #videography-flters li.filter-active {
	background: var(--bs-tertiary);
	color: #fff;
  }
  
  #videography #videography-flters li:last-child {
	margin-right: 0;
  }
  
  #videography .videography-wrap {
	box-shadow: 0px 2px 12px rgba(255, 255, 255, 0.08);
	transition: 0.3s;
	border-radius: 20px;
	
  }
  
  #videography .videography-wrap:hover {
	box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
  }
  
  #videography .videography-item {
	position: relative;
  /* height: 360px; */
  overflow: hidden;
  /* padding-bottom: 3rem; */
  /* max-height: 360px; */
  }
  
  #videography .videography-item figure {
	background: #000;
	overflow: hidden;
	/* height: 240px; */
	border-radius: 20px;
	position: relative;
  
	margin: 0;
  }
  
  #videography .videography-item figure:hover img {
	opacity: 0.2;
	transition: 0.3s;
  }
  
  #videography .videography-item figure .link-preview,
  #videography .videography-item figure .link-details {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	line-height: 1;
	text-align: center;
	width: 50px;
	height: 50px;
	background:rgba(233, 45, 12, 0.5);
	border-radius: 50%;
	transition: 0.2s linear;
  }
  
  #videography .videography-item figure .link-preview i,
  #videography .videography-item figure .link-details i {
	font-size: 22px;
	color: #333;
	line-height: 0;
  }
  
  #videography .videography-item figure .link-preview:hover,
  #videography .videography-item figure .link-details:hover {
	background: var(--bs-tertiary);
  }
  
  #videography .videography-item figure .link-preview:hover i,
  #videography .videography-item figure .link-details:hover i {
	color: #fff;
  }
  
  #videography .videography-item figure .link-preview {
	left: calc(50% - 38px);
	top: calc(50% - 18px);
	opacity: 1;
  }
  
  #videography .videography-item figure .link-details {
	right: calc(50% - 38px);
	top: calc(50% - 18px);
  }
  
  #videography .videography-item figure:hover .link-preview {
	opacity: 1;
	left: calc(50% - 44px);
  }
  
  #videography .videography-item figure:hover .link-details {
	opacity: 1;
	right: calc(50% - 44px);
  }
  
  #videography .videography-item .videography-info {
	background: #fff;
	text-align: center;
	padding: 30px;
	height: 90px;
	border-radius: 0 0 3px 3px;
  }
  
  #videography .videography-item .videography-info h4 {
	font-size: 18px;
	line-height: 1px;
	font-weight: 700;
	margin-bottom: 18px;
	padding-bottom: 0;
  }
  
  #videography .videography-item .videography-info h4 a {
	color: #333;
  }
  
  #videography .videography-item .videography-info h4 a:hover {
	color: var(--bs-tertiary);
  }
  
  #videography .videography-item .videography-info p {
	padding: 0;
	margin: 0;
	color: #b8b8b8;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
  }
  
  /*--------------------------------------------------------------
  # videography Details
  --------------------------------------------------------------*/
  .videography-details {
	padding-top: 40px;
  }
  
  .videography-details .videography-details-slider img {
	width: 100%;
  }
  
  .videography-details .videography-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
  }
  
  .videography-details .videography-details-slider .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid var(--bs-tertiary);
  }
  
  .videography-details .videography-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--bs-tertiary);
	  width: 40px;
	   border: 1px solid var(--bs-secondary);
	   border-radius:5px;
  }
  
  .videography-details .videography-info {
	padding: 30px;
	box-shadow: 0px 0 30px rgba(51, 51, 51, 0.08);
  }
  
  .videography-details .videography-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
  }
  
  .videography-details .videography-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
  }
  
  .videography-details .videography-info ul li+li {
	margin-top: 10px;
  }
  
  .videography-details .videography-description {
	padding-top: 30px;
  }
  
  .videography-details .videography-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
  }
  
  .videography-details .videography-description p {
	padding: 0;
  }
  
  #videography .play-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
  }
  
  #videography .play-btn:before {
	content: "";
	position: absolute;
	width: 40px;
	height: 40px;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate-btn 2s;
	animation: pulsate-btn 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	/* border: 5px solid rgb(233, 45, 12, 0.2) ; */
	top:9%;
	left: 9%;
	background: rgba(198, 16, 0, 0);
  }
  
  #videography .play-btn:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  #videography .play-btn:hover:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
  }
  
  #videography .play-btn:hover:after {
	border-left: 15px solid var(--bs-primary) ;
	transform: scale(10);
  }


  /* #videography .play-btn:hover:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-primary);
  border-radius: 50%;
  transition: all 200ms;

} */

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
  }
}


#videography .border {
  position: relative;
  height: 100%;
  min-height: 400px;
  /* background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../img/about.webp); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  border-radius: 50% 20% / 10% 40%;
}

.success {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/success.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


.whatsapp-chat {
  position: fixed;
  left: 10px;
  bottom: 20px;
  transition: 0.5s;
  z-index: 99;
}

.fa-sysre-whatsapp {
  padding: 27px !important;

}

.fa-whatsapp-sysre {
  background-image: url('../img/social/whatsapp.png');
  color: white;
  background-size: contain;
  background-repeat: no-repeat;
}


.footer-item .list-group-item{
  
  padding: .5rem 0rem;
  color: #212529;
  background-color:transparent;
  border: 0px;
}

.sino-li{

  list-style: none;
  
}

.shareit a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 16px;
  background-color: var(--bs-secondary);
  color: #fff;
  opacity: 0.90;
  transition: opacity 0.15s linear;
  text-decoration: none;
 
  padding: 10px;
  border-radius: 5px;
}

.shareit a:hover {
	opacity: 1;
	color: var(--bs-primary);
	 

}


@media (max-width:300px){

.shareit a {
   display: table;
   width:1px;
}
}

/* wp-post navigation */

.wpb-posts-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 100px auto;
}

.wpb-posts-nav a {
  display: grid;
  grid-gap: 20px;
  align-items: center;
}

.wpb-posts-nav h4,
.wpb-posts-nav strong {
  margin: 0;
}

.wpb-posts-nav a svg {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

.wpb-posts-nav > div:nth-child(1) a {
  grid-template-columns: 100px 1fr;
  text-align: left;
}

.wpb-posts-nav > div:nth-child(2) a {
  grid-template-columns: 1fr 100px;
  text-align: right;
}

.wpb-posts-nav__thumbnail {
  display: block;
  margin: 0;
}

.wpb-posts-nav__thumbnail img {
  border-radius: 10px;
}

.insight-title{
  font-size: 1.333rem;

}

.nav-title{
  font-size: 12px;

}

.php-email-form #loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--bs-tertiary);
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.php-email-form  #loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.form-floating > .form-control::placeholder {
  color: rgb(0, 0, 0, 0.5);
}

.shareit .fab {
  font-size: 30px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 50px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border-radius: 50% 20% / 10% 40%;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px var(--bs-secondary);
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px  var(--bs-primary);
}

.product .product-img {
  position: relative;
}

.product .product-img>img {
  width: 100%;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color:  var(--bs-primary);
  color:  var(--bs-primary);
}

.product .product-img .product-label>span.new {
  background-color:  var(--bs-primary);
  border-color:  var(--bs-primary);
  color: #FFF;
}

.product .product-body {
  position: relative;
  padding: 15px;
  /* background-color: #FFF; */
  text-align: center;
  z-index: 20;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8D99AE;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
}

.product .product-body .product-name>a {
  font-weight: 700;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color:  var(--bs-primary);
}

.product .product-body .product-price {
  color:  var(--bs-primary);
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color:  var(--bs-secondary);
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color:  var(--bs-primary);
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -55px;
  padding: 15px;
  background: #282c7d;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product .add-to-cart:hover {
 
  bottom: -50px;

}


.product:hover .add-to-cart {
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 10px 30px 10px 35px;
  background-color:  var(--bs-secondary);
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color:  var(--bs-primary);
  opacity: 0.7;
  visibility: visible;
 
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color:  var(--bs-primary);
  border-color:  var(--bs-primary);
  padding: 10px 30px 10px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.navbar-light .navbar-toggler {
  color: rgba(0,0,0,.55);
  border-color: rgba(0,0,0,.1);
  border: 1px solid var(--bs-primary);
}

@media (max-width:992px){
  .sys-menu{


  padding: 30px 30px 30px 30px;
  font-weight: bold;
  font-size: 20px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--bs-tertiary);
}

}

.w-90 {
  width: 95% !important;
}


.videopage .team-item .team-icon a.share-link {
  opacity: 0;
  transition: 0.5s;
}

.videopage .team-item:hover .team-icon a.share-link {
  opacity: 1;
}

.video-share{
  margin-top: -55px;
  position: absolute;
}

.glightbox-mobile .glightbox-container .gslide-description {
  background:linear-gradient(to bottom,rgba(250,124,26,0.1) 0,rgba(160,42,105,.75) 100%);

}

#donate-button img{
  width: 55%;
}



















  