@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --jetly-font: "Poppins", sans-serif;
    --jetly-reey-font: "reeyregular";
    --jetly-gray: #79817c;
    --jetly-gray-rgb: 121, 129, 124;
    --jetly-white: #ffffff;
    --jetly-white-rgb: 255, 255, 255;
    --jetly-base: #f36523;
    --jetly-base-rgb: 167, 145, 50;
    --jetly-black: #000000;
    --jetly-black-rgb: 18, 56, 33;
    --jetly-primary: #f8f7f1;
    --jetly-primary-rgb: 248, 247, 241;
    --jetly-letter-spacing: -0.04em;
}



.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--jetly-font);
    color: var(--jetly-gray);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    overflow-x: hidden !important;
}

    body.locked {
        overflow: hidden;
    }

a {
    color: var(--jetly-gray);
}

    a,
    a:hover,
    a:focus,
    a:visited {
        text-decoration: none;
    }

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    margin: 0;
}

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--jetly-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    opacity: 0.4;
    z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--jetly-base);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--jetly-base);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--jetly-base);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: .4;
}

.thm-btn {
    position: relative;
    display: flex;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--jetly-black);
    color: var(--jetly-white);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 30px 13px;
    padding-right: 60px;
    border-radius: 50px;
    transition: all 0.5s linear;
    z-index: 1;
    /* text-transform: uppercase; */
}

    .thm-btn::before {
        position: absolute;
        top: -1px;
        left: -1px;
        bottom: -1px;
        right: -1px;
        background-color: var(--jetly-base);
        content: "";
        border-radius: 50px;
        transform: scaleY(0.0) rotateX(0deg);
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
        z-index: -1;
    }

    .thm-btn:hover {
        color: var(--jetly-white);
    }

        .thm-btn:hover:before {
            transform: scaleY(1.0) rotateX(0deg);
            -webkit-transition: all 0.4s linear;
            -o-transition: all 0.4s linear;
            transition: all 0.4s linear;
            background-color: #f36523;
        }


.section-title {
    position: relative;
    display: block;
    margin-top: 0px;
    margin-bottom: 30px;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #818181;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 1;
}

.regional_section-title__title {
    margin-top: 25px;
    color: #282828;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    display: inline-block;
}



.section-title__title_h1 {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
}

.section-title__title {
    margin-bottom: 1rem;
    color: #2e2e2e;
    font-size: 22px;
    line-height: normal;
    padding-bottom: 12px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}

.section-title__para {
    color: #2e2e2e;
    font-size: 15px;
    line-height: 22px;
}

.section-title__title_h1 span {
    color: #f36523;
    font-weight: 300;
}

.section-title__title-0 {
    margin-top: 28px;
    margin-bottom: 1rem;
    color: #2e2e2e;
    font-size: 18px;
    padding-bottom: 13px;
    line-height: normal;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

    .bootstrap-select .dropdown-menu > li + li > a {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .bootstrap-select .dropdown-menu > li.selected > a {
        background: var(--jetly-primary);
        color: #fff;
    }

    .bootstrap-select .dropdown-menu > li > a {
        font-size: 16px;
        font-weight: 500;
        padding: 4px 20px;
        color: #ffffff;
        background: var(--jetly-base);
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .bootstrap-select .dropdown-menu > li > a:hover {
            background: var(--jetly-black);
            color: var(--jetly-white);
            cursor: pointer;
        }

.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-image: url(../images/loader.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--jetly-base);
    position: fixed;
    bottom: 60px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    color: #fff;
}

    .scroll-to-top i {
        font-size: 18px;
        line-height: 50px;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
        position: relative;
        display: inline-block;
        transform: rotate(-90deg);
    }

    .scroll-to-top:hover {
        background-color: #f36523;
        color: #000;
    }




/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    background: transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    transition: all 500ms ease;
    z-index: 999;
}

    .main-header:before {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        content: "";
        height: 1px;
        background-color: rgba(var(--jetly-white-rgb), .10);
    }


.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}


.stricky-header .main-menu__inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--jetly-base);
    cursor: pointer;
}

    .mobile-nav__buttons a + a {
        margin-left: 10px;
    }

    .mobile-nav__buttons a:hover {
        color: var(--jetly-base);
    }

.main-menu .mobile-nav__toggler {
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

    .main-menu .mobile-nav__toggler:hover {
        color: var(--jetly-black);
    }

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
    margin-top: -31px;
    margin-bottom: -31px;
}

.home-showcase__inner {
    padding: 40px 40px 40px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.home-showcase .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 20px;
}

.home-showcase__image {
    position: relative;
    background-color: var(--jetly-base);
    overflow: hidden;
}

    .home-showcase__image > img {
        width: 100%;
        -webkit-transition: 500ms ease;
        transition: 500ms ease;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .home-showcase__image:hover > img {
        opacity: 0.75;
    }

    .home-showcase__image:hover .home-showcase__buttons {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
        visibility: visible;
    }

.home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
}

.home-showcase__buttons__item {
    padding: 10px 20px;
    width: 150px;
    text-align: center;
}

    .home-showcase__buttons__item + .home-showcase__buttons__item {
        margin-top: 10px;
    }

.home-showcase__title {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--jetly-black);
    margin-top: 17px;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
    color: var(--jetly-white, #ffffff);
}











/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/


.top-header-grid {
    position: absolute;
    z-index: 999;
    right: 0px;
    left: 0px;
}

.btn-right-menubar {
    background-color: #f26624;
    color: #fff;
    font-size: 50px !important;
    border: 0;
    height: 36px;
    justify-content: center;
    display: flex;
    align-items: center;
    background: -webkit-linear-gradient(#f26624, #fff, #45d34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-header-two {
    background: transparent;
    position: absolute;
    left: 0px;
    top: 5px;
    right: 0;
    width: 100%;
    transition: all 500ms ease;
    z-index: 99;
    border-bottom: 1px solid rgb(101 101 101 / 48%);
}

.main-header-two__top {
    position: relative;
    display: block;
    padding: 0px 0;
    background-color: #efefef;
    height: 35px;
}

    .main-header-two__top:before {
        position: absolute;
        top: 0;
        /* left: 0; */
        right: 0;
        bottom: 0;
        content: "";
        background-color: #f36523;
        width: 840px;
    }

    .main-header-two__top::after {
        content: '';
        position: absolute;
        right: 840px;
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 0px solid transparent;
        border-top: 35px solid #f36523;
        clear: both;
        top: 0px;
    }

.main-header-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-two__top-left {
    position: relative;
    display: block;
}

.main-header-two__contact-list {
    position: relative;
    padding: 0px 0;
}

    .main-header-two__contact-list li {
        position: relative;
        display: inline-block;
    }

        .main-header-two__contact-list li + li {
            padding: 0px 0px;
        }

        .main-header-two__contact-list li:nth-child(4) {
            border-right: 1px solid #a7a7a7;
        }

        .main-header-two__contact-list li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .main-header-two__contact-list li .icon i {
                font-size: 12px;
                color: var(--jetly-base);
            }

        .main-header-two__contact-list li .text {
            margin-left: 0px;
        }

            .main-header-two__contact-list li .text a {
                color: #ffffff;
                -webkit-transition: all 500ms ease;
                transition: all 500ms ease;
                font-size: 12px;
                border-right: 1px solid #6e6e6e;
                padding: 0px 9px;
                font-weight: 400;
            }

                .main-header-two__contact-list li .text a:hover {
                    color: var(--jetly-base);
                }

.main-header-two__top-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

.main-header-two__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
    padding: 12.5px 0;
}

    .main-header-two__social a {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 15px;
        color: var(--jetly-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .main-header-two__social a:hover {
            color: var(--jetly-base);
        }

        .main-header-two__social a + a {
            margin-left: 25px;
        }

.stricky-header.main-menu-two {
    background: rgb(9 12 28);
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(9 12 28);
}

    header.fixed .main-logo-two__left {
        margin-top: 8px;
    }

.stricky-header.main-menu-two .main-menu-two__logo a {
    display: block;
    width: 180px;
}

.main-menu-two__wrapper {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu-two__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-menu-two__wrapper-inner-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    height: 1px;
    background-color: rgba(var(--jetly-white-rgb), .10);
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.main-menu-two__left {
    display: block;
    margin-right: 0px;
}

.main-menu-two__logo {
    display: flex;
    position: relative;
    align-items: center;
}

    .main-menu-two__logo span {
        color: #ffffff;
        width: 158px;
        line-height: 18px;
        padding-left: 1rem;
        margin-top: 0px;
        border-left: 1px solid rgb(204 204 204 / 37%);
        margin-left: 1rem;
        font-size: 12px;
        font-weight: 300;
    }

    .main-menu-two__logo a {
        display: block;
        width: 260px;
    }

        .main-menu-two__logo a img {
            width: 100%
        }

.main-menu-two__logo_right {
    display: inline-block;
    padding: 17px 0;
    float: right;
    width: 280px;
}

    .main-menu-two__logo_right img {
        width: 100%
    }

.main-menu-two__main-menu-box {
    display: block;
}

    .main-menu-two__main-menu-box span {
        /* color: #fff; */
        margin-left: 10px;
        text-transform: lowercase;
    }

.main-menu-two__right {
    display: none;
    align-items: center;
}

.main-menu-two__search-cart-box {
    position: relative;
    display: inline-block;
}

/* .main-menu-two__search-cart-box:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -30px;
  width: 1px;
  background-color:rgb(255 255 255 / 31%);
} */


.main-menu-two__search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-two__search {
    position: relative;
    font-size: 10px;
    color: var(--jetly-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: #FF5722;
    height: 20px;
    width: 20px;
    line-height: normal;
    border-radius: 100px;
    padding: 0px 0px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

    .main-menu-two__search:hover {
        background-color: #be4e02;
        color: #fff;
    }

.main-menu-two__cart-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.main-menu-two__cart {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--jetly-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .main-menu-two__cart:hover {
        color: var(--jetly-base);
    }

.main-menu-two .main-menu__list > li + li,
.stricky-header.main-menu-two .main-menu__list > li + li {
    margin-left: 0px;
}

.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
    color: #fff;
}

.main-menu-two .main-menu__list > li.active > a,
.main-menu-two .main-menu__list > li:hover > a,
.stricky-header.main-menu-two .main-menu__list > li.active > a,
.stricky-header.main-menu-two .main-menu__list > li:hover > a {
    color: #000000;
    background: #f36523;
}















/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
    background: transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0;
    width: 100%;
    transition: all 500ms ease;
    z-index: 999;
    background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.stricky-header.main-menu-three {
    background-color: var(--jetly-white);
}

.main-header-three__top {
    position: relative;
    display: block;
    border-bottom: 1px solid #eeede5;
    padding: 2px 0;
    z-index: 1;
}

.main-header-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 60px 0;
}

.main-header-three__top-left {
    position: relative;
    display: block;
}

.main-header-three__contact-list {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

    .main-header-three__contact-list li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .main-header-three__contact-list li + li {
            margin-left: 30px;
        }

        .main-header-three__contact-list li .icon {
            position: relative;
            display: flex;
            align-items: center;
            top: 1px;
        }

            .main-header-three__contact-list li .icon i {
                font-size: 12px;
                color: var(--jetly-base);
            }

    .main-header-three__contact-list .text {
        margin-left: 10px;
    }

        .main-header-three__contact-list .text p {
            font-size: 13px;
            font-weight: 500;
            color: var(--jetly-gray);
        }

            .main-header-three__contact-list .text p a {
                color: var(--jetly-gray);
                -webkit-transition: all 500ms ease;
                transition: all 500ms ease;
            }

    .main-header-three__contact-list li .text p a:hover {
        color: var(--jetly-base);
    }

.main-header-three__top-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__social {
    position: relative;
    display: flex;
    align-items: center;
}

    .main-header-three__social a {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 15px;
        color: var(--jetly-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .main-header-three__social a:hover {
            color: var(--jetly-base);
        }

        .main-header-three__social a + a {
            margin-left: 25px;
        }

.main-menu-three__wrapper {
    position: relative;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-menu-three__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 60px 0;
}

.main-menu-three__left {
    position: relative;
    display: block;
}

.main-menu-three__logo {
    position: relative;
    display: block;
    padding: 26px 0;
}

.main-menu-three__right {
    position: relative;
    display: block;
}

.main-menu-three__main-menu-box {
    display: block;
}

.main-menu-three__search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 38px 0;
}

    .main-menu-three__search-cart-box:before {
        content: "";
        position: absolute;
        top: 30px;
        bottom: 30px;
        left: -30px;
        width: 1px;
        background-color: #eeede5;
    }

.main-menu-three__search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-three__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--jetly-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .main-menu-three__search:hover {
        color: var(--jetly-base);
    }

.main-menu-three__cart-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.main-menu-three__cart {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--jetly-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .main-menu-three__cart:hover {
        color: var(--jetly-base);
    }

.stricky-header.main-menu-three {
    background-color: var(--jetly-white);
}

    .main-menu-three .main-menu__list > li > a,
    .stricky-header.main-menu-three .main-menu__list > li > a {
        color: var(--jetly-gray);
        font-weight: 500;
    }

    .main-menu-three .main-menu__list > li.active > a,
    .main-menu-three .main-menu__list > li:hover > a,
    .stricky-header.main-menu-three .main-menu__list > li.active > a,
    .stricky-header.main-menu-three .main-menu__list > li:hover > a {
        color: var(--jetly-black);
    }


/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

    .search-popup.active {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #090c1c;
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

    .search-popup__content form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
    }

        .search-popup__content form input[type="search"],
        .search-popup__content form input[type="text"] {
            width: 100%;
            background-color: #fff;
            font-size: 16px;
            border: none;
            outline: none;
            height: 66px;
            padding-left: 30px;
        }

    .search-popup__content .thm-btn {
        padding: 0;
        width: 68px;
        height: 68px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        position: absolute;
        top: 0;
        right: -1px;
        border-radius: 0;
        background-color: var(--jetly-base);
        border: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

        .search-popup__content .thm-btn i {
            height: auto;
            width: auto;
            background-color: transparent;
            border-radius: 50%;
            color: var(--jetly-white);
            font-size: 22px;
            line-height: inherit;
            text-align: center;
            top: 0;
            margin-right: 0;
            padding-left: 0;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

        .search-popup__content .thm-btn:hover:before {
            width: 150%;
        }

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    z-index: 2;
}

    .main-slider .swiper-slide {
        position: relative;
        background-color: var(--jetly-black);
    }

    .main-slider .container {
        position: relative;
        padding-top: 224px;
        padding-bottom: 230px;
        z-index: 30;
    }

    .main-slider .image-layer {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: left center;
        -webkit-transform: scale(1);
        transform: scale(1);
        mix-blend-mode: luminosity;
        opacity: .15;
        -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        transition: transform 7000ms ease, opacity 1500ms ease-in;
        transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        z-index: 1;
    }

    .main-slider .swiper-slide-active .image-layer {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }

.main-slider__content {
    position: relative;
    display: block;
    text-align: center;
}

.main-slider__sub-title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--jetly-white);
    font-weight: 500;
    line-height: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__title {
    position: relative;
    font-size: 100px;
    color: var(--jetly-white);
    font-weight: 600;
    line-height: 90px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 26px;
    margin-bottom: 39px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn {
    background-color: #f47419;
    color: #ffffff;
}

    .main-slider__btn:hover {
        color: #fff;
    }

    .main-slider__btn:before {
        background-color: var(--jetly-white);
    }

.main-slider__btn-two {
    background-color: var(--jetly-white);
    color: var(--jetly-black);
    margin-left: 10px;
}

    .main-slider__btn-two:hover {
        color: var(--jetly-white);
    }

    .main-slider__btn-two:before {
        background-color: var(--jetly-base);
    }

.main-slider__btn span {
    display: flex;
    justify-content: center;
    font-size: 31px;
    align-items: center;
    font-weight: 500;
    background-color: #fff;
    width: 35px;
    height: 35px;
    color: #000;
    border-radius: 100px;
    position: absolute;
    right: 14px;
    top: 11px;
    rotate: 315deg;
}


.main-slider__btn_two {
    background-color: #ffffff;
    color: #000000;
}

    .main-slider__btn_two span {
        display: flex;
        justify-content: center;
        font-size: 31px;
        align-items: center;
        font-weight: 500;
        background-color: #02AA5A;
        ;
        width: 35px;
        height: 35px;
        color: #fff;
        border-radius: 100px;
        position: absolute;
        right: 14px;
        top: 11px;
        rotate: 315deg;
    }

    .main-slider__btn_two:hover:before,
    .main-slider__btn_two:hover {
        background-color: #fff !important;
        color: #000;
    }

        .main-slider__btn_two:hover:before {
            background-color: #fff !important;
            color: #000;
        }

.main-slider__btn_three {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #fff;
}

    .main-slider__btn_three span {
        display: flex;
        justify-content: center;
        font-size: 31px;
        align-items: center;
        font-weight: 500;
        background-color: #f47419;
        width: 35px;
        height: 35px;
        color: #ffffff;
        border-radius: 100px;
        position: absolute;
        right: 14px;
        top: 11px;
        rotate: 90deg;
    }

    .main-slider__btn_three:hover:before,
    .main-slider__btn_three:hover {
        background-color: transparent !important;
        color: #fff;
    }

        .main-slider__btn_three:hover:before {
            background-color: transparent !important;
            color: #000;
        }

.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__sub-title,
.main-slider .swiper-slide-active .main-slider__btn-box {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
    z-index: 1;
}

    .main-slider-two .swiper-slide {
        position: relative;
        background-color: var(--jetly-black);
        height: auto;
    }

    .main-slider-two .container {
        position: relative;
        padding-top: 40px;
        padding-bottom: 10px;
        z-index: 30;
        display: flex;
        align-items: center;
        height: 750px;
    }

.img-fluid-banner {
    position: absolute;
    bottom: 0;
}

    .img-fluid-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.img-fluid-banner-modiji {
    width: 660px;
    right: 0px;
    bottom: -120px;
}

/* .image-layer-two {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  -webkit-transform: scale(1);
  transform: scale(1); 
   -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease; 
   transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease; 
   transition: transform 7000ms ease, opacity 1500ms ease-in; 
   transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
   z-index: 1;
}

.main-slider-two .swiper-slide-active .image-layer-two {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
} */


.image-layer-two {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    -webkit-animation: zoomin 30s ease-in infinite;
    animation: zoomin 30s ease-in infinite;
    transition: all 30s ease-in-out;
    overflow: hidden;
    z-index: 1;
}



/* Zoom in Keyframes */

@-webkit-keyframes zoomin {

    0% {
        transform: scale(1);
    }



    50% {
        transform: scale(1.1);
    }



    100% {
        transform: scale(1);
    }
}



@keyframes zoomin {

    0% {
        transform: scale(1);
    }



    50% {
        transform: scale(1.1);
    }



    100% {
        transform: scale(1);
    }
}

.main-slider-two .swiper-wrapper {
    height: auto;
}

.image-layer-two:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(223, 51, 29, 0) 60%);
    height: 80%;
}

.main-slider-two__content {
    position: relative;
    display: block;
}

.main-slider-two__title {
    /* font-family: "Libre Baskerville", serif; */
    position: relative;
    display: block;
    font-size: 55px;
    line-height: 65px;
    font-weight: 600;
    color: var(--jetly-white);
    letter-spacing: -0.04em;
    /* text-transform: uppercase; */
    margin-bottom: 1rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

    .main-slider-two__title span {
        display: block;
    }

        .main-slider-two__title span b {
            font-weight: 600;
            color: #f26624;
            margin-left: 5px;
        }

        .main-slider-two__title span:nth-child(2) {
            padding-left: 5rem;
        }

        .main-slider-two__title span:nth-child(4) {
            padding-left: 5rem;
        }

.main-slider-two__para {
    color: #fff;
    line-height: normal;
    margin-bottom: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
    padding-right: 3rem;
    font-size: 16px;
    line-height: 24px;
}

.main-slider-two__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__title,
.main-slider-two .swiper-slide-active .main-slider-two__para,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box,
.main-slider-two .swiper-slide-active .main-slider-two__counter {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

.main-slider-two__shape-1 {
    position: absolute;
    top: -65px;
    left: 0;
    transform: translateX(-200px);
    opacity: 0;
}

.swiper-slide-active .main-slider-two__shape-1 {
    opacity: 1;
    transform: translateX(0px);
    transition: all 1000ms ease;
    transition-delay: 1200ms;
}

.main-slider-two__shape-1 img {
    width: auto;
}

.main-slider__nav {
    position: absolute;
    bottom: 14%;
    right: 7%;
    z-index: 100;
    display: flex;
    padding: 0 55px;
    height: 0;
    line-height: 0;
    gap: 5px;
}


    .main-slider__nav .swiper-button-next,
    .main-slider__nav .swiper-button-prev {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 100;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        color: #ffffff;
        background-color: rgb(0 0 0);
        border-radius: 50%;
        margin: 0;
        text-align: center;
        transition: all 500ms ease;
        padding: 23px 0;
        opacity: 0.6;
    }

        .main-slider__nav .swiper-button-next:hover,
        .main-slider__nav .swiper-button-prev:hover {
            opacity: 9;
        }

        .main-slider__nav .swiper-button-next::after,
        .main-slider__nav .swiper-button-prev::after {
            display: none;
        }

    .main-slider__nav .swiper-button-prev {
        margin-bottom: 10px;
    }

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-three {
    position: relative;
    display: block;
    z-index: 91;
}

    .main-slider-three .swiper-slide {
        position: relative;
        /* background-image: linear-gradient(0deg, rgb(246, 245, 238) 0%, rgba(255, 255, 255, 0) 100%); */
        background-color: rgb(246, 245, 238);
    }

    .main-slider-three .container {
        position: relative;
        padding-top: 338px;
        padding-bottom: 260px;
        z-index: 30;
    }

.image-layer-three {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 100%;
    background-repeat: repeat-x;
    background-position: -1920px 100%;
    z-index: 1;
    animation: cloudMove 30s linear 0s infinite;
    mix-blend-mode: luminosity;
    opacity: 0.7;
}

@keyframes cloudMove {
    0% {
        background-position: -1920px 100%;
    }

    100% {
        background-position: 0 100%;
    }
}

.main-slider-three__img {
    position: absolute;
    bottom: 270px;
    right: -172px;
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
    z-index: 1;
}

    .main-slider-three__img img {
        width: auto;
    }

.main-slider-three .swiper-slide-active .main-slider-three__img {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 3000ms;
    transition-delay: 3000ms;
    -webkit-transition: opacity 2000ms ease, color 500ms ease, background 500ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, color 500ms ease, background 500ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__content {
    position: relative;
    display: block;
}

.main-slider-three__sub-title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--jetly-base);
    font-weight: 600;
    line-height: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__title {
    position: relative;
    font-size: 80px;
    color: var(--jetly-black);
    font-weight: 600;
    line-height: 90px;
    letter-spacing: -0.06em;
    margin-top: 5px;
    margin-bottom: 32px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}


.main-slider-three .swiper-slide-active .main-slider-three__sub-title,
.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}


/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
    position: relative;
    display: block;
    background-color: var(--jetly-base);
    padding: 220px 0 90px;
    z-index: 4;
}

.feature-one__shape-1 {
    position: absolute;
    top: -230px;
    left: 50%;
    transform: translateX(-50%);
}

    .feature-one__shape-1 > img {
        width: auto;
    }

.feature-one__shadow {
    position: absolute;
    bottom: -56px;
    background-blend-mode: multiply;
    background-color: var(--jetly-base);
    z-index: -1;
}

    .feature-one__shadow > img {
        width: auto;
        mix-blend-mode: multiply;
    }

.feature-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 1px solid #b4a151;
    padding: 36px 39px 32px;
    z-index: 1;
}

    .feature-one__single:before {
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        content: "";
        background-color: var(--jetly-white);
        transform: scaleX(0.7) rotateX(20deg);
        opacity: 0;
        transition: all 0.4s linear;
        z-index: -1;
    }

    .feature-one__single:hover:before {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

.feature-one__icon {
    position: relative;
    display: block;
    margin-bottom: 13px;
}

    .feature-one__icon span {
        position: relative;
        display: inline-block;
        font-size: 55px;
        color: var(--jetly-black);
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.feature-one__single:hover .feature-one__icon span {
    color: var(--jetly-base);
    transform: scale(.9);
}

.feature-one__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 28px;
}

    .feature-one__title a {
        color: var(--jetly-white);
        transition: all 0.4s linear;
    }

.feature-one__single:hover .feature-one__title a {
    color: var(--jetly-black);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    padding: 120px 0 160px;
}

.about-one__left {
    position: relative;
    display: block;
}

    .about-one__left .section-title {
        margin-bottom: 28px;
    }

.about-one__points {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 40px;
}

    .about-one__points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .about-one__points li + li {
            margin-top: 6px;
        }

        .about-one__points li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .about-one__points li .icon span {
                position: relative;
                display: inline-block;
                font-size: 15px;
                color: var(--jetly-base);
            }

        .about-one__points li .text {
            margin-left: 15px;
        }

            .about-one__points li .text p {
                font-size: 18px;
                font-weight: 600;
                color: var(--jetly-black);
            }

.about-one__btn-call {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__btn-box {
    position: relative;
    display: block;
}

.about-one__call {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.about-one__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(238, 237, 229);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    width: 57px;
    height: 57px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .about-one__call-icon:hover {
        background-color: var(--jetly-base);
        border-color: var(--jetly-base);
    }

    .about-one__call-icon span {
        position: relative;
        display: inline-block;
        font-size: 22px;
        color: var(--jetly-base);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .about-one__call-icon:hover span {
        color: var(--jetly-white);
    }

.about-one__call-content {
    margin-left: 10px;
}

.about-one__call-sub-title {
    position: relative;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 20px;
    font-weight: 500;
}

.about-one__call-number {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

    .about-one__call-number a {
        color: var(--jetly-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .about-one__call-number a:hover {
            color: var(--jetly-base);
        }

.about-one__right {
    position: relative;
    display: block;
    margin-left: 60px;
    margin-right: 40px;
    z-index: 1;
}

.about-one__img-box {
    position: relative;
    display: block;
    z-index: 1;
}

    .about-one__img-box:before {
        content: "";
        position: absolute;
        top: 90px;
        left: -40px;
        right: 40px;
        bottom: -40px;
        background-color: var(--jetly-primary);
        z-index: -1;
    }

.about-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

    .about-one__img:after {
        position: absolute;
        top: 0;
        left: -100%;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
        transform: skewX(-25deg);
        z-index: 1;
    }

.about-one__img-box:hover .about-one__img:after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.about-one__img > img {
    width: 100%;
}

.about-one__satisfied {
    position: absolute;
    bottom: 70px;
    right: -40px;
    background-color: var(--jetly-base);
    display: flex;
    align-items: center;
    padding: 27px 40px 27px;
    z-index: 2;
}

    .about-one__satisfied:before {
        content: "";
        position: absolute;
        bottom: -40px;
        right: 0;
        border-bottom: 40px solid transparent;
        border-left: 40px solid #9a8528;
    }

.about-one__satisfied-icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .about-one__satisfied-icon span {
        position: relative;
        display: inline-block;
        font-size: 62px;
        color: var(--jetly-black);
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.about-one__satisfied:hover .about-one__satisfied-icon span {
    transform: scale(.9);
}

.about-one__satisfied-content {
    margin-left: 0px;
}

    .about-one__satisfied-content h3 {
        font-size: 40px;
        color: var(--jetly-white);
        font-weight: 600;
        line-height: 40px !important;
        font-family: var(--jetly-font) !important;
        letter-spacing: 0;
    }

    .about-one__satisfied-content p {
        font-size: 14px;
        color: #ede2b1;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        line-height: 20px;
    }

.about-one__satisfied .odometer-formatting-mark {
    display: none;
}

.count-text {
    font-size: 4rem;
    color: #fff;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
    position: relative;
    display: block;
    padding: 0 0 90px;
}

.feature-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.feature-two__img-box {
    position: relative;
    display: block;
}

.feature-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

    .feature-two__img:before {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        content: "";
        background: rgb(19, 44, 26);
        background: rgb(19, 44, 26);
        background: linear-gradient(180deg, rgba(19, 44, 26, 0) 47%, rgba(19, 44, 26, 0.8911939775910365) 96%);
        z-index: 1;
    }

    .feature-two__img:after {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        content: "";
        background-color: rgba(var(--jetly-black-rgb), .30);
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .5s;
        transition-property: all;
        transform-origin: top;
        transform-style: preserve-3d;
        transform: scaleY(0);
        z-index: 1;
    }

.feature-two__single:hover .feature-two__img:after {
    transform: scaleY(1.0);
}

.feature-two__img img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__img img {
    transform: scale(1.05);
}

.feature-two__tilte-box {
    position: absolute;
    bottom: 42px;
    left: 49px;
    z-index: 2;
}

.feature-two__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
}

    .feature-two__title a {
        color: var(--jetly-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .feature-two__title a:hover {
            color: var(--jetly-base);
        }

.feature-two__arrow {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 2;
}

    .feature-two__arrow a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        background-color: var(--jetly-white);
        border-radius: 50%;
        font-size: 15px;
        color: var(--jetly-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .feature-two__arrow a:hover {
            background-color: var(--jetly-base);
            color: var(--jetly-white);
        }

.feature-two__content-box {
    position: relative;
    display: block;
    background-color: var(--jetly-base);
    z-index: 2;
}

.feature-two__content-box-inner {
    position: relative;
    display: block;
    padding: 48px 50px 50px;
    overflow: hidden;
    z-index: 2;
}

.feature-two__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

    .feature-two__shape-1 > img {
        width: 100%;
    }

.feature-two__dot {
    position: absolute;
    bottom: -10px;
    left: -10px;
    opacity: .10;
    z-index: -1;
}

    .feature-two__dot > img {
        width: auto;
    }

.feature-two__content-box-top {
    position: relative;
    display: block;
}

.feature-two__content-box-sub-tilte {
    font-size: 14px;
    color: #ede2b1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    line-height: 14px;
}

.feature-two__content-box-title {
    font-size: 30px;
    color: var(--jetly-white);
    font-weight: 600;
    line-height: 35px;
    margin-top: 6px;
}

    .feature-two__content-box-title a {
        color: var(--jetly-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .feature-two__content-box-title a:hover {
            color: var(--jetly-black);
        }

.feature-two__content-box-text {
    color: #ede2b1;
    font-weight: 500;
    padding-top: 19px;
    padding-bottom: 30px;
}

.feature-two__btn {
    background-color: var(--jetly-white);
    color: var(--jetly-black);
}

    .feature-two__btn:before {
        background-color: var(--jetly-black);
    }

/*--------------------------------------------------------------
# Get Flight
--------------------------------------------------------------*/
.get-flight {
    position: relative;
    display: block;
    background-color: var(--jetly-black);
    padding: 120px 0 109px;
    z-index: 1;
}

    .get-flight:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 363px;
        background-color: var(--jetly-white);
        z-index: -1;
    }

.get-flight-img {
    position: absolute;
    top: 0;
    right: 0;
}

    .get-flight-img img {
        width: auto;
    }

.get-flight__shape-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: soft-light;
    opacity: .10;
    z-index: -1;
}

    .get-flight__shape-1 img {
        width: auto;
    }

.get-flight__shape-2 {
    position: absolute;
    bottom: 0;
    right: 560px;
    opacity: .10;
    z-index: -1;
}

    .get-flight__shape-2 img {
        width: auto;
    }

.get-flight__content-box {
    position: relative;
    display: block;
}

    .get-flight__content-box .section-title__title {
        color: var(--jetly-white);
    }

.get-flight__form {
    position: relative;
    display: block;
}

    .get-flight__form .row {
        --bs-gutter-x: 20px;
    }

.get-flight__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .get-flight__form-input-box input[type="text"] {
        height: 60px;
        width: 100%;
        background-color: #0d2b19;
        border: none;
        outline: none;
        padding: 0 30px;
        color: #889f91;
        line-height: 60px;
        font-weight: 400;
        font-size: 14px;
    }

.get-flight__icon-box {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

    .get-flight__icon-box i {
        position: relative;
        display: inline-block;
        font-size: 15px;
        color: var(--jetly-white);
    }

.get-flight__form .select-box .nice-select {
    background-color: #0d2b19;
    border-radius: 0;
    color: #889f91;
    font-size: 14px;
    font-weight: 400;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 20px;
}

    .get-flight__form .select-box .nice-select:after {
        position: absolute;
        right: 30px;
    }

.get-flight__btn {
    border: none;
    background-color: var(--jetly-base);
}

    .get-flight__btn:hover {
        color: var(--jetly-black);
    }

    .get-flight__btn:before {
        background-color: var(--jetly-white)
    }

.get-flight__content-text {
    font-size: 16px;
    color: #889f91;
    line-height: 30px;
}

    .get-flight__content-text span {
        position: relative;
        display: inline-block;
        color: var(--jetly-base);
    }


/* ui css */

#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--jetly-black);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--jetly-base) none repeat scroll 0 0;
    border: 2px solid var(--jetly-base);
    border-radius: 0;
    color: var(--jetly-white);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

    .ui-datepicker .ui-datepicker-prev:hover,
    .ui-datepicker .ui-datepicker-next:hover {
        top: 7px;
        background: #fff;
        border: none;
    }

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}

#ui-datepicker-div.ui-widget {
    font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget {
    font-family: var(--jetly-font);
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

    .services-one .container {
        max-width: 1600px;
    }

.services-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

    .services-one__img:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: rgba(var(--jetly-black-rgb), .40);
        width: 0%;
        transform: translateY(100%);
        transition: all 500ms ease;
        z-index: 1;
    }

.services-one__single:hover .services-one__img:before {
    transform: translateY(0);
    width: 100%;
}

.services-one__img img {
    width: 100%;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.services-one__single:hover .services-one__img img {
    transform: scale(1.1);
}

.services-one__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    margin-top: -40px;
    margin-right: 40px;
    padding: 28px 40px 35px;
    z-index: 2;
}

.services-one__title-box {
    position: relative;
    display: block;
}

.services-one__sub-title {
    font-size: 12px;
    color: var(--jetly-base);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    line-height: 12px;
}

.services-one__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 7px;
    margin-bottom: 14px;
}

    .services-one__title a {
        color: var(--jetly-black);
        -webkit-transition: all 700ms ease;
        transition: all 700ms ease;
    }

        .services-one__title a:hover {
            color: var(--jetly-base);
        }

.services-one__arrow {
    position: absolute;
    top: -20px;
    right: 20px;
}

    .services-one__arrow a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
        background-color: var(--jetly-base);
        font-size: 15px;
        color: var(--jetly-white);
        -webkit-transition: all 700ms ease;
        transition: all 700ms ease;
    }

        .services-one__arrow a:hover {
            background-color: var(--jetly-black);
        }

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
    position: relative;
    display: block;
    z-index: 1;
}

.counter-one__box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--jetly-black);
    padding-top: 49px;
    padding-bottom: 8px;
    z-index: 1;
}

.counter-one__single {
    position: relative;
    flex: 0 0 25%;
    max-width: 25%;
    width: 100%;
    text-align: center;
    margin-bottom: 33px;
    z-index: 1;
}

    .counter-one__single:before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        content: "";
        width: 1px;
        background-color: rgba(var(--jetly-white-rgb), .10);
    }

    .counter-one__single:first-child:before {
        display: none;
    }

.counter-one__icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    z-index: 1;
}

    .counter-one__icon i {
        position: relative;
        display: inline-block;
        font-size: 64px;
        color: var(--jetly-base);
        transition: all 500ms linear;
        transition-delay: 0.1s;
        transform: scale(1);
    }

.counter-one__single:hover .counter-one__icon i {
    transform: scale(0.9);
}

.counter-one__shape {
    position: absolute;
    top: 1px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(var(--jetly-base-rgb), .10);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    z-index: -1;
}

.counter-one__single:hover .counter-one__shape {
    transform: scale(1.2);
}

.counter-one__content {
    position: relative;
    display: block;
}

.counter-one__single h3 {
    font-size: 40px;
    line-height: 40px !important;
    color: var(--jetly-white);
    font-weight: 600;
    font-family: var(--jetly-font) !important;
}

.counter-one__text {
    font-size: 18px;
    color: #889f91;
}





/*--------------------------------------------------------------
# Special Offer One
--------------------------------------------------------------*/
.special-offer-one {
    position: relative;
    display: block;
    z-index: 1;
}

.special-offer-one__wrap {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.special-offer-one__left {
    position: relative;
    display: block;
    width: 50%;
    float: left;
    padding-right: 100px;
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--jetly-base);
    z-index: 1;
}

.special-offer-one__shape-1 {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 364px;
    opacity: 0.08;
    z-index: -1;
}

.special-offer-one__shape-2 {
    position: absolute;
    left: 75px;
    top: 140px;
    opacity: .10;
    z-index: -1;
}

    .special-offer-one__shape-2 img {
        width: auto;
    }

.special-offer-one__left .section-title__tagline {
    color: #ede2b1;
}

.special-offer-one__left .section-title {
    margin-bottom: 27px;
}

.special-offer-one__left .section-title__title {
    color: var(--jetly-white);
}

.special-offer-one__content {
    position: relative;
    display: block;
    max-width: 483px;
    width: 100%;
    float: right;
}

.special-offer-one__left-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #ede2b1;
    margin-bottom: 40px;
}

.special-offer__btn:hover {
    color: var(--jetly-black);
}

.special-offer__btn:before {
    background-color: var(--jetly-white);
}

.special-offer-one__right {
    position: relative;
    display: block;
    float: right;
    width: 50%;
    min-height: 663px;
}

.special-offer-one__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.special-offer-one__toggle {
    position: absolute;
    bottom: 134px;
    left: 80px;
    height: 130px;
    width: 130px;
    background-color: var(--jetly-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 20px 20px 0px rgba(21, 29, 42, 0.1);
    animation: fa-spin 5s ease infinite;
}

    .special-offer-one__toggle:before {
        position: absolute;
        bottom: 0px;
        right: 21px;
        content: "";
        height: 10px;
        width: 20px;
        background-repeat: no-repeat;
        background-image: url(../images/shapes/special-offer-one-toggle-shape.png);
        transform: rotate(-28deg);
    }

    .special-offer-one__toggle p {
        font-size: 20px;
        font-weight: 600;
        color: var(--jetly-white);
        position: relative;
        text-align: center;
        line-height: 24px;
    }

/*--------------------------------------------------------------
# Price One
--------------------------------------------------------------*/
.price-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.price-one__left {
    position: relative;
    display: block;
    margin-right: 20px;
    z-index: 5;
}

    .price-one__left .section-title {
        margin-bottom: 28px;
    }

.price-one__right {
    position: relative;
    display: block;
}

.price-one__carousel {
    position: relative;
    display: block;
}

.price-one__single {
    position: relative;
    display: block;
}

.price-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #eeede5;
    padding: 15px 60px 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.price-one__single:hover .price-one__top {
    background-color: var(--jetly-black);
}

.price-one__top p {
    font-size: 18px;
    color: var(--jetly-black);
    font-weight: 600;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.price-one__single:hover .price-one__top p {
    color: var(--jetly-white);
}

.price-one__top i {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--jetly-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.price-one__single:hover .price-one__top i {
    color: var(--jetly-white);
}

.price-one__content {
    position: relative;
    display: block;
    border: 1px solid #ecebe3;
    text-align: center;
    padding: 20px 0 40px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.price-one__single:hover .price-one__content {
    border: 1px solid var(--jetly-black);
}

.price-one__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .price-one__img img {
        width: auto !important;
        mix-blend-mode: luminosity;
        opacity: .50;
    }

.price-one_list {
    position: relative;
    display: block;
    margin-top: 21px;
    margin-bottom: 20px;
}

    .price-one_list li {
        position: relative;
        display: block;
    }

        .price-one_list li + li {
            margin-top: 6px;
        }

        .price-one_list li span {
            color: var(--jetly-black);
            font-weight: 600;
        }

.price-one__btn-box {
    position: relative;
    display: block;
}

.price-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.price-one__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

    .price-one__carousel.owl-carousel .owl-item.active {
        opacity: 1;
        visibility: visible;
    }

.price-one__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 97px;
    left: -400px;
    margin: 0;
}

    .price-one__carousel.owl-theme .owl-nav .owl-next {
        height: 50px;
        width: 50px;
        line-height: 50px;
        border-radius: 50%;
        color: var(--jetly-black);
        background-color: var(--jetly-primary);
        font-size: 15px;
        margin: 0;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .price-one__carousel.owl-theme .owl-nav .owl-prev {
        height: 50px;
        width: 50px;
        line-height: 50px;
        border-radius: 50%;
        color: var(--jetly-black);
        background-color: var(--jetly-primary);
        font-size: 15px;
        margin: 0;
        text-align: center;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .price-one__carousel.owl-theme .owl-nav .owl-next {
        margin-left: 5px;
    }

    .price-one__carousel.owl-theme .owl-nav .owl-prev {
        margin-right: 5px;
    }

        .price-one__carousel.owl-theme .owl-nav .owl-next span,
        .price-one__carousel.owl-theme .owl-nav .owl-prev span {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .price-one__carousel.owl-theme .owl-nav .owl-next:hover,
        .price-one__carousel.owl-theme .owl-nav .owl-prev:hover {
            background-color: var(--jetly-base);
            color: var(--jetly-white);
        }


/*--------------------------------------------------------------
# Destination One
--------------------------------------------------------------*/
.destination-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    background-color: var(--jetly-black);
    z-index: 1;
}

.destination-one__shape-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.02;
    z-index: -1;
}

.destination-one .section-title__title {
    color: var(--jetly-white);
}

.destination-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.destination-one__img-box {
    position: relative;
    display: block;
}

.destination-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

    .destination-one__img:before {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        content: "";
        background: rgba(18, 56, 33, .30);
        transition: all 900ms ease;
        -moz-transition: all 900ms ease;
        -webkit-transition: all 900ms ease;
        -ms-transition: all 900ms ease;
        -o-transition: all 900ms ease;
        transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        background-position: center center;
        z-index: 1;
    }

.destination-one__single:hover .destination-one__img:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.destination-one__img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.destination-one__single:hover .destination-one__img img {
    transform: scale(1.05);
}

.destination-one__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 50px;
    background-color: #04114f;
    padding: 26px 40px 28px;
    z-index: 2;
}

.destination-one__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

    .destination-one__title a {
        color: var(--jetly-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .destination-one__title a:hover {
        }

.destination-one__time {
    position: relative;
    display: flex;
    align-items: center;
}

.destination-one__paris-time p {
    font-size: 15px;
    color: var(--jetly-white);
}

.destination-one__paris-time span {
    font-weight: 500;
    color: var(--jetly-base);
}

.destination-one__barcelona-time {
    position: relative;
    display: block;
    margin-left: 16px;
}

    .destination-one__barcelona-time p {
        font-size: 15px;
        font-weight: 400;
        color: var(--jetly-white);
        line-height: 30px;
    }

    .destination-one__barcelona-time span {
        font-size: 15px;
        font-weight: 500;
        color: var(--jetly-base);
    }

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    padding: 112px 0 100px;
}

.brand-one__title {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 1170px;
    text-align: center;
    margin: 0 auto;
}

    .brand-one__title:before {
        position: absolute;
        top: 50%;
        bottom: 0;
        left: 0;
        content: "";
        height: 1px;
        background-color: #e1eaea;
        max-width: 530px;
        width: 100%;
        transform: translateY(-50%);
    }

    .brand-one__title:after {
        position: absolute;
        top: 50%;
        bottom: 0;
        right: 0;
        content: "";
        height: 1px;
        background-color: #e1eaea;
        max-width: 530px;
        width: 100%;
        transform: translateY(-50%);
    }

.brand-one .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .brand-one .swiper-slide img {
        -webkit-transition: 500ms;
        transition: 500ms;
        opacity: 0.2;
        max-width: 100%;
    }

        .brand-one .swiper-slide img:hover {
            opacity: 0.6;
        }

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

    .blog-one:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 497px;
        content: "";
        background-color: var(--jetly-primary);
        z-index: -1;
    }


/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter {
    position: relative;
    display: block;
    background-color: var(--jetly-base);
    padding: 100px 0 88px;
    overflow: hidden;
    z-index: 1;
}

.newsletter__shape-1 {
    position: absolute;
    bottom: -30px;
    left: 0;
    opacity: .10;
    z-index: -1;
}

    .newsletter__shape-1 img {
        width: auto;
    }

.newsletter__shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: .20;
    z-index: -1;
}

    .newsletter__shape-2 img {
        width: auto;
    }

.newsletter .section-title {
    margin-bottom: 0;
}

.newsletter .section-title__tagline {
    color: #ede2b1;
}

.newsletter .section-title__title {
    color: var(--jetly-white);
}

.newsletter__right {
    position: relative;
    display: block;
    margin-top: 11px;
    margin-left: 50px;
}

.newsletter__form {
    position: relative;
    display: block;
}

.newsletter__input-box {
    position: relative;
    display: block;
}

    .newsletter__input-box input[type="email"] {
        height: 70px;
        width: 100%;
        border: none;
        outline: none;
        padding-right: 240px;
        font-size: 16px;
        color: var(--jetly-gray);
        font-weight: 400;
        background-color: var(--jetly-white);
        border-radius: 33px;
        padding-left: 40px;
    }

.newsletter__btn {
    position: absolute;
    top: 50%;
    right: 10px;
    height: 50px;
    width: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: var(--jetly-black);
    border: 0;
    transform: translateY(-50%);
    transition: all 500ms ease;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--jetly-white);
}

    .newsletter__btn i {
        font-size: 14px;
        color: var(--jetly-primary);
        margin-left: 10px;
    }

    .newsletter__btn:hover {
        background-color: var(--jetly-base);
    }

.newsletter__right .checked-box {
    position: relative;
    display: block;
    min-height: 30px;
    margin-top: 16px;
    margin-left: 40px;
}

    .newsletter__right .checked-box label {
        position: relative;
        display: inline-block;
        padding-left: 30px;
        margin-right: 0px;
        margin-bottom: 0;
        color: #ede2b1;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
        cursor: pointer;
        min-height: 30px;
    }

    .newsletter__right .checked-box input[type="checkbox"] {
        display: none;
    }

        .newsletter__right .checked-box input[type="checkbox"] + label span {
            position: absolute;
            top: 2px;
            left: 0;
            width: 21px;
            height: 21px;
            vertical-align: middle;
            border: 1px solid #b9a75b;
            cursor: pointer;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

    .newsletter__right .checked-box label span:before {
        position: absolute;
        top: 5px;
        left: 6px;
        display: block;
        border-bottom: 2px solid var(--jetly-white);
        border-right: 2px solid var(--jetly-white);
        content: '';
        width: 5px;
        height: 8px;
        pointer-events: none;
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        opacity: 0;
    }

    .newsletter__right .checked-box input[type="checkbox"]:checked + label span {
        border-color: #b9a75b;
    }

        .newsletter__right .checked-box input[type="checkbox"]:checked + label span:before {
            opacity: 1;
        }

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background: #59201B;
    z-index: 1;
}

/* .site-footer::before{
  position: absolute;
  content: "";
  background: #7a910c;
  background: linear-gradient(317deg, rgb(134 155 0) 25%, #264d1e 100%);
} */
.site-footer__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.site-footer__shape-1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.05;
    z-index: -1;
}

    .site-footer__shape-1 img {
        width: auto;
    }

.site-footer__top {
    position: relative;
    display: block;
    padding: 250px 0 70px;
}

.accordion-body {
    font-size: 14px;
    padding-top: 0px;
}

    .accordion-body p {
        margin-bottom: 1rem;
    }

    .accordion-body h6 {
        margin-bottom: 10px;
    }

.faq-pic {
    display: block;
}

.footer-widget__about {
    position: relative;
    display: block;
    padding-right: 1rem;
}

.footer-widget__logo {
    position: relative;
    display: block;
}

    .footer-widget__logo a {
        display: block;
        margin-bottom: 1rem;
    }

        .footer-widget__logo a img {
        }

.footer-widget__about-text-box {
    position: relative;
    display: block;
    padding-top: 22px;
}

.footer-widget__about-text {
    font-size: 13px;
    font-weight: 300;
    color: #ffffff;
    line-height: 23px;
}

    .footer-widget__about-text a {
        display: block;
        color: #000000;
    }

        .footer-widget__about-text a:hover {
            display: block;
            color: #ff7300;
        }

.footer-widget__Explore {
    position: relative;
    display: block;
    margin-left: 50px;
}

.footer-widget__title-box {
    position: relative;
    display: block;
    margin-bottom: 13px;
}

.footer-widget__title {
    font-size: 18px;
    color: #ffb0a4;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 0rem;
}

.footer-widget__Explore-list {
    position: relative;
    display: block;
}

    .footer-widget__Explore-list li {
        position: relative;
        margin-bottom: 5px;
    }

        .footer-widget__Explore-list li::after {
            border-bottom-style: solid;
            border-bottom-width: 1px;
            border-right-style: solid;
            border-right-width: 1px;
            content: "";
            display: inline-block;
            height: 7px;
            position: absolute;
            top: 13px;
            left: -6px;
            width: 7px;
            border-color: #f38c7d;
            -moz-transform: rotate(315deg);
            -ms-transform: rotate(315deg);
            -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
        }

        .footer-widget__Explore-list li a {
            position: relative;
            display: inline-block;
            font-size: 13px;
            font-weight: 400;
            line-height: normal;
            color: rgb(255 255 255 / 84%);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            z-index: 1;
            padding-left: 15px;
        }

            .footer-widget__Explore-list li a:hover {
                color: #fff;
                padding-left: 18px;
            }

.footer-widget__links {
    position: relative;
    display: block;
}

.footer-widget__Contact {
    position: relative;
    display: block;
}

.footer-widget__Contact-list {
    position: relative;
    display: block;
    padding-top: 2px;
}

    .footer-widget__Contact-list li {
        position: relative;
        display: flex;
        align-items: center;
        line-height: normal;
        padding: 5px 0px;
    }

        .footer-widget__Contact-list li + li {
            margin-top: 7px;
        }

        .footer-widget__Contact-list li .icon {
            position: relative;
            display: flex;
            align-items: start;
            top: 0px;
            margin-right: 10px;
        }

            .footer-widget__Contact-list li .icon span {
                position: relative;
                display: inline-block;
                font-size: 14px;
                color: #f38c7d;
            }

        .footer-widget__Contact-list li .text {
            margin-left: 7px;
        }

            .footer-widget__Contact-list li .text p {
                font-size: 14px;
                font-weight: 400;
                color: rgb(255 255 255 / 84%);
            }

                .footer-widget__Contact-list li .text p a {
                    color: rgb(255 255 255 / 84%);
                    transition: all 500ms ease;
                    font-size: 14px;
                }

                    .footer-widget__Contact-list li .text p a:hover {
                        color: #fff;
                    }

.site-footer__bottom {
    position: relative;
    display: block;
    padding: 20px 0 20px;
    /* background-color: rgb(0 0 0 / 6%); */
    border-top: 1px solid #6e3d39;
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__bottom-left {
    position: relative;
    display: block;
}

.site-footer__bottom-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 26px;
    color: #ffffff9c;
}

    .site-footer__bottom-text a {
        color: #ffffff9c;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .site-footer__bottom-text a:hover {
            color: var(--jetly-base);
        }

.site-footer__bottom-right {
    position: relative;
    display: block;
}


.site-footer__social {
    position: relative;
    margin-right: 10px;
    position: relative;
    height: 35px;
    width: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--jetly-white);
    background-color: #00ad5b;
    font-size: 14px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

    .site-footer__social:hover {
        color: #000;
        background-color: #fff;
    }

.site-login-btn {
    position: relative;
    margin-right: 10px;
    position: relative;
    height: 35px;
    width: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--jetly-white);
    background-color: #f26624;
    font-size: 14px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
    padding: 0px 10px;
    border: 0;
}

    .site-login-btn:hover {
        color: #000;
        background-color: #fff;
    }

    .site-login-btn i {
        margin-right: 8px;
    }

.site-footer__social i {
    margin-right: 5px;
}

.social-icons-container {
    display: inline-block;
    margin-top: 2rem;
}

    .social-icons-container ul {
        display: flex;
        width: 100%;
        justify-content: left;
        align-items: center;
        padding: 0;
    }

    .social-icons-container li {
        list-style: none;
    }

    .social-icons-container a {
        width: 35px;
        height: 35px;
        color: #ffb0a4;
        text-align: center;
        line-height: normal;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        margin: 0 5px;
        position: relative;
        border-radius: 50%;
        overflow: hidden;
        border: 1px solid hsl(0deg 0% 100% / 30%);
    }

        .social-icons-container a i {
            transition: 0.5s;
            z-index: 1;
        }

        .social-icons-container a:hover i {
            transform: rotateY(360deg);
            color: #fff;
        }

    .social-icons-container ul > li > a::before {
        content: "";
        position: absolute;
        top: 101%;
        left: 0;
        width: 100%;
        height: 100%;
        transition: top 0.5s;
    }

    .social-icons-container ul > li:nth-child(1) > a::before {
        background: #23527c;
    }

    .social-icons-container ul > li:nth-child(2) > a::before {
        background: #cd486b;
    }

    .social-icons-container ul > li:nth-child(3) > a::before {
        background: #0077b5;
    }

    .social-icons-container ul > li:nth-child(4) > a::before {
        background: #000;
    }

    .social-icons-container ul > li > a:hover::before {
        top: 0;
    }

.foot-text {
    position: relative;
    display: block;
    margin: 2rem 3rem;
    margin-top: 0px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #ffffff;
    border-bottom: 2px solid #884949;
    padding-bottom: 2rem;
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 90px 0 100px;
    z-index: 2;
    background: #ffffff url(../images/why/why-bg.jpg) repeat-x;
    background-size: cover;
    background-position: top;
}

.about-two-inner {
    padding: 100px 0 100px;
}

.about-two__shape-1 {
    position: absolute;
    top: 45px;
    right: -140px;
}

    .about-two__shape-1 img {
        width: auto;
    }

.about-two__shape-2 {
    position: absolute;
    bottom: 0;
    right: 85px;
}

    .about-two__shape-2 img {
        width: auto;
    }

.about-two__left {
    position: relative;
    display: block;
    margin-right: 135px;
}

.about-two__img-box {
    position: relative;
    display: block;
}

.about-two__img-one {
    position: relative;
    display: block;
}

    .about-two__img-one img {
        width: 100%;
    }

.about-two__img-two {
    position: absolute;
    right: -135px;
    bottom: -119px;
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.07);
}

    .about-two__img-two img {
        width: auto;
    }


.process-tabs .nav-link {
    border-radius: 30px;
    margin: 8px;
    padding: 10px 20px;
    font-weight: 600;
    color: #000000;
    transition: 0.3s;
    border: 1px solid #ccc;
    line-height: normal;
    font-size: 14px;
}

    .process-tabs .nav-link.active {
        background: linear-gradient(45deg, #ff512f, #f09819) !important;
        transform: scale(1.1);
        border: 1px solid #db7900;
        box-shadow: 0px 6px 10px rgb(0 0 0 / 15%);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-two__icon {
    position: absolute;
    top: 145px;
    left: 250px;
    height: 107px;
    width: 107px;
    background-color: var(--jetly-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

    .about-two__icon:before {
        content: "";
        position: absolute;
        top: -13px;
        bottom: -13px;
        left: -13px;
        right: -13px;
        border: 1px solid rgba(var(--jetly-white-rgb), .30);
        border-radius: 50%;
    }

    .about-two__icon img {
        width: auto;
    }

.about-two__right {
    position: relative;
    display: block;
    margin-left: 0rem;
}



.about-two__right-text-box {
    position: relative;
}

    .about-two__right-text-box h3 {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        color: #000;
        margin-bottom: 20px;
    }

    .about-two__right-text-box .about-two__right-text {
        font-size: 14px;
        line-height: 26px;
        text-align: justify;
        color: #333;
        margin-bottom: 1rem;
        padding: 0px;
    }

.about-two__right .section-title__title_h1 {
    padding: 0rem 7rem;
}

.about-two__right .about-home-text {
    color: #323232;
    padding: 1rem 7rem;
    line-height: 22px;
}


.about-two__right__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: var(--jetly-base);
    margin-bottom: 23px;
    letter-spacing: 0;
}

.about-two__right-points {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 40px;
}

    .about-two__right-points li {
        position: relative;
        display: flex;
        width: 35%;
    }

        .about-two__right-points li + li {
            margin-left: 60px;
        }

        .about-two__right-points li .icon {
            position: relative;
            display: block;
            margin-right: 10px;
            top: 5px;
        }

            .about-two__right-points li .icon span {
                font-size: 12px;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 21px;
                height: 21px;
                background-color: #f36523;
                border-radius: 50%;
                color: var(--jetly-white);
            }

        .about-two__right-points li .text h3 {
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
        }

.about-two__btn {
    background-color: #00ad5b;
    margin-top: 1rem;
    margin-bottom: 0rem;
}

    .about-two__btn:before {
        position: absolute;
        top: -1px;
        left: -1px;
        bottom: -1px;
        right: -1px;
        background-color: var(--jetly-black);
        content: "";
        border-radius: 8px;
        transform: scaleY(0.0) rotateX(0deg);
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
        z-index: -1;
    }

    .about-two__btn:hover {
        color: var(--jetly-white);
    }

        .about-two__btn:hover:before {
            transform: scaleY(1.0) rotateX(0deg);
            -webkit-transition: all 0.4s linear;
            -o-transition: all 0.4s linear;
            transition: all 0.4s linear;
        }

/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 45px;
    bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #629957;
    text-align: center;
    padding: 2rem;
    color: #404A3D;
    background: #7a910c;
    background: linear-gradient(317deg, rgb(134 155 0) 25%, #264d1e 100%);
}

    .about-experience h1 {
        color: #404A3D;
    }

    .about-experience small {
        font-size: 1rem;
        color: #ebebeb;
        font-weight: 500;
        line-height: normal;
    }

.display-1 {
    font-weight: 600;
}

/*--------------------------------------------------------------
# Works Three
--------------------------------------------------------------*/
.works-grid {
    background: #161616 url(../images/works/bg.jpg) repeat-x;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: block;
    padding: 100px 0 80px;
    z-index: 1;
}


    .works-grid .row {
        justify-content: space-between;
    }

.workspara {
    font-size: 14px;
    color: #fff;
    line-height: 22px;
}

.works-grid__img {
    position: relative;
}

    .works-grid__img img {
        width: 100%;
    }

    .works-grid__img h5 {
        display: block;
        position: absolute;
        background-color: #fff;
        left: 120px;
        bottom: 120px;
        padding: 1rem;
        border-radius: 10px;
        width: 220px;
        text-align: center;
        line-height: normal;
        color: #f26624;
    }

        .works-grid__img h5 span {
            font-size: 28px;
            display: inline-block;
        }

        .works-grid__img h5 b {
            font-size: 14px;
            line-height: normal;
            font-weight: 500;
            color: #999;
            display: block;
        }


.ticker-container {
    overflow: auto;
    height: 480px;
    margin-top: 2rem;
}

.tickerscroll {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scrollUp 8s linear infinite;
}

    .tickerscroll li {
        padding: 2rem 2rem;
        border-bottom: 1px solid #eee;
        color: #000000;
        background-color: #fff;
        border-radius: 10px;
        font-size: 14px;
        margin-top: 10px;
        display: flex;
        align-items: end;
        gap: 2rem;
    }

        .tickerscroll li h5 {
            font-size: 14px;
            color: #f47419;
            border-bottom: 1px solid #f47419;
            padding-bottom: 1.2rem;
            margin-bottom: 1.2rem;
        }

        .tickerscroll li h2 {
            font-size: 20px;
            color: #1B2949;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .tickerscroll li p {
            font-size: 14px;
            color: #646464;
            font-weight: 400;
            margin-bottom: 0px;
            line-height: normal;
        }

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-250px);
    }
}

.controls {
    margin-top: 10px;
    position: absolute;
    top: 0px;
    right: 20px;
}

    .controls button {
        padding: 0px 7px;
        font-size: 14px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        background: transparent;
        color: white;
        cursor: pointer;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

        .controls button:hover {
            background: #f47419;
            color: white;
            cursor: pointer;
            border: 1px solid #f47419;
        }

::-webkit-scrollbar {
    width: 3px;
    height: 10px;
    right: 5px;
    position: absolute;
}

::-webkit-scrollbar-track {
}

::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
    position: relative;
    display: block;
    padding: 170px 0 80px;
    z-index: 1;
}

/* .feature-three:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgb(0 0 0 / 89%);
  content: "";
  z-index: 1;
} */

.feature-three__shape-1 {
    background: linear-gradient(45deg, #993f00, #59201B);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    position: relative;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

    .feature-three__shape-1::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(90deg, rgb(255 255 255 / 7%) 1px, transparent 1px), linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px);
        background-size: 20px 20px;
        pointer-events: none;
    }

.feature-three__inner {
    position: relative;
    display: block;
    z-index: 1;
}


/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
    position: absolute;
    display: block;
    width: 100%;
    left: 0px;
    right: 0px;
    z-index: 9;
    margin-top: -50px;
}


    .brand-two .swiper-slide {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: auto;
    }

        .brand-two .swiper-slide a {
            background-color: #ffffff;
            padding: 0px;
            display: block;
            width: 100%;
            text-align: center;
            border-radius: 10px;
            border: 1px solid #dbdbdb;
        }

            .brand-two .swiper-slide a img {
                -webkit-transition: 500ms;
                transition: 500ms;
                max-width: 100%;
                height: 100px;
            }

        .brand-two .swiper-slide img:hover {
            opacity: 0.6;
        }

.brand-two__nav {
    position: absolute;
    top: 11px;
    left: 50%;
    z-index: 100;
    transform: translateY(0) translateX(-50%);
    display: flex;
    align-items: flex-end;
    height: 0;
    line-height: 0;
    display: none;
}


    .brand-two__nav .swiper-button-next,
    .brand-two__nav .swiper-button-prev {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 100;
        width: 25px;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
        color: var(--jetly-black);
        border: 0;
        background-color: var(--jetly-primary);
        border-radius: 0;
        margin: 0;
        text-align: center;
        transition: all 500ms ease;
        padding: 12px 0;
    }

        .brand-two__nav .swiper-button-next:hover,
        .brand-two__nav .swiper-button-prev:hover {
            color: var(--jetly-white);
            background-color: var(--jetly-base);
        }

        .brand-two__nav .swiper-button-next::after,
        .brand-two__nav .swiper-button-prev::after {
            display: none;
        }

    .brand-two__nav .swiper-button-prev {
        margin-right: 5px;
    }


/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
    position: relative;
    display: block;
    padding: 160px 0 120px;
    z-index: 1;
    background-size: cover;
}

.video-one__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.video-one__inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
}

.video-one__shape-one {
    position: absolute;
    bottom: 23px;
    right: 243px;
    z-index: -1;
}

    .video-one__shape-one img {
        width: auto;
    }

.video-one__video-link {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.video-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    line-height: 90px;
    text-align: center;
    font-size: 20px;
    color: var(--jetly-black);
    background-color: var(--jetly-white);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .video-one__video-icon:hover {
        background-color: var(--jetly-black);
        color: var(--jetly-white);
    }

    .video-one__video-icon:before {
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        content: "";
        border: 1px solid rgba(var(--jetly-white-rgb), .20);
        z-index: 1;
    }

    .video-one__video-icon::after {
        position: absolute;
        top: -40px;
        left: -40px;
        right: -40px;
        bottom: -40px;
        content: "";
        border: 1px solid rgba(var(--jetly-white-rgb), .20);
        z-index: 1;
    }

    .video-one__video-link .ripple,
    .video-one__video-icon .ripple:before,
    .video-one__video-icon .ripple:after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 158px;
        height: 158px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -ms-box-shadow: 0 0 0 0 rgba(var(--jetly-white-rgb), 0.6);
        -o-box-shadow: 0 0 0 0 rgba(var(--jetly-white-rgb), 0.6);
        -webkit-box-shadow: 0 0 0 0 rgba(var(--jetly-white-rgb), 0.6);
        box-shadow: 0 0 0 0 rgba(var(--jetly-white-rgb), 0.6);
        -webkit-animation: ripple 3s infinite;
        animation: ripple 3s infinite;
    }

    .video-one__video-icon .ripple:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
        content: "";
        position: absolute;
    }

    .video-one__video-icon .ripple:after {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
        content: "";
        position: absolute;
    }

.video-one__title-box {
    position: relative;
    display: block;
    margin-top: 38px;
    margin-bottom: 38px;
}

    .video-one__title-box img {
        margin-bottom: 1rem;
    }

    .video-one__title-box h3 {
        font-size: 40px;
        font-weight: 500;
        line-height: 50px;
        color: var(--jetly-white);
        margin-bottom: 5rem;
    }

.video-one__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-one__btn-one {
    margin-right: 10px;
}

    .video-one__btn-one .thm-btn {
        color: var(--jetly-white);
        background-color: var(--jetly-base);
    }

        .video-one__btn-one .thm-btn::before {
            background-color: var(--jetly-white);
        }

        .video-one__btn-one .thm-btn:hover {
            color: var(--jetly-black);
        }

.video-one__btn-two .thm-btn {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #fff;
}

    .video-one__btn-two .thm-btn:hover {
        color: var(--jetly-white);
    }

/*--------------------------------------------------------------
# programs Two
--------------------------------------------------------------*/
.programs-three {
    position: relative;
    display: block;
    padding: 80px 0 100px;
    z-index: 1;
    background: #FFF;
}

.programs-two {
    position: relative;
    display: block;
    padding: 80px 0 100px;
    z-index: 1;
    /* background-color: #F4F1EA; */
}

.programs-two-shape-1 {
    position: absolute;
    right: 10px;
    top: 0px;
    animation: zoom-pulse 10s ease-in-out infinite;
}

@keyframes zoom-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.programs-two-shape-1 img {
    width: auto;
}

.programs-two-shape-2 {
    position: absolute;
    left: 0;
    bottom: 0px;
    animation: zoom-pulse 10s ease-in-out infinite;
}

    .programs-two-shape-2 img {
        width: 200px;
    }

.programs-two .para {
    font-size: 14px;
    color: #000;
    line-height: 22px;
    padding-right: 2rem;
    margin-top: 10px;
}
/* * {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
} */






/*--------------------------------------------------------------
# press-release Two
--------------------------------------------------------------*/
.press-release-three {
    position: relative;
    display: block;
    padding: 80px 0 100px;
    z-index: 1;
    background-color: #040713;
}

    .press-release-three .programs-two__carousel.owl-theme .owl-nav .owl-prev {
        color: #ffffff;
        border: 1px solid #b1b1b1;
    }

    .press-release-three .programs-two__carousel.owl-theme .owl-nav .owl-next {
        color: #ffffff;
        border: 1px solid #b1b1b1;
    }

.cardPayroll {
    width: 100%;
    display: block;
    border: 0;
    position: relative;
    border-radius: 10px;
    margin-top: 2rem;
}


.frame {
    display: block;
    width: 330px;
    position: absolute;
    top: 20px;
    right: 40px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 5px 15px hsl(0deg 0% 0% / 25%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.frame .table {
    margin: 0;
    padding: 0;
}

    .frame .table tr td {
        font-size: 14px;
        color: #000;
        line-height: normal;
        text-align: left;
        border-color: transparent;
        vertical-align: middle;
        padding: 0.5rem 0;
    }




.programs-two__left {
    position: relative;
    display: block;
    margin-right: 0px;
}

    .programs-two__left .programs-two__text {
        line-height: 24px;
        font-size: 14px;
        color: #000;
        padding-right: 5rem;
    }



.programs-two__right {
    position: relative;
    display: block;
    margin-right: -375px;
}


.programs-two__carousel.owl-carousel .owl-stage-outer {
    /* overflow: visible; */
}

.programs-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

    .programs-two__carousel.owl-carousel .owl-item.active {
        opacity: 1;
        visibility: visible;
    }

.programs-two__carousel.owl-theme .owl-nav {
    right: 0px;
    position: absolute;
    top: -80px;
    right: 22rem;
    margin: 0;
    z-index: -1;
    width: 200px;
}

.explore {
    position: absolute;
    top: 31px;
    right: 15rem;
    font-size: 14px;
    color: #000;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid #726f6f;
    z-index: 9;
}

    .explore i {
        rotate: 319deg;
        display: inline-block;
        font-size: 20px;
        position: relative;
        top: 2px;
    }

    .explore:hover {
        color: #f34601;
        border-bottom: 1px solid #f34601;
    }

.programs-two__carousel.owl-theme .owl-nav .owl-next {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #000000;
    background: transparent;
    font-size: 15px;
    border: 1px solid #494949;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.programs-two__carousel.owl-theme .owl-nav .owl-prev {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #000000;
    background: transparent;
    font-size: 15px;
    border: 1px solid #494949;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.programs-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.programs-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

    .programs-two__carousel.owl-theme .owl-nav .owl-next span,
    .programs-two__carousel.owl-theme .owl-nav .owl-prev span {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .programs-two__carousel.owl-theme .owl-nav .owl-next:hover,
    .programs-two__carousel.owl-theme .owl-nav .owl-prev:hover {
        background-color: #00ad5b;
        color: var(--jetly-white);
        border: 1px solid #00ad5b;
    }


/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
    position: relative;
    display: block;
    background: #fff url(../images/Key-Features/key-features.jpg) repeat-x;
    padding: 100px 0 170px;
    z-index: 1;
    background-size: cover;
    background-attachment: fixed;
}

    .faq-one .section-title__title {
        margin-bottom: 1rem;
        color: #ffffff;
        font-size: 40px;
        line-height: 50px;
        font-weight: 700;
        border-bottom: 0
    }

    .faq-one .section-title p {
        font-size: 14px;
        color: #ffffff;
        line-height: 22px;
    }

.feature-home {
    gap: 15px;
    display: inline-flex;
    flex-wrap: wrap;
    padding: 0px;
}

    .feature-home li {
        display: grid;
        flex-basis: 23%;
        flex-grow: 1;
        background-color: #fff;
        border-radius: 10px;
        padding: 1rem 1rem;
        text-align: center;
        transition: all 0.3s ease-in-out;
        height: 170px;
    }

        .feature-home li:hover {
            transform: scale(1.1);
        }

        .feature-home li span {
            background-color: #99552f;
            width: 60px;
            margin: auto;
            display: flex;
            height: 60px;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            padding: 12px;
            margin-bottom: 5px;
        }

            .feature-home li span img {
                width: 100%;
            }

        .feature-home li b {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            line-height: normal;
            margin-top: 10px;
        }

.faq-one__shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .40;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.faq-one__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.faq-one__img {
    position: relative;
    display: block;
}

    .faq-one__img:before {
        position: absolute;
        right: -10px;
        top: 30px;
        bottom: 30px;
        width: 40px;
        background-color: var(--jetly-base);
        content: "";
        z-index: -1;
    }

    .faq-one__img img {
        width: 100%;
    }

.faq-one__right {
    position: relative;
    display: block;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--jetly-white);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 22px 40px 22px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

    .faq-one-accrodion .accrodion-title h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        line-height: 26px;
        color: var(--jetly-black);
        position: relative;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.faq-one-accrodion .accrodion + .accrodion {
    margin-top: 10px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    color: var(--jetly-base);
}

    .faq-one-accrodion .accrodion.active .accrodion-title h4 {
        color: var(--jetly-base);
    }

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--jetly-base);
    color: var(--jetly-white);
    position: absolute;
    top: 50%;
    right: -25px;
    line-height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f107";
    color: var(--jetly-white);
    background-color: var(--jetly-black);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0 40px 32px;
}

    .faq-one-accrodion .accrodion-content p {
        margin: 0;
    }


.statistics-one {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    z-index: 1;
    background-color: #e35918;
}

.img-featuresimg {
    position: relative;
    margin-top: -17rem;
    width: 100%;
}

.statistics-one .section-title__title {
    margin: 0;
    color: #ffffff;
    font-size: 40px;
    line-height: normal;
    font-weight: 700;
    margin-top: 10px;
    display: flex;
    align-items: center;
    border-bottom: none;
    text-align: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.statistics-one .section-title__tagline {
    font-size: 14px;
    color: #ffffff;
    line-height: 22px;
    margin-top: 1rem;
    text-align: center;
    display: block;
    margin-top: 3rem;
}

.statistics_counter {
    gap: 15px;
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

    .statistics_counter li {
        flex-basis: 23%;
        flex-grow: 1;
        display: block;
        font-size: 50px;
        color: #fff;
        font-weight: 700;
    }

        .statistics_counter li span {
            color: #fff;
            font-size: 50px;
            display: inline-block;
        }

        .statistics_counter li b {
            color: #fff;
            font-size: 16px;
            font-weight: 300;
            display: block;
            margin-top: 1rem;
        }

/*--------------------------------------------------------------
# Get Flight Two
--------------------------------------------------------------*/
.get-flight-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 2;
}

.get-flight-two__shape-1 {
    position: absolute;
    top: 0;
    right: -10px;
}

    .get-flight-two__shape-1 img {
        width: auto;
    }

.get-flight-two__shape-2 {
    position: absolute;
    top: 97px;
    right: -232px;
    z-index: 2;
}

    .get-flight-two__shape-2 img {
        width: auto;
    }

.get-flight-two__shape-3 {
    position: absolute;
    top: 14px;
    left: 215px;
}

    .get-flight-two__shape-3 img {
        width: auto;
    }

.get-flight-two__shape-4 {
    position: absolute;
    top: 0;
    right: 21%;
    opacity: 9;
}

    .get-flight-two__shape-4 img {
        width: auto;
    }

.get-flight-two__content-box {
    position: relative;
    display: block;
}

    .get-flight-two__content-box:before {
        content: "";
        position: absolute;
        top: -120px;
        right: -100000000px;
        left: 500px;
        bottom: 0;
        background-color: var(--jetly-base);
        z-index: -1;
    }

.get-flight-two__inner {
    position: relative;
    display: block;
    background-color: #f4f1f1;
    padding: 100px 100px 90px;
    padding-right: 135px;
}

    .get-flight-two__inner .get-flight__form-input-box input[type="text"] {
        background-color: var(--jetly-white);
        color: var(--jetly-gray);
    }

    .get-flight-two__inner .get-flight__form .select-box .nice-select {
        background-color: var(--jetly-white);
        color: var(--jetly-gray);
    }

    .get-flight-two__inner .get-flight__icon-box i {
        color: var(--jetly-gray);
    }

    .get-flight-two__inner .get-flight__content-text {
        color: #000;
        font-size: 20px;
        margin-top: 5px;
    }

        .get-flight-two__inner .get-flight__content-text span {
            color: var(--jetly-black);
        }

    .get-flight-two__inner ul {
        margin: 0px;
        padding: 0px;
        margin-top: 2rem;
    }

        .get-flight-two__inner ul li {
            display: flex;
            list-style: none;
            line-height: 44px;
            margin: 0px;
            padding: 0px;
            color: #000;
            font-size: 16px;
            font-weight: 400;
        }

            .get-flight-two__inner ul li .icon {
                margin-right: 14px;
            }

                .get-flight-two__inner ul li .icon i {
                    color: #f36523;
                }

                .get-flight-two__inner ul li .icon svg {
                    fill: #f36523;
                }

    .get-flight-two__inner h3 {
        font-size: 30px;
        margin-top: 30px;
        font-weight: 600;
    }

    .get-flight-two__inner .section-title {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .get-flight-two__inner .location-pin {
        position: absolute;
        right: 0px;
        bottom: 0px;
        color: #000;
        font-weight: 600;
        font-size: 20px;
    }

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
    background-color: var(--jetly-black);
    padding: 120px 0 118px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-two__shape-1 {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 383px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.03;
    z-index: -1;
}

.testimonial-two__left {
    position: relative;
    display: block;
    z-index: 5;
}

    .testimonial-two__left .section-title {
        margin-bottom: 0px;
    }

    .testimonial-two__left .section-title__title {
        color: var(--jetly-white);
    }

.testimonial-two__right {
    position: relative;
    display: block;
    margin-top: 42px;
}

.testimonial-two__carousel {
    position: relative;
    display: block;
}

.testimonial-two__single {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .testimonial-two__single:hover {
        transform: translateY(-10px);
    }

.testimonial-two__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 12px 43px 0px rgba(0, 0, 0, 0.07);
    padding-left: 50px;
    padding-right: 45px;
    padding-top: 70px;
    padding-bottom: 40px;
}

    .testimonial-two__content:before {
        content: "";
        position: absolute;
        left: 50px;
        bottom: -30px;
        border-top: 30px solid var(--jetly-white);
        border-right: 75px solid transparent;
        border-left: 0px solid transparent;
    }

.testimonial-two__img-box {
    position: absolute;
    top: -42px;
    left: 50px;
    height: 104px;
    width: 104px;
    background-color: var(--jetly-base);
    border-radius: 50%;
}

.testimonial-two__quote {
    position: absolute;
    top: 26px;
    right: 45px;
}

    .testimonial-two__quote span {
        position: relative;
        display: inline-block;
        font-size: 32px;
        color: var(--jetly-base);
    }

.testimonial-two__img {
    position: relative;
    display: inline-block;
    width: 88px;
}

    .testimonial-two__img img {
        width: 100%;
        border-radius: 50%;
    }

.testimonial-two__text {
    font-size: 18px;
    line-height: 34px;
}

.testimonial-two__star {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 19px;
}

    .testimonial-two__star i {
        position: relative;
        display: inline-block;
        font-size: 15px;
        color: var(--jetly-base);
    }

        .testimonial-two__star i + i {
            margin-left: 1px;
        }

.testimonial-two__client-info {
    position: relative;
    display: block;
    margin-left: 90px;
    margin-top: 23px;
}

.testimonial-two__client-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--jetly-white);
    line-height: 20px;
    margin-bottom: 7px;
}

.testimonial-two__client-sub-title {
    font-size: 12px;
    color: #889f91;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 12px;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

    .testimonial-two__carousel.owl-carousel .owl-item.active {
        opacity: 1;
        visibility: visible;
    }

.testimonial-two__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 56px;
    left: -400px;
    margin: 0;
}

    .testimonial-two__carousel.owl-theme .owl-nav .owl-next {
        height: 50px;
        width: 50px;
        line-height: 50px;
        border-radius: 50%;
        color: var(--jetly-white);
        background-color: #0d2b19;
        font-size: 15px;
        margin: 0;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
        height: 50px;
        width: 50px;
        line-height: 50px;
        border-radius: 50%;
        color: var(--jetly-white);
        background-color: #0d2b19;
        font-size: 15px;
        margin: 0;
        text-align: center;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .testimonial-two__carousel.owl-theme .owl-nav .owl-next {
        margin-left: 5px;
    }

    .testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
        margin-right: 5px;
    }

        .testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
        .testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
        .testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
            background-color: var(--jetly-base);
            color: var(--jetly-white);
        }

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Request
--------------------------------------------------------------*/
.request {
    position: relative;
    display: block;
    background-color: var(--jetly-black);
    padding: 80px 0;
    z-index: 1;
}

.request__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.05;
    z-index: -1;
}

    .request__shape-1 img {
        width: auto;
    }

.request__shape-2 {
    position: absolute;
    bottom: 0;
    right: 5px;
    opacity: 0.08;
    z-index: -1;
}

    .request__shape-2 img {
        width: auto;
    }

.request__top {
    position: relative;
    display: block;
}

.request__form {
    position: relative;
    display: block;
}

.request__input-list {
    position: relative;
    display: block;
}

    .request__input-list li {
        position: relative;
        display: block;
        float: left;
        max-width: 250px;
        width: 100%;
        margin-bottom: 20px;
    }

    .request__input-list > li + li {
        margin-left: 20px;
    }

    .request__input-list li:nth-child(4),
    .request__input-list li:nth-child(5) {
        max-width: 170px;
    }

.request__input-box {
    position: relative;
    display: block;
}

    .request__input-box input[type="text"] {
        height: 60px;
        width: 100%;
        border: none;
        outline: none;
        background-color: #0d2b19;
        font-size: 14px;
        color: #889f91;
        padding: 0 30px;
    }

.request__form .select-box .nice-select {
    background-color: #0d2b19;
    border-radius: 0;
    color: #889f91;
    background-color: #0d2b19;
    font-size: 14px;
    font-weight: 400;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
}

    .request__form .select-box .nice-select:after {
        right: 30px;
    }

.request__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
}

.request__bottom-text {
    color: #889f91;
}

    .request__bottom-text span {
        color: var(--jetly-base);
    }

.request__btn {
    border: none;
    background-color: var(--jetly-base);
    margin-left: 20px;
}

    .request__btn:hover {
        color: var(--jetly-base);
    }

        .request__btn:hover:before {
            background-color: var(--jetly-white);
        }

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
    position: relative;
    display: block;
    padding: 120px 0 134px;
}

.about-three__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.about-three__img-box {
    position: relative;
    display: block;
}

.about-three__img {
    position: relative;
    display: block;
}

    .about-three__img > img {
        width: 100%;
        border-top-left-radius: 130px;
    }

.about-three__experience {
    position: absolute;
    top: -14px;
    left: -14px;
}

.about-three__curved-circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform-origin: top left;
    transform: rotate(-45deg);
}

    .about-three__curved-circle .curved-circle {
        font-size: 16px;
        font-weight: 600;
        color: var(--jetly-black);
        text-transform: uppercase;
        font-family: var(--conalz-font-two);
    }

        .about-three__curved-circle .curved-circle span {
            margin-right: 0.1em;
        }

.about-three__icon-box {
    position: relative;
    display: flex;
    height: 145px;
    width: 145px;
    border: 2px solid var(--jetly-black);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--jetly-white);
}

.about-three__icon {
    height: 129px;
    width: 129px;
    border: 7px solid var(--jetly-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about-three__icon > img {
        width: auto;
    }

.about-three__shape-1 {
    position: absolute;
    bottom: -86px;
    left: -155px;
}

    .about-three__shape-1 > img {
        width: auto;
    }

.about-three__right {
    position: relative;
    display: block;
}

.about-three .section-title {
    margin-bottom: 28px;
}

.about-three__text-two {
    position: relative;
    display: block;
    padding-top: 30px;
    padding-bottom: 38px;
}

.about-three__points {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 49px;
}

    .about-three__points li {
        position: relative;
        display: flex;
        align-items: center;
        background-color: var(--jetly-primary);
        padding: 23px 41px 17px 28px;
    }

        .about-three__points li + li {
            margin-left: 30px;
        }

.about-three__points-icon {
    position: relative;
    display: inline-block;
    margin-right: 17px;
    top: 1px;
}

    .about-three__points-icon span {
        position: relative;
        display: inline-block;
        font-size: 53px;
        color: var(--jetly-black);
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.about-three__points li:hover .about-three__points-icon span {
    transform: scale(.9);
    color: var(--jetly-base);
}

.about-three__points-text h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
}

.about-three__btn {
    background-color: var(--jetly-base);
}

    .about-three__btn:before {
        background-color: var(--jetly-black);
    }

    .about-three__btn:hover {
        color: var(--jetly-white);
    }

/*--------------------------------------------------------------
# We Fly
--------------------------------------------------------------*/
.we-fly {
    position: relative;
    display: block;
    background-image: -moz-linear-gradient(180deg, rgb(167, 145, 50) 0%, rgb(18, 56, 33) 51%);
    background-image: -webkit-linear-gradient(180deg, rgb(167, 145, 50) 0%, rgb(18, 56, 33) 51%);
    background-image: -ms-linear-gradient(180deg, rgb(167, 145, 50) 0%, rgb(18, 56, 33) 51%);
    padding: 114px 0 120px;
    z-index: 1;
}

.we-fly-bg-box {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 73.3%;
    background-image: -moz-linear-gradient(180deg, rgb(167, 145, 50) 0%, rgb(18, 56, 33) 51%);
    background-image: -webkit-linear-gradient(180deg, rgb(167, 145, 50) 0%, rgb(18, 56, 33) 51%);
    background-image: -ms-linear-gradient(180deg, rgb(167, 145, 50) 0%, rgb(18, 56, 33) 51%);
    z-index: -1;
}

.we-fly__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    mix-blend-mode: soft-light;
    opacity: .40;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.we-fly-bg-box:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 377px;
    content: "";
    background-image: -moz-linear-gradient(180deg, rgba(18, 56, 33, 0) 0%, rgb(18, 56, 33) 100%);
    background-image: -webkit-linear-gradient(180deg, rgba(18, 56, 33, 0) 0%, rgb(18, 56, 33) 100%);
    background-image: -ms-linear-gradient(180deg, rgba(18, 56, 33, 0) 0%, rgb(18, 56, 33) 100%);
    z-index: 1;
}

.we-fly .container {
    position: relative;
}

.we-fly__badge {
    position: absolute;
    top: 0;
    right: 185px;
    animation: fa-spin 5s ease infinite;
    display: none;
}

@media (min-width: 1200px) {
    .we-fly__badge {
        display: block;
    }
}

.we-fly__left {
    position: relative;
    display: block;
}

.we-fly__title {
    font-size: 50px;
    font-weight: 600;
    line-height: 52px;
    color: var(--jetly-white);
    letter-spacing: -.04em;
}

.we-fly__count {
    position: relative;
    display: inline-block;
    font-size: 50px;
    font-weight: 600;
    font-family: var(--jetly-font) !important;
    line-height: 52px !important;
}

    .we-fly__count:before {
        position: absolute;
        bottom: 0px;
        left: -9px;
        height: 10px;
        width: 155px;
        content: "";
        background-image: url(../images/shapes/we-fly-count-shape-1.png);
        background-repeat: no-repeat;
        background-position: center;
    }

.we-fly__title .odometer-formatting-mark {
    display: none;
}

.we-fly__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    color: var(--jetly-white);
    opacity: .60;
    padding-top: 30px;
    padding-bottom: 38px;
}

.we-fly__btn-boxes {
    position: relative;
    display: flex;
    align-items: center;
}

.we-fly__btn-one {
    background-color: var(--jetly-base);
}

    .we-fly__btn-one:hover {
        color: var(--jetly-base);
    }

    .we-fly__btn-one:before {
        background-color: var(--jetly-white);
    }

.we-fly__btn-two {
    background-color: var(--jetly-white);
    color: var(--jetly-black);
    margin-left: 10px;
}

    .we-fly__btn-two:before {
        background-color: var(--jetly-base);
    }

    .we-fly__btn-two:hover {
        color: var(--jetly-white);
    }

/*--------------------------------------------------------------
# Charters
--------------------------------------------------------------*/
.charters {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.charters__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.charters__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--jetly-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .charters__img img {
        width: 100%;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.charters__single:hover .charters__img img {
    transform: scale(1.05);
    opacity: .5;
}

.charters__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 23px 40px 40px;
}

.charters__date {
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    color: var(--jetly-base);
    letter-spacing: 0.1em;
}

.charters__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
}

    .charters__title a {
        color: var(--jetly-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .charters__title a:hover {
            color: var(--jetly-base);
        }

.charters__text {
    position: relative;
    display: block;
    padding-top: 12px;
    padding-bottom: 20px;
}

.charters__btn {
    background-color: var(--jetly-base);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 29px 4px;
}

    .charters__btn:before {
        background-color: var(--jetly-black);
    }

/*--------------------------------------------------------------
# Benefits One
--------------------------------------------------------------*/
.benefits-one {
    position: relative;
    display: block;
    background-color: var(--jetly-primary);
    padding: 120px 0 100px;
    z-index: 1;
}

.benefits-one__shape-1 {
    position: absolute;
    bottom: 0;
    left: 95px;
    z-index: -1;
}

    .benefits-one__shape-1 img {
        width: auto;
    }

.benefits-one__shape-2 {
    position: absolute;
    top: 180px;
    right: 120px;
    z-index: -1;
}

    .benefits-one__shape-2 img {
        width: auto;
    }

.benefits-one__left {
    position: relative;
    display: block;
}

.benefits-one .section-title {
    margin-bottom: 28px;
}

.benefits-one__text {
    padding-bottom: 40px;
}

.benefits-one__btn {
    background-color: var(--jetly-base);
}

    .benefits-one__btn:before {
        background-color: var(--jetly-black);
    }

.benefits-one__right {
    position: relative;
    display: block;
    margin-left: 10px;
}

    .benefits-one__right .row {
        --bs-gutter-x: 20px;
    }

.benefits-one__single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 40px 22px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

    .benefits-one__single:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: var(--jetly-black);
        transform: scaleX(0.7) rotateX(20deg);
        opacity: 0;
        transition: all 0.4s linear;
        z-index: -1;
    }

    .benefits-one__single:hover:before {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

.benefits-one__content {
    position: relative;
    display: flex;
    align-items: center;
}

.benefits-one__icon {
    position: relative;
    display: inline-block;
    margin-right: 18px;
    top: 5px;
}

    .benefits-one__icon span {
        font-size: 50px;
        color: var(--jetly-base);
    }

.benefits-one__title {
    position: relative;
    display: block;
}

    .benefits-one__title h3 {
        font-size: 18px;
        font-weight: 600;
        line-height: 22px;
    }

    .benefits-one__title a {
        color: var(--jetly-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.benefits-one__single:hover .benefits-one__title a {
    color: var(--jetly-white);
}

.benefits-one__arrow {
    position: relative;
    display: block;
}

    .benefits-one__arrow a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: var(--jetly-primary);
        border-radius: 50%;
        font-size: 14px;
        color: var(--jetly-base);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.benefits-one__single:hover .benefits-one__arrow a {
    color: var(--jetly-white);
    background-color: var(--jetly-base);
}

/*--------------------------------------------------------------
# Counter Two
--------------------------------------------------------------*/


.counter-box {
    display: block;
    /* background: #ffffff; */
    padding: 25px;
    text-align: left;
    border-radius: 5px 5px 0px 0px;
    /* border: 1px solid #ccc; */
    border-bottom: 0;
    /* box-shadow: 0px 20px 20px rgb(0 0 0 / 21%); */
    width: 100%;
}

    .counter-box p {
        margin: 10px 0 0;
        padding: 0;
        color: #444343;
        font-size: 14px;
        font-weight: 500;
        line-height: 16px;
    }


.counter {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    line-height: 28px;
}

.counter-grid .four {
    display: flex;
    border-right: 1px solid #ccc;
}

    .counter-grid .four:last-child {
        border-right: 0;
    }

.counter-grid .counter-box img {
    height: 60px;
    float: left;
    margin-right: 1.2rem;
}









/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.destination-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.destination-three__shape-1 {
    position: absolute;
    left: 0;
    bottom: 128px;
    z-index: -1;
}

    .destination-three__shape-1 img {
        width: auto;
    }

.destination-three__left {
    position: relative;
    display: block;
}

    .destination-three__left .section-title {
        margin-bottom: 28px;
    }

.destination-three__right {
    position: relative;
    display: block;
    margin-right: -375px;
}

.destination-three__carousel {
    position: relative;
    display: block;
}

.destination-three__right .destination-one__single {
    margin-bottom: 0;
}

.destination-three__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 87px;
    left: -400px;
    margin: 0;
}

    .destination-three__carousel.owl-theme .owl-nav .owl-next {
        height: 50px;
        width: 50px;
        line-height: 50px;
        border-radius: 50%;
        color: var(--jetly-black);
        background-color: var(--jetly-primary);
        font-size: 15px;
        margin: 0;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .destination-three__carousel.owl-theme .owl-nav .owl-prev {
        height: 50px;
        width: 50px;
        line-height: 50px;
        border-radius: 50%;
        color: var(--jetly-black);
        background-color: var(--jetly-primary);
        font-size: 15px;
        margin: 0;
        text-align: center;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .destination-three__carousel.owl-theme .owl-nav .owl-next {
        margin-left: 5px;
    }

    .destination-three__carousel.owl-theme .owl-nav .owl-prev {
        margin-right: 5px;
    }

        .destination-three__carousel.owl-theme .owl-nav .owl-next span,
        .destination-three__carousel.owl-theme .owl-nav .owl-prev span {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .destination-three__carousel.owl-theme .owl-nav .owl-next:hover,
        .destination-three__carousel.owl-theme .owl-nav .owl-prev:hover {
            background-color: var(--jetly-base);
            color: var(--jetly-white);
        }


/*--------------------------------------------------------------
# Live Sports
--------------------------------------------------------------*/
.we-do {
    position: relative;
    display: block;
    z-index: 1;
}

.we-do__wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.we-do__left {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    min-height: 719px;
    z-index: 1;
}

.we-do__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.we-do__real-time {
    position: absolute;
    bottom: 105px;
    right: 90px;
    background-color: var(--jetly-white);
    display: flex;
    align-items: center;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 30px;
    padding-right: 50px;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.07);
    z-index: 1;
}

    .we-do__real-time:before {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 0;
        border-bottom: 30px solid transparent;
        border-left: 47px solid var(--jetly-white);
        z-index: -1;
    }

.we-do__real-time-shape {
    position: absolute;
    top: 11px;
    left: 12px;
    right: 11px;
    bottom: 11px;
    z-index: -1;
}

    .we-do__real-time-shape img {
        width: auto;
    }

.we-do__real-time-icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .we-do__real-time-icon span {
        position: relative;
        display: inline-block;
        font-size: 65px;
        color: var(--jetly-base);
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.we-do__real-time:hover .we-do__real-time-icon span {
    transform: scale(.9);
}

.we-do__real-time-content-box {
    margin-left: 12px;
}

.we-do__real-time-content {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
}

.we-do__right {
    position: relative;
    display: block;
    float: right;
    width: 50%;
    padding-left: 100px;
    padding-top: 120px;
    background-color: var(--jetly-primary);
    padding-bottom: 110px;
    z-index: 1;
}

.we-do__shape-1 {
    position: absolute;
    top: 45px;
    right: 0;
    z-index: -1;
}

    .we-do__shape-1 img {
        width: auto;
    }

.we-do__content {
    position: relative;
    display: block;
    max-width: 545px;
    width: 100%;
    z-index: 2;
}

.we-do__right .section-title {
    margin-bottom: 28px;
}

.we-do__text {
    padding-bottom: 39px;
}

.we-do__bottom {
    position: relative;
    display: block;
}

.we-do__points {
    position: relative;
    display: block;
}

    .we-do__points li {
        position: relative;
        display: flex;
    }

        .we-do__points li + li {
            margin-top: 40px;
        }

        .we-do__points li .icon {
            position: relative;
            display: block;
        }

            .we-do__points li .icon span {
                position: relative;
                display: inline-block;
                font-size: 64px;
                color: var(--jetly-base);
                -webkit-transition: all 500ms linear;
                transition: all 500ms linear;
                -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s;
            }

        .we-do__points li:hover .icon span {
            transform: scale(.9);
        }

        .we-do__points li .content {
            margin-left: 30px;
        }

            .we-do__points li .content h4 {
                font-size: 22px;
                font-weight: 600;
                line-height: 22px;
                margin-bottom: 6px;
            }

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    background-color: var(--jetly-base);
    padding: 60px 0 60px;
    z-index: 1;
}

.cta-one__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.cta-one__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-one__title {
    position: relative;
    display: block;
}

    .cta-one__title h3 {
        font-size: 40px;
        font-weight: 600;
        color: var(--jetly-white);
    }

.cta-one__btn:hover {
    color: var(--jetly-black);
}

.cta-one__btn:before {
    background-color: var(--jetly-white);
}

.about-text {
}

    .about-text h2 {
        font-size: 22px;
        font-weight: 600;
        color: var(--jetly-black);
        margin-bottom: 20px;
    }

    .about-text h3 {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 14px;
        color: #000;
        margin-bottom: 1rem;
    }

    .about-text .liststyle {
        list-style: none;
        padding: 0;
    }

        .about-text .liststyle li {
            padding: 10px 26px;
            font-size: 14px;
            color: #000;
            background-color: #f3e683;
            border-radius: 5px;
            margin-bottom: 1rem;
            display: inline-block;
            margin-right: 10px;
            font-weight: 500;
        }

            .about-text .liststyle li:before {
                content: "\f18c";
                font-family: "FontAwesome";
                color: #31a319;
                float: left;
                font-size: 1.5em;
                margin-right: 15px;
            }

hr {
    background-color: rgb(225 225 225);
}

.about-text2 {
}

    .about-text2 h2 {
        font-size: 22px;
        font-weight: 600;
        color: var(--jetly-black);
        margin-bottom: 2.5rem;
    }

    .about-text2 .liststyle {
        list-style: none;
        padding: 0;
    }

        .about-text2 .liststyle > li {
            padding: 0px 0px;
            font-size: 14px;
            color: #000;
            border-radius: 5px;
            margin-top: 1.2rem;
            display: flex;
            margin-right: 10px;
            line-height: 27px;
        }

        .about-text2 .liststyle li b {
        }

        .about-text2 .liststyle > li:before {
            content: "\f0a4";
            font-family: "FontAwesome";
            color: #31a319;
            float: left;
            font-size: 1.5em;
            margin-right: 15px;
        }

.orga-text2 {
}

    .orga-text2 h2 {
        font-size: 22px;
        font-weight: 600;
        color: var(--jetly-black);
        margin-bottom: 2.5rem;
    }

    .orga-text2 .liststyle {
        list-style: none;
        padding: 0;
    }

        .orga-text2 .liststyle li {
            padding: 0px 0px;
            font-size: 14px;
            color: #000;
            border-radius: 5px;
            margin-top: 1.2rem;
            margin-right: 10px;
            line-height: 27px;
        }

            .orga-text2 .liststyle li b {
            }

            .orga-text2 .liststyle li:before {
                content: "\f0a4";
                font-family: "FontAwesome";
                color: #31a319;
                float: left;
                font-size: 1.5em;
                margin-right: 15px;
                height: 30px;
            }

.text-justify {
    text-align: justify;
}

.liststyle2 li {
    padding: 0px 0px;
    font-size: 14px;
    color: #000;
    border-radius: 5px;
    margin-top: 1rem;
    display: flex;
    margin-right: 10px;
    line-height: 27px;
}



.snip1519 {
    position: relative;
    margin: 0px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 5px solid #869b00;
    color: #262626;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

    .snip1519 *,
    .snip1519 *:before {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.1s ease-out;
        transition: all 0.1s ease-out;
    }

    .snip1519 figcaption {
        padding: 2rem;
    }

        .snip1519 figcaption img {
            border: 1px solid #ccc;
            border-radius: 100px;
            margin-bottom: 1rem;
            width: 100px;
            height: 100px;
        }

    .snip1519 i {
        font-size: 54px;
        color: #fff;
        width: 80px;
        line-height: 80px;
        background-color: #d2652d;
        border-radius: 50%;
        padding: 0;
        margin: 0 0 10px;
        text-align: center;
        display: inline-block;
    }

    .snip1519 h3 {
        color: #000000;
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        margin: 10px 0;
    }

    .snip1519 p {
        font-size: 14px;
        font-weight: 400;
        margin: 0 0 20px;
    }









/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    background-color: var(--jetly-black);
    z-index: 3;
}

.page-header-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .70;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

    .page-header-bg:before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        content: "";
        background-color: rgba(39, 43, 48, .60);
        background: #000000;
        background: linear-gradient(180deg, rgb(0 0 0 / 91%) 0%, rgb(15 21 52 / 75%) 70%);
    }

strong {
    font-weight: 600;
}

.page-header__inner {
    position: relative;
    display: block;
    padding: 180px 0 20px;
    z-index: 15;
    text-align: center;
}

    .page-header__inner h2 {
        font-size: 30px;
        color: var(--jetly-white);
        line-height: normal;
        margin-bottom: 0px;
        font-weight: 600;
    }

.table-dark {
    --bs-table-bg: linear-gradient(135deg, #0f172a, #1e40af);
    background: linear-gradient(135deg, #273e72, #1e40af);
}

.table > :not(caption) > * > * {
    font-size: 14px;
    line-height: normal;
    vertical-align: middle;
    border-color: #ccc;
    padding: 12px;
    font-weight: 500;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: #ccc;
}

.thm-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .thm-breadcrumb li {
        position: relative;
        font-size: 12px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        font-weight: 300;
        color: #ccc;
        padding: 0px 2px;
        display: flex;
        align-items: center;
    }

        .thm-breadcrumb li:first-of-type {
        }

        .thm-breadcrumb li:last-of-type {
            color: #ffffff;
        }

    .thm-breadcrumb > li > a {
        position: relative;
        display: inline-block;
        font-size: 12px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        font-weight: 300;
        color: #ccc;
    }

    .thm-breadcrumb > li:hover > a {
        color: var(--jetly-base);
        opacity: 1;
    }

    .thm-breadcrumb li span {
        font-size: 10px;
        color: #ccc;
    }

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.news-details__left {
    position: relative;
    display: block;
}

.news-details__img {
    position: relative;
    display: block;
}

    .news-details__img img {
        width: 100%;
    }

.news-details__date {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--jetly-base);
    padding: 10px 18px 10px;
    z-index: 1;
    border-radius: 20px;
}

    .news-details__date p {
        font-size: 11px;
        font-weight: 600;
        color: var(--jetly-white);
        line-height: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

.news-details__content {
    position: relative;
    display: block;
    margin-top: 21px;
}

.news-details__meta {
    position: relative;
    display: flex;
    align-items: center;
}

    .news-details__meta li + li {
        margin-left: 10px;
    }

    .news-details__meta li a {
        font-size: 14px;
        color: var(--jetly-gray);
        font-weight: 400;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .news-details__meta li a:hover {
            color: var(--jetly-base);
        }

        .news-details__meta li a i {
            color: var(--jetly-base);
        }

.news-details__title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 3px;
    margin-bottom: 11px;
    font-weight: 600;
}

.news-details__text-2 {
    padding-top: 32px;
}

.news-details__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 30px;
    margin-top: 53px;
    border-top: 1px solid #eeede5;
}

    .news-details__bottom p {
        margin: 0;
    }

.news-details__tags span {
    color: var(--jetly-black);
    font-size: 20px;
    margin-right: 18px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.news-details__tags a {
    position: relative;
    color: var(--jetly-white);
    font-size: 12px;
    background-color: var(--jetly-base);
    display: inline-block;
    padding: 5px 20px 5px;
    font-weight: 600;
    border-radius: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

    .news-details__tags a:hover {
        background-color: var(--jetly-black);
        color: var(--jetly-white);
    }

    .news-details__tags a + a {
        margin-left: 5px;
    }

.news-details__social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .news-details__social-list a {
        position: relative;
        height: 43px;
        width: 43px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        color: var(--jetly-black);
        background-color: var(--jetly-primary);
        font-size: 14px;
        border-radius: 50%;
        overflow: hidden;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 1;
    }

        .news-details__social-list a:hover {
            color: var(--jetly-white);
        }

        .news-details__social-list a:after {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background-color: var(--jetly-base);
            -webkit-transition-delay: .1s;
            transition-delay: .1s;
            -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
            -webkit-transition-duration: .4s;
            transition-duration: .4s;
            -webkit-transition-property: all;
            transition-property: all;
            opacity: 1;
            -webkit-transform-origin: top;
            transform-origin: top;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
            z-index: -1;
        }

        .news-details__social-list a:hover:after {
            opacity: 1;
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }

        .news-details__social-list a + a {
            margin-left: 10px;
        }

.news-details__pagenation-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 53px;
}

.news-details__pagenation {
    position: relative;
    display: block;
}

    .news-details__pagenation li {
        position: relative;
        float: left;
        font-size: 20px;
        color: var(--jetly-black);
        font-weight: 600;
        background-color: var(--jetly-primary);
        line-height: 26px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        max-width: 370px;
        width: 100%;
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 54px;
        padding-bottom: 54px;
        letter-spacing: -0.04em;
    }

        .news-details__pagenation li + li {
            margin-left: 30px;
        }

        .news-details__pagenation li:hover {
            background-color: var(--jetly-base);
            color: var(--jetly-white);
        }

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--jetly-black);
    font-size: 30px;
    margin-bottom: 52px;
    font-weight: 600;
}

.comment-one__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eeede5;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.comment-one__content {
    position: relative;
    margin-left: 45px;
}

    .comment-one__content h3 {
        margin: 0;
        font-size: 20px;
        color: var(--jetly-black);
        margin-bottom: 26px;
        font-weight: 600;
    }

.comment-one__btn {
    padding: 5px 30px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--jetly-white);
    background-color: var(--jetly-base);
    border-radius: 20px;
}

    .comment-one__btn:hover {
        color: var(--jetly-white);
    }

    .comment-one__btn:before {
        background-color: var(--jetly-black);
    }

.comment-one__image {
    position: relative;
    display: block;
    border-radius: 50%;
}

    .comment-one__image img {
        border-radius: 50%;
    }

.comment-form .comment-form__title {
    margin-top: -7px;
}

.comment-one__form .row {
    --bs-gutter-x: 20px;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
    background-color: var(--jetly-primary);
}

    .comment-form__input-box input[type="text"],
    .comment-form__input-box input[type="email"] {
        height: 50px;
        width: 100%;
        border: none;
        background-color: var(--jetly-primary);
        padding-left: 30px;
        padding-right: 30px;
        outline: none;
        font-size: 14px;
        color: var(--jetly-gray);
        display: block;
        font-weight: 400;
    }

    .comment-form__input-box textarea {
        font-size: 14px;
        color: var(--jetly-gray);
        height: 190px;
        width: 100%;
        background-color: var(--jetly-primary);
        padding: 25px 30px 30px;
        border: none;
        outline: none;
        margin-bottom: 0px;
        font-weight: 400;
    }

.comment-form__btn {
    border: none;
    background-color: var(--jetly-base);
}

    .comment-form__btn::before {
        background-color: var(--jetly-black);
    }

.comment-form__input-box.text-message-box {
    height: 190px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/


.sidebar__single + .sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.sidebar__search {
    position: relative;
    display: block;
}

.sidebar__search-form {
    position: relative;
}

    .sidebar__search-form input[type="search"] {
        display: block;
        border: none;
        outline: none;
        background-color: var(--jetly-base);
        color: var(--jetly-white);
        font-size: 16px;
        font-weight: 500;
        padding-left: 50px;
        height: 74px;
        width: 100%;
        padding-right: 80px;
    }

    .sidebar__search-form ::-webkit-input-placeholder {
        color: var(--jetly-white);
        opacity: 1;
    }

    .sidebar__search-form :-ms-input-placeholder {
        color: var(--jetly-white);
        opacity: 1;
    }

    .sidebar__search-form ::-ms-input-placeholder {
        color: var(--jetly-white);
        opacity: 1;
    }

    .sidebar__search-form ::placeholder {
        color: var(--jetly-white);
        opacity: 1;
    }

    .sidebar__search-form :-ms-input-placeholder {
        color: var(--jetly-white);
    }

    .sidebar__search-form ::-ms-input-placeholder {
        color: var(--jetly-white);
    }

    .sidebar__search-form button[type="submit"] {
        background-color: transparent;
        color: var(--jetly-white);
        font-size: 22px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 72px;
        outline: none;
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0;
    }

.sidebar__post {
    position: relative;
    display: block;
    padding: 46px 30px 30px;
    background-color: var(--jetly-primary);
    overflow: hidden;
    z-index: 1;
}

    .sidebar__post .sidebar__title {
        margin-left: 20px;
    }

.sidebar__post-list {
    margin: 0;
}

    .sidebar__post-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 16px 20px 17px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .sidebar__post-list li:hover {
            background-color: var(--jetly-white);
        }

        .sidebar__post-list li + li {
            margin-top: 10px;
        }

.sidebar__post-image {
    margin-right: 20px;
}

    .sidebar__post-image > img {
        width: 70px;
    }

.sidebar__post-content {
    position: relative;
    top: -3px;
}

    .sidebar__post-content h3 {
        font-size: 18px;
        margin: 0;
        line-height: 26px;
    }

.sidebar__post-content-meta {
    font-size: 13px;
    font-weight: 400;
    color: var(--jetly-gray) !important;
    font-family: var(--jetly-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .sidebar__post-content-meta i {
        color: var(--jetly-base);
        font-size: 14px;
        padding-right: 4px;
    }

.sidebar__post-content h3 a {
    color: var(--jetly-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.sidebar__category {
    position: relative;
    display: block;
    background-color: var(--jetly-primary);
    padding: 46px 30px 36px;
    overflow: hidden;
    z-index: 1;
}

    .sidebar__category .sidebar__title {
        padding-left: 20px;
        margin-bottom: 9px;
    }

.sidebar__category-list {
    margin: 0;
}

    .sidebar__category-list li + li {
        margin-top: 6px;
    }

    .sidebar__category-list li a {
        color: var(--jetly-gray);
        font-size: 16px;
        position: relative;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        display: block;
        background: none;
        padding: 7px 20px 7px;
        font-weight: 500;
    }

        .sidebar__category-list li a:hover {
            background-color: rgb(255, 255, 255);
            box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
            color: var(--jetly-black);
        }

    .sidebar__category-list li.active a {
        background-color: rgb(255, 255, 255);
        box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
        color: var(--jetly-black);
    }

    .sidebar__category-list li a span {
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        color: var(--jetly-base);
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 15px;
    }

    .sidebar__category-list li a:hover span {
        color: var(--jetly-base);
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }

    .sidebar__category-list li.active a span {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        color: var(--jetly-base);
    }

.sidebar__tags {
    position: relative;
    display: block;
    background: var(--jetly-primary);
    padding: 46px 45px 50px;
    overflow: hidden;
    z-index: 1;
}

    .sidebar__tags .sidebar__title {
        margin-left: 5px;
        margin-bottom: 25px;
    }

.sidebar__tags-list {
    margin-top: -10px;
}

    .sidebar__tags-list a {
        font-size: 12px;
        color: var(--jetly-black);
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
        background: var(--jetly-white);
        display: inline-block;
        padding: 5px 20px 5px;
        margin-left: 5px;
        font-weight: 600;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

        .sidebar__tags-list a + a {
            margin-left: 5px;
            margin-top: 10px;
        }

        .sidebar__tags-list a:hover {
            color: var(--jetly-white);
            background: var(--jetly-base);
        }

.sidebar__comments {
    position: relative;
    display: block;
    background-color: var(--jetly-primary);
    padding: 46px 50px 43px;
    overflow: hidden;
    z-index: 1;
}

    .sidebar__comments .sidebar__title {
        margin-bottom: 25px;
    }

.sidebar__comments-list {
    position: relative;
    display: block;
}

    .sidebar__comments-list li {
        position: relative;
        display: block;
        padding-left: 65px;
    }

        .sidebar__comments-list li + li {
            margin-top: 23px;
        }

.sidebar__comments-icon {
    height: 45px;
    width: 45px;
    background-color: var(--jetly-white);
    border-radius: 50%;
    font-size: 15px;
    color: var(--jetly-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar__comments-list li:hover .sidebar__comments-icon {
    background-color: var(--jetly-base);
    color: var(--jetly-white);
}

.sidebar__comments-text-box p {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    font-weight: 400;
}

    .sidebar__comments-text-box p span {
        color: var(--jetly-black);
        font-size: 16px;
    }

.sidebar__comments-text-box h5 {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    color: var(--jetly-gray);
    font-weight: 500;
    letter-spacing: 0;
}

/*--------------------------------------------------------------
# News Sideber
--------------------------------------------------------------*/
.news-sidebar {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.news-sidebar__left {
    position: relative;
    display: block;
}

.news-sidebar__content {
    position: relative;
    display: block;
}

.news-sidebar__single {
    position: relative;
    display: block;
}

    .news-sidebar__single + .news-sidebar__single {
        margin-top: 30px;
    }

.news-sidebar__img {
    position: relative;
    display: block;
}

    .news-sidebar__img img {
        width: 100%;
    }

.news-sidebar__date {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--jetly-base);
    padding: 0 22px 0;
    border-radius: 15px;
}

    .news-sidebar__date p {
        font-size: 11px;
        font-weight: 600;
        color: var(--jetly-white);
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

.news-sidebar__content-box {
    position: relative;
    display: block;
    margin-top: 23px;
}

.news-sidebar__meta {
    position: relative;
    display: flex;
    align-items: center;
}

    .news-sidebar__meta li + li {
        margin-left: 10px;
    }

    .news-sidebar__meta li a {
        font-size: 14px;
        font-weight: 400;
        color: var(--jetly-gray);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .news-sidebar__meta li a:hover {
            color: var(--jetly-base);
        }

        .news-sidebar__meta li a i {
            color: var(--jetly-base);
            padding-right: 3px;
            font-size: 15px;
        }

.news-sidebar__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin-top: 2px;
    margin-bottom: 12px;
}

    .news-sidebar__title a {
        color: var(--jetly-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .news-sidebar__title a:hover {
            color: var(--jetly-base);
        }

.news-sidebar__bottom {
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.news-sidebar__read-more {
    font-size: 14px;
    color: var(--jetly-black);
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .news-sidebar__read-more:hover {
        color: var(--jetly-base);
    }

.news-sidebar__arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: var(--jetly-primary);
    border-radius: 50%;
    font-size: 16px;
    color: var(--jetly-black);
    margin-right: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .news-sidebar__arrow:hover {
        background-color: var(--jetly-base);
        color: var(--jetly-white);
    }

.news-sidebar__bottom-box {
    position: relative;
    display: block;
    background-color: var(--jetly-primary);
    padding: 60px 60px 56px;
    margin-top: 30px;
    z-index: 1;
}

.news-sidebar__bottom-box-icon {
    margin-bottom: 21px;
}

.news-sidebar__bottom-box-text {
    font-size: 16px;
    font-weight: 500;
}

.news-sidebar__delivering-services {
    position: relative;
    display: block;
    background-color: var(--jetly-primary);
    padding: 60px 60px 59px;
    margin-top: 30px;
    margin-bottom: 30px;
    z-index: 1;
}

.news-sidebar__load-more-btn {
    background-color: var(--jetly-base);
}

    .news-sidebar__load-more-btn::before {
        background-color: var(--jetly-black);
    }

.news-sidebar__delivering-services-icon {
    margin-bottom: 23px;
}

.news-sidebar__delivering-services-title {
    font-size: 30px;
    line-height: 35px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

    .news-sidebar__delivering-services-title a {
        color: var(--jetly-black);
        transition: all 500ms ease;
    }

        .news-sidebar__delivering-services-title a:hover {
            color: var(--jetly-base);
        }

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.service-details__left {
    position: relative;
    display: block;
}

.service-details__category {
    position: relative;
    display: block;
}

.service-details__category-list {
    position: relative;
    display: block;
}

    .service-details__category-list li {
        position: relative;
        display: block;
    }

        .service-details__category-list li + li {
            margin-top: 10px;
        }

        .service-details__category-list li a {
            color: var(--jetly-black);
            font-size: 16px;
            font-weight: 600;
            position: relative;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            display: block;
            background: none;
            padding: 13px 30px 12px;
            background-color: var(--jetly-primary);
            letter-spacing: var(--jetly-letter-spacing);
            z-index: 1;
        }

        .service-details__category-list li:hover a {
            color: var(--jetly-white);
        }

        .service-details__category-list li.active a {
            color: var(--jetly-white);
        }

        .service-details__category-list li a:after {
            position: absolute;
            bottom: 0px;
            top: 0px;
            left: 0;
            right: 0px;
            content: "";
            background-color: var(--jetly-black);
            transform: scaleX(0);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            z-index: -1;
        }

        .service-details__category-list li:hover a:after {
            transform: scaleX(1);
        }

        .service-details__category-list li.active a:after {
            transform: scaleX(1);
        }

        .service-details__category-list li a span {
            position: absolute;
            top: 50%;
            right: 30px;
            -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            color: var(--jetly-black);
            text-align: center;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            font-size: 15px;
        }

        .service-details__category-list li a:hover span {
            color: var(--jetly-base);
            -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
        }

        .service-details__category-list li.active a span {
            -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
            color: var(--jetly-base);
        }


.service-details__need-help {
    position: relative;
    display: block;
    padding: 60px 50px 55px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    z-index: 1;
    background-color: var(--jetly-base);
}

.service-details__need-help-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--jetly-base);
    opacity: 0.10;
    background-blend-mode: luminosity;
    z-index: -1;
}

.service-details__need-help-icon {
    position: relative;
    height: 106px;
    width: 106px;
    border: 10px solid rgba(var(--jetly-white-rgb), .10);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 32px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

    .service-details__need-help-icon:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: var(--jetly-black);
        border-radius: 50%;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: -1;
    }

    .service-details__need-help-icon:hover:before {
        background-color: var(--jetly-white);
    }

    .service-details__need-help-icon span {
        font-size: 30px;
        color: var(--jetly-primary);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .service-details__need-help-icon:hover span {
        color: var(--jetly-base);
    }

.service-details__need-help-title {
    font-size: 26px;
    color: var(--jetly-white);
    line-height: 32px;
    font-weight: 600;
}

.service-details__need-help-contact {
    position: relative;
    display: block;
    margin-top: 38px;
}

    .service-details__need-help-contact p {
        font-size: 12px;
        color: var(--jetly-black);
        margin: 0;
        line-height: 12px;
        font-weight: 600;
        margin-bottom: 2px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .service-details__need-help-contact a {
        font-size: 20px;
        color: var(--jetly-white);
        font-weight: 600;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .service-details__need-help-contact a:hover {
            color: var(--jetly-black);
        }

.service-details__right {
    position: relative;
    display: block;
}

.service-details__content-box {
    position: relative;
    display: block;
}

.service-details__img {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .service-details__img img {
        width: 100%;
    }

.service-details__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
    margin-bottom: 21px;
}

.service-details__quote {
    position: relative;
    display: block;
    border-left: 6px solid var(--jetly-base);
    background-color: var(--jetly-black);
    padding: 20px 30px 20px;
    margin-top: 41px;
    margin-bottom: 41px;
}

.service-details__quote-text {
    font-size: 18px;
    color: var(--jetly-white);
    font-weight: 600;
    line-height: 30px;
    letter-spacing: var(--jetly-letter-spacing);
}

.service-details__benefit {
    position: relative;
    display: block;
    margin-top: 50px;
    margin-bottom: 60px;
}

.service-details__benefit-img {
    position: relative;
    display: block;
}

    .service-details__benefit-img img {
        width: 100%;
    }

.service-details__benefit-content {
    position: relative;
    display: block;
    margin-top: -3px;
}

.service-details__benefit-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 24px;
}

.service-details__benefit-text {
    padding-top: 10px;
    padding-bottom: 25px;
    /* font-weight: 600; */
    color: #4a4a4a;
    letter-spacing: var(--jetly-letter-spacing);
    font-size: 14px;
}

.service-details__benefit-points {
    position: relative;
    display: block;
}

    .service-details__benefit-points li {
        position: relative;
        display: flex;
        align-items: center;
        padding: 5px 0px;
    }

        .service-details__benefit-points li .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            background-color: #57b02d;
            font-size: 11px;
            color: var(--jetly-white);
        }

        .service-details__benefit-points li .text {
            margin-left: 15px;
        }

            .service-details__benefit-points li .text p {
                font-size: 14px;
                font-weight: 400;
                color: var(--jetly-black);
            }

                .service-details__benefit-points li .text p b {
                    font-weight: 600;
                }

.service-details__faq {
    position: relative;
    display: block;
}

    .service-details__faq .faq-one-accrodion .accrodion {
        border: 1px solid #eeede5;
    }

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    background-color: #fafbfa;
}

.contact-page__single {
    position: relative;
    display: block;
    background-color: rgb(255 255 255);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 30px 30px;
    margin-bottom: 20px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
}

.contact-page__title-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.contact-page__title {
}

    .contact-page__title span {
        position: relative;
        display: inline-block;
        font-size: 12px;
        color: var(--jetly-base);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        line-height: 12px;
    }

    .contact-page__title h3 {
        font-size: 24px;
        font-weight: 600;
        line-height: 24px;
        margin-top: 0px;
        display: flex;
        align-items: center;
        gap: 13px;
    }

        .contact-page__title h3 img {
            width: 140px;
            border-right: 1px solid #ccc;
            padding-right: 14px;
        }

.contact-page__icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .contact-page__icon span {
        position: relative;
        display: inline-block;
        font-size: 60px;
        color: var(--jetly-base);
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.contact-page__icon--last span {
    font-size: 42px;
}

.contact-page__single:hover .contact-page__icon span {
    transform: scale(1.2);
}

.contact-page__text a {
    position: relative;
    display: block;
    color: var(--jetly-gray);
    transition: all 500ms ease;
}

    .contact-page__text a:hover {
        color: var(--jetly-base);
    }

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-one {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
    z-index: 1;
}


.contact-one__form-box {
    position: relative;
    display: block;
    margin-top: 5rem;
}

.contact-one__form {
    position: relative;
    display: block;
}

    .contact-one__form .row {
        --bs-gutter-x: 20px;
    }

.contact-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .contact-form__input-box input[type="text"],
    .contact-form__input-box input[type="email"] {
        height: 60px;
        width: 100%;
        border: none;
        background-color: var(--jetly-primary);
        padding-left: 30px;
        padding-right: 30px;
        outline: none;
        font-size: 14px;
        color: var(--jetly-gray);
        display: block;
        font-weight: 400;
    }


    .contact-form__input-box select {
        height: 60px;
        width: 100%;
        border: none;
        background-color: var(--jetly-primary);
        padding-left: 30px;
        padding-right: 30px;
        outline: none;
        font-size: 14px;
        color: var(--jetly-gray);
        display: block;
        font-weight: 400;
    }

    .contact-form__input-box textarea {
        font-size: 14px;
        color: var(--jetly-gray);
        height: 155px;
        width: 100%;
        background-color: var(--jetly-primary);
        padding: 15px 30px 30px;
        border: none;
        outline: none;
        margin-bottom: 0px;
        font-weight: 400;
    }

    .contact-form__input-box.text-message-box {
        height: 155px;
    }

.contact-form__btn {
    display: block;
    margin: 0 auto;
    border: none;
    background-color: var(--jetly-base);
}

    .contact-form__btn:before {
        background-color: var(--jetly-black);
    }

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
    display: block;
    background-color: var(--jetly-primary);
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 470px;
    width: 100%;
    mix-blend-mode: luminosity;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.team__single {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 90px 0px rgba(0, 0, 0, 0.07);
}

.team__single-inner {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding-right: 40px;
    padding-bottom: 50px;
    overflow: hidden;
    z-index: 1;
}

    .team__single-inner:after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background-color: var(--jetly-base);
        transition: all 900ms ease;
        -moz-transition: all 900ms ease;
        -webkit-transition: all 900ms ease;
        -ms-transition: all 900ms ease;
        -o-transition: all 900ms ease;
        transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        background-position: center center;
        z-index: -1;
    }

.team__single:hover .team__single-inner:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.team__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--jetly-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

    .team__img img {
        width: 100%;
        transition: all 500ms ease;
    }

.team__single:hover .team__img img {
    transform: scale(1.05);
    opacity: 0.5;
}

.team__content {
    position: relative;
    display: block;
    padding-top: 34px;
    padding-left: 50px;
}

.team__name {
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 7px;
}

    .team__name a {
        color: var(--jetly-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.team__single:hover .team__name a {
    color: var(--jetly-white);
}

.team__title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 12px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team__single:hover .team__title {
    color: #ede2b1;
}

.team__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 28px;
}

    .team__social a {
        position: relative;
        height: 45px;
        width: 45px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        color: var(--jetly-black);
        background-color: var(--jetly-primary);
        font-size: 15px;
        border-radius: 50%;
        overflow: hidden;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 1;
    }

.team__single:hover .team__social a {
    color: var(--jetly-white);
    background-color: var(--jetly-black);
}

.team__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--jetly-black);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.team__single:hover .team__social a:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.team__social a + a {
    margin-left: 10px;
}

.team__social a:hover {
    color: var(--jetly-black) !important;
}

    .team__social a:hover:after {
        background-color: var(--jetly-white);
    }

/*--------------------------------------------------------------
# Destinations page
--------------------------------------------------------------*/
.destinations-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Destination Details
--------------------------------------------------------------*/
.destination-details {
    position: relative;
    display: block;
    padding: 120px 0 0;
}

.destination-details__top {
    position: relative;
    display: block;
}

.destination-details__top-left {
    position: relative;
    display: block;
}

.destination-details__top-img {
    position: relative;
    display: block;
}

    .destination-details__top-img img {
        width: 100%;
    }

.destination-details__top-right {
    position: relative;
    display: block;
}

.destination-details__details-box {
    position: relative;
    display: block;
    background-color: var(--jetly-primary);
    padding: 41px 50px 40px;
}

.destination-details__details-list {
    position: relative;
    display: block;
}

    .destination-details__details-list li {
        position: relative;
        display: block;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #eeede5;
    }

        .destination-details__details-list li:last-child {
            border-bottom: 0;
            margin-bottom: 0;
            padding-bottom: 0;
        }

.destination-details__client {
    color: var(--jetly-black);
    font-weight: 600;
}

.destination-details__name {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
}

.destination-details__bottom {
    position: relative;
    display: block;
    margin-top: 19px;
}

.destination-details__bottom-inner {
    position: relative;
    display: block;
}

.destination-details__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 20px;
}

.destination-details__points {
    position: relative;
    display: block;
    margin-top: 44px;
    margin-bottom: 42px;
}

    .destination-details__points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .destination-details__points li + li {
            margin-top: 8px;
        }

        .destination-details__points li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .destination-details__points li .icon span {
                position: relative;
                display: inline-block;
                font-size: 17px;
                color: var(--jetly-base);
            }

        .destination-details__points li .text {
            margin-left: 20px;
        }

            .destination-details__points li .text p {
                font-size: 18px;
                color: var(--jetly-black);
                font-weight: 600;
            }

.destination-details__pagination-box {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid #eeede5;
    border-bottom: 1px solid #eeede5;
    padding: 40px 0;
    margin-top: 55px;
}

.destination-details__pagination li {
    display: inline-block;
}

    .destination-details__pagination li.next {
        float: left;
        position: relative;
    }

    .destination-details__pagination li a {
        font-size: 16px;
        color: var(--jetly-black);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        display: flex;
        align-items: center;
        transition: all 500ms ease;
    }

        .destination-details__pagination li a:hover {
            color: var(--jetly-base);
        }

    .destination-details__pagination li.next i {
        position: relative;
        height: 50px;
        width: 50px;
        background-color: var(--jetly-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--jetly-black);
        font-size: 15px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        margin-right: 10px;
        z-index: 1;
    }

    .destination-details__pagination li.previous {
        position: relative;
        float: right;
    }

        .destination-details__pagination li.previous i {
            position: relative;
            height: 50px;
            width: 50px;
            background-color: var(--jetly-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--jetly-black);
            font-size: 15px;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            margin-left: 10px;
            z-index: 1;
        }

    .destination-details__pagination li a:hover i {
        color: var(--jetly-white);
        background-color: var(--jetly-base);
    }

/*--------------------------------------------------------------
# Similar Destination
--------------------------------------------------------------*/
.similar-destination {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}


/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.gallery-page__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.gallery-page__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

    .gallery-page__img:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--jetly-base);
        opacity: 0;
        visibility: hidden;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: scaleY(0) translateZ(100px);
        transform: scaleY(0) translateZ(100px);
        -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
    }

.gallery-page__single:hover .gallery-page__img:before {
    opacity: .80;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

.gallery-page__img img {
    width: 100%;
}

.gallery-page__icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

    .gallery-page__icon a {
        height: 97px;
        width: 97px;
        background-color: var(--jetly-black);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--jetly-white);
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 2;
    }

.gallery-page__single:hover .gallery-page__icon a {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition-delay: 500ms;
    opacity: 1;
}

.gallery-page__icon a:hover {
    background-color: var(--jetly-white);
    color: var(--jetly-base);
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    background-color: var(--jetly-primary);
}

.faq-page__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.contact-two__left {
    position: relative;
    display: block;
}

    .contact-two__left .section-title {
        margin-bottom: 37px;
    }

.contact-two .contact-form__input-box.text-message-box {
    height: 150px;
}

.contact-two .contact-form__input-box textarea {
    height: 150px;
}

.contact-two .contact-form__btn {
    margin: 0;
}

.contact-two__right {
    position: relative;
    display: block;
}

    .contact-two__right .service-details__need-help {
        margin-top: 0;
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
    position: relative;
    display: block;
    padding: 71px 0 120px;
    z-index: 1;
}

.error-page__inner {
    position: relative;
    display: block;
    text-align: center;
}

.error-page__title-box {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.error-page__title {
    position: relative;
    display: inline-block;
    font-size: 350px;
    line-height: 350px;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--jetly-base);
    z-index: 2;
}

.error-page-shape-1 {
    position: absolute;
    bottom: 117px;
    right: 15px;
    z-index: 2;
}

    .error-page-shape-1 img {
        width: auto;
    }

.error-page__tagline {
    font-size: 40px;
    line-height: 49px;
    font-weight: 600;
    color: var(--jetly-black);
    margin-bottom: 11px;
    margin-top: -30px;
}

.error-page__text {
    font-size: 20px;
}

.error-page__form {
    position: relative;
    display: block;
    margin: 47px auto 20px;
}

.error-page__form-input {
    position: relative;
    display: block;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

.error-page__form input[type="search"] {
    height: 60px;
    width: 100%;
    border: none;
    outline: none;
    background-color: var(--jetly-primary);
    border: 0;
    font-size: 16px;
    color: var(--jetly-gray);
    font-weight: 400;
    padding-left: 50px;
    padding-right: 75px;
    border-radius: 0;
}

.error-page__form button[type="submit"] {
    background-color: transparent;
    color: var(--jetly-black);
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.error-page__btn {
    background-color: var(--jetly-base);
}

    .error-page__btn:before {
        background-color: var(--jetly-black);
    }

/*--------------------------------------------------------------
# About For
--------------------------------------------------------------*/
.about-four {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-four__left {
    position: relative;
    display: block;
    margin-right: 30px;
}

.about-four__img {
    position: relative;
    display: block;
    z-index: 1;
}

    .about-four__img:before {
        content: "";
        position: absolute;
        top: 30px;
        bottom: 30px;
        right: -30px;
        width: 60px;
        background-color: var(--jetly-base);
        z-index: -1;
    }

    .about-four__img img {
        width: 100%;
    }

.about-four__right {
    position: relative;
    display: block;
    margin-left: 70px;
}

    .about-four__right .section-title {
        margin-bottom: 28px;
    }

.about-four__text-1 {
    font-size: 18px;
    color: var(--jetly-base);
    font-weight: 600;
}

.about-four__text-2 {
    padding-top: 27px;
    padding-bottom: 35px;
}

/*--------------------------------------------------------------
# Counter Three
--------------------------------------------------------------*/
.counter-three {
    position: relative;
    display: block;
    background-color: var(--jetly-black);
    padding-top: 72px;
    padding-bottom: 74px;
    z-index: 1;
}

.counter-three__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 223px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.03;
    z-index: -1;
}

.counter-three__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.counter-three__single {
    position: relative;
    flex: 0 0 25%;
    max-width: 25%;
    width: 100%;
    text-align: center;
}

    .counter-three__single:before {
        position: absolute;
        top: 8px;
        bottom: 6px;
        left: 0;
        content: "";
        width: 1px;
        background-color: rgba(var(--jetly-white-rgb), .10);
    }

    .counter-three__single:first-child:before {
        display: none;
    }

.counter-three__count-box {
    position: relative;
    display: block;
}

    .counter-three__count-box h3 {
        font-size: 40px;
        color: var(--jetly-white);
        font-weight: 600;
        line-height: 40px !important;
        font-family: var(--jetly-font) !important;
    }

.counter-three__text {
    font-size: 18px;
    color: #889f91;
    line-height: 29px;
}

/*--------------------------------------------------------------
# Brand Four
--------------------------------------------------------------*/
.brand-four {
    border-bottom: 1px solid #eeede5;
}

/*--------------------------------------------------------------
# scheme
--------------------------------------------------------------*/
.scheme {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.product__sidebar {
    position: relative;
    display: block;
}

.product__sidebar-single + .product__sidebar-single {
    margin-top: 30px;
}

.product__sidebar-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
    margin-bottom: 22px;
}



.shop-search {
    position: relative;
    display: block;
}

    .shop-search form {
        border-radius: 0px;
        position: relative;
        background-color: var(--jetly-base);
    }

        .shop-search form input[type=search],
        .shop-search form input[type=text] {
            width: 100%;
            height: 70px;
            background-color: var(--jetly-base);
            border-radius: 0px;
            padding-left: 30px;
            padding-right: 30px;
            font-size: 16px;
            color: var(--jetly-white);
            font-family: var(--jetly-font);
            border: none;
            outline: none;
            font-weight: 500;
        }

        .shop-search form ::placeholder {
            color: inherit;
            opacity: 1;
        }



.product__price-ranger {
    position: relative;
    padding: 27px 30px 30px;
    margin: 0;
    background-color: var(--jetly-primary);
}

    .product__price-ranger.price-ranger {
        margin-top: 7px;
        margin-bottom: 0px;
    }

        .product__price-ranger .price-ranger .ui-widget-content {
            background: var(--jetly-white);
            border: none;
            height: 5px;
        }

        .product__price-ranger .price-ranger .ui-slider-handle {
            position: absolute;
            top: -5px;
            background: var(--jetly-base);
            border: 0;
            height: 14px;
            width: 14px !important;
            border-radius: 50%;
            margin-left: -2px;
            outline: medium none;
            cursor: pointer;
            z-index: 2;
        }

        .product__price-ranger .price-ranger .ui-slider .ui-slider-range {
            background: var(--jetly-base);
        }

        .product__price-ranger .price-ranger #slider-range {
            margin-left: 3px;
            margin-right: 0;
            margin-top: 0;
        }

        .product__price-ranger .price-ranger .ranger-min-max-block {
            position: relative;
            display: block;
            margin-top: 17px;
        }

            .product__price-ranger .price-ranger .ranger-min-max-block input {
                display: inline-block;
            }

                .product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
                    position: relative;
                    display: block;
                    background: var(--jetly-black);
                    float: right;
                    text-align: center;
                    border: none;
                    color: #ffffff;
                    font-size: 12px;
                    font-weight: 600;
                    margin-top: 0;
                    text-transform: uppercase;
                    cursor: pointer;
                    padding: 5px 20px;
                    border-radius: 20px;
                    letter-spacing: 0.1em;
                }

                .product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
                    position: relative;
                    display: inline-block;
                    color: var(--jetly-gray);
                    font-size: 14px;
                    font-weight: 400;
                    width: 40px;
                    line-height: 30px;
                    border: none;
                    padding: 0;
                    text-align: center;
                    background-color: transparent;
                }

            .product__price-ranger .price-ranger .ranger-min-max-block span {
                position: relative;
                display: inline-block;
                color: var(--jetly-gray);
                font-size: 14px;
                font-weight: 400;
                line-height: 40px;
                left: -2px;
            }



.shop-category {
    position: relative;
    display: block;
    background-color: var(--jetly-primary);
    padding: 29px 15px 15px;
}

    .shop-category .product__sidebar-title {
        margin-left: 15px;
        margin-bottom: 13px;
    }

    .shop-category ul {
        position: relative;
        display: block;
    }

        .shop-category ul li {
            position: relative;
            line-height: 24px;
            font-size: 16px;
            text-transform: capitalize;
            color: var(--jetly-gray);
            margin-bottom: 5px;
        }

            .shop-category ul li:last-child {
                margin-bottom: 0;
            }

            .shop-category ul li a {
                position: relative;
                display: block;
                line-height: 24px;
                font-size: 16px;
                text-transform: capitalize;
                color: var(--jetly-gray);
                font-weight: 400;
                border-radius: 0;
                transition: all 0.3s ease;
                z-index: 1;
                padding: 8px 15px 8px;
            }

                .shop-category ul li a::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    background: var(--jetly-white);
                    border-radius: 0px;
                    z-index: -1;
                    transform: scaleY(0.0);
                    transform-origin: left;
                    transform-style: preserve-3d;
                    transition: all 200ms linear;
                    transition-delay: 0.1s;
                }

                .shop-category ul li a:hover:before {
                    transform: scaleY(1.0);
                }

            .shop-category ul li:hover a,
            .shop-category ul li.active a {
                color: var(--jetly-black);
                text-shadow: 1px 0 0 rgba(18, 56, 33, .8);
                background: var(--jetly-white);
            }

            .shop-category ul li a:after {
                position: absolute;
                right: 20px;
                top: 5px;
                font-family: 'icomoon' !important;
                content: "\e91e";
                opacity: 1;
                font-size: 15px;
                color: var(--jetly-base);
                line-height: 30px;
                transform: scale(0);
                transition: all 200ms linear;
                transition-delay: 0.1s;
                z-index: 1;
            }

            .shop-category ul li a:hover:after,
            .shop-category ul li.active a:after {
                color: var(--jetly-base);
                transform: scale(1);
            }

.product__items {
    position: relative;
    display: block;
}

.product__showing-result {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.product__showing-text-box {
    position: relative;
    display: block;
}

.product__showing-text {
    font-size: 16px;
    font-weight: 400;
}

.product__showing-sort {
    position: relative;
    display: block;
    max-width: 340px;
    width: 100%;
}

    .product__showing-sort .select-box .nice-select {
        background-color: var(--jetly-primary);
        border-radius: 0;
        color: var(--jetly-gray);
        font-size: 14px;
        font-weight: 400;
        height: 70px;
        line-height: 70px;
        padding-left: 30px;
        padding-right: 30px;
        width: 100%;
        margin-bottom: 0px;
    }

        .product__showing-sort .select-box .nice-select:after {
            position: absolute;
            right: 30px;
        }


.product__all {
    position: relative;
    display: block;
}

.product__all-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 1px solid #eeede5;
    background-color: rgb(241 241 241);
    padding: 0 0 30px;
    transition: all 500ms ease;
    z-index: 1;
}

    .product__all-single:hover {
        box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    }

.product__all-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    height: 290px;
}

    .product__all-img:before {
        position: absolute;
        content: "";
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(var(--jetly-black-rgb), .10);
        -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(-70%);
        transform: translateY(-70%);
        z-index: 1;
    }

.product__all-single:hover .product__all-img:before {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
}

.product__all-img img {
    width: 100%;
    transition: all 500ms ease;
}

.product__all-single:hover .product__all-img img {
    transform: scale(1.05);
}

.product__all-content {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 16px;
}

.product__all-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin: 1.5rem 0rem;
}

    .product__all-title a {
        color: var(--jetly-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .product__all-title a:hover {
            color: var(--jetly-base);
        }

.product__all-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--jetly-gray);
}

.product__all-review {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product__all-review i {
        font-size: 15px;
        color: var(--jetly-base);
    }

        .product__all-review i + i {
            margin-left: 5px;
        }

.product__all-btn-box {
    position: relative;
    display: block;
    margin-top: 10px;
    z-index: 2;
}

.product__all-btn {
    font-size: 12px;
    padding: 5px 20px 5px;
    background-color: #f36523;
}

/*--------------------------------------------------------------
# Product Details
--------------------------------------------------------------*/
.product-details {
    position: relative;
    display: block;
    padding: 120px 0px 56px;
}

.product-details__img {
    position: relative;
    display: block;
    overflow: hidden;
}

    .product-details__img img {
        width: 100%;
        border: 1px solid #eeede5;
    }


.product-details__top {
    position: relative;
    display: block;
    margin-top: -10px;
}

.product-details__title {
    font-size: 34px;
    line-height: 44px;
    font-weight: 600;
    margin: 0;
}

    .product-details__title span {
        position: relative;
        display: inline-block;
        color: var(--jetly-base);
        font-size: 20px;
        line-height: 26px;
        font-weight: 600;
        margin-left: 25px;
        letter-spacing: 0;
    }

.product-details__reveiw {
    display: flex;
    align-items: center;
    margin-top: 19px;
    padding-bottom: 30px;
    margin-bottom: 21px;
    border-bottom: 1px solid #eeede5;
}

    .product-details__reveiw i {
        font-size: 16px;
        color: var(--jetly-base);
    }

        .product-details__reveiw i + i {
            margin-left: 4px;
        }

    .product-details__reveiw span {
        position: relative;
        top: 1px;
        line-height: 1;
        font-size: 16px;
        color: var(--jetly-gray);
        margin-left: 18px;
    }

.product-details__content {
    position: relative;
    display: block;
}

.product-details__content-text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    margin-bottom: 31px;
}

.product-details__content-text2 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.product-details__quantity-title {
    margin: 0;
    color: var(--jetly-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin-right: 20px;
}

.product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
}

    .product-details__quantity .quantity-box input {
        width: 98px;
        border-radius: 0px;
        height: 50px;
        border: 1px solid #eeede5;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        font-family: var(--jetly-font);
        padding-left: 30px;
        outline: none;
        font-size: 18px;
        font-weight: 600;
        color: var(--jetly-gray);
    }

    .product-details__quantity .quantity-box button {
        width: 24px;
        height: 24px;
        background-color: transparent;
        color: var(--jetly-gray);
        font-size: 8px;
        position: absolute;
        top: 1px;
        right: 1px;
        background-color: #fff;
        border: none;
        border-left: 1px solid #eeede5;
        border-top-right-radius: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        outline: none;
    }

        .product-details__quantity .quantity-box button.sub {
            bottom: 1px;
            top: auto;
            border-top: 1px solid #eeede5;
            border-top-right-radius: 0px;
            border-bottom-right-radius: 0px;
        }

.product-details__buttons {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.product-details__buttons-1 {
    position: relative;
    display: block;
}

    .product-details__buttons-1 .thm-btn {
        background-color: var(--jetly-black);
    }

        .product-details__buttons-1 .thm-btn::before {
            background-color: var(--jetly-base);
        }

.product-details__buttons-2 {
    position: relative;
    display: block;
    margin-left: 10px;
}

    .product-details__buttons-2 .thm-btn {
        background-color: var(--jetly-base);
    }

        .product-details__buttons-2 .thm-btn:before {
            background-color: var(--jetly-black);
        }

.product-details__social {
    position: relative;
    display: flex;
    align-items: center;
}

    .product-details__social .title {
        position: relative;
        display: block;
    }

        .product-details__social .title h3 {
            color: var(--jetly-black);
            font-size: 18px;
            line-height: 18px;
            font-weight: 600;
        }

.product-details__social-link {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
}

    .product-details__social-link a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jetly-black);
        font-size: 15px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        background-color: var(--jetly-primary);
        border-radius: 50%;
        height: 45px;
        width: 45px;
    }

        .product-details__social-link a + a {
            margin-left: 10px;
        }

        .product-details__social-link a:hover {
            color: var(--jetly-white);
            background-color: var(--jetly-base);
        }


/*--------------------------------------------------------------
# Product Description
--------------------------------------------------------------*/
.product-description {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 50px;
}

.product-description__title {
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 27px;
}

.product-description__text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

.product-description__list {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .product-description__list ul {
        position: relative;
        display: block;
    }

        .product-description__list ul li {
            position: relative;
            display: block;
            margin-bottom: 2px;
        }

            .product-description__list ul li:last-child {
                margin-bottom: 0px;
            }

            .product-description__list ul li p {
                color: var(--jetly-black);
                margin: 0;
                font-weight: 500;
            }

                .product-description__list ul li p span:before {
                    position: relative;
                    display: inline-block;
                    color: var(--jetly-base);
                    font-size: 17px;
                    line-height: 17px;
                    margin-right: 11px;
                    top: 2px;
                }

.product-description__tex2 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

/*--------------------------------------------------------------
# Review One
--------------------------------------------------------------*/
.review-one {
    position: relative;
    display: block;
    margin-top: 4rem;
    padding-bottom: 4rem;
    padding-top: 1rem;
}

.comments-area {
    position: relative;
    display: block;
    margin-top: 40px;
}

.review-one__title {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

    .review-one__title h3 {
        font-size: 30px;
        line-height: 30px;
        font-weight: 800;
        margin: 0;
    }


.comments-area .comment-box {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding: 40px;
    border: 1px solid #eeede5;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.comments-area .comment {
    position: relative;
    display: flex;
    align-items: center;
}

.comments-area .comment-box .author-thumb {
    position: relative;
    display: block;
    width: 90px;
    height: 80px;
    overflow: hidden;
    border-left: 1px solid rgb(43 81 28 / 17%);
    padding-left: 1rem;
}

    .comments-area .comment-box .author-thumb img {
        width: 100%;
    }

    .comments-area .comment-box .author-thumb figure {
        margin: 0;
    }

.review-one__content {
    position: relative;
    display: block;
    padding-left: 45px;
    flex: 1;
}

.review-one__content-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

    .review-one__content-top .info {
        position: relative;
        display: block;
    }

        .review-one__content-top .info h2 {
            font-size: 14px;
            line-height: normal;
            font-weight: 400;
            color: #3e3e3e;
        }

            .review-one__content-top .info h2 span {
                color: #ff725c;
                font-size: 14px;
                font-weight: 500;
                letter-spacing: 0;
            }

    .review-one__content-top .reply-btn {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #333;
    }

        .review-one__content-top .reply-btn img {
            margin-right: 5px;
        }

        .review-one__content-top .reply-btn i:before {
            color: var(--jetly-base);
            font-size: 15px;
        }

.review-one__content-bottom {
    position: relative;
    display: block;
}

    .review-one__content-bottom a {
        font-size: 14px;
        line-height: 30px;
        margin: 0px;
        color: #333;
    }

        .review-one__content-bottom a:hover {
            color: #000;
        }

/*--------------------------------------------------------------
# Review Form One
--------------------------------------------------------------*/
.review-form-one {
    position: relative;
    display: block;
    padding: 16px 0 120px;
}

.review-form-one__inner {
    position: relative;
    display: block;
}

.review-form-one__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
}

.review-form-one__rate-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 25px;
}

.review-form-one__rate-text {
    font-size: 16px;
    font-weight: 400;
}

.review-form-one__rate {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

    .review-form-one__rate i {
        font-size: 16px;
        color: var(--jetly-base);
    }

        .review-form-one__rate i + i {
            margin-left: 5px;
        }

.review-form-one__form {
    position: relative;
    display: block;
}

    .review-form-one__form .row {
        --bs-gutter-x: 20px;
    }

.review-form-one__input-box textarea {
    font-size: 14px;
    color: var(--jetly-gray);
    height: 190px;
    width: 100%;
    background-color: var(--jetly-primary);
    padding: 25px 30px 30px;
    border: none;
    outline: none;
    margin-bottom: 0px;
    font-weight: 400;
}

.review-form-one__input-box.text-message-box {
    height: 190px;
}

.review-form-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .review-form-one__input-box input[type="text"],
    .review-form-one__input-box input[type="email"] {
        height: 60px;
        width: 100%;
        border: none;
        background-color: var(--jetly-primary);
        padding-left: 30px;
        padding-right: 30px;
        outline: none;
        font-size: 14px;
        color: var(--jetly-gray);
        display: block;
        font-weight: 400;
    }

.review-form-one__btn {
    border: none;
    background-color: var(--jetly-base);
}

    .review-form-one__btn:before {
        background-color: var(--jetly-black);
    }

/*--------------------------------------------------------------
# Cart Page
--------------------------------------------------------------*/
.cart-page {
    position: relative;
    display: block;
    background: var(--jetly-white);
    padding: 113px 0px 120px;
}

    .cart-page .table-responsive {
        position: relative;
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

@media(max-width: 1199px) {
    .cart-table {
        min-width: 1170px;
    }
}

.cart-table {
    margin-bottom: 60px;
}

    .cart-table thead th {
        color: var(--jetly-black);
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        padding: 0;
        border: none;
        padding-bottom: 22px;
    }

        .cart-table thead th:last-child {
            text-align: right;
        }

    .cart-table tbody tr {
        vertical-align: middle;
    }

        .cart-table tbody tr:last-child {
            border-bottom: 1px solid #eeede5;
        }

    .cart-table tbody td {
        font-size: 18px;
        color: var(--jetly-gray);
        vertical-align: middle;
        border-top: 1px solid #eeede5;
        border-bottom: 1px solid #eeede5;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 0;
        padding-right: 0;
    }

        .cart-table tbody td:last-child {
            text-align: right;
        }

    .cart-table .product-box {
        display: flex;
        align-items: center;
    }

        .cart-table .product-box .img-box {
            position: relative;
            display: block;
            width: 120px;
            border-radius: 0;
            overflow: hidden;
            margin-right: 35px;
        }

            .cart-table .product-box .img-box img {
                width: 100%;
                border: 1px solid #eeede5;
            }

    .cart-table h3 {
        color: var(--jetly-black);
        font-size: 20px;
        margin-left: 36px;
        font-weight: 600;
        margin: 0;
    }

        .cart-table h3 a {
            color: var(--jetly-black);
            transition: all 200ms linear;
            transition-delay: 0.1s;
        }

            .cart-table h3 a:hover {
                color: var(--jetly-base);
            }

    .cart-table .quantity-box {
        position: relative;
        width: 98px;
        border-radius: 0px;
        height: 50px;
    }

        .cart-table .quantity-box input {
            width: 98px;
            border-radius: 0px;
            height: 50px;
            border: 1px solid #eeede5;
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            font-family: var(--jetly-font);
            padding-left: 30px;
            outline: none;
            font-size: 18px;
            color: var(--jetly-gray);
            font-weight: 600;
        }

        .cart-table .quantity-box button {
            width: 24px;
            height: 24px;
            background-color: transparent;
            color: var(--thm-black);
            font-size: 8px;
            position: absolute;
            top: 1px;
            right: 1px;
            background-color: #fff;
            border-top-right-radius: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            outline: none;
            border: none;
            border-left: 1px solid #eeede5;
        }

            .cart-table .quantity-box button.sub {
                bottom: 1px;
                top: auto;
                border-top: 1px solid #eeede5;
                border-top-right-radius: 0px;
                border-bottom-right-radius: 0px;
            }

    .cart-table .cross-icon {
        position: relative;
        display: block;
    }

        .cart-table .cross-icon i:before {
            position: relative;
            display: inline-block;
            color: var(--jetly-black);
            font-size: 16px;
        }

.cart-cupon__form {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.cart-cupon__input {
    width: 100%;
    max-width: 370px;
    border-radius: 0;
    background-color: var(--jetly-primary);
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 20px;
    font-family: var(--jetly-font);
    font-size: 14px;
    color: var(--jetly-gray);
    height: 60px;
    margin-bottom: 20px;
    border: none;
    outline: none;
    font-weight: 400;
}

.cart-cupon__form ::placeholder {
    color: var(--jetly-gray);
    opacity: 1;
}

.cart-cupon__form button {
    top: -1px;
    border: none;
    outline: none !important;
    background-color: var(--jetly-base);
}

    .cart-cupon__form button:before {
        background-color: var(--jetly-black);
    }

.cart-total {
    position: relative;
    display: block;
    margin-bottom: 22px;
    margin-top: -9px;
}

    .cart-total li {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        color: var(--jetly-gray);
        font-size: 18px;
        font-weight: 500;
    }

        .cart-total li + li {
            margin-top: 15px;
        }

        .cart-total li span:first-child {
            display: block;
            color: var(--jetly-black);
            font-size: 20px;
            margin-right: 80px;
            font-weight: 600;
            width: 135px;
            text-align: right;
            letter-spacing: var(--jetly-letter-spacing);
        }

        .cart-total li:nth-child(2) span:first-child {
            position: relative;
            right: 6px;
        }

.cart-total-amount {
    color: var(--jetly-base);
}

.cart-page__buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cart-page__buttons-1 {
    position: relative;
    display: block;
}

    .cart-page__buttons-1 .thm-btn {
        background: var(--jetly-black);
    }

        .cart-page__buttons-1 .thm-btn::before {
            background: var(--jetly-base);
        }

.cart-page__buttons-2 {
    position: relative;
    display: block;
    margin-left: 10px;
}

    .cart-page__buttons-2 .thm-btn {
        background-color: var(--jetly-base);
    }

        .cart-page__buttons-2 .thm-btn:before {
            background-color: var(--jetly-black);
        }

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
    position: relative;
    display: block;
    padding: 110px 0 120px;
}

    .checkout-page .billing_details {
        position: relative;
        display: block;
    }

.billing_title {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

    .billing_title p {
        font-size: 16px;
        margin: 0;
    }

    .billing_title span {
        color: var(--jetly-base);
    }

    .billing_title h2 {
        font-size: 30px;
        line-height: 30px;
        margin: 0;
        font-weight: 600;
        margin-top: 16px;
    }

.billing_details_form {
    position: relative;
    display: block;
}

    .billing_details_form .bs-gutter-x-20 {
        --bs-gutter-x: 20px;
    }


    .billing_details_form .btn-light {
        border: none;
    }

        .billing_details_form .btn-light:hover {
            border: none;
        }

.billing_input_box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .billing_input_box input[type="text"],
    .billing_input_box input[type="email"],
    .billing_input_box input[type="tel"] {
        height: 60px;
        width: 100%;
        border: none;
        background-color: var(--jetly-primary);
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 0;
        outline: none;
        font-size: 14px;
        color: var(--jetly-gray);
        display: block;
        font-weight: 400;
    }

.billing_details .checked-box {
    position: relative;
    display: block;
    margin-top: -4px;
}

    .billing_details .checked-box label {
        position: relative;
        display: inline-block;
        padding-left: 30px;
        margin-right: 0px;
        margin-bottom: 0;
        color: var(--jetly-gray);
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
        text-transform: none;
        cursor: pointer;
        font-family: var(--jetly-font);
    }

    .billing_details .checked-box input[type="checkbox"] {
        display: none;
    }

        .billing_details .checked-box input[type="checkbox"] + label span {
            position: absolute;
            top: 2px;
            left: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            vertical-align: middle;
            background-color: transparent;
            background: var(--jetly-base);
            cursor: pointer;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
            border: 0;
        }

    .billing_details .checked-box label span:before {
        position: absolute;
        top: 4px;
        left: 6px;
        display: block;
        border-bottom: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
        content: '';
        width: 6px;
        height: 9px;
        pointer-events: none;
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        opacity: 0;
    }

    .billing_details.checked-box input[type="checkbox"]:checked + label span {
        border-color: #ffffff;
    }

        .billing_details .checked-box input[type="checkbox"]:checked + label span:before {
            opacity: 1;
        }

.ship_different_address_title {
    margin-top: 45px;
}

    .ship_different_address_title h2 span::before {
        position: relative;
        display: inline-block;
        color: var(--jetly-base);
        font-size: 19px;
        top: -2px;
        left: 15px;
    }

.ship_different_address_form .ship_different_input {
    position: relative;
    display: block;
    height: 120px;
}

    .ship_different_address_form .ship_different_input textarea {
        font-size: 14px;
        color: var(--jetly-gray);
        height: 120px;
        width: 100%;
        background-color: var(--jetly-primary);
        padding: 15px 30px 20px;
        border: none;
        outline: none;
        margin-bottom: 0px;
        border-radius: 0;
        font-weight: 500;
    }

.billing_details_form .select-box .nice-select {
    background-color: var(--jetly-primary);
    border-radius: 0;
    color: var(--jetly-gray);
    font-size: 14px;
    font-weight: 400;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 20px;
}

    .billing_details_form .select-box .nice-select:after {
        position: absolute;
        right: 30px;
    }

.your_order {
    position: relative;
    display: block;
    padding-top: 56px;
}

    .your_order h2 {
        font-size: 30px;
        line-height: 30px;
        font-weight: 600;
        margin: 0;
        margin-bottom: 36px;
    }

.order_table_box {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #eeede5;
    padding-bottom: 24px;
}

.order_table_detail {
    position: relative;
    width: 100%;
}

.order_table_head {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #eeede5;
    border-top: 1px solid #eeede5;
}

    .order_table_head th {
        font-size: 20px;
        color: var(--jetly-black);
        font-weight: 600;
        margin: 0;
        padding: 23px 0 22px;
    }

        .order_table_head th.right {
            float: right;
        }

.order_table_detail tbody td {
    padding: 29px 0 2px;
}

    .order_table_detail tbody td.pro__title {
        color: var(--jetly-gray);
        font-size: 16px;
        line-height: 18px;
        font-weight: 400;
    }

    .order_table_detail tbody td.pro__price {
        color: var(--jetly-gray);
        font-size: 16px;
        line-height: 18px;
        text-align: right;
        font-weight: 400;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.checkout__payment {
    background-color: var(--jetly-primary);
    border-radius: 0;
    padding: 49px 50px 18px;
    margin-bottom: 30px;
}

.checkout__payment__item + .checkout__payment__item {
    margin-top: 41px;
}


.checkout__payment__title {
    display: flex;
    color: var(--jetly-black);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    align-items: center;
    margin-bottom: 27px;
    cursor: pointer;
}

    .checkout__payment__title::before {
        content: '';
        width: 20px;
        height: 20px;
        background-color: #ffffff;
        border: 2px solid #eeede5;
        border-radius: 50%;
        margin-right: 10px;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 10px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
        position: relative;
        top: 0px;
        transition: all 500ms ease;
    }

    .checkout__payment__title img {
        margin-left: 15px;
    }

.checkout__payment__item--active .checkout__payment__title::before {
    background-color: var(--jetly-base);
    border-color: var(--jetly-base);
    content: '\f00c';
}

.checkout__payment__content {
    font-size: 16px;
    line-height: 30px;
    color: var(--jetly-gray);
    font-weight: 400;
}

/*--------------------------------------------------------------
# News Carousel Page
--------------------------------------------------------------*/
.news-carousel-page {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

    .news-carousel-page .blog-one__single {
        margin-bottom: 0;
    }

.carousel-dot-style.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

    .carousel-dot-style.owl-carousel .owl-item.active {
        opacity: 1;
        visibility: visible;
    }

.carousel-dot-style.owl-carousel .owl-dots {
    position: absolute;
    bottom: -50px;
    left: 0px;
    right: 0;
    text-align: center;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-dot-style.owl-carousel .owl-dots .owl-dot {
        position: relative;
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--jetly-base);
        margin: 0px 5px;
        padding: 0px;
        transition: all 100ms linear;
        transition-delay: 0.1s;
    }

.carousel-dot-style.owl-carousel .owl-dot.active {
    width: 10px;
    height: 10px;
    background-color: var(--jetly-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
    outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.team-carousel-page {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

    .team-carousel-page .team__single {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Testimonials Carousel Page
--------------------------------------------------------------*/
.testimonials-carousel-page {
    position: relative;
    display: block;
    padding: 153px 0 170px;
    background-color: var(--jetly-primary);
}

/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

    .services-carousel-page .services-one__single {
        margin-bottom: 0;
    }

.thm-breadcrumb--two {
    max-width: 300px;
}

/*--------------------------------------------------------------
# Gallery Carousel Page
--------------------------------------------------------------*/
.gallery-carousel-page {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

    .gallery-carousel-page .gallery-page__single {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/

body.boxed-wrapper {
    background-color: var(--jetly-primary);
}

.boxed-wrapper .page-wrapper {
    max-width: 1530px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}







.page-change-sec {
    position: relative;
    padding: 0px;
    padding-left: 0px;
}

    .page-change-sec .changefontsize {
        text-align: center;
        font-size: 11px;
        color: var(--jetly-white);
        display: inline;
        border-right: 1px solid #626161;
        padding: 0px 6px;
    }

    .page-change-sec .bgclscss {
        width: 19px;
        height: 19px;
        line-height: normal;
        text-align: center;
        font-size: 11px;
        color: var(--jetly-white);
        margin-right: 2px;
        background-color: #fff;
        border: 1px solid #6e6e6e;
    }

    .page-change-sec select {
        display: inline-block;
        font-size: 10px;
        border: 0;
        outline: 0;
        border-radius: 0px;
    }

.language {
    padding: 0px 10px;
    color: var(--jetly-white);
    font-size: 11px;
    line-height: normal;
    display: inline;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-right: 0px;
    border-left: 1px solid #6e6e6e;
}

    .language:hover {
        color: var(--jetly-base);
    }

.login-btn {
    padding: 7px 16px;
    color: var(--jetly-black);
    font-size: 12px;
    line-height: normal;
    background: #f36523;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    .login-btn:hover {
        color: #fff;
        background: #c95c2a;
    }

.page-change-sec a {
    display: inline-block
}

.news_box {
    border-radius: 10px;
    overflow: hidden;
}

    .news_box .news_box-title {
        font-size: 20px;
        display: block;
        font-weight: 600;
        border-bottom: 0px solid #ccc;
        background: #f47419;
        padding: 15px 30px;
        color: #fff;
    }

.pressRelease {
    background: #f2f3f7;
    padding: 30px;
}

.ticker {
    overflow: auto;
    position: relative;
    border: none;
    height: 405px;
    padding: 0px;
    margin: 0px;
}

    .ticker li {
        display: flex;
        font-size: 13px;
        border-bottom: 1px solid #d7d7d7;
        padding: 10px 0px;
        align-items: start;
        line-height: normal;
    }

        .ticker li aside {
            /* float: left; */
            padding: 6px;
            width: 60px;
            border-radius: 3px;
            text-align: center;
            margin-right: 12px;
            line-height: normal;
            background: #323232;
        }

            .ticker li aside h2 {
                color: #fff;
                font-weight: 600;
                margin: 0px;
                font-size: 20px;
            }

            .ticker li aside span {
                color: #fff;
                text-transform: uppercase;
                font-size: 12px;
            }

        .ticker li article {
            width: 90%;
        }

            .ticker li article a {
                color: #333;
                line-height: normal;
                display: block;
            }

            .ticker li article span {
                font-size: 10px;
                color: #383737;
                font-weight: 500;
            }

                .ticker li article span img {
                    width: 23px;
                    padding: 5px;
                }

.newsmore {
    background: #f2f3f7;
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
    position: relative;
    padding-bottom: 0px;
}

.news-more-btn {
    display: block;
    text-align: center;
    float: none;
    color: #000000;
    font-weight: 600;
    margin: auto;
    padding: 5px 20px;
    border-radius: 3px;
    font-size: 16px;
    padding-bottom: 0px;
}

    .news-more-btn:hover {
        color: #76a90c;
    }

.pull-right-play {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 31px;
    width: 30px;
    text-align: center;
}

.center-title {
    font-size: 33px;
    margin-bottom: 1rem;
    display: inline-block;
    text-align: left;
    font-weight: 700;
}



.border-top {
    border-top: 1px solid hsl(0deg 0% 100% / 13%) !important;
}

.container-fluid {
    width: 99%;
}

.marquee-title {
    position: absolute;
    width: 100%;
    border-radius: 100px;
    right: 0px;
    left: 0px;
    margin: auto;
    margin-top: 0rem;
    align-items: center;
    display: flex;
    background: #02aa5a;
    color: #ffffff;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 22%);
    z-index: 1;
    height: 49px;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}


    .marquee-title a {
        color: #000000;
        font-size: 14px;
    }

        .marquee-title a img {
        }

    .marquee-title > span {
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        width: 160px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: normal;
    }

.marquee-scroll {
    color: #000;
    padding: 12px;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    width: 100%;
}

.main-logo-two__left {
    display: flex;
    align-items: center;
    float: left;
    margin-top: 8px;
}

.main-logo-two__right {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 80px;
}

    .main-logo-two__right > .righticon {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
    }

    .main-logo-two__right .righticon li .skip-btn {
        padding-right: 25px;
        color: #fff;
        font-size: 14px;
    }

        .main-logo-two__right .righticon li .skip-btn:first-child {
            margin-right: 12px;
            padding-right: 0px;
            display: inline-block;
            width: 24px;
        }


    .main-logo-two__right .righticon li .top-right-logo {
        height: 45px;
        padding-right: 20px;
    }

    .main-logo-two__right .righticon li .accessibility-btn svg {
        height: 25px;
        padding-right: 10px;
        fill: #fff;
    }

    .main-logo-two__right .righticon li .language-btn img {
        height: 25px;
        padding-right: 5px;
        fill: #fff;
    }

.language-btn::after {
    display: none !important;
}

.main-logo-two__right .righticon li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.user-profile {
    text-align: left;
    line-height: normal;
    display: flex;
    align-items: center;
    margin: 0px 10px;
}

    .user-profile img {
        width: 30px;
        height: 30px;
        border-radius: 100px;
    }

    .user-profile span {
        color: #ccc;
        font-size: 11px;
        line-height: normal;
        margin-left: 5px;
    }

        .user-profile span b {
            display: block;
            line-height: normal;
            font-size: 12px;
            font-weight: 400;
            color: #fff;
            text-overflow: ellipsis;
            overflow: hidden;
            width: 62px;
            white-space: nowrap;
        }


.top_bar_left-time {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 12px;
    font-weight: 300;
}

    .top_bar_left-time i {
        color: #545454;
    }

    .top_bar_left-time .date {
        font-size: 12px;
        color: #000;
        padding: 0px 10px;
        font-weight: 400;
        width: 100px;
    }

    .top_bar_left-time .time {
        font-size: 12px;
        color: #000;
        padding: 0px 10px;
        font-weight: 400;
        width: 100px;
    }

    .top_bar_left-time .date#printDate {
        padding-left: 5px;
        padding-right: 20px;
    }

    .top_bar_left-time .date#printDay {
        margin: 0 20px
    }

    .top_bar_left-time .date#printTime {
        padding-left: 5px;
    }

.officials-one {
    text-align: left;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 1.5rem;
    background-color: rgb(239 227 221);
    padding: 20px 20px;
    border-radius: 10px;
    gap: 15px;
    overflow: hidden;
    width: 100%;
}

    .officials-one article {
        width: 100%;
        text-align: left;
        padding: 0rem;
    }

    .officials-one:hover aside {
        -webkit-box-shadow: 0 10px 90px rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 90px rgba(0, 0, 0, 0.08);
        transform: scale(1.0);
    }

    .officials-one aside img {
        object-fit: cover;
        height: 100%;
    }



    .officials-one h2 {
        font-size: 16px;
        margin-bottom: 6px;
        color: #000;
        font-weight: 700;
    }

    .officials-one span {
        font-size: 13px;
        font-weight: 500;
        color: #000;
        line-height: normal;
        display: block;
    }

.officials-one--big {
    width: 350px;
    margin: auto;
    margin-top: 1.5rem;
    display: block;
    margin-top: 2rem;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: visible;
}

    .officials-one--big aside {
        width: 150px;
        height: 150px;
        margin: auto;
        margin-bottom: 1rem;
        position: absolute;
        top: -90px;
        right: 0px;
        left: 0px;
        border-radius: 95px;
    }

    .officials-one--big article {
        text-align: center;
        width: 100%;
    }


.officials-one--small {
    width: 420px;
    margin: auto;
}








.banner-img {
    position: absolute;
    height: 650px;
    bottom: 0px;
    right: 0px;
}

.album-card {
    width: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgb(0 0 0 / 15%);
    border-radius: 5px;
    overflow: hidden;
}

    .album-card .card-img-container {
        overflow: hidden;
        position: relative;
        background-color: #262626;
        height: 290px;
    }

    .album-card .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .album-card .card-img h1 {
        -webkit-font-smoothing: antialiased;
        font-family: "bodoni-urw";
        font-weight: normal;
        font-size: 36px;
        margin: 0;
        position: relative;
    }

    .album-card .card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px;
    }

        .album-card .card-body h1 {
            color: #262626;
            margin: 0 0 20px 0;
            font-weight: 600;
            line-height: normal;
            font-size: 18px;
        }

        .album-card .card-body .card-link a {
            -webkit-font-smoothing: antialiased;
            display: block;
            text-decoration: none;
            text-transform: uppercase;
            color: #ffffff;
            font-weight: 500;
            font-size: 14px;
            background-color: #869b00;
            background: #7a910c;
            background: linear-gradient(314deg, rgb(134 155 0) 35%, #264d1e 100%);
            text-align: center;
            display: inline-block;
            padding: 5px 20px;
            border-radius: 5px;
        }

            .album-card .card-body .card-link a:hover {
                background: #264d1e;
            }



.awards-images .awards-item {
    overflow: hidden;
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    transition: all 0.2s ease-in;
}



    .awards-images .awards-item:hover {
        transform: scale(1.1);
        cursor: zoom-in;
    }



    .awards-images .awards-item img {
        width: 100%;
        display: block;
        margin: auto;
    }

:root {
    --clr-primary: hsl(53.29deg 79.89% 64.9%);
    --clr-primary-hover: hsl(53.29deg 79.89% 64.9%);
    /* --transition: 0.5s ease; */
}

.hoverbox {
    position: relative;
    background: rgb(15 46 6 / 91%);
    padding: 32px 28px;
    overflow: hidden;
    border-radius: 0px;
    transition: 0.35s ease-in;
    border-radius: 10px;
    max-height: 300px;
}

    .hoverbox:after {
        content: "";
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        width: 0%;
        height: 0.35rem;
        background: var(--clr-primary);
        transition: var(--transition);
    }

    .hoverbox img {
        position: absolute;
        top: 0;
        left: 0;
        width: 200px;
        height: 200px;
        z-index: -1;
        transition: var(--transition);
        filter: blur(1px) saturate(0);
        right: 0px;
        bottom: 0px;
        margin: auto;
    }

    .hoverbox h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1rem;
    }

    .hoverbox p {
        color: rgb(229 229 229);
        margin-bottom: 1.125rem;
        font-weight: 300;
        font-size: 14px;
    }

    .hoverbox a {
        position: relative;
        color: #fff;
        text-decoration: unset;
        text-transform: uppercase;
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        transition: color 0.35s;
    }

        .hoverbox a:after {
            content: ">";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            border: 2px solid #fff5;
            border-radius: 50%;
            width: 1.5rem;
            height: 1.5rem;
            transition: all 0.35s, color 0s;
            top: 1px;
            position: relative;
        }

        .hoverbox a:before {
            content: "";
            position: absolute;
            width: 0rem;
            height: 0.125rem;
            background: #fff;
            right: 0.75rem;
            top: calc(50% - 0.025rem);
            transition: 0.35s;
        }

    .hoverbox:hover {
        background: rgb(42 84 30 / 90%);
        box-shadow: 0px 16px 24px rgba(0, 15, 0, 0.1);
    }

        .hoverbox:hover:after {
            width: 100%;
            left: 0;
            right: auto;
        }

        .hoverbox:hover a:after {
            border-color: transparent;
            margin-left: 2rem;
            transition: all 0.35s, color 0s;
        }

        .hoverbox:hover a:before {
            width: 1.5rem;
            background: var(--clr-primary);
        }

        .hoverbox:hover a {
            color: var(--clr-primary);
        }

            .hoverbox:hover a:hover {
                color: var(--clr-primary-hover);
            }

                .hoverbox:hover a:hover:before {
                    background: var(--clr-primary-hover);
                }

        .hoverbox:hover img {
            transform: scale(1.2) rotate(-5deg);
            filter: blur(8px) saturate(0);
        }


.filter-wapper {
}

    .filter-wapper .form-inline {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #333;
    }

        .filter-wapper .form-inline .form-group {
            margin-right: 10px;
        }

.form-control {
    font-size: 14px;
}

.btn {
    font-size: 14px;
}

.page-link {
    color: #2f541b;
}

.page-item.active .page-link {
    background-color: #c2e4c3;
    border-color: #83c385;
    color: #000000;
}

.page-link:hover {
    color: #2f541b;
}

.downbtn a i {
    font-size: 30px;
    color: #869b00;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto;
    border: 0;
    height: 90vh;
    overflow: auto;
}

.sidebar {
    border: 1px solid #efefef;
    border-radius: 10px;
}



.tile {
    position: relative;
    vertical-align: top;
    display: inline-block;
    border-right: 1px solid rgb(255 255 255 / 50%);
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    box-sizing: border-box;
}

    .tile:after {
        content: "";
        background-color: #cc1c32;
        width: 6px;
        height: 6px;
        position: absolute;
        top: 100%;
        right: 0px;
        transform: translate(50%, -50%);
        z-index: 2;
        line-height: 1;
    }



.noGrid .tile {
    border-right: 0px solid rgba(0, 0, 0, 0.5);
    border-bottom: 0px solid rgba(0, 0, 0, 0.5);
}

    .noGrid .tile:after {
        content: none;
    }

.about-home {
    padding: 0px;
    padding-top: 2rem;
    margin-top: 0rem;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}

    .about-home li {
        text-align: left;
        list-style: none;
        background-color: #cbcbcb;
        border-radius: 15px;
        /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 40px -30px, rgb(0 0 0 / 12%) 0px 30px 60px -30px; */
        border: 2px solid #cbcbcb;
        position: relative;
        transition: all 0.2s linear;
        display: block;
        flex-basis: 32%;
        flex-grow: 1;
        overflow: hidden;
        padding-bottom: 30px;
    }

        .about-home li:hover {
            background-color: #f47419;
            border-radius: 15px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 40px -30px, rgb(0 0 0 / 12%) 0px 30px 60px -30px;
            border: 2px solid #f47419;
            transform: translateY(-15px);
        }


        .about-home li:nth-child(2) {
            background-color: #f47419;
            border-radius: 15px;
            border: 2px solid #f47419;
        }

.about-bgbox {
    background-color: rgb(255 255 255);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
}

.about-home li img {
    width: 65px;
    margin-bottom: 1rem;
    transition: all 0.5s linear;
}

.about-home li span {
    display: block;
    color: #f47419;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    margin-top: 0rem;
    padding-bottom: 0px;
}

.about-home li p {
    font-size: 14px;
    color: #242424;
    line-height: 22px;
    padding: 1rem 0rem;
}

.about-home li a {
    display: inline-flex;
    color: #1B2949;
    align-items: center;
    line-height: 30px;
    font-size: 14px;
    border-bottom: 1px solid #333;
    font-weight: 600;
}

.about-home li:hover a {
    color: #f47419;
    border-bottom: 1px solid #f47419;
}

.about-home li:hover img {
    transform: rotateY(360deg);
}

.about-home li a i {
    rotate: 315deg;
    font-size: 23px;
    position: relative;
    top: 1px;
}

a {
    transition: all 0.5s linear;
}





.card-products {
    transition: all 0.4s;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #ccc;
}



.card__img--hover {
    height: 310px;
    transition: all 0.4s;
    background-size: cover;
}

.card-products:hover .card__img--hover {
    transform: scale(1.1);
}

.card__info {
    position: absolute;
    top: 0px;
    height: 94%;
    background-color: hsl(0deg 0% 100% / 96%);
    width: 60%;
    border-radius: 10px 10px 10px 10px;
    padding: 2rem;
    margin: 10px;
}

    .card__info img {
        width: auto !important;
        height: 40px;
    }

.card__category {
    font-size: 13px;
    font-weight: 500;
    color: #565656;
    line-height: normal;
    display: block;
    margin: 10px 0px;
    text-transform: uppercase;
}

.card__title {
    margin: 12px 0px;
    font-size: 20px;
    font-weight: 700;
    border-bottom: 3px solid #e7e7e7;
    padding-bottom: 1rem;
}

.card__desc {
    font-size: 14px;
    color: #565656;
    line-height: normal;
    margin-bottom: 2rem;
    font-weight: 500;
}

.card__by {
    font-size: 14px;
    font-weight: 500;
}

.card__author {
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    background-color: transparent;
    border: 1px solid #333;
    color: #333;
    line-height: 22px;
}

    .card__author span {
        background-color: #292727;
        color: #fff;
        width: 30px;
        height: 30px;
        font-size: 25px;
    }

.counter-grid {
    margin-top: -27px;
    position: absolute;
    z-index: 3;
    padding: 0rem;
    width: 100%;
    /* background-color: #ffffff; */
    /* border-radius: 50px; */
    /* border: 1px solid #ccc; */
}

.innerpage-grid {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    background-color: #fafbfa;
}

.cmt-service-description {
    padding-right: 20px;
}

.cmt-service-single-content-area div:not(.featured-title) > h4:first-child {
    margin-top: 0rem;
}

.cmt-service-single-content-area div:not(.featured-title) > h4 {
    margin-top: 3rem;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #1c1618;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #999595;
    padding-bottom: 15px;
}

.cmt-service-single-content-area p {
    text-align: justify;
    color: #565656;
    font-size: 14px;
    line-height: 25px;
    /* font-weight: 500; */
}

.border-bottom-none {
    border-bottom: 0 !important;
    margin-bottom: 0rem !important;
}

.margin-bottom-none {
    margin-bottom: 0rem !important;
}

.flow-list {
    counter-reset: index;
}

    /* List element */
    .flow-list li {
        counter-increment: index;
        align-items: center;
        padding: 12px 7px;
        box-sizing: border-box;
        color: #333;
        font-size: 14px;
        line-height: 25px;
        font-weight: 500;
        text-align: justify;
        border-bottom: 1px solid #ccc;
    }

        .flow-list li:last-child {
            border-bottom: 0;
        }


        .flow-list li + li {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }


/* #topBox { 
  transition: 0.3s;
}
.fixed {
    position: fixed;
    top: 65px;
    width: 330px;
    z-index: 1000;
} */
.rightbar-btn {
    background: #e7e7e7;
    border: 1px solid #ccc;
    padding: 20px 20px;
    border-radius: 6px;
    margin: 25px 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

    .rightbar-btn .btn-primary {
        border-color: #ffffff;
        border-radius: 5px;
        padding: 10px 5px;
        padding-left: 44px;
        text-align: left;
        width: 100%;
        font-weight: 400;
        color: #000000;
        font-size: 14px;
        margin-bottom: 8px;
        background: url(../images/btn-arrow.png) no-repeat left rgb(255 255 255);
        background-position: 14px 14px;
    }

        .rightbar-btn .btn-primary:hover,
        .rightbar-btn .btn-primary:focus {
            color: #fff !important;
            background: url(../images/btn-arrow-w.png) #f36523 no-repeat left;
            border-color: #f36523 !important;
            background-position: 12px 14px;
        }

    .rightbar-btn .rightbar-active {
        background: url(../images/btn-arrow-w.png) #f36523 no-repeat left;
        border-color: #f36523 !important;
        background-position: 12px 14px;
        color: #fff !important;
    }





.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}






.dropdown-container {
    position: relative;
    display: inline-block;
}

.products-drop-button {
    border-radius: 30px;
    border: none;
    background-color: rgb(118 169 12 / 66%);
    padding: 0px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
    height: 16px;
    width: 16px;
    margin-right: 0px;
    margin-left: 4px;
    cursor: pointer;
    font-size: 11px;
    user-select: none;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .products-drop-button:focus,
    .products-drop-button:hover {
        background-color: #fff;
        color: #000;
    }

    .products-drop-button i {
        transition: 0.3s ease-in-out;
        position: relative;
        display: inline-block;
    }

.dropdown-product {
    position: absolute;
    top: calc(100% + 15px);
    left: -1rem;
    min-width: 320px;
    background: #fff;
    display: none;
    z-index: 999;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 24%);
}

    .dropdown-product:before {
        content: '';
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ffffff;
        border-left: 10px solid transparent;
        position: absolute;
        left: 17px;
        top: -9px;
    }

    .dropdown-product a {
        text-decoration: none;
        user-select: none;
        font-size: 12px;
        padding: 8px 15px;
        cursor: pointer;
        display: flex;
        width: 100%;
        color: #262626;
        font-weight: 500;
        transition: 0.2s;
        line-height: normal;
        border-bottom: 1px solid #e1dfdf;
        text-align: left;
    }

        .dropdown-product a i {
            margin-right: 8px;
            color: #74982f;
            font-size: 13px;
        }

    .dropdown-product > a:hover {
        color: #74982f;
    }

    .dropdown-product > a:last-child {
        border-bottom: none;
    }

.show2 {
    display: block;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 1.255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid #fff;
    border-right: .3em solid #ffffff00;
    border-bottom: 0;
    border-left: .3em solid #ffffff00;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 13px;
    padding: 5px 14px;
    line-height: normal;
}

.user-mobile-hide .dropdown-menu.show {
    display: block;
    transform: translate(-20px, 56px) !important;
}

.language-mobile-hide .dropdown-menu.show {
    display: block;
    transform: translate(-36px, 56px) !important;
}

.dropdown-menu:before {
    content: '';
    border-left: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
    border-right: 6px solid transparent;
    position: absolute;
    top: -6px;
    margin: auto;
    left: 40px;
}


/*--------------------------------------------------------------
# map bg
--------------------------------------------------------------*/
.map-bg {
    position: relative;
    display: block;
    background: url("../images/map-bg.jpg") no-repeat center center;
    background-size: cover;
    padding: 80px 0 80px;
    z-index: 1;
}



    .map-bg .section-title {
        position: relative;
        display: block;
        margin-top: 0px;
        margin-bottom: 18px;
        z-index: 3;
    }

        .map-bg .section-title p {
            color: #262626;
            font-size: 14px;
            line-height: normal;
            font-weight: 500;
            margin-bottom: 0px;
            text-align: right;
            padding-left: 25rem;
        }

    .map-bg .section-title__title {
        margin: 0;
        color: #000;
        font-size: 40px;
        line-height: normal;
        font-weight: 700;
        display: flex;
        align-items: center;
        border-bottom: none;
        justify-content: end;
    }


.downloads-grid {
    position: relative;
    display: block;
    padding: 80px 0 230px;
    /* z-index: 1; */
    background-color: #fafbfa;
}



.table-container table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    border: 1px solid rgb(102 131 81 / 20%);
}

.table-container tr td,
.table-container tr th {
    /* border: 0; */
    border-bottom: 1px solid #dce3d8;
    background: #ffffff;
    padding: 10px 25px;
    font-size: 14px;
    color: #000;
    line-height: 28px;
}

    .table-container tr td:first-child,
    .table-container tr th:first-child {
        text-align: center;
        font-weight: 600;
    }

/* .table-container tbody tr:nth-child(even) td {
    background: #eaf5ea;
} */
.table-container tr th {
    background-color: #993f00;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid #b96830;
}

.btn-button-bg {
    display: flex;
    font-size: 13px;
    align-items: center;
    font-weight: 500;
    padding: 5px 10px;
    text-decoration: none;
    position: relative;
    color: rgb(0 82 3);
    border: 1px solid rgb(76 175 80 / 34%);
    transition: all 0.1s linear;
    background-color: rgb(76 175 80 / 34%);
    border-radius: 4px;
    text-align: center;
    gap: 5px;
    line-height: normal;
    text-transform: uppercase;
    justify-content: center;
}

    .btn-button-bg:hover {
        color: rgb(0 82 3);
        border: 1px solid rgb(76 175 80 / 61%);
        background-color: rgb(76 175 80 / 61%);
    }

.clearall-btn a {
    display: flex;
    font-size: 13px;
    align-items: center;
    font-weight: 500;
    justify-content: center;
    padding: 5px 10px;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    height: 42px;
    color: #fff;
    border: 1px solid rgb(76 175 80 / 34%);
    transition: all 0.1s linear;
    background-color: #f26624;
    border-radius: 4px;
    text-align: center;
    gap: 5px;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
}

.table-container i {
    color: #00ad5b;
    font-size: 16px;
}

.btn-button-bg i {
    color: rgb(0 82 3);
    font-size: 14px;
}

.table-container .actions {
    display: flex;
}
.ticket_id_boxs label {
    font-size:12px;
}
.input-group > .form-control, .input-group > .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    font-size: 14px;
    color: #333;
    border: 1px solid #ced4da
}

#grievanceForm .btn-outline-primary {
    color: #fff;
    border-color: #00ad5b;
    background: #00ad5b;
}

.input-group > .form-control:focus,
.input-group > .form-select:focus {
    z-index: 3;
    box-shadow: none;
    outline: 0;
}

.form-control:focus,
.form-select:focus {
    color: #212529;
    background-color: #fff;
    border-color: #00ad5b;
    outline: 0;
    box-shadow: none;
}

.downloads-grid .searchField .input-group-text, .downloads-grid .sortField .input-group-text, .downloads-grid .perPageField .input-group-text {
    padding: 4px 10px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #993f00;
    text-align: center;
    white-space: nowrap;
    background-color: hsl(24.71deg 100% 30% / 20%);
    border: 1px solid #993f00;
}

.downloads-grid .searchField .input-group-text {
    font-size: 20px;
}

.page-item .page-link {
    border: 1px solid rgb(76 175 80 / 34%);
    line-height: normal;
    font-size: 14px;
    padding: 8px 10px;
}

    .page-item .page-link:focus,
    .page-item .page-link:hover {
        z-index: 3;
        color: rgb(0 82 3);
        background-color: rgb(76 175 80 / 34%);
        outline: 0;
        box-shadow: none;
    }

.clearall-btn {
}

    .clearall-btn button {
        display: flex;
        font-size: 13px;
        align-items: center;
        font-weight: 500;
        justify-content: center;
        padding: 5px 10px;
        white-space: nowrap;
        text-decoration: none;
        position: relative;
        height: 42px;
        color: rgb(0 82 3);
        border: 1px solid rgb(76 175 80 / 34%);
        transition: all 0.1s linear;
        background-color: rgb(76 175 80 / 34%);
        border-radius: 4px;
        text-align: center;
        gap: 5px;
        line-height: normal;
        text-transform: uppercase;
        width: 100%;
    }

        .clearall-btn button:hover {
            color: rgb(0 82 3);
            border: 1px solid rgb(76 175 80 / 61%);
            background-color: rgb(76 175 80 / 61%);
        }



.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1350px;
}

/*gallery*/

.photocard {
    margin: auto;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    margin-bottom: 1.5rem;
    transition: all 0.2s;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 9%);
}

    .photocard:hover {
        cursor: zoom-in;
        box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.5);
        transform: translate(-5px, -5px);
    }

.zoomable {
    position: relative;
    overflow: hidden;
}

.zoomable__img {
    transform-origin: var(--zoom-pos-x, 0%) var(--zoom-pos-y, 0%);
    transition: transform 0.15s linear;
}

.zoomable--zoomed .zoomable-inner .zoomable__img {
    cursor: zoom-in;
    transform: scale(var(--zoom, 2));
}

.zoomable .zoomable-inner {
    max-height: 300px;
    overflow: hidden;
}

.photocard img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}


.desc {
    padding: 1.5em 3em;
    min-height: 150px;
}

    .desc h1 {
        display: block;
        font-size: 16px;
        padding: 10px 0px;
        line-height: normal;
        text-align: center;
        padding-top: 0px;
        min-height: 50px;
    }

    .desc a {
        position: relative;
        display: block;
        vertical-align: middle;
        -webkit-appearance: none;
        outline: none !important;
        background-color: #00ad5b;
        color: var(--jetly-white);
        font-size: 14px;
        font-weight: 400;
        padding: 5px 40px 5px;
        border-radius: 5px;
        z-index: 1;
        text-transform: uppercase;
        transition: all 0.2s;
        text-align: center;
    }

        .desc a:hover {
            background-color: #333;
        }



.galleryitem {
    width: 100%;
    overflow: hidden;
    background: #000;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    position: relative;
}

    .galleryitem a {
        height: 300px;
        display: block;
        position: relative
    }

        .galleryitem a img {
            opacity: 0.6;
            width: 100%;
            height: 100%;
            transform: scale(1.15);
            transition: transform 0.5s, opacity 0.5s;
            object-fit: cover;
        }

            .galleryitem a img:hover {
                opacity: 1;
                transform: scale(1.03);
            }

        .galleryitem a .video-item {
            height: 100%;
            width: 100%;
        }

    .galleryitem .overlay {
        width: 40px;
        height: 40px;
        background: hsl(151.56deg 100% 33.92% / 76%);
        position: absolute;
        right: 0px;
        bottom: 0px;
        transition: 0.5s ease;
    }

        .galleryitem .overlay i {
            position: absolute;
            bottom: 0px;
            right: 0px;
            left: 0px;
            top: 0px;
            width: 100%;
            transition: 0.5s ease;
            color: #fff;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .galleryitem:hover .overlay {
        width: 100%;
        height: 100%;
        transition: 0.5s ease;
    }

        .galleryitem:hover .overlay i {
            bottom: 45%;
            right: 45%;
            bottom: 0px;
            font-size: 30px;
        }

/*gallery end*/





.calculator {
    border: 1px solid #e5e0e0;
    padding: 2rem;
    border-radius: 5px;
    background-color: #f3f4f6;
}

    .calculator .field {
        margin-bottom: 20px;
    }

        .calculator .field .form-check {
            display: inline-block;
            margin: 0px;
            width: 100%;
        }

.checkinput-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 0px 10px;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    float: right;
    overflow: hidden;
    height: 35px;
    position: relative;
    background-color: #fff;
    width: 150px;
}

    .checkinput-box > span {
        color: #0f6cb2;
        background-color: #e3f1fa;
        display: inline-block;
        width: 35px;
        height: 35px;
        text-align: center;
        position: absolute;
        top: 0px;
        right: 0px;
        padding: 3px;
        font-size: 14px;
    }

.calculator input[type="range"] {
    width: 100%;
}

.calculator .field .form-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 5px;
    margin-right: 10px;
}

.calculator label {
    display: inline-block;
    font-weight: 500;
    margin-bottom: 0px;
    color: #333;
}

.calculator .form-check-label {
}

.calculator .input-box {
    display: inline-block;
    align-items: center;
    border: 1px solid #ccc;
    padding: 0px 0px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    float: right;
    overflow: hidden;
    height: 35px;
    position: relative;
}

    .calculator .input-box input {
        border: 0;
        padding: 0px 10px;
        padding-right: 35px;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        height: 35px;
        background-color: #fff;
    }

        .calculator .input-box input:focus {
            border: 0;
            outline: none;
        }

    .calculator .input-box span {
        color: #0f6cb2;
        background-color: #e3f1fa;
        display: inline-block;
        width: 35px;
        height: 35px;
        text-align: center;
        position: absolute;
        top: 0px;
        right: 0px;
        padding: 3px;
    }

.result-box-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-box {
    background: #0f6cb2;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 33%;
}

    .result-box h3 {
        font-size: 14px;
        color: #fff;
        font-weight: 300;
    }

    .result-box h2 {
        margin-top: 8px;
        font-size: 28px;
        color: #fff;
    }

.note {
    text-align: center;
    margin-top: 20px;
    color: #555;
}

/*--------------------------------------------------------------
# Organisation-Structure
--------------------------------------------------------------*/
.organisation-structure-grid {
    position: relative;
    display: block;
    padding: 150px 0 40px;
    background-color: #fafbfa;
}

.card-structure {
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #f1efef;
    background-color: #fff;
    box-shadow: 0px 10px 20px rgb(204 204 204 / 35%);
    margin-top: 2.5rem;
    margin-bottom: 4.5rem;
}

    .card-structure .image {
        background-color: #ccc;
        width: 130px;
        height: 130px;
        display: block;
        margin: auto;
        margin-bottom: 1rem;
        border-radius: 100px;
        position: relative;
        margin-top: -80px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #c7c9c7;
    }

        .card-structure .image img {
            width: 100%;
            height: 130px;
            object-fit: cover;
        }


    .card-structure:hover .image {
        box-shadow: 0px 15px 25px rgb(204 204 204 / 55%);
        transform: translateY(-5px);
    }

    .card-structure .content {
        background-color: hsl(122.42deg 39.44% 49.22% / 15%);
        padding: 1rem;
        border-radius: 5px;
        min-height: 195px;
    }

        .card-structure .content .title {
            font-size: 18px;
            text-align: center;
            margin-bottom: 0rem;
            font-weight: 600;
            height: 55px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #024e2a;
        }

        .card-structure .content .designation {
            text-align: center;
            margin-top: 8px;
            font-size: 14px;
            line-height: 18px;
            color: #1f764d;
            font-weight: 500;
        }

            .card-structure .content .designation span {
                font-weight: 600;
                display: block;
            }

.structure-grid {
    background-color: #f3f2f2;
    padding-top: 6rem;
    padding-bottom: 0rem;
}

    .structure-grid .content {
        min-height: auto;
        padding: 1rem;
    }

    .structure-grid .card-structure {
        margin-bottom: 8rem;
    }

    .structure-grid .content .title {
        align-items: end;
        height: auto;
    }


.table-grid {
    position: relative;
    display: block;
    padding: 80px 0 80px;
    background-color: #fafbfa;
}

    .table-grid h3 {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        background-color: #04365a;
        padding: 12px;
        border-radius: 5px 5px 0px 0px;
        text-transform: uppercase;
    }

    .table-grid tbody td p strong {
        font-weight: 700;
        font-size: 16px;
    }









.grievance-container {
}

    .grievance-container h2.section-title__title {
        margin-bottom: 1rem;
        color: #000000;
        font-size: 24px;
        line-height: 50px;
        font-weight: 600;
        /* border-bottom: 1px solid #ccc; */
    }

    .grievance-container .info-box {
        background: transparent;
        border: 2px solid #e5e5e5;
        border-radius: 6px;
        padding: 40px 35px 20px;
        position: relative;
        margin-bottom: 45px;
    }

    .grievance-container .badge-label {
        position: absolute;
        top: -16px;
        left: 20px;
        background: #00ad5b;
        padding: 4px 12px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 3px;
        /* border: 1px solid #c7ddff; */
        color: #fff;
        font-weight: 500;
    }


        .grievance-container .badge-label::before {
            content: "";
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid #ffffff;
        }


        .grievance-container .badge-label::after {
            content: "";
            position: absolute;
            left: -8px;
            top: 3px;
            /* transform: translateY(-50%); */
            width: 0;
            height: 0;
            border-top: 9px solid transparent;
            border-bottom: 9px solid transparent;
            border-right: 9px solid #006a37;
            transform: rotate(-135deg);
        }

    .grievance-container .contact-item {
        display: block;
        align-items: center;
        gap: 10px;
        padding: 15px 0 14px;
        color: #1a1a1a;
    }

    .grievance-container .info-box p {
        font-size: 14px;
        color: #333;
        text-align: left;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 10px;
    }

    .grievance-container .info-box small {
        line-height: normal;
        font-size: 12px;
    }

    .grievance-container .info-box p strong {
        font-weight: 600;
    }

    .grievance-container .contact-item a {
        color: #1a1a1a;
    }

        .grievance-container .contact-item a:hover,
        .info-box .contact-item a:hover {
            color: #f36523 !important;
        }

    .grievance-container .contact-item i {
        color: #464646;
        font-size: 18px;
    }

a {
    text-decoration: none;
}

.grievance-container .click-link {
    color: #ff7a00;
    font-weight: 600;
}


/* form */

/* radio button */
.radio-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    margin-right: 20px;
}


    .radio-container input {
        display: none;
    }


.custom-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #008647;
    border-radius: 50%;
    position: relative;
}


.radio-container input:checked + .custom-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #008647;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* radio button */

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    line-height: 1.5;
}

    /* Hide default checkbox */
    .custom-checkbox input {
        display: none;
    }

/* Custom box */
.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #16a34a;
    /* green */
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tick */
.custom-checkbox input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #16a34a;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Hover effect */
.custom-checkbox:hover .checkmark {
    background-color: #f0fdf4;
}


.form-select {
    font-size: 14px;
    color: #6c757d;
}

.form-wrapper {
    /* max-width: 760px;
    margin: 40px auto; */
    position: relative;
    display: block;
    background-color: rgb(255 255 255);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 30px 30px;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border: 1px solid #e7e7e7;
    padding: 30px 35px 15px;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
}

    .form-wrapper .form-control {
    }

    .form-wrapper label {
        margin-bottom: .3rem;
    }

.role-card {
    border: 1.5px solid #cfd4da;
    border-radius: 6px;
    padding: 10px 10px;
    line-height: normal;
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

    .role-card.active {
        border-color: #008647;
        background-color: hsl(122.42deg 39.44% 49.22% / 15%);
    }

    .role-card i {
        font-size: 28px;
        color: #008647;
    }

.form-control, .form-select {
    height: 40px;
    padding: 6px 10px;
}

textarea.form-control {
    height: 120px;
}

.error {
    border: 1.5px solid red !important;
}

.error-text {
    font-size: 12px;
    color: red;
}

.upload-box {
    border: 2px dashed #008647;
    border-radius: 8px;
    padding: 26px 0 35px;
    text-align: center;
    cursor: pointer;
}

.submit-btn {
    display: inline;
    background: rgb(0, 173, 91);
    color: rgb(255, 255, 255);
    height: 50px;
    font-weight: 600;
    border-radius: 7px;
}


    .submit-btn:focus {
        box-shadow: none;
    }

    .submit-btn:hover {
        background: rgb(3 131 70);
        color: rgb(255, 255, 255);
    }



.recipient-only {
    display: none;
}

/* form */


.achi-impact-content {
    margin-bottom: 1rem;
}


    .achi-impact-content .achi-impact-list {
        padding: 0px;
    }

        .achi-impact-content .achi-impact-list li {
            margin-bottom: 15px;
            color: #333;
            font-size: 14px;
            line-height: normal;
            padding: 20px;
            border-radius: 5px;
            list-style: none;
            border: 1px solid #dfdfdf;
            background-color: #fff;
        }

            .achi-impact-content .achi-impact-list li span {
                color: #f36523;
                margin-bottom: 10px;
                border-radius: 3px;
                font-weight: 600;
            }




.impact-ticker {
    overflow: auto;
    position: relative;
    border: none;
    height: 442px;
    padding: 0px;
    margin: 0px;
}

    .impact-ticker li {
        display: flex;
        font-size: 13px;
        border-bottom: 1px solid #d7d7d7;
        padding: 10px 0px;
        align-items: start;
        line-height: normal;
    }

        .impact-ticker li aside {
            /* float: left; */
            padding: 5px;
            width: 30%;
            height: 100px;
            border-radius: 3px;
            text-align: center;
            margin-right: 12px;
            line-height: normal;
            background: #323232;
        }

            .impact-ticker li aside img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .impact-ticker li article {
            width: 70%;
        }

            .impact-ticker li article a {
                color: #333;
                line-height: normal;
                display: block;
            }

            .impact-ticker li article span {
                font-size: 11px;
                color: #505050;
            }

                .impact-ticker li article span img {
                    width: 23px;
                    padding: 5px;
                }

.impact-title {
    text-transform: math-auto !important;
}





.details-card {
    border: 0;
    border-radius: 0px;
    background-color: transparent;
    margin-top: 2rem;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.main-description .p-category {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    background-color: #00ad5b;
    padding: 5px 20px;
    border-radius: 5px;
    display: inline-block;
    line-height: normal;
}

.main-description .p-description {
    position: relative;
    display: block;
    background: transparent;
    padding: 0px 0px 0px;
    font-size: 14px;
    text-align: justify;
    color: #333;
    clear: both;
}

.details-card .details-img {
    width: 100%;
    border-radius: 10px;
}




















.vertical-tree {
    padding-top: 10px;
    padding-bottom: 10px;
}

    .vertical-tree ul {
        padding-left: 23px;
    }

    .vertical-tree li {
        margin: 0px 0;
        list-style-type: none;
        position: relative;
        padding: 10px 5px 0px 4px;
    }

.vertical-tree-span {
    font-weight: 700;
    color: #91abc5;
    text-align: center;
    font-size: 32px;
    position: absolute;
    top: 3px;
    left: -43px;
}

.vertical-tree li::before {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    right: auto;
    left: -20px;
    border-left: 1px solid #ffbc9d;
    bottom: 50px;
}

.vertical-tree li::after {
    content: '';
    position: absolute;
    top: 26px;
    width: 24px;
    height: 20px;
    right: auto;
    left: -20px;
    border-top: 1px solid #ffbc9d;
}

.vertical-tree li a {
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    background-color: hsl(35.76deg 100% 95.2%);
    color: #000000;
    border: 1px solid #ffbc9d;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    display: block;
    line-height: normal;
}

.vertical-tree > ul > li::before,
.vertical-tree > ul > li::after {
    border: 0;
}

.vertical-tree li:last-child::before {
    height: 27px;
}

.vertical-tree li a:hover,
.vertical-tree li a:hover + ul li a {
    background-color: #fc872b;
    color: #ffffff;
    border: 1px solid #fc872b;
}

    .vertical-tree li a:hover + ul li::after,
    .vertical-tree li a:hover + ul li::before,
    .vertical-tree li a:hover + ul::before,
    .vertical-tree li a:hover + ul ul::before {
        border-color: #CCC;
    }











.announcements {
    position: relative;
    border: none;
    padding: 0px;
    margin: 0px;
}

    .announcements li {
        display: flex;
        font-size: 14px;
        border-bottom: 1px solid #d7d7d7;
        padding: 20px 0px;
        line-height: normal;
    }

        .announcements li:last-child {
            border-bottom: none;
        }


        .announcements li aside {
            /* float: left; */
            padding: 6px;
            width: 60px;
            height: 60px;
            border-radius: 3px;
            text-align: center;
            margin-right: 22px;
            line-height: normal;
            background: #323232;
        }

            .announcements li aside h2 {
                color: #fff;
                font-weight: 600;
                margin: 0px;
                font-size: 20px;
            }

            .announcements li aside span {
                color: #fff;
                text-transform: uppercase;
                font-size: 14px;
            }

        .announcements li article {
            width: 100%;
        }

            .announcements li article a {
                color: #333;
                line-height: normal;
                display: block;
                margin-bottom: 1rem;
            }

            .announcements li article span {
                font-size: 11px;
                color: #505050;
            }

                .announcements li article span img {
                    width: 23px;
                    padding: 5px;
                }

.apply-modal .modal-content {
    padding: 1rem;
}

.apply-modal .modal-body p {
    text-align: center;
    line-height: normal;
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

.apply-modal .modal-footer {
    justify-content: center;
    padding-top: 0px;
    border-top: 0px;
}

.apply-modal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.apply-modal .modal-body h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    margin-bottom: 15px;
    background-color: rgb(0, 173, 91);
    text-align: center;
    height: 100px;
    width: 100px;
    border-radius: 100px;
    font-size: 60px;
    position: relative;
    margin: auto;
    margin-bottom: 1rem;
    margin-top: -5rem;
}

.apply-modal .modal-body h5 {
    color: rgb(0, 173, 91);
    margin-bottom: 15px;
    text-align: center;
    font-size: 40px;
    margin-bottom: 1rem;
    font-weight: 300;
}

.apply-rightbar-btn {
    background: #e7e7e7;
    border: 1px solid #ccc;
    padding: 20px 20px;
    border-radius: 6px;
    margin: 0px 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

    .apply-rightbar-btn h3 {
        font-size: 24px;
        font-weight: 600;
        color: #000000;
        margin-bottom: 15px;
    }

    .apply-rightbar-btn .btn-primary {
        border-color: #ffffff;
        border-radius: 5px;
        padding: 10px 5px;
        padding-left: 24px;
        text-align: left;
        width: 100%;
        font-weight: 400;
        color: #000000;
        font-size: 14px;
        margin-bottom: 8px;
        background: url(../images/btn-arrow-right.png) no-repeat rgb(255 255 255);
        background-position: 340px 15px;
    }

        .apply-rightbar-btn .btn-primary:hover,
        .apply-rightbar-btn .btn-primary:focus {
            color: #fff !important;
            background: url(../images/btn-arrow-right.png) no-repeat #f36523;
            background-position: 340px 15px;
            border-color: #f36523 !important;
        }

.apply-wrapper {
    padding-right: 2rem;
}



.sideNavi {
    position: fixed;
    right: -10px;
    top: 210px;
    z-index: 99;
    transition: all 0.3s linear;
}

    .sideNavi:hover {
        right: 0px;
    }

.sideNavi-feedback {
    margin-top: 9rem;
}

.side-navi-item {
    position: absolute;
    display: inline-block;
    width: 140px;
    height: 48px;
    text-align: center;
    transform: rotate(90deg);
    transform-origin: left top 0;
    background-color: #00ad5b;
    cursor: pointer;
    border-radius: 0px 0px 8px 8px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
    padding: 14px 12px;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-animation-direction: normal;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: blink;
    -webkit-animation-timing-function: linear;
    -moz-animation-direction: normal;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: blink;
    -moz-animation-timing-function: linear;
    animation-direction: normal;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: blink;
    animation-timing-function: linear;
}


@-webkit-keyframes blink {
    50% {
        background-color: #f26624;
    }
}

@-moz-keyframes blink {
    50% {
        background-color: #00ad5b;
    }
}

@keyframes blink {
    50% {
        background-color: #f26624;
    }
}









.side-navi-item a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
}


.sideNavi2 {
    z-index: 99;
    transition: all 0.3s linear;
    position: relative;
    left: -10px;
}

    .sideNavi2:hover {
        left: -5px;
    }

.side-navi-item2 {
    position: absolute;
    display: inline-block;
    width: 216px;
    height: 48px;
    text-align: center;
    transform: rotate(-90deg);
    transform-origin: left top 0;
    background-color: #f26624;
    cursor: pointer;
    animation: blinkingText 2s infinite;
    border-radius: 0px 0px 8px 8px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
    padding: 12px 12px;
    color: #ffffff;
    text-transform: uppercase;
}

.side-navi-item3 {
    width: 150px;
}

.side-navi-item2 a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.download-box {
    margin-top: 190px;
    z-index: -1;
}

.enquiry-wrapper {
    position: relative;
    display: block;
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
}

hr {
    background-color: rgb(169 169 169);
}


/* Loader Background */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    #page-loader > img {
        position: absolute;
        height: 56px;
    }

/* Spinner */
.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #ddd;
    border-top: 2px solid #f47419;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}




/* grievance */

.grievance-redressal-show-page {
    position: relative;
    display: block;
    padding: 80px 0 90px;
    background-color: #fafbfa;
}

.ticket_id_box {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e1e0e0;
    padding-bottom: 1rem;
}

    .ticket_id_box label {
        font-size: 16px;
        color: #000;
    }

.grievance-redressal-show-page .grievance-container .info-box .contact-item p {
    font-size: 16px;
}

    .grievance-redressal-show-page .grievance-container .info-box .contact-item p strong {
        color: #7a7a7a;
    }

    .grievance-redressal-show-page .grievance-container .info-box .contact-item p a,
    .grievance-redressal-show-page .grievance-container .info-box .contact-item p a i {
        color: #f26624;
    }

.grievance-grid {
    margin: 0px;
    padding: 0px;
    border-radius: 5px;
}

    .grievance-grid li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #ebe9e9;
        background-color: #ffffff;
        padding: 20px;
        margin-bottom: 1rem;
        border-radius: 5px;
        position: relative;
        margin-left: 5rem;
    }

        .grievance-grid li::after {
            content: "\f00c";
            font: normal normal normal 28px / 1 FontAwesome;
            position: absolute;
            z-index: 1;
            color: #ffffff;
            left: -74px;
            top: 0px;
            background-color: #00ad5b;
            width: 50px;
            height: 50px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .grievance-grid li::before {
            content: "";
            position: absolute;
            z-index: 1;
            color: #ffffff;
            left: -50px;
            top: 0px;
            background-color: #a7a7a7;
            width: 1px;
            height: 113%;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .grievance-grid li:last-child::before {
            height: 0%;
        }

.level-left {
    width: 70%;
}

    .level-left small {
        font-size: 14px;
        background-color: #e9e9e9;
        padding: 3px 10px;
        border-radius: 3px;
        display: inline-block;
        line-height: normal;
        color: #004826;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .level-left h3 {
        font-size: 16px;
        margin: 6px 0px;
        color: #626262;
    }

        .level-left h3 span {
            font-size: 22px;
            color: #000;
        }

    .level-left p {
        font-size: 14px;
        margin-bottom: 5px;
        color: #333;
    }

    .level-left a {
        color: #f26624;
        padding: 10px 0px;
        display: inline-block;
    }

.status-right {
    text-align: center;
}

    .status-right small {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .status-right h3 {
        margin: 10px 0px;
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 5px;
        color: #ffffff;
    }

    .status-right p {
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }

.blockquote {
    font-size: 16px;
}

.profile-data {
    background-color: #e9e9e9;
    padding: 2rem;
    border-radius: 5px;
    position: relative;
}

    .profile-data aside {
        background-color: hsl(0deg 0% 100% / 46%);
        padding: 15px;
        width: 80px;
        height: 80px;
        border-radius: 100px;
        position: absolute;
        right: 10px;
        top: 10px;
        border: 1px solid #ccc;
    }

        .profile-data aside img {
            width: 100%;
        }

    .profile-data h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .profile-data p {
        font-size: 18px;
        font-weight: 500;
        color: #333;
    }

.profile-right-data {
    margin-top: -4rem;
}

    .profile-right-data .usr-photo {
        width: 100%;
        background-color: #e9e9e9;
        padding: 3rem;
        border-radius: 5px;
    }

        .profile-right-data .usr-photo img {
            width: 80%;
            margin: auto;
            display: block;
        }

.profile-information {
    padding: 0;
    margin: 0;
    background-color: #00ad5b;
    padding: 1rem;
}

    .profile-information li {
        font-size: 14px;
        padding: 0;
        margin: 0;
        line-height: normal;
        list-style: none;
        color: #fff;
        margin-bottom: 10px;
        font-weight: 500;
    }

        .profile-information li:first-child {
            font-size: 20px;
        }

        .profile-information li span {
            color: #ffffff;
            font-weight: 400;
            margin-right: 5px;
            display: inline-block;
        }

.profile-information-info {
    margin: 0px;
    padding: 1rem 1rem;
    background-color: #edecec;
    margin-top: 18px;
    border-radius: 5px;
    list-style: none;
}

    .profile-information-info h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .profile-information-info li {
        font-size: 14px;
        color: #000;
        line-height: normal;
        margin-bottom: 10px;
    }

        .profile-information-info li a {
            font-size: 12px;
            color: #000;
            line-height: normal;
            margin-bottom: 14px;
        }

            .profile-information-info li a i {
                color: #838383;
                font-size: 14px;
                margin-right: 5px;
            }

            .profile-information-info li a:hover {
                color: #f36523;
            }

    .profile-information-info ul {
        padding: 0px;
        padding-left: 33px;
    }


.otp-fild-grid .modal-body {
    padding: 1.5rem;
}

.otp-fild h6 {
    font-size: 18px;
    margin-bottom: 10px;
}

.otp-fild p {
    font-size: 14px;
}

.otp-fild .otp-icon {
    height: 100px;
    margin-bottom: 1rem;
}

.otp-fild .inputs input {
    width: 40px;
    height: 40px;
}

.otp-fild input[type="number"]::-webkit-inner-spin-button,
.otp-fild input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.otp-fild .card-2 {
    background-color: #fff;
    padding: 10px;
    width: 350px;
    height: 100px;
    bottom: -50px;
    left: 20px;
    position: absolute;
    border-radius: 5px;
}

    .otp-fild .card-2 .content {
        margin-top: 50px;
    }

        .otp-fild .card-2 .content a {
            color: red;
        }

.otp-fild .form-control:focus {
    box-shadow: none;
    border: 2px solid red;
}

.otp-fild .validate {
    border-radius: 20px;
    height: 40px;
    background-color: green;
    border: 1px solid red;
    width: 140px;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: url(../images/close.svg) no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}

.offcanvas-header .btn-close {
    padding: 1px;
    margin: 3px;
    background-size: 16px;
}

.main-slider-two__counter {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(180px);
    transform: translateY(180px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

    .main-slider-two__counter li {
        gap: 1px;
        flex-basis: 40%;
        flex-grow: 1;
        display: flex;
        color: rgb(255 255 255 / 82%);
        font-size: 14px;
        font-weight: 300;
        align-items: center;
        position: relative;
    }

        .main-slider-two__counter li::after {
            content: "\f00c";
            font: normal normal normal 14px / 1 FontAwesome;
            width: 22px;
            height: 22px;
            position: absolute;
            left: -30px;
            background: linear-gradient(314deg, rgb(58 58 58) 5%, #7c7c7c 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2px;
            font-size: 10px;
            border-radius: 100px;
            text-align: center;
        }

        .main-slider-two__counter li .counter {
            display: inline-block;
            color: #fff;
            line-height: normal;
            font-size: 14px;
            font-weight: 400;
        }

.join-grid-area {
    background: #ffffff url(../images/home-pin.png) no-repeat right 10px top 10px;
    padding: 4rem 5rem;
    border-radius: 15px;
    box-shadow: 0px 22px 0px #EAEAEA;
    border: 3px solid #eaeaea;
    position: absolute;
    top: -10rem;
    width: 100%;
    z-index: 9;
    background-size: 13%;
}

    .join-grid-area h1 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 2.5rem;
        padding-right: 23rem;
    }

    .join-grid-area ul {
        display: flex;
        padding: 0px;
        gap: 10px;
    }

        .join-grid-area ul li {
            list-style: none;
        }

.helpline-btn {
    background-color: transparent;
    color: #000000;
    padding: 17px 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #000;
    border-radius: 100px;
    display: inline-block;
    line-height: normal;
    margin-left: 7rem;
}

    .helpline-btn:hover {
        background-color: transparent;
        color: #000000;
        border: 1px solid #000;
    }

    .helpline-btn b {
        font-size: 13px;
        font-weight: 500;
        display: block;
        position: relative;
        margin-top: -23px;
        background-color: #fff;
        padding-bottom: 6px;
        width: 150px;
        text-align: center;
        margin-left: 1rem;
    }

    .helpline-btn span {
        display: block;
        font-size: 20px;
        height: 17px;
        font-weight: 700;
    }


.contact-page-sec {
    padding: 80px 0 100px;
    padding-bottom: 4rem;
}

.contact-info {
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}

.contact-info-icon {
    margin-bottom: 2rem;
}

.contact-info-item {
    background: #fbf0e8;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.contact-page-sec .contact-page-form h2 {
    color: #071c34;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
}

.contact-page-form.contact-form input {
    margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
    height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
    background: #071c34;
    width: 150px;
    border-color: #071c34;
}

.contact-info-icon i {
    font-size: 48px;
    color: #f47419;
}

.contact-info-text p {
    margin-bottom: 0px;
}

.contact-info-text h2 {
    color: #343434;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-text span {
    color: #343434;
    font-size: 15px;
    display: inline-block;
    width: 100%;
    line-height: normal;
    margin-bottom: 10px;
}

    .contact-info-text span:last-child {
        margin-bottom: 0px;
    }

.contact-page-form input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}

.single-input-field textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}

.single-input-fieldsbtn {
    margin-top: 2rem;
}

    .single-input-fieldsbtn .main-slider__btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .single-input-fieldsbtn input[type="submit"] {
        background: #fda40b none repeat scroll 0 0;
        color: #fff;
        display: inline-block;
        font-weight: 600;
        padding: 10px 0;
        text-transform: capitalize;
        width: 150px;
        margin-top: 20px;
        font-size: 16px;
    }

        .single-input-fieldsbtn input[type="submit"]:hover {
            background: #071c34;
            transition: all 0.4s ease-in-out 0s;
            border-color: #071c34;
        }

.single-input-field h4 {
    color: #464646;
    text-transform: capitalize;
    font-size: 14px;
}

.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.contact-page-map {
    margin-top: 36px;
}

.contact-page-form form {
    padding: 20px 15px 0;
}


.inner-page-sec {
    position: relative;
    display: block;
    padding: 90px 0 260px;
    z-index: 1;
    background: #ffffff;
}

    .inner-page-sec .inner-main-info p {
        font-size: 14px;
        line-height: 26px;
        text-align: justify;
        color: #333;
        margin-bottom: 1rem;
    }

    .inner-page-sec .inner-main-info h3 {
        font-size: 18px;
        font-weight: 700;
        line-height: 30px;
        color: #bf3d00;
        margin-bottom: 5px;
    }

.accessibility-featuresbutton {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 30px;
    background-color: var(--bs-gray);
    border: 0;
    color: white;
    gap: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

    .accessibility-featuresbutton .text {
        font-size: 16px;
        font-weight: 500;
    }

    .accessibility-featuresbutton .svg {
        padding-top: 0px;
        height: 100%;
        width: fit-content;
    }

        .accessibility-featuresbutton .svg svg {
            width: 40px;
            height: 20px;
        }

    .accessibility-featuresbutton:hover {
        border: 0;
        background-color: var(--bs-dark);
    }

    .accessibility-featuresbutton:active {
        border: 0;
    }

    .accessibility-featuresbutton:hover .svg svg {
        animation: jello-vertical 0.9s both;
        transform-origin: left;
    }

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}






.faq-image {
    padding-left: 0rem;
}

.faq-bg {
    position: relative;
    display: block;
    padding: 100px 0 80px;
    z-index: 1;
}

.faq-title {
    margin-bottom: 25px;
    color: #282828;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    display: block;
    text-align: center;
}

.faq-number {
    color: #898989;
    width: 34px;
    padding: 8px 0px;
}

    .faq-number img {
        width: 100%;
    }

.accordion {
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background-color: #f5f5f5;
}

    .accordion > h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0rem;
        position: absolute;
        top: -10px;
        background-color: #f47419;
        color: #fff;
        padding: 8px 20px;
        border-radius: 0px 0px 5px 5px;
        left: 30px;
    }

        .accordion > h2::before {
            content: '';
            border-left: 10px solid transparent;
            border-bottom: 10px solid #ad4800;
            border-right: 10px solid transparent;
            position: absolute;
            top: 0px;
            margin: auto;
            right: -10px;
            width: 12px;
            z-index: -1;
        }

        .accordion > h2::after {
            content: '';
            border-left: 10px solid transparent;
            border-bottom: 10px solid #ad4800;
            border-right: 10px solid transparent;
            position: absolute;
            top: 0px;
            margin: auto;
            left: -10px;
            width: 12px;
            z-index: -1;
        }

.accordion-item {
    margin-bottom: 0px;
    background-color: transparent;
    border: 0;
    padding: 15px 0px;
    border-bottom: 1px solid #e1e1e1;
}

.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button {
    font-weight: 700;
    font-size: 18px;
    background-color: transparent;
    padding-right: 2rem;
}

    .accordion-button:focus {
        box-shadow: none;
    }

.accordion-body {
    font-size: 15px;
    padding-top: 0px;
    line-height: 22px;
    color: #585858;
    text-align: justify;
    font-weight: 500;
}

.accordion-item:last-of-type {
    border-bottom: 0px;
}



.accordion-button::after {
    background-image: url(../images/plus.png);
    opacity: 0.5;
    position: absolute;
    right: 0px;
    top: 16px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/cancel.png);
    opacity: 9;
}




:root {
    --orange: #E8531A;
    --orange-hover: #cf4612;
    --orange-light: #fff4ef;
    --dark: #1a1f2e;
    --muted: #6b7280;
    --bg: #f3f4f8;
    --card-bg: #ffffff;
    --radius: 18px;
}


.support-section-wrap {
    background-color: #F7F9FC;
    position: relative;
    display: block;
    padding: 80px 0 100px;
    z-index: 1;
    padding-bottom: 270px;
}

.support-section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.support-section-subtitle {
    font-size: 1rem;
    color: #303030;
    max-width: 920px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* Cards */
.help-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px 22px 26px;
    border: 1.5px solid transparent;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .help-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(232, 83, 26, 0.14);
        border-color: var(--orange);
    }

/* Icon circle */
.icon-wrap {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: background 0.28s ease, transform 0.28s ease;
    flex-shrink: 0;
}

    .icon-wrap img {
        width: 100%;
    }

.help-card:hover .icon-wrap {
    transform: scale(1.08) rotate(-4deg);
}


.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.card-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* CTA Button */
.btn-orange {
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    border-radius: 50px;
    padding: 5px 28px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

    .btn-orange:hover {
        background: var(--orange-hover);
        color: #fff;
        transform: scale(1.04);
        box-shadow: 0 6px 20px rgba(232, 83, 26, 0.4);
    }




.section-label {
    font-size: 20px !important;
    font-weight: 800;
    color: #000000;
    position: relative;
    background-color: #ebebeb;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    line-height: normal !important;
    border: 1px solid #ccc;
    margin: 1rem 0rem;
}

.obj-list {
    list-style: none;
    flex-direction: row;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.obj-item {
    display: flex;
    align-items: flex-start;
    background: #ff6f00;
    border: 0;
    border-radius: 10px;
    /* align-items: center; */
    padding: 2rem;
    gap: 20px;
    /* background: #C9FFBF; */
    background: -webkit-linear-gradient(to right, #fde9c4, #ffe2e7);
    /* background: linear-gradient(to right, #ffc10754, #ff572263); */
    transition: all 0.4s;
    flex-basis: 48%;
    flex-grow: 1;
}

    .obj-item:hover {
        transform: scale(1.03);
        box-shadow: 0px 0px 20px #ccc;
    }

        .obj-item:hover .obj-icon-wrap {
            transform: scale(1.2);
        }

.obj-body {
    flex: 1;
}

.obj-title {
    font-size: 20px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
    line-height: normal;
}

.obj-desc {
    font-size: 16px;
    color: rgb(255 255 255);
    line-height: 1.65;
}

.obj-icon-wrap {
    font-family: "Oswald", sans-serif;
    width: 45px;
    height: 45px;
    border-radius: 35px;
    display: flex;
    padding: 1px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 50px;
    /* background: rgb(243 101 35 / 32%); */
    font-weight: 700;
    color: rgb(255 255 255 / 61%);
    transition: all 0.4s;
}

.oslist {
    margin-left: 1rem !important;
}

    .oslist li ul {
        margin-left: 1rem;
    }

    .oslist li span {
        font-weight: 700;
    }

.vandm {
    position: relative;
    background-color: #0f6ec7;
    padding: 2rem;
    padding-top: 7.5rem;
    margin-top: 5rem;
    border-radius: 15px;
}

    .vandm img {
        position: absolute;
        top: -95px;
        right: 0px;
        left: 0px;
        margin: auto;
        animation: float 4s ease-in-out infinite;
    }

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.vandm h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
}

.vandm p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0rem;
    color: rgb(255 255 255 / 91%);
}

.stats-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 18px;
}

.bg-blue {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.bg-green {
    background: linear-gradient(135deg, #16a34a, #166534);
}

.bg-orange {
    background: linear-gradient(135deg, #f97316, #c2410c);
}

.bg-purple {
    background: linear-gradient(135deg, #9333ea, #6b21a8);
}


.feature-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 14%);
    transition: 0.3s ease;
    border: 1px solid #ffffff;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

.feature-padding1 {
    left: 30%;
}

.feature-padding2 {
    left: 5%;
}

.feature-padding3 {
    left: -6%;
}

.feature-padding4 {
    left: 5%;
}

.feature-padding5 {
    left: 30%;
}

.feature-padding6 {
    right: 30%;
}

.feature-padding7 {
    right: -6%;
}

.feature-padding8 {
    right: 4%;
}

.feature-padding9 {
    right: 9%;
}

.feature-padding10 {
    right: 30%;
}

.feature-icon {
    width: 75px;
    height: 65px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 0px;
}


.feature-text {
    color: #000000;
    font-size: 16px;
    line-height: 22px;
    width: 80%;
}


/* CENTER INFOGRAPHIC */

.center-circle {
    position: relative;
    width: 350px;
    height: 350px;
    margin: auto;
    margin-top: 9rem;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed #dbeafe;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    top: 35px;
    left: 35px;
    animation: spin 15s linear infinite;
}

.orbit-2 {
    width: 340px;
    height: 340px;
    top: 5px;
    left: 5px;
    animation: spinReverse 20s linear infinite;
}

.employee-center {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(13, 110, 253, .25);
}

.main-user {
    color: #fff;
    font-size: 80px;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    font-size: 24px;
}

.payroll {
    top: -25px;
    animation: float 4s infinite;
}

.hr {
    left: -25px;
    animation: float 5s infinite;
    color: #169b48;
}

.report {
    right: -25px;
    animation: float 6s infinite;
    color: #f36e15;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}


.hero-card {
    background: linear-gradient(135deg, #0f172a, #1e40af);
    border-radius: 20px;
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}

    .hero-card::before {
        content: '';
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        top: -120px;
        right: -80px;
    }

    .hero-card::after {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        bottom: -80px;
        left: -50px;
    }

    .hero-card p b {
        display: table;
        clear: both;
        margin: auto;
        margin-top: 10px;
        border: 1px solid #ccc;
        border-radius: 100px;
        padding: 8px 18px;
        line-height: normal;
    }


.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 35px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

    .glass-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    }

    .glass-card::before {
        content: '';
        position: absolute;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        top: -40px;
        right: -40px;
        background: rgba(37, 99, 235, 0.08);
    }

    .glass-card p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 1rem;
        color: #333;
    }

.icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.bg1 {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.bg2 {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.bg3 {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.section-heading {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.info-list {
    padding-left: 0;
    list-style: none;
}

    .info-list li {
        padding: 10px 0;
        border-bottom: 1px dashed #dbeafe;
        font-size: 14px;
        line-height: 1.6;
        color: #333;
    }

        .info-list li:last-child {
            border-bottom: none;
        }

.rounded-list {
    counter-reset: li;
    list-style: none;
    list-style: decimal;
    padding: 0;
    margin-bottom: 0em;
    font-size: 16px;
    color: #000;
    margin-left: 1rem;
}

    .rounded-list li a {
        position: relative;
        display: flex;
        align-items: center;
        padding: 0.4em 0.4em 0.4em 0.9em;
        margin: 0.5em 0;
        background: #ffefd8;
        color: #000000;
        height: 50px;
        text-decoration: none;
        -moz-border-radius: 0.3em;
        -webkit-border-radius: 0.3em;
        border-radius: 0.3em;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        cursor: auto;
        font-weight: 700;
        font-size: 16px;
    }

        .rounded-list li a b {
            font-weight: 700;
            color: #000;
        }

    .rounded-list ul li a {
        background-color: #fff;
        padding: 0px;
        height: auto;
        font-weight: 400;
    }

.login__btn {
    background-color: #f47419;
    color: #ffffff;
    padding: 0px 20px;
    font-size: 14px;
    line-height: 36px;
    border-radius: 5px;
    margin-left: 10px;
    overflow: hidden;
}

    .login__btn:hover {
        color: #fff;
    }

    .login__btn::before {
        border-radius: 5px;
    }




/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Steps track ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.steps-track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    margin: 2rem 0rem;
    margin-bottom: 3rem;
}

/* Connector line between cards */
.connector {
    flex-shrink: 0;
    width: 36px;
    margin-top: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9;
}

    .connector::before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--c-left), var(--c-right));
        opacity: .5;
    }

    .connector .arrow-head {
        position: absolute;
        right: -1px;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 7px solid var(--c-right);
        opacity: .7;
    }


.step-card {
    flex: 0 0 33%;
    width: 33%;
    border-radius: 10px;
    padding: 28px 20px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 14px 20px rgb(0 0 0 / 18%);
}

.step-card-2 {
    flex: 0 0 30%;
    width: 30%;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Per-step colors */
.step-card[data-step="1"] {
    background: linear-gradient(160deg, #7c5cbf 0%, #5a3fa0 100%);
}

.step-card[data-step="2"] {
    background: linear-gradient(160deg, #4a7dd4 0%, #2f5fb8 100%);
}

.step-card[data-step="3"] {
    background: linear-gradient(160deg, #2eaa85 0%, #1e8060 100%);
}

.step-card[data-step="4"] {
    background: linear-gradient(160deg, #2899c4 0%, #1873a0 100%);
}

.step-card[data-step="5"] {
    background: linear-gradient(160deg, #6db33f 0%, #4d8e25 100%);
}

/* Stagger */
.step-card[data-step="1"] {
    animation-delay: .1s
}

.step-card[data-step="2"] {
    animation-delay: .22s
}

.step-card[data-step="3"] {
    animation-delay: .34s
}

.step-card[data-step="4"] {
    animation-delay: .46s
}

.step-card[data-step="5"] {
    animation-delay: .58s
}

/* Inner glow */
.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

/* Step number badge */
.step-num {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* Icon area */
.step-icon {
    width: 66px;
    height: 66px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: transform .3s;
}

.step-card:hover .step-icon {
    transform: scale(1.12) rotate(-4deg);
}

.step-icon svg {
    color: #fff;
    height: 35px;
    width: 35px;
}

/* Divider */
.step-divider {
    height: 1.5px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 18px;
    border-radius: 999px;
}

.step-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 14px !important;
    line-height: 1.25 !important;
}

/* Bullet list */
.step-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0px;
    padding: 0px;
}

    .step-items li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 14px;
        color: #fff;
        line-height: 1.5;
    }

        .step-items li .dot {
            flex-shrink: 0;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.7);
            margin-top: 8px;
        }



/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Animations ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@keyframes cardRise {
    from {
        transform: translateY(40px) scale(.96);
        opacity: 0
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1
    }
}

@keyframes fadeDown {
    from {
        transform: translateY(-20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}











:root {
    --pt-col1: linear-gradient(160deg, #4a7dd4 0%, #2f5fb8 100%);
    --pt-col2: linear-gradient(160deg, #2eaa85 0%, #1e8060 100%);
    --pt-col3: linear-gradient(160deg, #7c5cbf 0%, #5a3fa0 100%);
    --pt-gray: #2a2a3a;
    --pt-dark: #0f0f1a;
    --pt-light: #f0eeff;
    --pt-text-muted: #b0b0c8;
}

/* Ambient glow pt-blobs */
.pt-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
}

.pt-blob-1 {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    top: -100px;
    left: -150px;
}

.pt-blob-2 {
    width: 400px;
    height: 400px;
    background: #10b981;
    top: 50%;
    right: -100px;
}

.pt-blob-3 {
    width: 350px;
    height: 350px;
    background: #a855f7;
    bottom: -80px;
    left: 30%;
}

/* Timeline wrapper */
.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 68px;
    width: 100%;
    position: relative;
    animation: fadeUp 0.9s ease 0.2s both;
    margin-top: 1rem;
}

/* Column pt-card */
.pt-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 20px rgb(0 0 0 / 18%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

    .pt-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 40px rgba(0, 0, 0, 0.5);
    }

/* Arrow header shape */
.pt-card-header {
    position: relative;
    padding: 28px 24px 40px;
    display: flex;
    flex-direction: column;
    align-pt-items: flex-start;
    gap: 18px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    text-align: center;
}

.pt-card:nth-child(1) .pt-card-header {
    background: var(--pt-col1);
}

.pt-card:nth-child(2) .pt-card-header {
    background: var(--pt-col2);
}

.pt-card:nth-child(3) .pt-card-header {
    background: var(--pt-col3);
}

/* Icon box */
.pt-icon-box {
    width: 66px;
    height: 66px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    align-items: center;
    text-align: center;
    margin: auto;
}

    .pt-icon-box svg {
        width: 35px;
        height: 35px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.pt-card-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* Body */
.pt-card-body {
    background: var(--gray);
    flex: 1;
    padding: 30px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}



/* Bullet pt-item */
.pt-item {
    display: flex;
    gap: 12px;
    align-pt-items: flex-start;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 8px currentColor;
}

.pt-card:nth-child(1) .dot {
    background: var(--pt-col1);
    color: var(--pt-col1);
}

.pt-card:nth-child(2) .dot {
    background: var(--pt-col2);
    color: var(--pt-col2);
}

.pt-card:nth-child(3) .dot {
    background: var(--pt-col3);
    color: var(--pt-col3);
}

.pt-item p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #333 !important;
    font-weight: 400;
    margin: 0 !important;
    text-align: left !important;
}

    .pt-item p strong {
        color: #000000;
        font-weight: 700;
    }

/* Footer badge */
.pt-card-footer {
    padding: 14px;
    display: flex;
    align-pt-items: center;
    justify-content: center;
}

.pt-card:nth-child(1) .pt-card-footer {
    background: var(--pt-col1);
}

.pt-card:nth-child(2) .pt-card-footer {
    background: var(--pt-col2);
}

.pt-card:nth-child(3) .pt-card-footer {
    background: var(--pt-col3);
}

.step-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    border: 1px solid;
    line-height: normal;
    align-items: center;
}

.pt-card:nth-child(1) .step-badge {
    background: rgba(124, 58, 237, 0.15);
    border-color: #fff;
    color: #fff;
}

.pt-card:nth-child(2) .step-badge {
    background: rgba(124, 58, 237, 0.15);
    border-color: #fff;
    color: #fff;
}

.pt-card:nth-child(3) .step-badge {
    background: rgba(124, 58, 237, 0.15);
    border-color: #fff;
    color: #fff;
}

/* Bottom pt-connector line */
.pt-connector {
    width: 100%;
    margin-top: 30px;
    position: relative;
    height: 24px;
    display: flex;
    align-items: center;
    animation: fadeUp 0.9s ease 0.4s both;
    margin-bottom: 3rem;
}

    .pt-connector::before {
        content: '';
        position: absolute;
        left: 0%;
        right: 0%;
        height: 2px;
        background: linear-gradient(90deg, rgb(64 114 202) 0%, rgb(45 168 131) 49%, rgb(120 89 188) 100%);
        border-radius: 11px;
        width: 100%;
        top: 11px;
    }

.pt-connector-arrow {
    position: absolute;
    left: 3%;
    font-size: 1.4rem;
    color: var(--col1);
}

.pt-connector-dots {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 0 0%;
}

.pt-connector-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 1px;
}

    .pt-connector-dot:nth-child(1) {
        background: var(--pt-col1);
        box-shadow: 0 0 10px var(--pt-col1);
    }

    .pt-connector-dot:nth-child(2) {
        background: var(--pt-col2);
        box-shadow: 0 0 10px var(--pt-col2);
    }

    .pt-connector-dot:nth-child(3) {
        background: var(--pt-col3);
        box-shadow: 0 0 10px var(--pt-col3);
    }


@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}







:root {
    --bar-width: 52px;
    --bar-menu-width: 220px;
    --bar-accent: #7c6ff7;
    --bar-accent2: #f76fc1;
    --bar-text: #e8e8f0;
    --bar-text-muted: #888899;
    --bar-item-hover: rgba(124, 111, 247, 0.15);
    --bar-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    --bar-radius: 16px;
}


/* ===== SIDEBAR ===== */
.sidebar-wrap {
    position: fixed;
    /* left: 0; */
    top: 230px;
    /* transform: translateY(-50%); */
    z-index: 1000;
    /* display: flex; */
    /* align-items: center; */
    flex-direction: row-reverse;
    width: 43px;
    /* z-index: 1; */
}

/* Slide-out Menu Panel */
.menu-panel {
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: var(--bar-shadow);
    border: 1px solid rgba(124, 111, 247, 0.15);
    border-left: none;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.25s ease;
    pointer-events: none;
    position: relative;
    left: 43px;
    width: 300px;
    top: -28px;
}

    .menu-panel::after {
        content: "";
        position: absolute;
        top: 64px;
        left: -10px;
        border-width: 0 8px 7px 8px;
        border-style: solid;
        border-color: transparent transparent rgb(255 255 255) transparent;
        transform: rotate(270deg);
    }

/* Fixed Bar (tab) */
.sidebar-bar {
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
    z-index: 2;
    top: 9px;
}

/* Hover trigger zone (covers bar + panel) */
.sidebar-wrap:hover .menu-panel {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.sidebar-wrap:hover .sidebar-bar {
    background: rgba(124, 111, 247, 0.12);
    border-color: rgba(124, 111, 247, 0.3);
}



/* Menu Items */
.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.18s, color 0.18s;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    line-height: 16px;
}

    .menu-item:hover {
        color: #FF5722;
    }

        .menu-item:hover .item-icon {
            color: #FF5722;
            transform: scale(1.15);
        }

    .menu-item .item-icon {
        font-size: 1.1rem;
        transition: color 0.18s, transform 0.18s;
        width: 20px;
        text-align: center;
    }

.menu-panel2 {
    width: 150px !important;
    top: -6px;
}



.timeline-eligibility-criteria {
    display: flex;
    flex-direction: column;
    width: 94%;
    margin-left: 5rem;
    margin-bottom: 4rem;
}

.timeline__event {
    background: #fff;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 14%);
}

.timeline__event__title {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
}

.timeline__event__content {
    padding: 20px;
    padding-left: 50px;
}

.timeline__event--type1 .timeline__event__content::after {
    display: none;
}

.timeline__event__content::after {
    content: '';
    border-left: 7px solid transparent;
    border-top: 7px solid #000000e0;
    border-right: 6px solid transparent;
    position: absolute;
    top: -5px;
    margin: auto;
    left: -118px;
    right: 0px;
    width: 13px;
}

.timeline__event__description {
    flex-basis: 60%;
}

    .timeline__event__description p {
        color: #fff;
        line-height: 23px;
        margin-top: 5px;
        font-size: 15px;
    }

.timeline__event:after {
    content: "";
    width: 2px;
    height: 40px;
    background: #9251ac;
    position: absolute;
    top: 100%;
    left: 45%;
    z-index: -1;
}

.timeline__event:before {
    content: "";
    width: 3.5rem;
    height: 3.5rem;
    position: absolute;
    background: #f6a4ec;
    border-radius: 10px;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #9251ac;
}

.timeline__event--type2:before {
    background: #87bbfe;
    border-color: #555ac0;
}

.timeline__event--type2:after {
    background: #555ac0;
}


.timeline__event--type2 .timeline__event__title {
}


.timeline__event--type3:before {
    background: #aff1b6;
    border-color: #24b47e;
}

.timeline__event--type3:after {
    background: #24b47e;
}

.timeline__event--type3 .timeline__event__title {
}


.timeline__event--type4:before {
    background: #fdd5b3;
    border-color: var(--bs-orange);
}

.timeline__event--type4:after {
    background: var(--bs-orange);
}

.timeline__event--type4 .timeline__event__title {
    color: var(--bs-orange);
}

.timeline__event--type5:before {
    background: #bff8ff;
    border-color: #00BCD4;
}

.timeline__event--type5:after {
    background: #00BCD4;
}

.timeline__event--type5 .timeline__event__title {
    color: #00BCD4;
}



.timeline__event:last-child:after {
    content: none;
}

.timeline__event__icon i {
    position: absolute;
    top: 50%;
    left: -19px;
    font-size: 27px;
    transform: translateY(-50%);
    font-style: normal;
    color: rgb(0 0 0 / 72%);
    font-weight: 800;
}

.timeline__event--type1 {
    background: #9657af;
}

.timeline__event--type2 {
    background: #555ac0;
}

.timeline__event--type3 {
    background: #24b47e;
}

.timeline__event--type4 {
    background: #fd7e14;
}

.timeline__event--type5 {
    background: #00bcd4;
}

.timeline__event--type2 .timeline__event__content::after {
    border-top: 7px solid #9657af;
}

.timeline__event--type3 .timeline__event__content::after {
    border-top: 7px solid #555ac0;
}

.timeline__event--type4 .timeline__event__content::after {
    border-top: 7px solid #24b47e;
}

.timeline__event--type5 .timeline__event__content::after {
    border-top: 7px solid #fd7e14;
}

.timeline__event--type6 .timeline__event__content::after {
    border-top: 7px solid #00bcd4;
}






:root {
    --c-bg: #F5F3EE;
    --c-surface: #FFFFFF;
    --c-border: #E2DED6;
    --c-text: #1A1A1A;
    --c-muted: #000000;
    --c-accent: #1B3A5C;
    --r1-bg: #E8F0F9;
    --r1-text: #1B3A5C;
    --r1-tag: #BDD0E8;
    --r2-bg: #E6F2EA;
    --r2-text: #1A4A2E;
    --r2-tag: #B5D9BF;
    --r3-bg: #FDF3E3;
    --r3-text: #6B3D00;
    --r3-tag: #F5D9A0;
    --r4-bg: #F5E8F2;
    --r4-text: #4A1060;
    --r4-tag: #DDB8D8;
    --radius: 10px;
    --radius-lg: 16px;
}


.summary-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.pill-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-accent);
}

.divider-line {
    width: 1px;
    height: 20px;
    background: var(--c-border);
}


.table-wrapper {
    background: var(--c-surface);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgb(0 0 0 / 14%);
}


.roles-table {
    width: 100%;
    border-collapse: collapse;
}

    /* Head */
    .roles-table thead tr {
        background: #F0EDE7;
    }

    .roles-table thead th {
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--c-muted);
        padding: 13px 18px;
        text-align: left;
        border-bottom: 1.5px solid var(--c-border);
    }

.th-role {
    width: 28%;
}

.th-edu {
    width: 33%;
}

.th-skill {
    width: 39%;
}

/* Body rows */
.roles-table tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background 0.15s ease;
}

    .roles-table tbody tr:last-child {
        border-bottom: none;
    }

    .roles-table tbody tr:hover {
        background: #FAFAF8;
    }

.roles-table td {
    padding: 18px 18px;
    vertical-align: top;
}


.role-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.r1 {
    background: var(--r1-bg);
    color: var(--r1-text);
}

.r2 {
    background: var(--r2-bg);
    color: var(--r2-text);
}

.r3 {
    background: var(--r3-bg);
    color: var(--r3-text);
}

.r4 {
    background: var(--r4-bg);
    color: var(--r4-text);
}

.role-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 2px;
    line-height: 1.3;
}

.role-sub {
    font-size: 16px;
    color: var(--c-muted);
    font-weight: 300;
}


.edu-block {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    color: var(--c-text);
    line-height: 1.5;
    font-weight: 400;
}

.edu-icon {
    font-size: 6px;
    color: var(--c-muted);
    margin-top: 6px;
    flex-shrink: 0;
}


.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.tag {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 11px;
    border-radius: 6px;
    line-height: 1.4;
}

.t1 {
    background: var(--r1-tag);
    color: var(--r1-text);
}

.t2 {
    background: var(--r2-tag);
    color: var(--r2-text);
}

.t3 {
    background: var(--r3-tag);
    color: var(--r3-text);
}

.t4 {
    background: var(--r4-tag);
    color: var(--r4-text);
}

.skill-note {
    width: 100%;
    font-size: 16px;
    color: var(--c-muted);
    font-style: italic;
    margin-top: 4px;
    font-weight: 300;
}




#timeline .timeline-item:after,
header:after,
#timeline .timeline-item:before,
header:before {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

#timeline {
    width: 100%;
    margin: 30px auto;
    position: relative;
    padding: 0 10px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    #timeline:before {
        content: "";
        width: 3px;
        height: 100%;
        background: #12a857;
        left: 50%;
        top: 0;
        position: absolute;
    }

    #timeline:after {
        content: "";
        clear: both;
        display: table;
        width: 100%;
    }

    #timeline .timeline-item {
        margin-bottom: 5px;
        position: relative;
    }

        #timeline .timeline-item .timeline-icon {
            background: #aeebca;
            border: 3px solid #a5d9bd;
            width: 60px;
            height: 60px;
            position: absolute;
            top: 0;
            left: 50%;
            overflow: hidden;
            margin-left: -28px;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            border-radius: 50%;
            color: #03361aab;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
        }

            #timeline .timeline-item .timeline-icon svg {
                position: relative;
                top: 14px;
                left: 14px;
            }

        #timeline .timeline-item .timeline-content {
            width: 45%;
            background: #ebebeb;
            padding: 20px;
            -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
            -moz-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
            -ms-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            border-radius: 5px;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            #timeline .timeline-item .timeline-content h2 {
                padding: 13px 20px;
                background: #12a857;
                color: #fff;
                margin: -20px -20px 0 -20px;
                font-weight: 300;
                -webkit-border-radius: 3px 3px 0 0;
                -moz-border-radius: 3px 3px 0 0;
                -ms-border-radius: 3px 3px 0 0;
                border-radius: 8px 8px 0 0;
                font-size: 20px;
                font-weight: 700;
            }

            #timeline .timeline-item .timeline-content:before {
                content: "";
                position: absolute;
                left: 45%;
                top: 20px;
                width: 0;
                height: 0;
                border-top: 7px solid transparent;
                border-bottom: 7px solid transparent;
                border-left: 7px solid #12a857;
            }

            #timeline .timeline-item .timeline-content.right {
                float: right;
            }

                #timeline .timeline-item .timeline-content.right:before {
                    content: "";
                    right: 45%;
                    left: inherit;
                    border-left: 0;
                    border-right: 7px solid #12a857;
                }

            #timeline .timeline-item .timeline-content p {
                color: #000;
                line-height: 26px;
                margin-top: 1rem;
            }






.requir-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
}

.requir-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    gap: 20px;
    margin-top: 1rem;
}

.requir-doc-card {
    background: #ebebeb;
    border-radius: 10px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e1e1;
}

    .requir-doc-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

.requir-icon {
    width: 50px;
    height: 50px;
    background: #12a857;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.requir-doc-text {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    width: 70%;
    line-height: 22px;
}


.form-card {
    /* background: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 -1px 12px rgb(0 0 0 / 18%); */
    padding: 0rem;
    border: 1px solid #e3e1e1;
}

    .form-card .section-title {
        font-weight: 700;
        border-left: 4px solid #f36523;
        padding: 10px;
        padding-left: 10px;
        margin-bottom: 1rem;
        margin-top: 3rem;
        font-size: 18px;
        color: #000;
        text-transform: uppercase;
        background-color: #f1f1f1;
        border-radius: 5px;
    }

        .form-card .section-title:first-child {
            margin-top: 0rem;
        }

    .form-card .captcha-box {
        background: #e9ecef;
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 4px;
        text-align: center;
        padding: 8px;
        border-radius: 5px;
        user-select: none;
    }

    .form-card .form-label {
        margin-bottom: 0.5rem;
        font-size: 15px;
        color: #404040;
        font-weight: 500;
    }

    .form-card .form-check {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: auto;
        padding-left: 1.5em;
        margin-bottom: 0;
        color: #333;
    }

    .form-card .btn-danger-add {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        border: none;
        border-radius: 6px;
        padding: 5px 28px;
        height: 50px;
        text-decoration: none;
        display: inline-block;
        transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }

    .form-card .btn-green-add {
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        border: none;
        border-radius: 6px;
        padding: 5px 28px;
        height: 50px;
        text-decoration: none;
        display: inline-block;
        transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }





.process-card {
    margin: auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 17%);
    padding: 30px;
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2d3d;
    border-bottom: 2px solid #e5e9f2;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .process-list li {
        display: flex;
        gap: 15px;
        padding: 14px 18px;
        border-radius: 8px;
        background: rgb(30 63 171 / 11%);
        border-left: 4px solid #1d3da5;
        margin-bottom: 0px;
        align-items: center;
        flex-basis: 32%;
        flex-grow: 1;
    }

.step-number {
    min-width: 36px;
    height: 36px;
    background: #2f4cab;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
}

.step-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

    .step-text span {
        font-weight: 700;
        color: #2f4cab;
    }


/* Objectives Container */
.objectives-wrapper {
}

.objectives-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Card Styling */
.objective-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    /* Hover Effect */
    .objective-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.card-left {
    font-family: "Oswald", sans-serif;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.card-right {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    gap: 15px;
}

    .card-right p {
        font-size: 0.9rem;
        color: #444;
        line-height: 1.4;
        margin: 0;
        flex-grow: 1;
        font-weight: 500;
    }

.icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Specific Colors matching the image */
.ob-01 {
    background-color: #107C9B;
}

/* Teal/Blue */
.ob-02 {
    background-color: #F05A28;
}

/* Orange */
.ob-03 {
    background-color: #9AC33C;
}

/* Light Green */
.ob-04 {
    background-color: #F59F15;
}

/* Yellow/Gold */









.quota-card {
    max-width: 550px;
    margin: auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.quota-header {
    background: #17243a;
    color: #fff;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.quota-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.quota-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #e9ecef;
}

    .quota-item:last-child {
        border-bottom: none;
    }

.category {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.percentage {
    font-size: 15px;
    font-weight: 700;
    padding: 6px 13px;
    border-radius: 20px;
    min-width: 60px;
    text-align: center;
    color: #fff;
    line-height: normal;
}

.sc {
    background: #dc3545;
}

.obc {
    background: #fd7e14;
}

.ews {
    background: #198754;
}

.st {
    background: #6f42c1;
}


.dashboard {
    margin-bottom: 4rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 25px;
}

    .card-grid .card {
        background: #ffffff;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: 0.3s ease;
        position: relative;
    }


        .card-grid .card p {
            font-size: 16px;
            color: #2c2c2c;
            line-height: 22px;
        }


        .card-grid .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
        }

        .card-grid .card:nth-child(1) {
            background-color: #f3edff;
        }

        .card-grid .card:nth-child(2) {
            background-color: #d7e9ff;
        }

        .card-grid .card:nth-child(3) {
            background-color: #d2fff1;
        }

        .card-grid .card:nth-child(4) {
            background-color: #ecffe1;
        }

        .card-grid .card:nth-child(5) {
            background-color: #cdedff;
        }

        .card-grid .card:nth-child(6) {
            background-color: #ffecd1;
        }

    .card-grid .icon {
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0px;
    }

        .card-grid .icon i {
            color: #fff;
            font-size: 23px;
        }

.card-icon-box {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 1rem;
}

.card-grid .card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #000000;
    margin-bottom: 0px;
    /*  width: 75%;*/
}

.card-grid .card ul {
    list-style: none;
    padding: 0px;
}

    .card-grid .card ul li {
        font-size: 15px;
        color: #000000;
        padding-left: 20px;
        position: relative;
        margin-bottom: 8px;
        line-height: 22px;
    }

        .card-grid .card ul li::before {
            content: "";
            position: absolute;
            left: 0;
            color: #f36523;
            font-size: 14px;
            background-color: #f36523;
            width: 7px;
            height: 7px;
            border-radius: 100px;
            top: 10px;
        }

.news-item-card {
    position: relative;
    transition: transform 4s ease-in;
    overflow: hidden;
    width: 100%;
    border: 1px solid #000;
    border-radius: 10px;
    display: block;
    height: 506px;
}

.photogallery-item .news-item-card {
    height: 300px;
}

.news-item-card img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: transform 1s ease-in;
}

    .news-item-card img:hover {
        transform: scale(1.2);
    }

.news-item-card:before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    transform: translateY(-100%);
    font-size: 35px;
    color: #000000;
    display: block;
    background-color: rgb(255 255 255 / 36%);
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: bootstrap-icons !important;
    transition: transform .4s ease-in;
    justify-content: center;
    box-sizing: border-box;
}

.news-item-card:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    transform: translateY(100%);
    font-size: 35px;
    color: #000000;
    display: block;
    background-color: rgb(255 255 255 / 36%);
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: bootstrap-icons !important;
    transition: transform .4s ease-in;
    justify-content: center;
    box-sizing: border-box;
}

.news-item-card:hover::before {
    transform: translateY(0%);
}

.news-item-card:hover::after {
    transform: translateY(0%);
}

.news-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 8px 20px rgb(0 0 0 / 12%);
    display: flex;
    gap: 20px;
}

    .news-card .pressnews-image {
        width: 30%;
        border-radius: 5px;
        border: 1px solid #ccc;
        padding: 10px;
        height: 100%;
    }

        .news-card .pressnews-image img {
            width: 100%;
            height: 100%;
        }

    .news-card .publication-right {
        width: 70%;
    }


        .news-card .publication-right .icon-circle {
            width: 50px;
            height: 50px;
            background: #f26624;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            margin-bottom: 30px;
        }

.source-badge {
    background: #fdeae1;
    color: #6a2200;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 16px;
    line-height: normal;
}

.news-date {
    font-size: 14px;
    color: #545454;
    margin-top: 4px;
}

.news-text {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
}

.read-btn {
    color: #f26624;
    border-radius: 8px;
    padding: 0px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 6px;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

    .read-btn:hover {
        color: #000;
    }



/* Style the container to fill the screen */
.video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

/* Style the video to cover the entire background */
.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(5 8 22 / 87%);
}


.home-cards {
    position: relative;
    display: block;
    padding: 90px 0 100px;
    z-index: 2;
    background: #ffffff url(../images/journey-bg.png) repeat-x;
    background-size: cover;
    background-position: top;
}

    .home-cards::before {
        content: '';
        position: absolute;
        left: 0%;
        right: 0%;
        height: 1px;
        background: linear-gradient(90deg, rgb(209 190 169) 0%, rgb(234 235 235) 49%, rgb(161 205 170) 100%);
        border-radius: 11px;
        width: 100%;
        top: 0px;
    }

.hero-title {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
}

.hero-subtitle {
    max-width: 850px;
    margin: auto;
    color: #3D3D3D;
    line-height: 22px;
    margin-bottom: 2rem;
}

.upcos-card {
    border-radius: 18px;
    padding: 30px;
    padding-bottom: 70px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

    .upcos-card:hover {
        transform: scale(1.03);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    }

.card-employee {
    background: linear-gradient(135deg, #1d4ed8, #22c55e);
}

.card-agency {
    background: linear-gradient(135deg, #1d4ed8, #22c55e);
}

.card-department {
    background: linear-gradient(135deg, #1d4ed8, #22c55e);
}

.upcos-card h4 {
    font-weight: 700;
    color: #fff;
}

.upcos-card p {
    font-size: 14px;
    max-width: 347px;
    line-height: 22px;
    font-weight: 300;
}

.upcos-btn {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    line-height: normal;
    position: absolute;
    bottom: 23px;
}

    .upcos-btn:hover {
        background: #fff;
        color: #000;
    }

.card-img {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 340px;
}




.gr-page-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #020e1e;
}

.gr-subtitle {
    text-align: center;
    font-size: 15px;
    color: #000000;
    margin-bottom: 3rem;
    padding: 0rem 12rem;
    line-height: 22px;
}

.gr-section-title .gr-section {
    margin-bottom: 40px;
    margin-top: 30px;
}

.gr-section {
    margin-top: 40px;
}

    .gr-section p {
        color: #000;
    }

.gr-section-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #020e1e;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    justify-content: center;
}

    .gr-section-title i {
        color: #a3a3a3;
    }

/* Cards */
.gr-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 1rem;
}

.gr-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 22px;
    /* box-shadow: 0 2px 14px rgb(0 0 0 / 12%); */
    transition: transform 0.2s ease;
    border: 1px solid #efefef;
}

    .gr-card:hover {
        transform: translateY(-4px);
    }

    .gr-card .gr-icon {
        font-size: 28px;
        color: #f26624;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .gr-card h3 {
        font-size: 18px;
        margin-bottom: 0px;
        font-weight: 600;
        color: #000;
    }

    .gr-card p {
        font-size: 14px;
        line-height: 1.6;
        color: #000;
        text-align: left;
    }

.gr-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 12px;
    font-size: 14px;
    background: #cff1d0;
    color: #2c722f;
    border-radius: 20px;
    line-height: normal;
    font-weight: 600;
}

    .gr-badge .gr-success {
        background: #e6f4ea;
        color: #137333;
    }

.gr-email {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #d93025;
}

    .gr-email:hover {
        text-decoration: underline;
        color: #000;
    }

/* Timeline */
.gr-timeline {
    position: relative;
    padding-left: 5px;
    margin-top: 1rem;
}

    .gr-timeline::before {
        content: "";
        position: absolute;
        left: 9px;
        top: 0;
        width: 2px;
        height: 100%;
        background: #f5c6b1;
        border-radius: 10px;
        z-index: -1;
    }

.gr-timeline-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.gr-circle {
    width: 10px;
    height: 10px;
    background: #f36523;
    border-radius: 50%;
    margin-top: 20px;
}

.gr-timeline-content {
    background: #f5f5f5;
    padding: 16px 20px;
    border-radius: 10px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.07); */
    border: 1px solid #efefef;
}

    .gr-timeline-content h3 {
        margin: 0 0 6px;
        font-size: 16px;
        color: #000;
        font-weight: 700;
    }

    .gr-timeline-content p {
        margin: 0;
        font-size: 14px;
        color: #000;
    }

.payroll-section .owl-nav {
    display: none;
}

.ticket_id_box {
    border-bottom: 0;
    padding-bottom: 0rem;
    max-width: 55%;
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
}

    .ticket_id_box label {
        font-size: 16px;
        color: #000;
        display: flex;
        justify-content: end;
        align-items: center;
    }

.text-warning .fa-solid {
    color: #ffc107 !important;
}

.about-director {
    background-color: #782f0e;
    font-size: 22px;
    display: block;
    padding: 8px 10px;
    border-radius: 30px;
    margin: auto;
    margin-top: 1rem;
    width: 260px;
    text-align: center;
    line-height: normal;
    color: #fff;
    border: 1px solid #c99881;
}

    .about-director::after {
        content: '';
        background-color: rgb(255 255 255 / 33%);
        height: 1px;
        position: absolute;
        width: 96%;
        left: 0px;
        right: 0px;
        z-index: -1;
        margin: auto;
        top: 40px;
    }

/* Hierarchy Structure */
.hierarchy-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Reusable Node Styling */
.node {
    background: linear-gradient(135deg, #bf3d00 0%, #f36523 100%);
    border: 1px solid #b33a02;
    border-radius: 8px;
    padding: 16px 20px;
    color: #ffffff;
    width: 260px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* min-height: 90px; */
}

.node-title {
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 0px;
}

.node-desc {
    font-size: 16px;
    text-align: center;
    line-height: normal;
    margin-top: 10px;
}

/* Connectors using margins and borders */
.node-wrapper {
    position: relative;
    margin-bottom: 60px;
}

    /* Vertical lines connecting the top 3 nodes */
    .node-wrapper::after,
    .level-3::before {
        content: '';
        position: absolute;
        left: 50%;
        width: 1px;
        background-color: #b33a02;
        transform: translateX(-50%);
    }

    .node-wrapper::after {
        bottom: -60px;
        height: 60px;
    }

/* Bottom Grid Layout */
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    position: relative;
    padding-top: 40px;
}

    /* Horizontal line for the bottom split */
    .bottom-grid::before {
        content: '';
        position: absolute;
        top: 0;
        left: 12.5%;
        right: 11.5%;
        height: 2px;
        background-color: #d89c80;
    }

    /* Vertical branch lines dropping to each final node */
    .bottom-grid .node {
        width: 100%;
        position: relative;
    }

        .bottom-grid .node::before {
            content: '';
            position: absolute;
            top: -41px;
            left: 52%;
            width: 2px;
            height: 40px;
            background-color: #d89c80;
            transform: translateX(-50%);
        }

.table-list-style {
}

    .table-list-style li {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 20px;
        color: #333;
    }


.benefits-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    margin-inline: auto;
    list-style: none;
    counter-reset: count;
    padding: 0;
    margin-top: 3rem;
}

    .benefits-box > li {
        --card-background-color: #fff;
        --card-text-color: #0f0f0f;
        --card-border-radius: 0.5rem;
        --card-padding: 1.5rem;
        --card-padding-inline: 1rem;
        --outset-size: 0.75rem;
        --outset-background-color: #e5e5e5;
        --number-font-size: 3rem;
        --number-overlap: 0.5rem;
        --number-font-family: "Oswald", sans-serif;
        --number-font-weight: 500;
        margin: var(--outset-size);
        margin-top: calc(var(--number-font-size) - var(--number-overlap));
        border-radius: var(--card-border-radius);
        padding-block: var(--card-padding);
        padding-inline: var(--card-padding-inline);
        color: var(--card-text-color);
        background-color: var(--card-background-color);
        box-shadow: inset 1px 1px 0px rgb(255 255 255 / 0.5), inset -1px -1px 0px rgb(0 0 0 / 0.25), calc(var(--outset-size) * 0.25) calc(var(--outset-size) * 0.25) calc(var(--outset-size) * 0.5) rgb(0 0 0 / 0.25);
        position: relative;
        counter-increment: count;
    }

        .benefits-box > li::after {
            content: counter(count, decimal-leading-zero);
            position: absolute;
            bottom: calc(100% - var(--number-overlap));
            left: 0;
            right: 0px;
            text-align: center;
            transform: translateX(-50%);
            color: var(--accent-color);
            font-family: var(--number-font-family);
            font-weight: var(--number-font-weight);
            font-size: var(--number-font-size);
            line-height: 1;
            z-index: -1;
            transition: all 0.2s linear;
            transform: scale(1);
        }

        .benefits-box > li::before {
            content: "";
            position: absolute;
            width: calc(100% + (var(--outset-size) * 2));
            height: 100%;
            bottom: calc(var(--outset-size) * -1);
            left: calc(var(--outset-size) * -1);
            z-index: -1;
            border-bottom-left-radius: calc(var(--card-border-radius) + var(--outset-size));
            border-bottom-right-radius: calc(var(--card-border-radius) + var(--outset-size));
            background-color: var(--outset-background-color);
            background-image: linear-gradient(to left, var(--outset-background-color) calc(var(--outset-size) * 2), transparent 0), linear-gradient(135deg, var(--accent-color) 80%, var(--outset-background-color) 0);
        }

        .benefits-box > li:hover::after {
            transform: scale(1.1);
            font-size: 70px;
        }

    /* card content */
    .benefits-box .title {
        text-align: center;
        color: var(--accent-color);
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .benefits-box .descr {
        color: #161616;
        font-size: 14px;
        line-height: 23px;
    }








.attendance-management-section {
    padding: 80px 0;
    background: #f8f8f8;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* Heading Badge */

.section-badge {
    display: inline-block;
    background: #ececec;
    border: 1px solid #d8d8d8;
    border-radius: 40px;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
}

.long-badge {
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Cards */

.attendance-card {
    display: flex;
    align-items: normal;
    margin-bottom: 28px;
    transition: .4s;
}

    .attendance-card:hover {
        transform: translateY(-6px);
    }

/* Number Ribbon */

.number-box {
    width: 85px;
    min-width: 85px;
    background: #f8c451;
    color: #000;
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    padding-right: 12px;
    justify-content: center;
    clip-path: polygon(0 0, 55% 0, 100% 100%, 0 100%);
    border-radius: 18px 0 0 18px;
}

/* Content */

.card-content {
    flex: 1;
    background: #fff;
    padding: 20px 35px;
    margin-left: -40px;
    padding-left: 40px;
    border-radius: 0 18px 18px 18px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 11%);
    border-bottom: 6px solid #f8c451;
}

    .card-content h3 {
        margin: 0 0 4px;
        font-size: 22px;
        font-weight: 700;
        color: #111;
        line-height: normal;
    }

    .card-content p {
        margin: 0;
        color: #000000;
        line-height: 1.8;
        font-size: 14px;
    }

/* Divider */

.divider {
    height: 1px;
    background: #ddd;
    margin: 55px 0 30px;
}



/* department-onboarding-process */
.department-onboarding-process-wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 6rem;
    row-gap: 80px;
}

    /* Card */
    .department-onboarding-process-wrapper .step-card {
        width: 240px;
        flex: 0 0 23%;
        padding: 45px 30px 25px;
        border-radius: 14px;
        color: #fff;
        position: relative;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease-in-out;
        overflow: visible;
    }

        .department-onboarding-process-wrapper .step-card:hover {
            transform: scale(1.1) !important;
        }

    /* Hexagon Number */
    .department-onboarding-process-wrapper .step-number {
        width: 70px;
        height: 70px;
        background: #fff;
        color: hsl(0deg 0% 0% / 71%);
        font-weight: 700;
        font-size: 26px;
        position: absolute;
        top: -41px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
        border-radius: 0;
        min-width: auto;
    }

    /* Title */
    .department-onboarding-process-wrapper .step-title {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 12px;
    }

    /* Description */
    .department-onboarding-process-wrapper .step-desc {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    /* Colors */
    .department-onboarding-process-wrapper .step-1 {
        background: #e74c3c;
    }

    .department-onboarding-process-wrapper .step-2 {
        background: #ff7a00;
    }

    .department-onboarding-process-wrapper .step-3 {
        background: #d68910;
    }

    .department-onboarding-process-wrapper .step-4 {
        background: #2ea393;
    }

    .department-onboarding-process-wrapper .step-5 {
        background: #9bbd42;
    }

    /* Arrow 
.department-onboarding-process-wrapper .step-card::after {
  content: "\F138";
  font-family: bootstrap-icons !important;
  font-size: 26px;
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}*/
    .department-onboarding-process-wrapper .step-1::after {
        color: #e74c3c;
    }

    .department-onboarding-process-wrapper .step-2::after {
        color: #ff7a00
    }

    .department-onboarding-process-wrapper .step-3::after {
        color: #d68910;
    }

    .department-onboarding-process-wrapper .step-4::after {
        color: #2ea393;
    }

    .department-onboarding-process-wrapper .step-5::after {
        color: #9bbd42
    }

    .department-onboarding-process-wrapper .step-card:last-child::after {
        display: none;
    }






.timeline-wrapper {
    position: relative;
    height: 1500px;
}

    .timeline-wrapper .timeline-line {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: visible;
        z-index: 1;
    }

        .timeline-wrapper .timeline-line path {
            fill: none;
            stroke: #000000;
            stroke-width: 1px;
        }

        .timeline-wrapper .timeline-line circle {
            fill: #000000;
        }

    .timeline-wrapper .timeline-card-grid {
        gap: 60px;
        display: flex;
        flex-wrap: wrap;
        column-gap: 60px;
    }

    .timeline-wrapper .card {
        position: relative;
        color: #000000;
        padding: 20px;
        border-radius: 5px;
        transition: .4s;
        z-index: 5;
        background-color: #ffffff;
        border: 1px solid #ededed;
        display: flex;
        justify-content: space-between;
        flex-direction: initial;
        gap: 10px;
        flex-basis: 28%;
        flex-grow: 1;
        margin-bottom: 6rem;
        box-shadow: 0 5px 20px rgb(0 0 0 / 9%);
    }

        .timeline-wrapper .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px rgba(0,0,0,.25);
        }

        .timeline-wrapper .card h3 {
            display: flex;
            align-items: center;
            background-color: #f58d5d;
            color: #fff;
            min-width: 50px;
            justify-content: center;
            height: 50px;
            border-radius: 5px;
        }

        .timeline-wrapper .card p {
            font-size: 13px;
            line-height: normal;
            font-weight: 500;
        }

    .timeline-wrapper .badge {
        position: relative;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        color: #000000;
        background: #e3e3e3;
    }
    /* .timeline-wrapper .yellow {
    background: #bd5914;
}
.timeline-wrapper .green {
     background: #bd5914;
}
.timeline-wrapper .red {
  background: #bd5914;
}
.timeline-wrapper .teal {
  background: #bd5914;
}
.timeline-wrapper .purple {
  background: #bd5914;
}
.timeline-wrapper .blue {
     background: #bd5914;
} */
    /* Position */


    .timeline-wrapper .card1 {
        top: 30px;
    }

    .timeline-wrapper .card h4 {
        position: absolute;
        font-size: 13px;
        border: 1px solid #bdbdbd;
        padding: 12px;
        border-radius: 5px;
        left: 0px;
        font-weight: 500;
        bottom: 114px;
        background-color: #f4f2f2;
    }

        .timeline-wrapper .card h4::after {
            content: "";
            position: absolute;
            bottom: -7px;
            left: 46px;
            border-width: 0 8px 7px 8px;
            border-style: solid;
            border-color: transparent transparent #bdbdbd transparent;
            transform: rotate( 180deg);
        }

    .timeline-wrapper .card2 {
        top: 30px;
    }

    .timeline-wrapper .card3 {
        top: 30px;
    }

    .timeline-wrapper .card4 {
        top: 40px;
    }

    .timeline-wrapper .card5 {
        top: 40px;
    }

    .timeline-wrapper .card6 {
        top: 40px;
    }

    .timeline-wrapper .card7 {
        top: 30px;
    }

        .timeline-wrapper .card7 h4 {
            width: 390px;
            bottom: 190px;
        }

    .timeline-wrapper .card8 {
        top: 40px;
    }

    .timeline-wrapper .card9 {
        top: 40px;
    }

    .timeline-wrapper .card10 {
        top: 20px;
    }

    .timeline-wrapper .card11 {
        top: 20px;
    }

    .timeline-wrapper .card12 {
        top: 20px;
    }

    .timeline-wrapper .card13 {
        top: 40px;
    }

    .timeline-wrapper .card14 {
        top: 40px;
    }

    .timeline-wrapper .card15 {
        top: 40px;
    }

    .timeline-wrapper .card16 {
        top: 60px;
    }

    .timeline-wrapper .card17 {
        top: 60px;
    }

    .timeline-wrapper .card18 {
        top: 60px;
    }







.popup-onload {
    margin: 0 auto;
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.popup-content {
    padding: 0px 0px;
    line-height: 1.5;
    height: 100vh;
}

.bgscreen {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.popup-content .carousel-caption {
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    padding-top: 4vw;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    width: 100%;
    top: 0px;
}

.logo-grid {
    padding: 0% 5%;
}

.logo-left {
    margin-bottom: 2.5vw;
}

    .logo-left > img {
        height: auto;
        width: 24vw;
    }

.main-data {
    width: 54vw;
    margin: auto;
    text-align: center;
}

    .main-data h1 {
        font-family: "Poppins", sans-serif;
        font-size: 2vw;
        font-weight: 800;
        color: #59201b;
        position: relative;
    }


        .main-data h1::after {
            content: "";
            position: absolute;
            width: 100px;
            height: 2px;
            background-color: #000;
            right: 0px;
            left: 0px;
            margin: auto;
            bottom: -23px;
        }

    .main-data h2 {
        font-family: "Poppins", sans-serif;
        font-size: 0.9vw;
        font-weight: 600;
        color: #000000;
        padding: 1vw 0.5vw;
        padding-top: 2.5vw;
        line-height: 1.6vw;
    }

    .main-data h3 {
        font-family: "Poppins", sans-serif;
        font-size: 0.9vw;
        font-weight: 600;
        color: #000000;
        padding: 0.5vw 1.5vw;
        line-height: normal;
        background-color: #fff;
        border-radius: 100px;
        display: inline-block;
    }

.left-img {
    position: absolute;
    bottom: 5vw;
    height: 64vh;
    right: 3vw;
}

.right-img {
    position: absolute;
    bottom: 5vw;
    height: 55vh;
    left: 3vw;
}

.skipIntro {
    position: absolute;
    font-size: 22px;
    border: 1px solid #24b720;
    background: #24b720;
    color: #fff;
    padding: 0.4vw 1vw;
    right: 2vw;
    bottom: 2vw;
    z-index: 9999;
    font-weight: 500;
    border-radius: 4px;
    font-size: 0.9vw;
    transition: 0.3s;
}

    .skipIntro:hover {
        background: #fc6a06;
        border: 1px solid #fc6a06;
    }

    .skipIntro img {
        width: 25px;
    }

.login-footer {
    background-color: #A45E2F;
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
}

    .login-footer .foot-card {
        padding: 1.5% 5%;
    }

.stake-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #fff;
}

.stake-icon {
    width: 3vw;
    height: 3vw;
    background: #ffffff;
    color: #a35d2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .stake-icon img {
        height: 2vw;
    }

.stake-card h5 {
    font-weight: 600;
    margin-bottom: 0.5vw;
    color: #fff;
    font-size: 0.8vw;
}

.stake-card p {
    font-size: 0.7vw;
    margin: 0;
    line-height: normal;
}



.table-legacy thead tr th, .table-legacy tbody tr td {
    white-space: nowrap;
}

    .table-legacy tbody tr td .form-control {
        width: 200px;
        height: auto;
        padding: 5px 10px;
    }

.status-btn {
    background: #e8531a !important;
}

.status-pending-gm {
    background: #ffac00 !important;
}

.status-resolved {
    background-color: #4CAF50;
}

.grievance-yellow::after {
    background-color: #ffac00 !important;
}
/*anujgupta 20-05-2026*/

.grievance-gray::after {
    background-color: #a8a1a1 !important;
}

.grievance-red::after {
    background-color: #F44336 !important;
    content: "\f00d" !important;
}




.step-wrapper .step-top {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
}

    .step-wrapper .step-top h3 {
        font-size: 16px;
        font-weight: 600;
        margin-top: 10px;
    }

.step-wrapper .step-circle {
    border-radius: 8px;
    background: rgb(255 255 255 / 48%);
    /* border: 2px solid #ffffff; */
    color: #3c3c3c;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 20px;
    padding: 10px 20px;
    font-weight: 600;
    transition: .3s;
    height: 50px;
    gap: 10px;
    position: relative;
}

    .step-wrapper .step-circle span {
        background-color: #ededed;
        border-radius: 100px;
        color: #000;
        font-size: 14px;
        padding: 4px 15px;
        line-height: normal;
        border: 1px solid rgb(0 0 0 / 14%);
    }

    .step-wrapper .step-circle.active {
        background: #f26624;
        color: #fff;
    }

        .step-wrapper .step-circle.active::after {
            content: '';
            border-left: 10px solid transparent;
            border-top: 10px solid #f26624;
            border-right: 10px solid transparent;
            position: absolute;
            bottom: -9px;
            margin: auto;
            left: 0px;
            right: 0px;
            width: 12px;
        }

.step-wrapper .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}



.cursor-pointer {
    cursor: pointer;
}
