/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Telegram Color ***/
.bg-telegram {
    background-color: #0088cc;
}

.telegram-color {
    color: #0088cc;
}

.telegram-color:hover {
    color: #006f9c;
}

.telegram-btn {
    background-color: #0088cc;
    color: white;
}
  
.telegram-btn:hover {
    background-color: #006f9c;
    color: white;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

/*** Plyr js ***/
.hero-header {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-header video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-header {
        height: auto;
    }

    .hero-header video {
        width: 100%;
        height: auto;
        object-fit: contain;
        position: relative;
    }
}

/*** Shape Divider Bottom ***/
.custom-shape-divider-cover {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 11;
}

.custom-shape-divider-cover svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 187px;
    z-index: 12;
}

.shape-fill-1 {
    fill: #ffffff;
}
/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-cover svg {
        width: calc(100% + 1.3px);
        height: 30px;
    }
}

/*** splide ***/
.splide__slide img {
    width: 100%;
    height: auto;
    max-width: 150px;
}

@media (max-width: 992px) {
.splide__slide img {
    max-width: 120px;
    }
}

@media (max-width: 768px) {
.splide__slide img {
    max-width: 100px;
    }
}

@media (max-width: 576px) {
.splide__slide img {
    max-width: 80px;
    }
}

/* movies */
.movies-splide .splide__slide img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.splide__pagination__page {
    background-color: #ccc;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 3px;
}

.splide__pagination__page.is-active {
    background-color: var(--primary);
}

@media (max-width: 768px) {
    .movies-splide .splide__slide img {
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .movies-splide .splide__slide img {
        max-width: 150px;
    }
}

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/* Pricing */ 
.plan-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border-bottom: 4px solid #000446;
    box-shadow: 0 6px 30px rgba(207, 212, 222, 0.3);
    font-family: "Poppins", sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.plan-card h2 span {
    display: block;
    color: #4d4d4d;
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 0.25rem;
}

.price-tag {
    background: var(--primary);
    padding: 0.75rem 1rem;
    border-radius: 5px;
    position: relative;
    margin-bottom: 1.5rem;
}

.price-tag p {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-tag .duration {
    font-size: 1rem;
    font-weight: 400;
}

.card {
    transition: box-shadow 0.5s ease, transform 0.5s ease;
    will-change: transform;
}

.card:hover, .card:active {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.benefits-list, .benefits-list-dark {
    flex-grow: 1;
}

.benefits-list ul, .benefits-list-dark ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding-left: 1.5rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="16" height="16"><path fill="%231363C6" d="M243.8 339.8C232.9 350.7 215.1 350.7 204.2 339.8L140.2 275.8C129.3 264.9 129.3 247.1 140.2 236.2C151.1 225.3 168.9 225.3 179.8 236.2L224 280.4L332.2 172.2C343.1 161.3 360.9 161.3 371.8 172.2C382.7 183.1 382.7 200.9 371.8 211.8L243.8 339.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z"/></svg>') no-repeat center left;
    background-size: 1rem 1rem;
}

.benefits-list-dark li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding-left: 1.5rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="16" height="16"><path fill="%23FFFFFF" d="M243.8 339.8C232.9 350.7 215.1 350.7 204.2 339.8L140.2 275.8C129.3 264.9 129.3 247.1 140.2 236.2C151.1 225.3 168.9 225.3 179.8 236.2L224 280.4L332.2 172.2C343.1 161.3 360.9 161.3 371.8 172.2C382.7 183.1 382.7 200.9 371.8 211.8L243.8 339.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z"/></svg>') no-repeat center left;
    background-size: 1rem 1rem;
}

.buy-btn {
    background-color: var(--primary);
    color: var(--bs-light);
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.popular-btn {
    background-color: var(--bs-light);
    color: var(--bs-primary);
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.buy-btn:hover, .popular-btn:hover {
    background-color: var(--bs-dark);
    color: var(--bs-light);
    border: none;
    transform: scale(1.05);
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/slides/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/*** Cookies ***/
.ShowCooke{
    background-color: #091E3E;
    opacity: 83%;
    position: fixed !important;
    font-size: 14px;
    bottom: 0;
    left: 2em;
    padding: 1em 1em;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
    z-index: 1000;
    visibility: hidden;
    transition: all 0.5s ease-in;
    display: inline;
}
.Show{
    visibility: visible;
    bottom: 2em;
    left: 2em;
}
.ShowCooke img{
    display: inline;
    width: 3.5em;
    transform: translateZ(0);
    position: relative;
}
#title-cookie{
    font-size: 1.6em;
    font-weight: bold;
}
.ShowCooke h5{
    display: inline;
    margin: 0 0.3em;
    color: #FFFFFF;
}
.ShowCooke button{
    display: inline;
    position: relative;
    margin: 0 0.3em;
}

@media only screen and (max-width: 37.5em){
    .ShowCooke {
        width: 100%;
    }
    .HideCooke{
        bottom: 2em;
        left: 0;
    }
    .ShowCooke{
        left: 0;
        bottom: 0;
    }
    .ShowCooke h5{
        display: block;
        font-size: 1.3em;
        margin: 0.4em 0;
    }
    .ShowCooke button{
        margin: 0 0.5em;
    }
}

/*** POPULAR ***/
.ribbon-wrap {
    width: 190px;
    height: 105px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}
.ribbon-wrap::before .ribbon-wrap::after{
    content: '';
    width: 10px;
    height: 10px;
    background: #00c224;
    z-index: -1;
}
.ribbon-wrap::after{
    bottom: 0;
    left: 0;
}
.ribbon{
    width: 250px;
    font-size: 16px;
    text-align: center;
    padding: 5px 0px;
    padding-left: 65px;
    background: #00c224;
    color: #fff;
    position: absolute;
    transform: rotate(+45deg);
}

/*** Shape Divider Background 1 ***/
.shape-fill-1 {
    fill: #ffffff;
}

/*** Shape Divider Top ***/
.custom-shape-divider-bottom-1686079687 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1686079687 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 187px;
}

.shape-fill {
    fill: #06A3DA;
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1686079687 svg {
        width: calc(100% + 1.3px);
        height: 30px;
    }
}

/*** Shape Divider Bottom ***/
.custom-shape-divider-top-1686079816 {
    position: relative;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1686079816 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 187px;
}

.shape-fill {
    fill: #06A3DA;
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-top-1686079816 svg {
        width: calc(100% + 1.3px);
        height: 30px;
    }
}

/* Service Running */
.service-run-items{
    align-content: center;
    align-items: center;
    text-align: center;
    height: 450px;
    padding: 20px;
    line-height: 2;
    border: 5px solid #FFFFFF;
    border-radius: 5%;
}
.service-run{
    font-size: 7em;
    color: #06A3DA;
    margin-top: 25px;;
}

/* For accordian */
.accordion-item {
    border: none;
    margin: 12px 0;
}
.title-guide{
    font-size: 25px;
    font-weight: 900;
}
.accordion-button{
    color: #FFFFFF;
    background-color: #06a3da;
}
.accordion-body{
    background-color: #eef9ff;
}
.accordion-button::after{
    content: '_';
    color: #06a3da;
    font-size: 35px;
    font-weight: 600;
    margin-top: -43px;
}
.accordion-button.collapsed::after{
    content: '+';
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
    margin-top: -23px;
}