﻿
:root {
    scroll-behavior: smooth;
}

a {
    color: var(--color-links);
    text-decoration: none;
}

.html-body * {
    font-family: IRANYekanDigits !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
a.disabled {
    opacity: 0.6;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    pointer-events: none !important;
    cursor: not-allowed;
}

a:hover {
    color: var(--color-links-hover);
    text-decoration: none;
}
.cursor-pointer {
    cursor: pointer;
}
.form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-top: .2em;
    margin-left: 0.4em;
    cursor: pointer;
}

.form-check.form-check-inline .form-check-label {
    margin-left: 1.5em;
}

.form-check-input:checked {
    background-color: var(--bs-purple);
    border-color: var(--bs-purple);
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(var( --color-purple-rgb-light));
}

.modal-fullscreen .modal-content {
    border-radius: var(--bs-modal-border-radius);
}

.modal-fullscreen {
    margin: var(--bs-modal-margin);
    margin-left: auto;
    margin-right: auto;
    height: 90%;
    width: 90vw;
}
.max-w-100{
    max-width:100px!important;
}
.max-w-120 {
    max-width: 125px !important;
}
.pl-1 {
    padding-left: .25rem !important
}

.ml-1 {
    margin-left: .25rem !important
}

.line-h-2 {
    line-height: 2em !important;
}
.text-purple {
    color: var(--bs-purple);
}
.text-justify {
    text-align: justify !important;
}

.text-right {
    text-align: right !important;
}

.number {
    font-family: IRANYekanDigits;
}

.align-middle {
    vertical-align: middle !important;
}

.font-s-12 {
    font-size: 12px !important;
}

.font-s-13 {
    font-size: 13px !important;
}

.font-s-14 {
    font-size: 14px !important;
}

.font-s-15 {
    font-size: 15px !important;
}
.font-s-20 {
    font-size: 20px !important;
}

.font-s-25 {
    font-size: 25px !important;
}
.font-s-30 {
    font-size: 30px !important;
}
.font-s-50 {
    font-size: 50px !important;
}

.font-s-80 {
    font-size: 80px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: IRANYekan;
}

.font-default {
    font-family: IRANYekan !important;
}

.font-primary {
    font-family: IRANYekan !important;
}

.font-secondary {
    font-family: IRANYekan !important;
}

.font-default-en {
    font-family: var(--font-default) !important;
}

.font-primary-en {
    font-family: var(--font-primary) !important;
}

.font-secondary-en {
    font-family: var(--font-secondary) !important;
}

.timer-code {
    font-size: 15px;
    font-family: LCD7 !important;
}

    .timer-code:before {
        content: "88:88";
        position: absolute;
        opacity: 0.1;
    }
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: url(../../assets/img/logo-w.png) center no-repeat;
    background-size: 250px;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
    background-color: var(--color-secondary-dark) !important;
}

    #preloader:before,
    #preloader:after {
        content: "";
        position: absolute;
        border: 4px solid var(--color-purple);
        /*       border-radius: 50%;*/
        animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
        border-radius: 50px;
    }

    #preloader:after {
        animation-delay: -0.5s;
    }

@keyframes animate-preloader {
    0% {
        width: 250px;
        height: 100px;
        top: calc(50% - 50px);
        left: calc(50% - 125px);
        opacity: 1;
    }

    100% {
        width: 400px;
        height: 200px;
        top: calc(50% - 100px);
        left: calc(50% - 200px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 25px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

    .section-header h2 {
        font-size: 35px;
        font-weight: 300;
        margin-bottom: 15px;
        color: var(--color-secondary);
    }

    .section-header p {
        margin: 0 auto;
        color: var(--color-secondary-light);
    }

@media (min-width: 1280px) {
    .section-header p {
        max-width: 80%;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: rgba(var(--color-secondary-rgb), 0.05);
    min-height: 40px;
    margin-top: 76px;
}

    .breadcrumbs h2 {
        font-size: 30px;
        font-weight: 300;
        margin: 0;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
    }

        /*   .breadcrumbs ol li + li {
            padding-left: 10px;
        }*/

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding: 0 5px;
            color: var(--color-secondary-light);
            content: "/";
        }

@media (max-width: 992px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs h2 {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 995;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--color-white);
        line-height: 0;
    }

    .scroll-top:hover {
        background: rgba(var(--color-primary-rgb), 0.85);
        color: var(--color-white);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
background-color: #fff;
}

    .header.sticked {
        background: var(--color-white);
        box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
    }

    .header .logo img {
        max-height: 60px;
        margin-right: 6px;
    }

    .header .logo h1 {
        font-size: 32px;
        font-weight: 300;
        color: var(--color-secondary);
        font-family: IRANYekan;
    }

        .header .logo h1 span {
            color: var(--color-primary);
            font-weight: 500;
        }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        font-size: 16px;
        color: var(--color-white);
        background: var(--color-primary);
        padding: 8px 23px;
        border-radius: 4px;
        transition: 0.3s;
        font-family: IRANYekan;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--color-white);
            background: rgba(var(--color-primary-rgb), 0.85);
        }

@media (max-width: 1279px) {

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin-right: 12px;
        padding: 7px;
    }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
        position: relative;
    }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar > ul > li {
            white-space: nowrap;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            font-family: IRANYekan;
            font-size: 16px;
            font-weight: 400;
            color: rgba(var(--color-secondary-dark-rgb), 0.7);
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
            min-height: 52px;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

        .navbar > ul > li > a:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--color-primary);
            visibility: hidden;
            transition: all 0.3s ease-in-out 0s;
            transform: scaleX(0);
            transition: all 0.3s ease-in-out 0s;
        }

        .navbar a:hover:before,
        .navbar li:hover > a:before,
        .navbar .active:before {
            visibility: visible;
            transform: scaleX(0.7);
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--color-primary);
        }

        .navbar .dropdown a:hover:before,
        .navbar .dropdown:hover > a:before,
        .navbar .dropdown .active:before {
            visibility: hidden;
        }

        .navbar .dropdown a:hover,
        .navbar .dropdown .active,
        .navbar .dropdown .active:focus,
        .navbar .dropdown:hover > a {
            color: var(--color-white);
            background: var(--color-secondary);
        }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            right: 0;
            top: 100%;
            margin: 0;
            padding: 0 0 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: var(--color-secondary-dark);
            transition: 0.3s;
        }

            .navbar .dropdown ul li {
                min-width: 200px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                font-weight: 400;
                color: rgba(var(--color-white-rgb),1);
            }

                .navbar .dropdown ul a i {
                    font-size: 12px;
                }

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: var(--color-white);
                    background: var(--color-primary);
                }

        .navbar .dropdown:hover > ul {
            opacity: 1;
            visibility: visible;
        }

        .navbar .megamenu {
            position: static;
        }

            .navbar .megamenu ul {
                right: 0;
                padding: 10px;
                display: flex;
            }

                .navbar .megamenu ul li {
                    flex: 1;
                }

                    .navbar .megamenu ul li a,
                    .navbar .megamenu ul li:hover > a {
                        color: rgba(var(--color-white-rgb), 0.5);
                        background: none;
                    }

                        .navbar .megamenu ul li a:hover,
                        .navbar .megamenu ul li .active,
                        .navbar .megamenu ul li .active:hover {
                            color: var(--color-white);
                            background: var(--color-primary);
                        }

        .navbar .dropdown .dropdown ul {
            top: 0;
            left: calc(100% - 30px);
            visibility: hidden;
        }

        .navbar .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
            visibility: visible;
        }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/


@media (max-width: 1279px) {

    section {
        padding: 25px 0;
    }

    .pkg .img img {
        height: 115px !important;
        width: 100% !important;
        visibility: hidden !important;
    }

    .cta .container {
        padding: 30px !important;
    }

    .cta .content h3 {
        font-size: 35px !important;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: calc(100% - 70px);
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 10px 0;
            margin: 0;
            background: rgba(0,0,0, 0.8);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            font-size: 16px;
            font-weight: 500;
            color: rgba(var(--color-white-rgb), 0.7);
            white-space: nowrap;
            transition: 0.3s;
            min-height: 48px;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: var(--color-white);
            }

        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            transition: all 0.5s ease-in-out;
            border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
        }

        .navbar .dropdown > .dropdown-active,
        .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }



        .header .logo img {
            margin-right: 60px !important;
            max-height: 50px !important;
        }

    .mobile-nav-toggle {
        display: block !important;
        color: var(--color-secondary);
        font-size: 40px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        top: 20px;
        z-index: 9999;
        right: 15px;
    }

        .mobile-nav-toggle.bi-x {
            color: var(--color-white);
        }

    .mobile-nav-active {
        overflow: hidden;
        z-index: 9995;
        position: relative;
    }

        .mobile-nav-active .navbar {
            left: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(0,0,0, 0.6);
                z-index: 9996;
            }

    section.search {
        padding-top: 30px !important;
    }
}

@media (max-width: 685px ) {
    .onfocus .video-play {
        min-height: 490px !important;
    }
}

@media (max-width: 600px ) {
    .onfocus .video-play {
        min-height: 400px !important;
    }
}

@media (max-width: 565px ) {
    .onfocus .video-play {
        min-height: 385px !important;
    }
}

@media (max-width: 485px ) {
    .onfocus .video-play {
        min-height: 335px !important;
    }
}

@media (max-width: 435px ) {
    .onfocus .video-play {
        min-height: 270px !important;
    }

    .onfocus .content h3 {
        font-size: 25px !important;
        padding-bottom: 15px !important;
    }
}
/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/

.hero-animated {
    width: 100%;
    /*    min-height: 50vh;*/
    background: url("../img/hero-bg.png") center center;
    background-size: cover;
    position: relative;
    /*    padding: 120px 0 60px;*/
    padding-bottom: 10px !important;
    padding-top: 50px !important;
}

    .hero-animated .owl-carousel {
        position: relative;
    }

    .hero-animated .owl-theme .owl-nav {
        position: absolute;
        top: 45%;
        width: 100%;
        font-size: 50px;
        margin: 0 !important;
        line-height: 0.7em;
    }

    .hero-animated .owl-carousel .owl-nav button.owl-prev,
    .hero-animated .owl-carousel .owl-nav button.owl-next {
        background-color: rgba(255,255,255,0.5) !important;
        padding: 0 10px 14px 10px !important;
        margin: 0 5px !important;
        color: black;
    }

        .hero-animated .owl-carousel .owl-nav button.owl-prev:hover,
        .hero-animated .owl-carousel .owl-nav button.owl-next:hover {
            background-color: #FF1F15 !important;
            color: white;
        }

    .hero-animated .owl-carousel.owl-theme .owl-dots {
        position: absolute;
        width: 100%;
        bottom: 0;
    }

    .hero-animated .owl-carousel .owl-nav button.owl-prev {
        float: right;
    }

    .hero-animated .owl-carousel .owl-nav button.owl-next {
        float: left;
    }

    .hero-animated h2 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 300;
        color: var(--color-secondary);
        font-family: IRANYekan;
    }

        .hero-animated h2 span {
            color: var(--color-primary);
        }

    .hero-animated p {
        color: rgba(var(--color-secondary-rgb), 0.8);
        margin: 0 0 30px 0;
        font-size: 20px;
        font-weight: 400;
    }

    .hero-animated .animated {
        margin-bottom: 60px;
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (max-width: 992px) {

    .hero-animated .owl-theme .owl-nav {
        top: 43% !important;
        font-size: 35px;
    }
}

@media (max-width: 768px) {

    .hero-animated .owl-theme .owl-nav {
        top: 25% !important;
    }
}

@media (min-width: 992px) {
    .hero-animated .animated {
        max-width: 45%;
    }
}

@media (max-width: 991px) {
    .hero-animated .animated {
        max-width: 60%;
    }
}

@media (max-width: 575px) {
    .hero-animated .animated {
        max-width: 80%;
    }
}

.hero-animated .btn-get-started {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-primary);
    font-family: IRANYekan;
}

    .hero-animated .btn-get-started:hover {
        background: rgba(var(--color-primary-rgb), 0.8);
    }

.hero-animated .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-family: IRANYekan;
    color: var(--color-secondary);
    font-weight: 600;
}

    .hero-animated .btn-watch-video i {
        color: var(--color-primary);
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    .hero-animated .btn-watch-video:hover {
        color: var(--color-primary);
    }

        .hero-animated .btn-watch-video:hover i {
            color: rgba(var(--color-primary-rgb), 0.8);
        }

@media (max-width: 640px) {
    .hero-animated h2 {
        font-size: 32px;
    }

    .hero-animated p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-animated .btn-get-started,
    .hero-animated .btn-watch-video {
        font-size: 14px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    padding: 0;
    background: var(--color-black);
    background: url("../img/hero-bg.png") center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 60px 0;
}

    .hero .carousel-item {
        overflow: hidden;
    }

@media (max-width: 640px) {
    .hero .container {
        padding: 0 60px;
    }
}

.hero h2 {
    color: var(--color-secondary);
    margin-bottom: 25px;
    font-size: 48px;
    font-weight: 300;
    animation: fadeInDown 1s both 0.2s;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero p {
    color: var(--color-secondary-light);
    animation: fadeInDown 1s both 0.4s;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero .img {
    margin-bottom: 40px;
    animation: fadeInDownLite 1s both;
}

.hero .btn-get-started {
    font-family: IRANYekan;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 5px;
    transition: 0.5s;
    animation: fadeInUp 1s both 0.6s;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

    .hero .btn-get-started:hover {
        background: var(--color-primary);
        color: var(--color-white);
    }

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: rgba(var(--color-secondary-rgb), 0.4);
    color: rgba(var(--color-white-rgb), 0.98);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-next-icon {
    padding-left: 3px;
}

.hero .carousel-control-prev-icon {
    padding-right: 3px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    transition: 0.3s;
}

    .hero .carousel-control-prev:focus,
    .hero .carousel-control-next:focus {
        opacity: 0.5;
    }

    .hero .carousel-control-prev:hover,
    .hero .carousel-control-next:hover {
        opacity: 0.9;
    }

.hero .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
    background: rgba(var(--color-secondary-rgb), 0.5);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

    .hero .carousel-indicators li.active {
        opacity: 1;
        background: var(--color-primary);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDownLite {
    from {
        opacity: 0;
        transform: translate3d(0, -10%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
    width: 100%;
    min-height: 100vh;
    background: url("../img/hero-fullscreen-bg.jpg") center center;
    background-size: cover;
    position: relative;
    padding: 120px 0 60px;
}

    .hero-fullscreen:before {
        content: "";
        background: rgba(var(--color-white-rgb), 0.85);
        position: absolute;
        inset: 0;
    }

@media (min-width: 1365px) {
    .hero-fullscreen {
        background-attachment: fixed;
    }
}

.hero-fullscreen h2 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 300;
    color: var(--color-secondary);
    font-family: IRANYekan;
}

    .hero-fullscreen h2 span {
        color: var(--color-primary);
    }

.hero-fullscreen p {
    color: rgba(var(--color-secondary-rgb), 0.8);
    margin: 0 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero-fullscreen .btn-get-started {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-primary);
    font-family: IRANYekan;
}

    .hero-fullscreen .btn-get-started:hover {
        background: rgba(var(--color-primary-rgb), 0.8);
    }

.hero-fullscreen .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-family: IRANYekan;
    color: var(--color-secondary);
    font-weight: 600;
}

    .hero-fullscreen .btn-watch-video i {
        color: var(--color-primary);
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    .hero-fullscreen .btn-watch-video:hover {
        color: var(--color-primary);
    }

        .hero-fullscreen .btn-watch-video:hover i {
            color: rgba(var(--color-primary-rgb), 0.8);
        }

@media (max-width: 640px) {
    .hero-fullscreen h2 {
        font-size: 32px;
    }

    .hero-fullscreen p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-fullscreen .btn-get-started,
    .hero-fullscreen .btn-watch-video {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
    width: 100%;
    min-height: 50vh;
    background: url("../img/hero-bg.png") center center;
    background-size: cover;
    position: relative;
    padding: 120px 0 60px;
}

    .hero-static h2 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 300;
        color: var(--color-secondary);
        font-family: IRANYekan;
    }

        .hero-static h2 span {
            color: var(--color-primary);
        }

    .hero-static p {
        color: rgba(var(--color-secondary-rgb), 0.8);
        margin: 0 0 30px 0;
        font-size: 20px;
        font-weight: 400;
    }

    .hero-static .btn-get-started {
        font-size: 16px;
        font-weight: 400;
        display: inline-block;
        padding: 10px 28px;
        border-radius: 4px;
        transition: 0.5s;
        color: var(--color-white);
        background: var(--color-primary);
        font-family: IRANYekan;
    }

        .hero-static .btn-get-started:hover {
            background: rgba(var(--color-primary-rgb), 0.8);
        }

    .hero-static .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        font-family: IRANYekan;
        color: var(--color-secondary);
        font-weight: 600;
    }

        .hero-static .btn-watch-video i {
            color: var(--color-primary);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .hero-static .btn-watch-video:hover {
            color: var(--color-primary);
        }

            .hero-static .btn-watch-video:hover i {
                color: rgba(var(--color-primary-rgb), 0.8);
            }

@media (max-width: 640px) {
    .hero-static h2 {
        font-size: 32px;
    }

    .hero-static p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-static .btn-get-started,
    .hero-static .btn-watch-video {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
    padding: 30px;
    transition: all ease-in-out 0.4s;
    background: var(--color-white);
    height: 100%;
}

    .featured-services .service-item .icon {
        margin-bottom: 10px;
    }

        .featured-services .service-item .icon i {
            color: var(--color-primary);
            font-size: 36px;
            transition: 0.3s;
        }

    .featured-services .service-item h4 {
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .featured-services .service-item h4 a {
            color: var(--color-secondary);
            transition: ease-in-out 0.3s;
        }

    .featured-services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .featured-services .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
    }

        .featured-services .service-item:hover h4 a {
            color: var(--color-primary);
        }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
    position: relative;
    margin: 15px 0 15px 15px;
    display: flex;
    place-content: stretch flex-start;
    align-items: center;
    min-height: 95px !important;
}

    .about .about-img .flag-name {
        line-height: 0 !important;
        padding-right: 5px;
    }

        .about .about-img .flag-name h6 {
            font-size: 15px !important;
            color: var(--bs-gray);
            direction: ltr;
            text-align: justify;
        }

    .about .about-img .img-box {
        min-width: 90px !important;
    }

        .about .about-img .img-box img {
            border: 1px solid #d0d0d0;
            border-radius: 100%;
        }

    .about .about-img:before {
        position: absolute;
        inset: -15px 0 -15px -15px;
        z-index: -1;
        content: "";
        background: url("../img/about-bg.png") top left;
        background-repeat: no-repeat;
        opacity: 0.8;
    }

@media (max-width: 575px) {
    .about .about-img {
        margin: 30px 0 0 30px;
    }

        .about .about-img:before {
            inset: -30px 0 0 -30px;
        }
}



.about .nav-pills {
    border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}

    .about .nav-pills li /*+ li*/ {
        margin-left: 10px;
    }

.about .nav-link {
    background: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-secondary);
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
    font-family: IRANYekan;
}

    .about .nav-link.active {
        color: var(--color-primary);
        background: none;
        border-bottom: 3px solid var(--color-primary);
        background-color: var(--bs-gray-100) !important;
    }

@media (max-width: 575px) {
    .about .nav-link {
        font-size: 16px;
    }
}

.nav-link {
    color: var(--color-secondary-light-rgb);
}

    .nav-link.active {
        color: var(--color-purple) !important;
    }



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 0 0 60px 0;
}

    .clients .swiper-slide img {
        opacity: 0.5;
        transition: 0.3s;
        filter: grayscale(100);
    }

        .clients .swiper-slide img:hover {
            filter: none;
            opacity: 1;
        }

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
    padding: 0;
    margin-bottom: 60px;
}

    .cta .container {
        padding: 80px;
        background: rgba(var(--color-secondary-rgb), 0.1);
        border-radius: 15px;
    }

@media (max-width: 992px) {
    .cta .container {
        padding: 60px;
    }
}

.cta .content h3 {
    color: var(--color-secondary);
    font-size: 48px;
    font-weight: 700;
}

    .cta .content h3 em {
        font-style: normal;
        position: relative;
    }

        .cta .content h3 em:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 10px;
            height: 10px;
            background: rgba(var(--color-primary-rgb), 0.5);
            z-index: -1;
        }

.cta .content p {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 18px;
}

.cta .content .cta-btn {
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 10px;
    background: rgba(var(--color-primary-dark-rgb), 0.9);
}

    .cta .content .cta-btn:hover {
        background: var(--color-primary);
    }

.cta .img {
    position: relative;
}

    .cta .img:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(var(--color-white-rgb), 0.5);
        border-radius: 15px;
        transform: rotate(12deg);
    }

    .cta .img:after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(var(--color-white-rgb), 0.9);
        border-radius: 15px;
        transform: rotate(6deg);
    }

    .cta .img img {
        position: relative;
        z-index: 3;
        border-radius: 15px;
    }

/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
    padding: 0;
}

    .onfocus .video-play {
        min-height: 400px;
        background: linear-gradient(rgba(var(--color-black-rgb), 0.0), rgba(var(--color-purple-rgb), 0.4)), url("../img/S2.webp");
        background-size: cover;
        background-position: right;
    }

    .onfocus .content {
        background: url("../img/onfocus-content-bg.webp") center center no-repeat;
        background-size: cover;
        color: rgba(var(--color-white-rgb), 0.8);
        padding: 40px;
        background-attachment: fixed;
    }

@media (min-width: 768px) {
    .onfocus .content {
        padding: 35px;
    }
}

.onfocus .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: var(--color-white);
}

.onfocus .content ul {
    list-style: none;
    padding: 0;
}

    .onfocus .content ul li {
        padding-bottom: 10px;
    }

    .onfocus .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--color-primary);
    }

.onfocus .content p:last-child {
    margin-bottom: 0;
}

.onfocus .content .read-more {
    font-family: IRANYekan;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}

    .onfocus .content .read-more i {
        font-size: 18px;
        margin-left: 5px;
        line-height: 0;
        transition: 0.3s;
    }

    .onfocus .content .read-more:hover {
        background: rgba(var(--color-primary-rgb), 0.9);
        padding-right: 19px;
    }

        .onfocus .content .read-more:hover i {
            margin-left: 10px;
        }

.onfocus .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

    .onfocus .play-btn:before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid rgba(var(--color-primary-rgb), 0.7);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .onfocus .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 var(--color-white);
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .onfocus .play-btn:hover:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid var(--color-white);
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

    .onfocus .play-btn:hover:after {
        border-left: 15px solid var(--color-primary);
        transform: scale(20);
    }

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 10px 20px;
    color: var(--color-secondary);
    box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0s;
    cursor: pointer;
    height: 100%;
}

    .features .nav-link i {
        font-size: 32px;
        /*  line-height: 0;*/
    }

    .features .nav-link h4 {
        font-size: 17px;
        font-weight: 600;
        margin: 10px 0 0 0;
        color: var(--color-secondary);
    }

    .features .nav-link:hover {
        color: var(--color-primary);
    }

    .features .nav-link p {
        color: var(--color-secondary);
    }

    .features .nav-link:hover p {
        color: var(--color-primary) !important;
    }

    .features .nav-link.active {
        transition: 0.3s;
        background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
        border-color: var(--color-primary);
    }

        .features .nav-link.active h4 {
            color: var(--color-white);
        }

        .features .nav-link.active i {
            color: var(--color-white) !important;
        }

        .features .nav-link.active p {
            color: var(--color-white);
        }

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 36px;
    color: var(--color-secondary);
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

    .features .tab-pane ul li {
        padding-bottom: 10px;
    }

    .features .tab-pane ul i {
        font-size: 24px;
        margin-right: 4px;
        color: var(--color-primary);
    }

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/*--------------------------------------------------------------
#pkg Section
--------------------------------------------------------------*/
.pkg .img {
    border-radius: 8px;
    overflow: hidden;
}

    .pkg .img img {
        transition: 0.6s;
    }

.pkg .details {
    padding: 40px 30px 20px 30px;
    margin: -100px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: rgba(var(--color-white-rgb), 0.9);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

    .pkg .details .icon {
        margin: 0;
        width: 72px;
        height: 72px;
        background: var(--color-primary);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--color-white);
        font-size: 28px;
        transition: ease-in-out 0.3s;
        position: absolute;
        top: -36px;
        left: calc(50% - 36px);
        border: 6px solid var(--color-white);
    }

        .pkg .details .icon.icon-summer {
            width: 130px !important;
            height: 130px !important;
            left: calc(50% - 64px) !important;
            top: -75px !important;
            background: unset !important;
            border: none !important;
        }
            .pkg .details .icon.icon-summer img {
                width: 100%;
                height: 100%;
            }

        .pkg .details .icon.icon-spring {
            width: auto !important;
            height: 100px !important;
            left: calc(50% - 106px) !important;
            top: -82px !important;
            background: unset !important;
            border: none !important;
        }
            .pkg .details .icon.icon-spring img {
                width: 100%;
                height: 100%;
            }

        .pkg .details .icon.icon-autumn {
            width: 130px !important;
            height: 130px !important;
            left: calc(50% - 64px) !important;
            top: -90px !important;
            background: unset !important;
            border: none !important;
        }

            .pkg .details .icon.icon-autumn img {
                width: 100%;
                height: 100%;
            }
        .pkg .details .icon.icon-winter {
            width: 100px !important;
            height: auto !important;
            left: calc(50% - 47px) !important;
            top: -71px !important;
            background: unset !important;
            border: none !important;
        
        }

            .pkg .details .icon.icon-winter img {
                width: 100%;
                height: 100%;
            }

        .pkg .details .icon.icon-popularcountry {
            width: 180px !important;
            height: 180px !important;
            left: calc(50% - 90px) !important;
            top: -115px !important;
            background: unset !important;
            border: none !important;
        }

            .pkg .details .icon.icon-popularcountry img {
                width: 100%;
                height: 100%;
                filter: drop-shadow(-4px -18px 7px #fff);
                -webkit-filter: drop-shadow(-4px -18px 7px #fff);
                -moz-filter: drop-shadow(-4px -18px 7px #fff);
            }
@media (max-width: 1279px) {
    .pkg .details .icon.icon-popularcountry {
        width: 110px !important;
        height: 110px !important;
        left: calc(50% - 58px) !important;
        top: -50px !important;
    }
    .pkg .details .icon.icon-summer {
        width: 72px !important;
        height: 72px !important;
        left: calc(50% - 36px) !important;
        top: -36px !important;
    }
    .pkg .details .icon.icon-spring {
        height: 72px !important;
        left: calc(50% - 78px) !important;
        top: -60px !important;
    }
    .pkg .details .icon.icon-winter {
        width: 83px !important;
        left: calc(50% - 42px) !important;
        top: -48px !important;
    }
}



.pkg .details h3 {
    color: var(--color-default);
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.pkg .details p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.pkg .pkg-item {
    cursor: pointer !important;
}

    .pkg .pkg-item .pkg-flag {
        width: 25px;
        height: 25px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        outline: 1px solid #eee;
    }

    .pkg .pkg-item:hover .details h3 {
        color: var(--color-primary);
    }

    .pkg .pkg-item:hover .details .icon {
        background: var(--color-white);
        border: 2px solid var(--color-primary);
    }

        .pkg .pkg-item:hover .details .icon i {
            color: var(--color-primary);
        }

    .pkg .pkg-item:hover .img img {
        transform: scale(1.2);
    }
/*--------------------------------------------------------------
# pkg Section
--------------------------------------------------------------*/
.services .img {
    border-radius: 8px;
    overflow: hidden;
}

    .services .img img {
        transition: 0.6s;
    }

.services .details {
    padding: 40px 30px 20px 30px;
    margin: -100px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: rgba(var(--color-white-rgb), 0.9);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

    .services .details .icon {
        margin: 0;
        width: 72px;
        height: 72px;
        background: var(--color-primary);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--color-white);
        font-size: 28px;
        transition: ease-in-out 0.3s;
        position: absolute;
        top: -36px;
        left: calc(50% - 36px);
        border: 6px solid var(--color-white);
    }

    .services .details h3 {
        color: var(--color-default);
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 22px;
        transition: ease-in-out 0.3s;
    }

    .services .details p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.services .service-item:hover .details h3 {
    color: var(--color-primary);
}

.services .service-item:hover .details .icon {
    background: var(--color-white);
    border: 2px solid var(--color-primary);
}

    .services .service-item:hover .details .icon i {
        color: var(--color-primary);
    }

.services .service-item:hover .img img {
    transform: scale(1.2);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .testimonials::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(var(--color-secondary-dark-rgb), 0.8);
    }

    .testimonials .section-header {
        margin-bottom: 40px;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        text-align: center;
        color: var(--color-white);
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid rgba(var(--color-white-rgb), 0.15);
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: var(--color-white);
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: rgba(var(--color-white-rgb), 0.6);
            margin: 0 0 15px 0;
        }

        .testimonials .testimonial-item .stars {
            margin-bottom: 15px;
        }

            .testimonials .testimonial-item .stars i {
                color: var(--color-yellow);
                margin: 0 1px;
            }

        .testimonials .testimonial-item .quote-icon-left,
        .testimonials .testimonial-item .quote-icon-right {
            color: rgba(var(--color-white-rgb), 0.6);
            font-size: 26px;
            line-height: 0;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
            transform: scale(-1, -1);
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
        }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgba(var(--color-white-rgb), 0.4);
            opacity: 0.5;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--color-white);
            opacity: 1;
        }

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
/*.pricing {
    background: rgba(var(--color-secondary-rgb), 0.04);
}*/

.pricing .pricing-item {
    padding: 40px 15px 65px 15px;
    box-shadow: 0 3px 20px -2px rgba(var(--color-gray-rgb), 0.15);
    background: var(--color-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 4px solid var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.pricing .pricing-header {
    background: linear-gradient(rgba(var(--color-secondary-rgb), 0.9), rgba(var(--color-secondary-rgb), 0.9)), url("../img/pricing-bg.webp") center center;
    background-size: cover;
    text-align: center;
    padding: 30px;
    margin: -60px -40px 0;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--color-white);
}

.pricing h4 {
    font-size: 25px;
    color: var(--color-white);
    font-weight: 400;
    font-family: IRANYekan;
    margin-bottom: 0;
}

.pricing ul {
    padding: 10px 0;
    list-style: none;
    color: var(--color-gray);
    text-align: left;
    line-height: 1.5em;
}

    .pricing ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
        text-align:justify;
    }

    .pricing ul i {
        color: var(--color-primary);
        font-size: 7px;
    }

.pricing .pricing-green.featured ul i {
    color: var(--color-green);
    font-size: 7px;
}

.pricing ul li span {
    padding-right: 5px;
}

.pricing ul .na {
    color: rgba(var(--color-gray-rgb), 0.5);
}

    .pricing ul .na i {
        color: rgba(var(--color-gray-rgb), 0.5);
        font-size: 24px;
        padding-left: 4px;
    }

    .pricing ul .na span {
        text-decoration: line-through;
    }

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 6px;
    color: var(--color-primary);
    transition: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid var(--color-primary);
}

.pricing .pricing-green.featured .buy-btn {
    border: 1px solid var(--color-green);
}

.pricing .buy-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.pricing .featured {
    border-color: var(--color-primary);
}

.pricing .pricing-green.featured {
    border-color: var(--color-green);
}

.pricing .featured .pricing-header,
.pricing .featured .pricing-footer {
    background: linear-gradient(rgba(var(--color-primary-rgb), 0.9), rgba(var(--color-primary-rgb), 0.9)), url("../img/pricing-bg.webp") center center;
    background-size: cover;
}

.pricing .pricing-green.featured .pricing-header,
.pricing .pricing-green.featured .pricing-footer {
    background: linear-gradient(rgba(var(--color-green-rgb), 0.9), rgba(var(--color-green-rgb), 0.9)), url("../img/pricing-bg.webp") center center;
    background-size: cover;
}

.pricing .featured .buy-btn {
    background: var(--color-primary);
    color: var(--color-white);
}

.pricing .pricing-green.featured .buy-btn {
    background: var(--color-green);
    color: var(--color-white);
}

.pricing .pricing-item .flag-icon {
    margin: 0 0 1px 1px;
    width: 40px;
    height: 28px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing .featured .pricing-footer {
    position: absolute;
    bottom: 0;
    margin: 0;
    left: 0;
    color: white;
    padding: 10px;
    text-align: justify;
}
/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .faq {
        padding: 0;
    }
}

.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: var(--color-secondary);
}

.faq .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.faq .content p {
    font-size: 15px;
    color: var(--color-gray);
}

.faq .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
}

.faq .accordion-item {
    border: 0;
    margin-top: 15px;
    box-shadow: 0px 5px 25px 0px rgba(var(--color-black-rgb), 0.06);
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 15px 40px 20px 60px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: var(--color-default);
    text-align: left;
    background: var(--color-white);
    box-shadow: none;
    border-radius: 5px;
}

    .faq .accordion-button:not(.collapsed) {
        color: var(--color-primary);
        border-bottom: 0;
        box-shadow: none;
    }

.faq .question-icon {
    position: absolute;
    top: 14px;
    left: 25px;
    font-size: 20px;
    color: var(--color-primary);
}

.faq .accordion-button:after {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--color-primary);
}

.faq .accordion-body {
    padding: 0 30px 25px 60px;
    border: 0;
    border-radius: 5px;
    background: var(--color-white);
    box-shadow: none;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
    padding: 0;
    margin: 0 auto 30px auto;
    list-style: none;
    text-align: center;
}

    .portfolio .portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 0;
        font-size: 18px;
        font-weight: 300;
        margin: 0 10px;
        line-height: 1;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .portfolio .portfolio-flters li:hover,
        .portfolio .portfolio-flters li.filter-active {
            color: var(--color-primary);
        }

        .portfolio .portfolio-flters li:first-child {
            margin-left: 0;
        }

        .portfolio .portfolio-flters li:last-child {
            margin-right: 0;
        }

@media (max-width: 575px) {
    .portfolio .portfolio-flters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-item {
    position: relative;
    border: 1px solid var(--color-white);
    overflow: hidden;
    z-index: 1;
}

    .portfolio .portfolio-item img {
        transition: all 0.3s;
    }

    .portfolio .portfolio-item:before {
        content: "";
        inset: 0;
        position: absolute;
        background: rgba(var(--color-secondary-rgb), 0.8);
        z-index: 2;
        transition: 0.5s;
        visibility: hidden;
        opacity: 0;
    }

    .portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        inset: auto 40px 40px 40px;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        padding: 20px;
    }

        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-white);
            padding-right: 50px;
        }

        .portfolio .portfolio-item .portfolio-info .preview-link,
        .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 50px;
            font-size: 24px;
            top: calc(50% - 14px);
            color: rgba(var(--color-white-rgb), 0.7);
            transition: 0.3s;
            line-height: 0;
        }

            .portfolio .portfolio-item .portfolio-info .preview-link:hover,
            .portfolio .portfolio-item .portfolio-info .details-link:hover {
                color: var(--color-white);
            }

        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 14px;
            font-size: 28px;
        }

    .portfolio .portfolio-item:hover:before {
        visibility: visible;
        opacity: 1;
    }

    .portfolio .portfolio-item:hover img {
        transform: scale(1.2);
    }

    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        inset: auto 10px 0 10px;
    }
/*--------------------------------------------------------------
# Country Section
--------------------------------------------------------------*/
.country {
    margin-top: 120px !important;
}

    .country .country-member {
        width: 100%;
        min-height: 135px;
    }

        .country .country-member .country-flag {
            position: absolute;
            left: 0;
            top: -40px;
            right: 0;
            transition: ease-in-out 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .country .country-member .back-country-flag {
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            overflow: hidden;
            border-radius: 8px;
        }

            .country .country-member .back-country-flag img {
                position: absolute;
                top: -56px;
                opacity: 0.1;
                transform: rotate(-25deg);
                width: 253px;
                left: -17px;
            }
            .country .country-member .back-country-flag .b-icon {
                position: absolute;
                top: -56px;
                opacity: 0.1;
                transform: rotate(-25deg);
                width: 253px;
                left: -17px;
                font-size:200px;
            }
        .country .country-member .country-flag span {
            transition: color 0.3s;
            background: var(--bs-gray-100);
            margin: 0 5px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            transition: 0.3s;
            border: 1px solid var(--bs-gray-300);
            overflow: hidden;
            transition: 1s all;
            -webkit-transition: 1s all;
            -moz-transition: 1s all;
        }

            .country .country-member .country-flag span img {
                height: inherit !important;
            }
            .country .country-member .country-flag span i {
                font-size:50px;
            }

        .country .country-member .country-info {
            padding: 45px 15px 15px 15px;
            text-align: center;
            box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
            background: var(--color-white);
            margin: -50px 0 0 0;
            position: relative;
            border-radius: 8px;
        }

            .country .country-member .country-info h4 {
                font-weight: 400;
                margin-bottom: 5px;
                font-size: 20px;
                color: var(--color-secondary);
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
            }

            .country .country-member .country-info span {
                display: block;
                font-size: 16px;
                font-weight: 400;
                color: var(--color-gray);
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
                direction: ltr;
            }

            .country .country-member .country-info p {
                font-style: italic;
                font-size: 14px;
                line-height: 26px;
                color: var(--color-gray);
            }

            .country .country-member .country-info:hover {
                box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.15);
                background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
                color: white !important;
                cursor: pointer;
            }
                .country .country-member .country-info:hover .back-country-flag .b-icon {
                    color: white !important;
                }
                .country .country-member .country-info:hover h4,
                .country .country-member .country-info:hover span {
                    color: white !important;
                }

                .country .country-member .country-info:hover .country-flag span {
                    transform: rotateY(360deg);
                    -webkit-transform: rotateY(360deg);
                    -moz-transform: rotateY(360deg);
                    border: solid 1px var(--bs-purple);
                }
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
    border-radius: 8px;
    overflow: hidden;
}

.team .team-member .social {
    position: absolute;
    left: 0;
    top: -18px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .team .team-member .social a {
        transition: color 0.3s;
        color: var(--color-white);
        background: var(--color-primary);
        margin: 0 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        transition: 0.3s;
    }

        .team .team-member .social a i {
            line-height: 0;
            font-size: 16px;
        }

        .team .team-member .social a:hover {
            background: var(--color-primary-light);
        }

    .team .team-member .social i {
        font-size: 18px;
        margin: 0 2px;
    }

.team .team-member .member-info {
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
    background: var(--color-white);
    margin: -50px 20px 0 20px;
    position: relative;
    border-radius: 8px;
}

    .team .team-member .member-info h4 {
        font-weight: 400;
        margin-bottom: 5px;
        font-size: 24px;
        color: var(--color-secondary);
    }

    .team .team-member .member-info span {
        display: block;
        font-size: 16px;
        font-weight: 400;
        color: var(--color-gray);
    }

    .team .team-member .member-info p {
        font-style: italic;
        font-size: 14px;
        line-height: 26px;
        color: var(--color-gray);
    }

.team .team-member:hover .social {
    opacity: 1;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .recent-blog-posts .post-box .post-img {
        overflow: hidden;
        position: relative;
        border-radius: 10px;
    }

        .recent-blog-posts .post-box .post-img img {
            transition: 0.5s;
        }

    .recent-blog-posts .post-box .meta {
        margin-top: 15px;
    }

        .recent-blog-posts .post-box .meta .post-date {
            font-size: 15px;
            font-weight: 400;
            color: var(--color-primary);
        }

        .recent-blog-posts .post-box .meta .post-author {
            font-size: 15px;
            font-weight: 400;
            color: var(--color-secondary);
        }

    .recent-blog-posts .post-box .post-title {
        font-size: 16px;
        color: var(--color-secondary);
        font-weight: 700;
        margin: 15px 0 0 0;
        position: relative;
        transition: 0.3s;
        line-height: 1.7em;
    }

    .recent-blog-posts .post-box p {
        margin: 15px 0 0 0;
        color: rgba(var(--color-secondary-dark-rgb), 0.7);
        text-align: justify;
    }

    .recent-blog-posts .post-box .readmore {
        display: flex;
        align-items: center;
        font-weight: 600;
        line-height: 1;
        transition: 0.3s;
        margin-top: 15px;
    }

        .recent-blog-posts .post-box .readmore i {
            line-height: 0;
            margin-left: 4px;
            font-size: 18px;
        }

    .recent-blog-posts .post-box:hover .post-title {
        color: var(--color-primary);
    }

    .recent-blog-posts .post-box:hover .post-img img {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
    margin-bottom: 40px;
}

    .contact .map iframe {
        border: 0;
        width: 100%;
        height: 400px;
    }

.contact .info {
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
    overflow: hidden;
}

    .contact .info h3 {
        font-weight: 600;
        font-size: 24px;
    }

    .contact .info p {
        color: var(--color-secondary-light);
        margin-bottom: 30px;
        font-size: 15px;
    }

.contact .info-item + .info-item {
    padding-top: 10px;
    margin-top: 5px;
    border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.contact .info-item i {
    font-size: 24px;
    color: var(--color-primary);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-secondary);
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-secondary-light);
}

.contact .php-email-form {
    width: 100%;
    background: var(--color-white);
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: var(--color-white);
        background: var(--color-purple);
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: var(--color-white);
        background: var(--color-green);
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: var(--color-white);
        text-align: center;
        padding: 15px;
    }

        .contact .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(--color-green);
            border-top-color: var(--color-white);
            animation: animate-loading 1s linear infinite;
        }

input[type=text],
input[type=email],
input[type=password],
textarea,
select {
    border-radius: 0px !important;
    box-shadow: none;
    font-size: 14px;
}

    input[type=text]:focus,
    input[type=email]:focus,
    input[type=password]:focus
    textarea:focus,
    select:focus {
        border-color: var(--color-secondary-light);
    }
input[type=number],
input[type=text],
input[type=email],
input[type=password],
select {
    height: 48px;
    padding: 10px 15px;
}

textarea {
    padding: 10px 12px;
    height: 290px;
}

.contact .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 13px 50px;
    color: var(--color-white);
    transition: 0.4s;
    border-radius: 0;
}

    .contact .php-email-form button[type=submit]:hover {
        background: rgba(var(--color-primary-rgb), 0.85);
    }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--color-white);
            opacity: 1;
            border: 1px solid var(--color-primary);
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--color-primary);
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(var(--color-secondary-rgb), 0.15);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--color-secondary-light);
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
    padding: 30px;
    height: 100%;
}

    .blog .posts-list article + article {
        margin-top: 60px;
    }

.blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
}

.blog .posts-list .title {
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    line-height: 2em;
    min-height: 75px;
}

    .blog .posts-list .title a {
        color: var(--color-secondary);
        transition: 0.3s;
    }

        .blog .posts-list .title a:hover {
            color: var(--color-primary);
        }

.blog .posts-list .meta-top {
    margin-top: 20px;
    color: var(--color-gray);
}

    .blog .posts-list .meta-top ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        align-items: center;
        padding: 0;
        margin: 0;
    }

        .blog .posts-list .meta-top ul li + li {
            padding-left: 20px;
        }

    .blog .posts-list .meta-top i {
        font-size: 16px;
        margin-right: 5px;
        margin-left: 8px;
        line-height: 0;
        color: rgba(var(--color-primary-rgb), 0.8);
    }

    .blog .posts-list .meta-top a {
        color: var(--color-gray);
        font-size: 14px;
        display: inline-block;
        line-height: 1;
    }

.blog .posts-list .content {
    margin-top: 20px;
}

.blog .posts-list .read-more a {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 13px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

    .blog .posts-list .read-more a:hover {
        background: rgba(var(--color-primary-rgb), 0.8);
    }

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
    padding: 30px;
}

    .blog .blog-details .post-img {
        margin: -30px -30px 20px -30px;
        overflow: hidden;
        text-align: center;
    }

        .blog .blog-details .post-img img {
            border-radius: 10px;
        }

    .blog .blog-details .title {
        font-size: 20px;
        font-weight: 700;
        padding: 0;
        margin: 20px 0 0 0;
        color: var(--color-secondary);
    }

    .blog .blog-details .content {
        margin-top: 20px;
        line-height: 2em;
    }

        .blog .blog-details .content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }

        .blog .blog-details .content blockquote {
            overflow: hidden;
            background-color: rgba(var(--color-secondary-rgb), 0.06);
            padding: 30px;
            position: relative;
            margin: 20px 0;
        }

            .blog .blog-details .content blockquote p {
                color: var(--color-default);
                line-height: 1.8;
                margin-bottom: 0;
                font-weight: 500;
                font-size: 18px;
            }

            .blog .blog-details .content blockquote:after {
                content: "";
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                width: 3px;
                background-color: var(--color-secondary);
                margin-top: 20px;
                margin-bottom: 20px;
            }

    .blog .blog-details .meta-top {
        margin-top: 20px;
        color: var(--color-gray);
    }

        .blog .blog-details .meta-top ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            align-items: center;
            padding: 0;
            margin: 0;
        }

            .blog .blog-details .meta-top ul li + li {
                padding-left: 20px;
            }

        .blog .blog-details .meta-top i {
            font-size: 16px;
            margin: 0 10px 0 5px;
            line-height: 0;
            color: rgba(var(--color-primary-rgb), 0.8);
        }

        .blog .blog-details .meta-top a {
            color: var(--color-gray);
            font-size: 14px;
            display: inline-block;
            line-height: 1;
        }

    .blog .blog-details .meta-bottom {
        padding-top: 10px;
        border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
    }

        .blog .blog-details .meta-bottom i {
            color: var(--color-secondary-light);
            display: inline;
        }

        .blog .blog-details .meta-bottom a {
            color: rgba(var(--color-secondary-rgb), 0.8);
            transition: 0.3s;
        }

            .blog .blog-details .meta-bottom a:hover {
                color: var(--color-primary);
            }

        .blog .blog-details .meta-bottom .cats {
            list-style: none;
            display: inline;
            padding: 0 20px 0 0;
            font-size: 14px;
        }

            .blog .blog-details .meta-bottom .cats li {
                display: inline-block;
            }

        .blog .blog-details .meta-bottom .tags {
            list-style: none;
            display: inline;
            padding: 0;
            font-size: 14px;
        }

            .blog .blog-details .meta-bottom .tags li {
                display: inline-block;
            }

                .blog .blog-details .meta-bottom .tags li + li::before {
                    padding-right: 6px;
                    color: var(--color-default);
             /*       content: ",";*/
                }

        .blog .blog-details .meta-bottom .share {
            font-size: 16px;
        }

            .blog .blog-details .meta-bottom .share i {
                padding-left: 5px;
            }

.blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

    .blog .post-author img {
        max-width: 120px;
        margin-right: 20px;
    }

    .blog .post-author h4 {
        font-weight: 600;
        font-size: 22px;
        margin-bottom: 0px;
        padding: 0;
        color: var(--color-secondary);
    }

    .blog .post-author .social-links {
        margin: 0 10px 10px 0;
    }

        .blog .post-author .social-links a {
            color: rgba(var(--color-secondary-rgb), 0.5);
            margin-right: 5px;
        }

    .blog .post-author p {
        font-style: italic;
        color: rgba(var(--color-gray-rgb), 0.8);
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
    padding: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

    .blog .sidebar .sidebar-title {
        font-size: 20px;
        font-weight: 700;
        padding: 0;
        margin: 0;
        color: var(--color-secondary);
    }

    .blog .sidebar .sidebar-item + .sidebar-item {
        margin-top: 40px;
    }

    .blog .sidebar .search-form form {
        background: var(--color-white);
        border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
        padding: 3px 10px;
        position: relative;
    }

        .blog .sidebar .search-form form input[type=text] {
            border: 0;
            padding: 4px 40px 4px 4px;
            border-radius: 4px;
            width: 100%;
            font-size: 18px;
        }

            .blog .sidebar .search-form form input[type=text]:focus {
                outline: none;
            }

        .blog .sidebar .search-form form button {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            border: 0;
            background: none;
            font-size: 16px;
            padding: 0 15px;
            margin: -1px;
            background: var(--color-primary);
            color: var(--color-white);
            transition: 0.3s;
            border-radius: 0 4px 4px 0;
            line-height: 0;
        }

            .blog .sidebar .search-form form button i {
                line-height: 0;
            }

            .blog .sidebar .search-form form button:hover {
                background: rgba(var(--color-primary-rgb), 0.8);
            }

    .blog .sidebar .categories ul {
        list-style: none;
        padding: 0;
    }

        .blog .sidebar .categories ul li + li {
            padding-top: 10px;
        }

        .blog .sidebar .categories ul a {
            color: var(--color-secondary);
            transition: 0.3s;
        }

            .blog .sidebar .categories ul a:hover {
                color: var(--color-default);
            }

            .blog .sidebar .categories ul a span {
                padding-left: 5px;
                color: rgba(var(--color-default-rgb), 0.4);
                font-size: 14px;
            }

    .blog .sidebar .recent-posts .post-item {
        display: flex;
    }

        .blog .sidebar .recent-posts .post-item + .post-item {
            margin-top: 15px;
        }

    .blog .sidebar .recent-posts img {
        width: 80px;
        margin-right: 15px;
    }

    .blog .sidebar .recent-posts h4 {
        font-size: 13px;
        font-weight: 400;
    }

        .blog .sidebar .recent-posts h4 a {
            color: var(--color-secondary);
            transition: 0.3s;
        }

            .blog .sidebar .recent-posts h4 a:hover {
                color: var(--color-primary);
            }

    .blog .sidebar .recent-posts time {
        display: block;
        font-style: italic;
        font-size: 14px;
        color: rgba(var(--color-default-rgb), 0.4);
    }

    .blog .sidebar .tags {
        margin-bottom: -10px;
    }

        .blog .sidebar .tags ul {
            list-style: none;
            padding: 0;
        }

            .blog .sidebar .tags ul li {
                display: inline-block;
            }

            .blog .sidebar .tags ul a {
                color: var(--color-secondary-light);
                font-size: 14px;
                padding: 6px 14px;
                margin: 0 6px 8px 0;
                border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
                display: inline-block;
                transition: 0.3s;
            }

                .blog .sidebar .tags ul a.active {
                    color: var(--color-white) !important;
                    border: 1px solid var(--color-primary) !important;
                    background: var(--color-primary) !important;
                }

                .blog .sidebar .tags ul a:hover {
                    color: var(--color-white);
                    border: 1px solid var(--color-primary);
                    background: var(--color-primary);
                }

                .blog .sidebar .tags ul a span {
                    padding-left: 5px;
                    color: rgba(var(--color-secondary-light-rgb), 0.8);
                    font-size: 14px;
                }

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
    margin-top: 30px;
}

    .blog .comments .comments-count {
        font-weight: bold;
    }

    .blog .comments .comment {
        margin-top: 30px;
        position: relative;
    }

        .blog .comments .comment .comment-img {
            margin-right: 14px;
        }

            .blog .comments .comment .comment-img img {
                width: 60px;
            }

        .blog .comments .comment h5 {
            font-size: 16px;
            margin-bottom: 2px;
        }

            .blog .comments .comment h5 a {
                font-weight: bold;
                color: var(--color-default);
                transition: 0.3s;
            }

                .blog .comments .comment h5 a:hover {
                    color: var(--color-primary);
                }

            .blog .comments .comment h5 .reply {
                padding-left: 10px;
                color: var(--color-secondary);
            }

                .blog .comments .comment h5 .reply i {
                    font-size: 20px;
                }

        .blog .comments .comment time {
            display: block;
            font-size: 14px;
            color: rgba(var(--color-secondary-rgb), 0.8);
            margin-bottom: 5px;
        }

        .blog .comments .comment.comment-reply {
            padding-left: 40px;
        }

    .blog .comments .reply-form {
        margin-top: 30px;
        padding: 30px;
        box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
    }

        .blog .comments .reply-form h4 {
            font-weight: bold;
            font-size: 22px;
        }

        .blog .comments .reply-form p {
            font-size: 14px;
        }

        .blog .comments .reply-form input {
            border-radius: 4px;
            padding: 10px 10px;
            font-size: 14px;
        }

            .blog .comments .reply-form input:focus {
                box-shadow: none;
                border-color: rgba(var(--color-primary-rgb), 0.8);
            }

        .blog .comments .reply-form textarea {
            border-radius: 4px;
            padding: 10px 10px;
            font-size: 14px;
        }

            .blog .comments .reply-form textarea:focus {
                box-shadow: none;
                border-color: rgba(var(--color-primary-rgb), 0.8);
            }

        .blog .comments .reply-form .form-group {
            margin-bottom: 25px;
        }

        .blog .comments .reply-form .btn-primary {
            border-radius: 4px;
            padding: 10px 20px;
            border: 0;
            background-color: var(--color-secondary);
        }

            .blog .comments .reply-form .btn-primary:hover {
                background-color: rgba(var(--color-secondary-rgb), 0.8);
            }

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: var(--color-secondary-light);
}

    .blog .blog-pagination ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .blog .blog-pagination li {
        margin: 0 5px;
        transition: 0.3s;
    }

        .blog .blog-pagination li a {
            color: var(--color-secondary);
            padding: 7px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog .blog-pagination li.active,
        .blog .blog-pagination li:hover {
            background: var(--color-primary);
        }

            .blog .blog-pagination li.active a,
            .blog .blog-pagination li:hover a {
                color: var(--color-white);
            }

@media (max-width: 575px) {
    .blog .blog-pagination li a {
        padding: 4px 5px !important;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: var(--color-white);
    font-size: 14px;
}

    .footer .footer-content {
             /*   background: var(--color-secondary);*/
        background: #404040;
        padding: 60px 0 30px 0;
    }

        .footer .footer-content .footer-info {
            margin-bottom: 30px;
        }

            .footer .footer-content .footer-info h3 {
                font-size: 28px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
                text-transform: uppercase;
            }

                .footer .footer-content .footer-info h3 span {
                    color: var(--color-primary);
                }

            .footer .footer-content .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: IRANYekan;
                color: var(--color-white);
            }

        .footer .footer-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--color-white);
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 15px;
        }

            .footer .footer-content h4::after {
                content: "";
                position: absolute;
                display: block;
                width: 20px;
                height: 2px;
                background: var(--color-primary);
                bottom: 0;
                right: 0;
            }

        .footer .footer-content .footer-links {
            margin-bottom: 30px;
        }

            .footer .footer-content .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .footer .footer-content .footer-links ul i {
                    padding-right: 2px;
                    color: var(--color-white);
                    font-size: 12px;
                    line-height: 1;
                }

                .footer .footer-content .footer-links ul li {
                    padding: 5px 0;
                    display: flex;
                    align-items: center;
                }

                    .footer .footer-content .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                .footer .footer-content .footer-links ul a {
                    color: rgba(var(--color-white-rgb), 0.7);
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    .footer .footer-content .footer-links ul a:hover {
                        color: var(--color-white);
                    }

        .footer .footer-content .footer-newsletter form {
            margin-top: 30px;
            background: var(--color-white);
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
        }

            .footer .footer-content .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }

                .footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
                    outline: none;
                }

            .footer .footer-content .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: -2px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: var(--color-primary);
                color: var(--color-white);
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
            }

                .footer .footer-content .footer-newsletter form input[type=submit]:hover {
                    background: rgba(var(--color-primary-rgb), 0.85);
                }

    .footer .footer-legal {
        padding: 30px 0;
         /*      background: var(--color-secondary-dark);*/
        background: #990fbc;
    }

        .footer .footer-legal .credits {
            padding-top: 4px;
            font-size: 13px;
            color: var(--color-white);
        }

            .footer .footer-legal .credits a {
                   /*      background: var(--color-secondary-dark);*/
     background: #990fbc;
            }

    .footer .social-links a {
        font-size: 18px;
        display: inline-block;
        background: rgba(var(--color-white-rgb), 0.1);
        color: var(--color-white);
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 4px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            background: var(--color-primary);
            text-decoration: none;
        }
@media (min-width: 1400px) {
    .container-footer {
        max-width: 90% !important;
    }
}

@media (min-width: 1200px) {
    .container-footer {
        max-width:100% !important;
    }
        .container-footer .social-links {
            white-space: nowrap !important;
        }
}
.search .form-group {
    position: relative;
    background: url('../img/world.svg') center no-repeat whitesmoke;
    background-size: cover;
    padding: 20px 10px;
    border-radius: 7px;
    border: 1px solid #dbdbdb;
}

    .search .form-group .form-control {
        height: 60px;
        padding: 10px 50px 10px 35px;
        border-radius: 60px;
    }

    .search .form-group i.icon {
        position: absolute;
        font-size: 25px;
        top: 73px;
        right: 22px;
        color: #afafaf;
    }

    .search .form-group i.icon-close {
        position: absolute;
        font-size: 25px;
        top: 72px;
        left: 24px;
        cursor: pointer;
        opacity: 0.5;
        transition: 0.2s all;
        -webkit-transition: 0.2s all;
        -moz-transition: 0.05s all;
    }

    .search .form-group:hover i.icon-close {
        opacity: 1;
        font-weight: bold;
    }

.invalid-feedback {
    font-size: 0.775em;
}

.popular-packages {
    background: url("../img/PopularPackages.webp") repeat center;
    background-size: 360px;
    border-radius: 18px;
    padding-bottom: 50px !important;
    background-attachment: fixed;
}
.gift-packages {
    background: url("../img/PopularPackages.webp") repeat center;
    background-size: 360px;
    border-radius: 18px;
    padding-bottom: 50px !important;
    background-attachment: fixed;
}

    .gift-packages.pricing .featured .pricing-header,
    .gift-packages.pricing .featured .pricing-footer {
        background:  url("../img/GiftPackages.webp") repeat center center !important;
        background-size: cover!important;
    }

    .gift-packages.pricing .pricing-green.featured .pricing-header,
    .gift-packages.pricing .pricing-green.featured .pricing-footer {
        background: url("../img/GiftPackages.webp") repeat center center !important;
        background-size: cover !important;
    }
.area-link:hover .area-name {
    box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.15);
    background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
    color: white !important;
    cursor: pointer;
}
.special {
    border-radius: 18px;
    padding: 30px 30px 0 30px !important;
    margin-top: 0 !important;
    position: relative;
    overflow: hidden;
    border: 1px solid #dbdbdb;
}

.special-popularcountry .special-back-w {
    background: url("../img/world.svg") no-repeat center whitesmoke;
}

.special .special-back-w {
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    background-attachment: fixed;
}
.word-map-w {
    background: url("../img/world.svg") no-repeat center whitesmoke;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    background-attachment: fixed;
}


.special .special-title {
    margin-bottom: 60px;
    margin-top: -5px;
}

    .special .special-title h4 .special-txt {
        background-color: rgba(255,255,255,0.6);
        border-radius: 50px;
        position: relative;
        padding: 10px 20px !important;
        display: inline-block;
        box-shadow: 2px -1px 28px -2px rgba(0,0,0,0.2);
        -webkit-box-shadow: 2px -1px 28px -2px rgba(0,0,0,0.2);
        -moz-box-shadow: 2px -1px 28px -2px rgba(0,0,0,0.2);
    }

        .special .special-title h4 .special-txt img {
            position: absolute;
            right: -15px;
            top: -30px;
        }

.special-popularcountry .special-title h4 .special-txt img {
    position: absolute;
    right: -45px;
    top: -70px;
}



.seasonal {
    border-radius: 18px;
    padding: 30px 30px 0 30px !important;
    margin-top: 0 !important;
    position: relative;
    overflow: hidden;
}
.seasonal-summer .seasonal-back-w {
    background: url("../img/summerW.webp") no-repeat center;
}

.seasonal-spring .seasonal-back-w {
    background: url("../img/springW.webp") no-repeat bottom;
}
.seasonal-autumn .seasonal-back-w {
    background: url("../img/autumnW.webp") no-repeat bottom;
}
.seasonal-winter .seasonal-back-w {
    background: url("../img/winterW.webp") no-repeat bottom;
    opacity:0.5;
}
    .seasonal .seasonal-back-w {
        filter: blur(5px);
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 !important;
        background-attachment:fixed;
    }


.seasonal .seasonal-title {
    margin-bottom: 80px;
    margin-top: 10px;
}

    .seasonal .seasonal-title h4 .seasonal-txt {
        background-color: rgba(255,255,255,0.6);
        border-radius: 50px;
        position: relative;
        padding: 20px 115px 20px 20px !important;
        display: inline-block;
        box-shadow: 2px -1px 28px -2px rgba(0,0,0,0.2);
        -webkit-box-shadow: 2px -1px 28px -2px rgba(0,0,0,0.2);
        -moz-box-shadow: 2px -1px 28px -2px rgba(0,0,0,0.2);
    }
        .seasonal .seasonal-title h4 .seasonal-txt img {
            position: absolute;
            right: -15px;
            top: -30px;
        }
.seasonal-summer .seasonal-title h4 .seasonal-txt img {
    position: absolute;
    right: -15px;
    top: -30px;
}
.seasonal-spring .seasonal-title h4 .seasonal-txt img {
    position: absolute;
    right: -104px;
    top: -18px;
    width: 224px;

}
.seasonal-autumn .seasonal-title h4 .seasonal-txt img {
    position: absolute;
    right: 6px;
    top: -37px;
    width: 108px;
}
.seasonal-winter .seasonal-title h4 .seasonal-txt img {
    position: absolute;
    right: 5px;
    top: -34px;
    width: 88px;
}
@media (max-width: 518px) {
    .special {
        border-radius: 0px !important;
    }
    .seasonal {
        border-radius: 0px!important;
    }
    .seasonal-spring .seasonal-title h4 .seasonal-txt {
        padding: 15px 85px 15px 15px !important;
    }
        .seasonal-spring .seasonal-title h4 .seasonal-txt img {
            right: -70px;
            top: -6px;
            width: 160px;
        }
}

.bottom-navbar {
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: stretch;
    align-content: stretch;
    box-shadow: 0rem -0.4rem 1rem rgba(0,0,0,.15) !important
}
    .bottom-navbar .bottom-navbar-item {
        padding: 20px 10px 5px 10px;
    }
        .bottom-navbar .bottom-navbar-item .navbar-circle {
            padding: 0 10px 10px 10px;
            border-radius: 80px;
            text-align: center;
            margin-top: -45px;
            box-shadow: 0rem -0.4rem 1rem rgba(0,0,0,.15) !important;
            width: 80px;
            height: 80px;

        }
        .bottom-navbar .bottom-navbar-item .navbar-circle-fixed {
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            position:absolute;
        }
@media (max-width: 768px) {
    #main{
        padding-top:10px!important;
    }
    #country-search{
        padding-top:0!important;
    }
    .hero-animated {
        padding-top: 10px !important;
    }
    .bottom-navbar {
        display: flex !important;
    }
    .breadcrumbs{
        margin-top:10px!important;
    }
    .footer-legal .container {
        margin-bottom:70px;
    }
    .container {
        max-width: 580px;
    }
    #header {
        padding: 0 !important;
    }
    #header .logo,
    #header .btn-getstarted,
    #header .mobile-nav-toggle {
        display: none !important;
    }
}
@media (max-width: 510px) {
    #profile-tab .nav-tabs .nav-item {
        padding-left: 5px;
        padding-right: 5px;
    }
    #profile-tab .nav-tabs .nav-item .nav-link  {
        padding:8px;
    }
    #profile-tab .nav-tabs .nav-item .nav-link h4 {
       font-size:14px!important;
    }

}
@media (max-width: 340px) {
    #profile-tab .nav-tabs .nav-item {
        padding-left: 4px;
        padding-right: 4px;
    }

        #profile-tab .nav-tabs .nav-item .nav-link {
            padding: 6px;
        }

            #profile-tab .nav-tabs .nav-item .nav-link h4 {
                font-size: 13px !important;
            }
}
.dropify-wrapper{
    height:170px!important;
}
.dropify-wrapper .dropify-message .file-icon p,
.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-message,
.dropify-wrapper .dropify-message p.dropify-error {
    font-family: IRANYekanDigits !important;
    font-size: 15px !important;
    font-weight: normal !important;
}
.dropify-wrapper .dropify-clear {
    font-family: IRANYekanDigits !important;
    font-size: 15px !important;
    color:#fff!important;
    background-color:#FF1F15!important;
}


.dropify-wrapper .dropify-errors-container ul {
    font-family: IRANYekanDigits !important;
    left: unset !important;
    right: 0 !important;
    font-weight: normal !important;
    text-align:right;
}
.dropify-wrapper .dropify-errors-container ul li {
    font-weight: normal !important;

}
.Serviceloader {
    width: 30%;
    height: 215px;
    margin: auto;
    display: inline-block;
    position: relative;
    background: #FFF;
    box-sizing: border-box;
}

    .Serviceloader::after {
        content: '';
        width: calc(100% - 30px);
        height: calc(100% - 15px);
        top: 15px;
        left: 15px;
        position: absolute;
        background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5) 50%, transparent 100%), linear-gradient(#DDD 100px, transparent 0), linear-gradient(#DDD 16px, transparent 0), linear-gradient(#DDD 50px, transparent 0);
        background-repeat: no-repeat;
        background-size: 75px 175px, 100% 100px, 100% 16px, 100% 30px;
        background-position: -185px 0, center 0, center 115px, center 142px;
        box-sizing: border-box;
        animation: animloader 1s linear infinite;
    }

@keyframes animloader {
    to {
        background-position: 185px 0, center 0, center 115px, center 142px;
    }
}
@media (max-width: 991px) {
    .table-sm-col-view thead {
        display: none;
    }
    .table-sm-col-view tbody{
        display:block;
    }
        .table-sm-col-view tbody tr {
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            justify-content: flex-start;
            align-items: stretch;
            align-content: stretch;
            border: 1px solid #d4d4d4;
            margin-bottom: 5px;

        }
            .table-sm-col-view tbody tr th,
            .table-sm-col-view tbody tr td {
                width: unset !important;
                max-width: unset !important;
                border: none !important;
                padding-block: 3px !important;
            }
            .table-sm-col-view tbody tr th {
                color: var(--color-primary);
            }
    .table-title-sm-col-view tbody tr td:before {
        content: attr(data-title);
        color: var(--color-primary);
        display: block;
        font-family: IRANYekanDigits !important;
        font-size: 13px;
    }
    .table-title-sm-col-view tbody tr td {
        border-bottom: 1px dashed #d4d4d4 !important;
    }
    .table-title-sm-col-view tbody tr td:last-child {
        border-bottom: none !important;
    }
}

.service-title .card {
    position: relative !important;
    border-radius: 0 60px 60px 0 !important;
    margin-bottom: 10px !important;
    border-left: 3px solid var(--color-primary) !important;
    overflow: hidden !important;
    background: url('../img/world.svg') right no-repeat !important; 
    background-size: cover !important;
    background-color: whitesmoke !important;
}

    .service-title .card .card-body {
        padding-bottom: 10px !important;
        padding-top: 10px !important;
        display: flex !important;
    }

    .service-title .card .service-title-flag {
        width: 54px;
        height: 54px;
        display: inline-block;
        border-radius: 50px;
        overflow: hidden;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        vertical-align: middle !important;
        transition: all .5s;
        margin: auto;
    }

.service-title .card .service-title-info {
    display: inline-block;
    width: calc(100% - 160px);
    padding-right: 10px;
}

.service-title .card .service-title-info .service-title-info-d {
    display: block;
    text-align: right;
    width: 100%;
}

    .service-title .card .service-title-info .service-title-info-d h1 {
        margin: 5px 0 5px 0 !important;
        color: black;
        font-size: 18px
    }

    .service-title .card .service-title-info .service-title-info-d.font-default-en {
        font-size: 15px;
        color: var(--color-primary);
    }

    .service-title .card .service-return {
        display: inline-block;
        width: 100px;
        padding-right: 10px;
        text-align: left;
        margin:auto;
    }



@media (max-width: 1400px) {
    .navbar a, .navbar a:focus{
        padding-left:10px;
        padding-right:10px;
    }
}

.package-card {
    background: linear-gradient(135deg, #5f2c82, #49a09d);
    border-radius: 20px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
    max-width: 340px;
    margin: auto;
    position: relative;
    animation: fadeInScale 1s ease forwards;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

    .package-card:hover {
        transform: scale(1);
        box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    }

    /* گرادیانت مخصوص حالت هدیه */
    .package-card.package-card-gift {
        background: linear-gradient(135deg, #5f2c82, #ff4977);
    }

    .package-card .header {
        background: rgba(255,255,255,0.07);
        padding: 20px;
        text-align: center;
        font-weight: bold;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        margin-top: 0;
        position: relative;
        overflow: hidden;
        min-height: 100px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }


    .package-card.package-card-gift .header {
        padding-left: 50px;
        padding-right: 5px !important;

    }

    .package-card .header::after {
        content: "";
        position: absolute;
        top: -20px;
        left: -100px;
        width: 80px;
        height: calc(100% + 40px);
        background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
        transform: skewX(-25deg);
        animation: lightMove 4s infinite ease-in-out;
        filter: blur(13px)
    }

    .package-card .price {
        font-size: 2rem;
        text-align: center;
        padding: 22px 0;
        font-weight: 900;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
        color: #ffd700;
    }

    .package-card .features {
        padding: 0 20px;
        color: #eee;
    }

        .package-card .features li {
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding: 11px 0;
            list-style: none;
        }

    .package-card .btn-buy {
        display: block;
        border-radius: 30px;
        margin: 22px auto;
        padding: 11px 30px;
        font-weight: bold;
        transition: all 0.35s;
        width: 70%;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
        border:unset!important;
    }

        .package-card .btn-buy:hover {
            background: #ffd700;
            color: #333;
            transform: scale(1.05);
            box-shadow: 0 0 18px rgba(255, 215, 0, 0.4);
        }

    .package-card .footer {
        background: rgba(255,255,255,0.05);
        padding: 15px;
        text-align: center;
        font-size: 0.85rem;
        line-height: 1.6;
    }

.flags img {
    width: 28px;
    margin: 0 3px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .flags img:hover {
        transform: scale(1.08) rotate(3deg);
        box-shadow: 0 0 8px rgba(255,255,255,0.2);
    }


.package-card .ribbon {
    display: none;
}

.package-card.package-card-gift .ribbon {
    display: block;
    position: absolute;
    left: -55px;
    transform: rotate(-45deg);
    background: rgb(255, 0, 128);
    color: #fff;
    padding: 5px 55px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
    top:20px;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(0.95);
    }
}

@keyframes lightMove {
    0% {
        transform: translateX(-150%) skewX(-25deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateX(550%) skewX(-25deg);
        opacity: 1;
    }

    60% {
        opacity: 0;
    }

    100% {
        transform: translateX(550%) skewX(-25deg);
        opacity: 0;
    }
}