:root {
    --thm-font: 'Montserrat', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #726f84;
    --thm-gray-rgb: 114, 111, 132;
    --thm-primary: #183e65;
    --thm-primary-rgb: 24, 62, 101;
    --thm-black: #0f0d1d;
    --thm-black-rgb: 15, 13, 29;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-light: #f2f4f8;
    --thm-light-rgb: 242, 244, 248;
    --thm-letter-space-big: 0.1em;
    --thm-letter-space-small: -0.02em;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
}

    body.locked {
        overflow: hidden;
    }

a {
    color: var(--thm-gray);
}

    a,
    a:hover,
    a:focus,
    a:visited {
        text-decoration: none;
    }

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-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: var(--thm-black);
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-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) {
    .container {
        max-width: 1200px;
    }
}

/* boxed style */

body.boxed-wrapper {
    background-color: var(--thm-light);
    ;
}

.boxed-wrapper .page-wrapper {
    max-width: 1410px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--thm-base);
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.boxed-wrapper .page-wrapper__dark {
    background-color: #1c1e22;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-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(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: #FDBA12;
    color: #485AAC;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 25px 70px;
    transition: 500ms;
    letter-spacing: 0.1em;
}

    .thm-btn:hover {
        background: var(--thm-base);
        color: var(--thm-primary);
    }

.section-title {
    margin-top: -12px;
    margin-bottom: 30px;
}

.section-title__title {
    margin: 0;
    font-weight: 500;
    color: #1E1E1E;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 8px;
    letter-spacing: 1;
}

    .section-title__title strong {
        font-weight: 700;
        color: #485AAC;
    }

    .section-title__title span {
        font-weight: 700;
        color: #FDBA12;
    }

.section-title__tagline {
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 16px;
    align-items: center;
    line-height: 24px;
}

.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--thm-base);
}

.preloader {
    position: fixed;
    background-color: var(--thm-black);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    background-image: url(../images/loader.png);
    -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-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: 45px;
    height: 45px;
    background: var(--thm-primary);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

    .scroll-to-top i {
        color: var(--thm-base);
        font-size: 18px;
        line-height: 45px;
    }

    .scroll-to-top:hover {
        background-color: var(--thm-black);
    }

        .scroll-to-top:hover i {
            color: var(--thm-base);
        }

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    padding: 0 60px;
    background: transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 91;
    transition: all 500ms ease;
}

.boxed-wrapper .main-header {
    padding-right: 0;
}

.main-header:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .15);
}

.main-menu {
    position: relative;
    z-index: 91;
}

.main-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-wrapper__left {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-wrapper__logo {
    position: relative;
    float: left;
    padding: 40.5px 60px;
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.main-menu-wrapper__main-menu {
    position: relative;
    display: flex;
    padding-left: 60px;
}


.main-menu-wrapper__right {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.stricky-header {
    padding: 0 60px;
    background-color: var(--thm-black);
}


    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        align-items: center;
        display: none;
    }

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
    padding-top: 25.5px;
    padding-bottom: 25.5px;
    position: relative;
}

    .main-menu .main-menu__list > li + li,
    .stricky-header .main-menu__list > li + li {
        margin-left: 64px;
    }

    .main-menu .main-menu__list > li > a,
    .stricky-header .main-menu__list > li > a {
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
        color: var(--thm-base);
        text-transform: uppercase;
        position: relative;
        transition: all 500ms ease;
    }

        .main-menu .main-menu__list > li > a::before,
        .stricky-header .main-menu__list > li > a::before {
            content: '';
            width: 10px;
            height: 2px;
            background-color: var(--thm-base);
            position: absolute;
            bottom: 0px;
            left: 0;
            transition: transform 500ms ease;
            transform: scale(0, 1);
            transform-origin: right center;
            z-index: -1;
        }

    .main-menu .main-menu__list > li.current > a,
    .main-menu .main-menu__list > li:hover > a,
    .stricky-header .main-menu__list > li.current > a,
    .stricky-header .main-menu__list > li:hover > a {
        color: var(--thm-base);
    }

        .main-menu .main-menu__list > li.current > a::before,
        .main-menu .main-menu__list > li:hover > a::before,
        .stricky-header .main-menu__list > li.current > a::before,
        .stricky-header .main-menu__list > li:hover > a::before {
            transform: scale(1, 1);
            transform-origin: left center;
        }

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--thm-base);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover > ul,
.stricky-header .main-menu__list li:hover > ul {
    opacity: 1;
    visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

    .main-menu .main-menu__list li ul li + li,
    .stricky-header .main-menu__list li ul li + li {
        border-top: 1px solid RGBA(var(--thm-black), 0.1);
    }

    .main-menu .main-menu__list li ul li a,
    .stricky-header .main-menu__list li ul li a {
        font-size: 14px;
        line-height: 30px;
        color: var(--thm-black);
        display: flex;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        transition: 500ms;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: var(--thm-letter-space-big);
    }

    .main-menu .main-menu__list li ul li:hover > a,
    .stricky-header .main-menu__list li ul li:hover > a {
        background-color: var(--thm-primary);
        color: var(--thm-base);
    }

    .main-menu .main-menu__list li ul li > ul,
    .stricky-header .main-menu__list li ul li > ul {
        top: 0;
        left: 100%;
    }

        .main-menu .main-menu__list li ul li > ul.right-align,
        .stricky-header .main-menu__list li ul li > ul.right-align {
            top: 0;
            left: auto;
            right: 100%;
        }

        .main-menu .main-menu__list li ul li > ul ul,
        .stricky-header .main-menu__list li ul li > ul ul {
            display: none;
        }

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: var(--thm-black);
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    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 {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    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(--thm-black);
    cursor: pointer;
}

    .mobile-nav__buttons a + a {
        margin-left: 10px;
    }

    .mobile-nav__buttons a:hover {
        color: var(--thm-base);
    }

.main-menu .mobile-nav__toggler {
    cursor: pointer;
    transition: 500ms;
    margin-right: 20px;
    display: flex;
}

.main-menu .mobile-nav__toggler-bar {
    width: 30px;
    height: 2px;
    background-color: var(--thm-base);
    display: block;
    transform: scale(1);
    transform-origin: right center;
    transition: transform 500ms ease;
}

.main-menu-three .mobile-nav__toggler-bar {
    background: var(--thm-black);
}

.main-menu .mobile-nav__toggler:hover .mobile-nav__toggler-bar {
    transform: scale(1) !important;
}

.main-menu .mobile-nav__toggler-bar:nth-child(1) {
    transform: scaleX(.55);
    margin-bottom: 4px;
}

.main-menu .mobile-nav__toggler-bar:nth-child(2) {
    transform: scaleX(.75);
    margin-bottom: 4px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-base);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
    position: relative;
    display: block;
}

    .main-header-three:before {
        display: none;
    }

.main-menu-wrapper-three {
    position: relative;
    display: block;
}

.main-menu-wrapper__logo-3 {
    position: relative;
    float: left;
    padding: 10px 0;
}

    .main-menu-wrapper__logo-3 img {
        width: 180px;
    }

.main-menu-wrapper-three__main-menu {
    position: relative;
    display: block;
    float: right;
}

.main-menu-wrapper-three__main-menu-inner {
    position: relative;
    display: block;
    float: left;
}

.main-menu-three .main-menu__list > li > a,
.stricky-header.main-menu-three .main-menu__list > li > a {
    color: var(--thm-gray);
    font-weight: 500;
}

.main-menu-three .main-menu__list > li.current > a,
.main-menu-three .main-menu__list > li:hover > a,
.stricky-header.main-menu-three .main-menu__list > li.current > a,
.stricky-header.main-menu-three .main-menu__list > li:hover > a {
    color: var(--thm-black);
}

    .main-menu-three .main-menu__list > li.current > a::before {
        background-color: var(--thm-black);
    }

    .main-menu-three .main-menu__list > li:hover > a::before {
        background-color: var(--thm-black);
    }

.stricky-header.main-menu-three {
    background-color: var(--thm-base);
}

.stricky-header .main-menu-wrapper-three {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
}

.stricky-header.main-menu-three--dark,
.main-header-three--dark {
    background-color: #fff;
}

    .main-header-three--dark .main-menu-three .main-menu__list > li > a,
    .stricky-header.main-menu-three--dark .main-menu__list > li > a {
        color: #032c4d;
    }

    .main-menu-three--dark .main-menu__list > li.current > a,
    .main-menu-three--dark .main-menu__list > li:hover > a,
    .stricky-header.main-menu-three--dark .main-menu__list > li.current > a,
    .stricky-header.main-menu-three--dark .main-menu__list > li:hover > a {
        color: #092139;
    }

.main-menu-three--dark .mobile-nav__toggler-bar {
    background-color: #183e65;
}

.main-menu-three--dark .main-menu__list > li + li,
.stricky-header.main-menu-three--dark .main-menu__list > li + li {
    margin-left: 40px;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@-webkit-keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(50px) translateX(100px) rotate(45deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(50px) translateX(100px) rotate(45deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

@-webkit-keyframes shapeMover {

    0%, 100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes shapeMover {

    0%, 100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@-webkit-keyframes banner3Shake {
    0% {
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes banner3Shake {
    0% {
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@-webkit-keyframes squareMover {

    0%, 100% {
        transform: translate(0, 0) rotate(0);
    }

    20%, 60% {
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%, 80% {
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes squareMover {

    0%, 100% {
        transform: translate(0, 0) rotate(0);
    }

    20%, 60% {
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%, 80% {
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@-webkit-keyframes treeMove {

    0%, 100% {
        transform: rotate(0deg) translateX(0);
    }

    25%, 75% {
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes treeMove {

    0%, 100% {
        transform: rotate(0deg) translateX(0);
    }

    25%, 75% {
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        transform: rotate(10deg) translateX(30px);
    }
}


/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}


@-webkit-keyframes service_hexagon_2 {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}


@keyframes service_hexagon_2 {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

    .mobile-nav__wrapper .container {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-nav__wrapper.expanded {
        opacity: 1;
        transform: translateX(0%);
        visibility: visible;
    }

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--thm-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

    .mobile-nav__content .thm-btn {
        padding: 8px 0;
        width: 100%;
        text-align: center;
    }

    .mobile-nav__content .logo-box {
        margin-bottom: 40px;
        display: flex;
    }

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--thm-text-dark);
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .mobile-nav__content .main-menu__list ul {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav__content .main-menu__list li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav__content .main-menu__list li a {
        display: flex;
        justify-content: space-between;
        line-height: 30px;
        color: var(--thm-base);
        font-size: 14px;
        font-family: var(--thm-font);
        font-weight: 500;
        height: 46px;
        align-items: center;
        transition: 500ms;
    }

        .mobile-nav__content .main-menu__list li a.expanded {
            color: var(--thm-primary);
        }

        .mobile-nav__content .main-menu__list li a button {
            width: 30px;
            height: 30px;
            background-color: var(--thm-primary);
            border: none;
            outline: none;
            color: var(--thm-base);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            transform: rotate(-90deg);
            transition: transform 500ms ease;
        }

            .mobile-nav__content .main-menu__list li a button.expanded {
                transform: rotate(0deg);
                background-color: var(--thm-base);
                color: var(--thm-black);
            }

    .mobile-nav__content .main-menu__list li.cart-btn span {
        position: relative;
        top: auto;
        right: auto;
        transform: translate(0, 0);
    }

    .mobile-nav__content .main-menu__list li.cart-btn i {
        font-size: 16px;
    }

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .mobile-nav__top .main-menu__login a {
        color: var(--thm-text-dark);
    }

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

    .mobile-nav__social a {
        font-size: 16px;
        color: var(--thm-primary);
        transition: 500ms;
    }

        .mobile-nav__social a + a {
            margin-left: 30px;
        }

        .mobile-nav__social a:hover {
            color: var(--thm-base);
        }

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .mobile-nav__contact li {
        color: var(--thm-text-dark);
        font-size: 14px;
        font-weight: 500;
        position: relative;
        display: flex;
        align-items: center;
    }

        .mobile-nav__contact li + li {
            margin-top: 15px;
        }

        .mobile-nav__contact li a {
            color: var(--thm-base);
            transition: 500ms;
        }

            .mobile-nav__contact li a:hover {
                color: var(--thm-primary);
            }

        .mobile-nav__contact li > i {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--thm-primary);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-size: 11px;
            margin-right: 10px;
            color: var(--thm-base);
        }

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.main-slider {
    overflow: hidden;
    position: relative;
}

    .main-slider .swiper-slide {
        position: relative;
        background-color: var(--thm-black);
    }

        .main-slider .swiper-slide .container {
            position: relative;
            z-index: 30;
        }

    .main-slider .image-layer {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: -webkit-gradient(linear, left top, right top, color-stop(100%, #070022), color-stop(100%, #07002200));
        background-image: -webkit-linear-gradient(left, #070022 100%, #07002200 100%);
        background-image: -o-linear-gradient(left,#070022 100%,#07002200 100%);
        background-image: linear-gradient(90deg, #070022 100%, #07002200 100%);
        opacity: .2;
    }


.main-header-three .main-menu .main-menu__list > li + li,
.main-menu-three.stricky-header .main-menu__list > li + li {
    margin-left: 30px;
}

.padding {
    padding: 70px 0;
}


.banner {
    background: url(../images/banner.webp) center top no-repeat;
    padding: 60px 0 0px;
}

.banner-mob {
    display: none;
}

.banner_content {
    margin-top: 5%;
}

.banner h1 {
    font-size: 40px;
    line-height: 48px;
    color: #F8C300;
    font-weight: 700;
}

.banner p {
    font-size: 26px;
    line-height: 34px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
}

.event-card {
    width: 320px;
    background: linear-gradient(135deg,#f6b21a,#f3c13a);
    padding: 20px 25px;
    position: relative;
    color: #000;
    margin-top: 10%;
    opacity: 0.9;
}

.event-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    position: relative;
}

.icon {
    width: 26px;
    text-align: center;
    font-size: 18px;
    color: #002E5E;
}

.content p {
    margin: 2px 0;
    font-size: 17px;
    line-height: 22px;
    font-weight: 500;
    color: #000;
}

.divider {
    height: 1px;
    background: #000;
    margin: 6px 0 12px 40px;
    opacity: 0.6;
}



.highlights {
    background: #FFF;
}

    .highlights p {
        font-size: 17px;
        line-height: 26px;
        color: #000;
        text-align: center;
    }

.highlights_box {
    background: #FDBA12;
    height: 100%;
    padding: 35px 25px;
    text-align: center;
}

    .highlights_box h1 {
        font-size: 22px;
        line-height: 28px;
        color: #383838;
        font-weight: 500;
    }

    .highlights_box p {
        font-size: 17px;
        line-height: 24px;
        color: #000;
        font-weight: 300;
        margin-bottom: 0;
    }

    .highlights_box hr {
        background: #3c3aa2;
        height: 2px;
    }

    .highlights_box:hover h1, .highlights_box:hover p {
        color: #fff;
    }

    .highlights_box:hover {
        background: #485AAC;
    }


.ranking {
    background: #F4F4F4;
}


.amity-advantage {
    background: url(../images/advantage-bg.webp) no-repeat center bottom #FFFFFF;
}

.advantage-block {
    margin-top: 3%;
}

.advantage-box img {
    border-radius: 20px;
}

.owl-advantage .owl-dots {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-top: 2%;
}

.owl-advantage .owl-dot {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    margin: 5px !important;
    border: 1px solid #efefef !important;
    background-color: #efefef !important;
}

    .owl-advantage .owl-dot.active {
        background-color: #AFAFAF !important;
    }

.owl-advantage .owl-nav .owl-next {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    font-size: 24px;
    background: #485AAC !important;
    color: #FDBA12 !important;
    right: 0px;
    top: -20%;
    border-radius: 50%;
    padding: 3px 12px;
}

.owl-advantage .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    font-size: 24px;
    background: #FDBA12 !important;
    color: #485AAC !important;
    right: 50px;
    top: -20%;
    border-radius: 50%;
    padding: 3px 12px;
}

.advantage_box {
    display: block;
    background-color: #FDBA12;
    border-radius: 10px;
    min-height: 340px;
    transition-duration: 0.3s;
    display: flex;
}

.advantage_box_details {
    width: calc(100% - 100px);
    padding: 0px 30px;
    padding-top: 10px;
    z-index: 999;
}

    .advantage_box_details h1 {
        font-size: 17px;
        font-weight: 700;
        line-height: 22px;
        margin-bottom: 10px;
        margin-top: 14px;
        letter-spacing: var(--thm-letter-space-small);
    }

    .advantage_box_details p {
        font-size: 14px;
        line-height: 18px;
        color: #000;
        margin: 0;
    }

.advantage_box img {
    margin: auto;
}

.advantage_box:hover {
    transform: scale(1.10);
    z-index: 9;
}


.advantage_blue_box {
    display: block;
    background-color: #485AAC;
    border-radius: 10px;
    min-height: 340px;
    transition-duration: 0.3s;
    display: flex;
}

.advantage_blue_box_details {
    width: calc(100% - 100px);
    padding: 0px 30px;
    padding-top: 10px;
    z-index: 999;
}

    .advantage_blue_box_details h1 {
        font-size: 17px;
        font-weight: 700;
        line-height: 22px;
        color: #FDBA12;
        margin-bottom: 10px;
        margin-top: 14px;
        letter-spacing: var(--thm-letter-space-small);
    }

    .advantage_blue_box_details p {
        font-size: 14px;
        line-height: 18px;
        color: #fff;
        margin: 0;
    }

.advantage_blue_box img {
    margin: auto;
}

.advantage_blue_box:hover {
    transform: scale(1.10);
    z-index: 9;
}

.advantage_box_pic {
    display: flex;
    z-index: 99;
    isolation: isolate;
    transform: translateZ(0);
    padding-right: 10px;
}

    .advantage_box_pic img {
        border-radius: 10px;
        margin: 5px;
    }


.placement {
    background: url(../images/placement-bg.webp) no-repeat center bottom;
    text-align: center;
}

    .placement p {
        font-size: 17px;
        line-height: 26px;
        color: #FFF;
    }

.placement_counter {
    background: #FFF;
    border-radius: 10px;
}

.counter-box {
    height: 100%;
    text-align: center;
    padding: 25px;
    border-right: solid 1px #CCCCCC;
}

    .counter-box h2 {
        font-size: 50px;
        line-height: 60px;
        color: #FDBA12;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .counter-box p {
        font-size: 17px;
        line-height: 26px;
        color: #000;
    }

.placement-logo {
    background: #FFF;
    padding: 60px 0;
}

    .placement-logo img {
        margin: 30px;
        height: 63px;
    }

.placement-mt5 {
    margin-top: 5%;
}


.disciplines {
    background: url(../images/disciplines-bg.webp) no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.disciplines-box {
    padding: 30px;
    box-shadow: 5px 20px 28px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
    background: #fff;
    height: 100%;
}

ul.list_icon {
    width: 100%;
    padding: 0;
    list-style-type: none;
    margin-top: 2%;
}

    ul.list_icon li {
        width: 100%;
        clear: both;
        display: block;
        margin-bottom: 5px;
        background: url(../images/round-icon.webp) 0 9px no-repeat;
        padding-left: 20px;
        font-size: 17px;
        line-height: 26px;
        color: #000;
        padding-bottom: 10px;
        text-align: left;
    }

        ul.list_icon li strong {
            font-weight: 700;
        }


.research-innovation {
    background: url(../images/research-bg.webp) no-repeat center top #24408a;
    text-align: center;
}

    .research-innovation p {
        font-size: 17px;
        line-height: 26px;
        color: #FFF;
    }

.research_counter-box {
    height: 100%;
    text-align: center;
    padding: 35px;
    background: #FDBA12;
}

    .research_counter-box h2 {
        font-size: 50px;
        line-height: 60px;
        color: #485AAC;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .research_counter-box p {
        font-size: 15px;
        line-height: 18px;
        color: #fff;
    }

.video {
    background: #FFF;
}

.interactive-video {
    border: solid 1px #BCBCBC;
    padding: 25px;
    border-radius: 50px;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
}

    .interactive-video iframe {
        border-radius: 50px;
    }

.industry-leaders {
    background: url(../images/industry-bg.webp) no-repeat center bottom;
    text-align: center;
    padding-bottom: 50px;
}

    .industry-leaders p {
        font-size: 17px;
        line-height: 26px;
        color: #000;
    }

.industry-block {
    margin-top: 3%;
}

.industry-box img {
    border-radius: 20px;
}

.owl-industry .owl-dots {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2%;
}

.owl-industry .owl-dot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid #fecc00 !important;
    background-color: #fff !important;
}

    .owl-industry .owl-dot.active {
        background-color: #fecc00 !important;
    }

.owl-industry .owl-nav .owl-next {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    font-size: 24px;
    background: #485AAC !important;
    color: #FDBA12 !important;
    right: 0px;
    top: -10%;
    border-radius: 50%;
    padding: 3px 12px;
}

.owl-industry .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    font-size: 24px;
    background: #FDBA12 !important;
    color: #485AAC !important;
    right: 50px;
    top: -10%;
    border-radius: 50%;
    padding: 3px 12px;
}

.industry_list {
    width: 100%;
    padding: 10px;
}

    .industry_list h1 {
        font-size: 22px;
        line-height: 26px;
        color: #000;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .industry_list p {
        font-size: 15px;
        line-height: 20px;
        color: #000;
    }

    .industry_list img {
        border-bottom: solid 10px #485AAC;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }



.cta {
    position: relative;
}

.cta-one-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.cta h2 {
    color: #fff;
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
}

    .cta h2 span {
        display: block;
    }

.copyright {
    background: #ededed;
    padding: 20px 10px;
    text-align: center;
    color: #2e2e2e;
}

    .copyright p {
        text-align: center;
        font-size: 15px;
        line-height: 20px;
        color: #032C4D;
        margin-bottom: 0;
    }





@media only screen and (min-width: 320px) and (max-width: 769px) {
    .banner {
        background: #485687;
        padding: 0;
    }

    .banner_content {
        display: none;
    }

    .banner-mob {
        display: block;
    }

    .padding {
        padding: 60px 0;
    }

    .admission-form {
        width: 100% !important;
        position: static !important;
    }

        .admission-form h1 {
            font-size: 18px !important;
            line-height: 22px !important;
            letter-spacing: 0 !important;
        }

    .highlights p, .highlights_box p, .placement p, .counter-box p, ul.list_icon li, .research-innovation p, .industry-leaders p {
        font-size: 15px;
        line-height: 22px;
        font-weight: 300;
    }

    .advantage-block {
        margin-top: 10%;
    }

    .advantage_box_details {
        width: calc(130% - 100px);
        padding: 0px 20px !important;
        padding-top: 10px;
        z-index: 999;
    }

    .advantage_blue_box_details {
        width: calc(130% - 100px);
        padding: 0px 20px !important;
        padding-top: 10px;
        z-index: 999;
    }

    .owl-advantage .owl-nav .owl-next {
        right: 0px;
        top: -15%;
        border-radius: 50%;
        padding: 3px 12px;
    }

    .owl-advantage .owl-nav .owl-prev {
        right: 50px;
        top: -15%;
        border-radius: 50%;
        padding: 3px 12px;
    }


    .placement-logo {
        background: #FFF;
        padding: 0px 0;
        padding-bottom: 20px;
    }

    .counter-box {
        border-bottom: solid 1px #CCCCCC;
    }

        .counter-box h2 {
            font-size: 30px;
            line-height: 40px;
            color: #FDBA12;
        }


    .disciplines-box {
        padding-top: 5px;
        padding-bottom: 0;
        box-shadow: 5px 20px 28px 0 rgba(0, 0, 0, 0.0), 0 6px 00px 0 rgba(0, 0, 0, 0);
        padding: 10px;
    }

    ul.list_icon li {
        margin-bottom: 0;
    }

    .research_counter-box {
        padding: 15px;
    }

        .research_counter-box h2 {
            font-size: 30px;
            line-height: 40px;
        }

        .research_counter-box p {
            color: #000;
            margin-bottom: 0;
        }

    .interactive-video {
        padding: 10px;
    }

        .interactive-video iframe {
            border-radius: 40px;
        }

    .cta h2 {
        font-size: 22px;
        line-height: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    .thm-btn {
        font-size: 18px;
        padding: 15px 40px;
        width: 100%;
        text-align: center;
    }
}

.smalltext {
    font-weight: bold;
    font-size: 12px;
    text-align: left;
}
