/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Poppins', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #7b7981;
    --thm-light-black:#014361;
    --thm-gray-rgb: 123, 121, 129;
    --thm-primary: #1989fb;
    --thm-primary-rgb: 25, 137, 251;
    --thm-black: #1b1825;
    --thm-black-rgb: 27, 24, 37;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-extra: #00BFF2;
    --thm-extra-rgb: 66, 217, 190;
    --thm-bdr-color: #dae3e9;
    --thm-bdr-color-rgb: 218, 227, 233;
    --thm-bdr-radius: 8px;
    --thm-sky-blue:#00BFF2;
}

.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;
}

::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;
}

::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;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-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.40;
    z-index: -1;
}

canvas {
    display: block;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: #00BFF2;
    color: var(--thm-base);
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
    padding: 10px 25px 10px;
    transition: all 0.3s linear;
    overflow: hidden;
    z-index: 1;
}

.thm-btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--thm-black);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.thm-btn:hover:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.thm-btn:hover {
    color: var(--thm-base);
}



.section-title {
    margin-top: -19px;
    margin-bottom: 30px;
}

.section-title__tagline {
    display: inline-flex;
    color: var(--thm-gray);
    font-size: 18px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 2px;
    font-weight: 500;
}

.section-title__tagline::before {
    content: '';
    background-color: var(--thm-extra);
    width: 10px;
    height: 2px;
    margin-right: 10px;
}

.section-title__title {
    margin: 0;
    font-weight: 800;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 70px;
}

.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 {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    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(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    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: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-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;
}

/* 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;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    background: var(--thm-base);
}

.main-header__top {
    position: relative;
    display: block;
    padding: 0px 80px;
    background-color: var(--thm-black);
}

.main-header__top-inner {
    position: relative;
    display: block;
    padding: 1.5px 0;
}

.main-header__top-left {
    position: relative;
    display: block;
    float: left;
}

.main-header__top-address {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header__top-address li {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 35px;
}

.main-header__top-address li+li {
    margin-left: 30px;
}

.main-header__top-address li .icon span {
    font-size: 14px;
    color: var(--thm-base);
}

.main-header__top-address li .text {
    margin-left: 10px;
}

.main-header__top-address li .text p {
    font-size: 12px;
    font-weight: 500;
    color: #ada8ba;
    margin: 0;
}

.main-header__top-address li .text a {
    font-size: 12px;
    font-weight: 500;
    color: #ada8ba;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header__top-address li .text a:hover {
    color: var(--thm-base);
}

.main-header__top-right {
    position: relative;
    display: flex;
    float: right;
    align-items: center;
}

.main-header__top-right-text {
    margin-right: 30px;
}

.main-header__top-right-text p {
    font-size: 12px;
    margin: 0;
    color: #ada8ba;
}

.main-header__top-right-text p span {
    color: var(--thm-extra);
}

.main-header__top-right-social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 10px 0;
}

.main-header__top-right-social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header__top-right-social a:hover {
    color: var(--thm-extra);
}

.main-header__top-right-social a+a {
    margin-left: 25px;
}

.main-menu {
    position: relative;
    padding: 0 80px;
    z-index: 91;
}

.main-menu-wrapper {
    position: relative;
    display: block;
}

.main-menu-wrapper-inner {
    position: relative;
    display: block;
}

.main-menu-wrapper__left {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__logo {
    position: relative;
    float: left;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-right: 125px;
}

.main-menu-wrapper__main-menu {
    position: relative;
    display: block;
    float: right;
}

.main-menu-wrapper__right {
    position: relative;
    display: flex;
    float: right;
    padding: 38px 0;
    align-items: center;
}

.main-menu-wrapper__call {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-wrapper__call-icon {
    font-size: 30px;
    color: var(--thm-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper__call-icon:hover {
    color: var(--thm-extra);
}

.main-menu-wrapper__call-number {
    margin-left: 20px;
}

.main-menu-wrapper__call-number h5 {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}

.main-menu-wrapper__call-number h5 a {
    color: #171717;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper__call-number a:hover {
    color: var(--thm-extra);
}

.main-menu-wrapper__call-number p {
    font-size: 14px;
    margin: 0;
    line-height: 14px;
    color: #9D9D9D;
}

.main-menu-wrapper__search-box-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8.5px 0;
}

.main-menu-wrapper__search-box-cart-box:before {
    position: absolute;
    top: -13px;
    bottom: -13px;
    left: -40px;
    content: "";
    background-color: var(--thm-bdr-color);
    width: 1px;
}

.main-menu-wrapper__search,
.main-menu-wrapper__cart {
    font-size: 24px;
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper__cart {
    margin-left: 25px;
}

.main-menu-wrapper__search:hover {
    color: var(--thm-extra);
}

.main-menu-wrapper__cart:hover {
    color: var(--thm-extra);
}









.stricky-header.main-menu {
    padding: 0 80px;
    background-color: var(--thm-base);
}

.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: 33px;
    padding-bottom: 33px;
    position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 55px;
}
.main-menu-wrapper__call-number p img{
    max-width: 12%;
    margin-right: 0px;
}
.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--thm-light-black);
    position: relative;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
    content: '';
    width: 100%;
    height: 2px;
    border-radius: 0px;
    background-color: var(--thm-primary);
    position: absolute;
    top: 100%;
    bottom: 0px;
    transition: transform 500ms ease;
    transform: scale(0) translateY(-50%);
    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-sky-blue);
    text-shadow: 0 0 1px currentColor;
}

.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) translateY(-50%);
}

.main-menu .main-menu__list>li.current>a::before {
    background-color: var(--thm-extra);
}

.main-menu .main-menu__list>li:hover>a::before {
    background-color: var(--thm-extra);
}

.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: #fff;
    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);
    border-bottom-left-radius: var(--thm-bdr-radius);
    border-bottom-right-radius: var(--thm-bdr-radius);
}


.main-menu .main-menu__list li ul li:last-child>a,
.stricky-header .main-menu__list li ul li:last-child>a {
    border-bottom-left-radius: var(--thm-bdr-radius);
    border-bottom-right-radius: var(--thm-bdr-radius);
}

.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: 16px;
    line-height: 30px;
    color: var(--thm-black);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
}

.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: #fff;
}

.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: #fff;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 70px 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 {
    font-size: 20px;
    color: var(--thm-primary);
    cursor: pointer;
    transition: 500ms;
    margin-right: 20px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}


/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
    position: relative;
    display: block;
}


/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@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 banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {

    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        -webkit-transform: translate(40px, 70px) rotate(0deg);
        transform: translate(40px, 70px) rotate(0deg);
    }
}

@keyframes treeMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        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% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}



@-moz-keyframes service_hexagon_2 {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -moz-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@-o-keyframes service_hexagon_2 {
    0% {
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        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: #00415D;
    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: #ffffff;
    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-secondary);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    color: #fff;
    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: #fff;
    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: #ffffff;
}

.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: #ffffff;
    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: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    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: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-primary);
}

.search-popup__content .thm-btn i {
    margin: 0;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider .swiper-slide {
    position: relative;
    background-color: var(--thm-black);
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: unset;
    transform: scale(1);
    transition: transform 7000ms ease;
    z-index: 1;
}

.main-slider__content h2{
    font-family: Poppins;
    font-style: normal;
    font-weight: bold;
    font-size: 120px;
    line-height: 100px;
    text-transform: uppercase;
    -webkit-text-fill-color: #ffffff00;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;   
}

.main-slider-shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: translateX(200px);
    z-index: 2;
}

.main-slider .swiper-slide-active .main-slider-shape-1 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
    left: 13%;
    top: 32%;
    transform: rotate(1.8deg);
}
.main-slider .container {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    z-index: 30;
}

.main-slider__content {
    position: relative;
    display: block;
    z-index: 30;
}

.main-slider h2 {
    margin: 0;
    color: #fff;
    font-weight: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    z-index: 30;
}

.main-slider p {
    font-size: 28px;
    line-height: 42px;
    font-weight: 500;
    color: var(--thm-base);
    margin: 0;
    line-height: 30px;
    margin-bottom: 53px;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
    z-index: 30;
}

.main-slider .thm-btn {
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
}

.main-slider .swiper-slide-active .image-layer {
    transform: scale(1.02);
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active p,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider__nav {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}


.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: 63px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--thm-base);
    background: transparent;
    border: 2px solid rgba(var(--thm-base-rgb), 1);
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 0.3;
    transition: all 500ms ease;
}


.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    opacity: 1;
}

.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__nav .swiper-button-prev .icon-left-arrow {
    position: relative;
    transform: rotate(180deg);
}

#main-slider-pagination {
    z-index: 10;
    bottom: 59px;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    -webkit-transform: translate(-50%, calc(-50% + 95px));
    transform: translate(-50%, calc(0% + 0px));
    text-align: center;
    align-items: center;
    padding: 0 15px;
}

#main-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.4;
    background-color: #fff;
    transition: all 500ms ease;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 10px;
}

#main-slider-pagination .swiper-pagination-bullet {
    margin: 0;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
    opacity: 1;
}

/*--------------------------------------------------------------
# Main slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
}

.main-slider-two .container {
    padding-top: 203px;
    padding-bottom: 220px;
}

.main-slider-two .main-slider__content {
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
}

.main-slider-two__map {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 410px;
    width: 582px;
    transform: translateX(-50%);
    opacity: 0.15;
    z-index: -1;
}

.main-slider-two h3 {
    font-size: 90px;
    color: var(--thm-base);
    line-height: 90px;
    font-weight: lighter;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-120px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
}

.main-slider-two .swiper-slide-active h3 {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider-two h2 {
    letter-spacing: 0;
}

.main-slider-two h2 span {
    position: relative;
    display: inline-block;
}

.main-slider-two h2 span:before {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    content: "";
    height: 5px;
    background-color: var(--thm-base);
}

.main-slider-two p {
    margin-bottom: 43px;
}

.main-slider__nav-two {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.main-slider__nav-two .swiper-button-next {
    position: relative;
    width: 63px;
    height: 63px;
    line-height: 63px;
    border-radius: 50%;
    text-align: center;
    color: var(--thm-base);
    cursor: pointer;
    z-index: 9;
    margin-right: 100px;
    font-size: 20px;
    border: 2px solid rgba(var(--thm-base-rgb), 1);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    transition: 0.5s;
}

.main-slider__nav-two .swiper-button-prev {
    position: relative;
    width: 63px;
    height: 63px;
    line-height: 63px;
    border-radius: 50%;
    text-align: center;
    color: var(--thm-base);
    cursor: pointer;
    z-index: 9;
    margin-left: 100px;
    font-size: 20px;
    border: 2px solid rgba(var(--thm-base-rgb), 1);
    background-color: transparent;
    transform: rotate(-180deg);
    transition: 0.5s;
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-slider__nav-two .swiper-button-next:hover,
.main-slider__nav-two .swiper-button-prev:hover {
    opacity: 1;
}

.main-slider__nav-two .swiper-button-next::after,
.main-slider__nav-two .swiper-button-prev::after {
    display: none;
}

.main-slider__nav-two .swiper-button-prev {
    margin-bottom: 10px;
}

.main-slider-two #main-slider-pagination {
    text-align: center;
    justify-content: center;
}



/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    padding: 150px 0 208px;
    padding-bottom: 130px;
}
.brand-title{
    text-align: center;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 34px;
    align-items: center;
    color: #000000;
    padding-bottom: 50px;
}
.brand-one .swiper-container {
    padding: 0 10px;
    max-width: 965px;
}

.brand-one .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-one .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.8;
    width: auto;
}

.brand-one .swiper-slide img:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.about-one__left {
    position: relative;
    display: block;
    left:66%;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}


.about-one__img:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.about-one__img>img {
    width: 65%;
}

.about-one__small-img {
    position: absolute;
    bottom: -150px;
    left: -240px;
    z-index: 2;
}

.about-img-data{
    width: 85%;
    padding-top: 35px;
    padding-bottom: 35px;
}
.about-one__right {
    position: relative;
    display: block;
}

.about-one__right .section-title {
    margin-bottom: 28px;
}

.about-one__text {
    margin: 0;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 31px;
    /* or 155% */
    
    display: flex;
    align-items: center;
    
    color: #000000;
}

.brand-title-mod h2{text-align: left;margin-bottom: 20px;}
.about-one__points-box {
    position: relative;
    display: block;
    margin-left: 21px;
    margin-top: 32px;
}

.about-one__points-box:before {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: -21px;
    content: "";
    background-color: var(--thm-primary);
    width: 2px;
}

.about-one__points {
    position: relative;
    display: block;
}

.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 {
    font-size: 20px;
    color: var(--thm-extra);
}

.about-one__points li .text {
    margin-left: 16px;
}

.about-one__points li .text p {
    color: var(--thm-black);
    margin: 0;
}

.about-one__it-solutions {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--thm-bdr-color);
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 39px;
}

.about-one__it-solutions-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__it-solutions-icon span {
    font-size: 70px;
    color: var(--thm-extra);
    position: relative;
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.about-one__it-solutions:hover .about-one__it-solutions-icon span {
    transform: rotateY(360deg);
}

.about-one__it-solutions-text-box {
    margin-left: 20px;
}

.about-one__it-solutions-text {
    font-weight: 600;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
}
.about-one__small-img img{width:50%;}
/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    background-color: #F4F4F4;
    padding: 70px 0 210px;
    padding-bottom: 50px;
}
.services-text h2{
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 62px;
    color: #00415F;
    text-align: left;
    margin-bottom: 30px;    
}
.services-text h2 span{
  color:#00BFF2;  
}
.services-text p{
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 31px;
    color: #000000;    
}
.services-one .row {
    --bs-gutter-x: 15px;
}

.services-one__single {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    transition: all 500ms ease;
    z-index: 2;
}

.services-one__link a i{
    font-size: 15px;
    margin-left: 5px;     
}

.services-one__single:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 70px 0px rgb(0, 0, 0, .05);
}

.services-one__icon {
    position: relative;
    height: 130px;
    width: 130px;
    background-color: #eef3f7;
    border-radius: 50%;
    font-size: 65px;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 500ms ease;
    -webkit-transition-delay: 400ms;
    -moz-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms;
    z-index: 2;
}

.services-one__single:hover .services-one__icon {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.services-one__icon:before {
    position: absolute;
    top: -20px;
    bottom: -17px;
    left: 61px;
    content: "";
    width: 2px;
    background-color: var(--thm-primary);
    z-index: -1;
}
.services-btn{padding-top: 20px;}
.services-one__icon:after {
    position: absolute;
    top: -15px;
    bottom: -22px;
    right: 61px;
    content: "";
    width: 2px;
    background-color: var(--thm-primary);
    z-index: -1;
}

.services-one__icon:before,
.services-one__icon:after {
    opacity: 0;
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon:before,
.services-one__single:hover .services-one__icon:after {
    transform: rotate(45deg);
    opacity: 1;
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.services-one__title {
    font-size: 23.5px;
    font-weight: 500;
    line-height: 30px;
    color: #000000;
    text-align: left;
}

.services-one__link a{
    font-size: 18px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #00BFF2;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    margin-top: 50px;    
}

.services-one__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.services-one__title a:hover {
    color: var(--thm-primary);
}

.services-one__text {
    margin: 0;
    padding-bottom: 20px;
}

.services-one__arrow {
    position: relative;
    display: block;
}

.services-one__arrow a {
    position: relative;
    height: 63px;
    width: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--thm-black);
    background-color: #eef3f7;
    margin: 0 auto;
    transition: all 500ms ease;
    z-index: 1;
}

.services-one__single:hover .services-one__arrow a {
    background-color: var(--thm-extra);
    color: var(--thm-base);
}
.service-inner .services-one__single{height: 315px;}
.service-inner .services-one__single .services-one__link a{position: absolute;bottom: 25px;}
.back-btn a{
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    align-items: center;
    text-decoration-line: underline;
    color: #004160;
}
.back-btn a img{
width: 2%;
margin-right: 10px;
}
.md{font-weight: 600 !important;margin-top: 20px;}
.mr-t-r{margin-top: 0px;padding-top: 0px !important;}
.mr-b-r{margin-bottom: 0px !important;}
.service-inner{padding-top: 70px;}
.service-inner-mod{padding-top: 40px;}
.img-fit{
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
    display: block;
    margin: auto auto;    
}
.service-in-r{margin-left: 40px;}
.service-in-l{margin-right: 40px;}
.pd-100{padding-bottom: 100px;}
.pd-top-20{padding-top: 0px;}
.core-value-inner h3{
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    align-items: center;
    text-transform: uppercase;
    padding-bottom: 10px;    
}
.core-value-inner p{
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 26px; 
}
.core-value-inner-one h3, .core-value-inner-one p{color:#fff;}
.core-value-inner-two h3, .core-value-inner-two p{color:#fff;}
.core-value-inner-three h3, .core-value-inner-three p{color:#000;}
.possition-bottom{position: absolute;bottom: 0;}
.core-value-inner-two{position: relative;}
.pd-b-r{padding-bottom: 0px;}
.pd-t-r{padding-top: 0px;}
.contact-form input, .contact-form textarea{
    width: 100%;
    margin-bottom: 15px;
    border: none;
    padding: 8px 20px;   
}
.contact-one{background-color: #fff;padding:70px 0px;}
.contact_message{height: 130px;}
.contact-form button{
    background: #00BFF2;
    padding: 5px 30px;  
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    background-color:#fff !important;
}
@-webkit-keyframes autofill {
    0%,100% {
        background: #fff;
    }
}
input:-internal-autofill-selected{background: #fff !important;background-color: #fff !important;}
textarea:-internal-autofill-selected{background: #fff !important;background-color: #fff !important;}
.g-recaptcha{margin-bottom: 20px;}
/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background-color: #00415D;
}

.site-footer__top {
    position: relative;
    display: block;
    background-color: #00415D;
}

.site-footer__top-inner {
    position: relative;
    display: block;
    padding: 30px 0 30px;
    z-index: 1;
}
.footer-widget-contact-list p a{
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    align-items: center;
    color: #FFFFFF;
}

.footer-widget-contact-list p img{
    width: 13%; 
    margin-right: 10px;}

.footer-widget-contact-list p{
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
} 

.footer-widget-contact-list p{display: flex;}
.data1{width: 70% !important;margin-right: 0px !important;}
.site-footer-map {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -42px;
    height: 566px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.04;
    z-index: -1;
}

.footer-widget__about {
    position: relative;
    display: block;
}

.footer-widget__about-text {
    font-size: 16px;
    color: #ada8ba;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 30px;
}

.footer-widget__about-social {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.footer-widget__about-social a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    background-color: #100d16;
    border-radius: 50%;
    font-size: 13px;
    height: 45px;
    width: 45px;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-widget__about-social a:hover {
    color: var(--thm-black);
    transform: rotate(360deg);
}

.footer-widget__about-social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-base);
    border-radius: 50%;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.footer-widget__about-social a:hover:before {
    transform: scaleX(1.0);
}

.footer-widget__about-social a+a {
    margin-left: 10px;
}

.footer-widget__title {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 800;
    line-height: 30px;
    margin-bottom: 30px;
}

.footer-widget__links {
    position: relative;
    display: block;
}

.footer-widget__links-list {
    position: relative;
    display: block;
    float: left;
    margin-right: 30px;
}

.footer-widget__links-list li+li {
    margin-top: 0px;
}

.footer-widget__links-list li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #ada8ba;
    transition: all 500ms ease;
}

.footer-widget__links-list li a::after {
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left center;
    background-color: currentColor;
    transition: transform 500ms ease;
}

.footer-widget__links-list li:hover>a::after {
    transform: scale(1, 1);
    transform-origin: right center;
}

.footer-widget__links-list li a:hover {
    color: var(--thm-base);
}

.footer-widget__links-list-two {
    margin-right: 0px;
}

.footer-widget__contact {
    position: relative;
    display: block;
}

.footer-widget__contact-text {
    font-size: 16px;
    color: #ada8ba;
    margin: 0;
    line-height: 30px;
    margin-bottom: 20px;
    padding-top: 3px;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
}

.footer-widget__contact-list li {
    display: flex;
}

.footer-widget__contact-list li .icon {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

.footer-widget__contact-list li .icon span {
    font-size: 13px;
    color: var(--thm-extra);
}

.footer-widget__contact-list li .text {
    margin-left: 10px;
}

.footer-widget__contact-list li .text p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 30px;
}

.footer-widget__contact-list li .text p a {
    color: var(--thm-base);
    transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:hover {
    color: var(--thm-extra);
}

.footer-widget__newsletter {
    position: relative;
    display: block;
}

.footer-widget__newsletter-text {
    font-size: 16px;
    color: #ada8ba;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
    padding-bottom: 23px;
    padding-top: 5px;
}

.footer-widget__newsletter-form {
    position: relative;
    display: block;
}

.footer-widget__newsletter-input-box {
    position: relative;
    display: block;
}

.footer-widget__newsletter-input-box input[type="email"] {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 500;
    text-transform: capitalize;
    height: 70px;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: var(--thm-bdr-radius);
    padding-right: 95px;
    outline: none;
    padding-left: 20px;
}

.footer-widget__newsletter-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-primary);
    border: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    color: var(--thm-base);
    transition: all 500ms ease;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .2em;
}

.footer-widget__newsletter-btn:hover {
    background-color: var(--thm-extra);
}

.site-footer__bottom {
    position: relative;
    display: block;
    z-index: 2;
}

.site-footer__bottom .container{
    border-top: 1px solid #036687;
}

.site-footer__bottom-container {
    position: relative;
    display: block;
    max-width: 1595px;
    width: 100%;
    margin: 0 auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #00415D;
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.site-footer__bottom-text {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 0px;
}

.site-footer__bottom-text a {
    color: #ada8ba;
    transition: all 500ms ease;
}

.site-footer__bottom-menu li a{
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    align-items: center;
    text-decoration-line: underline;
    color: #FFFFFF;   
}
.site-footer__bottom-menu li:first-child{margin-right: 65px;}

.site-footer__bottom-text a:hover {
    color: var(--thm-base);
}

.site-footer__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer__bottom-menu li+li {
    margin-left: 12px;
}

.site-footer__bottom-menu li a {
    display: inline-block;
    transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
    color: var(--thm-base);
}
.services-one__de{
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;   
    color: #000000;
    text-align: left;
    padding-top: 20px;
    margin-bottom: 0px;
}
.services-one__de-li li{
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;   
    color: #000000;
    text-align: left;
    padding-top: 20px;
}
.t-c{text-align: center;}
.core-value-inner{
    padding: 20px;
    height: 600px;
        background-size: cover;
        background-repeat: no-repeat;
}
/*-----------------------------------------------------------------
#services
-----------------------------------------------------------------*/
.inner-page-banner{padding: 50px 0px;background-size: cover;background-repeat: no-repeat;text-align: center;}
.inner-page-banner h2{font-size: 80px;line-height: 100px;text-transform: uppercase;-webkit-text-fill-color: #ffffff00;-webkit-text-stroke-width: 1px;-webkit-text-stroke-color: white;font-weight: 700;} 
.inner-page-banner p{font-weight: 400;font-size: 25px;color: #FFFFFF;}
/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
}

.brand-two__inner {
    position: relative;
    display: block;
    border-top: 1px solid var(--thm-bdr-color);
    padding: 98px 0 99px;
}

.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;
}

.brand-two .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.3;
    max-width: 100%;
}

.brand-two .swiper-slide img:hover {
    opacity: 1;
}
.swiper-slide{height: auto;}


/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
    margin-top: 0;
}

.site-footer-two .site-footer__top-inner {
    padding: 116px 0 120px;
}

.site-footer-two .site-footer-map {
    bottom: -95px;
}



/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 21px;
}

.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(--thm-extra);
    color: var(--thm-base);
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 80px;
    border-radius: var(--thm-bdr-radius);
    width: 100%;
    padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-base);
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-base);
}

input:-webkit-autofill {background-color: #fff !important; border: 1px solid #00415d9e;}

.sidebar__search-form button[type="submit"] {
    background-color: transparent;
    color: var(--thm-base);
    font-size: 24px;
    position: absolute;
    top: 0;
    right: 18px;
    bottom: 0;
    width: 70px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
}

.sidebar__categories {
    position: relative;
    display: block;
    background: #eef3f7;
    padding: 45px 25px 36px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__categories .sidebar__title {
    margin-left: 25px;
}

.sidebar__categories-list {
    margin: 0;
}

.sidebar__categories-list li+li {
    margin-top: 6px;
}

.sidebar__categories-list li a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 3px 25px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__categories-list li a:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, .05);
    color: var(--thm-black);
}

.sidebar__categories-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--thm-black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar__categories-list li a:hover span {
    color: var(--thm-black);
    transform: translateY(-50%) scale(1);
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 45px 50px 43px;
    background-color: #eef3f7;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__post .sidebar__title {
    margin-bottom: 27px;
}

.sidebar__post-list {
    margin: 0;
}

.sidebar__post-list li {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 1px solid var(--thm-base);
    padding-bottom: 33px;
}

.sidebar__post-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar__post-list li+li {
    margin-top: 21px;
}

.sidebar__post-image {
    margin-right: 20px;
}

.sidebar__post-image>img {
    width: 70px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__post-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 26px;
    color: var(--thm-black);
}

.sidebar__post-content_meta {
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-gray);
    display: block;
}

.sidebar__post-content_meta i {
    font-size: 14px;
    color: var(--thm-extra);
    padding-right: 4px;
}

.sidebar__post-content h3 a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.sidebar__post-list li:hover .sidebar__post-content h3 a {
    color: var(--thm-primary);
}

.sidebar__tags {
    position: relative;
    display: block;
    background: #eef3f7;
    padding: 47px 45px 50px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__tags .sidebar__title {
    margin-left: 5px;
    margin-bottom: 36px;
}

.sidebar__tags-list {
    margin-top: -10px;
}

.sidebar__tags-btn {
    position: relative;
    color: var(--thm-black);
    font-size: 12px;
    font-weight: 800;
    background-color: var(--thm-base);
    display: inline-block;
    padding: 2px 15px;
    margin-left: 5px;
    margin-top: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__tags-btn:after {
    background-color: var(--thm-primary);
}

.sidebar__tags-list a+a {
    margin-left: 5px;
    margin-top: 10px;
}
.wh-i{background-color: #fff;}
.pdt-100{padding-top: 100px;}
.contact-text-width{max-width: 750px;}
.mr-l-50{margin-left: 50px;}