/*=============================
	Mobile Menu CSS
===============================*/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--thm-white);
    margin-right: 30px;
    top: 15px;
}

.nav-logo img {
    width: 150px;
}

@keyframes menu_sticky {
    0% {
        margin-top: -90px;
    }

    50% {
        margin-top: -50px;
    }

    100% {
        margin-top: 0;
    }
}
.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    background: #011C39;
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
    z-index: 99;
    animation-name: menu_sticky;
    animation-duration: 0.60s;
    animation-timing-function: ease-out;
    transition: all .25s ease-in-out;
}

.sticky-menu .navbar-wrap ul li a {
    padding: 35px 0;
}


/*=============================
	Main Header Css
===============================*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    z-index: 99;
}

.menu-wrap {
    position: relative;
    display: block;
}

.menu-area__inner {
    position: relative;
    display: block;
}

.menu-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-box-one {
    position: relative;
    display: flex;
}

.logo-box-one a {
    position: relative;
    display: inline-block;
}

.navbar-wrap {
    position: relative;
}

.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 0 0 auto;
}

.navbar-wrap ul li {
    position: relative;
    display: block;
    list-style: none;
}

.navbar-wrap ul li+li {
    margin-left: 37px;
}

.navbar-wrap ul li a {
    position: relative;
    display: block;
    color: rgba(6, 37, 71, 0.7);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-body-font);
    padding: 29px 0px 28px;
    z-index: 1;
}

.navbar-wrap>ul>li::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 4px;
    background: var(--thm-secondary);
    border-radius: 5px 5px 0px 0px;
    transition: transform 700ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    content: "";
}

.navbar-wrap>ul>li.active:after,
.navbar-wrap>ul>li:hover:after {
    transform: scale(1, 1);
    transform-origin: left center;
}

.navbar-wrap>ul>li.active>a,
.navbar-wrap>ul>li:hover>a {
    color: #062547;
}

.main-menu #menu-header-menu li.menu-item-has-children .dropdown-btn {
    display: none;
}

.navbar-wrap>ul>li.menu-item-has-children>a {
    margin-right: 20px;
}

.navbar-wrap>ul>li.menu-item-has-children>a::after {
    position: absolute;
    top: 50%;
    right: -20px;
    content: "\e915";
    font-weight: 700;
    font-family: 'icomoon' !important;
    font-size: 15px;
    line-height: 15px;
    transition: .3s linear;
    transform: translateY(-50%);
}

.navbar-wrap>ul>li.menu-item-has-children.active>a::after {
    color: #062547;
}


.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 230px;
    border: 0px solid #f5f5f5;
    background: var(--thm-white);
    margin: 0 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 0;
    padding: 0px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.navbar-wrap ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.navbar-wrap ul li .sub-menu .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
}

.navbar-wrap ul li .sub-menu li {
    margin-left: 0;
    text-align: left;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-wrap ul li .sub-menu li:last-child {
    border-bottom: none;
}

.navbar-wrap ul li .sub-menu li a {
    padding: 15px 15px 13px 25px;
    line-height: 1.4;
    font-weight: 500;
    color: #5d5d5d;
    background: var(--thm-white);
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-wrap ul li .sub-menu li a:hover {
    color: var(--thm-white);
    background: var(--thm-primary);
}
.main-header-two .navbar-wrap ul li .sub-menu li a:hover {
    background: #FF5E14;
}


/*=============================
	Main Header One Css
===============================*/
.main-header-one {
    position: relative;
    display: block;
    background: #011C39;
    z-index: 11;
}

.main-header-one .menu-nav {
    display: block;
}


.main-header-one__outer .auto-container {
    max-width: 1950px;
    width: 100%;
}

.main-header-one__top {
    position: relative;
    display: block;
    padding: 15px 0px 15px;
    padding-left: 50px;
    z-index: 1;
}

.main-header-one__top-pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -999999px;
    background-attachment: scroll;
    background-repeat: repeat-x;
    background-position: center center;
    z-index: -1;
}

.main-header-one__top-pattern::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, #011C39 -20%, rgba(1, 28, 57, 0.65) 1076%);
    content: "";
}

.main-header-one__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-one__top-left {
    position: relative;
    display: block;
}

.header-contact-info {
    position: relative;
    display: block;
}

.header-contact-info ul {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 25px;
    margin-right: 25px;
}

.header-contact-info ul li::before {
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 2px;
    width: 1px;
    background: #53545A;
    content: "";
}

.header-contact-info ul li:last-child:before {
    display: none;
}

.header-contact-info ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.header-contact-info ul li .icon-box {
    position: relative;
    display: block;
    padding-right: 10px;
}

.header-contact-info ul li .icon-box span {
    position: relative;
    display: inline-block;
    color: #FF5E14;
    font-size: 16px;
    line-height: 16px;
}
.header-contact-info-style-01 ul li .icon-box span {
    color: var(--thm-primary);
}

.header-contact-info ul li p {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
}

.header-contact-info ul li p a {
    color: var(--thm-white);
}

.header-contact-info ul li p a:hover {
    color: var(--thm-primary);
}

.main-header-one__top-right {
    position: relative;
    display: block;
    z-index: 1;
}

.main-header-one__top-right::before {
    position: absolute;
    top: -21px;
    left: 0;
    bottom: -20px;
    right: -320px;
    background: linear-gradient(90deg, #186265 0%, rgba(24, 98, 101, 0.00) 100%);
    content: "";
    z-index: -1;
}

.header-social-links {
    position: relative;
    display: block;
    padding-left: 30px;
}

.header-social-links::before {
    content: "";
    position: absolute;
    top: -21px;
    left: -25px;
    width: 25px;
    height: 28px;
    border-right: 25px solid var(--thm-secondary);
    border-bottom: 28px solid transparent;
}

.header-social-links:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -25px;
    width: 25px;
    height: 28px;
    border-right: 25px solid var(--thm-secondary);
    border-top: 28px solid transparent;
}

.header-social-links ul {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0;
}

.header-social-links ul li {
    position: relative;
    display: block;
    margin-right: 20px;
}

.header-social-links ul li:last-child {
    margin-right: 0;
}

.header-social-links ul li a {
    position: relative;
    display: block;
    color: var(--thm-white);
}

.header-social-links ul li a:hover {
    color: var(--thm-primary);
}

.header-social-links2 ul li a:hover {
    color: #FF5E14;
}

.header-social-links ul li a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.main-header-one__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 51px;
    z-index: 1;
}

.main-header-one__bottom-left {
    position: relative;
    display: block;
}

.main-header-one__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-one__bottom-right .search-box {
    position: relative;
    display: block;
}
.main-header-one__bottom-right .btn-box {
    position: relative;
    display: block;
    margin-left: 26px;
}

.main-header-one__bottom-right .btn-box .thm-btn::after {
    background-color: var(--thm-white);
}


.sticky-menu .main-header-one__top {
    display: none;
}

.sticky-menu .logo-box-one {
    height: 94px;
}


/*=============================
	Main Header Two Css
===============================*/
.main-header-two {
    position: relative;
    display: block;
}

.main-header-two__outer {
    position: relative;
    display: block;
    padding-left: 420px;
}

.logo-box-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.logo-box-two:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100000px;
    bottom: 0;
    right: 0px;
    border-bottom: 130px solid #FF5E14;
    border-right: 70px solid transparent;
    z-index: -1;
}

.logo-box-two a {
    position: relative;
    display: block;
}

.logo-box-two a img {
    width: 100%;
}

.main-header-two__inner {
    position: relative;
    display: block;
    width: 100%;
    padding-right: 300px;
}

.main-header-two__top {
    position: relative;
    display: block;
    z-index: 1;
}

.main-header-two__top-pattern {
    position: absolute;
    top: 0;
    left: -99999px;
    bottom: 0;
    right: -99999px;
    background-attachment: scroll;
    background-repeat: repeat-x;
    background-position: center center;
    z-index: -1;
}

.main-header-two__top-pattern::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, #121213 -20%, rgba(18, 18, 19, 0.60) 1076%);
    content: "";
    z-index: -2;
}

.main-header-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-two__top-left {
    position: relative;
    display: block;
}

.main-header-two__top-right {
    position: relative;
    display: block;
}

.main-header-two__top-right .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-two__top-right .inner .header-social-links {
    padding-left: 0px;
}

.main-header-two__top-right .inner .header-social-links::before {
    display: none;
}

.main-header-two__top-right .inner .header-social-links::after {
    display: none;
}

.main-header-two__top-right .inner .btn-box {
    position: relative;
    display: block;
    margin-left: 40px;
}

.main-header-two__top-right .inner .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 50px;
    font-weight: 700;
    padding: 0px 40px 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.main-header-two__top-right .inner .btn-box a:hover {
    color: var(--thm-white);
}

.main-header-two__top-right .inner .btn-box a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    clip-path: polygon(92% 0, 100% 50%, 92% 100%, 0% 100%, 6% 50%, 0% 0%);
    background: #FF5E14;
    content: "";
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.main-header-two__top-right .inner .btn-box a:hover::before {
    background: var(--black-color);
}

.main-header-two__top-right .inner .btn-box a span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 15px;
    line-height: 15px;
    top: 1px;
    padding-left: 3px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-two__top-right .inner .btn-box a:hover span {
    color: var(--thm-white);
}

.main-header-two__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 65px;
    z-index: 1;
}

.main-header-two__bottom::before {
    position: absolute;
    top: 0;
    left: -99999px;
    bottom: 0;
    right: -99999px;
    background: var(--thm-white);
    content: "";
    z-index: -1;
}

.main-header-two__bottom-left {
    position: relative;
    display: block;
}

.main-header-two .navbar-wrap ul li a {
    color: #062547;
    padding: 28px 0px 28px;
}

.main-header-two .navbar-wrap>ul>li.active>a,
.main-header-two .navbar-wrap>ul>li:hover>a {
    color: #FF5E14;
}

.main-header-two .navbar-wrap>ul>li.menu-item-has-children>a::after {
    content: "\e933";
}

.main-header-two .navbar-wrap>ul>li.menu-item-has-children.active>a::after {
    color: #FF5E14;
}

.main-header-two .navbar-wrap>ul>li::after {
    background: #FF5E14;
}

.main-header-two__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-two__bottom-right .search-box {
    position: relative;
    display: block;
    padding-right: 20px;
    margin-right: 20px;
}

.main-header-two__bottom-right .search-box::before {
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 2px;
    width: 2px;
    background: #edeef0;
    content: "";
}

.main-header-two__bottom-right .search-box a {
    position: relative;
    display: inline-block;
    color: var(--black-color);
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    top: 4px;
}

.main-header-two__bottom-right .search-box a:hover {
    color: var(--thm-primary);
}

.main-header__language-switcher {
    position: relative;
    display: block;
    margin-right: 25px;
    padding-right: 25px;
}

.main-header__language-switcher::before {
    position: absolute;
    top: 1px;
    right: 0;
    bottom: 1px;
    width: 2px;
    background: #efefef;
    content: "";
}

.main-header__language-switcher .language-switcher {
    position: relative;
    display: block;
}

.main-header__language-switcher .language-switcher form {
    position: relative;
    display: block;
    width: 35px;
}

.main-header__language-switcher .language-switcher form .select-box {
    position: relative;
    display: block;
}

.main-header__language-switcher .nice-select {
    background-color: #fff;
    border-radius: 0px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 600;
    height: 30px;
    line-height: 30px;
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    font-family: var(--thm-body-font);
}

.main-header__language-switcher .nice-select:after {
    right: 0px;
    margin-top: -4px;
    border-bottom: 1px solid var(--black-color);
    border-right: 1px solid var(--black-color);
}

.main-header__language-switcher .nice-select .list {
    width: 65px;
    background-color: var(--thm-primary);
}

.main-header-two__bottom-right .contact-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-two__bottom-right .contact-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #010232;
    border-radius: 50%;
}

.main-header-two__bottom-right .contact-box .icon-box::before {
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid #e6e5ea;
    border-radius: 50%;
    content: "";
}

.main-header-two__bottom-right .contact-box .icon-box span {
    position: relative;
    display: inline-block;
    color: #FF5E14;
    font-size: 15px;
    line-height: 15px;
}

.main-header-two__bottom-right .contact-box .text {
    position: relative;
    display: block;
    margin-left: 20px;
}

.main-header-two__bottom-right .contact-box .text p {
    margin: 0;
}

.main-header-two__bottom-right .contact-box .text p a {
    color: #020231;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.main-header-two__bottom-right .contact-box .text p a:hover {
    color: #FF5E14;
}



.sticky-menu .main-header-two__top {
    display: none;
}

.sticky-menu .logo-box-two {
    position: absolute;
    width: 400px;
    height: 80px;
}

.sticky-menu .logo-box-two:before {
    border-bottom: 80px solid #FF5E14;
    border-right: 40px solid transparent;
}




/*=============================
	Main Header Three Css
===============================*/
.main-header-three {
    position: absolute;
}

.main-header-three__inner {
    position: relative;
    display: block;
    padding-left: 110px;
}

.logo-box-three {
    position: absolute;
    top: 30px;
    left: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 120px;
    background: var(--thm-primary);
    border-radius: 4px;
    z-index: 5;
}

.logo-box-three a {
    position: relative;
    display: inline-block;
}

.logo-box-three a img {
    width: 100%;
}

.main-header-three__top {
    position: relative;
    display: block;
    padding: 19px 0px 19px;
    z-index: 1;
}

.main-header-three__top-pattern {
    position: absolute;
    top: 0;
    left: -99999px;
    bottom: 0;
    right: -99999px;
    background-attachment: scroll;
    background-repeat: repeat-x;
    background-position: center center;
    z-index: -1;
}

.main-header-three__top-pattern::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, #121213 -20%, rgba(18, 18, 19, 0.85) 1076%);
    content: "";
    z-index: -2;
}

.main-header-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-three__top-left {
    position: relative;
    display: block;
}

.header-contact-info-style2 {
    position: relative;
    display: block;
}

.header-contact-info-style2 ul {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info-style2 ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.header-contact-info-style2 ul li:last-child {
    margin-right: 0;
}

.header-contact-info-style2 ul li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(var(--thm-primary-rgb), 0.1);
}

.header-contact-info-style2 ul li .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 20px;
    line-height: 20px;
}

.header-contact-info-style2 ul li .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
}

.header-contact-info-style2 ul li .text-box p {
    color: rgba(var(--thm-white-rgb), 0.8);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.header-contact-info-style2 ul li .text-box h4 {
    color: var(--thm-white);
    font-size: 17px;
    line-height: 27px;
    font-weight: 600;
    font-family: var(--thm-body-font);
}

.header-contact-info-style2 ul li .text-box h4 a {
    color: var(--thm-white);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    color: inherit;
    transition: all 500ms ease;
}

.header-contact-info-style2 ul li .text-box h4 a:hover {
    background-size: 100% 1px;
}

.main-header-three__top-right {
    position: relative;
    display: block;
}

.main-header-three__top-right .title {
    position: relative;
    display: block;
    margin-bottom: 6px;
}

.main-header-three__top-right .title p {
    color: rgba(var(--thm-white-rgb), 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.main-header-three__top-right .social-links {
    position: relative;
    display: block;
}

.main-header-three__top-right .social-links a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
}

.main-header-three__top-right .social-links a:hover {
    color: var(--thm-primary);
}

.main-header-three__top-right .social-links a+a {
    margin-left: 15px;
}

.main-header-three__top-right .social-links a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.main-header-three__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-three__bottom-left {
    position: relative;
    display: block;
}

.main-header-three .navbar-wrap>ul>li::after {
    display: none;
}

.main-header-three .navbar-wrap>ul>li.menu-item-has-children>a::after {
    content: "\e933";
}

.main-header-three .navbar-wrap ul li a {
    color: var(--thm-white);
}

.main-header-three .navbar-wrap>ul>li.active>a,
.main-header-three .navbar-wrap>ul>li:hover>a {
    color: var(--thm-primary);
}

.main-header-three .navbar-wrap>ul>li.menu-item-has-children.active>a::after {
    color: var(--thm-primary);
}

.main-header-three__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__bottom-right .search-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-right: 25px;
    margin-right: 25px;
}

.main-header-three__bottom-right .search-box::before {
    position: absolute;
    top: -2px;
    right: 0;
    bottom: -2px;
    width: 1.5px;
    background: rgba(var(--thm-white-rgb), 0.2);
    content: "";
}

.main-header-three__bottom-right .search-box a {
    color: var(--thm-white);
    font-size: 28px;
    line-height: 28px;
}

.main-header-three__bottom-right .search-box a:hover {
    color: var(--thm-primary);
}

.main-header-three__bottom-right .btn-box {
    position: relative;
    display: block;
}

.main-header-three__bottom-right .btn-box .thm-btn {
    padding-top: 5px;
    padding-bottom: 5px;
}

.main-header-three__bottom-right .btn-box .thm-btn::before {
    background: var(--black-color);
}

.main-header-three__bottom-right .navSidebar-button-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 25px;
}

.main-header-three__bottom-right .navSidebar-button-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
}

.main-header-three__bottom-right .navSidebar-button-box a span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
}

.main-header-three__bottom-right .navSidebar-button-box a:hover {
    color: var(--thm-primary);
}



.sticky-menu .main-header-three__inner {
    position: relative;
    display: flex;
    padding-left: 0;
    align-items: center;
    justify-content: space-between;
}

.sticky-menu .main-header-three__top {
    display: none;
}

.sticky-menu .logo-box-three {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 94px;
}

.sticky-menu .main-header-three__bottom-left {
    margin-right: 50px;
}

/*=============================
	Main Header Four Css
===============================*/
.main-header-two.style4 {
    position: relative;
    display: block;
}

.main-header-two.style4 .main-header-two__top-right .inner .btn-box a {
    color: var(--black-color);
}

.main-header-two.style4 .main-header-two__top-right .inner .btn-box a:hover {
    color: var(--thm-white);
}

.main-header-two.style4 .main-header-two__top-right .inner .btn-box a span {
    color: var(--black-color);
}

.main-header-two.style4 .main-header-two__top-right .inner .btn-box a:hover span {
    color: var(--thm-white);
}

.main-header-two.style4 .main-header-two__top-pattern::before {
    background: linear-gradient(180deg, #01011D -20%, rgba(15, 15, 16, 0.65) 1076%);
}
.main-header-two__bottom-right .header__lang::before {
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 2px;
    width: 2px;
    background: #edeef0;
    content: "";
}



/*** 
=============================================
    Footer One Css
=============================================
***/
.footer-one {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.footer-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.footer-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-bg-one);
    opacity: 0.95;
    content: "";
    z-index: -2;
}

.footer-main {
    position: relative;
    display: block;
    padding: 120px 0px 75px;
    overflow: hidden;
    z-index: 1;
}

.footer-one__top {
    position: relative;
    display: block;
    background: var(--thm-primary);
    border-radius: 4px;
    overflow: hidden;
    padding: 29px 40px 29px;
    z-index: 1;
}

.footer-one__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-one__top-inner .logo-box {
    position: relative;
    display: block;
    padding-right: 42px;
}

.footer-one__top-inner .logo-box::before {
    position: absolute;
    top: -35px;
    right: 0;
    bottom: -34px;
    width: 2px;
    background: #dbbf51;
    content: "";
}

.footer-one__top-inner .logo-box a {
    position: relative;
    display: block;
}

.footer-one__top-inner .logo-box a img {
    width: 100%;
}

.footer-one__top-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 950px;
    width: 100%;
    flex: 1;
}

.footer-one__top-right .text {
    position: relative;
    display: block;
    flex: 1;
}

.footer-one__top-right .text p {
    color: var(--thm-secondary);
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--thm-heading-font);
    margin: 0;
    margin-bottom: 20px;
}

.footer-one__top-subscribe {
    position: relative;
    display: block;
    flex: 1;
}

.footer-one__top-subscribe-form {
    position: relative;
    display: block;
    align-items: center;
    max-width: 485px;
    width: 100%;
}

.footer-one__top-subscribe-form input[type="email"],
.footer-one__top-subscribe-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    padding-right: 165px;
    background: var(--thm-heading-font-color2);
    border: 0px solid var(--thm-white);
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    border-radius: 4px;
    transition: all 500ms ease;
    font-family: var(--thm-body-font);
    text-transform: none;
    outline: none;
}

.footer-one__top-subscribe-form input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-one__top-subscribe-form input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-one__top-subscribe-form input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-one__top-subscribe-form input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-one__top-subscribe-form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: none;
}

.footer-one__top-subscribe-form button.thm-btn:after {
    background: var(--thm-secondary);
}

.footer-one__top-subscribe-form button.thm-btn:before {
    background: var(--thm-white)
}

.footer-one__top-subscribe-form button.thm-btn {
    color: var(--thm-white);
}

.footer-one__top-subscribe-form button.thm-btn i {
    margin-left: 9px;
    font-size: 12px;
    font-weight: 700;
}

.footer-one__top-subscribe-form button.thm-btn:hover {
    color: var(--thm-secondary);
}


.footer-main__bottom {
    position: relative;
    display: block;
    padding: 90px 0px 0px;
}

.single-footer-widget {
    position: relative;
    display: block;
}

.single-footer-widget .title {
    position: relative;
    display: block;
    margin-top: -8px;
}

.single-footer-widget .title {
    color: var(--thm-primary);
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    margin-bottom: 30px;
}

.footer-widget__about {
    position: relative;
    display: block;
    max-width: 330px;
    width: 100%;
}

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

.footer-widget__about-inner .text1 {
    color: #EAECE8;
    font-weight: 500;
    margin-bottom: 14px;
}

.footer-widget__about-inner .text2 {
    color: var(--thm-white);
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer-widget__about-inner .text3 {
    color: #EAECE8;
    font-weight: 500;
}

.footer-social-link {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 26px;
}

.footer-social-link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--thm-secondary);
}

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

.footer-social-link a span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 15px;
    line-height: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.footer-social-link a:hover span {
    color: var(--thm-primary);
}
.footer-main2 .footer-social-link a:hover span {
    color: #FF5E14;
}

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

.footer-widget__links-box {
    position: relative;
    display: block;
    margin-top: 29px;
}

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

.footer-widget__links-box ul li {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.footer-widget__links-box ul li:last-child {
    margin-bottom: 0px;
}

.footer-widget__links-box ul li a {
    position: relative;
    display: inline-block;
    color: #EAECE8;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-body-font);
}

.footer-widget__links-box ul li a:hover {
    color: var(--thm-primary);
}

.footer-widget__links-box ul li a::before {
    position: absolute;
    top: 7px;
    right: -23px;
    color: var(--thm-primary);
    font-size: 15px;
    line-height: 15px;
    font-family: 'icomoon' !important;
    content: "\e936";
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.2s linear;
}

.footer-widget__links-box ul li a:hover::before {
    transform: translateX(0px);
    opacity: 1;
}

.footer-widget__links.services {
    position: relative;
    display: block;
    margin-left: 50px;
}

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

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

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

.footer-widget__contact-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 18px !important;
}

.footer-widget__contact-box ul li:last-child {
    margin-bottom: 0px;
}

.footer-widget__contact-box ul li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(var(--thm-primary-rgb), 0.1);
    border-radius: 50%;
    z-index: 1;
}

.footer-widget__contact-box ul li .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 20px;
    line-height: 20px;
}

.footer-widget__contact-box ul li .content-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.footer-widget__contact-box ul li .content-box p {
    color: #A3AC9A;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

.footer-widget__contact-box ul li .content-box h4 {
    color: #EAECE8;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--thm-body-font);
}

.footer-widget__contact-box ul li .content-box h4 a {
    color: #EAECE8;
}

.footer-widget__contact-box ul li .content-box h4 a:hover {
    color: var(--thm-primary);
}


.footer-bottom {
    position: relative;
    display: block;
    background: var(--thm-secondary);
    padding: 16px 0px 16px;
}

.footer-bottom__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom__inner .copyright-text {
    position: relative;
    display: block;
    text-align: center;
}

.footer-bottom__inner .copyright-text p {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    margin: 0;
}

.footer-bottom__inner .copyright-text p a {
    color: var(--thm-white);
}

.footer-bottom__inner .copyright-text p a:hover {
    color: var(--thm-primary);
}

.footer-bottom__inner .copyright-menu {
    position: relative;
    display: block;
}

.footer-bottom__inner .copyright-menu ul {
    position: relative;
    display: block;
}

.footer-bottom__inner .copyright-menu ul li {
    position: relative;
    display: block;
    float: left;
    padding-right: 25px;
    margin-left: 20px;
}

.footer-bottom__inner .copyright-menu ul li::before {
    position: absolute;
    top: 11px;
    right: 0;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    content: "";
}

.footer-bottom__inner .copyright-menu ul li:last-child:before {
    display: none;
}

.footer-bottom__inner .copyright-menu ul li a {
    color: var(--thm-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
}

.footer-bottom__inner .copyright-menu ul li a:hover {
    color: var(--thm-primary);
}
.footer-bottom__inner2 .copyright-menu ul li a:hover {
    color: #FF5E14;
}

.footer-bottom__inner .copyright-menu ul li a span {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 13px;
    top: 1px;
    margin-left: 2px;
    transform: rotate(-45deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.footer-bottom__inner .copyright-menu ul li a:hover span {
    transform: rotate(0deg);
}


/*** 
=============================================
    Footer Two Css
=============================================
***/
.footer-one--two {
    position: relative;
    display: block;
    z-index: 1;
}

.footer-one--two .shape1 {
    position: absolute;
    left: 75px;
    bottom: 140px;
    z-index: -1;
}

.footer-one--two .shape2 {
    position: absolute;
    right: 190px;
    bottom: 95px;
    z-index: -1;
}

.footer-one--two .footer-one__bg::before {
    background: var(--black-color);
}

.footer-one--two .footer-widget__about .logo-box {
    position: relative;
    display: block;
    margin-bottom: 28px;
}

.footer-one--two .footer-widget__about .logo-box a {
    position: relative;
    display: inline-block;
}

.footer-one--two .footer-widget__about .logo-box a img {
    width: 100%;
}

.footer-one--two .footer-main__bottom {
    padding: 0px 0px 0px;
}

.footer-one--two .footer-main {
    padding: 220px 0px 120px;
}

.footer-one--two .footer-widget__about-inner .text1 {
    color: rgba(var(--thm-white-rgb), 0.8);
}

.footer-one--two .footer-widget__about-inner .text3 {
    color: rgba(var(--thm-white-rgb), 0.8);
}

.footer-one--two .footer-social-link a {
    border-radius: 2px;
    background: #3c4250;
}

.footer-one--two .single-footer-widget .title {
    color: var(--thm-white);
}

.footer-one--two .footer-widget__links-box ul li a {
    color: rgba(var(--thm-white-rgb), 0.8);
}

.footer-one--two .footer-widget__links-box ul li a:hover {
    color: var(--thm-primary);
}

.single-footer__newsletter {
    position: relative;
    display: block;
    max-width: 305px;
    width: 100%;
}

.single-footer__newsletter-box {
    position: relative;
    display: block;
    margin-top: 29px;
}

.single-footer__newsletter-text1 {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.single-footer__newsletter-text1 p {
    color: rgba(var(--thm-white-rgb), 0.8);
    font-weight: 500;
}

.single-footer__newsletter-form {
    position: relative;
    display: block;
}

.single-footer__newsletter-form-input {
    position: relative;
    display: block;
}

.single-footer__newsletter-form-input input[type="email"] {
    color: rgba(var(--thm-white-rgb), 0.8);
    font-size: 16px;
    height: 60px;
    width: 100%;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    background: transparent;
    border: 2px solid rgba(var(--thm-white-rgb), 0.2);
    border-radius: 4px;
    outline: none;
}

.single-footer__newsletter-form-input input[type="email"]::-webkit-input-placeholder {
    color: rgba(var(--thm-white-rgb), 0.8);
}

.single-footer__newsletter-form-input input[type="email"]:-moz-placeholder {
    color: rgba(var(--thm-white-rgb), 0.8);
}

.single-footer__newsletter-form-input input[type="email"]::-moz-placeholder {
    color: rgba(var(--thm-white-rgb), 0.8);
}

.single-footer__newsletter-form-input input[type="email"]:-ms-input-placeholder {
    color: rgba(var(--thm-white-rgb), 0.8);
}

.single-footer__newsletter-btn {
    position: relative;
    display: block;
    margin-top: 20px;
}

.single-footer__newsletter-btn button {
    border: none;
    text-align: center;
}

.single-footer__newsletter-btn .thm-btn {
    justify-content: center;
    color: var(--thm-white);
    width: 100%;
}

.single-footer__newsletter-btn .thm-btn:hover {
    color: var(--black-color);
}

.single-footer__newsletter-btn .thm-btn::before {
    background: var(--thm-white);
}

.footer-one--two .footer-bottom {
    background: #0a0a0a;
    padding: 16px 0px 16px;
    margin-bottom: 0px;
}

/*** 
=============================================
    Footer Three Css
=============================================
***/
.footer-one.style3 {
    position: relative;
    display: block;
}

.footer-one.style3 .footer-widget__about-inner {
    margin-top: 43px;
}

.footer-one.style3 .single-footer__newsletter-btn .thm-btn {
    color: var(--black-color);
}

.footer-one.style3 .shape2 {
    right: 65px;
    bottom: 115px;
}

.footer-bottom__inner .social-links {
    position: relative;
    display: block;
    padding: 0px 50px 0px;
    line-height: 0;
    z-index: 1;
}

.footer-bottom__inner .social-links::before {
    position: absolute;
    top: -22px;
    left: 0;
    bottom: -22px;
    right: 0;
    background: #262523;
    content: "";
    z-index: -1;
}

.footer-bottom__inner .social-links a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
}

.footer-bottom__inner .social-links a+a {
    margin-left: 26px;
}

.footer-bottom__inner .social-links a:hover {
    color: var(--thm-primary);
}

.footer-bottom__inner .social-links a span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
}

.footer-one.style3 .footer-bottom {
    overflow: hidden;
    margin-bottom: 40px;
}



/*=============================
	Services One CSS
===============================*/
.service-one {
    position: relative;
    display: block;
    padding: 70px 0 120px;
    background-color: var(--thm-body-background);
    z-index: 1;
}

.service-one__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 58px;
}

.service-one__top .sec-title {
    padding-bottom: 0px;
}

.service-one__top .btn-box {
    position: relative;
    display: block;
    top: -12px;
}

.service-one .row {
    --bs-gutter-x: 50px;
}

.service-one__single {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding-right: 20px;
    z-index: 1;
}

.service-one__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 150px;
    border: 1px solid var(--thm-primary);
    border-radius: 4px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-one__single:hover::before {
    border: 1px solid var(--thm-secondary);
}

.service-one__single:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 21px;
    bottom: -20px;
    right: 0px;
    border-radius: 4px;
    background: rgba(var(--thm-secondary-rgb), 0.06);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.service-one__single:hover:after {
    background: rgba(var(--thm-secondary-rgb), 1.0);
}

.service-one__single-img {
    position: relative;
    display: block;
}

.service-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.service-one__single-img .inner::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.service-one__single:hover .service-one__single-img .inner::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.service-one__single-img .inner img {
    width: 100%;
    transition: all 500ms ease;
    transform: scale(1);
}

.service-one__single-img .inner .overlay-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.service-one__single-img .inner .overlay-icon img {
    width: 100%;
}

.service-one__single-content {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 19px 20px 40px;
    border-bottom-right-radius: 4px;
    margin-left: 20px;
}

.service-one__single-content h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.service-one__single-content h3 a {
    color: var(--thm-heading-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-one__single-content h3 a:hover {
    color: var(--thm-primary);
}

.service-one__single-content p {
    font-weight: 500;
    margin: 0;
}

.service-one__single-content .btn-box {
    position: relative;
    display: inline-block;
    line-height: 0;
    margin-top: 31px;
}

.service-one__single-content .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 15px;
    line-height: 40px;
    font-family: var(--thm-body-font);
    font-weight: 600;
    border: 1px solid rgb(24, 98, 101, 0.20);
    border-radius: 4px;
    padding: 0px 20px 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-one__single-content .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    margin-left: 4px;
    top: 2px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-one__single-content .btn-box a:hover {
    border-color: var(--thm-secondary);
    color: var(--thm-primary);
    background-color: var(--thm-secondary);
}

.service-one__single .service-one__single-content .btn-box a:hover span {
    color: var(--thm-primary);
}

.service-one .swiper-container {
    padding-left: 1px;
}

#service-one__pagination {
    position: relative;
    padding-top: 25px;
    z-index: 55;
}

#service-one__pagination .swiper-pagination-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#service-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--thm-secondary);
}

#service-one__pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#service-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#service-one__pagination .swiper-pagination-bullet:hover {
    transform: scaleX(1.0);
}


/*=============================
	Services Two Css
===============================*/
.services-two {
    position: relative;
    display: block;
    padding: 120px 0px 100px;
    z-index: 1;
}

.services-two .container {
    position: relative;
}

.services-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.services-two .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: soft-light;
    opacity: 0.5;
    z-index: -1;
}

.services-two__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--black-color-rgb), 0.8);
    content: "";
    z-index: -1;
}

.services-two .sec-title-two .sub-title {
    background: rgba(var(--black-color-rgb), 0.6);
}

.services-two .sec-title-two h2 {
    color: var(--thm-white);
}

.services-two__single {
    position: relative;
    display: block;
    z-index: 1;
}

.services-two__single-img {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 2;
}

.services-two__single-img .number-box {
    position: absolute;
    right: 20px;
    bottom: -15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF5E14;
    border-radius: 50%;
    border: 2px solid var(--thm-white);
    overflow: hidden;
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
    z-index: 5;
}

.services-two__single:hover .services-two__single-img .number-box {
    transform: scale(1);
    opacity: 1;
}

.services-two__single-img .inner {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.services-two__single-img .inner::before {
    background: rgba(255, 255, 255, 0.4);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.services-two__single:hover .services-two__single-img .inner::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.services-two__single-img .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.services-two__single:hover .services-two__single-img .inner img {
    transform: scale(1);
}

.services-two__single-content {
    position: relative;
    display: block;
    margin-top: -85px;
    overflow: hidden;
}

.services-two__single-content-inner {
    position: relative;
    display: block;
    padding: 107px 30px 35px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.services-two__single-content-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background: var(--thm-white);
    border-radius: 4px;
    content: "";
    z-index: -1;
}

.services-two__single-content-inner h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 9px;
}

.services-two__single-content-inner h3 a {
    color: var(--black-color);
}

.services-two__single-content-inner h3 a:hover {
    color: var(--thm-primary);
}

.services-two__single-content-inner p {
    font-weight: 500;
    margin: 0;
    margin-bottom: 6px;
    font-size: 15px;
}

.services-two__single-content-inner .count-box {
    position: absolute;
    left: 30px;
    bottom: -15px;
    color: rgba(1, 28, 57, 0.06);
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    font-family: var(--thm-heading-font);
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
}

.services-two__single:hover .services-two__single-content-inner .count-box {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.services-two__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: -20px;
    margin-left: 30px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
    z-index: 2;
}

.services-two__single:hover .services-two__single-content .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.services-two__single-content .btn-box .thm-btn {
    padding-top: 1px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0px;
    color: var(--thm-white);
}

.services-two__single-content .btn-box .thm-btn::before {
    background: var(--black-color);
}

.services-two .swiper-nav-style1 {
    top: 45px;
}

.services-two__wrap {
    position: absolute;
    top: 55px;
    right: 190px;
    z-index: 100;
}

.services-two__wrap .swiper-counter {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: space-between;
    width: 40px;
    z-index: 9;
}

.services-two__wrap .swiper-counter div {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.services-two__wrap .swiper-counter div#current2 {
    margin-right: 6px;
}

.services-two__wrap .swiper-counter div#total2 {
    position: relative;
    top: 15px;
    right: -5px;
    padding-left: 2px;
    color: rgba(255, 255, 255, 0.40);
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.services-two__wrap .swiper-counter div#total2:before {
    content: '/';
    position: absolute;
    left: -10px;
    width: 0px;
    height: 0px;
    top: -5px;
}

/*=============================
	Services Three Css
===============================*/
.services-three {
    position: relative;
    display: block;
    padding: 120px 0px 117px;
    z-index: 1;
}

.services-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 559px;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.services-three__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--black-color-rgb), 0.9);
    content: "";
    z-index: -2;
}

.services-three__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 57px;
}

.services-three__top .sec-title-style3 {
    padding-bottom: 0px;
}

.services-three__top .btn-box {
    position: relative;
    display: block;
    top: -13px;
}

.services-three__top .btn-box .thm-btn::before {
    background: var(--thm-white);
}

.services-three__top .btn-box .thm-btn:hover {
    color: var(--black-color);
}

.services-three .sec-title-style3 .sub-title h5 {
    color: var(--thm-primary);
}

.services-three .sec-title-style3 h2 {
    color: var(--thm-white);
}

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

.services-three__single-img {
    position: relative;
    display: block;
}

.services-three__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    z-index: 1;
}

.services-three__single-img .inner .icon-box {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-white);
    border-top-left-radius: 5px;
    z-index: 5;
}

.services-three__single-img .inner .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 40px;
    line-height: 40px;
}

.services-three__single-img .inner .icon-box span.t5 {
    top: 5px;
}

.services-three__single-img .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.services-three__single:hover .services-three__single-img .inner img {
    transform: scale(1);
}

.services-three__single-content {
    position: relative;
    display: block;
}

.services-three__single-content-inner {
    position: relative;
    display: block;
    background: var(--thm-white);
    border-radius: 4px;
    box-shadow: 0px 4px 4px 0px rgba(18, 18, 20, 0.06);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 26px 30px 31px;
    overflow: hidden;
    transition: all 400ms linear;
    transition-delay: 0.1s;
}

.services-three__single:hover .services-three__single-content-inner {
    padding-bottom: 82px;
}

.services-three__single-content-inner h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.services-three__single-content-inner h2 a {
    color: var(--black-color);
}

.services-three__single-content-inner h2 a:hover {
    color: var(--thm-primary);
}

.services-three__single-content-inner p {
    margin: 0;
}

.services-three__single-content-inner .count-box {
    position: absolute;
    right: 16px;
    bottom: -20px;
    color: rgba(var(--black-color-rgb), 0.06);
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    font-family: var(--thm-heading-font);
}

.services-three__single-content-inner .btn-box {
    position: absolute;
    left: 2px;
    bottom: 0;
    right: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--thm-primary);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 6px 20px 5px 30px;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    transition-delay: 0.05s;
    z-index: 3;
}

.services-three__single:hover .services-three__single-content-inner .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    transition-delay: 0.4s;
}

.services-three__single-content-inner .btn-box a {
    position: relative;
    display: block;
    color: var(--black-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-heading-font);
}

.services-three__single-content-inner .btn-box a i {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    top: 4px;
    padding-left: 8px;
}

.services-three__single-content-inner .btn-box .number-box {
    position: relative;
    display: block;
    color: rgba(var(--black-color-rgb), 0.07);
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    font-family: var(--thm-heading-font);
    padding-left: 20px;
}

.services-three__single-content-inner .btn-box .number-box::before {
    position: absolute;
    top: 5px;
    left: 0;
    bottom: 6px;
    width: 1px;
    background: rgba(var(--black-color-rgb), 0.08);
    content: "";
}


#services-three__pagination {
    position: relative;
    padding-top: 15px;
    z-index: 55;
}

#services-three__pagination .swiper-pagination-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#services-three__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--thm-primary);
}

#services-three__pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-primary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#services-three__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#services-three__pagination .swiper-pagination-bullet:hover {
    transform: scaleX(1.0);
}

/*=============================
	Services Details Page Css
===============================*/
.services-details-page {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.services-details-page__content {
    position: relative;
    display: block;
    margin-right: -24px;
}

.services-details-page__content-img1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.services-details-page__content-img1 img {
    width: 100%;
}

.services-details-page__content-text1 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.services-details-page__content-text1 .top-text {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.services-details-page__content-text1 .top-text .icon {
    position: relative;
    display: inline-block;
}

.services-details-page__content-text1 .top-text .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 50px;
    line-height: 50px;
}

.services-details-page__content-text1 .top-text .icon span.mt {
    top: 5px;
}

.services-details-page__content-text1 .top-text .title {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.services-details-page__content-text1 .top-text .title h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    text-transform: capitalize;
}

.services-details-page__content-text1 p {
    font-weight: 500;
}

.services-details-page__content-text1 p+p {
    margin-top: 13px;
}

.services-details-page__content-text2 {
    position: relative;
    display: block;
    margin-top: 35px;
}

.services-details-page__content-text2 .title-box {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.services-details-page__content-text2 .title-box h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 20px;
}

.services-details-page__content-text2 .title-box p {
    margin: 0;
    font-weight: 500;
}

.services-details-page__content-text2-single {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 4px;
}

.services-details-page__content-text2-single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--thm-primary);
    border-radius: 50%;
    margin: 0 auto 13px;
    z-index: 1;
}


.services-details-page__content-text2-single .icon-box:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 100%;
    background-color: var(--black-color);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top center;
    -webkit-transform: scale(0);
    transform: scale(0);
    z-index: -1;
}

.services-details-page__content-text2-single:hover .icon-box:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    transform-origin: bottom center;
}












.services-details-page__content-text2-single .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--black-color);
    font-size: 18px;
    line-height: 18px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.services-details-page__content-text2-single:hover .icon-box span {
    color: #ffffff;
    transform: rotateY(0deg) scale(1.05);
}

.services-details-page__content-text2-single .text {
    position: relative;
    display: block;
}

.services-details-page__content-text2-single .text h4 {
    color: var(--thm-pragraph-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.services-details-page__content-text3 {
    position: relative;
    display: block;
    margin-top: 49px;
}

.services-details-page__content-text3 .title-box {
    position: relative;
    display: block;
}

.services-details-page__content-text3 .title-box h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 20px;
}

.services-details-page__content-text3 .title-box p {
    margin: 0;
    font-weight: 500;
}

.services-details-page__content-text3-img {
    position: relative;
    display: block;
    margin-top: 36px;
}

.services-details-page__content-text3-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.services-details-page__content-text3-img .inner img {
    width: 100%;
}

.services-details-page__content-text3-img-video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.services-details-page__content-text3-img-video a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-primary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    font-family: var(--thm-heading-font);
    z-index: 5;
}

.services-details-page__content-text3-img-video a:after,
.services-details-page__content-text3-img-video a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.services-details-page__content-text3-img-video a:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}









.services-details-page__content-text3-img-video a:hover {
    color: var(--thm-primary);
}

.services-details-page__content-text3-img .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.services-details-page__pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}

.services-details-page__pagination .single-box {
    position: relative;
    display: flex;
    align-items: center;
}

.services-details-page__pagination .single-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    border: 1px solid rgba(var(--thm-primary-rgb), 0.5);
}

.services-details-page__pagination .single-box .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 45px;
    line-height: 45px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details-page__pagination .single-box:hover .icon-box span {
    transform: rotateY(180deg);
}



.services-details-page__pagination .single-box .icon-box span.fs {
    font-size: 35px;
}

.services-details-page__pagination .single-box .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 25px;
}

.services-details-page__pagination .single-box .text-box p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
    margin-bottom: 14px;
}

.services-details-page__pagination .single-box .text-box p a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--black-color);
}

.services-details-page__pagination .single-box .text-box p a:hover {
    color: var(--thm-primary);
}

.services-details-page__pagination .single-box .text-box p a span {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    transform: rotate(-90deg);
    padding-bottom: 11px;
    bottom: 1px;
}

.services-details-page__pagination .single-box .text-box h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
}

.services-details-page__pagination .single-box .text-box h2 a {
    color: var(--black-color);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    color: inherit;
    transition: all 500ms ease;
}

.services-details-page__pagination .single-box .text-box h2 a:hover {
    background-size: 100% 1px;
}

.services-details-page__pagination .single-box .text-box h2 a:hover {
    color: var(--thm-primary);
}

.services-details-page__pagination .single-box.style2 {
    position: relative;
}

.services-details-page__pagination .single-box.style2 .text-box {
    margin-left: 0px;
    text-align: right;
    margin-right: 20px;
}

.services-details-page__pagination .single-box.style2 .text-box p a {
    justify-content: flex-end;
}

.services-details-page__pagination .single-box.style2 .text-box p a span {
    transform: rotate(0deg);
    bottom: 1px;
    padding-bottom: 0;
    padding-left: 6px;
}



/*=============================
	About One Css
===============================*/
.about-one {
    position: relative;
    display: block;
    z-index: 10;
}

.about-one__big-title {
    position: absolute;
    bottom: -100px;
    color: rgba(1, 28, 57, 0.05);
    font-size: 550px;
    line-height: 0.8em;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    font-family: var(--thm-heading-font);
    z-index: 1;
}

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

.about-one__img .shape1 {
    position: absolute;
    bottom: 90px;
    right: 70px;
    z-index: 1;
}

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

.about-one__img .inner img {
    max-width: none;
    float: right;
}

.about-one__img .btn-box {
    position: absolute;
    bottom: -125px;
    right: -80px;
    display: block;
    z-index: 5;
}

.about-one__img .btn-box a {
    display: flex;
}
.about-one__img .btn-box a img {
    width: 165px;
    height: 165px;
}

.about-one__content {
    position: relative;
    display: block;
    z-index: 2;
    padding-left: 80px;
}

.about-one__content-top {
    position: relative;
    display: block;
}


.about-one__content-features {
    position: relative;
    display: block;
}

.about-one__content-features ul {
    position: relative;
    display: block;
}

.about-one__content-features ul li {
    position: relative;
    display: block;
    background-color: var(--thm-body-background);
    box-shadow: 0px 4px 15px 0px rgba(13, 66, 80, 0.08);
    padding: 33px 29px 31px;
}

.about-one__content-features ul li+li {
    margin-top: 20px;
}

.about-one__content-features ul li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__content-features ul li .inner .icon-box {
    position: relative;
    display: block;
    width: 80px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.about-one__content-features ul li:hover .inner .icon-box {
    transform: scale(0.9);
}

.about-one__content-features ul li .inner .text-box {
    position: relative;
    display: block;
    margin-left: 25px;
    flex: 1;
}

.about-one__content-features ul li .inner .text-box h4 {
    color: var(--thm-secondary);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-heading-font);
    margin-bottom: 14px;
}

.about-one__content-features ul li .inner .text-box p {
    margin: 0;
}


/*=================================
	About Two Css
===================================*/
.about-two {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.about-two .shape1 {
    position: absolute;
    left: 135px;
    bottom: 120px;
    z-index: -1;
}

.about-two__img {
    position: relative;
    display: block;
    padding-left: 90px;
    padding-right: 100px;
    z-index: 1;
}

.about-two__experience-box {
    position: absolute;
    top: 35px;
    left: 0;
    height: 170px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 5px solid var(--thm-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 4px 17px rgba(2, 2, 49, 0.13);
    z-index: 3;
}

.about-two__experience-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.about-two__experience-box-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #011C39;
    border-radius: 4px;
    opacity: 0.8;
    z-index: -2;
    content: "";
}

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

.about-two__experience-box .inner h2 {
    color: var(--thm-white);
    font-size: 48px;
    line-height: 0.8em;
    font-weight: 700;
    font-family: var(--thm-body-font);
    margin-bottom: 2px;
}

.about-two__experience-box .inner h2 .plus {
    position: absolute;
    top: -3px;
    right: -8px;
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
}

.about-two__experience-box .inner .text {
    position: relative;
    display: block;
}

.about-two__experience-box .inner .text p {
    color: var(--thm-white);
    font-weight: 700;
}

.about-two__img1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    max-width: 455px;
    width: 100%;
    z-index: 1;
}

.about-two__img1 img {
    width: 100%;
}


.about-two__video {
    position: absolute;
    bottom: -65px;
    right: 0px;
    width: 240px;
    height: 180px;
    border: 5px solid var(--thm-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 4px 17px rgba(2, 2, 49, 0.13);
    z-index: 2;
}

.about-two__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.about-two__video-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #011C39;
    border-radius: 4px;
    opacity: 0.8;
    content: "";
    z-index: -2;
}

.about-two__video-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-two__video-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-white);
    font-size: 15px;
    z-index: 5;
}

.about-two__video-box a:hover {
    color: var(--black-color);
}

.about-two__video-box .round-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-two__video-box .round-text .curved-circle-2 {
    color: var(--thm-white);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--thm-body-font);
}

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

.about-two__content .sec-title-two {
    padding-bottom: 20px;
}

.about-two__content-text {
    position: relative;
    display: block;
}

.about-two__content-text p {
    margin: 0;
    font-weight: 500;
}

.about-two__content-list {
    position: relative;
    display: block;
}

.about-two__content-list ul {
    position: relative;
    display: block;
}

.about-two__content-list ul li {
    position: relative;
    display: block;
    padding-left: 35px;
    margin-bottom: 16px;
}

.about-two__content-list ul li:last-child {
    margin-bottom: 0px;
}

.about-two__content-list ul li .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.about-two__content-list ul li .icon-box span {
    position: relative;
    display: inline-block;
    color: #FF5E14;
    font-size: 20px;
    line-height: 20px;
}

.about-two__content-list ul li p {
    color: #1C1F35;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.about-two__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__content-bottom .btn-box {
    position: relative;
    display: block;
}

.about-two__content-bottom .btn-box .thm-btn {
    color: var(--thm-white);
}

.about-two__content-bottom .btn-box .thm-btn::before {
    background: var(--black-color2);
}

.about-two__content-bottom .author-box {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__content-bottom .author-box .img-box {
    position: relative;
    display: block;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.about-two__content-bottom .author-box .img-box img {
    width: 100%;
}

.about-two__content-bottom .author-box .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 15px;
}

.about-two__content-bottom .author-box .text-box h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.about-two__content-bottom .author-box .text-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

/*=================================
	About Three Css
===================================*/
.about-three {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.about-three__img {
    position: relative;
    display: block;
    padding-top: 30px;
    z-index: 1;
}

.about-three__img .shape1 {
    position: absolute;
    top: 64px;
    left: 272px;
    z-index: -1;
}

.about-three__img::before {
    position: absolute;
    top: 0;
    left: -40px;
    bottom: -30px;
    width: 190px;
    background: var(--thm-primary);
    border-radius: 4px;
    content: "";
    z-index: -1;
}

.about-three__img1 {
    position: relative;
    display: block;
    max-width: 340px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
}

.about-three__img1 img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.0);
}

.about-three__img2 {
    position: absolute;
    top: 140px;
    right: 0;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.about-three__img2 img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.0);
}

.about-three__img-icon-box {
    position: absolute;
    left: 240px;
    bottom: -50px;
    border-radius: 50%;
    z-index: 5;
}

.about-three__content {
    position: relative;
    display: block;
    margin-left: 50px;
}

.about-three__content .sec-title-style3 {
    padding-bottom: 25px;
}

.about-three__content-text {
    position: relative;
    display: block;
}

.about-three__content-text p {
    font-weight: 500;
    margin: 0;
}

.about-three__content-list {
    position: relative;
    display: block;
}

.about-three__content-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 42px;
}

.about-three__content-list li:last-child {
    margin-bottom: 0;
}

.about-three__content-list li .icon-box {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.about-three__content-list li .icon-box::before {
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-bottom: 60px solid #f3f3f3;
    border-left: 60px solid transparent;
    width: 60px;
    content: "";
}

.about-three__content-list li .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--black-color);
    font-size: 50px;
    line-height: 50px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.about-three__content-list li:hover .icon-box span {
    color: var(--thm-primary);
    transform: rotateY(180deg);
}

.about-three__content-list li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 25px;
}

.about-three__content-list li .text-box h3 {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.about-three__content-list li .text-box p {
    font-weight: 500;
}

.about-three__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 46px;
}

.about-three__content-bottom .btn-box {
    position: relative;
    display: block;
}

.about-three__content-bottom .btn-box .thm-btn::before {
    background: var(--black-color);
}

.about-three__content-bottom .author-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
    flex: 1;
}

.about-three__content-bottom .author-box .img-box {
    position: relative;
    display: block;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.about-three__content-bottom .author-box .img-box img {
    width: 100%;
}

.about-three__content-bottom .author-box .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
}

.about-three__content-bottom .author-box .text-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.about-three__content-bottom .author-box .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.about-three__content-bottom .author-box .text-box h3 a {
    color: var(--black-color);
}

.about-three__content-bottom .author-box .text-box h3 a:hover {
    color: var(--thm-primary);
}



/*==================================
    Banner One
====================================*/
.main-slider-one {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider-one .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 7500ms ease;
    transition: -webkit-transform 7500ms ease;
    transition: transform 7500ms ease;
    transition: transform 7500ms ease, -webkit-transform 7500ms ease;
    z-index: 1;
}

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

.main-slider-one .big-title {
    position: absolute;
    bottom: 20px;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    z-index: 3;
}

.main-slider.main-slider-one .swiper-slide-active .big-title {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-one .big-title h2 {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    font-size: 100px;
    line-height: 1em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 11.5px;
}

.main-slider-one .img-box {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
    z-index: 1;
}

.main-slider.main-slider-one .swiper-slide-active .img-box {
    opacity: 0.6;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.main-slider-one .shape1 {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
}

.main-slider-one .icon-one {
    position: absolute;
    top: 125px;
    left: 74px;
    z-index: 2;
}

.main-slider-one .icon-two {
    position: absolute;
    bottom: 125px;
    left: 74px;
    z-index: 2;
}

.main-slider-one__single {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.main-slider-one__content {
    position: relative;
    display: block;
    padding-top: 43px;
    padding-left: 55px;
    padding-bottom: 50px;
    max-width: 690px;
    width: 100%;
    z-index: 1;
}

.main-slider-one__content::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0px;
    width: 10%;
    background: #000000;
    mix-blend-mode: soft-light;
    border-radius: 10px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1300ms ease;
    -moz-transition: all 1300ms ease;
    -ms-transition: all 1300ms ease;
    -o-transition: all 1300ms ease;
    transition: all 1300ms ease;
    content: "";
    z-index: -1;
}

.main-slider .swiper-slide-active .main-slider-one__content::before {
    opacity: 0.20;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
    width: 62%;
}

.main-slider-one__content h3 {
    color: transparent;
    -webkit-text-stroke: 1px rgba(var(--thm-primary-rgb), 0.8);
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 9.6px;
    margin-bottom: 15px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-one__content h3 {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-one__content h3 span {
    letter-spacing: 0px;
}

.main-slider-one__content h2 {
    color: var(--thm-white);
    font-size: 90px;
    line-height: 1em;
    letter-spacing: -1.8px;
    margin-bottom: 30px;
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-one__content h2 {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.main-slider-one__content h2 span {
    color: var(--thm-primary);
}

.main-slider-one__content p {
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-one__content p {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

.main-slider-one__content .btn-box {
    position: relative;
    display: block;
    margin-top: 41px;
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-one__content .btn-box {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider-one__content .btn-box .thm-btn::before {
    background: var(--thm-white);
}

.main-slider-one__content .btn-box .thm-btn:hover {
    color: var(--thm-secondary);
}

.main-slider-one__content .btn-box .thm-btn span {
    margin-left: 3px;
    top: 2px;
}

.main-slider__nav {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 115px;
    right: 140px;
    z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #000000;
    font-size: 15px;
    background: var(--thm-white);
    border: none;
    margin: 0px 0px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 50%;
    z-index: 100;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    background: var(--thm-primary);
    border: none;
}

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

.main-slider__nav .swiper-button-next {
    margin-left: 15px;
}

#main-slider-pagination {
    position: absolute;
    top: 50%;
    left: 60px;
    width: 40px;
    transform: translateY(-50%);
    counter-reset: count;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 0;
    z-index: 999999;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 1;
    background-color: transparent;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    line-height: 40px;
    font-weight: 700;
    border: 0px solid transparent;
    counter-increment: count;
    content: ""counter(count);
    font-family: var(--thm-body-font);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

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

.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    color: var(--thm-secondary);
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--thm-primary);
    background: var(--thm-primary);
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:focus,
#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
    outline: none;
    border-color: var(--thm-primary);
    background: var(--thm-primary);
}


/*==================================
 Main Slider Two
====================================*/
.main-slider-two {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider-two .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 7500ms ease;
    transition: -webkit-transform 7500ms ease;
    transition: transform 7500ms ease;
    transition: transform 7500ms ease, -webkit-transform 7500ms ease;
    z-index: -1;
}

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

.main-slider-two .image-layer::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 14, 31, 0.00) 89.59%, rgba(5, 31, 60, 0.20) 99.8%);
    content: "";
    z-index: -1;
}

.main-slider-two .image-layer::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 14, 31, 0.74) 0%, #000E1F 11.74%, #000E1F 27.97%, rgba(0, 16, 33, 0.95) 33.4%, rgba(1, 18, 37, 0.87) 36.73%, rgba(5, 31, 60, 0.00) 60.91%);
    content: "";
    z-index: -1;
}

.main-slider-two .shape1 {
    position: absolute;
    top: 0;
    left: -2px;
    mix-blend-mode: multiply;
    opacity: 0;
    transform: translateX(-20%);
    -webkit-transition: all 1300ms ease;
    -moz-transition: all 1300ms ease;
    -ms-transition: all 1300ms ease;
    -o-transition: all 1300ms ease;
    transition: all 1300ms ease;
    z-index: -1;
}

.main-slider-two .swiper-slide-active .shape1 {
    opacity: 1;
    transform: translateX(0%);
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.main-slider-two .shape2 {
    position: absolute;
    top: 0;
    right: 0;
    mix-blend-mode: multiply;
    opacity: 0;
    transform: translateX(20%);
    -webkit-transition: all 1300ms ease;
    -moz-transition: all 1300ms ease;
    -ms-transition: all 1300ms ease;
    -o-transition: all 1300ms ease;
    transition: all 1300ms ease;
    z-index: -1;
}

.main-slider-two .swiper-slide-active .shape2 {
    opacity: 1;
    transform: translateX(0%);
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.main-slider-two .shape3 {
    position: absolute;
    top: 0;
    right: 0;
    mix-blend-mode: overlay;
    opacity: 0;
    transform: translateX(20%);
    -webkit-transition: all 1300ms ease;
    -moz-transition: all 1300ms ease;
    -ms-transition: all 1300ms ease;
    -o-transition: all 1300ms ease;
    transition: all 1300ms ease;
    z-index: -1;
}

.main-slider-two .swiper-slide-active .shape3 {
    opacity: 1;
    transform: translateX(0%);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.main-slider-two .shape4 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.main-slider-two .big-title {
    position: absolute;
    right: 50px;
    bottom: 30px;
    z-index: 1;
}

.main-slider-two .big-title h2 {
    color: rgba(var(--thm-white-rgb), 0.15);
    -webkit-text-stroke: 2px rgba(var(--thm-primary-rgb), 0.15);
    font-size: 150px;
    line-height: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-body-font);
}

.main-slider-two__single {
    position: relative;
    display: block;
    padding: 170px 0px 170px;
    z-index: 1;
}

.main-slider-two__content {
    position: relative;
    display: block;
}

.main-slider-two__content .sub-title {
    position: relative;
    display: inline-block;
    background: rgba(var(--thm-white-rgb), 0.1);
    padding: 4px 20px 2px;
    margin-bottom: 32px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-two__content .sub-title {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-two__content .sub-title::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(94deg, #FF5E14 4.78%, #FFD7A6 122.83%);
    content: "";
}

.main-slider-two__content .sub-title p {
    color: #E6E6E6;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-heading-font);
}

.main-slider-two__content .title {
    position: relative;
    display: block;
    margin-bottom: 29px;
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-two__content .title {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.main-slider-two__content .title h2 {
    color: var(--thm-white);
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
    text-transform: capitalize;
    font-family: var(--thm-body-font);
}

.main-slider-two__content .title h2 span {
    color: transparent;
    -webkit-text-stroke: 2px #FF5E14;
}

.main-slider-two__content .text {
    position: relative;
    display: block;
    margin-bottom: 41px;
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-two__content .text {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

.main-slider-two__content .text p {
    color: rgba(255, 255, 255, 0.80);
    font-weight: 500;
}

.main-slider-two__content .btn-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-two__content .btn-box {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider-two__content .btn-box .thm-btn {
    color: var(--thm-white);
}

.main-slider-two__content .btn-box .thm-btn:hover {
    color: var(--black-color);
}

.main-slider-two__content .btn-box .thm-btn::before {
    background: var(--thm-white);
}

.main-slider-two .swiper-nav-style1 {
    top: 49%;
    left: 50%;
    transform: translateY(-50%);
    z-index: 99;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    height: auto;
}

.main-slider-two .swiper-nav-style1 .swiper-button-next,
.main-slider-two .swiper-nav-style1 .swiper-button-prev {
    background-color: var(--thm-white);
    color: #FF5E14;
    border: 1px solid var(--thm-white);
}

.main-slider-two .swiper-nav-style1 .swiper-button-next {
    margin-left: 0px;
    margin-top: 20px;
}








.main-slider-two__wrap {
    position: absolute;
    top: 55px;
    right: 55px;
    z-index: 100;
}

.main-slider-two__wrap .swiper-counter {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: space-between;
    width: 40px;
    z-index: 9;
}

.main-slider-two__wrap .swiper-counter div {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.main-slider-two__wrap .swiper-counter div#current {
    margin-right: 6px;
}

.main-slider-two__wrap .swiper-counter div#total {
    position: relative;
    top: 15px;
    right: -5px;
    padding-left: 5px;
    color: rgba(255, 255, 255, 0.40);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.main-slider-two__wrap .swiper-counter div#total:before {
    content: '/';
    position: absolute;
    left: -10px;
    width: 0px;
    height: 0px;
    top: -5px;
}


/*==================================
 Main Slider Three
====================================*/
.main-slider-three {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider-three .image-layer {
    position: absolute;
    top: 100px;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 6500ms ease;
    transition: -webkit-transform 6500ms ease;
    transition: transform 6500ms ease;
    transition: transform 6500ms ease, -webkit-transform 6500ms ease;
    z-index: 1;
}

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

.main-slider-three .image-layer::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(7, 6, 1, 0.50);
    mix-blend-mode: overlay;
    content: "";
    z-index: -1;
}

.main-slider-three__single {
    position: relative;
    display: block;
    padding: 367px 0px 220px;
    z-index: 1;
}

.main-slider-three__single .shape1 {
    position: absolute;
    top: 250px;
    left: 0;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10%);
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    border-radius: 50%;
    background: linear-gradient(180deg, #222222 0%, #141415 100%);
    mix-blend-mode: multiply;
    z-index: -1;
}

.main-slider-three__single .shape1 img {
    mix-blend-mode: multiply;
}

.main-slider-three .swiper-slide-active .shape1 {
    opacity: 0.7;
    transform: translateY(0%);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.main-slider-three__content {
    position: relative;
    display: block;
    z-index: 2;
}

.main-slider-three__content .tagline-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-three__content .tagline-box {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}


.main-slider-three__content .tagline-box .icon {
    position: relative;
    display: block;
}

.main-slider-three__content .tagline-box .icon img {
    width: 100%;
}

.main-slider-three__content .tagline-box .text {
    position: relative;
    display: block;
}

.main-slider-three__content .tagline-box .text p {
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-family: var(--thm-heading-font);
}

.main-slider-three__content .title-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-three__content .title-box {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.main-slider-three__content .title-box h2 {
    color: var(--thm-white);
    font-size: 100px;
    line-height: 1em;
    font-weight: 700;
    text-transform: capitalize;
}

.main-slider-three__content .title-box h2 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--thm-primary);
}

.main-slider-three__content .btn-box {
    position: relative;
    display: block;
    margin-top: 50px;
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider .swiper-slide-active .main-slider-three__content .btn-box {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

.main-slider-three__content .btn-box .thm-btn:after {
    background: transparent;
    border: 2px solid var(--thm-primary);
}

.main-slider-three__content .btn-box .thm-btn {
    color: var(--thm-white);
}

.main-slider-three__content .btn-box .thm-btn:hover {
    color: var(--black-color);
}

.main-slider-three__content .btn-box .thm-btn::before {
    background: var(--thm-primary);
}


.main-slider-three__single .bottom-text-box {
    position: absolute;
    left: -24px;
    bottom: 87px;
    display: flex;
    align-items: center;
    z-index: 5;
}

.main-slider-three__single .bottom-text-box .border {
    position: relative;
    display: block;
    width: 100px;
    height: 1px;
    background: rgba(var(--thm-white-rgb), 0.6);
}

.main-slider-three__single .bottom-text-box .text {
    position: relative;
    display: block;
    margin-left: 30px;
}

.main-slider-three__single .bottom-text-box .text p {
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
}

.main-slider-three .main-slider__nav {
    bottom: 80px;
    right: 100px;
}

.main-slider-three #main-slider-pagination {
    top: auto;
    left: 85px;
    width: 180px;
    transform: translateY(0%);
    display: block;
    bottom: 80px;
}

.main-slider-three #main-slider-pagination .swiper-pagination-bullet {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-slider-three #main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    color: var(--black-color);
}

.main-slider-three .swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 15px;
}



/*=============================
	Blog One CSS
===============================*/
.blog-one {
    position: relative;
    display: block;
    padding: 120px 0 117px;
    z-index: 1;
}

.blog-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.05;
    z-index: -1;
}

.blog-one__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 58px;
}

.blog-one__top .sec-title {
    padding-bottom: 0px;
}

.blog-one__top .btn-box {
    position: relative;
    display: block;
    top: -13px;
}

.blog-one__bottom {
    position: relative;
    display: block;
}

#blog-one__pagination {
    position: relative;
    padding-top: 0px;
    z-index: 55;
}

#blog-one__pagination .swiper-pagination-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#blog-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--thm-secondary);
}

#blog-one__pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#blog-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#blog-one__pagination .swiper-pagination-bullet:hover {
    transform: scaleX(1.0);
}

.comment-one+.comment-respond {
    border-top: 1px solid #e7e7e7;
    margin-top: 50px;
}




/*======================================
Contact One Css
========================================*/
.contact-page {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.contact-page .shape1 {
    position: absolute;
    top: 155px;
    left: 0;
    opacity: 0.1;
    z-index: -1;
}

.contact-page .shape2 {
    position: absolute;
    bottom: 110px;
    right: 50px;
    opacity: 0.6;
    z-index: -1;
}

.contact-page__contact-info {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 50px 40px 51px;
}

.contact-page__contact-info .sec-title-style3 {
    padding-bottom: 45px;
}

.contact-page__contact-info .sec-title-style3 h2 {
    font-size: 36px;
}

.contact-page__contact-info ul {
    position: relative;
    display: block;
}

.contact-page__contact-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 38px;
}

.contact-page__contact-info ul li:last-child {
    margin-bottom: 0px;
}

.contact-page__contact-info ul li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: transparent;
    z-index: 1;
}

.contact-page__contact-info ul li .icon-box::before {
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-bottom: 60px solid var(--thm-primary);
    border-left: 60px solid transparent;
    width: 60px;
    border-radius: 4px;
    content: "";
}

.contact-page__contact-info ul li .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--black-color);
    font-size: 30px;
    line-height: 30px;
    transition: all 500ms ease;
}

.contact-page__contact-info ul li:hover .icon-box span {
    transform: rotateY(180deg);
}


.contact-page__contact-info ul li .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.contact-page__contact-info ul li .text-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.contact-page__contact-info ul li .text-box h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}

.contact-page__contact-info ul li .text-box h2 a {
    color: var(--black-color);
}

.contact-page__contact-info ul li .text-box h2 a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0%;
    height: 2px;
    background-color: var(--black-color);
    transition: all 500ms ease;
}

.contact-page__contact-info ul li .text-box h2 a:hover::before {
    width: 100%;
}


.contact-page__form-box {
    position: relative;
    display: block;
    background: #f7f7f7;
    margin-left: 46px;
    border-radius: 4px;
    padding: 49px 50px 50px;
}

.contact-page__form-box .title {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.contact-page__form-box .title h2 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-page__form-box #contact-form input[type="text"],
.contact-page__form-box #contact-form input[type="number"],
.contact-page__form-box #contact-form input[type="email"] {
    color: rgba(96, 102, 108, 0.6);
    background: var(--thm-white);
}

.contact-page__form-box #contact-form textarea {
    color: rgba(96, 102, 108, 0.6);
    height: 150px;
    background: var(--thm-white);
    margin-bottom: 11px;
}

.contact-page__form-box-text {
    position: relative;
    display: block;
    margin-top: 42px;
}

.contact-page__form-box-text p {
    font-weight: 500;
    margin: 0;
}

.contact-page__form-box-text p span {
    color: var(--black-color);
    font-weight: 600;
}

.testimonials-two__single-top .text-box p {
    color: #6F7174;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.testimonials-two__single-top .text-box h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 3px;
}

.testimonials-two__single-bottom {
    position: relative;
    display: block;
    margin-top: 29px;
}

.testimonials-two__single-bottom .rating-box {
    display: block;
}

.testimonials-two__single-bottom .content-box {
    position: relative;
    display: block;
}

.testimonials-two__single-bottom .content-box h3 {
    color: #6F7174;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.testimonials-two__single-bottom .content-box p {
    margin: 0;
}

.testimonials-two .container {
    position: relative;
}

.testimonials-two .swiper-nav-style1 {
    top: 42px;
}


.testimonials-two__wrap {
    position: absolute;
    top: 55px;
    right: 190px;
    z-index: 100;
}

.testimonials-two__wrap .swiper-counter {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: space-between;
    width: 40px;
    z-index: 9;
}

.testimonials-two__wrap .swiper-counter div {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.testimonials-two__wrap .swiper-counter div#current3 {
    margin-right: 6px;
}

.testimonials-two__wrap .swiper-counter div#total3 {
    position: relative;
    top: 15px;
    right: -5px;
    padding-left: 0px;
    color: rgba(255, 255, 255, 0.40);
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.testimonials-two__wrap .swiper-counter div#total3:before {
    content: '/';
    position: absolute;
    left: -16px;
    width: 0px;
    height: 0px;
    top: -5px;
}











/*=============================
	Testimonials Three Css
===============================*/
.testimonials-three {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.testimonials-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.testimonials-three__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--black-color-rgb), 0.9);
    content: "";
    z-index: -1;
}

.testimonials-three .sec-title-style3 .sub-title h5 {
    color: var(--thm-primary);
}

.testimonials-three .sec-title-style3 h2 {
    color: var(--thm-white);
}

.testimonials-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.testimonials-three__img img {
    width: 100%;
}

.testimonials-three__content-box {
    position: relative;
    display: block;
    margin-left: 70px;
    margin-top: 50px;
}

#testimonials-three__thumb {
    width: 330px;
    margin-left: 0px;
    padding: 5px 5px 5px;
}

.testimonials-three__thumb-img {
    position: relative;
    display: block;
    cursor: pointer;
    width: 60px;
}

.testimonials-three__thumb-img::before {
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid var(--thm-primary);
    border-radius: 50%;
    transform: scale(0.5);
    opacity: 0;
    transition-delay: 0.5s;
    transition: .5s;
    content: "";
}

.testimonials-three__thumb-img:hover::before,
.testimonials-three__content-box .swiper-slide-thumb-active .testimonials-three__thumb-img::before {
    transform: scale(1.0);
    opacity: 1;
}

.testimonials-three__thumb-img .inner {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-three__thumb-img .inner img {
    width: 100%;
}

.testimonials-three__content {
    position: relative;
    display: block;
    margin-top: 38px;
}

.testimonials-three__content-single {
    position: relative;
    display: block;
}

.testimonials-three__content-single-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonials-three__content-single-top .text {
    position: relative;
    display: block;
}

.testimonials-three__content-single-top .text h3 {
    color: var(--thm-primary);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonials-three__content-single-top .rating-box {
    position: relative;
    display: block;
    margin-left: 25px;
}

.testimonials-three__content-single-top .rating-box a {
    color: var(--thm-primary);
}

.testimonials-three__content-single-bottom {
    position: relative;
    display: block;
}

.testimonials-three__content-single-bottom p {
    color: rgba(234, 236, 232, 0.9);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: var(--thm-heading-font);
    margin-bottom: 29px;
}

.testimonials-three__content-single-bottom h3 {
    color: var(--thm-white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonials-three__content-single-bottom h3 span {
    color: #EAECE8;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: var(--thm-body-font);
}


.testimonials-three__nav {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 57px;
    z-index: 100;
}

.testimonials-three__nav .swiper-button-next,
.testimonials-three__nav .swiper-button-prev {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #000000;
    font-size: 20px;
    background: var(--thm-white);
    border: none;
    margin: 0px 0px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 50%;
    z-index: 100;
}

.testimonials-three__nav .swiper-button-next {
    margin-left: 15px;
}

.testimonials-three__nav .swiper-button-next i,
.testimonials-three__nav .swiper-button-prev i {
    font-weight: 700;
}

.testimonials-three__nav .swiper-button-next:hover,
.testimonials-three__nav .swiper-button-prev:hover {
    background: var(--thm-primary);
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
}

.testimonials-three__nav .swiper-button-next::after,
.testimonials-three__nav .swiper-button-prev::after {
    display: none;
}



/* #contact-form {
    position: relative;
    display: block;
}

#contact-form input[type="text"],
#contact-form input[type="number"],
#contact-form input[type="email"] {
    color: rgba(96, 102, 108, 0.6);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 54px;
    background: #f5f5f5;
    border: 0px solid #e4e4e4;
    padding: 0 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: var(--thm-body-font);
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
} */

/* #contact-form textarea {
    color: rgba(96, 102, 108, 0.6);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 120px;
    border: 0px solid #e4e4e4;
    background: #f5f5f5;
    padding: 18px 20px 0px;
    margin-bottom: 20px;
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-radius: 4px;
} */


#contact-form input[type="text"]::-webkit-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="text"]:-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="text"]::-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="text"]:-ms-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}


#contact-form input[type="email"]::-webkit-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="email"]:-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="email"]::-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="email"]:-ms-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}


#contact-form input[type="number"]::-webkit-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="number"]:-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="number"]::-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="number"]:-ms-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}


#contact-form textarea::-webkit-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form textarea:-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form textarea::-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form textarea:-ms-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

.contact-page__btn {
    position: relative;
    display: block;
}
/*======= Start  Slick Sliders dots ========*/

/* Start Service slick slider dots */
.service-slider-dot-list {
    display: flex;
    justify-content: center;
}
.service-slider-dot-list li button {
    display: none;
}

.service-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.service-slider-dot-list li.slick-active {
    background-color: #186265;
}
.service-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.service-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End slick slider dots */


/* Start Project slick slider dots */
.project-slider-dot-list {
    display: flex;
    justify-content: center;
}
.project-slider-dot-list li button {
    display: none;
}

.project-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.project-slider-dot-list li.slick-active {
    background-color: #186265;
}
.project-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.project-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Project slick slider dots */

/* Start Team slick slider dots */
.team-slider-dot-list {
    display: flex;
    justify-content: center;
}
.team-slider-dot-list li button {
    display: none;
}

.team-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.team-slider-dot-list li.slick-active {
    background-color: #186265;
}
.team-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.team-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Team slick slider dots */


/* Start Testimonial slick slider dots */
.testimonial-one-slider-dot-list {
    display: flex;
    justify-content: center;
}
.testimonial-one-slider-dot-list li button {
    display: none;
}

.testimonial-one-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.testimonial-one-slider-dot-list li.slick-active {
    background-color: #186265;
}
.testimonial-one-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.testimonial-one-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Testimonial slick slider dots */


/* Start Testimonial slick slider dots */
.testimonial-two-slider-dot-list {
    display: flex;
    justify-content: center;
}
.testimonial-two-slider-dot-list li button {
    display: none;
}

.testimonial-two-slider-dot-list li {
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.testimonial-two-slider-dot-list li.slick-active {
    background-color: #186265;
}
.testimonial-two-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.testimonial-two-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Testimonial slick slider dots */



/* Start Testimonial slick slider dots */
.blog-slider-dot-list {
    display: flex;
    justify-content: center;
}
.blog-slider-dot-list li button {
    display: none;
}

.blog-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.blog-slider-dot-list li.slick-active {
    background-color: #186265;
}
.blog-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.blog-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Testimonial slick slider dots */


/* brand logo */
.brand-img img {
    height: 50px;
}

/* Recent Post */
.sidebar__latest-post-list li .img-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center center;
}



@media (max-width: 1024px) {
    .blog-standard-page{
        padding: 80px 0 !important;
    }
    
}
@media (max-width: 767px) {
    .blog-standard-page{
        padding: 60px 0 !important;
    }
    
}
.sidebar-info-contents .logo img {
    width: 170px;
}

/* new css */
.children .comment-one__single {
    margin-top: 33px;
    margin-left: 130px;
}
.children .children .comment-one__single {
    margin-left: 180px;
}
#cancel-comment-reply-link {
    font-size: 20px;
}
#cancel-comment-reply-link:hover {
    color: var(--theme-color);
}

.logo-box-one a img, .logo-box-two a img, .logo-box-three a img {
    width: 170px;
}

.judges-list-group .judges-list-group-wrapper .judges-list-group-item:last-of-type {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.company-benefit-one__content-list li:last-child, .request-services-one__content-list li:last-child, .about-three__content-list li:last-child {
    margin-bottom: 0 !important;
}

.fact-counter-two__single.layout-04 .icon-box .shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.fact-counter-two__single.layout-04 .icon-box {
    position: relative;
    top: 0;
    left: 0px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
}
.fact-counter-two__single.layout-04 .fact-counter-two__single-inner {
    background: transparent;
    padding: 0px 0px 0px;
    margin: 24px 0 0;
}
.fact-counter-two__single.layout-04 {
    padding-top: 0;
}

.sidebar .search-form {
    position: relative;
    display: block;
}
.widget_search .search-form .form-control {
    position: relative;
    display: block;
    border: none;
    outline: none;
    background-color: var(--thm-white);
    color: #6F7174;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    height: 55px;
    width: 100%;
    padding-right: 60px;
    border-radius: 4px;
}
.widget_search .search-form .submit-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 60px;
    background-color: var(--thm-primary);
    color: #121213;
    font-size: 20px;
    outline: none;
    border: none;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    padding: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    cursor: pointer;
}
.wp-block-categories-list li a:hover, .wp-block-categories-list li a.active {
    color: #121213;
}
.wp-block-categories-list li a:hover::before, .wp-block-categories-list li a.active::before {
    transform: scale(1, 1);
    transform-origin: top center;
}
.wp-block-latest-posts__list li {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}
.wp-block-latest-posts__list li a {
    color: #121213;
}

.main-header-two .menu-area .mobile-nav-toggler {
    color: #FF5E14;
}

.container.no-pd {
    padding: 0 !important;
}




/* Prebuilt header start */
.prebuilt-header .logo-box-one {
    position: static;
    height: auto;
    justify-content: start;
    padding: 20px 0;
}

.prebuilt-header .main-header-one__bottom::before {
    position: static;
}

.prebuilt-header .row {
    justify-content: space-between;
}

.prebuilt-header .row .col-auto {
    display: flex;
    align-items: center;
}
.elementor-icon.elementor-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar last child widget */
.sidebar-area .widget_media_image.widget {
    padding: 0;
    border-radius: 0;
    background: none;
}
.sidebar-area .widget_media_image.widget::after {
    display: none;
}

.search-grid-img {
    margin-bottom: 15px;
}
.search-grid-title a {
    color: var(--title-color);
}
.search-grid-title a:hover {
    color: var(--theme-color);
}
.search-grid-meta a {
    color: var(--title-color);
}
.search-grid-meta a:hover {
    color: var(--theme-color);
}
.vs-search {
    margin-bottom: 30px;
}

.mf-main-response-wrap:not(.mf_pro_activated) .mf-response-msg {
    background-color: transparent !important;
}
.mf-response-msg-wrap {
    background-color: transparent !important;
}
.mf-main-response-wrap .mf-response-msg {
    border: none !important;
}
.mf-success-icon {
    color: var(--white-color) !important;
}
.mf-response-msg p {
    color: var(--white-color) !important;
}
@media (max-width: 767px) {
    .hero-slider2 .slick-dots {
        display: none !important;
    }
}
@media (max-width: 575px) {
    .breadcumb-wrapper {
        margin-top: 76px !important;
    }
}


