:root {
    --thm-font: 'Poppins', sans-serif;
    --thm-font-2: 'Open Sans', sans-serif;
    --thm-gray: #878c8f;
    --thm-gray-rgb: 135, 140, 143;
    --thm-base: #075f33;
    --thm-base-rgb: 7, 95, 51;
    --thm-black: #075f33;
    --thm-black-rgb: 7, 95, 51;
    --thm-gray-bg: #f1f3f2;
    --thm-primary: #ff5e15;
    --thm-primary-rgb: 255, 94, 21;
}

.auto-container {
    position: static;
    max-width: 1200px;
    margin: 0px auto;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--thm-font);
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-black);
}

a, a:hover, a:focus, a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

h1, h2, h3, h4, h5, h6 {
    color: rgb(0, 0, 0);
    font-family: var(--thm-font);
    margin: 0px;
}

p {
    margin: 0px;
    line-height: 30px;
    color: rgb(40, 40, 40);
    font-size: 14px;
}

dl, ol, ul {
    margin-top: 0px;
    margin-bottom: 0px;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

input:focus, textarea:focus, select:focus {
    border-color: var(--thm-base);
    outline: none;
}

#contact-form input[type="text"].error {
    border-color: red;
}

#contact-form input[type="email"].error {
    border-color: red;
}

#contact-form select.error {
    border-color: red;
}

#contact-form textarea.error {
    border-color: red;
}

#contact-form label.error {
    display: none !important;
}

.page-wrapper {
    position: relative;
    margin: 0px auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0px;
}

ul, li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

ol, li {
    margin: 0px;
    padding: 0px;
}

.rating-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.rating-box ul {
    overflow: hidden;
}

.rating-box ul li {
    position: relative;
    float: left;
    margin-right: 4px;
    line-height: 0;
}

.rating-box ul li:last-child {
    margin-right: 0px;
}

.rating-box ul li span {
    position: relative;
    display: inline-block;
    color: rgb(255, 201, 61);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 200ms linear 0.1s;
}

.sec-title {
    position: relative;
    display: block;
    margin-top: -8px;
    padding-bottom: 15px;
}

.sec-title .sub-title {
    position: relative;
    display: block;
    padding-bottom: 15px;
}

.sec-title .sub-title .text {
    position: relative;
    display: block;
}

.sec-title .sub-title .text span {
    position: relative;
    display: inline-block;
    color: rgb(232, 78, 40);
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sec-title .sub-title .text span::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 1px;
    background: var(--thm-base);
    content: "";
}

.sec-title h2 {
    color: rgb(47, 47, 47);
    font-size: 18px;
    text-transform: uppercase;
    line-height: 29px;
    font-weight: 500;
}

.thm-btn {
    position: relative;
    display: inline-block;
    border-radius: 35px;
    padding: 0px 30px;
    line-height: 45px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    background: #6a6969;
    overflow: hidden;
    font-family: var(--thm-font);
    text-transform: capitalize;
    transition: 0.5s ease-in-out 0.2s;
    z-index: 1;
}

.thm-btn::before {
    position: absolute;
    top: 125px;
    left: -50px;
    right: -50px;
    height: 170px;
    content: "";
    background: var(--thm-primary);
    transform: translateY(-50px);
    border-radius: 50%;
    transition: 1s;
    z-index: 1;
}

.thm-btn:hover::before {
    top: 0%;
    left: -70px;
    right: -70px;
}

.thm-btn .txt {
    position: relative;
    z-index: 1;
}

.thm-btn:hover, .thm-btn:focus {
    color: rgb(255, 255, 255);
}

.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    display: block;
    margin-top: 50px !important;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 5px;
    background-color: rgb(231, 231, 231);
    border: 0px solid rgb(165, 165, 165);
    margin: 0px 10px;
    padding: 0px;
    border-radius: 0%;
    transition: 100ms linear 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--thm-base);
    border-radius: 0%;
    transform: scale(0);
    transition: 500ms;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active::before {
    transform: scale(1);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

.chat-icon {
    position: fixed;
    right: 15px;
    bottom: 20px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
}

.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.styled-pagination li:last-child {
    margin-right: 0px;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 60px;
    font-weight: 500;
    border: 1px solid rgb(222, 224, 226);
    text-align: center;
    transition: 500ms;
    font-family: var(--thm-font);
    z-index: 1;
}

.styled-pagination li:hover a, .styled-pagination li.active a {
    color: rgb(255, 255, 255);
    background: var(--thm-base);
    border-color: var(--thm-base);
}

.styled-pagination li.prev a, .styled-pagination li.next a {
    border-radius: 50%;
    color: var(--thm-base);
    transition: 200ms linear 0.1s;
}

.styled-pagination li.prev a:hover, .styled-pagination li.next a:hover {
    color: rgb(255, 255, 255);
}

.styled-pagination li a span::before {
    position: relative;
    top: 1px;
    color: var(--thm-black);
    font-size: 17px;
    font-weight: 700;
    transition: 200ms linear 0.1s;
}

.styled-pagination li a:hover span::before, .styled-pagination li.active a span::before {
    color: rgb(255, 255, 255);
}

.checked-box1 {
    position: relative;
    display: block;
    min-height: 20px;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    min-height: 20px;
    font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 input[type="checkbox"] + label span {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid rgb(128, 134, 141);
    cursor: pointer;
    border-radius: 4px;
    transition: 300ms;
}

.checked-box1 label span::before {
    position: absolute;
    inset: 0px;
    content: "";
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    margin: 0px;
    opacity: 0;
    transition: 300ms;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: icomoon !important;
}

.checked-box1 input[type="checkbox"]:checked + label span {
    border-color: rgb(128, 134, 141);
}

.checked-box1 input[type="checkbox"]:checked + label span::before {
    opacity: 1;
}

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

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

.search-popup__overlay {
    position: absolute;
    inset: 0px;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

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

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    overflow: hidden;
}

.search-popup__content form input[type="search"], .search-popup__content form input[type="text"] {
    width: 100%;
    background-color: rgb(255, 255, 255);
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
    padding-right: 75px;
}

.search-popup__content .thm-btn {
    padding: 0px;
    width: 68px;
    height: 68px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0px;
    right: -1px;
    border-radius: 0px 10px 10px 0px;
    background-color: var(--thm-base);
    border: 0px;
    transition: 200ms linear 0.1s;
}

.search-popup__content .thm-btn::before {
    border-radius: 0px 10px 10px 0px;
}

.search-popup__content .thm-btn i::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    margin-left: 0px;
    z-index: 5;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active, .bootstrap-select .btn-light:not(:disabled):not(.disabled):active, .bootstrap-select .show > .btn-light.dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    z-index: 991;
    border-radius: 0px;
}

.bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
    background: var(--brote-primary);
    color: rgb(255, 255, 255);
}

.bootstrap-select .dropdown-menu > li > a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: rgb(255, 255, 255);
    background: var(--brote-base);
    transition: 0.4s;
}

.bootstrap-select .dropdown-menu > li > a:hover {
    background: var(--brote-white);
    color: var(--brote-base);
    cursor: pointer;
}

.handle-preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
}

.preloader-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 30px;
    background: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
    z-index: 99999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0px auto 45px;
    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 70px;
    line-height: 70px;
    font-weight: 600;
    letter-spacing: 15px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    font-family: var(--thm-font);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading::before {
    position: absolute;
    top: 0px;
    left: 0px;
    animation: 4s ease 0s infinite normal none running letters-loading;
    content: attr(data-text-preloader);
    opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2)::before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3)::before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4)::before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5)::before {
    animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6)::before {
    animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7)::before {
    animation-delay: 1.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8)::before {
    animation-delay: 1.5s;
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
}

.handle-preloader .animation-preloader .txt-loading .letters-loading::before {
    color: rgb(255, 255, 255);
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid rgb(255, 255, 255);
}

@keyframes spinner {
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 10px;
    }
}

.mobile-nav__wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 500ms 500ms, visibility 500ms 500ms, -webkit-transform 500ms 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: transform 500ms, visibility 500ms, -webkit-transform 500ms;
}

.mobile-nav__wrapper .container {
    padding-left: 0px;
    padding-right: 0px;
}

.mobile-nav__overlay {
    position: absolute;
    inset: 0px;
    background-color: rgba(255, 255, 255, 0.12);
    opacity: 0.7;
    cursor: pointer;
}

.mobile-nav__content {
    position: relative;
    width: 300px;
    background-color: rgb(255, 255, 255);
    height: 100%;
    overflow-y: auto;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms, visibility 500ms, transform 500ms, -webkit-transform 500ms;
    z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: opacity 500ms 500ms, visibility 500ms 500ms, transform 500ms 500ms, -webkit-transform 500ms 500ms;
}

.mobile-nav__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgb(232, 78, 40);
    color: rgb(255, 255, 255);
    font-size: 18px;
    cursor: pointer;
    transition: 200ms linear 0.1s;
}

.mobile-nav__close:hover {
    background-color: var(--thm-black);
}

.mobile-nav__close i::before {
    position: relative;
    display: inline-block;
    transform: rotate(45deg);
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list, .mobile-nav__content .main-menu__list > li > ul, .mobile-nav__content .main-menu__list > li > ul > li > ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul, .mobile-nav__content .main-menu__list > li > ul > li > ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 20px;
}

.mobile-nav__content .main-menu__list > li:not(:last-child), .mobile-nav__content .main-menu__list > li > ul > li:not(:last-child), .mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav__content .main-menu__list > li > a, .mobile-nav__content .main-menu__list > li > ul > li > a, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 30px;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-family: var(--thm-font-2);
    font-weight: 500;
    height: 46px;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list > li > ul > li > a {
    font-size: 14px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list > li > a.expanded, .mobile-nav__content .main-menu__list > li > ul > li > a.expanded, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a.expanded {
    color: var(--thm-primary);
}

.mobile-nav__content .main-menu__list > li > a > button, .mobile-nav__content .main-menu__list > li > ul > li > a > button, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
    width: 30px;
    height: 30px;
    background-color: rgb(232, 78, 40);
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms, -webkit-transform 500ms;
    padding: 0px;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded, .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
    transform: rotate(0deg);
    background-color: rgb(255, 255, 255);
    color: var(--thm-base);
}

.mobile-nav__content .home-showcase__title {
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0px;
}

.mobile-nav__contact {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-bottom: 30px;
}

.mobile-nav__contact li {
    position: relative;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav__contact li + li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: rgb(0, 0, 0);
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-black);
}

.mobile-nav__contact li > i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 0%;
    background-color: rgba(0, 0, 0, 0.1);
    color: rgb(232, 78, 40);
    font-size: 12px;
    margin-right: 10px;
}

.mobile-nav__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__social {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.mobile-nav__social a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    color: rgb(232, 78, 40);
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    transition: 500ms;
}

.mobile-nav__social a + a {
    margin-left: 10px;
}

.mobile-nav__social a:hover {
    color: var(--thm-base);
    background-color: rgb(255, 255, 255);
}

.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
    display: none !important;
}

.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    transition: 500ms;
    z-index: 99;
}

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

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-box {
    display: block;
    float: right;
    margin-left: auto;
}

.main-menu .main-menu__list, .main-menu .main-menu__list > li > ul, .main-menu .main-menu__list > li > ul > li > ul, .stricky-header .main-menu__list, .stricky-header .main-menu__list > li > ul, .stricky-header .main-menu__list > li > ul > li > ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    -webkit-box-align: center;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {
    .main-menu .main-menu__list, .main-menu .main-menu__list > li > ul, .main-menu .main-menu__list > li > ul > li > ul, .stricky-header .main-menu__list, .stricky-header .main-menu__list > li > ul, .stricky-header .main-menu__list > li > ul > li > ul {
        display: flex;
    }
}

.main-menu .main-menu__list > li, .stricky-header .main-menu__list > li {
    position: relative;
    padding-top: 35px;
    padding-bottom: 35px;
}

.main-menu .main-menu__list > li + li, .stricky-header .main-menu__list > li + li {
    margin-left: 35px;
}

.main-menu .main-menu__list > li > a, .stricky-header .main-menu__list > li > a {
    position: relative;
    color: rgb(0, 0, 0);
    font-size: 13px;
    letter-spacing: 0.3px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-family: var(--thm-font);
    transition: 500ms;
}

.main-menu .main-menu__list > li.current > a, .main-menu .main-menu__list > li:hover > a, .stricky-header .main-menu__list > li.current > a, .stricky-header .main-menu__list > li:hover > a {
    color: rgb(253, 102, 13);
}

.main-menu .main-menu__list > li.dropdown > a, .stricky-header .main-menu__list > li.dropdown > a {
    padding-right: 7px;
}

.main-menu .main-menu__list > li.dropdown > a::before {
    position: absolute;
    top: 1px;
    right: -7px;
    content: "+";
    color: rgb(0, 0, 0);
    font-size: 11px;
    font-weight: 900;
    transition: 200ms linear 0.1s;
    z-index: 1;
    font-family: "Font Awesome 6 Free";
}

.main-menu .main-menu__list > li.current.dropdown > a::before, .main-menu .main-menu__list > li:hover.dropdown > a::before {
    color: var(--thm-primary);
}

.main-menu .main-menu__list > li > ul, .main-menu .main-menu__list > li > ul > li > ul, .stricky-header .main-menu__list > li > ul, .stricky-header .main-menu__list > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 270px;
    background-color: rgb(255, 255, 255);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(-90deg);
    transform-origin: center top;
    transform-style: preserve-3d;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
    transition-property: all;
    box-shadow: rgba(0, 0, 0, 0.05) 2px 2px 5px 1px, rgba(0, 0, 0, 0.05) -2px 0px 5px 1px;
    z-index: 99;
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul, .stricky-header .main-menu__list > li > ul > li > ul > li > ul {
    display: none;
}

.main-menu .main-menu__list > li:hover > ul, .main-menu .main-menu__list > li > ul > li:hover > ul, .stricky-header .main-menu__list > li:hover > ul, .stricky-header .main-menu__list > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
    transition: 700ms;
}

.main-menu .main-menu__list > li > ul > li, .main-menu .main-menu__list > li > ul > li > ul > li, .stricky-header .main-menu__list > li > ul > li, .stricky-header .main-menu__list > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    -webkit-box-flex: 1;
    flex: 1 1 100%;
}

.main-menu .main-menu__list > li > ul > li + li, .main-menu .main-menu__list > li > ul > li > ul > li + li, .stricky-header .main-menu__list > li > ul > li + li, .stricky-header .main-menu__list > li > ul > li > ul > li + li {
    border-top: 1px solid rgba(var(--thm-base-rgb, 53, 84, 209), 0.05);
}

.main-menu .main-menu__list > li > ul > li > a, .main-menu .main-menu__list > li > ul > li > ul > li > a, .stricky-header .main-menu__list > li > ul > li > a, .stricky-header .main-menu__list > li > ul > li > ul > li > a {
    position: relative;
    font-size: 13px;
    line-height: 25px;
    color: black;
    letter-spacing: 0px;
    font-weight: 500;
    text-transform: uppercase;
    display: -webkit-box;
    padding: 10px 25px;
    transition: 500ms;
    font-family: var(--thm-font);
}

.main-menu .main-menu__list > li > ul > li:hover > a, .main-menu .main-menu__list > li > ul > li > ul > li:hover > a, .stricky-header .main-menu__list > li > ul > li:hover > a, .stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
    color: rgb(255, 255, 255);
    background-color: rgb(253 101 13);
}

.main-menu .main-menu__list > li > ul > li > ul, .stricky-header .main-menu__list > li > ul > li > ul {
    top: 0px;
    left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align, .stricky-header .main-menu__list li ul li > ul.right-align {
    top: 0px;
    left: auto;
    right: 100%;
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0px;
    left: 0px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms, visibility 500ms, -webkit-transform 500ms;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    transform: translateY(0px);
    visibility: visible;
}

.main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 25px;
    cursor: pointer;
    transition: 500ms;
}

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

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

.stricky-header.main-menu {
    background-color: rgb(255, 255, 255);
}

.stricky-header .main-menu-box {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.stricky-header .main-menu__wrapper {
    background-color: rgb(255, 255, 255);
}

.stricky-header .main-menu__wrapper-inner {
    justify-content: space-between;
}

.stricky-header .phone-number-box-style1 {
    display: none;
}

.stricky-header .main-menu__list > li {
    padding-top: 30px;
    padding-bottom: 30px;
}

.stricky-header .main-menu__list > li + li {
    margin-left: 30px;
}

.stricky-header .main-menu-style1-right {
    margin-left: 30px;
}

.main-header-one {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    background: rgb(255, 255, 255);
}

.main-header-one .auto-container {
    max-width: 1200px;
    width: 100%;
}

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

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

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

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

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

.logo-box-one a img {
}

.header-search-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 60px;
    padding-left: 62px;
}

.header-search-box::before {
    position: absolute;
    top: -15px;
    left: 0px;
    bottom: -15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    content: "";
}

.header-search-box a {
    color: rgb(255, 255, 255);
    font-size: 20px;
    transition: 200ms linear 0.1s;
}

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

.header-one-social-links {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 62px;
}

.header-one-social-links ul {
    position: relative;
    display: block;
}

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

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

.header-one-social-links ul li a {
    position: relative;
    display: block;
}

.header-one-social-links ul li a span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 15px;
    transition: 200ms linear 0.1s;
}

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

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

.main-header-one__right {
    position: relative;
    display: block;
    padding-left: 40px;
}

.main-header-one__right::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    content: "";
}

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

.main-header-one__right .contact-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--thm-primary);
    border-radius: 50%;
}

.main-header-one__right .contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.main-header-one__right .contact-box .text {
    position: relative;
    display: block;
    margin-left: 10px;
}

.main-header-one__right .contact-box .text a {
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    transition: 200ms linear 0.1s;
}

.main-header-one__right .contact-box .text a:hover {
    color: var(--thm-primary);
}

.stricky-header.stricky-header--one .main-menu__wrapper {
    background-color: rgb(255, 255, 255);
}

.stricky-header.stricky-header--one .main-header-one__right {
    display: none;
}

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

.main-header-two__inner {
    position: relative;
    display: block;
    background: var(--thm-base);
}

.main-header-two .auto-container {
    max-width: 1530px;
    width: 100%;
}

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

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

.main-header-two__left .logo-box-two {
    position: relative;
    display: block;
    padding-right: 40px;
}

.main-header-two__left .logo-box-two::before {
    position: absolute;
    inset: -30px 0px -30px -1e+07px;
    background: var(--thm-primary);
    content: "";
}

.main-header-two__left .logo-box-two a {
    position: relative;
    display: inline-block;
}

.main-header-two__left .header-search-box {
    margin-left: 60px;
    padding-left: 0px;
    padding-right: 40px;
}

.main-header-two__left .header-search-box::before {
    position: absolute;
    inset: -15px 0px -15px auto;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    content: "";
}

.main-header-two__left .header-one-social-links {
    margin-left: 40px;
}

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

.main-header-two__right {
    position: relative;
    display: block;
    padding-left: 40px;
}

.main-header-two__right::before {
    position: absolute;
    inset: -28px -999999px -28px 0px;
    background: var(--thm-primary);
    content: "";
}

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

.main-header-two__right .contact-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgb(242, 240, 236);
    border-radius: 50%;
}

.main-header-two__right .contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 700;
}

.main-header-two__right .contact-box .text {
    position: relative;
    display: block;
    margin-left: 10px;
}

.main-header-two__right .contact-box .text p {
    color: rgb(255, 255, 255);
    font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    text-transform: capitalize;
}

.main-header-two__right .contact-box .text a {
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: -0.05em;
    transition: 200ms linear 0.1s;
}

.main-header-two__right .contact-box .text a:hover {
    color: var(--thm-black);
}

.stricky-header.stricky-header--two .main-menu__wrapper {
    background-color: var(--thm-black);
}

.stricky-header.stricky-header--two .main-header-two__right {
    display: none;
}

.stricky-header.stricky-header--two .main-header-two__left .logo-box-two::before {
    display: none;
}

.main-header-three {
    position: absolute;
    top: 20px;
    left: 0px;
    right: 0px;
}

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

.main-header-three .auto-container {
    max-width: 1530px;
    width: 100%;
}

.main-header-three .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255, 255, 255);
}

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

.logo-box-three {
    position: relative;
    display: block;
    padding-left: 60px;
    padding-right: 60px;
    z-index: 1;
}

.logo-box-three::before {
    position: absolute;
    inset: -30px 0px;
    background: var(--thm-primary);
    content: "";
    z-index: -1;
}

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

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

.main-header-three .main-menu .main-menu__list > li > a {
    color: var(--thm-base);
}

.main-header-three .main-menu .main-menu__list > li.dropdown > a::before {
    color: var(--thm-base);
}

.main-header-three .main-menu .main-menu__list > li.current.dropdown > a::before, .main-header-three .main-menu .main-menu__list > li:hover.dropdown > a::before {
    color: var(--thm-primary);
}

.main-header-three .main-menu .main-menu__list > li.current > a, .main-header-three .main-menu .main-menu__list > li:hover > a, .main-header-three .stricky-header .main-menu__list > li.current > a, .main-header-three .stricky-header .main-menu__list > li:hover > a {
    color: var(--thm-primary);
}

.main-header-three .main-menu .main-menu__list > li > a::after {
    position: absolute;
    inset: 30px 0px -39px 5px;
    margin: 0px auto;
    width: 2px;
    height: 0px;
    background: var(--thm-primary);
    transition: 0.4s ease-in-out 0.3s;
    content: "";
}

.main-header-three .main-menu .main-menu__list > li:hover > a::after, .main-header-three .main-menu .main-menu__list > li.current > a::after {
    transition: 0.4s ease-in-out 0.3s;
    height: 38px;
}

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

.main-header-three__right .header-search-box {
    position: relative;
    display: block;
    padding-right: 30px;
    margin-left: 0px;
    padding-left: 0px;
}

.main-header-three__right .header-search-box a {
    color: var(--thm-black);
    font-size: 20px;
    transition: 200ms linear 0.1s;
}

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

.main-header-three__right .header-search-box::before {
    position: absolute;
    inset: -15px 0px -15px auto;
    width: 1px;
    background: rgb(203, 203, 203);
    content: "";
}

.main-header-three__right .contact-box {
    position: relative;
    display: block;
    padding-left: 55px;
    margin-left: 40px;
    margin-right: 35px;
}

.main-header-three__right .contact-box .icon {
    position: absolute;
    top: 5px;
    left: 0px;
    line-height: 0;
}

.main-header-three__right .contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 35px;
}

.main-header-three__right .contact-box .text {
    position: relative;
    display: block;
}

.main-header-three__right .contact-box .text p {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.main-header-three__right .contact-box .text a {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.011em;
    transition: 200ms linear 0.1s;
}

.main-header-three__right .contact-box .text a:hover {
    color: var(--thm-primary);
}

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

.main-header-three__right .btn-box a {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    background: var(--thm-primary);
    line-height: 65px;
    padding-left: 40px;
    padding-right: 40px;
    transition: 200ms linear 0.1s;
}

.main-header-three__right .btn-box a:hover {
    background: var(--thm-base);
}

.stricky-header.stricky-header--three .main-header-three__right .btn-box {
    display: none;
}

.stricky-header.stricky-header--three .logo-box-three::before {
    display: none;
}

.stricky-header.stricky-header--three .main-menu__wrapper {
    background-color: var(--thm-base);
}

.stricky-header.stricky-header--three .main-header-three__right .contact-box {
    margin-right: 0px;
    padding-left: 50px;
    margin-left: 25px;
}

.stricky-header.stricky-header--three .main-header-three__right .contact-box .icon span::before {
    color: rgb(255, 255, 255);
}

.stricky-header.stricky-header--three .main-header-three__right .contact-box .text p {
    color: rgb(255, 255, 255);
}

.stricky-header.stricky-header--three .main-header-three__right .contact-box .text a {
    color: rgb(255, 255, 255);
}

.stricky-header.stricky-header--three .main-header-three__right .contact-box .text a:hover {
    color: var(--thm-primary);
}

.stricky-header.stricky-header--three .main-header-three__right .header-search-box a {
    color: rgb(255, 255, 255);
}

.stricky-header.stricky-header--three .main-header-three__right .header-search-box a:hover {
    color: var(--thm-primary);
}

.stricky-header.stricky-header--three .logo-box-three {
    padding-left: 0px;
    padding-right: 25px;
}

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

.main-slider-one .shape1 {
    position: absolute;
    top: 290px;
    left: 40px;
    opacity: 0.2;
    z-index: 2;
}

.main-slider-one .shape2 {
    position: absolute;
    left: 700px;
    bottom: 10px;
    opacity: 0.2;
    z-index: 2;
}

.main-slider-one .shape3 {
    position: absolute;
    top: 200px;
    right: 50px;
    opacity: 0.2;
    z-index: 2;
}

.main-slider-one .shape4 {
    position: absolute;
    top: 130px;
    left: 260px;
    opacity: 0.3;
    z-index: 2;
}

.main-slider-one .shape5 {
    position: absolute;
    top: 200px;
    left: 850px;
    opacity: 0.3;
    z-index: 2;
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.main-slider-one .shape6 {
    position: absolute;
    left: 200px;
    bottom: 70px;
    opacity: 0.3;
    z-index: 2;
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.main-slider-one__img {
    position: absolute;
    top: -35px;
    right: -75px;
    width: 900px;
    height: 900px;
    border-radius: 50% 0px 50% 50%;
    overflow: hidden;
    opacity: 0;
    transform: translateX(40%);
    transition: 1000ms;
    z-index: 2;
}

.main-slider-one__img img {
    width: auto;
}

.main-slider-one .swiper-slide-active .main-slider-one__img {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 2500ms;
}

.main-slider-one .image-layer {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-blend-mode: color-burn;
    background-size: cover;
    z-index: 1;
}

.main-slider-one__content {
    position: relative;
    display: block;
    padding: 299px 0px 225px;
    z-index: 5;
}

.main-slider-one__content .tagline {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform-origin: center bottom;
    transition: 1500ms;
    z-index: 10;
}

.main-slider-one .swiper-slide-active .main-slider-one__content .tagline {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1800ms;
}

.main-slider-one__content .tagline::before {
    position: absolute;
    top: 15px;
    right: -60px;
    width: 40px;
    height: 3px;
    background: rgb(255, 255, 255);
    content: "";
}

.main-slider-one__content .tagline p {
    color: rgb(255, 255, 255);
    font-size: 24px;
    line-height: 29px;
    font-weight: 500;
    z-index: 5;
}

.main-slider-one__content .title {
    position: relative;
    display: block;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform-origin: center bottom;
    transition: 1500ms;
    z-index: 10;
}

.main-slider-one .swiper-slide-active .main-slider-one__content .title {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1200ms;
}

.main-slider-one__content .title h2 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 700;
}

.main-slider-one__content .text {
    position: relative;
    display: block;
    margin-top: 11px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: center bottom;
    transition: 1500ms;
    z-index: 10;
}

.main-slider-one .swiper-slide-active .main-slider-one__content .text {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1200ms;
}

.main-slider-one__content .text p {
    color: rgb(255, 255, 255);
}

.main-slider-one__content .btn-box {
    position: relative;
    display: block;
    margin-top: 49px;
    line-height: 0;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: center bottom;
    transition: 1500ms;
    z-index: 10;
}

.main-slider-one .swiper-slide-active .main-slider-one__content .btn-box {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1800ms;
}

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

.main-slider__nav {
    position: absolute;
    top: 43%;
    left: 80px;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    transform-origin: center bottom;
    transform-style: preserve-3d;
    line-height: 0;
    height: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: scaleX(1) translateX(0px);
    z-index: 105;
}

.main-slider__nav .swiper-button-next, .main-slider__nav .swiper-button-prev {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-align: center;
    line-height: 60px;
    opacity: 1;
    margin: 0px;
    transition: 500ms;
    z-index: 100;
}

.main-slider__nav .swiper-button-prev {
    float: left;
    left: 0px;
    margin-bottom: 10px;
}

.main-slider__nav .swiper-button-next {
    float: right;
    right: 0px;
}

.main-slider__nav .swiper-button-next:hover, .main-slider__nav .swiper-button-prev:hover {
    color: rgb(255, 255, 255);
    background: var(--thm-base);
}

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

.main-slider__nav .swiper-button-prev i::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
}

.main-slider__nav .swiper-button-next i::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
}

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

.main-slider-two .image-layer {
    position: absolute;
    inset: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
    transition: transform 7000ms, opacity 1500ms ease-in, -webkit-transform 7000ms;
    z-index: 1;
}

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

.main-slider-two .image-layer::before {
    position: absolute;
    inset: 0px;
    background: linear-gradient(90deg, rgb(241, 243, 242) 6%, rgb(241, 243, 242) 33%, rgba(241, 243, 242, 0.455) 50%, rgba(241, 243, 242, 0.008) 53%, rgba(241, 243, 242, 0) 74%);
    content: "";
}

.main-slider-two .shape1 {
    position: absolute;
    top: -130px;
    left: -30px;
    opacity: 0.07;
    z-index: 1;
}

.main-slider-two .shape2 {
    position: absolute;
    top: -70px;
    left: 0px;
    opacity: 0.4;
    z-index: 1;
}

.main-slider-two .shape3 {
    position: absolute;
    left: -270px;
    bottom: 0px;
    opacity: 0.4;
    z-index: 1;
}

.main-slider-two .shape4 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    margin-left: -110px;
    opacity: 0.4;
    z-index: 1;
}

.main-slider-two .shape5 {
    position: absolute;
    bottom: 0px;
    opacity: 0.4;
    z-index: 1;
    right: -110px;
}

.main-slider-two .shape6 {
    position: absolute;
    top: 70px;
    left: 290px;
    z-index: 1;
}

.main-slider-two .shape7 {
    position: absolute;
    left: 240px;
    bottom: 400px;
    z-index: 1;
}

.main-slider-two .shape8 {
    position: absolute;
    left: 600px;
    bottom: 130px;
    z-index: 1;
}

.main-slider-two .shape9 {
    position: absolute;
    top: 50px;
    right: 80px;
    z-index: 1;
}

.main-slider-two .container {
    padding: 225px 30px 230px;
}

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

.main-slider-two__content .tagline {
    position: relative;
    display: inline-block;
    margin-bottom: 29px;
    opacity: 0;
    transition: 1000ms;
    transform: translateY(80px);
}

.main-slider-two .swiper-slide-active .main-slider-two__content .tagline {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 1000ms;
}

.main-slider-two__content .tagline::before {
    position: absolute;
    left: 0px;
    bottom: -3px;
    right: 0px;
    height: 1px;
    background: var(--thm-black);
    content: "";
    width: 0%;
    transition: 1000ms;
}

.main-slider-two .swiper-slide-active .main-slider-two__content .tagline::before {
    width: 100%;
    transition-delay: 1500ms;
}

.main-slider-two__content .tagline p {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
}

.main-slider-two__content .title {
    position: relative;
    display: block;
    margin-bottom: 10px;
    opacity: 0;
    transition: 1300ms;
    transform: translateY(80px);
}

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

.main-slider-two__content .title h2 {
    color: var(--thm-black);
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 700;
}

.main-slider-two__content .text {
    position: relative;
    display: block;
    margin-bottom: 49px;
    opacity: 0;
    transition: 1300ms;
    transform: translateY(80px);
}

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

.main-slider-two__content .text p {
    color: var(--thm-black);
}

.main-slider-two__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    opacity: 0;
    transition: 1300ms;
    transform: translateY(80px);
}

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

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

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

.main-slider-two__nav {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    max-width: 1500px;
    width: 100%;
    padding: 0px 15px;
    height: 0px;
    line-height: 0;
    z-index: 100;
}

.main-slider-two__nav .swiper-button-next, .main-slider-two__nav .swiper-button-prev {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-align: center;
    line-height: 60px;
    opacity: 1;
    margin: 0px;
    transition: 500ms;
    z-index: 100;
}

.main-slider-two__nav .swiper-button-prev {
    float: left;
    left: 0px;
    margin-bottom: 10px;
}

.main-slider-two__nav .swiper-button-next {
    float: right;
    right: 0px;
}

.main-slider-two__nav .swiper-button-next:hover, .main-slider-two__nav .swiper-button-prev:hover {
    color: rgb(255, 255, 255);
    background: var(--thm-base);
}

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

.main-slider-two__nav .swiper-button-prev i::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
}

.main-slider-two__nav .swiper-button-next i::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
}

.main-slider-three {
    position: relative;
    display: block;
    background: var(--thm-base);
    z-index: 1;
}

.main-slider-three__img {
    position: absolute;
    top: -90px;
    right: 0px;
    z-index: -1;
    opacity: 0;
    transform: translateX(40%);
    transition: 1000ms;
}

.main-slider-three .swiper-slide-active .main-slider-three__img {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 2500ms;
}

.main-slider-three .shape1 {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.05;
    z-index: -1;
}

.main-slider-three .shape2 {
    position: absolute;
    left: -200px;
    bottom: 30px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    z-index: -1;
    opacity: 0;
    transform: translateX(-100%);
}

.main-slider-three .swiper-slide-active .shape2 {
    opacity: 1;
    transform: translate(0px);
    transition: 1700ms 2300ms;
}

.main-slider-three .shape3 {
    position: absolute;
    top: 170px;
    left: 240px;
    opacity: 0.7;
    z-index: -1;
}

.main-slider-three .shape4 {
    position: absolute;
    left: 200px;
    bottom: 75px;
    opacity: 0.55;
    z-index: -1;
}

.main-slider-three .shape5 {
    position: absolute;
    right: 0px;
    bottom: 0px;
    opacity: 0.05;
    z-index: -1;
}

.main-slider-three .shape6 {
    position: absolute;
    top: 180px;
    left: 40px;
    opacity: 0.5;
    z-index: -1;
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.main-slider-three .shape7 {
    position: absolute;
    left: 70px;
    bottom: 130px;
    opacity: 0.5;
    z-index: -1;
}

.main-slider-three .shape8 {
    position: absolute;
    top: 170px;
    left: 620px;
    opacity: 0.5;
    z-index: -1;
}

.main-slider-three .shape9 {
    position: absolute;
    bottom: 45px;
    right: 680px;
    opacity: 0.5;
    z-index: -1;
}

.main-slider-three .shape10 {
    position: absolute;
    top: 155px;
    right: 655px;
    opacity: 0.5;
    z-index: -1;
}

.main-slider-three__content {
    position: relative;
    display: block;
    padding: 313px 0px 190px;
}

.main-slider-three__content .tagline {
    position: relative;
    display: inline-block;
    margin-bottom: 26px;
    opacity: 0;
    transition: 1000ms;
    transform: translateY(80px);
}

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

.main-slider-three__content .tagline::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 1px;
    background: rgb(255, 255, 255);
    content: "";
    width: 0%;
    transition: 1000ms;
}

.main-slider-three .swiper-slide-active .main-slider-three__content .tagline::before {
    width: 100%;
    transition-delay: 1500ms;
}

.main-slider-three__content .tagline p {
    color: rgb(255, 255, 255);
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    z-index: 5;
}

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

.main-slider-three .swiper-slide-active .main-slider-three__content .title {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 1800ms;
}

.main-slider-three__content .title h2 {
    color: rgb(255, 255, 255);
    font-size: 70px;
    line-height: 1.2em;
    font-weight: 700;
    z-index: 5;
}

.main-slider-three__content .btn-box {
    position: relative;
    display: block;
    margin-top: 43px;
    line-height: 0;
    opacity: 0;
    transition: 1300ms;
    transform: translateY(80px);
    z-index: 5;
}

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

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

.page-header {
    position: relative;
    display: block;
    margin-top: 85px;
    z-index: 1;
}

.page-header .shape1 {
    position: absolute;
    top: 230px;
    left: 40px;
    opacity: 0.2;
    z-index: -1;
}

.page-header .shape2 {
    position: absolute;
    top: 40px;
    left: 560px;
    z-index: -1;
    opacity: 0.2;
}

.page-header .shape3 {
    position: absolute;
    top: 220px;
    left: 330px;
    z-index: -1;
    opacity: 0.2;
}

.page-header .shape4 {
    position: absolute;
    left: 300px;
    bottom: 115px;
    z-index: -1;
    opacity: 0.2;
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.page-header .shape5 {
    position: absolute;
    left: 670px;
    bottom: 30px;
    z-index: -1;
    opacity: 0.2;
}

.page-header .shape6 {
    position: absolute;
    left: 890px;
    bottom: 200px;
    z-index: -1;
    opacity: 0.2;
}

.page-header__img {
    position: absolute;
    top: -65px;
    right: -85px;
    width: 700px;
    height: 700px;
    border-radius: 50% 0px 50% 50%;
    overflow: hidden;
}

.page-header__img::before {
    position: absolute;
    inset: 0px;
    background: linear-gradient(0deg, rgba(7, 95, 51, 0) 61%, rgba(7, 95, 51, 0) 66%, rgba(7, 95, 51, 0.83) 100%);
    content: "";
    z-index: 8;
}

.page-header__inner {
    position: relative;
    display: block;
}

.page-header__inner h2 {
    color: rgb(255, 255, 255);
    font-size: 80px;
    line-height: 1em;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.page-header__inner .thm-breadcrumb {
    position: relative;
    display: block;
}

.page-header__inner .thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb li span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 18px;
    top: 2px;
}

.page-header__inner .thm-breadcrumb li a {
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    transition: 200ms linear 0.1s;
}

.page-header__inner .thm-breadcrumb li a:hover {
    color: var(--thm-primary);
}

.about-one {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 60px 0px;
    z-index: 1;
}

.about-one__shape1 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 0.05;
    z-index: -1;
}

.about-one__img {
    position: relative;
    display: block;
    padding-left: 100px;
}

.about-one__img1 {
    position: relative;
    display: block;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

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

.about-one__img2 {
    position: absolute;
    left: 0px;
    bottom: -120px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

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

.about-one__experience-box {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    background: var(--thm-primary);
    padding: 42px 50px 37px;
    border-radius: 10px 10px 10px 0px;
    z-index: 2;
}

.about-one__experience-box::before {
    position: absolute;
    inset: 10px;
    border: 2px dashed rgb(255, 255, 255);
    border-radius: 10px 10px 10px 0px;
    content: "";
}

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

.about-one__experience-box .count-box h2 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 0.8em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.about-one__experience-box .count-box h2 .odometer.odometer-auto-theme, .about-one__experience-box .count-box h2 .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 0.8em;
    letter-spacing: -0.02em;
}

.about-one__experience-box .title-box {
    position: relative;
    display: block;
    margin-left: 23px;
    margin-top: -3px;
}

.about-one__experience-box .title-box h3 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

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

.about-one__content .sec-title {
    padding-bottom: 6px;
}

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

.about-one__content .text p {
    margin: 0px;
}

.about-one__content-list {
    position: relative;
    display: block;
    margin-top: 22px;
}

.about-one__content-list li {
    position: relative;
    display: block;
    padding-left: 27px;
    margin-bottom: 3px;
}

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

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

.about-one__content-list li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    top: 6px;
    font-weight: 700;
}

.about-one__content-list li .text-box {
    position: relative;
    display: block;
}

.about-one__content-list li .text-box p {
    margin: 0px;
}

.about-one__content-text2 {
    position: relative;
    display: block;
    margin-top: 35px;
}

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

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

.about-one__content-text2-list li {
    position: relative;
    display: block;
    padding-left: 50px;
    margin-bottom: 23px;
}

.about-one__content-text2-list li:last-child {
    margin-bottom: 0px;
}

.about-one__content-text2-list li .icon-box {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--thm-base);
}

.about-one__content-text2-list li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.about-one__content-text2-list li .text-box {
    position: relative;
    display: block;
}

.about-one__content-text2-list li .text-box p {
    margin: 0px;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

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

.about-one__content-bottom .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.about-one__client-info-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.about-one__client-info-box .img-box {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.about-one__client-info-box .img-box img {
    width: 100%;
}

.about-one__client-info-box .title-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.about-one__client-info-box .title-box h2 {
    color: var(--thm-base);
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-one__client-info-box .title-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.cta-one {
    position: relative;
    display: block;
    padding: 88px 0px;
    margin-bottom: -65px;
    z-index: 5;
}

.cta-one .auto-container {
    max-width: 1400px;
    width: 100%;
}

.cta-one__bg {
    position: absolute;
    inset: 0px 200px 0px 0px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.cta-one__bg::before {
    position: absolute;
    inset: 0px;
    background: rgba(var(--thm-base-rgb), 0.88);
    content: "";
    z-index: -1;
}

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

.cta-one__inner .text-box {
    position: relative;
    display: block;
}

.cta-one__inner .text-box h2 {
    color: rgb(255, 255, 255);
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
}

.cta-one__inner .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-right: 80px;
}

.cta-one__inner .btn-box .thm-btn {
    background: rgb(255, 255, 255);
}

.cta-one__inner .btn-box .thm-btn .txt {
    color: rgb(0, 0, 0);
    transition: 200ms linear 0.1s;
}

.cta-one__inner .btn-box .thm-btn:hover .txt {
    color: rgb(255, 255, 255);
}

.features-one {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    z-index: 1;
}

.features-one .shape1 {
    position: absolute;
    top: 90px;
    left: 280px;
    z-index: -1;
}

.features-one .shape2 {
    position: absolute;
    left: 50px;
    bottom: 500px;
    z-index: -1;
}

.features-one__bg {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.features-one__bg::before {
    position: absolute;
    inset: 0px;
    z-index: -2;
    content: "";
}

.features-one__single {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    box-shadow: rgba(9, 24, 84, 0.08) 0px 2px 30px 0px;
    padding: 60px 30px 52px;
    border-bottom-right-radius: 60px;
    margin-bottom: 30px;
}

.features-one__single.mb60 {
    margin-top: 60px;
}

.features-one__single.style2 {
    background: rgb(255, 255, 255);
}

.features-one__single.style2 .icon-box .round-box {
    background: rgba(255, 255, 255, 0.12);
}

.features-one__single.style2 .icon-box span::before {
    color: rgb(255, 255, 255);
}

.features-one__single.style2 .text-box h3 a {
    color: rgb(255, 255, 255);
}

.features-one__single.style2 .text-box p {
    color: rgb(74, 74, 74);
    line-height: 27px;
}

.features-one__single .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
    z-index: 1;
}

.features-one__single .icon-box .round-box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgb(243, 243, 243);
    z-index: -1;
}

.features-one__single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 65px;
    transition: 500ms linear 0.1s;
    transform: scale(1);
}

.features-one__single:hover .icon-box span::before {
    transform: scale(0.9);
}

.features-one__single .text-box {
    position: relative;
    display: block;
}

.features-one__single .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.features-one__single .text-box h3 a {
    color: var(--thm-black);
}

.features-one__single .text-box p {
    margin: 0px;
    line-height: 27px;
    color: rgb(74, 74, 74);
}

.features-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px 90px;
    z-index: 1;
}

.features-two__inner {
    position: relative;
    display: block;
}

.features-two__img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    max-width: 500px;
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
}

.features-two__img img {
    width: 100%;
}

.features-two__list {
    position: relative;
    display: block;
}

.features-two__list li {
    position: relative;
    display: block;
    padding-top: 50px;
    max-width: 430px;
    width: 100%;
    float: left;
    margin-bottom: 31px;
}

.features-two__list li.style2 {
    float: right;
}

.features-two__list li .inner {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    box-shadow: rgba(9, 24, 84, 0.08) 0px 2px 30px 0px;
    padding: 67px 40px 36px;
    border-bottom-right-radius: 60px;
}

.features-two__list li .count-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 40px;
    width: 90px;
    height: 90px;
    background: var(--thm-base);
    z-index: 3;
}

.features-two__list li .count-box span {
    color: rgb(255, 255, 255);
    font-size: 35px;
    line-height: 45px;
    font-weight: 600;
}

.features-two__list li .inner h2 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.features-two__list li .inner h2 a {
    color: var(--thm-black);
}

.features-two__list li .inner p {
    font-size: 14px;
    line-height: 28px;
}

.features-two__list li.style3 .inner {
    background: var(--thm-base);
}

.features-two__list li.style3 .inner h2 a {
    color: rgb(255, 255, 255);
}

.features-two__list li.style3 .inner p {
    color: rgb(255, 255, 255);
}

.features-two__list li.style3 .count-box {
    background: rgb(255, 255, 255);
    box-shadow: rgba(9, 24, 84, 0.08) 0px 2px 30px 0px;
}

.features-two__list li.style3 .count-box span {
    color: var(--thm-base);
}

.counter-one {
    position: relative;
    display: block;
    background: rgb(147, 147, 147);
    padding: 50px 0px 29px;
    z-index: 1;
}

.counter-one__bg {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.03;
    z-index: -1;
}

.counter-one__inner {
    position: relative;
    display: block;
}

.counter-one__box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

.counter-one__single {
    position: relative;
    display: block;
    float: left;
    width: 20%;
    padding: 0px 15px;
    z-index: 3;
}

.counter-one__single .inner {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    padding: 25px 15px 20px;
    margin-bottom: 30px;
    border-bottom-right-radius: 60px;
    z-index: 1;
}

.counter-one__single .inner::before {
    position: absolute;
    inset: 0px;
    transform: scaleX(0.8) rotateX(0deg);
    transition: 0.4s linear;
    background: var(--thm-primary);
    border-bottom-right-radius: 60px;
    opacity: 0;
    content: "";
    z-index: -1;
}

.counter-one__single:hover .inner::before {
    transform: scaleX(1) rotateX(0deg);
    transition: 0.4s linear;
    opacity: 1;
}

.counter-one__single .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 23px;
}

.counter-one__single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 50px;
    transition: 500ms linear 0.1s;
    transform: scale(1);
}

.counter-one__single:hover .icon-box span::before {
    transform: scale(0.9);
}

.counter-one__single .text-box {
    position: relative;
    display: block;
}

.counter-one__single .text-box p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 4px;
}

.counter-one__single .text-box h2 {
    color: rgb(255, 255, 255);
    font-size: 34px;
    line-height: 19px;
    font-weight: 500;
}

.counter-one .odometer.odometer-auto-theme, .counter-one .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 48px;
}

.counter-one .odometer-formatting-mark {
    display: none;
}

.portfolio-one {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px 90px;
    z-index: 1;
}

.portfolio-one .auto-container {
    max-width: 1880px;
    width: 100%;
}

.portfolio-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

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

.portfolio-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px 100px 20px 0px;
    z-index: 1;
}

.portfolio-one__single-img .inner::before {
    content: "";
    position: absolute;
    inset: 0px;
    opacity: 1;
    z-index: 1;
    transition: 500ms;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
}

.portfolio-one__single-img .inner::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    background: rgba(var(--thm-black-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
}

.portfolio-one__single:hover .portfolio-one__single-img .inner::before {
    opacity: 1;
}

.portfolio-one__single-img .inner img {
    width: 100%;
    transition: 0.5s;
    transform: scale(1.05);
}

.portfolio-one__single:hover .portfolio-one__single-img .inner img {
    transform: scale(1);
}

.portfolio-one__single-img .inner .content-box {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: var(--thm-base);
    padding: 33px 30px 30px;
    border-top-right-radius: 40px;
    width: 310px;
    z-index: 2;
}

.portfolio-one__single-img .inner .content-box p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 3px;
}

.portfolio-one__single-img .inner .content-box h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
}

.portfolio-one__single-img .inner .content-box h2 a {
    color: rgb(255, 255, 255);
    transition: 200ms linear 0.1s;
}

.portfolio-one__single-img .inner .content-box h2 a:hover {
    color: var(--thm-primary);
}

.portfolio-one__single-img .inner .btn-box {
    position: absolute;
    bottom: 0px;
    left: 310px;
    z-index: 2;
}

.portfolio-one__single-img .inner .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--thm-primary);
    transition: 200ms linear 0.1s;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.portfolio-one__single-img .inner .btn-box a:hover {
    background: var(--thm-primary);
}

.portfolio-one__single-img .inner .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 700;
    transition: 200ms linear 0.1s;
}

.portfolio-one__single-img .inner .btn-box a:hover span::before {
    color: rgb(255, 255, 255);
}

.team-one {
    position: relative;
    display: block;
    background: rgb(238, 240, 246);
    padding: 120px 0px 290px;
    z-index: 1;
}

.team-one .shape1 {
    position: absolute;
    left: 50px;
    bottom: 305px;
    z-index: -1;
}

.team-one .shape2 {
    position: absolute;
    top: 195px;
    right: 355px;
    z-index: -1;
}

.team-one .shape3 {
    position: absolute;
    right: 280px;
    bottom: 50px;
    z-index: -1;
}

.team-one .shape4 {
    position: absolute;
    top: 150px;
    right: 150px;
    z-index: -1;
}

.team-one .shape5 {
    position: absolute;
    bottom: 300px;
    right: 255px;
    z-index: -1;
}

.team-one .shape6 {
    position: absolute;
    top: 175px;
    left: 500px;
    animation: 5s ease-in 0s infinite normal none running animation1;
    z-index: -1;
}

.team-one .shape7 {
    position: absolute;
    left: 210px;
    bottom: 240px;
    z-index: -1;
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.team-one .shape8 {
    position: absolute;
    left: 230px;
    bottom: 370px;
    z-index: -1;
}

.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one__single-img {
    position: relative;
    display: block;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

.team-one__single-img img {
    width: 100%;
    transition: 900ms 100ms;
}

.team-one__single:hover .team-one__single-img img {
    transform: scale(1.2, 1.2);
}

.team-one__single-img .content-box {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: var(--thm-primary);
    padding: 22px 20px 23px;
    opacity: 0;
    transform: translateY(200px);
    transition: 900ms;
}

.team-one__single:hover .team-one__single-img .content-box {
    opacity: 1;
    transform: translateY(0px);
}

.team-one__single-img .content-box h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-one__single-img .content-box h2 a {
    color: rgb(255, 255, 255);
}

.team-one__single-img .content-box p {
    color: rgb(255, 255, 255);
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    text-transform: capitalize;
}

.team-one__single-img ul {
    position: absolute;
    top: 25px;
    right: 20px;
    background: var(--thm-primary);
    padding: 12px 15px 11px;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(200px);
    transition: 900ms;
}

.team-one__single:hover .team-one__single-img ul {
    opacity: 1;
    transform: translateX(0px);
}

.team-one__single-img ul li {
    position: relative;
    display: block;
    margin-bottom: 6px;
}

.team-one__single-img ul li:last-child {
    margin-bottom: 0px;
}

.team-one__single-img ul li a {
    position: relative;
    display: block;
}

.team-one__single-img ul li a span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.brand-one {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
    margin-top: -200px;
    z-index: 5;
}

.brand-one__bg {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    width: calc(50% + 65px);
    z-index: -1;
}

.brand-one__inner {
    position: relative;
    display: block;
}

.brand-one__content {
    position: relative;
    display: block;
    background: var(--thm-base);
    max-width: 870px;
    width: 100%;
    float: right;
    padding: 72px 70px 70px;
}

.brand-one__content .sec-title {
    padding-bottom: 37px;
}

.brand-one__content .sec-title h2 {
    color: rgb(255, 255, 255);
}

.brand-one__content .sec-title .sub-title .text span {
    color: rgb(255, 255, 255);
}

.brand-one__content .sec-title .sub-title .text span::before {
    background: rgb(255, 255, 255);
}

.brand-one__box {
    position: relative;
    display: block;
}

.brand-one__box li {
    position: relative;
    display: block;
    float: left;
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 33.3333%;
    text-align: center;
}

.brand-one__box li:nth-child(1) {
    border-right: none;
    border-bottom: none;
}

.brand-one__box li:nth-child(2) {
    border-right: none;
    border-bottom: none;
}

.brand-one__box li:nth-child(3) {
    border-bottom: none;
}

.brand-one__box li:nth-child(4) {
    border-right: none;
}

.brand-one__box li:nth-child(5) {
    border-right: none;
}

.brand-one__box li a {
    position: relative;
    display: inline-block;
    padding: 20px 0px;
}

.brand-one__box li a img {
    transition: 0.5s;
    transform: scale(1.02);
    opacity: 0.8;
}

.brand-one__box li:hover a img {
    opacity: 1;
    transform: scale(1);
}

.pricing-plan-one {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px 90px;
    z-index: 1;
}

.pricing-plan-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding-top: 65px;
}

.pricing-plan-one__single-img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 170px;
    margin: 0px auto;
    border-radius: 10px;
    overflow: hidden;
    z-index: 5;
}

.pricing-plan-one__single-img::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    background: rgba(var(--thm-black-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
}

.pricing-plan-one__single:hover .pricing-plan-one__single-img::before {
    opacity: 1;
}

.pricing-plan-one__single-img img {
    width: 100%;
    transition: 0.5s;
    transform: scale(1.05);
}

.pricing-plan-one__single:hover .pricing-plan-one__single-img img {
    transform: scale(1);
}

.pricing-plan-one__single-inner {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(232, 231, 231);
    padding: 134px 65px 50px;
    transition: 200ms linear 0.1s;
    z-index: 1;
}

.pricing-plan-one__single:hover .pricing-plan-one__single-inner {
    box-shadow: rgba(9, 24, 84, 0.08) 0px 2px 30px 0px;
    border: 1px solid transparent;
}

.pricing-plan-one__single-inner .shape1 {
    position: absolute;
    top: 0px;
    right: 0px;
    opacity: 0.22;
    z-index: -1;
}

.pricing-plan-one__single-inner .table-header {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 12px 50px 11px;
    border-radius: 5px;
    margin: 0px auto;
    transition: 200ms linear 0.1s;
}

.pricing-plan-one__single:hover .pricing-plan-one__single-inner .table-header {
    background: var(--thm-primary);
}

.pricing-plan-one__single-inner .table-header h2 {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
}

.pricing-plan-one__single-inner .table-header h2 .dollar {
    position: absolute;
    top: -5px;
    font-size: 15px;
}

.pricing-plan-one__single-inner .table-header h2 .text {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 10px;
}

.pricing-plan-one__single-inner .table-content {
    position: relative;
    display: block;
    text-align: left;
    margin-top: 25px;
}

.pricing-plan-one__single-inner .table-content ul {
    position: relative;
    display: block;
}

.pricing-plan-one__single-inner .table-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-plan-one__single-inner .table-content ul li:last-child {
    margin-bottom: 0px;
}

.pricing-plan-one__single-inner .table-content ul li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgb(232, 231, 231);
    border-radius: 50%;
}

.pricing-plan-one__single-inner .table-content ul li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(34, 34, 34);
    font-size: 15px;
}

.pricing-plan-one__single-inner .table-content ul li .text-box {
    position: relative;
    display: block;
    flex: 1 1 0%;
    margin-left: 20px;
}

.pricing-plan-one__single-inner .table-content ul li .text-box p {
    color: rgb(131, 134, 145);
    font-size: 15px;
    line-height: 25px;
}

.pricing-plan-one__single-inner .table-footer {
    position: relative;
    display: block;
    margin-top: 40px;
}

.pricing-plan-one__single-inner .table-footer a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    background: rgb(248, 249, 253);
    border-radius: 5px;
    padding: 18px 40px 17px;
    transition: 200ms linear 0.1s;
    z-index: 1;
}

.pricing-plan-one__single-inner .table-footer a:hover {
    color: rgb(255, 255, 255);
}

.pricing-plan-one__single-inner .table-footer a::before {
    position: absolute;
    inset: 0px;
    background: var(--thm-primary);
    transform: scale(0.9);
    opacity: 0;
    transition: 300ms linear 0.2s;
    border-radius: 5px;
    content: "";
    z-index: -1;
}

.pricing-plan-one__single-inner .table-footer a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.slogan-one {
    position: relative;
    display: block;
    padding: 143px 0px 381px;
    z-index: 1;
}

.slogan-one .auto-container {
    max-width: 1530px;
    width: 100%;
}

.slogan-one__bg {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.slogan-one__bg::before {
    position: absolute;
    inset: 0px;
    background: linear-gradient(90deg, rgb(241, 243, 242) 9%, rgb(241, 243, 242) 20%, rgb(241, 243, 242) 37%, rgba(241, 243, 242, 0.663) 63%, rgba(241, 243, 242, 0) 74%);
    content: "";
    z-index: -2;
}

.slogan-one__inner {
    position: relative;
    display: block;
}

.slogan-one__inner h4 {
    color: var(--thm-base);
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.slogan-one__inner h2 {
    color: var(--thm-base);
    font-size: 60px;
    line-height: 80px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonials-one {
    position: relative;
    display: block;
    margin-top: -235px;
    z-index: 3;
}

.testimonials-one::before {
    position: absolute;
    inset: 0px 750px 0px 0px;
    background: var(--thm-base);
    content: "";
    z-index: -1;
}

.testimonials-one__left {
    position: relative;
    display: block;
    margin-left: -165px;
    max-width: 520px;
    width: 100%;
    padding: 120px 0px;
}

.testimonials-one__left-inner {
    position: relative;
    display: block;
}

.testimonials-one__single {
    position: relative;
    display: block;
}

.testimonials-one__single .icon {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.testimonials-one__single .icon span::before {
    color: rgb(255, 255, 255);
    font-size: 45px;
}

.testimonials-one__single h2 {
    color: rgb(255, 255, 255);
    font-size: 38px;
    line-height: 60px;
    font-weight: 500;
}

.testimonials-one__single .client-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.testimonials-one__single .client-info .img-box {
    position: relative;
    display: block;
}

.testimonials-one__single .client-info .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 30px;
}

.testimonials-one__single .client-info .img-box .inner::before {
    position: absolute;
    inset: 0px;
    border: 5px solid rgb(255, 255, 255);
    border-top-left-radius: 30px;
    content: "";
}

.testimonials-one__single .client-info .img-box .inner img {
    width: 100%;
}

.testimonials-one__single .client-info .img-box .icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--thm-primary);
}

.testimonials-one__single .client-info .img-box .icon span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.testimonials-one__single .client-info .text-box {
    position: relative;
    display: block;
    flex: 1 1 0%;
    margin-left: 45px;
}

.testimonials-one__single .client-info .text-box .review-box {
    position: relative;
    display: block;
    margin-bottom: 3px;
}

.testimonials-one__single .client-info .text-box .review-box li {
    position: relative;
    display: inline-block;
}

.testimonials-one__single .client-info .text-box .review-box li span::before {
    position: relative;
    display: inline-block;
    color: rgb(250, 182, 0);
    font-size: 15px;
}

.testimonials-one__single .client-info .text-box .text {
    position: relative;
    display: block;
}

.testimonials-one__single .client-info .text-box .text h2 {
    color: rgb(255, 255, 255);
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}

.testimonials-one__single .client-info .text-box .text p {
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonials-one__carousel.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
    position: absolute;
    top: 35%;
    right: -130px;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background: rgb(241, 243, 242);
    margin: 13px 0px;
    padding: 0px;
    border-radius: 50%;
    transition: 300ms linear 0.2s;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot::before {
    position: absolute;
    inset: -5px;
    border: 2px solid rgb(241, 243, 242);
    content: "";
    transform: scale(0.5);
    border-radius: 50%;
    transition: 300ms linear 0.2s;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot.active::before {
    transform: scale(1);
}

.testimonials-one__carousel.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.testimonials-one__form {
    position: absolute;
    bottom: 0px;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(9, 24, 84, 0.08) 0px 2px 30px 0px;
    padding: 43px 40px 55px;
    max-width: 470px;
    width: 100%;
    z-index: 2;
}

.testimonials-one__form .title-box {
    position: relative;
    display: block;
}

.testimonials-one__form .title-box h2 {
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonials-one__form .form-box {
    position: relative;
    margin-top: 37px;
}

.testimonials-one__form .form-box form {
    position: relative;
}

.testimonials-one__form .form-box form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.testimonials-one__form .form-box form .form-group input[type="text"], .testimonials-one__form .form-box form .form-group input[type="email"], .testimonials-one__form .form-box form .form-group input[type="tel"], .testimonials-one__form .form-box form .form-group input[type="url"], .testimonials-one__form .form-box form .form-group textarea, .testimonials-one__form .form-box form .form-group select {
    position: relative;
    display: block;
    font-size: 15px;
    color: var(--thm-gray);
    font-weight: 400;
    text-transform: none;
    padding: 0px 20px;
    width: 100%;
    height: 70px;
    background-color: rgb(244, 245, 248);
    border-radius: 5px;
    outline: none;
    border: none;
    font-family: var(--thm-font);
}

.testimonials-one__form .form-box form .form-group textarea {
    height: 140px;
    resize: none;
    padding-top: 19px;
}

.testimonials-one__form .form-box form .form-group .select-box {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
}

.testimonials-one__form .form-box form .form-group .nice-select {
    background: rgb(244, 245, 248);
    width: 100%;
    height: 70px;
    line-height: 70px;
    border: none;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    padding: 0px 20px;
    border-radius: 5px;
    font-family: var(--thm-font);
}

.testimonials-one__form .form-box form .form-group .nice-select::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
    border-right: 2px solid rgba(0, 0, 0, 0.3);
    right: 23px;
    margin-top: 0px;
    top: 27px;
    z-index: 10;
}

.testimonials-one__form .form-box form .form-group .nice-select .list {
    background-color: rgb(255, 255, 255);
}

.testimonials-one__form .form-box form .button-box {
    position: relative;
    display: block;
}

.testimonials-one__form .form-box form .button-box button {
    position: relative;
    z-index: 5;
}

.testimonials-one__form .form-box form .button-box button.thm-btn {
    background-color: var(--thm-black);
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0px;
    line-height: 65px;
    z-index: 5;
}

.testimonials-one__form .form-box form .button-box button.thm-btn::before {
    background: var(--thm-primary);
    color: rgb(255, 255, 255);
}

.blog-one {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px 90px;
}

.blog-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

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

.blog-one__single-img .date-box {
    position: absolute;
    left: 35px;
    bottom: -35px;
    background: var(--thm-base);
    border-radius: 6px;
    text-align: center;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.blog-one__single-img .date-box p {
    color: rgb(255, 255, 255);
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}

.blog-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1;
}

.blog-one__single-img .inner::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    /* background: rgb(255 255 255 / 60%); */
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-one__single:hover .blog-one__single-img .inner::before {
    opacity: 1;
}

.blog-one__single-img .inner img {
    width: 100%;
    transition: 0.5s;
    transform: scale(1.05);
}

.blog-one__single:hover .blog-one__single-img .inner img {
    transform: scale(1);
}

.blog-one__single__content {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 10px 60px 0px;
    padding: 30px 20px 24px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.blog-one__single__content .meta-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 22px;
}

.blog-one__single__content .meta-box li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    margin-right: 30px;
    line-height: 0;
}

.blog-one__single__content .meta-box li:last-child {
    margin-right: 0px;
}

.blog-one__single__content .meta-box li .icon {
    position: relative;
    display: block;
}

.blog-one__single__content .meta-box li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    font-weight: 700;
}

.blog-one__single__content .meta-box li .text {
    position: relative;
    display: block;
    margin-left: 8px;
    margin-top: 0px;
}

.blog-one__single__content .meta-box li .text p {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--thm-font-2);
    margin: 0px;
}

.blog-one__single__content .meta-box li .text p a {
    color: var(--thm-gray);
    transition: 200ms linear 0.1s;
}

.blog-one__single__content .meta-box li .text p a:hover {
    color: var(--thm-base);
}

.blog-one__single__content h2 {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 8px;
}

.blog-one__single__content h2 a {
    color: rgb(44, 44, 44);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    transition: 200ms linear 0.1s;
}

.blog-one__single__content h2 a:hover {
    color: rgb(228, 68, 7);
}

.blog-one__single__content p {
    position: relative;
    margin: 0px 0px 34px;
}

.blog-one__single__content .bottom-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(228, 228, 234);
    padding-top: 15px;
}

.blog-one__single__content .bottom-box .read-more-btn {
    position: relative;
    display: block;
}

.blog-one__single__content .bottom-box .read-more-btn a {
    color: rgb(45, 43, 43);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    transition: 200ms linear 0.1s;
}

.blog-one__single__content .bottom-box .read-more-btn a:hover {
    color: var(--thm-base);
}

.blog-one__single__content .bottom-box .icon-box {
    position: relative;
    display: inline-block;
}

.blog-one__single__content .bottom-box .icon-box a {
    position: relative;
    transition: 200ms linear 0.1s;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #6a6969;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 10px;
}

.blog-one__single__content .bottom-box .icon-box a:hover {
    color: rgb(255, 255, 255);
}

.blog-one__single__content .bottom-box .icon-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
}

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

.footer-one__top {
    background: rgb(249, 233, 230);
    position: relative;
    display: block;
    z-index: 1;
}

.footer-one__top__bg {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.footer-one__top-inner {
    position: relative;
    display: block;
    padding: 68px 100px 80px;
    z-index: 1;
}

.footer-one__top-inner .shape6 {
    position: absolute;
    left: -325px;
    bottom: 25px;
    opacity: 0.55;
    z-index: -1;
}

.footer-one__top-inner .shape7 {
    position: absolute;
    top: 0px;
    right: 165px;
    z-index: -1;
}

.footer-one__top-inner::before {
    position: absolute;
    inset: 0px;
    background: rgb(249, 233, 230);
    content: "";
    z-index: -1;
}

.footer-one__top-inner .title {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 58px;
}

.footer-one__top-inner .title h2 {
    color: rgb(0, 0, 0);
    font-size: 21px;
    line-height: 54px;
    text-transform: uppercase;
}

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

.footer-one__top-inner form ul {
    position: relative;
    display: block;
    margin-left: -10px;
    margin-right: -10px;
}

.footer-one__top-inner form ul li {
    position: relative;
    display: block;
    float: left;
    width: 25%;
    padding: 0px 10px;
}

.footer-one__top-inner form ul li .input-box input[type="text"], .footer-one__top-inner form ul li .input-box input[type="email"] {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    width: 100%;
    height: 60px;
    border: 0px solid rgb(255, 255, 255);
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    transition: 500ms;
    font-family: var(--thm-font);
    letter-spacing: 0.02em;
    outline: none;
}

.footer-one__top-inner form ul li .button-box {
    position: relative;
    display: block;
}

.footer-one__top-inner form ul li .button-box .footer-one__top-btn {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 60px;
    font-weight: 500;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 0px 40px;
    transition: 200ms linear 0.1s;
}

.footer-one__top-inner form ul li .button-box .footer-one__top-btn:hover {
    background: var(--thm-primary);
    color: rgb(255, 255, 255);
}

.footer {
    position: relative;
    display: block;
    background: rgb(246 246 246);
    overflow: hidden;
    z-index: 1;
}

.footer__pattern {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.04;
    z-index: -1;
}

.footer .shape1 {
    position: absolute;
    top: 0px;
    right: 0px;
    opacity: 0.2;
    z-index: -1;
}

.footer .shape2 {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.2;
    z-index: -1;
}

.footer .shape3 {
    position: absolute;
    left: -10px;
    bottom: 30px;
    opacity: 0.35;
    z-index: -1;
}

.footer .shape4 {
    position: absolute;
    top: 60px;
    right: 75px;
    opacity: 0.35;
    z-index: -1;
}

.footer .shape5 {
    position: absolute;
    bottom: -20px;
    right: 450px;
    opacity: 0.35;
    z-index: -1;
}

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

.footer-widget__single .title {
    position: relative;
    display: block;
    margin-bottom: 16px;
    margin-top: -8px;
}

.footer-widget__single .title h2 {
    color: rgb(49 41 41);
    font-size: 16px;
    line-height: 29px;
    text-transform: uppercase;
}

.footer-widget__single-about {
    position: relative;
    display: block;
}

.footer-widget__single-about .text-box {
    position: relative;
    display: block;
}

.footer-widget__single-about .text-box p {
    color: rgb(30 30 30);
    font-size: 14px;
}

.footer-widget__single-about .social-link {
    position: relative;
    display: block;
    margin-top: 29px;
}

.footer-widget__single-about .social-link li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.footer-widget__single-about .social-link li:last-child {
    margin-right: 0px;
}

.footer-widget__single-about .social-link li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(255 255 255);
    z-index: 1;
}

.footer-widget__single-about .social-link li a::before {
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    background: var(--thm-primary);
    transform: scale(0.5);
    opacity: 0;
    transition: 300ms linear 0.1s;
    content: "";
}

.footer-widget__single-about .social-link li a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.footer-widget__single-about .social-link li a span::before {
    position: relative;
    display: inline-block;
    color: rgb(0 0 0);
    font-size: 15px;
}

.footer-widget__single-links {
    position: relative;
    display: block;
}

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

.footer-widget__single-links-list li {
    position: relative;
    display: block;
    margin-bottom: 11px;
}

.footer-widget__single-links-list li:last-child {
    margin-bottom: 0px;
}

.footer-widget__single-links-list li a {
    position: relative;
    display: block;
    color: rgb(16 16 16);
    font-size: 14px;
    line-height: 25px;
    text-transform: capitalize;
    transition: 200ms linear 0.1s;
}

.footer-widget__single-links-list li a:hover {
    color: rgb(255, 255, 255);
}

.footer-widget__single-blog {
    position: relative;
    display: block;
}

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

.footer-widget__single-blog-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-widget__single-blog-list li:last-child {
    margin-bottom: 0px;
}

.footer-widget__single-blog-list li .img-box {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.footer-widget__single-blog-list li .img-box img {
    width: 100%;
}

.footer-widget__single-blog-list li .img-box .overlay-icon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--thm-black-rgb), .80);
    border-radius: 5px;
    opacity: 0;
    transform: perspective(400px) scale(0);
    transform-origin: center top;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.footer-widget__single-blog-list li:hover .img-box .overlay-icon {
    opacity: 1;
    transform: perspective(400px) scale(1);
    transition: 0.3s ease-in-out 0.3s;
}

.footer-widget__single-blog-list li .img-box .overlay-icon a {
    color: rgb(255, 255, 255);
    font-size: 20px;
    transition: 200ms linear 0.1s;
}

.footer-widget__single-blog-list li .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1 1 0%;
}

.footer-widget__single-blog-list li .text-box span {
    color: rgb(255, 180, 0);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.footer-widget__single-blog-list li .text-box p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
}

.footer-widget__single-blog-list li .text-box p a {
    color: rgba(255, 255, 255, 0.8);
    transition: 200ms linear 0.1s;
}

.footer-widget__single-blog-list li .text-box p a:hover {
    color: rgb(255, 255, 255);
}

.footer-widget__single-newsletter {
    position: relative;
    display: block;
}

.footer-widget__single-newsletter .text-box {
    position: relative;
    display: block;
}

.footer-widget__single-newsletter .text-box p {
    color: rgb(45 44 44);
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 3px;
}

.footer-widget__single-newsletter .newsletter-form {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 30px;
}

.footer-widget__single-newsletter .newsletter-form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    padding: 0px 70px 0px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    border-radius: 10px;
    transition: 500ms;
    font-family: var(--thm-font);
    text-transform: none;
    outline: none;
}

.footer-widget__single-newsletter .newsletter-form input::-webkit-input-placeholder {
    color: rgb(255, 255, 255);
}

.footer-widget__single-newsletter .newsletter-form button {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 40px;
    color: var(--thm-base);
    font-size: 16px;
    line-height: 40px;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    transition: 300ms 100ms;
}

.footer-widget__single-newsletter .newsletter-form input[type="email"]:focus {
    color: rgb(255, 255, 255);
}

.footer-widget__single-newsletter .newsletter-form input[type="email"]:focus + button, .footer-widget__single-newsletter .newsletter-form button:hover {
    color: rgb(255, 255, 255);
    background: var(--thm-base);
}

.footer-one__bottom {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 25px 0px 24px;
}

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

.footer-one__bottom .bottom-inner .copyright {
    position: relative;
    display: block;
}

.footer-one__bottom .bottom-inner .copyright p {
    color: rgb(0, 0, 0);
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
}

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

.footer-one__bottom-menu li {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    margin-right: 5px;
}

.footer-one__bottom-menu li::before {
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 0px;
    width: 1px;
    background: rgb(255, 255, 255);
    content: "";
}

.footer-one__bottom-menu li:last-child::before {
    display: none;
}

.footer-one__bottom-menu li a {
    color: rgb(2, 2, 2);
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    transition: 200ms linear 0.1s;
}

.footer-one__bottom-menu li a:hover {
    color: var(--thm-primary);
}

.feature-three {
    position: relative;
    display: block;
    background: rgb(238, 240, 246);
    padding: 120px 0px;
    z-index: 1;
}

.feature-three .shape1 {
    position: absolute;
    top: 150px;
    right: 310px;
    z-index: -1;
}

.feature-three .container-fluid {
    padding-right: var(--bs-gutter-x, 0rem);
    padding-left: var(--bs-gutter-x, 0rem);
}

.features-three__inner {
    position: relative;
    display: block;
}

.feature-three__single {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 17px;
    z-index: 1;
}

.feature-three__single .shape1 {
    position: absolute;
    top: 45px;
    right: 10px;
    opacity: 0.5;
    z-index: 1;
}

.feature-three__single .shape2 {
    position: absolute;
    left: 0px;
    bottom: 25px;
    opacity: 0.5;
    z-index: 1;
}

.feature-three__single::before {
    position: absolute;
    inset: 0px;
    background: rgb(247, 247, 247);
    border-radius: 60px 10px;
    content: "";
    z-index: -1;
}

.feature-three__single::after {
    position: absolute;
    inset: 0px;
    transform: scaleX(0.7) rotateX(0deg);
    transition: 0.4s linear;
    border-radius: 60px 10px;
    background: rgb(231, 141, 0);
    opacity: 0;
    z-index: -1;
    content: "";
}

.feature-three__single:hover::after {
    transform: scaleX(1) rotateX(0deg);
    transition: 0.4s linear;
    opacity: 1;
}

.feature-three__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgb(238, 240, 246);
    margin: 0px auto 15px;
}

.feature-three__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 50px;
}

.feature-three__single h2 {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
}

.feature-three__single h2 a {
    color: rgb(30, 30, 30);
    text-transform: uppercase;
    transition: 200ms linear 0.1s;
}

.feature-three__single:hover h2 a {
    color: rgb(255, 255, 255);
}

.feature-three__single .border-box {
    position: relative;
    display: block;
    width: 50px;
    height: 3px;
    background: rgb(255, 255, 255);
    margin: 10px auto 0px;
}

.feature-three__single .border-box::before {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 10px;
    height: 3px;
    background: var(--thm-primary);
    content: "";
    margin: 0px auto;
    transition: 200ms linear 0.1s;
}

.feature-three__single:hover .border-box::before {
    background: rgb(232, 78, 40);
}

.feature-three__single p {
    margin: 10px 0px 0px;
}

.feature-three__single .btn-box {
    position: relative;
    display: inline-block;
    margin-top: 24px;
}

.feature-three__single:hover p {
    color: rgb(255, 255, 255);
}

.feature-three__single .btn-box a {
    position: relative;
    display: block;
    padding: 0px 30px;
    background: rgb(238, 240, 246);
    color: rgb(56, 56, 57);
    font-size: 14px;
    font-weight: 500;
    line-height: 50px;
    border-radius: 25px;
    transition: 200ms linear 0.1s;
}

.feature-three__single .btn-box a:hover {
    background: var(--thm-primary);
    color: rgb(255, 255, 255);
}

.feature-three__single .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: rgb(81, 81, 83);
    font-size: 15px;
    font-weight: 700;
    transition: 200ms linear 0.1s;
    top: 2px;
}

.feature-three__single .btn-box a:hover span::before {
    color: rgb(255, 255, 255);
}

.feature-three__carousel.owl-carousel {
    display: block;
    max-width: 370px;
    width: 100%;
    margin: 0px auto;
}

.feature-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px;
}

.feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single::after {
    transform: scaleX(1) rotateX(0deg);
    transition: 0.6s linear;
    opacity: 1;
}

.feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single h2 a {
    color: rgb(255, 255, 255);
}

.feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single p {
    color: rgb(255, 255, 255);
}

.feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single .border-box::before {
    background: rgb(150, 167, 216);
}

.about-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 60px 0px;
    padding: 180px 0px 120px;
    z-index: 2;
}

.about-two__bg {
    position: absolute;
    inset: 0px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: right top;
}

.about-two__img {
    position: relative;
    display: block;
    margin-left: -50px;
    margin-right: 30px;
    z-index: 1;
}

.about-two__img .shape1 {
    position: absolute;
    top: -23px;
    right: -23px;
    width: 180px;
    height: 180px;
    background: var(--thm-primary);
    z-index: -1;
}

.about-two__img .shape2 {
    position: absolute;
    right: -25px;
    bottom: -25px;
    z-index: -1;
}

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

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

.about-two__img1 .counter-box {
    position: absolute;
    left: -25px;
    bottom: -25px;
    background: var(--thm-primary);
    padding: 40px 30px 35px;
}

.about-two__img1 .counter-box h2 {
    color: rgb(255, 255, 255);
    font-size: 55px;
    font-weight: 600;
    letter-spacing: -0.07em;
    line-height: 0;
}

.about-two__img1 .counter-box h2 .plus {
    font-size: 40px;
    margin-left: -5px;
}

.about-two__img1 .counter-box h2 .text {
    font-size: 33px;
    line-height: 43px;
    font-weight: 700;
    letter-spacing: 0px;
}

.about-two__img .odometer.odometer-auto-theme, .about-two__img .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 0.9em;
}

.about-two__img2 {
    position: absolute;
    top: -60px;
    left: 0px;
    width: 160px;
    height: 160px;
    border: 5px solid rgb(255, 255, 255);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(9, 24, 84, 0.08) 0px 2px 30px 0px;
}

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

.about-two__content {
    position: relative;
    display: block;
    margin-left: 30px;
}

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

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

.about-two__content-text p {
    margin: 0px;
    color: var(--thm-black);
    font-weight: 500;
}

.about-two__content-text2 {
    position: relative;
    display: block;
    margin-top: 35px;
}

.about-two__content-text2-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.about-two__content-text2-single .img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    z-index: 1;
    margin-left: 10px;
    margin-bottom: 27px;
}

.about-two__content-text2-single .img-box::after {
    position: absolute;
    inset: 0px;
    background: var(--thm-base);
    border-radius: 5px 5px 5px 30px;
    content: "";
    z-index: -1;
}

.about-two__content-text2-single .img-box::before {
    position: absolute;
    inset: -10px 0px 0px -10px;
    background: rgb(217, 222, 230);
    border-radius: 5px;
    content: "";
    z-index: -1;
}

.about-two__content-text2-single .img-box img {
    width: auto;
}

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

.about-two__content-text2-single .text-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.about-two__content-text2-single .text-box h3 a {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

.about-two__content-text2-single .text-box h3 a:hover {
    color: var(--thm-primary);
}

.about-two__content-text2-single .text-box p {
    margin: 0px;
}

.about-two__content-text3 {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 1px;
}

.about-two__content-text3 .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.about-two__content-text3 .btn-box .thm-btn {
    background: var(--thm-primary);
}

.about-two__content-text3 .btn-box .thm-btn::before {
    background: var(--thm-base);
}

.about-two__client-info-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.about-two__client-info-box .img-box {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.about-two__client-info-box .img-box img {
    width: 100%;
}

.about-two__client-info-box .title-box {
    position: relative;
    display: block;
    margin-left: 25px;
}

.about-two__client-info-box .title-box h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-two__client-info-box .title-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.gallery-one {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
    z-index: 1;
}

.gallery-one .container-fluid {
    padding-right: var(--bs-gutter-x, 0rem);
    padding-left: var(--bs-gutter-x, 0rem);
}

.gallery-one__single {
    position: relative;
    display: block;
    padding-top: 75px;
    max-width: 375px;
    width: 100%;
    z-index: 1;
}

.gallery-one__single::before {
    position: absolute;
    inset: 0px;
    background: rgb(238, 240, 246);
    clip-path: polygon(0px 0px, 100% 6%, 100% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

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

.gallery-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0px 50% 50%;
    z-index: 1;
}

.gallery-one__single-img .inner img {
    width: 100%;
    transform: scale(1.01);
    transition: 700ms;
}

.gallery-one__single:hover .gallery-one__single-img .inner img {
    transform: scale(1.2);
}

.gallery-one__single-img .inner::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.gallery-one__single:hover .gallery-one__single-img .inner::before {
    animation: 0.75s ease 0s 1 normal none running circle;
}

.gallery-one__single-img .content-box {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: rgb(255, 255, 255);
    padding: 32px 0px 33px 20px;
    width: 280px;
    border-top-right-radius: 20px;
    transition: 200ms linear 0.1s;
    z-index: 2;
}

.gallery-one__single-img .content-box::before {
    position: absolute;
    inset: 0px;
    content: "";
    transform: scaleX(0.7) rotateX(20deg);
    transition: 0.4s linear;
    z-index: -1;
    background: var(--thm-primary);
    border-top-right-radius: 20px;
    opacity: 0;
}

.gallery-one__single:hover .gallery-one__single-img .content-box::before {
    transform: scaleX(1) rotateX(0deg);
    transition: 0.4s linear;
    opacity: 1;
}

.gallery-one__single-img .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.gallery-one__single-img .content-box h3 a {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

.gallery-one__single:hover .gallery-one__single-img .content-box h3 a {
    color: rgb(255, 255, 255);
}

.gallery-one__single-img .content-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    transition: 200ms linear 0.1s;
}

.gallery-one__single:hover .gallery-one__single-img .content-box p {
    color: rgb(255, 255, 255);
}

.gallery-one__single-img .btn-box {
    position: absolute;
    left: 255px;
    bottom: 32px;
    z-index: 2;
}

.gallery-one__single-img .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--thm-black);
    border-radius: 10px;
    transition: 200ms linear 0.3s;
}

.gallery-one__single:hover .gallery-one__single-img .btn-box a {
    background: rgb(255, 255, 255);
}

.gallery-one__single-img .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 700;
    transition: 200ms linear 0.1s;
}

.gallery-one__single:hover .gallery-one__single-img .btn-box a span::before {
    color: var(--thm-black);
}

.gallery-one__carousel.owl-carousel {
    display: block;
    max-width: 375px;
    width: 100%;
    margin: 0px auto;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px;
}

.services-two {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 320px;
    z-index: 1;
}

.services-two .shape1 {
    position: absolute;
    top: 500px;
    left: 50px;
    opacity: 0.3;
    z-index: -1;
}

.services-two .shape2 {
    position: absolute;
    top: 150px;
    right: 310px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape3 {
    position: absolute;
    top: 15px;
    left: 330px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape4 {
    position: absolute;
    top: 50px;
    right: 750px;
    z-index: -1;
    animation: 5s ease-in 0s infinite normal none running animation1;
    opacity: 0.3;
}

.services-two .shape5 {
    position: absolute;
    top: -70px;
    right: -70px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape6 {
    position: absolute;
    right: -10px;
    bottom: 135px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape7 {
    position: absolute;
    bottom: 460px;
    right: -60px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape8 {
    position: absolute;
    bottom: 220px;
    left: 370px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .sec-title .sub-title .text span {
    color: rgb(255, 255, 255);
}

.services-two .sec-title .sub-title .text span::before {
    background: rgb(255, 255, 255);
}

.services-two .sec-title h2 {
    color: rgb(255, 255, 255);
}

.services-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    background: rgb(255, 255, 255);
    padding: 37px 50px 37px 45px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.services-two__single .inner {
    position: relative;
    display: block;
    padding-left: 130px;
}

.services-two__single .inner .img-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 8px;
    left: 0px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgb(238, 240, 246);
    border: 8px solid rgb(255, 255, 255);
    box-shadow: rgba(9, 24, 84, 0.08) 0px 2px 20px 0px;
}

.services-two__single .inner .img-box img {
    width: auto;
    transition: 0.5s;
    transform: scale(1);
}

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

.services-two__single .inner .content-box {
    position: relative;
    display: block;
}

.services-two__single .inner .content-box h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.services-two__single .inner .content-box h2 a {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

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

.services-two__single .inner .content-box p {
    font-size: 14px;
    line-height: 26px;
}

.testimonial-two {
    position: relative;
    display: block;
    background: rgb(221, 221, 221);
    padding: 120px 0px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-two__img7 {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.testimonial-two__content {
    position: relative;
    display: block;
    max-width: 880px;
    width: 100%;
}

.testimonial-two__content .sec-title h2 {
    color: rgb(255, 255, 255);
}

.testimonial-two__content .sec-title .sub-title .text span {
    color: rgb(255, 255, 255);
}

.testimonial-two__content .sec-title .sub-title .text span::before {
    background: rgb(255, 255, 255);
}

.testimonial-two__content .shape1 {
    position: absolute;
    top: -340px;
    left: -260px;
    width: 1210px;
    height: 1210px;
    border-radius: 50%;
    background: var(--thm-black);
}

#testimonial-two__thumb {
    width: 350px;
    margin-left: 0px;
}

.testimonial-two__img {
    position: relative;
    display: block;
    cursor: pointer;
    transition: 500ms;
}

.testimonial-two__img .inner {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    overflow: hidden;
    transition: 500ms;
}

.testimonial-two__img .inner::before {
    position: absolute;
    inset: 0px;
    background: rgba(255, 255, 255, 0.2);
    transition: 500ms;
    border-radius: 50%;
    content: "";
}

#testimonial-two__thumb .swiper-slide-thumb-active .testimonial-two__img .inner::before {
    background-color: rgba(var(--moniz-base-rgb, 255, 255, 255), .0);
}

.testimonial-two__img .inner > img {
    width: 105px;
    border-radius: 50%;
    transition: 0.5s ease-in-out 0.6s;
}

.testimonial-two__img .icon {
    position: absolute;
    bottom: 15px;
    right: -5px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: var(--thm-base);
    font-size: 10px;
    font-weight: 700;
    background: rgb(255, 255, 255);
    transform: scale(0);
    transition: 500ms;
}

#testimonial-two__thumb .swiper-slide-thumb-active .testimonial-two__img .icon {
    transform: scale(1);
}

.testimonial-two__content-box {
    position: relative;
    display: block;
    margin-top: 62px;
}

.testimonial-two__content-box-single {
    position: relative;
    display: block;
}

.testimonial-two__content-box-single .inner {
    position: relative;
    display: block;
    padding-left: 150px;
}

.testimonial-two__content-box-single .inner .icon-box {
    position: absolute;
    right: 0px;
    bottom: 5px;
}

.testimonial-two__content-box-single .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 50px;
    line-height: 50px;
}

.testimonial-two__content-box-single .inner .img-box {
    position: absolute;
    top: 8px;
    left: 0px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-two__content-box-single .inner .img-box img {
    width: 100%;
}

.testimonial-two__content-box-single .inner .content-box {
    position: relative;
    display: block;
}

.testimonial-two__content-box-single .inner .content-box h4 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.testimonial-two__content-box-single .inner .content-box .name {
    position: relative;
    display: block;
    margin-top: 27px;
}

.testimonial-two__content-box-single .inner .content-box .name h4 {
    color: rgb(208, 210, 208);
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.testimonial-two__content-box-single .inner .content-box .name span {
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.01em;
}

#testimonial-two__carousel-pagination {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: -117px;
    right: 0px;
    left: auto;
    width: 100%;
    z-index: 20;
}

#testimonial-two__carousel-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: transparent;
    transition: 500ms;
    opacity: 1;
    margin: 0px;
    display: block;
}

#testimonial-two__carousel-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 6px;
}

#testimonial-two__carousel-pagination .swiper-pagination-bullet-active {
    background-color: rgb(255, 255, 255);
}

.banefits-two {
    position: relative;
    display: block;
    background: rgb(238, 240, 246);
    padding: 120px 0px 210px;
    margin-top: 5px;
    z-index: 1;
}

.banefits-two .shape1 {
    position: absolute;
    left: 50px;
    bottom: 230px;
    z-index: -1;
}

.banefits-two .shape2 {
    position: absolute;
    top: 208px;
    right: 275px;
    z-index: -1;
}

.banefits-two__single {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 55px 30px 38px;
    margin-bottom: 30px;
}

.banefits-two__single-img {
    position: relative;
    display: block;
    text-align: center;
    margin: 0px auto;
    z-index: 1;
}

.banefits-two__single-img::before {
    position: absolute;
    inset: -10px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: rgb(243, 245, 251);
    content: "";
    z-index: -1;
}

.banefits-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.banefits-two__single-img .inner::before {
    position: absolute;
    inset: 0%;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .60);
    transform: scaleY(1);
    opacity: 0;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    z-index: 1;
}

.banefits-two__single:hover .banefits-two__single-img .inner::before {
    opacity: 0.7;
    transform: scaleY(1);
}

.banefits-two__single-img .inner img {
    width: 100%;
    transform: scale(1);
}

.banefits-two__single:hover .banefits-two__single-img .inner img {
    transform: scale(1.1) rotate(1deg);
}

.banefits-two__single-content {
    position: relative;
    display: block;
    margin-top: 37px;
}

.banefits-two__single-content h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.banefits-two__single-content h2 a {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

.banefits-two__single-content h2 a:hover {
    color: var(--thm-primary);
}

.banefits-two__single-content p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-one {
    position: relative;
    display: block;
    padding: 110px 0px 90px;
    margin-top: -120px;
    z-index: 1;
}

.contact-one::before {
    position: absolute;
    inset: 0px 47% 0px 0px;
    background: var(--thm-black);
    content: "";
    z-index: -1;
}

.contact-one .shape1 {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.2;
    z-index: -1;
}

.contact-one__bg {
    position: absolute;
    top: 0px;
    bottom: -120px;
    left: 0px;
    width: calc(100% - 150px);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0px 0px, 100% 0%, 87% 100%, 0% 100%);
    z-index: -2;
}

.contact-one__form {
    position: relative;
    display: block;
    margin-left: -100px;
    z-index: 1;
}

.contact-one__form .sec-title {
    padding-bottom: 42px;
}

.contact-one__form .sec-title h2 {
    color: rgb(255, 255, 255);
}

.contact-one__form .sec-title .sub-title .text span {
    color: rgb(255, 255, 255);
}

.contact-one__form .sec-title .sub-title .text span::before {
    background: rgb(255, 255, 255);
}

.contact-one__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-one__form .input-box input[type="text"], .contact-one__form .input-box input[type="email"], .contact-one__form .input-box textarea {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 0px;
    transition: 500ms;
    font-family: var(--thm-font);
    outline: none;
}

.contact-one__form form input[type="text"]::-webkit-input-placeholder {
    color: rgb(255, 255, 255);
}

.contact-one__form form input[type="email"]::-webkit-input-placeholder {
    color: rgb(255, 255, 255);
}

.contact-one__form form textarea::-webkit-input-placeholder {
    color: rgb(255, 255, 255);
}

.contact-one__form .input-box .select-box {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
}

.contact-one__form .input-box .nice-select {
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 0px;
}

.contact-one__form .input-box .nice-select::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgb(255, 255, 255);
    border-right: 2px solid rgb(255, 255, 255);
    right: 30px;
    margin-top: 0px;
    top: 19px;
    z-index: 10;
}

.contact-one__form .nice-select .list {
    background-color: var(--thm-primary);
}

.contact-one__form-btn {
    position: relative;
}

.contact-one__form-btn .thm-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0px;
    line-height: 48px;
    width: 100%;
    font-size: 16px;
    transition: 200ms linear 0.1s;
}

.contact-one__form-btn .thm-btn:hover {
    border-color: var(--thm-primary);
}

#ui-datepicker-div.ui-widget-content {
    background: none 0px 0px repeat scroll rgb(255, 255, 255);
    border: 1px solid var(--thm-black);
    color: rgb(37, 37, 37);
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--thm-base) none repeat scroll 0 0;
    border: 2px solid var(--thm-base);
    border-radius: 0px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    padding: 5px 0px;
    position: relative;
}

.ui-datepicker td a {
    text-align: center;
    color: rgb(0, 0, 0) !important;
    background: rgb(245, 245, 245) !important;
    border: 1px solid rgb(249, 249, 249) !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid rgb(51, 51, 51) !important;
    background: rgb(51, 51, 51) !important;
    color: rgb(255, 255, 255) !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: 500ms;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: rgb(255, 255, 255);
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0px 0px 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover, .ui-datepicker-calendar .ui-state-default:active {
    background: rgb(67, 195, 234);
    color: rgb(255, 255, 255);
    border-color: rgb(67, 195, 234);
}

#ui-datepicker-div.ui-widget {
    font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget {
    font-family: var(--thm-font);
}

.pricing-plan-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 240px 0px 90px;
}

.pricing-plan-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    background: rgb(250, 251, 250);
    border: 1px solid rgb(243, 243, 243);
    border-radius: 6px;
    padding: 20px;
}

.pricing-plan-two__single-inner {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    border: 1px solid rgb(241, 241, 240);
    padding: 30px 30px 35px;
    z-index: 1;
}

.pricing-plan-two__single-inner-bg {
    position: absolute;
    inset: 0px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    border-radius: 6px;
    transform: scaleX(0.8) rotateX(0deg);
    transition: 0.4s linear;
    opacity: 0;
    z-index: -1;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner-bg {
    transform: scaleX(1) rotateX(0deg);
    transition: 0.4s linear;
    opacity: 1;
}

.pricing-plan-two__single-inner-bg::before {
    position: absolute;
    inset: 0px;
    background: rgba(var(--thm-base-rgb), 0.97);
    z-index: -2;
    content: "";
    border-radius: 6px;
}

.pricing-plan-two__single-inner .table-header {
    position: relative;
    display: block;
    padding: 15px 30px 17px;
    z-index: 1;
}

.pricing-plan-two__single-inner .table-header::before {
    position: absolute;
    inset: 0px;
    background: rgb(250, 251, 250);
    border: 1px solid rgb(243, 243, 243);
    content: "";
    z-index: -1;
    transition: 500ms linear 0.3s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-header::before {
    transform: skew(-10deg, 0deg);
    border-radius: 5px;
}

.pricing-plan-two__single-inner .table-header h2 {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 5px;
    padding-left: 17px;
    padding-right: 10px;
}

.pricing-plan-two__single-inner .table-header h2 .dollar {
    position: absolute;
    top: -9px;
    left: 0px;
    color: var(--thm-black);
    font-size: 25px;
    padding-right: 10px;
}

.pricing-plan-two__single-inner .table-header h2 .text {
    position: absolute;
    top: -16px;
    color: var(--thm-black);
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    margin-left: 9px;
}

.pricing-plan-two__single-inner .table-header h5 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.pricing-plan-two__single-inner .table-header .review-box {
    position: relative;
    display: block;
}

.pricing-plan-two__single-inner .table-header .review-box li {
    position: relative;
    display: inline-block;
}

.pricing-plan-two__single-inner .table-header .review-box li span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 15px;
}

.pricing-plan-two__single-inner .table-content {
    position: relative;
    display: block;
    margin-top: 30px;
}

.pricing-plan-two__single-inner .table-content ul {
    position: relative;
    display: block;
}

.pricing-plan-two__single-inner .table-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-plan-two__single-inner .table-content ul li:last-child {
    margin-bottom: 0px;
}

.pricing-plan-two__single-inner .table-content ul li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgb(232, 231, 231);
    border-radius: 50%;
    transition: 200ms linear 0.1s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-content ul li .icon-box {
    border-color: rgb(255, 255, 255);
}

.pricing-plan-two__single-inner .table-content ul li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(34, 34, 34);
    font-size: 15px;
    transition: 200ms linear 0.1s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-content ul li .icon-box span::before {
    color: rgb(255, 255, 255);
}

.pricing-plan-two__single-inner .table-content ul li .text-box {
    position: relative;
    display: block;
    flex: 1 1 0%;
    margin-left: 20px;
}

.pricing-plan-two__single-inner .table-content ul li .text-box p {
    color: rgb(131, 134, 145);
    font-size: 15px;
    line-height: 25px;
    transition: 200ms linear 0.1s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-content ul li .text-box p {
    color: rgb(255, 255, 255);
}

.pricing-plan-two__single-inner .table-footer {
    position: relative;
    display: block;
    margin-top: 40px;
    text-align: center;
    line-height: 0;
}

.pricing-plan-two__single-inner .table-footer .thm-btn {
    background: rgb(250, 251, 250);
    border: 1px solid rgb(243, 243, 243);
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-footer .thm-btn {
    background: var(--thm-primary);
    border-color: var(--thm-primary);
}

.pricing-plan-two__single-inner .table-footer .thm-btn:hover {
    border-color: var(--thm-primary);
}

.pricing-plan-two__single-inner .table-footer .thm-btn .txt {
    color: var(--thm-gray);
    transition: 200ms linear 0.1s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-footer .thm-btn .txt {
    color: rgb(255, 255, 255);
}

.brand-two {
    position: relative;
    display: block;
    padding: 100px 0px;
    z-index: 2;
}

.brand-two::before {
    position: absolute;
    inset: 0px 0px 0px 200px;
    background: rgb(255, 255, 255);
    border-bottom-left-radius: 60px;
    content: "";
    z-index: -1;
}

.brand-two .swiper-slide {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 130px;
    transition: 0.5s;
}

.brand-two .swiper-slide:hover {
    border-color: rgb(255, 255, 255);
}

.brand-two .swiper-slide img {
    transition: 0.5s;
    transform: scale(1.02);
    opacity: 0.5;
    width: auto;
}

.brand-two .swiper-slide:hover img {
    opacity: 1;
    transform: scale(1);
}

.poroduct-one {
    position: relative;
    display: block;
    background: rgb(238, 240, 246);
    padding: 240px 0px 80px;
    margin-top: -120px;
    z-index: 1;
}

.poroduct-one__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 57px;
}

.poroduct-one__top .content-box {
    position: relative;
    display: block;
}

.poroduct-one__top .content-box .sec-title {
    padding-bottom: 0px;
}

.poroduct-one__top .btn-box {
    position: relative;
    display: block;
}

.poroduct-one__top .btn-box .thm-btn {
    border: 1px solid var(--thm-black);
    background: transparent;
}

.poroduct-one__top .btn-box .thm-btn:hover {
    border-color: var(--thm-primary);
}

.poroduct-one__top .btn-box .thm-btn .txt {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

.poroduct-one__top .btn-box .thm-btn:hover .txt {
    color: rgb(255, 255, 255);
}

.poroduct-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.poroduct-one__single-img {
    position: relative;
    display: block;
    z-index: 1;
}

.poroduct-one__single-img .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(254, 254, 254);
    padding: 0px 10px;
    overflow: hidden;
    height: 300px;
}

.poroduct-one__single-img .inner img {
    width: auto;
    transform: scale(1);
    transition: 0.7s;
}

.poroduct-one__single:hover .poroduct-one__single-img .inner img {
    transform: scale(1.1);
}

.poroduct-one__single-img .inner .overlay-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 70px;
    bottom: 30px;
    right: 70px;
    background: var(--thm-black);
    padding: 10px 25px;
    transition: 0.6s 0.1s;
    transform: perspective(400px) scaleY(0);
    transform-origin: center bottom;
    z-index: 5;
}

.poroduct-one__single:hover .poroduct-one__single-img .inner .overlay-box {
    transform: perspective(400px) scaleY(1);
    transition-delay: 0.3s;
}

.poroduct-one__single-img .inner .overlay-box .title {
    position: relative;
    display: block;
}

.poroduct-one__single-img .inner .overlay-box .title h6 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.poroduct-one__single-img .inner .overlay-box .title h6 a {
    color: rgb(255, 255, 255);
    transition: 200ms linear 0.1s;
}

.poroduct-one__single-img .inner .overlay-box .title h6 a:hover {
    color: rgb(255, 255, 255);
}

.poroduct-one__single-img .inner .overlay-box .icon {
    position: relative;
    display: block;
}

.poroduct-one__single-img .inner .overlay-box .icon ul {
    position: relative;
    display: block;
}

.poroduct-one__single-img .inner .overlay-box .icon ul li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.poroduct-one__single-img .inner .overlay-box .icon ul li:last-child {
    margin-right: 0px;
}

.poroduct-one__single-img .inner .overlay-box .icon ul li a {
    position: relative;
    display: block;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.poroduct-one__single-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 33px;
}

.poroduct-one__single-content .left-content {
    position: relative;
    display: block;
}

.poroduct-one__single-content .left-content p {
    color: rgb(112, 116, 128);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--thm-font-2);
    letter-spacing: -0.01em;
    margin-bottom: 5px;
}

.poroduct-one__single-content .left-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.poroduct-one__single-content .left-content h3 a {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

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

.poroduct-one__single-content .left-content span {
    color: rgb(26, 33, 62);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.poroduct-one__single-content .left-content span del {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.poroduct-one__single-content .rating-box {
    position: relative;
    display: block;
}

.poroduct-one__single-content .rating-box ul li span {
    color: var(--thm-primary);
}

.banefits-one {
    position: relative;
    display: block;
    padding: 120px 0px;
    margin-top: -240px;
    z-index: 5;
}

.banefits-one::before {
    position: absolute;
    inset: 0px 0px 0px 210px;
    background: rgb(255, 255, 255);
    content: "";
    z-index: -1;
}

.banefits-one__pattern {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: right top;
    z-index: -1;
}

.banefits-one-inner {
    position: relative;
    display: block;
}

.banefits-one__tab-box {
    position: relative;
    display: block;
}

.banefits-one__tab-box .tab-buttons {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 60px 0px;
    margin-bottom: 54px;
}

.banefits-one__tab-box .tab-buttons .tab-btn {
    position: relative;
    float: left;
    max-width: 390px;
    width: 100%;
}

.banefits-one__tab-box .tab-buttons .tab-btn + .tab-btn {
    margin-left: 0px;
}

.banefits-one__tab-box .tab-buttons .tab-btn:nth-child(1) span {
    border-top-left-radius: 10px;
}

.banefits-one__tab-box .tab-buttons .tab-btn:nth-child(3) span {
    border-top-right-radius: 10px;
}

.banefits-one__tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    background-color: rgb(255, 255, 255);
    padding: 36px 0px;
    cursor: pointer;
    max-width: 390px;
    width: 100%;
    text-align: center;
    font-family: var(--thm-font);
    transition: 200ms linear 0.1s;
    z-index: 1;
}

.banefits-one__tab-box .tab-buttons .tab-btn.active-btn span {
    color: rgb(255, 255, 255);
    background: var(--thm-primary);
}

.banefits-one__tab-box .tab-buttons .tab-btn span::before {
    position: absolute;
    inset: 0px;
    height: 0%;
    content: "";
    background-color: var(--thm-primary);
    transition: 0.3s;
    z-index: -1;
}

.banefits-one__tab-box .tab-buttons .tab-btn.active-btn span::before {
    height: 100%;
}

.banefits-one__tab-box .tabs-content {
    position: relative;
    display: block;
}

.banefits-one__tab-box .tabs-content .tab {
    position: relative;
    display: none;
    transform: translateY(35px);
    transition: 600ms;
    z-index: 10;
}

.banefits-one__tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    transform: translateY(0px);
}

.tabs-content__inner {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
}

.tabs-content__img {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    box-shadow: rgb(227, 222, 222) 2px 3.464px 18px 0px;
    overflow: hidden;
    padding: 41px 0px 42px;
    border-radius: 11px;
    z-index: 1;
}

.tabs-content__img .inner {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    margin: 0px auto;
    z-index: 1;
}

.tabs-content__img .inner::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    background: rgba(var(--thm-primary-rgb), 0.4);
    opacity: 0;
    z-index: 1;
    content: "";
}

.tabs-content__img:hover .inner::before {
    opacity: 1;
}

.tabs-content__img .inner img {
    width: 100%;
    transition: 0.5s;
    transform: scale(1.05);
}

.tabs-content__img:hover .inner img {
    transform: scale(1);
}

.tabs-content__content {
    position: relative;
    display: block;
}

.tabs-content__content-accordion {
    position: relative;
    display: block;
    margin-left: 40px;
}

.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 20px;
    transition: 500ms;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 60px 0px;
}

.accordion-box .block.mb20 {
    margin-bottom: 0px;
}

.accordion-box .block:last-child {
    margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    transition: 500ms;
    padding: 24px 40px 23px;
}

.accordion-box .block .acc-btn.active {
    padding-bottom: 19px;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 17px;
    line-height: 27px;
    font-weight: 700;
    transition: 500ms;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-black);
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 20px;
    height: 20px;
    color: var(--thm-black);
    font-size: 18px;
    text-align: right;
    line-height: 20px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(-50%) rotate(0deg);
    transition: 500ms;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: var(--thm-black);
    transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i::before {
    font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i::before {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin: 0px;
    content: "";
    font-family: icomoon !important;
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding: 30px 40px 34px;
    border-top: 1px solid rgb(189, 192, 194);
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-content p {
    margin: 0px;
    color: var(--thm-gray);
    font-weight: 400;
}

.about-three {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
    z-index: 1;
}

.about-three__img {
    position: absolute;
    inset: 0px 0px 122px 60%;
    background-position: right top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}

.about-three__content {
    position: relative;
    display: block;
    margin-right: -70px;
}

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

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

.about-three__content-text1 p {
    margin: 0px;
}

.about-three__content-text2 {
    position: relative;
    display: block;
    margin-top: 35px;
}

.about-three__content-text2-single {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 38px;
}

.about-three__content-text2-single .img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.about-three__content-text2-single .img-box::before {
    position: absolute;
    inset: 0px;
    background: var(--thm-base);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    content: "";
    z-index: -1;
}

.about-three__content-text2-single .img-box img {
    width: auto;
}

.about-three__content-text2-single .content-box {
    position: relative;
    display: block;
    flex: 1 1 0%;
    margin-left: 40px;
}

.about-three__content-text2-single .content-box h2 {
    color: var(--thm-black);
    font-size: 27px;
    line-height: 37px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 11px;
}

.about-three__content-text2-single .content-box p {
    margin: 0px;
}

.about-three__content-text3 {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 9px;
}

.about-three__content-text3 .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.about-three__content-text3 .btn-box .thm-btn {
    background: var(--thm-primary);
}

.about-three__content-text3 .btn-box .thm-btn::before {
    background: var(--thm-base);
}

.about-three__client-info-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.about-three__client-info-box .img-box {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.about-three__client-info-box .img-box img {
    width: 100%;
}

.about-three__client-info-box .title-box {
    position: relative;
    display: block;
    margin-left: 25px;
}

.about-three__client-info-box .title-box h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-three__client-info-box .title-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.services-three {
    position: relative;
    display: block;
    background-color: rgb(238, 240, 246);
    padding: 420px 0px 180px;
    z-index: 1;
}

.services-three__single {
    position: relative;
    display: block;
    padding: 65px 50px 55px;
    z-index: 1;
}

.services-three__single::before {
    position: absolute;
    inset: 0px;
    background: rgb(255, 255, 255);
    clip-path: polygon(0px 0px, 100% 7%, 100% 100%, 0px 95%);
    border-radius: 0px;
    content: "";
    z-index: -1;
}

.services-three__single-bg {
    position: absolute;
    left: 0px;
    bottom: -60px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 0px;
    height: 200px;
    content: "";
    z-index: -2;
}

.services-three__single-bg::before {
    position: absolute;
    inset: 0px;
    background: var(--thm-primary);
    transform: scaleX(0.7) rotateX(0deg);
    transition: 0.4s linear;
    opacity: 0;
    border-radius: 0px;
    content: "";
}

.services-three__single:hover .services-three__single-bg::before {
    transform: scaleX(1) rotateX(0deg);
    transition: 0.4s linear;
    opacity: 1;
}

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

.services-three__single-inner .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--thm-base);
    margin: 0px auto 22px;
    z-index: 1;
}

.services-three__single-inner .icon-box::before {
    position: absolute;
    inset: 0px;
    background: var(--thm-primary);
    transform: scale(0.5);
    opacity: 0;
    transition: 400ms linear 0.1s;
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.services-three__single:hover .services-three__single-inner .icon-box::before {
    transform: scale(1);
    opacity: 1;
}

.services-three__single-inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 70px;
    transition: 500ms linear 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__single-inner .icon-box span::before {
    transform: scale(0.9);
}

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

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

.services-three__single-inner .content-box h2 a {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

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

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

.services-three__single-inner .content-box .btn-box {
    position: relative;
    display: block;
    margin-top: 19px;
}

.services-three__single-inner .content-box .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgb(241, 241, 245);
    margin: 0px auto;
}

.services-three__single-inner .content-box .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: rgb(113, 113, 120);
    font-size: 20px;
    font-weight: 700;
    transition: 300ms linear 0.1s;
}

.services-three__single-inner .content-box .btn-box a:hover span::before {
    color: rgb(255, 255, 255);
}

.services-three__single-inner .content-box .btn-box a::before {
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    background: var(--thm-primary);
    transform: scale(0.7);
    opacity: 0;
    transition: 300ms linear 0.1s;
    content: "";
}

.services-three__single-inner .content-box .btn-box a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.video-one {
    position: relative;
    display: block;
    margin-bottom: -300px;
    z-index: 2;
}

.video-one__bg {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.video-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 250px 0px;
    z-index: 1;
}

.video-one__inner .shape1 {
    position: absolute;
    inset: 0px 0px 0px -55px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.video-one__inner .video-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-one__inner .video-box a {
    position: relative;
    display: inline-block;
    z-index: 5;
}

.video-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 25px;
    color: rgb(255, 255, 255);
    background-color: var(--thm-primary);
    border-radius: 50%;
    margin: 0px auto;
}

.video-one__icon::before {
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    content: "";
}

.video-one__inner .video-box .border-animation {
    position: absolute;
    inset: -15px;
    border: 1px solid rgb(255, 255, 255);
    animation: 2.9s linear 0s infinite normal none running squares;
    opacity: 0;
    border-radius: 50%;
}

.video-one__inner .video-box .border-animation.border-2 {
    animation-delay: 1s;
}

.video-one__inner .video-box .border-animation.border-3 {
    animation-delay: 2s;
}

.work-process-one {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 0px 0px 70px;
    z-index: 1;
}

.work-process-one .shape1 {
    position: absolute;
    top: 160px;
    left: 0px;
    right: 0px;
    text-align: center;
}

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

.work-process-one__single.mt-100 {
    margin-top: 100px;
}

.work-process-one__single.mt-50 {
    margin-top: 50px;
}

.work-process-one__single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 10px 60px 0px;
    border-radius: 10px;
    margin: 0px auto;
    z-index: 1;
}

.work-process-one__single .icon-box::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 10px;
    background-color: var(--thm-primary);
    transition: transform 0.4s, -webkit-transform 0.4s;
    transform-origin: right bottom;
    transform: scale(1, 0);
    z-index: -1;
}

.work-process-one__single:hover .icon-box::before {
    transform: scale(1, 1);
    transform-origin: center top;
}

.work-process-one__single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    transition: 200ms linear 0.1s;
}

.work-process-one__single:hover .icon-box span::before {
    color: rgb(255, 255, 255);
}

.work-process-one__single .content-box {
    position: relative;
    display: block;
    margin-top: 27px;
}

.work-process-one__single .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.02em;
    margin-bottom: 7px;
}

.work-process-one__single .content-box h3 a {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

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

.work-process-one__single .content-box p {
    margin: 0px;
}

.team-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 70px 0px;
    z-index: 1;
}

.team-two .auto-container {
    max-width: 1530px;
    width: 100%;
}

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

.team-two__single::before {
    position: absolute;
    inset: 100px 0px 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 60px 0px;
    border-radius: 9px;
    content: "";
    z-index: -1;
}

.team-two__single::after {
    position: absolute;
    inset: 100px 0px 0px;
    background: var(--thm-base);
    transform: scaleX(0.7) rotateX(0deg);
    transition: 0.4s linear;
    opacity: 0;
    border-radius: 9px;
    content: "";
    z-index: -1;
}

.team-two__single:hover::after {
    transform: scaleX(1) rotateX(0deg);
    transition: 0.4s linear;
    opacity: 1;
}

.team-two__single-img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    max-width: 320px;
    width: 100%;
    z-index: 1;
}

.team-two__single-img::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    background: rgba(var(--thm-primary-rgb), 0.3);
    opacity: 0;
    z-index: 1;
    content: "";
}

.team-two__single:hover .team-two__single-img::before {
    opacity: 1;
}

.team-two__single-img img {
    width: 100%;
    transition: 0.5s;
    transform: scale(1.05);
}

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

.team-two__single-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px 23px;
}

.team-two__single-content .content-box {
    position: relative;
    display: block;
    line-height: 0;
}

.team-two__single-content .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-two__single-content .content-box h3 a {
    color: rgb(17, 17, 17);
    font-size: 20px;
    transition: 200ms linear 0.1s;
}

.team-two__single:hover .team-two__single-content .content-box h3 a {
    color: rgb(255, 255, 255);
}

.team-two__single-content .content-box span {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
}

.team-two__single:hover .team-two__single-content .content-box span {
    color: rgb(255, 255, 255);
    transition: 200ms linear 0.1s;
}

.team-two__single-content .social-links {
    position: relative;
    display: block;
    z-index: 5;
}

.team-two__single-content .social-links li {
    position: relative;
    display: inline-block;
}

.team-two__single-content .social-links li.share {
    position: relative;
}

.team-two__single-content .social-links > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--thm-black);
    border-radius: 5px;
    z-index: 1;
}

.team-two__single-content .social-links > li > a::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    transform: scale(0.5);
    opacity: 0;
    transition: 0.4s linear;
    z-index: -1;
}

.team-two__single:hover .team-two__single-content .social-links > li > a::before {
    transform: scale(1);
    opacity: 1;
}

.team-two__single-content .social-links > li > a > span {
    position: relative;
    display: block;
}

.team-two__single-content .social-links > li > a > span::before {
    position: relative;
    display: inline-block;
    top: -1px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    transition: 200ms linear 0.1s;
}

.team-two__single:hover .team-two__single-content .social-links > li > a span::before {
    color: var(--thm-base);
}

.team-two__single-content .social-links .share .social-links-inner {
    position: absolute;
    top: -160px;
    left: 0px;
    right: 0px;
    line-height: 0;
    transform: scaleY(0);
    transform-style: preserve-3d;
    transition: 0.5s linear;
    transform-origin: center bottom;
}

.team-two__single-content .social-links .share:hover .social-links-inner {
    transform: scaleY(1);
    transition-delay: 100ms;
}

.team-two__single-content .social-links .share .social-links-inner li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.team-two__single-content .social-links .share .social-links-inner li:last-child {
    margin-bottom: 0px;
}

.team-two__single-content .social-links .share .social-links-inner li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    z-index: 1;
}

.team-two__single-content .social-links .share .social-links-inner li a::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--thm-primary);
    border-radius: 5px;
    transform: scale(0.5);
    opacity: 0;
    transition: 0.4s linear;
    z-index: -1;
}

.team-two__single-content .social-links .share .social-links-inner li a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.team-two__single-content .social-links .share .social-links-inner li a i {
    position: relative;
    display: block;
}

.team-two__single-content .social-links .share .social-links-inner li a i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    transition: 200ms linear 0.1s;
}

.team-two__single-content .social-links .share .social-links-inner li a:hover i::before {
    color: rgb(255, 255, 255);
}

.testimonial-three {
    position: relative;
    display: block;
    background: rgb(246, 246, 246);
    padding: 0px;
    z-index: 1;
}

.testimonial-three__single {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 60px 0px;
    padding: 26px 29px 29px;
    border-radius: 0px 15px 15px;
}

.testimonial-three__single-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-three__single-top .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 60px;
    z-index: 1;
}

.testimonial-three__single-top .icon-box::before {
    position: absolute;
    inset: 0px;
    background: rgb(245, 245, 245);
    border-radius: 3px;
    content: "";
    transform: skew(-8deg, 0deg);
    z-index: -1;
}

.testimonial-three__single-top .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(253, 102, 13);
    font-size: 20px;
    transform: rotate(180deg);
}

.testimonial-three__single-top .icon-box::after {
    position: absolute;
    inset: 0px;
    border-radius: 0%;
    background: var(--thm-primary);
    transform: skew(-8deg, 0deg) scale(0.6);
    opacity: 0;
    transition: 300ms linear 0.1s;
    content: "";
}

.testimonial-three__single:hover .testimonial-three__single-top .icon-box::after {
    opacity: 1;
    z-index: -1;
    transform: skew(-8deg, 0deg) scale(1);
}

.testimonial-three__single-text {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.testimonial-three__single-text p {
    font-size: 14px;
    line-height: 28px;
    margin: 0px;
}

.testimonial-three__single-bottom {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid rgb(226, 221, 218);
    padding-top: 18px;
}

.testimonial-three__single-bottom .img-box {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-three__single-bottom .img-box .round-one {
    position: absolute;
    inset: 0px 0px -12px -12px;
    border-radius: 50%;
    background: var(--thm-base);
    z-index: -2;
}

.testimonial-three__single-bottom .img-box .round-one::before {
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    background-image: -webkit-linear-gradient(145deg, rgb(255, 94, 21) 1%, rgb(255, 94, 21) 6%, rgb(247, 150, 35) 100%);
    transform: scaleY(0.7) rotateY(0deg);
    transition: 0.4s linear;
    opacity: 0;
    content: "";
}

.testimonial-three__single:hover .testimonial-three__single-bottom .img-box .round-one::before {
    transform: scaleY(1) rotateY(0deg);
    transition: 0.4s linear;
    opacity: 1;
}

.testimonial-three__single-bottom .img-box .round-two {
    position: absolute;
    inset: 0px 0px -7px -7px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    z-index: -1;
}

.testimonial-three__single-bottom .img-box .inner {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-three__single-bottom .img-box img {
    width: 100%;
}

.testimonial-three__single-bottom .client-info {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 15px;
}

.testimonial-three__single-bottom .client-info h4 {
    color: rgb(41, 41, 41);
    font-size: 17px;
    margin-bottom: 5px;
    line-height: 28px;
    text-transform: capitalize;
}

.testimonial-three__single-bottom .client-info span {
    color: rgb(26, 26, 26);
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    text-transform: capitalize;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg) scaleY(1);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
    transition-property: all;
}

.portfolio-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px 170px;
}

.portfolio-two__single {
    position: relative;
    display: block;
}

.portfolio-two__single-img {
    position: relative;
    display: block;
}

.portfolio-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.portfolio-two__single-img .inner::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: 1;
    content: "";
}

.portfolio-two__single:hover .portfolio-two__single-img .inner::before {
    opacity: 1;
}

.portfolio-two__single-img img {
    width: 100%;
    transition: 0.5s;
    transform: scale(1.05);
}

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

.portfolio-two__single-img .overlay-content {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 0px;
    bottom: -50px;
    right: 0px;
    width: 520px;
    margin: 0px auto;
    background: rgb(255, 255, 255);
    box-shadow: rgba(130, 132, 134, 0.08) 5px 8.66px 20px 0px;
    padding: 36px 40px 38px;
    border-radius: 3px;
    overflow: hidden;
    z-index: 3;
    transform: perspective(400px) rotateX(40deg) scaleY(0.7);
    transform-origin: center center;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    opacity: 0;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content {
    transform: perspective(400px) rotateX(0deg) scaleY(1);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    opacity: 1;
}

.portfolio-two__single-img .overlay-content .text-box {
    position: relative;
    display: block;
}

.portfolio-two__single-img .overlay-content h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    margin-bottom: 9px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(2rem);
    clip-path: inset(0px 100% 0px 0px);
    transition: 0.5s ease-in-out 0.5s;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content h2 {
    text-transform: capitalize;
    visibility: visible;
    opacity: 1;
    clip-path: inset(0px);
    transform: translateY(0px);
}

.portfolio-two__single-img .overlay-content h2 a {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

.portfolio-two__single-img .overlay-content h2 a:hover {
    color: var(--thm-primary);
}

.portfolio-two__single-img .overlay-content p {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    opacity: 0;
    transform: translateY(10px);
    transition: 700ms;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content p {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 900ms;
}

.portfolio-two__link {
    position: relative;
    display: block;
}

.portfolio-two__link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--thm-primary);
    line-height: 0;
    border-radius: 50%;
    z-index: 1;
}

.portfolio-two__link a::before {
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    background: var(--thm-base);
    transform: scale(0.5);
    opacity: 0;
    transition: 300ms linear 0.1s;
    content: "";
}

.portfolio-two__link a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.portfolio-two__link a span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.portfolio-two__carousel.owl-carousel {
    display: block;
    max-width: 1140px;
    width: 100%;
    margin: 0px auto;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .overlay-content {
    transform: perspective(400px) rotateX(0deg) scaleY(1);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    opacity: 1;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .overlay-content h2 {
    text-transform: capitalize;
    visibility: visible;
    opacity: 1;
    clip-path: inset(0px);
    transform: translateY(0px);
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .overlay-content p {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 900ms;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .inner::before {
    opacity: 1;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img img {
    transform: scale(1);
}

.portfolio-two .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0%;
    right: 0px;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    transform: translateY(-50%);
    z-index: 100;
}

.portfolio-two .owl-carousel .owl-nav button.owl-prev, .portfolio-two .owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--thm-black);
    font-size: 20px;
    outline: none;
    font-weight: 700;
    transition: 200ms linear 0.1s;
}

.portfolio-two .owl-carousel .owl-nav button.owl-prev {
    float: left;
    left: -100px;
}

.portfolio-two .owl-carousel .owl-nav button.owl-prev span::before {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
    font-weight: 700;
    line-height: 55px;
}

.portfolio-two .owl-carousel .owl-nav button.owl-next span::before {
    font-weight: 700;
    line-height: 55px;
}

.portfolio-two .owl-carousel .owl-nav button.owl-next {
    float: right;
    right: -100px;
}

.portfolio-two .owl-carousel .owl-nav button.owl-prev:hover, .portfolio-two .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--thm-base);
    color: rgb(255, 255, 255);
}

.brand-two.style3::before {
    left: 0px;
    border-radius: 0px;
}

.brand-two.style3 .swiper-slide img {
    opacity: 1;
}

.brand-two.style3 .swiper-slide {
    border: 1px solid rgb(241, 241, 241);
}

.features-one--about {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
}

.pricing-plan-one--services {
    position: relative;
    display: block;
    padding: 0px 0px 90px;
}

.services-details {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
    z-index: 1;
}

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

.services-details-img1 {
    position: relative;
    display: block;
    overflow: hidden;
}

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

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

.services-details-text1 h2 {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.services-details-text1 .text1 {
    margin: 0px 0px 15px;
}

.services-details-text1 .text2 {
    margin: 0px;
}

.services-details__list1 {
    position: relative;
    display: block;
    margin-top: 48px;
    padding-bottom: 1px;
}

.services-details__list1 li {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-bottom: 28px;
}

.services-details__list1 li .icon-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    left: 0px;
    width: 40px;
    height: 40px;
    background: rgb(242, 242, 242);
    border-radius: 50%;
}

.services-details__list1 li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(138, 141, 151);
    font-size: 15px;
}

.services-details__list1 li .text-box {
    position: relative;
    display: block;
}

.services-details__list1 li .text-box p {
    margin: 0px;
}

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

.services-details-text2 p {
    margin: 0px;
}

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

.services-details-text2 ul li {
    position: relative;
    display: block;
    margin-bottom: 13px;
}

.services-details-text2 ul li:last-child {
    margin-bottom: 0px;
}

.services-details-text2 ul li p {
    position: relative;
    padding-left: 25px;
}

.services-details-text2 ul li p::before {
    position: absolute;
    top: 11px;
    left: 0px;
    width: 10px;
    height: 10px;
    background: rgb(191, 194, 195);
    border-radius: 50%;
    content: "";
}

.services-details__video {
    position: relative;
    display: block;
    margin-top: 44px;
}

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

.services-details__video .img-box img {
    width: 100%;
}

.services-details__video .video-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    inset: 0px;
}

.services-details__video .video-box a {
    position: relative;
    display: inline-block;
}

.services-details__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--thm-base);
}

.services-details__video-icon span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 25px;
}

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

.services-details-text3 .text1 {
    margin: 0px 0px 15px;
}

.services-details-text3 .text2 {
    margin: 0px;
}

.services-details-text4 {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.services-details-text4 .img-box {
    position: relative;
    display: block;
}

.services-details-text4 .img-box img {
    width: 100%;
}

.services-details-text4 .content-box {
    position: relative;
    display: block;
    flex: 1 1 0%;
    margin-left: 30px;
}

.services-details-text4 .content-box p {
    margin: 0px;
}

.services-details-text4 .content-box ul {
    position: relative;
    display: block;
    margin-top: 33px;
}

.services-details-text4 .content-box ul li {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-bottom: 28px;
}

.services-details-text4 .content-box ul li .icon-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    left: 0px;
    width: 40px;
    height: 40px;
    background: rgb(242, 242, 242);
    border-radius: 50%;
}

.services-details-text4 .content-box ul li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(135, 146, 161);
    font-size: 15px;
}

.services-details-text4 .content-box ul li .text-box {
    position: relative;
    display: block;
}

.services-details-text4 .content-box ul li .text-box p {
    margin: 0px;
}

.services-details-text5 {
    position: relative;
    display: block;
    padding-top: 32px;
    margin-bottom: 39px;
}

.services-details-text5 p {
    margin: 0px;
}

.services-details-text5 ul {
    position: relative;
    display: block;
    margin-top: 15px;
}

.services-details-text5 ul li {
    position: relative;
    display: block;
    margin-bottom: 13px;
}

.services-details-text5 ul li:last-child {
    margin-bottom: 0px;
}

.services-details-text5 ul li p {
    position: relative;
    padding-left: 25px;
}

.services-details-text5 ul li p::before {
    position: absolute;
    top: 11px;
    left: 0px;
    width: 10px;
    height: 10px;
    background: rgb(191, 194, 195);
    border-radius: 50%;
    content: "";
}

.services-details-text6 {
    position: relative;
    display: block;
    border-top: 1px solid rgb(201, 213, 219);
    padding-top: 47px;
}

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

.services-details-text6-single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgb(237, 243, 246);
}

.services-details-text6-single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 30px;
}

.services-details-text6-single .text-box {
    position: relative;
    display: block;
    flex: 1 1 0%;
    margin-left: 15px;
}

.services-details-text6-single .text-box p {
    margin: 0px;
}

.services-details__accordion {
    position: relative;
    display: block;
    margin-top: 47px;
}

.services-details__accordion .tabs-content__content-accordion {
    margin-left: 0px;
}

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

.services-details__sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-details__sidebar-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.services-details__sidebar-single .title-box h2 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.sidebar__search {
    position: relative;
    display: block;
    background-color: rgb(241, 243, 242);
    padding: 42px 30px 50px;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: rgb(255, 255, 255);
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
    height: 65px;
    width: 100%;
    padding-right: 40px;
    border-radius: 0px;
}

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

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

.sidebar__search-form button[type="submit"] {
    background-color: transparent;
    color: rgb(126, 130, 140);
    font-size: 15px;
    position: absolute;
    top: 0px;
    right: 30px;
    bottom: 0px;
    width: 0px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-radius: 0px;
    transition: 500ms;
}

.sidebar__search-form:hover button[type="submit"] {
    color: var(--thm-base);
}

.sidebar__category {
    position: relative;
    display: block;
    background-color: rgb(241, 243, 242);
    padding: 42px 30px 50px;
}

.sidebar__category-list {
    position: relative;
    display: block;
}

.sidebar__category-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.sidebar__category-list li:last-child {
    margin-bottom: 0px;
}

.sidebar__category-list li a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 17px;
    line-height: 27px;
    font-weight: 700;
    text-transform: capitalize;
    background: rgb(255, 255, 255);
    padding: 18px 25px 17px;
    z-index: 1;
    transition: 200ms linear 0.1s;
}

.sidebar__category-list li a:hover, .sidebar__category-list li a.active {
    color: rgb(255, 255, 255);
}

.sidebar__category-list li a::before {
    position: absolute;
    inset: 0px;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: center bottom;
    transition: 300ms linear 0.1s;
    background: var(--thm-base);
    border-radius: 0px;
}

.sidebar__category-list li a:hover::before, .sidebar__category-list li a.active::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: 300ms linear 0.1s;
}

.sidebar__category-list li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 22px;
    font-weight: 700;
    top: 3px;
    float: right;
    transition: 200ms linear 0.1s;
}

.sidebar__category-list li a:hover span::before, .sidebar__category-list li a.active span::before {
    color: rgb(255, 255, 255);
}

.sidebar__question-form {
    position: relative;
    display: block;
    background-color: rgb(241, 243, 242);
    padding: 42px 30px 50px;
}

.sidebar__question-form .input-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.sidebar__question-form .input-box .icon {
    position: absolute;
    top: 18px;
    right: 20px;
}

.sidebar__question-form .input-box .icon span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--thm-base);
}

.sidebar__question-form .input-box input[type="text"], .sidebar__question-form .input-box input[type="email"], .sidebar__question-form .input-box textarea {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    border: 0px solid rgb(238, 238, 238);
    width: 100%;
    height: 65px;
    color: var(--thm-gray);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    padding: 0px 45px 0px 20px;
    border-radius: 5px;
    transition: 500ms;
    outline: none;
}

.sidebar__question-form .input-box textarea {
    height: 125px;
    padding: 20px 45px 20px 20px;
    resize: none;
}

.sidebar__question-form .button-box {
    position: relative;
    display: block;
    padding-top: 5px;
}

.sidebar__question-form .button-box button {
    outline: none;
    border: none;
}

.sidebar__contact-box {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 42px 50px 50px;
}

.sidebar__contact-box h2 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sidebar__contact-box p {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar__contact-box .number-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 29px;
}

.sidebar__contact-box .number-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.sidebar__contact-box .number-box .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.sidebar__contact-box .number-box .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1 1 0%;
}

.sidebar__contact-box .number-box .text-box a {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 600;
    transition: 200ms linear 0.1s;
}

.sidebar__contact-box .number-box .text-box a:hover {
    color: var(--thm-primary);
}

.team-one--team {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px 90px;
}

.banefits-two--team {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px 45px;
}

.job-one {
    position: relative;
    display: block;
    background: rgb(241, 243, 242);
    padding: 108px 0px 120px;
    z-index: 1;
}

.job-one__bg {
    position: absolute;
    inset: 0px 0px 0px 55%;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
}

.job-one__content {
    position: relative;
    display: block;
}

.job-one__content .title {
    position: relative;
    display: block;
    margin-bottom: 37px;
}

.job-one__content .title h2 {
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
}

.job-one__content .text-box {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.job-one__content .text-box p {
    margin: 0px;
}

.job-one__list {
    position: relative;
    display: block;
}

.job-one__list li {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-bottom: 28px;
}

.job-one__list li .icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    left: 0px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--thm-base);
}

.job-one__list li .icon span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.job-one__list li .text {
    position: relative;
    display: block;
}

.job-one__list li .text p {
    margin: 0px;
}

.job-one__btn {
    position: relative;
    display: block;
    padding-top: 26px;
    line-height: 0;
}

.team-details-top {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
    z-index: 1;
}

.team-details-top__client-info {
    position: relative;
    display: block;
    background: rgb(241, 243, 242);
    padding: 35px 25px;
}

.team-details-top__client-info .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.team-details-top__client-info .img-box img {
    width: 100%;
}

.team-details-top__client-info .content-box {
    position: relative;
    display: block;
    margin-top: 31px;
}

.team-details-top__client-info .content-box h2 {
    color: var(--thm-black);
    font-size: 27px;
    line-height: 37px;
    font-weight: 700;
}

.team-details-top__client-info .content-box span {
    color: var(--thm-black);
}

.team-details-top__client-info .content-box p {
    margin-top: 19px;
}

.team-details-top__client-info .content-box ul {
    position: relative;
    display: block;
    margin-top: 29px;
}

.team-details-top__client-info .content-box ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.team-details-top__client-info .content-box ul li:last-child {
    margin-right: 0px;
}

.team-details-top__client-info .content-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    transition: 200ms linear 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover {
    background: var(--thm-base);
}

.team-details-top__client-info .content-box ul li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    transition: 200ms linear 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover span::before {
    color: rgb(255, 255, 255);
}

.team-details-top__content {
    position: relative;
    display: block;
    margin-top: -12px;
}

.team-details-top__content .title-box {
    position: relative;
    display: block;
    margin-bottom: 38px;
}

.team-details-top__content .title-box h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-details-top__content .text-box {
    position: relative;
    display: block;
}

.team-details-top__content .text-box p {
    margin: 0px;
}

.team-details-top__content-info {
    position: relative;
    display: block;
    margin-top: 37px;
}

.team-details-top__content-info-single {
    position: relative;
    display: block;
}

.team-details-top__content-info-single ul {
    position: relative;
    display: block;
}

.team-details-top__content-info-single ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.team-details-top__content-info-single ul li:last-child {
    margin-bottom: 0px;
}

.team-details-top__content-info-single ul li .title {
    position: relative;
    display: block;
    width: 95px;
}

.team-details-top__content-info-single ul li .title h5 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

.team-details-top__content-info-single ul li .text {
    position: relative;
    display: block;
}

.team-details-top__content-info-single ul li .text p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.team-details-top__content-info-single ul li .text p a {
    color: var(--thm-gray);
    transition: 200ms linear 0.1s;
}

.team-details-top__content-info-single ul li .text p a:hover {
    color: var(--thm-base);
}

.team-details-top__content-btn {
    position: relative;
    display: block;
    margin-top: 47px;
    line-height: 0;
}

.team-details__middle {
    position: relative;
    display: block;
    background: rgb(241, 243, 242);
    padding: 120px 0px;
    z-index: 1;
}

.team-details__middle__bg {
    position: absolute;
    inset: 120px 0px 120px 55%;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.team-details__middle-content {
    position: relative;
    display: block;
}

.team-details__middle-content .title {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.team-details__middle-content .title h2 {
    color: var(--thm-black);
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-details__middle-content .text-box {
    position: relative;
    display: block;
}

.team-details__middle-content .text-box p {
    margin: 0px;
}

.team-details__middle-content-list {
    position: relative;
    display: block;
    margin-top: 37px;
}

.team-details__middle-content-list li {
    position: relative;
    display: block;
    padding-left: 100px;
    margin-bottom: 33px;
}

.team-details__middle-content-list li:last-child {
    margin-bottom: 0px;
}

.team-details__middle-content-list li .icon-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 7px;
    left: 0px;
    width: 80px;
    height: 80px;
    background: var(--thm-base);
    border-radius: 50%;
    border: 6px solid rgb(255, 255, 255);
    box-shadow: rgba(9, 24, 84, 0.08) 0px 2px 20px 0px;
}

.team-details__middle-content-list li .icon-box span::before {
    color: rgb(255, 255, 255);
    font-size: 30px;
}

.team-details__middle-content-list li .content-box {
    position: relative;
    display: block;
}

.team-details__middle-content-list li .content-box h2 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 11px;
}

.team-details__middle-content-list li .content-box p {
    margin: 0px;
}

.portfolio-three {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px 0px;
    z-index: 1;
}

.portfolio-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

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

.portfolio-three__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.portfolio-three__single-img .inner::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    background: rgba(var(--thm-black-rgb), 0.4);
    opacity: 0;
    z-index: 1;
    content: "";
}

.portfolio-three__single:hover .portfolio-three__single-img .inner::before {
    opacity: 1;
}

.portfolio-three__single-img .inner img {
    width: 100%;
    transition: 0.5s;
    transform: scale(1.05);
}

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

.portfolio-three__single-img .inner .overlay-content {
    position: absolute;
    left: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 320px;
    padding: 25px 0px 17px 20px;
    z-index: 1;
    opacity: 0;
    transform: translateX(-200px);
    transition: 700ms;
}

.portfolio-three__single:hover .portfolio-three__single-img .inner .overlay-content {
    opacity: 1;
    transform: translateX(0px);
}

.portfolio-three__single-img .inner .overlay-content::before {
    position: absolute;
    inset: 0px;
    background: rgb(255, 255, 255);
    clip-path: polygon(0px 0px, 100% 0%, 84% 100%, 0px 100%);
    content: "";
    z-index: -1;
}

.portfolio-three__single-img .inner .overlay-content .text-box {
    position: relative;
    display: block;
}

.portfolio-three__single-img .inner .overlay-content .text-box span {
    position: relative;
    display: inline-block;
    background: rgb(243, 243, 245);
    border-radius: 5px;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 20px;
    margin-bottom: 7px;
}

.portfolio-three__single-img .inner .overlay-content .text-box h2 {
    font-size: 23px;
    line-height: 32px;
    font-weight: 700;
}

.portfolio-three__single-img .inner .overlay-content .text-box h2 a {
    color: var(--thm-black);
    transition: 200ms linear 0.1s;
}

.portfolio-three__single-img .inner .overlay-content .text-box h2 a:hover {
    color: var(--thm-primary);
}

.portfolio-three__single-img .inner .overlay-content .btn-box {
    position: relative;
    display: block;
}

.portfolio-three__single-img .inner .overlay-content .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--thm-base);
    z-index: 1;
}

.portfolio-three__single-img .inner .overlay-content .btn-box a::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--thm-primary);
    border-radius: 0px;
    transform: scale(0.5);
    opacity: 0;
    transition: 0.4s linear;
    z-index: -1;
}

.portfolio-three__single-img .inner .overlay-content .btn-box a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.portfolio-three__single-img .inner .overlay-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.portfolio-one--project {
    position: relative;
    display: block;
    padding: 90px 0px;
}

.appointment-page {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
    z-index: 1;
}

.appointment-page__bg {
    position: absolute;
    inset: 0px 0px 0px 50%;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
}

.appointment-page__form {
    position: relative;
    display: block;
    background: rgb(242, 242, 242);
    padding: 88px 70px 100px;
}

.appointment-page__form .title {
    position: relative;
    display: block;
    margin-bottom: 47px;
}

.appointment-page__form .title h2 {
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    text-transform: capitalize;
}

.appointment-page__form .form-group {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.appointment-page__form .form-group input[type="text"], .appointment-page__form .form-group input[type="email"], .appointment-page__form .form-group textarea {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    width: 100%;
    height: 65px;
    border: 1px solid rgb(232, 231, 231);
    color: rgb(112, 116, 128);
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    transition: 500ms;
    font-family: var(--thm-font-2);
    outline: none;
}

.appointment-page__form .form-group input[type="text"]::-webkit-input-placeholder {
    color: rgb(112, 116, 128);
}

.appointment-page__form .form-group input[type="email"]::-webkit-input-placeholder {
    color: rgb(112, 116, 128);
}

.appointment-page__form .form-group textarea::-webkit-input-placeholder {
    color: rgb(112, 116, 128);
}

.appointment-page__form .form-group textarea {
    height: 180px;
    resize: none;
    padding-top: 14px;
}

.appointment-page__form .form-group .select-box {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
}

.appointment-page__form .form-group .nice-select {
    background: rgb(255, 255, 255);
    width: 100%;
    height: 65px;
    line-height: 65px;
    border: 1px solid rgb(232, 231, 231);
    color: rgb(112, 116, 128);
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
}

.appointment-page__form .form-group .nice-select::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgb(112, 116, 128);
    border-right: 2px solid rgb(112, 116, 128);
    right: 20px;
    margin-top: 0px;
    top: 25px;
    z-index: 10;
}

.appointment-page__form .form-group .nice-select .list {
    background-color: var(--thm-base);
    color: rgb(255, 255, 255);
}

.appointment-page__form .button-box {
    position: relative;
    display: block;
    margin-top: 15px;
}

.shop-page {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
    z-index: 1;
}

.shop-page__top {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

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

.shop-page__top-inner .left {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-page__top-inner .left .left_icon {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-page__top-inner .left .left_icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgb(242, 242, 242);
    color: rgb(38, 44, 72);
    font-size: 25px;
    transition: 200ms linear 0.1s;
}

.shop-page__top-inner .left .left_icon a:hover, .shop-page__top-inner .left .left_icon a.active {
    color: rgb(255, 255, 255);
    background: var(--thm-base);
}

.shop-page__top-inner .left .left_icon a + a {
    margin-left: 15px;
}

.shop-page__top-inner .left .left_text {
    position: relative;
    display: block;
    margin-left: 35px;
}

.shop-page__top-inner .left .left_text p {
    color: rgb(108, 108, 108);
    font-size: 16px;
    line-height: 26px;
}

.shop-page__top-inner .right {
    position: relative;
    display: block;
}

.shop-page__top-inner .right .shorting {
    position: relative;
    display: block;
}

.shop-page__top-inner .right .shorting .select-box {
    width: 250px;
}

.shop-page__top-inner .right .shorting .nice-select {
    background: rgb(243, 243, 243);
    width: 100%;
    height: 55px;
    line-height: 55px;
    border: 0px solid rgb(108, 108, 108);
    color: rgb(108, 108, 108);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
}

.shop-page__top-inner .right .shorting .nice-select::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgb(108, 108, 108);
    border-right: 2px solid rgb(108, 108, 108);
    right: 20px;
    margin-top: 0px;
    top: 22px;
    z-index: 10;
}

.shop-page__top-inner .right .shorting .nice-select .list {
    background-color: var(--thm-base);
    color: rgb(255, 255, 255);
}

.shop-page__content {
    position: relative;
    display: block;
}

.shop-page__content .poroduct-one__single-img .inner {
    background: rgb(242, 242, 242);
}

.shop-page__content .styled-pagination {
    padding-top: 30px;
}

.shop-page__sidebar {
    position: relative;
    display: block;
}

.shop-page__sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.shop-page__sidebar-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.shop-page__sidebar-single .title-box h2 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.shop-page__sidebar-single.sidebar__search {
    background-color: rgb(242, 242, 242);
}

.shop-page__sidebar-single.sidebar__category {
    background-color: rgb(242, 242, 242);
}

.sidebar__product {
    position: relative;
    display: block;
    background-color: rgb(242, 242, 242);
    padding: 42px 30px 50px;
}

.sidebar__product-list {
    position: relative;
    display: block;
}

.sidebar__product-list > li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.sidebar__product-list li:last-child {
    margin-bottom: 0px;
}

.sidebar__product-list li .img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgb(255, 255, 255);
}

.sidebar__product-list li .img-box img {
    width: auto;
}

.sidebar__product-list li .content-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.sidebar__product-list li .content-box .rating-box ul li span {
    color: var(--thm-primary);
}

.sidebar__product-list li .content-box h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 8px;
    margin-bottom: 1px;
}

.sidebar__product-list li .content-box h4 a {
    color: var(--thm-base);
    transition: 200ms linear 0.1s;
}

.sidebar__product-list li .content-box h4 a:hover {
    color: var(--thm-primary);
}

.sidebar__product-list li .content-box p {
    color: rgb(112, 116, 128);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.sidebar__tags {
    position: relative;
    display: block;
    background-color: rgb(242, 242, 242);
    padding: 41px 30px 40px;
    overflow: hidden;
}

.sidebar__tags-list {
    position: relative;
    display: block;
    margin-left: -5px;
    margin-right: -5px;
}

.sidebar__tags-list li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 5px;
    margin-bottom: 10px;
}

.sidebar__tags-list li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 13px;
    font-weight: 500;
    background: rgb(255, 255, 255);
    padding: 3px 25px;
    text-transform: capitalize;
    transition: 0.4s;
}

.sidebar__tags-list li a:hover {
    color: rgb(255, 255, 255);
    background: var(--thm-base);
}

.shop-details {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
    z-index: 1;
}

.shop-details__img-box {
    position: relative;
    display: block;
    margin-right: 40px;
}

.shop-details__img-box-inner {
    position: relative;
    display: block;
}

.shop-details__img-box-thumb {
    position: absolute;
    bottom: -132px;
    left: 0px;
    right: 0px;
    max-width: 400px;
    width: 100%;
    margin: 0px auto;
    z-index: 2;
}

.shop-details__img-box-thumb-img {
    position: relative;
    display: block;
}

.shop-details__img-box-thumb-img::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 2px;
    background: var(--alori-base);
    transform: scaleX(0);
    opacity: 0;
    transition: 500ms linear 0.5s;
    content: "";
}

#shop-details-one__thumb .swiper-slide-thumb-active .shop-details__img-box-thumb-img::before {
    transform: scaleX(1);
    opacity: 1;
}

.shop-details__img-box-thumb-img img {
    width: 100%;
}

.shop-details__img-box-img .img-box {
    position: relative;
    display: block;
}

.shop-details__img-box-img .img-box img {
    width: 100%;
}

.shop-details__img-box-img .img-box .overlay-content {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 65px;
    height: 30px;
    background: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-details__img-box-img .img-box .overlay-content p {
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.shop-details-top__nav {
    width: 100%;
    max-width: 100%;
    position: absolute;
    left: 50%;
    bottom: -90px;
    z-index: 5;
    transform: translateY(0%) translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-details-top__nav .swiper-button-next, .shop-details-top__nav .swiper-button-prev {
    position: relative;
    inset: auto;
    z-index: 5;
    width: 40px;
    height: 40px;
    background: rgb(241, 243, 242);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(53, 53, 53);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0px;
    text-align: center;
    opacity: 1;
    transition: 500ms;
}

.shop-details-top__nav .swiper-button-next i::before, .shop-details-top__nav .swiper-button-prev i::before {
    font-weight: 700;
}

.shop-details-top__nav .swiper-button-next {
    left: 0px;
}

.shop-details-top__nav .swiper-button-prev {
    right: 0px;
}

.shop-details-top__nav .swiper-button-next:hover, .shop-details-top__nav .swiper-button-prev:hover {
    color: rgb(255, 255, 255);
    background: var(--thm-base);
}

.shop-details-top__nav .swiper-button-next::after, .shop-details-top__nav .swiper-button-prev::after {
    display: none;
}

.shop-details-top__nav .swiper-button-prev .angle-left {
    position: relative;
    transform: rotate(0deg);
}

.shop-details__content {
    position: relative;
    display: block;
    margin-top: -8px;
}

.shop-details__content-top {
    position: relative;
    display: block;
}

.shop-details__content-top h2 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

.shop-details__content-top h2 del {
    position: relative;
    display: inline-block;
    top: -3px;
    color: rgb(116, 120, 124);
    font-size: 14px;
    font-weight: 300;
    margin-right: 8px;
}

.shop-details__content-reveiw {
    position: relative;
    display: block;
    margin-top: 7px;
}

.shop-details__content-reveiw i::before {
    position: relative;
    display: inline-block;
    color: rgb(254, 154, 36);
    font-size: 15px;
}

.shop-details__content-reveiw .left {
    position: relative;
    display: inline-block;
    color: rgb(116, 120, 124);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-right: 5px;
}

.shop-details__content-reveiw .right {
    position: relative;
    display: inline-block;
    color: rgb(116, 120, 124);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-left: 11px;
    padding-left: 14px;
}

.shop-details__content-reveiw .right::before {
    position: absolute;
    top: 4px;
    left: 0px;
    bottom: 4px;
    width: 1px;
    background: rgb(112, 112, 112);
    content: "";
}

.shop-details__countdown {
    position: relative;
    display: block;
    margin-top: 19px;
}

.shop-details__countdown .timer-box {
    position: relative;
    display: block;
}

.countdown-timer .default-coundown .box {
    position: relative;
    display: block;
}

.shop-details__countdown .countdown-timer li {
    position: relative;
    display: inline-block;
    float: none;
    padding: 0px;
    text-align: center;
    margin: 0px 5px;
}

.shop-details__countdown .countdown-timer li:first-child {
    margin-left: 0px;
}

.shop-details__countdown .countdown-timer li:last-child {
    margin-right: 0px;
}

.shop-details__countdown .countdown-timer li span.days, .shop-details__countdown .countdown-timer li span.hours, .shop-details__countdown .countdown-timer li span.minutes, .shop-details__countdown .countdown-timer li span.seconds {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    color: rgb(255, 255, 255);
    font-size: 25px;
    line-height: 51px;
    text-align: center;
    border-radius: 0px;
    background-color: var(--thm-base);
    font-weight: 600;
}

.shop-details__countdown .countdown-timer li span.timeRef {
    position: absolute;
    bottom: 9px;
    left: 50%;
    color: rgb(255, 255, 255);
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    text-align: center;
    transform: translateX(-50%);
}

.shop-details__content-text {
    position: relative;
    display: block;
    margin-top: 16px;
}

.shop-details__content-text h2 {
    color: var(--thm-black);
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.shop-details__content-text p {
    margin: 0px;
}

.shop-details__content-bottom {
    position: relative;
    display: block;
}

.shop-details__content-bottom-color {
    position: relative;
    display: block;
    margin-top: 17px;
}

.shop-details__content-bottom-color h4 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
}

.shop-details__content-bottom-color ul {
    position: relative;
    display: block;
    margin-top: -4px;
}

.shop-details__content-bottom-color ul li {
    position: relative;
    display: inline-block;
    margin-left: 31px;
}

.shop-details__content-bottom-color ul li:first-child {
    margin-left: 0px;
}

.shop-details__content-bottom-color ul li label {
    position: relative;
    display: inline-block;
}

.shop-details__content-bottom-color ul li input[type="checkbox"] {
    display: none;
}

.shop-details__content-bottom-color ul li input[type="checkbox"] + label span {
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    background: rgb(208, 14, 28);
    cursor: pointer;
    border-radius: 50%;
    transition: 300ms;
}

.shop-details__content-bottom-color ul li input[type="checkbox"] + label span.clr2 {
    background: rgb(95, 171, 171);
}

.shop-details__content-bottom-color ul li input[type="checkbox"] + label span.clr3 {
    background: rgb(184, 139, 142);
}

.shop-details__content-bottom-color ul li input[type="checkbox"] + label span.clr4 {
    background: rgb(50, 49, 49);
}

.shop-details__content-bottom-color ul li label span::before {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 700;
    content: "";
    transform: scale(0);
    transition: 300ms;
    font-family: icomoon !important;
}

.shop-details__content-bottom-color ul li input[type="checkbox"]:checked + label span {
    border-color: rgba(var(--thm-gray-rgb), 0.5);
}

.shop-details__content-bottom-color ul li input[type="checkbox"]:checked + label span::before {
    transform: scale(1);
}

.poroduct-one--shop {
    position: relative;
    display: block;
    padding: 120px 0px 80px;
    margin-top: 0px;
}

.blog-page {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
    z-index: 1;
}

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

.blog-page__content .blog-one__single-img .date-box {
    left: auto;
    right: 70px;
}

.blog-page__content .blog-one__single__content {
    box-shadow: none;
    padding: 40px 0px 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.blog-page__content .blog-one__single-img .inner {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.blog-page__content .blog-one__single__content h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 21px;
}

.blog-page__content .blog-one__single__content p {
    margin: 0px;
}

.blog-page__content .blog-one__single__content .text2 {
    margin: 4px 0px 0px;
}

.blog-page__content .blog-one__single__content .bottom-box {
    position: relative;
    display: block;
    border-top: 0px solid rgb(228, 228, 234);
    padding-top: 0px;
    margin-top: 18px;
}

.blog-page__content .blog-one__single__content .bottom-box .read-more-btn a {
    text-transform: uppercase;
}

.blog-page__content .blog-one__single__content .bottom-box .read-more-btn a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 700;
    top: 2px;
    margin-left: 11px;
    transition: 200ms linear 0.1s;
}

.blog-page__content .blog-one__single__content .bottom-box .read-more-btn a:hover span::before {
    color: var(--thm-base);
}

.blog-page__content .styled-pagination {
    padding-top: 30px;
}

.shop-details__content-bottom-size-box {
    position: relative;
    display: block;
    margin-top: 27px;
}

.shop-details__content-bottom-size-box h4 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.select-size-box {
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
}

.select-size-box li {
    position: relative;
    display: inline-block;
    padding: 0px 5px;
}

.select-size-box li:first-child {
    padding-left: 0px;
}

.select-size-box li:last-child {
    padding-right: 0px;
}

.select-size-box li input[type="radio"] {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
}

.select-size-box li label {
    position: relative;
    display: block;
    height: 25px;
    width: 30px;
    background-color: rgb(255, 255, 255);
    color: rgb(116, 120, 124);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0px;
    border-radius: 0px;
    border: 1px solid rgb(233, 233, 233);
    cursor: pointer;
    font-family: var(--thm-font);
    transition: 200ms linear 0.1s;
}

.select-size-box li :checked + label {
    color: rgb(133, 133, 133);
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(133, 133, 133);
    box-shadow: none;
}

.select-size-box li input[type="text"] {
    position: relative;
    display: block;
    height: 25px;
    width: 30px;
    background-color: rgb(255, 255, 255);
    color: rgb(116, 120, 124);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0px;
    border-radius: 0px;
    border: 1px solid rgb(233, 233, 233);
    font-family: var(--thm-font);
    transition: 200ms linear 0.1s;
}

.select-size-box li input[type="text"]::-webkit-input-placeholder {
    color: rgb(116, 120, 124);
}

.shop-details__content-bottom-checked-box {
    position: relative;
    display: block;
    min-height: 30px;
    margin-top: 24px;
}

.shop-details__content-bottom-checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 35px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: rgb(116, 120, 124);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

.shop-details__content-bottom-checked-box input[type="checkbox"] {
    display: none;
}

.shop-details__content-bottom-checked-box input[type="checkbox"] + label span {
    position: absolute;
    top: 3px;
    left: 0px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid rgb(116, 120, 124);
    border-radius: 0%;
    cursor: pointer;
    transition: 300ms;
}

.shop-details__content-bottom-checked-box label span::before {
    position: absolute;
    top: 4px;
    left: 5px;
    display: block;
    border-bottom: 2px solid rgb(116, 120, 124);
    border-right: 2px solid rgb(116, 120, 124);
    content: "";
    width: 5px;
    height: 9px;
    pointer-events: none;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: 0.15s ease-in-out;
    opacity: 0;
}

.shop-details__content-bottom-checked-box input[type="checkbox"]:checked + label span {
    border-color: rgb(116, 120, 124);
}

.shop-details__content-bottom-checked-box input[type="checkbox"]:checked + label span::before {
    opacity: 1;
}

.shop-details__product-quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 31px;
}

.shop-details__product-quantity-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 1px;
    border: 1px solid rgb(221, 221, 221);
    width: 152px;
}

.shop-details__product-quantity-box .input-group.bootstrap-touchspin {
    position: relative;
    width: 150px;
    height: 60px;
}

.shop-details__product-quantity-box input.quantity-spinner.form-control {
    position: relative;
    display: block;
    padding: 0px;
    width: 50px;
    flex: 0 0 auto;
    height: 60px;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    margin: 0px auto;
    text-align: center;
    border: none;
    font-family: var(--thm-font);
    z-index: 5;
    left: 50px;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical {
    position: absolute;
    inset: 0px;
    width: 100%;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn {
    position: relative;
    display: block;
    background: rgb(241, 243, 242);
    color: var(--thm-black);
    cursor: pointer;
    height: 60px;
    width: 50px;
    margin: 0px;
    padding: 0px;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0px;
    float: right;
    border-left: none;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0px;
    float: left;
    border-right: none;
}

.shop-details__product-quantity-box .form-control {
    background: rgb(241, 243, 242);
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up::before {
    position: absolute;
    top: 11px;
    left: 0px;
    right: 10px;
    content: "";
    color: var(--thm-black);
    font-size: 15px;
    padding: 0px;
    line-height: 60px;
    width: 35px;
    height: 35px;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    transform: rotate(90deg);
    font-family: icomoon !important;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down::before {
    position: absolute;
    top: 11px;
    left: 10px;
    content: "";
    color: var(--thm-black);
    font-size: 15px;
    padding: 0px;
    line-height: 60px;
    width: 35px;
    height: 35px;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: rotate(90deg);
    font-weight: 700;
    font-family: icomoon !important;
}

.shop-details__product-quantity .btn-box1 {
    position: relative;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
}

.shop-details__product-quantity .btn-box1 a {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    background: var(--thm-base);
    padding: 19px 50px 17px;
    transition: 200ms linear 0.1s;
}

.shop-details__product-quantity .btn-box1 a:hover {
    background: var(--thm-primary);
}

.shop-details__product-quantity .btn-box1 a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    top: 1px;
    margin-right: 5px;
}

.shop-details__product-quantity .btn-box2 {
    position: relative;
    display: block;
}

.shop-details__product-quantity .btn-box2 a {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    background: var(--thm-black);
    padding: 17px 18px 13px;
    transition: 200ms linear 0.1s;
}

.shop-details__product-quantity .btn-box2 a:hover {
    background: var(--thm-primary);
}

.shop-details__product-quantity .btn-box2 a + a {
    margin-left: 6px;
}

.shop-details__tab {
    position: relative;
    display: block;
    margin-top: 120px;
}

.shop-details__tab-button {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
}

.shop-details__tab-button .tab-buttons {
    position: relative;
    display: block;
}

.shop-details__tab-button .tab-buttons li {
    position: relative;
    display: inline-block;
    background: rgb(233, 239, 236);
    cursor: pointer;
    padding: 13px 45px;
    transition: 200ms linear 0.1s;
}

.shop-details__tab-button .tab-buttons li:hover, .shop-details__tab-button .tab-buttons li.active-btn {
    background: var(--thm-base);
}

.shop-details__tab-button .tab-buttons li h4 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--thm-font);
    transition: 200ms linear 0.1s;
}

.shop-details__tab-button .tab-buttons li:hover h4, .shop-details__tab-button .tab-buttons li.active-btn h4 {
    color: rgb(255, 255, 255);
}

.shop-details__tab-content-item {
    position: relative;
    display: block;
    border: 1px solid rgb(221, 221, 221);
}

.shop-details__tab .tabs-content .tab {
    position: absolute;
    left: 0px;
    top: 0px;
    display: none;
    opacity: 1;
    transform: translateY(10px);
    transition: 600ms;
    z-index: 1;
}

.shop-details__tab .tabs-content .tab.active-tab {
    position: relative;
    display: block;
    opacity: 1;
    transform: translateY(0px);
    z-index: 5;
}

.shop-details__tab-description {
    position: relative;
    display: block;
    padding: 36px 45px 55px;
}

.shop-details__tab-description .text-box1 {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.shop-details__tab-description .text-box1 p {
    margin: 0px;
}

.shop-details__tab-description .text-box2 {
    position: relative;
    display: block;
}

.shop-details__tab-description .text-box2 p {
    margin: 0px;
}

.shop-details__tab-specifications {
    position: relative;
    display: block;
    padding: 36px 45px 55px;
}

.shop-details__tab-specifications .text-box1 {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.shop-details__tab-specifications .text-box1 p {
    margin: 0px;
}

.shop-details__tab-specifications .text-box2 {
    position: relative;
    display: block;
}

.shop-details__tab-specifications .text-box2 p {
    margin: 0px;
}

.shop-details__tab-content-item.style2 {
    position: relative;
    display: block;
    padding: 50px 40px;
}

.shop-details__tab-reviews {
    position: relative;
    display: block;
}

.review-box-outer {
    position: relative;
    display: block;
}

.single-review-box-outer {
    position: relative;
    display: block;
    background: rgb(245, 245, 245);
    padding: 38px 30px 34px;
}

.single-review-box {
    position: relative;
    display: block;
    padding-left: 70px;
    min-height: 70px;
}

.single-review-box .img-box {
    position: absolute;
    top: 9px;
    left: 0px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.single-review-box .img-box img {
    width: 100%;
    border-radius: 50%;
}

.single-review-box .text-box {
    position: relative;
    display: block;
    padding-left: 25px;
}

.single-review-box .text-box .review-box {
    position: relative;
    display: block;
}

.single-review-box .text-box .review-box ul {
    position: relative;
    display: block;
}

.single-review-box .text-box .review-box ul li {
    position: relative;
    display: inline-block;
}

.single-review-box .text-box .review-box ul li i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
}

.single-review-box .text-box .review-box {
    padding: 0px 0px 10px;
}

.single-review-box .text-box h3 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    margin: 0px 0px 6px;
}

.single-review-box .text-box h5 span {
    color: rgb(117, 117, 117);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
}

.single-review-box .text-box p {
    margin: 0px;
}

.review-form {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 53px 60px 60px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 40px 0px;
    margin-top: 60px;
}

.review-form .title-box {
    position: relative;
    display: block;
    padding-bottom: 24px;
}

.review-form .title-box h2 {
    font-size: 30px;
    font-weight: 600;
}

.review-form .add-rating-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.review-form .add-rating-box .add-rating-title {
    position: relative;
    float: left;
}

.review-form .add-rating-box .add-rating-title p {
    line-height: 20px;
    margin: 0px;
}

.review-form .add-rating-box .review-box {
    position: relative;
    float: left;
    padding-left: 20px;
}

.review-form .add-rating-box .review-box ul li {
    position: relative;
    display: inline-block;
    float: left;
    line-height: 20px;
    margin-right: 5px;
}

.review-form .add-rating-box .review-box ul li:last-child {
    margin-right: 0px;
}

.review-form .add-rating-box .review-box ul li i {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 20px;
    transition: 500ms;
}

.shop-details__tab-reviews .review-form .input-box {
    position: relative;
    display: block;
}

.shop-details__tab-reviews .review-form .input-box .field-label {
    position: relative;
    display: block;
    padding-bottom: 9px;
    color: rgb(117, 117, 117);
}

.shop-details__tab-reviews .review-form form input[type="text"], .shop-details__tab-reviews .review-form form input[type="email"], .shop-details__tab-reviews .review-form form textarea {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    width: 100%;
    height: 60px;
    border: 1px solid rgb(229, 229, 229);
    color: rgb(117, 117, 117);
    font-size: 16px;
    padding: 0px 20px;
    margin-bottom: 22px;
    border-radius: 0px;
    transition: 500ms;
    outline: none;
}

.shop-details__tab-reviews .review-form form textarea {
    height: 120px;
    padding: 10px 20px;
}

.shop-details__tab-reviews .review-form form input[type="text"]:focus {
    border-color: rgb(225, 221, 221);
}

.shop-details__tab-reviews .review-form form input[type="email"]:focus {
    border-color: rgb(225, 221, 221);
}

.shop-details__tab-reviews .review-form form textarea:focus {
    border-color: rgb(225, 221, 221);
}

.shop-details__tab-reviews .review-form .button-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 35px;
}

.shop-details__tab-reviews .review-form .button-box .left {
    position: relative;
    display: block;
}

.shop-details__tab-reviews .review-form .button-box .left .thm-btn::before {
    z-index: -1;
}

.shop-details__tab-reviews .review-form .button-box .right {
    position: relative;
    display: block;
    padding-left: 20px;
}

.shop-details__content-bottom-checked-box.style2 {
    position: relative;
    display: block;
    margin-top: 0px;
}

.brand-two.style3 {
    position: relative;
    display: block;
    padding: 50px;
}

.footer-one--three {
    position: relative;
    display: block;
}

.footer-one--three .footer-widget__single-blog-list li .text-box span {
    color: rgb(0, 0, 0);
}

.contact-one--two {
    position: relative;
    display: block;
    background: rgb(241, 244, 246);
    margin-top: 0px;
    padding: 0px 0px 90px;
    z-index: 2;
}

.contact-one--two.contact-one::before {
    position: absolute;
    inset: 0px 0% 0px 0px;
    background: var(--thm-black);
    content: "";
    z-index: -1;
}

.contact-one--two .contact-one__form {
    margin-left: 0px;
    max-width: 700px;
}

.contact-one--two__img {
    position: absolute;
    right: 100px;
    bottom: 0px;
    z-index: -1;
}

.contact-one--two__img .inner {
    position: relative;
    display: block;
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0px 100%, 0px 30%);
}

.sidebar {
    position: relative;
    display: block;
}

.sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.sidebar-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.sidebar-single .title-box h2 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.sidebar__news {
    position: relative;
    display: block;
    background-color: rgb(241, 243, 242);
    padding: 42px 30px 50px;
}

.sidebar__news-list {
    position: relative;
    display: block;
    line-height: 0;
}

.sidebar__news-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.sidebar__news-list li:last-child {
    margin-bottom: 0px;
}

.sidebar__news-list li .img-box {
    position: relative;
    display: block;
}

.sidebar__news-list li .img-box img {
    width: 100%;
}

.sidebar__news-list li .text-box {
    position: relative;
    display: block;
    flex: 1 1 0%;
    margin-left: 15px;
    margin-top: -12px;
}

.sidebar__news-list li .text-box h4 {
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 11px;
}

.sidebar__news-list li .text-box h4 a {
    color: var(--thm-base);
    transition: 200ms linear 0.1s;
}

.sidebar__news-list li .text-box h4 a:hover {
    color: var(--thm-primary);
}

.sidebar__news-list li .text-box span {
    color: var(--thm-gray);
    font-size: 12px;
    font-weight: 500;
}

.sidebar__newsletter {
    position: relative;
    display: block;
    background-color: rgb(242, 242, 242);
    padding: 41px 30px 50px;
}

.sidebar__newsletter-form .input-box {
    position: relative;
    display: block;
}

.sidebar__newsletter-form .input-box input[type="email"] {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    border: 0px solid rgb(238, 238, 238);
    width: 100%;
    height: 60px;
    color: var(--thm-gray);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding: 0px 45px 0px 20px;
    border-radius: 0px;
    transition: 500ms;
    outline: none;
}

.sidebar__newsletter-form .input-box .icon {
    position: absolute;
    top: 16px;
    right: 20px;
}

.sidebar__newsletter-form .input-box .icon span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--thm-base);
    font-weight: 700;
}

.sidebar__newsletter-form .button-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.sidebar__newsletter-form .button-box .thm-btn {
    width: 100%;
    border-radius: 0px;
}

.contact-page-google-map {
    position: relative;
    display: block;
    padding: 120px 0px;
    z-index: 1;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 550px;
    width: 100%;
}

.contact-page {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 50px 0px;
}

.contact-page__content {
    position: relative;
    display: block;
}

.contact-page__content .title {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.contact-page__content .title h2 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
}

.contact-page__content-single {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

.contact-page__content-single-inner {
    position: relative;
    display: block;
    padding-left: 70px;
}

.contact-page__content-single-inner .icon-box {
    position: absolute;
    top: 8px;
    left: 22px;
    color: rgb(253, 102, 13);
    font-size: 23px;
}

.contact-page__content-single-inner .content-box {
    position: relative;
    display: block;
}

.contact-page__content-single-inner .content-box h2 {
    font-size: 16px;
    line-height: 29px;
    text-transform: uppercase;
}

.contact-page__content-single-inner .content-box p {
    font-size: 14px;
    line-height: 29px;
}

.contact-page__content-single-inner .content-box .number1 {
    margin: 0px 0px 1px;
}

.contact-page__content-single-inner .content-box .number1 a {
    color: rgb(42, 42, 42);
    font-size: 15px;
    line-height: 29px;
    transition: 200ms linear 0.1s;
}

.contact-page__content-single-inner .content-box .number1 a:hover {
    color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .number2 {
    margin: 0px;
}

.contact-page__content-single-inner .content-box .number2 a {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: 200ms linear 0.1s;
}

.contact-page__content-single-inner .content-box .number2 a:hover {
    color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .email1 {
    margin: 0px 0px 1px;
}

.contact-page__content-single-inner .content-box .email1 a {
    color: rgb(29, 29, 29);
    font-size: 15px;
    line-height: 29px;
    transition: 200ms linear 0.1s;
}

.contact-page__content-single-inner .content-box .email1 a:hover {
    color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .email2 {
    margin: 0px;
}

.contact-page__content-single-inner .content-box .email2 a {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: 200ms linear 0.1s;
}

.contact-page__content-single-inner .content-box .email2 a:hover {
    color: var(--thm-base);
}

.contact-page__form {
    position: relative;
    display: block;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.comment-form__input-box input[type="text"], .comment-form__input-box input[type="email"] {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    width: 100%;
    height: 60px;
    border: 1px solid rgb(220, 223, 226);
    color: rgb(153, 153, 153);
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 3px;
    transition: 500ms;
    font-family: var(--thm-font-2);
    outline: none;
}

.comment-form__input-box textarea {
    width: 100%;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(220, 223, 226);
    outline: none;
    color: rgb(153, 153, 153);
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 3px;
    padding: 12px 20px 20px;
    font-family: var(--thm-font-2);
    resize: none;
    height: 200px;
}

.comment-form__btn-box {
    position: relative;
    display: block;
    padding-top: 2px;
}

.comment-form__btn {
    position: relative;
    outline: none;
    border-radius: 40px;
    padding: 19px 45px 17px;
}

.blog-details {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
    z-index: 1;
}

.blog-details .blog-one__single {
    margin-bottom: 39px;
}

.blog-details .blog-one__single__content .meta-box {
    display: inline-block;
    background: rgb(242, 242, 242);
    padding: 25px 45px;
    margin-top: -45px;
    margin-bottom: 19px;
    z-index: 5;
}

.blog-details .blog-one__single__content .meta-box li {
    margin-right: 15px;
}

.blog-details__content .blog-one__single-img .date-box {
    left: auto;
    right: 70px;
}

.blog-details__content .blog-one__single__content {
    box-shadow: none;
    padding: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.blog-details__content .blog-one__single-img .inner {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.blog-details__content .blog-one__single__content h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 21px;
}

.blog-details__content .blog-one__single__content p {
    margin: 0px;
}

.blog-details__content .blog-one__single__content .text2 {
    margin: 14px 0px 0px;
}

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

.blog-details__text1 .img-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.blog-details__text1 .img-box img {
    width: 100%;
}

.blog-details__text1 .text-box1 {
    position: relative;
    display: block;
}

.blog-details__text1 .text-box1 p {
    margin: 0px;
}

.blog-details__text1 .text-box2 {
    position: relative;
    display: block;
    padding-left: 80px;
    margin-top: 19px;
    margin-bottom: 29px;
}

.blog-details__text1 .text-box2 .icon-box {
    position: absolute;
    top: 6px;
    left: 0px;
}

.blog-details__text1 .text-box2 .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
}

.blog-details__text1 .text-box2 .text-box {
    position: relative;
    display: block;
}

.blog-details__text1 .text-box2 .text-box p {
    margin: 0px;
}

.blog-details__text2 {
    position: relative;
    display: block;
    margin-top: 20px;
}

.blog-details__text2-list {
    position: relative;
    display: block;
}

.blog-details__text2-list li {
    position: relative;
    display: block;
    padding-left: 24px;
}

.blog-details__text2-list li::before {
    position: absolute;
    top: 10px;
    left: 0px;
    height: 10px;
    width: 10px;
    background-color: rgb(191, 194, 195);
    border-radius: 50%;
    content: "";
}

.blog-details__text2-list li + li {
    margin-top: 17px;
}

.blog-details__text2 .text-box1 {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-details__text2 .text-box1 p {
    margin: 0px;
}

.blog-details__text2 .text-box2 {
    position: relative;
    display: block;
}

.blog-details__text2 .text-box2 p {
    margin: 0px;
}

.blog-details__bottom {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 49px 0px 40px;
}

.blog-details__bottom p {
    margin: 0px;
}

.blog-details__tags a {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(220, 223, 226);
    padding: 5px 30px;
    letter-spacing: 0.035em;
    font-family: var(--thm-font);
    transition: 500ms;
}

.blog-details__tags a:hover {
    background-color: var(--thm-base);
    border: 1px solid var(--thm-base);
    color: rgb(255, 255, 255);
}

.blog-details__tags a + a {
    margin-left: 6px;
}

.blog-details__social-list {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.blog-details__social-list a {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-black);
    font-size: 15px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgb(242, 242, 242);
    transition: 500ms;
    z-index: 1;
}

.blog-details__social-list a:hover {
    color: rgb(255, 255, 255);
    background-color: var(--thm-base);
}

.blog-details__social-list a + a {
    margin-left: 10px;
}

.blog-details__social-list a:hover::before {
    transform: scaleX(1);
}

.author-one {
    background-color: rgb(242, 242, 242);
    padding: 32px 30px 30px;
    display: flex;
    margin-bottom: 51px;
}

.author-one .inner {
    position: relative;
    display: block;
    padding-left: 130px;
}

.author-one__image {
    position: absolute;
    top: 7px;
    left: 0px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.author-one__image img {
    width: 100%;
}

.author-one__content {
    position: relative;
    display: block;
}

.author-one__content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.author-one__content p {
    margin: 0px;
}

.author-one__content {
    position: relative;
    display: block;
}

.author-one__content ul {
    position: relative;
    display: block;
    margin-top: 16px;
}

.author-one__content ul li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.author-one__content ul li:last-child {
    margin-right: 0px;
}

.author-one__content ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 17px;
    transition: 500ms;
}

.author-one__content ul li a:hover {
    color: var(--thm-primary);
}

.comment-one {
    position: relative;
    display: block;
}

.comment-one__title {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0px 0px 31px;
}

.comment-one__single {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 53px;
}

.comment-one__image {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-one__image img {
    width: auto;
}

.comment-one__content {
    position: relative;
    margin-left: 30px;
    flex: 1 1 0%;
}

.comment-one__content h3 {
    margin: 0px 0px 11px;
    font-size: 22px;
    font-weight: 600;
}

.comment-one__content p {
    margin: 0px 0px 13px;
}

.comment-one__content span {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
}

.comment-one__btn {
    position: relative;
    color: var(--thm-base);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font);
    transition: 500ms;
    padding-left: 16px;
}

.comment-one__btn:hover {
    color: var(--thm-primary);
}

.comment-form {
    position: relative;
    display: block;
}

.comment-form__title {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0px 0px 40px;
}

.comment-one__form {
    position: relative;
    display: block;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.comment-form__input-box input[type="text"], .comment-form__input-box input[type="email"] {
    position: relative;
    display: block;
    background: rgb(243, 243, 243);
    width: 100%;
    height: 60px;
    border: 1px solid rgb(243, 243, 243);
    color: rgb(103, 103, 103);
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 3px;
    transition: 500ms;
    font-family: var(--thm-font);
    outline: none;
}

.comment-form__input-box textarea {
    width: 100%;
    height: 200px;
    background-color: rgb(243, 243, 243);
    border: 1px solid rgb(243, 243, 243);
    outline: none;
    color: var(--thm-gray);
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    border-radius: 3px;
    padding: 12px 20px 20px;
    font-family: var(--thm-font);
    resize: none;
}

.comment-form__btn-box {
    position: relative;
    display: block;
}

.comment-form__btn {
    position: relative;
    outline: none;
    border-radius: 40px;
    padding: 19px 45px 17px;
}

.cart-area {
    position: relative;
    display: block;
    padding: 120px 0px;
}

.cart-table-box .table-outer {
    position: relative;
    width: 100%;
    overflow-x: auto;
}

.cart-table-box .cart-table {
    min-width: 1024px;
    width: 100%;
}

.cart-table-box .cart-table .cart-header {
    position: relative;
    width: 100%;
    background: var(--thm-base);
}

.cart-table-box .cart-table thead tr {
}

.cart-table-box .cart-table thead tr th {
    color: rgb(255, 255, 255);
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    min-width: 160px;
    padding: 22px 40px;
    border: 0px solid rgb(237, 237, 237);
    font-family: var(--thm-font);
}

.cart-table-box .cart-table thead tr th.hide-me {
    display: table-column;
}

.cart-table-box .cart-table thead tr th.prod-column {
    position: relative;
}

.cart-table-box .cart-table thead tr th.availability {
    padding: 0px 40px;
}

.cart-table-box .cart-table tbody tr {
    border-bottom: 1px solid rgb(229, 229, 229);
}

.cart-table-box .cart-table tbody tr td {
    min-width: 160px;
    padding: 30px 40px;
    border: 0px solid rgb(237, 237, 237);
}

.cart-table-box .cart-table tbody tr .prod-column .column-box {
    position: relative;
    min-height: 73px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb {
    width: 80px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb a {
    position: relative;
    display: block;
    border-radius: 0px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb a img {
    width: 100%;
    border-radius: 10px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb, .cart-table-box .cart-table tbody tr .prod-column .column-box .title {
    display: table-cell;
    vertical-align: middle;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .title {
    padding-left: 20px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .title h3 {
    color: rgb(37, 40, 58);
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font);
}

.cart-table-box .cart-table tbody tr .qty {
}

.cart-table-box .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
    float: none;
    width: 90px;
}

.cart-table-box .cart-table tbody tr td.price {
    color: rgb(132, 132, 132);
    font-size: 17px;
    font-weight: 500;
    font-family: var(--thm-font);
}

.cart-table-box .cart-table tbody tr .sub-total {
    color: rgb(132, 132, 132);
    font-size: 17px;
    font-weight: 500;
    font-family: var(--thm-font);
}

.cart-table-box .cart-table tbody tr td .remove {
    position: relative;
    display: block;
}

.cart-table-box .cart-table tbody tr td .remove span::before {
    position: relative;
    display: inline-block;
    left: 30px;
    color: rgb(229, 229, 229);
    font-size: 25px;
    line-height: 25px;
    transition: 200ms linear 0.1s;
    transform: rotate(45deg);
}

.cart-table-box .cart-table tbody tr td .remove:hover span::before {
    color: var(--thm-base);
}

.cart-button-box {
    padding-top: 50px;
}

.cart-button-box .apply-coupon {
    position: relative;
    display: block;
}

.cart-button-box .apply-coupon .text {
    position: relative;
    display: block;
    margin-top: -7px;
    padding-bottom: 17px;
}

.cart-button-box .apply-coupon .text p {
    color: rgb(37, 40, 58);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    margin: 0px;
}

.cart-button-box .apply-coupon .inner {
    position: relative;
    display: block;
    padding-left: 270px;
}

.cart-button-box .apply-coupon input[type="text"] {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 270px;
    height: 60px;
    border: 1px solid rgb(229, 229, 229);
    color: rgb(132, 132, 132);
    font-size: 17px;
    font-weight: 400;
    padding: 0px 30px;
    text-transform: capitalize;
    transition: 500ms;
    border-radius: 30px;
    font-family: var(--alori-font-3);
    outline: none;
}

.cart-button-box .apply-coupon .apply-coupon-button button {
    padding: 0px 40px;
    margin-left: 10px;
    line-height: 60px;
}

.cart-button-box .apply-coupon .apply-coupon-button button.thm-btn::before {
    z-index: -1;
}

.cart-button-box .update-cart button {
    padding: 0px 40px;
    margin-top: 38px;
    line-height: 60px;
}

.cart-button-box .update-cart button.thm-btn::before {
    z-index: -1;
}

.cart-button-box .update-cart {
    float: right;
}

.cart-totals-form {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    float: right;
    margin-top: 92px;
}

.cart-totals-form h2 {
    color: rgb(37, 40, 58);
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.cart-totals-form ul {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 11px 0px 10px;
}

.cart-totals-form ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgb(229, 229, 229);
    color: rgb(37, 40, 58);
    font-size: 17px;
    font-weight: 500;
    line-height: 52px;
}

.cart-totals-form ul li:last-child {
    border-bottom: none;
}

.cart-totals-form ul li span {
    position: relative;
    display: block;
    float: right;
}

.cart-totals-form ul li span.total {
    color: var(--thm-base);
    font-weight: 600;
}

.cart-totals-form button {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.cart-totals-form button.thm-btn {
    text-transform: capitalize;
}

.cart-totals-form button.thm-btn::before {
    z-index: -1;
}

.cart-area .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    display: none;
}

.checkout-area {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 120px 0px;
}

.checkout-area .form .title {
    position: relative;
    display: block;
    border-bottom: 1px solid rgb(234, 234, 234);
    padding-bottom: 8px;
    margin-bottom: 25px;
}

.checkout-area .form .title h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.checkout-area .form form .field-label {
    color: rgb(28, 32, 53);
    font-size: 16px;
    font-weight: 500;
    margin: 0px 0px 10px;
    text-transform: none;
}

.checkout-area form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.checkout-area .form form .field-input input[type="text"], .checkout-area .form form .field-input input[type="email"], .checkout-area .form form .field-input input[type="tel"] {
    position: relative;
    display: block;
    border: 1px solid rgb(224, 224, 224);
    color: rgba(var(--thm-gray-rgb), 0.5);
    font-size: 15px;
    height: 60px;
    margin-bottom: 20px;
    padding: 0px 15px;
    width: 100%;
    outline: none;
    transition: 500ms;
}

.checkout-area .form form .field-input .nice-select {
    border-radius: 0px;
    border: 1px solid rgb(224, 224, 224);
    color: rgba(var(--thm-gray-rgb), 0.5);
    font-size: 15px;
    font-weight: 400;
    height: 60px;
    line-height: 58px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.checkout-area .form form .field-input .nice-select::after {
    border-bottom: 2px solid var(--thm-black);
    border-right: 2px solid var(--thm-black);
}

.checkout-area .form form .field-input textarea {
    position: relative;
    display: block;
    border: 1px solid rgb(224, 224, 224);
    color: rgba(var(--thm-gray-rgb), 0.5);
    font-size: 15px;
    font-weight: 400;
    height: 120px;
    padding: 10px 20px;
    width: 100%;
    transition: 500ms;
    outline: none;
}

.checkout-area__checkbox {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.checkout-area__checkbox-single + .checkout-area__checkbox-single {
    margin-top: 0px;
}

.checkout-area__checkbox-single label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    cursor: pointer;
}

.checkout-area__checkbox-single input[type="checkbox"] {
    display: none;
}

.checkout-area__checkbox-single input[type="checkbox"] + label span {
    position: absolute;
    display: block;
    top: 7px;
    left: 0px;
    width: 17px;
    height: 17px;
    vertical-align: middle;
    border: 1px solid rgb(214, 211, 208);
    cursor: pointer;
    border-radius: 0%;
    transition: 300ms;
}

.checkout-area__checkbox-single label span::before {
    position: absolute;
    inset: 3px;
    content: "";
    background: rgb(214, 211, 208);
    border-radius: 0%;
    transform: scale(0);
    transition: 300ms;
}

.checkout-area__checkbox-single input[type="checkbox"]:checked + label span {
    border-color: rgb(214, 211, 208);
}

.checkout-area__checkbox-single input[type="checkbox"]:checked + label span::before {
    transform: scale(1);
}

.checkout-area__sidebar {
    position: relative;
    display: block;
    margin-left: 20px;
}

.checkout-area__sidebar-single {
    position: relative;
    display: block;
    background: rgb(249, 249, 249);
    padding: 31px 25px 50px;
    margin-bottom: 30px;
}

.checkout-area__sidebar-single.mb0 {
    margin-bottom: 0px;
}

.checkout-area__sidebar-single .title {
    position: relative;
    display: block;
    border-bottom: 1px solid rgb(228, 226, 224);
    padding-bottom: 11px;
}

.checkout-area__sidebar-single .title h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 34px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.checkout-area__sidebar-single ul {
    position: relative;
    display: block;
}

.checkout-area__sidebar-single ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(228, 226, 224);
    padding-top: 24px;
    padding-bottom: 23px;
}

.checkout-area__sidebar-single ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.checkout-area__sidebar-single ul li .text-box {
    position: relative;
    display: flex;
    align-items: center;
}

.checkout-area__sidebar-single ul li .text-box .img-box {
    position: relative;
    display: block;
    margin-right: 15px;
}

.checkout-area__sidebar-single ul li .text-box .img-box img {
    width: 100%;
}

.checkout-area__sidebar-single ul li .title-box {
    position: relative;
    display: block;
}

.checkout-area__sidebar-single ul li .title-box p {
    color: var(--thm-black);
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
}

.checkout-area__sidebar-single ul li .title-box p span {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.checkout-area__sidebar-single ul li .price {
    position: relative;
    display: block;
    line-height: 0;
}

.checkout-area__sidebar-single ul li .price p {
    color: rgb(28, 32, 53);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.checkout-area__sidebar-single ul li .price span {
    color: rgba(var(--thm-black-rgb), 0.7);
    font-size: 14px;
    line-height: 20px;
}

.checkout-area__sidebar-single ul li .price a {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
    margin-top: 5px;
}

.checkout__payment {
    position: relative;
    display: block;
    margin-bottom: 10px;
    margin-top: 30px;
}

.checkout__payment__item {
    position: relative;
    display: block;
    border: 1px solid rgb(234, 231, 231);
    padding: 24px 25px 23px;
    transition: 200ms linear 0.1s;
}

.checkout__payment__item.checkout__payment__item--active {
    border-color: var(--thm-black);
}

.checkout__payment__title {
    display: flex;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
    align-items: center;
    cursor: pointer;
    font-family: var(--thm-font);
}

.checkout__payment__title::before {
    content: "";
    width: 17px;
    height: 17px;
    background-color: transparent;
    border: 2px solid var(--thm-base);
    border-radius: 0%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
    top: 0px;
    transition: 500ms;
}

.checkout__payment__item--active .checkout__payment__title::before {
    background-color: var(--thm-base);
    border-color: var(--thm-base);
    content: "";
}

.checkout__payment__content {
    font-size: 15px;
    line-height: 25px;
    color: var(--thm-gray);
    margin-top: 13px;
}

.checkout__payment__checkbox {
    position: relative;
    display: block;
    margin-top: 18px;
}

.checkout__payment-btn {
    position: relative;
    display: block;
    margin-top: 30px;
}

.checkout__payment-btn .thm-btn {
    width: 100%;
    text-align: center;
    border-radius: 0px;
    text-transform: none;
}

.checkout__payment-btn .thm-btn::before {
    z-index: -1;
}

.checkout__payment-btn .thm-btn::after {
    border-radius: 0px;
}

.login-register-area {
    position: relative;
    display: block;
    padding-top: 113px;
    padding-bottom: 112px;
}

.shop-page-title .title {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0px 0px 6px;
    text-transform: uppercase;
    font-family: var(--thm-font);
}

.login-register-area .form .shop-page-title {
    padding-bottom: 26px;
}

.login-register-area .form form {
    width: 100%;
}

.login-register-area .form .input-field {
    position: relative;
}

.login-register-area .form .input-field input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid rgb(237, 237, 237);
    color: rgb(131, 136, 141);
    font-size: 16px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 50px;
    transition: 700ms;
}

.login-register-area .form .input-field .icon-holder {
    position: absolute;
    top: 15px;
    right: 20px;
}

.login-register-area .form .input-field .icon-holder i {
    color: rgb(153, 153, 153);
    font-size: 14px;
    font-weight: 400;
}

.login-register-area .form button.thm-btn::before {
    z-index: -1;
}

.login-register-area .form button:hover {
}

.login-register-area .form .remember-text {
    margin-top: 19px;
}

.login-register-area .form .remember-text .checkbox label {
    color: rgb(39, 40, 44);
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
    cursor: pointer;
}

.login-register-area .form .remember-text .checkbox input {
    position: relative;
    top: 1px;
}

.login-register-area .form .remember-text .checkbox span {
    color: rgb(39, 40, 44);
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
}

.login-register-area .form .social-icon {
    position: relative;
    float: right;
    margin-right: -8px;
    margin-top: 10px;
}

.login-register-area .form .social-icon .login-with {
    position: absolute;
    left: -100px;
    top: 8px;
    margin: 0px;
}

.login-register-area .form .social-icon li {
    display: inline-block;
    margin: 0px 8px;
}

.login-register-area .form .social-icon li a i {
    background: none 0px 0px repeat scroll rgb(71, 88, 143);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    display: block;
    font-size: 14px;
    font-weight: 100;
    height: 40px;
    line-height: 24px;
    padding: 8px 0px;
    text-align: center;
    transition: 700ms;
    width: 40px;
}

.login-register-area .form .social-icon li a i.twitter {
    background: none 0px 0px repeat scroll rgb(51, 204, 254);
}

.login-register-area .form .social-icon li a i.gplus {
    background: none 0px 0px repeat scroll rgb(221, 75, 57);
}

.login-register-area .form .right {
    display: block;
    overflow: hidden;
    margin-left: -60px;
}

.login-register-area .form .right h6 {
    float: left;
    color: rgb(130, 130, 130);
    font-size: 14px;
    font-weight: 400;
    margin-top: 18px;
}

.login-register-area .form .right h6 span {
    color: rgb(11, 89, 217);
}

.login-register-area .form .input-field input[type="text"]:focus {
    border: 1px solid rgb(29, 29, 29);
}

.login-register-area .form .social-icon li a:hover i {
    background: rgb(24, 56, 123);
}

.login-register-area .form .social-icon li a:hover i.twitter {
    background: rgb(18, 173, 223);
}

.login-register-area .form .social-icon li a:hover i.gplus {
    background: rgb(198, 45, 26);
}

.my-account__checked-box {
    position: relative;
    display: block;
    min-height: 30px;
    margin-top: 24px;
}

.my-account__checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 35px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: rgb(116, 120, 124);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

.my-account__checked-box input[type="checkbox"] {
    display: none;
}

.my-account__checked-box input[type="checkbox"] + label span {
    position: absolute;
    top: 3px;
    left: 0px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid rgb(116, 120, 124);
    border-radius: 0%;
    cursor: pointer;
    transition: 300ms;
}

.my-account__checked-box label span::before {
    position: absolute;
    top: 4px;
    left: 5px;
    display: block;
    border-bottom: 2px solid rgb(116, 120, 124);
    border-right: 2px solid rgb(116, 120, 124);
    content: "";
    width: 5px;
    height: 9px;
    pointer-events: none;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: 0.15s ease-in-out;
    opacity: 0;
}

.my-account__checked-box input[type="checkbox"]:checked + label span {
    border-color: rgb(116, 120, 124);
}

.my-account__checked-box input[type="checkbox"]:checked + label span::before {
    opacity: 1;
}

.icons img {
    width: 100px !important;
}

.footer-widget__links-container {
    display: flex;
    gap: 10px;
}

.footer-widget__single-links-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 50%;
}

.footer-widget__single-links-list li {
    margin-bottom: 10px;
}

.footer-widget__single-links-list a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget__single-links-list a:hover {
    color: rgb(245, 197, 24);
}

.widget-content .wp-block-columns .footer-cta {
    align-items: unset;
    padding-right: 42px;
    display: block !important;
}

.footer-widgets-wrap {
    color: rgb(216, 216, 216);
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 30px;
}

.footer-widgets-wrap {
    background-color: rgb(4, 48, 36);
}

.footer-widgets-wrap {
    padding-top: 90px;
    padding-bottom: 100px;
}

.footer-widgets-wrap a {
    color: rgb(216, 216, 216);
}

.footer-widgets-wrap a:hover {
    color: rgb(147, 189, 51);
}

.footer-widgets-wrap a:active {
    color: rgb(147, 189, 51);
}

.footer-bottom-wrap {
    color: rgb(216, 216, 216);
    font-size: 16px;
    line-height: 30px;
}

.footer-bottom-wrap {
    background-color: rgb(4, 48, 36);
}

.footer-bottom-wrap a {
    color: rgb(147, 189, 51);
}

.footer-bottom-wrap a:hover {
    color: rgb(255, 255, 255);
}

.footer-bottom-wrap a:active {
    color: rgb(147, 189, 51);
}

.footer-widget__links-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-widget__single-links-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
    flex: 1 1 35%;
}

.rounded {
    border-radius: 5px !important;
}

.cat-item div {
    border: 1px dashed rgba(150, 125, 52, 0.525);
    transition: 0.5s;
}

.cat-item div {
    transition: 0.5s;
}

.cat-item div {
    background: rgb(255, 255, 255);
    border: 1px dashed rgba(150, 125, 52, 0.525);
    transition: 0.5s;
}

.icon img {
    width: 100%;
    height: 80px;
}

.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: rgb(255, 255, 255) !important;
    border: 1px dashed var(--primary) !important;
}

.owl-theme .owl-nav {
    position: absolute;
    float: inline-end;
    right: -107%;
    top: -96px !important;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: rgb(232, 78, 40);
    color: white;
    border: none;
    font: inherit;
    padding: 5px 16px !important;
    border-radius: 50% !important;
}

.p-35 {
    padding: 25px;
}

.text-dark-mini {
    margin-top: 10px;
    font-size: 17px;
    margin-bottom: 20px;
    color: rgb(18, 23, 31);
}

.feature-three__single-icon img {
    width: 50px;
}

@media (max-width: 576px) {
    .services-detailes p {
        margin-bottom: 30px;
        padding: 10px 0px !important;
    }

    .about-one__img {
        position: relative;
        display: block;
        padding-left: 0px !important;
    }

    .logo-box-one a img {
        margin-top: 9px;
        width: 185px;
    }

    .about-one {
        position: relative;
        display: block;
        background: rgb(255, 255, 255);
        padding: 40px 0px !important;
    }
}

.years{
    width:300px;
}