@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
    --thm-font: "Poppins", sans-serif;
    --thm-font-2: "Poppins", sans-serif;
    --thm-reey-font: "reeyregular";
    --thm-gray: #636363;
    --thm-gray-rgb: 99, 99, 99;
    --thm-base: #a30006;
    --thm-base-rgb: 212, 248, 67;
    --thm-black: #181818;
    --thm-black-rgb: 24, 24, 24;
    --thm-black2: #080e25;
    --thm-black2-rgb: 8, 14, 37;
    --thm-primary: #f5f6f0;
    --thm-primary-rgb: 245, 246, 240;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    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: 26px;
    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: var(--thm-black);
    font-family: var(--thm-font-2);
    margin: 0px;
}

p {
    margin: 0px;
}

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

::-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;
    display: inline-block;
    margin-right: 0px;
    line-height: 0;
}

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

.rating-box ul li span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 200ms linear 0.1s;
}

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

.sec-title__tagline {
    position: relative;
    display: block;
    margin-bottom: 16px;
    color: rgb(255, 255, 255);
}

.sec-title__tagline h6 {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font);
}

.sec-title__tagline h6::before {
    position: absolute;
    top: 3px;
    left: -8px;
    width: 22px;
    height: 22px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.sec-title__title {
    color: rgb(163, 0, 6);
    font-size: 25px;
/*     line-height: 58px; */
    font-weight: 700;
    text-transform: uppercase;
}

.testimonials-two__inner .sec-title__title {
    color: rgb(255, 255, 255) !important;
}

.thm-btn {
    position: relative;
    display: inline-block;
    border-radius: 25px;
    padding: 1px 35px 0px;
    line-height: 50px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    overflow: hidden;
    font-family: var(--thm-font);
    text-transform: uppercase;
    transition: all 0.3s linear 0s;
    z-index: 1;
}

.thm-btn::before {
    position: absolute;
    inset: -50px 0px 100%;
    content: "";
    background: var(--thm-black);
    transform: translateY(0px);
    border-radius: 0%;
    transition-duration: 400ms;
    z-index: 1;
}

.thm-btn:hover::before {
    bottom: 0px;
    top: 0px;
}

.thm-btn::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 0px;
    opacity: 1;
    transform: scaleY(1);
    transition-duration: 400ms;
    background: var(--thm-base);
    z-index: -1;
}

.thm-btn:hover::after {
    transform: scaleY(0);
    transition-duration: 1500ms;
}

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

.thm-btn i::before {
    position: relative;
    display: inline-block;
    font-size: 13px;
    top: 1px;
    font-weight: 700;
    z-index: 5;
}

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

.thm-btn.style2 {
    border-radius: 2px;
}

.style2.thm-btn::before {
    border-radius: 2px;
}

.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: all 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: all 500ms ease 0s;
}

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

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--thm-base);
    border: 2px solid var(--thm-base);
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    display: none;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 200ms linear 0.1s;
    z-index: 999999999;
}

.scroll-to-top::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    z-index: -1;
    background: radial-gradient(rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-to-top::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);
    content: "";
    box-shadow: rgba(255, 255, 255, 0.9) 0px 0px 0px 0px;
    animation: 3s ease 0s infinite normal none running ripple;
    transition: all 0.4s ease 0s;
}

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

.scroll-to-top i::before {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
}

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

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

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

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 55px;
    background: transparent;
    border-radius: 25px;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 55px;
    font-weight: 400;
    border: 1px solid rgb(225, 225, 225);
    text-align: center;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
    z-index: 1;
}

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

.styled-pagination li.prev a,
.styled-pagination li.next a {
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 14px;
    width: auto;
    height: auto;
    text-transform: uppercase;
    border-radius: 0%;
    border: none;
    transition: all 200ms linear 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: var(--thm-black);
    background: transparent;
}

.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: all 300ms ease 0s;
}

.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: all 300ms ease 0s;
    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 ease 0s, opacity 500ms ease 0s, -webkit-transform 500ms ease 0s;
}

.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: all 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: var(--thm-black);
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    margin-left: 0px;
    transition: all 200ms linear 0.1s;
    z-index: 5;
}

.search-popup__content .thm-btn:hover i::before {
    color: rgb(255, 255, 255);
}

.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: all 0.4s ease 0s;
}

.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: rgb(163, 0, 6);
    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: all 0.3s ease-out 0s;
}

.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 ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

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

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

.mobile-nav__overlay {
    position: absolute;
    inset: 0px;
    background-color: var(--thm-black);
    opacity: 0.7;
    cursor: pointer;
}

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

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

.mobile-nav__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
    font-size: 18px;
    cursor: pointer;
    transition: all 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(255, 255, 255, 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;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    transition: all 500ms ease 0s;
}

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

.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: var(--thm-base);
    border: none;
    outline: none;
    color: var(--thm-black);
    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 ease 0s, -webkit-transform 500ms ease 0s;
    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(255, 255, 255);
    transition: all 500ms ease 0s;
}

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

.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(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
    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(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    transition: all 500ms ease 0s;
}

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

.mobile-nav__social a:hover {
    color: var(--thm-black);
    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: all 500ms ease 0s;
    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: 24px;
    padding-bottom: 22px;
}

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

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    color: rgb(0, 0, 0);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
    z-index: 1;
}

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

.main-menu .main-menu__list>li.dropdown>a::before {
    position: absolute;
    top: 0px;
    right: 0px;
    content: "";
    color: rgb(255, 255, 255);
    font-size: 10px;
    font-weight: 700;
    transition: all 200ms linear 0.1s;
    z-index: 1;
    font-family: icomoon !important;
}

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

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

.main-menu .main-menu__list>li>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: all 700ms ease 0s;
}

.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-black-rgb, 53, 84, 209), 0.07);
}

.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: 15px;
    line-height: 30px;
    color: var(--thm-black);
    letter-spacing: 0px;
    font-weight: 500;
    display: -webkit-box;
    padding: 10px 25px;
    transition: all 500ms ease 0s;
    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: var(--thm-black);
    background-color: var(--thm-base);
}

.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 ease 0s, visibility 500ms ease 0s, -webkit-transform 500ms ease 0s;
    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-black);
    font-size: 25px;
    cursor: pointer;
    line-height: 0;
    transition: all 500ms ease 0s;
}

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

@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: 48px;
    padding-bottom: 49px;
}

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

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

.main-header-one {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 99;
}

.main-header-one__top {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 0px 9px;
    z-index: 99;
}

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

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

.main-header__contact-info {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
}

.main-header__contact-info li {
    position: relative;
    display: inline-block;
    margin-right: 13px;
    padding-right: 20px;
}

.main-header__contact-info li::before {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 2px;
    width: 1px;
    background: rgba(210, 210, 210, 0.5);
    content: "";
}

.main-header__contact-info li:last-child::before {
    display: none;
}

.main-header__contact-info li:last-child {
    margin-right: 0px;
}

.main-header__contact-info li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header__contact-info li .inner .icon-box {
    position: relative;
    display: block;
}

.main-header__contact-info li .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    top: -1px;
}

.main-header__contact-info li .inner .text-box {
    position: relative;
    display: block;
    margin-left: 9px;
}

.main-header__contact-info li .inner .text-box p {
    font-size: 16px;
    line-height: 26px;
    color: rgb(255, 255, 255);
}

.main-header__contact-info li .inner .text-box p a {
    color: rgb(255, 255, 255);
    transition: all 200ms linear 0.1s;
}

.main-header__contact-info li .inner .text-box p a:hover {
    color: var(--thm-base);
}

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

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

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

.main-header__language-switcher .inner .icon-box {
    position: relative;
    display: block;
}

.main-header__language-switcher .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    top: -2px;
}

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

.main-header-one__top-social-links::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 1px;
    background: rgba(210, 210, 210, 0.5);
    content: "";
}

.main-header-one__top-social-links li {
    position: relative;
    display: inline-block;
    margin-right: 13px;
}

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

.main-header-one__top-social-links li a {
    position: relative;
    display: block;
    z-index: 1;
}

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

.main-header-one__top-social-links li a:hover span::before {
    color: var(--thm-base);
}

.main-header-one__bottom {
    position: relative;
    display: block;
    background: transparent;
    margin-top: 20px;
}

.main-header-one__bottom-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__bottom-left {
    position: relative;
    display: block;
}

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

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

.logo-box-one a img {
    width: 100%;
    height: 40px;
}

.main-header-one__bottom-middle {
    position: relative;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0px 60px;
    border-radius: 38px;
}

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

.header-search-box {
    position: relative;
    display: block;
    line-height: 0;
}

.header-search-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear 0.1s;
}

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

.main-header-one__bottom-right .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 20px;
}

.main-header-one__bottom-right .btn-box .thm-btn:hover {
    color: var(--thm-black);
}

.main-header-one__bottom-right .btn-box .thm-btn::before {
    background: rgb(255, 255, 255);
}

.stricky-header.stricky-header--one .main-menu__wrapper {
    background: var(--thm-black2);
}

.stricky-header.stricky-header--one .main-header-one__bottom-middle {
    border: 0px solid rgba(255, 255, 255, 0.2);
    padding: 0px;
    border-radius: 0px;
}

.main-header-two {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 55;
}

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

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

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

.main-header-two .main-menu .main-menu__list>li,
.stricky-header.stricky-header--two .main-menu__list>li {
    padding-top: 33px;
    padding-bottom: 32px;
}

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

.main-header-two__right .main-header__language-switcher .inner .icon-box span::before {
    color: var(--thm-base);
}

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

.main-header-two__right .header-search-box::before {
    position: absolute;
    top: -5px;
    left: 0px;
    bottom: -2px;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
    content: "";
}

.main-header-two__right .header-search-box a {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    border: 0px solid rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear 0.1s;
}

.main-header-two__right .btn-box {
    line-height: 0;
    margin-left: 30px;
}

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

.stricky-header .main-menu__list>li>a {
    color: rgb(0, 0, 0);
}

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

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

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

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

.main-header-two--three .main-header-two__right .main-header__language-switcher .inner .icon-box span::before {
    color: var(--thm-gray);
}

.main-header-two--three #polyglotLanguageSwitcher a {
    color: var(--thm-gray);
}

.main-header-two--three #polyglotLanguageSwitcher span.trigger::before {
    color: var(--thm-gray);
}

.main-header-two--three .header-search-box a {
    color: var(--thm-gray);
}

.main-header-two--three .main-header-two__right .header-search-box::before {
    background: rgb(204, 204, 204);
}

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

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

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

.main-slider-one .image-layer::before {
    position: absolute;
    inset: 0px;
    background: rgba(10, 24, 74, 0.6);
    content: "";
    z-index: -1;
}

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

.main-slider-one__content .title {
    position: relative;
    display: block;
    margin-bottom: 26px;
    opacity: 0;
    transition: all 1000ms ease 0s;
    transform: translateY(80px);
}

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

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

.main-slider-one__content .text {
    position: relative;
    display: block;
    opacity: 0;
    transition: all 1300ms ease 0s;
    transform: translateY(80px);
}

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

.main-slider-one__content .text p {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.main-slider-one__content-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 47px;
    opacity: 0;
    transition: all 1300ms ease 0s;
    transform: translateY(80px);
}

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

.main-slider-one__content-btn .btn-one {
    position: relative;
    display: block;
    line-height: 0;
}

.main-slider-one__content-btn .btn-two {
    position: relative;
    display: block;
    margin-left: 15px;
    line-height: 0;
}

.main-slider-one__content-btn .btn-two .thm-btn::after {
    background: rgb(255, 255, 255);
}

.main-slider__nav {
    position: absolute;
    top: 50%;
    left: 0%;
    right: 0px;
    max-width: 100%;
    padding-left: 70px;
    padding-right: 70px;
    transform: translateY(-50%);
    z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    display: block;
    color: rgba(255, 255, 255, 0.3);
    font-size: 100px;
    opacity: 1;
    margin: 0px;
    transition: all 500ms ease 0s;
    z-index: 100;
}

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

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

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

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

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

.main-slider__nav .swiper-button-prev i::before {
    position: relative;
    display: inline-block;
    font-size: 100px;
    font-weight: 400;
}

.main-slider__nav .swiper-button-next i::before {
    position: relative;
    display: inline-block;
    font-size: 100px;
    font-weight: 400;
    transform: rotate(180deg);
}

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

.main-slider-two .image-layer {
    position: absolute;
    inset: 0px;
    opacity: 1;
    background: rgba(99, 99, 99, 0.49);
    background-blend-mode: luminosity;
    transform: scale(1);
    transition: transform 7000ms ease 0s, opacity 1500ms ease-in 0s, -webkit-transform 7000ms ease 0s;
    z-index: 1;
}

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

.main-slider-two .image-layer::before {
    position: absolute;
    inset: 0px;
    content: "";
    background: linear-gradient( 89.18deg, rgba(255, 255, 255, 0.91) 25.11%, rgba(59, 73, 0, 0) 91.33%);
    z-index: -1;
}

.main-slider-two .shape1 {
    position: absolute;
    left: 545px;
    bottom: 30px;
    opacity: 0.1;
    z-index: 1;
}

.main-slider-two .container {
    position: relative;
    padding: 316px 15px 225px;
}

.main-slider-two__content {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 5;
}

.main-slider-two__content .title {
    position: relative;
    display: block;
    margin-bottom: 25px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform-origin: center top;
    transition: all 1000ms ease 0s;
    z-index: 10;
}

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

.main-slider-two__content .title h2 {
    color: rgb(163, 0, 6);
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;
}

.main-slider-two__content .text {
    position: relative;
    display: block;
    margin-bottom: 47px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform-origin: center bottom;
    transition: all 1000ms ease 0s;
    z-index: 10;
}

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

.main-slider-two__content .text p {
    color: rgb(0, 0, 0);
    font-size: 18px;
    line-height: 28px;
}

.main-slider-two__content-btn {
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: center top;
    transition: all 1000ms ease 0s;
    z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__content-btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1500ms;
}

.main-slider-two__content-btn .btn-one {
    position: relative;
    display: block;
    line-height: 0;
}

.main-slider-two__content-btn .btn-two {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 30px;
}

.main-slider-two__content-btn .btn-two .icon-box {
    position: relative;
    display: block;
}

.main-slider-two__icon {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 700;
    top: 0px;
    padding-right: 9px;
    transition: all 200ms linear 0.1s;
}

.main-slider-two__icon i::before {
    position: relative;
    display: inline-block;
    top: 4px;
}

.main-slider-two__content-btn .btn-two:hover .main-slider-two__icon {
    color: var(--thm-base);
}

.main-slider-two__icon span {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    font-family: var(--thm-font);
}

.main-slider-two__nav {
    position: absolute;
    top: 50%;
    left: 0%;
    right: 0px;
    max-width: 100%;
    padding-left: 120px;
    padding-right: 120px;
    transform: translateY(-50%);
    z-index: 100;
}

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 0, 0.2);
    color: rgba(255, 0, 0, 0.3);
    font-size: 24px;
    opacity: 1;
    margin: 0px;
    transition: all 500ms ease 0s;
    z-index: 100;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
    border: 2px solid rgb(163, 0, 6);
}

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

.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(163, 0, 6);
}

.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 {
    margin-bottom: 0px;
}

.main-slider-two__nav .swiper-button-prev i::before {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
}

.main-slider-two__nav .swiper-button-next i::before {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    transform: rotate(180deg);
}

.banner-one {
    position: relative;
    display: block;
    background: rgb(245, 246, 240);
    z-index: 1;
}

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

.banner-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 170px 0px 90px;
    overflow: hidden;
    z-index: 99;
}

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

.banner-one__content h2 {
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;
    margin-bottom: 21px;
}

.banner-one__content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.banner-one__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 47px;
}

.banner-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 675px;
    width: 100%;
}

.banner-one__img .row {
    --bs-gutter-x: 20px;
}

.banner-one__img-left {
    position: relative;
    display: block;
    margin-right: -20px;
}

.banner-one__img-left-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 120px;
}

.banner-one__img-left-img img {
    width: 100%;
}

.banner-one__img-right {
    position: relative;
    display: block;
    margin-left: 19px;
}

.banner-one__img-right-single {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.banner-one__img-right-single .img-box {
    position: relative;
    display: block;
    border-radius: 70px;
    overflow: hidden;
}

.banner-one__img-right-single .img-box img {
    width: 100%;
}

.page-header {
    position: relative;
    display: block;
    padding: 265px 0px 132px;
    overflow: hidden;
    z-index: 1;
}

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

.page-header__bg::before {
    position: absolute;
    inset: 0px;
    background: rgb(10, 24, 74);
    opacity: 0.7;
    content: "";
    z-index: -2;
}

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

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

.page-header__inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 30px;
    transform: rotate(90deg);
}

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

.page-header__inner .thm-breadcrumb {
    position: relative;
    display: block;
    margin-top: 13px;
}

.page-header__inner .thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font);
}

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

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

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

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

.about-one__left-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.about-one__left-img::before {
    position: absolute;
    top: 0px;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(17deg);
    z-index: 1;
}

.about-one__left-img:hover::before {
    animation: 1.9s ease 0s 1 normal none running shine;
}

.about-one__left-img img {
    width: 100%;
    transition: all 500ms linear 0.2s;
}

.about-one__left-img:hover img {
    transform: scale(1.1) rotate(0deg);
    transition: all 500ms linear 0.1s;
}

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

.about-one__middle .sec-title {
    padding-bottom: 28px;
}

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

.about-one__middle-text p {
    font-size: 18px;
    line-height: 28px;
}

.about-one__middle-client-info {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgb(225, 225, 225);
    border-radius: 10px;
    padding: 25px 20px;
    margin-top: 32px;
    z-index: 1;
}

.about-one__middle-client-info .icon-box {
    position: absolute;
    right: 35px;
    bottom: 25px;
    z-index: -1;
}

.about-one__middle-client-info .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(238, 238, 238);
    font-size: 65px;
}

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

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

.about-one__middle-client-info .content-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1 1 0%;
}

.about-one__middle-client-info .content-box h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 3px;
}

.about-one__middle-client-info .content-box h3 span {
    color: var(--thm-gray);
    font-weight: 500;
    font-size: 16px;
    font-family: var(--thm-font);
}

.about-one__middle-client-info .content-box p {
    margin: 0px;
}

.about-one__middle-list {
    position: relative;
    display: block;
    margin-top: 39px;
}

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

.about-one__middle-list-single.style2 {
    margin-left: -10px;
}

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

.about-one__middle-list-single ul li {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

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

.about-one__middle-list-single ul li p {
    margin: 0px;
}

.about-one__middle-list-single ul li p span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 17px;
    font-weight: 700;
    padding-right: 3px;
    top: 1px;
}

.about-one__middle-btn {
    position: relative;
    display: block;
    padding-top: 14px;
    line-height: 0;
}

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

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

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

.about-one__right-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 34px;
}

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

.about-one__right-img:hover::before {
    height: 100%;
    opacity: 0;
    transition: all 400ms linear 0s;
}

.about-one__right-img img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.about-one__right-img:hover img {
    transform: scale(1);
}

.brand-one {
    position: relative;
    display: block;
    background: var(--thm-black2);
    padding: 110px 0px 98px;
    z-index: 1;
}

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

.brand-one .swiper-slide {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    transition: all 0.5s ease 0s;
    overflow: hidden;
    cursor: pointer;
}

.brand-one .swiper-slide .img-box {
    position: relative;
    display: block;
    transition: all 0.3s ease 0s;
}

.brand-one .swiper-slide:hover .img-box {
    transform: translateY(-100%);
}

.brand-one .swiper-slide .img-box img {
    opacity: 1;
    width: auto;
}

.brand-one .swiper-slide .img-box2 {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease 0s;
}

.brand-one .swiper-slide:hover .img-box2 {
    transform: translateY(0px);
}

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

.services-one__single {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 47px 50px 46px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
}

.services-one__single::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 5px;
    background-color: var(--thm-black2);
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
    transform-origin: right bottom;
    transform: scale(1, 0);
    z-index: -1;
}

.services-one__single:hover::before {
    transform: scale(1, 1);
    transform-origin: center top;
}

.services-one__single-bg {
    position: absolute;
    inset: 0px;
    opacity: 0.1;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

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

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

.services-one__single-inner .text-box h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 9px;
}

.services-one__single-inner .text-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear 0.1s;
}

.services-one__single:hover .services-one__single-inner .text-box h2 a {
    color: rgb(255, 255, 255);
}

.services-one__single:hover .services-one__single-inner .text-box h2 a:hover {
    color: var(--thm-base);
}

.services-one__single-inner .text-box h2 a:hover {
    color: var(--thm-base);
}

.services-one__single-inner .text-box p {
    margin: 0px;
    transition: all 200ms linear 0.1s;
}

.services-one__single:hover .services-one__single-inner .text-box p {
    color: rgb(153, 153, 153);
}

.services-one__single-inner .text-box .btn-box {
    position: relative;
    display: block;
    margin-top: 19px;
}

.services-one__single-inner .text-box .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 200ms linear 0.1s;
}

.services-one__single:hover .services-one__single-inner .text-box .btn-box a {
    color: rgb(255, 255, 255);
}

.services-one__single:hover .services-one__single-inner .text-box .btn-box a:hover {
    color: var(--thm-base);
}

.services-one__single-inner .text-box .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 10px;
    font-weight: 700;
    padding-left: 1px;
    top: -1px;
    transition: all 200ms linear 0.1s;
}

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

.services-one__single:hover .services-one__single-inner .text-box .btn-box a:hover span::before {
    color: var(--thm-base);
}

.services-one__single-inner .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 130px;
    height: 120px;
}

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

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

.counter-one {
    position: relative;
    display: block;
    padding: 0px 0px 60px;
    z-index: 5;
}

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

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

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

.counter-one__single::before {
    position: absolute;
    top: -7px;
    right: 0px;
    bottom: 0px;
    background: rgb(225, 225, 225);
    width: 1px;
    content: "";
}

.counter-one__box li.counter-one__single {
    position: relative;
    display: inline-block;
    margin-right: 45px;
    padding-right: 36px;
}

.counter-one__box li:last-child.counter-one__single {
    margin-right: 0px;
    padding-right: 0px;
}

.counter-one__single:last-child::before {
    display: none;
}

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

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

.counter-one__single-inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 60px;
    line-height: 60px;
    transition: all 500ms ease 0s;
}

.counter-one__single:hover .counter-one__single-inner .icon-box span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.counter-one__single-inner .content-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.counter-one__single-inner .content-box .left-text h2 {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 45px;
    line-height: 2.8em;
    font-weight: 700;
    letter-spacing: -0.04em;
    justify-content: center;
}

.counter-one__single-inner .content-box .left-text h2 .letter {
    position: relative;
    display: inline-block;
    left: -10px;
}

.counter-one__single-inner .odometer.odometer-auto-theme,
.counter-one__single-inner .odometer.odometer-theme-default {
    font-family: var(--thm-font-2);
    line-height: 0.8em;
}

.counter-one__single-inner .content-box .right-text {
    position: relative;
    display: block;
    margin-left: 18px;
}

.counter-one__single-inner .content-box .right-text h3 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    text-transform: capitalize;
}

.feature-one {
    position: relative;
    display: block;
    background: var(--thm-black2);
    padding: 110px 0px 80px;
    z-index: 1;
}

.feature-one .shape1 {
    position: absolute;
    top: 10px;
    left: 70px;
    opacity: 0.2;
    z-index: -1;
}

.feature-one .shape1 img {
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.feature-one .shape2 {
    position: absolute;
    left: 100px;
    bottom: 75px;
    opacity: 0.2;
    z-index: -1;
}

.feature-one .shape3 {
    position: absolute;
    left: 720px;
    bottom: 235px;
    opacity: 0.3;
    z-index: -1;
}

.feature-one .shape3 img {
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.feature-one .shape4 {
    position: absolute;
    top: 95px;
    right: 95px;
    opacity: 0.3;
    z-index: -1;
}

.feature-one .shape5 {
    position: absolute;
    bottom: 170px;
    right: 130px;
    opacity: 0.2;
    z-index: -1;
}

.feature-one__content {
    position: relative;
    display: block;
    max-width: 510px;
    width: 100%;
    margin-top: 92px;
}

.feature-one__content .sec-title {
    padding-bottom: 29px;
}

.feature-one__content .sec-title__title {
    color: rgb(255, 255, 255);
}

.feature-one__content .sec-title__tagline h6 {
    color: var(--thm-base);
}

.feature-one__content .sec-title__tagline h6::before {
    background: rgba(255, 255, 255, 0.3);
}

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

.feature-one__content-text p {
    color: rgb(153, 153, 153);
    margin: 0px;
}

.feature-one__content-list {
    position: relative;
    display: block;
    margin-top: 31px;
}

.feature-one__content-list li {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

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

.feature-one__content-list li p {
    color: rgb(153, 153, 153);
    margin: 0px;
}

.feature-one__content-list li p span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 18px;
    padding-right: 3px;
    top: 1px;
}

.feature-one__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 47px;
}

.feature-one__content .btn-box .thm-btn::before {
    background: rgb(255, 255, 255);
}

.feature-one__content .btn-box .thm-btn:hover {
    color: var(--thm-black);
}

.feature-one__right {
    position: relative;
    display: block;
}

.feature-one__right-single {
    position: relative;
    display: block;
    background: rgb(245, 246, 240);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 35px 35px 32px;
    z-index: 1;
}

.feature-one__right-single.mt30 {
    margin-top: 30px;
}

.feature-one__right-single::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 3px;
    background-color: var(--thm-base);
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
    transform-origin: right top;
    transform: scale(1, 0);
    z-index: -1;
}

.feature-one__right-single:hover::before {
    transform: scale(1, 1);
    transform-origin: center bottom;
}

.feature-one__right-single-bg {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.1;
    z-index: -1;
}

.feature-one__right-single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 90px;
    height: 90px;
    margin-bottom: 22px;
}

.feature-one__right-single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 50px;
    transition: all 500ms ease 0s;
}

.feature-one__right-single:hover .icon-box span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.feature-one__right-single .text-box {
    position: relative;
    display: block;
}

.feature-one__right-single .text-box h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.feature-one__right-single .text-box h2 a {
    color: var(--thm-black);
}

.feature-one__right-single .text-box p {
    margin: 0px;
}

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

.price-one__single {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 50px 70px;
    margin-bottom: 30px;
    z-index: 1;
}

.price-one__single-bg {
    position: absolute;
    inset: 0px;
    opacity: 0.15;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

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

.price-one__single-left {
    position: relative;
    display: block;
}

.price-one__single-left .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 90px;
    height: 90px;
    margin-bottom: 22px;
}

.price-one__single-left .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 45px;
    transition: all 500ms ease 0s;
}

.price-one__single:hover .price-one__single-left .icon-box span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.price-one__single-left .content-box {
    position: relative;
    display: block;
}

.price-one__single-left .content-box h3 {
    color: var(--thm-gray);
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 7px;
}

.price-one__single-left .content-box h2 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
}

.price-one__single-right {
    position: relative;
    display: block;
    padding-left: 80px;
}

.price-one__single-right::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 10px;
    background: rgb(228, 229, 222);
    border-radius: 5px;
    content: "";
}

.price-one__single-right-list {
    position: relative;
    display: block;
}

.price-one__single-right-list li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.price-one__single-right-list li:last-child {
    margin-bottom: 0px;
}

.price-one__single-right-list li p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px;
}

.price-one__single-right-list li p span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 18px;
    top: 1px;
    padding-right: 6px;
}

.price-one__single-right-btn {
    position: relative;
    display: block;
    margin-top: 32px;
    line-height: 0;
}

.price-one__single-right-btn .thm-btn {
    color: rgb(255, 255, 255);
}

.price-one__single-right-btn .thm-btn::after {
    background: var(--thm-black);
}

.price-one__single-right-btn .thm-btn::before {
    background: var(--thm-base);
}

.company-strategy-one {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 10px 0px 125px;
    z-index: 1;
}

.company-strategy-one__img {
    position: relative;
    display: block;
    max-width: 670px;
    width: 100%;
}

.company-strategy-one__img .shape1 {
    position: absolute;
    left: 110px;
    bottom: -85px;
    z-index: -1;
}

.company-strategy-one__img1 {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 410px;
    width: 100%;
}

.company-strategy-one__img1::before {
    position: absolute;
    top: 0px;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(20deg);
    z-index: 1;
}

.company-strategy-one__img1:hover::before {
    animation: 1.9s ease 0s 1 normal none running shine;
}

.company-strategy-one__img1 img {
    width: 100%;
    transition: all 500ms linear 0.2s;
}

.company-strategy-one__img1:hover img {
    transform: scale(1.1) rotate(0deg);
    transition: all 500ms linear 0.1s;
}

.company-strategy-one__img2 {
    position: absolute;
    top: -10px;
    right: 0px;
    overflow: hidden;
    z-index: 2;
}

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

.company-strategy-one__img2:hover::before {
    height: 100%;
    opacity: 0;
    transition: all 400ms linear 0s;
}

.company-strategy-one__img2 img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.company-strategy-one__img2:hover img {
    transform: scale(1);
}

.company-strategy-one__img3 {
    position: absolute;
    right: 25px;
    bottom: -105px;
    z-index: 2;
}

.company-strategy-one__img3 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.company-strategy-one__img3::before {
    position: absolute;
    top: 15px;
    right: -25px;
    bottom: 15px;
    width: 6px;
    background: var(--thm-base);
    content: "";
}

.company-strategy-one__img3 .inner::after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0px;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.company-strategy-one__img3:hover .inner::after {
    height: 100%;
    opacity: 0;
    transition: all 400ms linear 0s;
}

.company-strategy-one__img3 .inner img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.company-strategy-one__img3:hover .inner img {
    transform: scale(1);
}

.company-strategy-one__content {
    position: relative;
    display: block;
}

.company-strategy-one__content .sec-title {
    padding-bottom: 28px;
}

.company-strategy-one__content-text {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.company-strategy-one__content-text p {
    font-size: 18px;
    line-height: 28px;
}

.company-strategy-one__content-text2 {
    position: relative;
    display: block;
}

.company-strategy-one__content-text2 p {
    margin: 0px;
}

.company-strategy-one__progress {
    position: relative;
    display: block;
    margin-top: 42px;
}

.company-strategy-one__progress-single {
    position: relative;
    display: block;
    margin-bottom: 54px;
}

.company-strategy-one__progress-single.mar0 {
    margin-bottom: 0px;
}

.company-strategy-one__progress-single .top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.company-strategy-one__progress-single .top .count-text {
    position: relative;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding-left: 5px;
    transition: all 500ms ease 0s;
    opacity: 1;
    font-family: var(--thm-font);
}

.company-strategy-one__progress-single p {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.company-strategy-one__progress-single .bar {
    position: relative;
    width: 100%;
    height: 0px;
    background: transparent;
    margin-bottom: 0px;
}

.company-strategy-one__progress-single .bar::before {
    position: absolute;
    left: 0px;
    bottom: -15px;
    right: 0px;
    width: 100%;
    height: 2px;
    background: var(--thm-gray);
    content: "";
}

.company-strategy-one__progress-single .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 10px;
    background: var(--thm-black);
    transition: all 1500ms ease 0s;
    z-index: 1;
}

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

.testimonial-one__inner {
    position: relative;
    display: block;
    padding: 110px 190px;
    background: var(--thm-base);
    margin-bottom: -290px;
    z-index: 5;
}

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

.testimonial-one__single {
    position: relative;
    display: block;
    max-width: 880px;
    width: 100%;
    margin: 0px auto;
}

.testimonial-one__single .icon-box {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 51px;
}

.testimonial-one__single .icon-box span {
    position: relative;
    display: inline-block;
    font-size: 100px;
}

.testimonial-one__single .text-box {
    position: relative;
    display: block;
    border-bottom: 2px solid rgba(174, 212, 19, 0.8);
    padding-bottom: 40px;
}

.testimonial-one__single .text-box h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    font-family: var(--thm-font);
}

.testimonial-one__single .client-info {
    position: relative;
    display: block;
    max-width: 330px;
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 50px;
    margin: 35px auto 0px;
    padding: 10px;
}

.testimonial-one__single .client-info .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-one__single .client-info .img-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

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

.testimonial-one__single .client-info .content-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1 1 0%;
}

.testimonial-one__single .client-info .content-box h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    text-transform: capitalize;
}

.testimonial-one__single .client-info .content-box p {
    margin: 0px;
}

.testimonial-one .owl-theme .owl-nav {
    position: absolute;
    top: 49%;
    left: 0%;
    right: 0px;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    transform: translateY(-50%);
    z-index: 5;
}

.testimonial-one .owl-carousel .owl-nav button.owl-prev,
.testimonial-one .owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: block;
    background: transparent;
    color: rgb(174, 212, 19);
    font-size: 50px;
    opacity: 1;
    margin: 0px;
    transition: all 500ms ease 0s;
    z-index: 100;
}

.testimonial-one .owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-one .owl-carousel .owl-nav button.owl-next:hover {
    color: var(--thm-black);
}

.testimonial-one .owl-carousel .owl-nav button.owl-prev {
    float: left;
    left: -85px;
}

.testimonial-one .owl-carousel .owl-nav button.owl-next {
    float: right;
    right: -85px;
}

.team-one {
    position: relative;
    display: block;
    background: var(--thm-black2);
    padding: 400px 0px 80px;
    z-index: 1;
}

.team-one .sec-title__tagline h6 {
    color: var(--thm-base);
}

.team-one .sec-title__title {
    color: rgb(255, 255, 255);
}

.team-one .sec-title__tagline h6::before {
    background: rgba(255, 255, 255, 0.3);
}

.team-one .auto-container {
    max-width: 1750px;
    width: 100%;
}

.team-one__outer {
    flex: 0 0 auto;
    width: 20%;
}

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

.team-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.team-one__single-img::before {
    background: rgb(255, 255, 255);
    position: absolute;
    height: 0px;
    width: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
    transition: all 400ms ease-out 0s;
    content: "";
    z-index: 1;
}

.team-one__single:hover .team-one__single-img::before {
    height: 100%;
    opacity: 0.3;
}

.team-one__single-img::after {
    position: absolute;
    content: "";
    background: rgb(255, 255, 255);
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    bottom: 0px;
    opacity: 0;
    z-index: 1;
    transition: all 600ms ease-out 0s;
}

.team-one__single:hover .team-one__single-img::after {
    height: 0px;
    opacity: 0.2;
}

.team-one__single-img img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

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

.team-one__single-content {
    position: relative;
    display: block;
    padding-top: 25px;
}

.team-one__single-content h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
}

.team-one__single-content h2 a {
    color: rgb(255, 255, 255);
    transition: all 200ms linear 0.1s;
}

.team-one__single-content h2 a:hover {
    color: var(--thm-base);
}

.team-one__single-content p {
    color: var(--thm-base);
    font-weight: 500;
    text-transform: capitalize;
}

.team-one__single-content .social-links {
    position: relative;
    display: inline-block;
    line-height: 0;
    background: rgb(245, 246, 240);
    padding: 15px 20px;
    margin-top: 19px;
    z-index: 1;
}

.team-one__single-content .social-links::before {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    background: var(--thm-base);
    transition: all 0.6s ease 0s;
    content: "";
    z-index: -1;
}

.team-one__single:hover .team-one__single-content .social-links::before {
    width: 100%;
    left: 0px;
}

.team-one__single-content .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.team-one__single-content .social-links li:last-child {
    margin-right: 0px;
}

.team-one__single-content .social-links li a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 16px;
}

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

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

.contact-one__img1 {
    position: relative;
    display: block;
    float: right;
    z-index: 1;
}

.contact-one__img1 .shape1 {
    position: absolute;
    right: -30px;
    bottom: -45px;
    z-index: -1;
}

.contact-one__img1::before {
    position: absolute;
    top: 0px;
    left: -30px;
    width: 10px;
    height: 175px;
    background: var(--thm-base);
    content: "";
}

.contact-one__img1 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

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

.contact-one__img1:hover .inner::before {
    height: 100%;
    opacity: 0;
    transition: all 400ms linear 0s;
}

.contact-one__img1 .inner img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.contact-one__img1:hover .inner img {
    transform: scale(1);
}

.contact-one__img2 {
    position: absolute;
    left: 0px;
    bottom: -45px;
    overflow: hidden;
    z-index: 5;
}

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

.contact-one__img2:hover::before {
    height: 100%;
    opacity: 0;
    transition: all 400ms linear 0s;
}

.contact-one__img2 img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.contact-one__img2:hover img {
    transform: scale(1);
}

.contact-one__form {
    position: relative;
    display: block;
    margin-left: 40px;
}

.contact-one__form .sec-title {
    padding-bottom: 47px;
}

.contact-one__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.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: var(--thm-primary);
    width: 100%;
    height: 60px;
    border: none;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    padding-left: 25px;
    padding-right: 20px;
    border-radius: 30px;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
    outline: none;
}

.contact-one__form .input-box textarea {
    width: 100%;
    height: 150px;
    padding-top: 18px;
    outline: none;
    resize: none;
}

.contact-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.contact-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.contact-one__form form textarea::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.contact-one__form-btn {
    position: relative;
    display: block;
}

.blog-one {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 110px 0px 170px;
    margin-bottom: -90px;
    z-index: 1;
}

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

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

.blog-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.blog-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-black2-rgb), 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

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

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

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

.blog-one__single-content {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 35px 30px 32px;
    margin-left: 90px;
    margin-top: -115px;
    z-index: 5;
}

.blog-one__single-content p {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.blog-one__single-content p span {
    color: var(--thm-gray);
}

.blog-one__single-content h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    font-family: var(--thm-font);
    border-bottom: 1px solid rgb(225, 225, 225);
    padding-bottom: 22px;
}

.blog-one__single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear 0.1s;
}

.blog-one__single-content h2 a:hover {
    color: var(--thm-base);
}

.blog-one__single-content .btn-box {
    position: relative;
    display: inline-block;
    margin-top: 17px;
}

.blog-one__single-content .btn-box a {
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    transition: all 200ms linear 0.1s;
}

.blog-one__single-content .btn-box a:hover {
    color: var(--thm-base);
}

.blog-one__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
}

.subscribe-one {
    position: relative;
    display: block;
    margin-bottom: -75px;
    z-index: 5;
}

.subscribe-one__inner {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 40px 73px;
    z-index: 1;
}

.subscribe-one__content {
    position: relative;
    display: flex;
    align-items: center;
}

.subscribe-one__content .icon-box {
    position: relative;
    display: block;
}

.subscribe-one__content .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 85px;
}

.subscribe-one__content .text-box {
    position: relative;
    display: block;
    margin-left: 25px;
}

.subscribe-one__content .text-box h2 {
    color: var(--thm-black);
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
}

.subscribe-one__form {
    position: relative;
    display: block;
}

.subscribe-one__form form {
    position: relative;
    display: block;
}

.subscribe-one__form form input[type="text"] {
    position: relative;
    display: block;
    background: transparent;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    height: 50px;
    padding-left: 0px;
    padding-right: 40px;
    transition: all 500ms ease 0s;
    border-width: 1px;
    border-style: solid;
    border-color: transparent transparent rgba(161, 198, 10, 0.5);
    border-image: initial;
    max-width: 100%;
    width: 100%;
    outline: none;
}

.subscribe-one__form form button {
    position: absolute;
    top: 0px;
    right: -15px;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 50px;
    text-align: center;
    transition: all 500ms ease 0s;
    width: 50px;
    padding: 0px;
    border: none;
    background: none;
}

.subscribe-one__form form button span::before {
    font-weight: 700;
}

.subscribe-one__form-checkbox {
    position: relative;
    display: block;
    margin-top: 9px;
}

.subscribe-one__form-checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: rgb(99, 99, 99);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--thm-font);
    cursor: pointer;
}

.subscribe-one__form-checkbox input[type="checkbox"] {
    display: none;
}

.subscribe-one__form-checkbox input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 4px;
    left: 0px;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid rgba(161, 198, 10, 0.5);
    cursor: pointer;
    border-radius: 3px;
    transition: all 300ms ease 0s;
}

.subscribe-one__form-checkbox label span::before {
    position: absolute;
    top: 2px;
    left: 3px;
    display: block;
    border-bottom: 2px solid rgba(161, 198, 10, 0.5);
    border-right: 2px solid rgba(161, 198, 10, 0.5);
    content: "";
    width: 5px;
    height: 9px;
    pointer-events: none;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out 0s;
    opacity: 0;
}

.subscribe-one__form-checkbox input[type="checkbox"]:checked+label span {
    border: 1px solid rgba(161, 198, 10, 0.5);
}

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

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

.footer-one .shape1 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 0.05;
    z-index: -1;
}

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

.footer-one .shape3 {
    position: absolute;
    top: 0px;
    right: 0px;
    opacity: 0.05;
    z-index: -1;
}

.footer-one .shape4 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    opacity: 0.05;
    z-index: -1;
}

.footer {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

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

.footer-widget__single-about {
    position: relative;
    display: block;
    max-width: 315px;
    width: 100%;
}

.footer-widget__single-about .logo-box {
    position: relative;
    display: inline-block;
    margin-bottom: 34px;
}

.footer-widget__single-about .logo-box a {
    position: relative;
    display: inline-block;
}

.footer-widget__single-about-text {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 27px;
}

.footer-widget__single-about-text p {
    color: rgb(0, 0, 0);
}

.footer-widget__single-about .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 27px;
}

.footer-widget__single-about .contact-info .icon-box {
    position: relative;
    display: block;
}

.footer-widget__single-about .contact-info .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 50px;
}

.footer-widget__single-about .contact-info .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.footer-widget__single-about .contact-info .text-box p {
    color: rgb(153, 153, 153);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-widget__single-about .contact-info .text-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}

.footer-widget__single-about .contact-info .text-box h3 a {
    color: rgb(255, 255, 255);
}

.footer-widget__single-about .contact-info .text-box h3 a:hover {
    color: var(--thm-base);
    transition: all 200ms linear 0.1s;
}

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

.footer-one__right-single .title h2 {
    color: rgb(163, 0, 6);
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
}

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

.footer-one__right-single-services-list {
    position: relative;
    display: block;
}

.footer-one__right-single-services-list li {
    position: relative;
    display: block;
    margin-bottom: 11px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.footer-one__right-single-services-list li:last-child {
    margin-bottom: 0px;
}

.footer-one__right-single-services-list li a {
    position: relative;
    display: block;
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    transition: all 200ms linear 0.1s;
}

.footer-one__right-single-services-list li a:hover {
    color: var(--thm-base);
    padding-left: 3px;
}

.footer-one__right-single-contact {
    position: relative;
    display: block;
    margin-left: 35px;
}

.footer-one__right-single-contact-box {
    position: relative;
    display: block;
}

.footer-one__right-single-contact-box p {
    color: rgb(0, 0, 0);
    margin: 0px;
    font-weight: 600;
}

.footer-one__right-single-contact-box p+p {
    margin-top: 16px;
}

.footer-one__right-single-contact-box p a {
    color: rgb(0, 0, 0);
    transition: all 200ms linear 0.1s;
}

.footer-one__right-single-contact-box p a:hover {
    color: var(--thm-base);
}

.footer-one__right-single-contact .bottom-content {
    position: relative;
    display: block;
    margin-top: 24px;
}

.footer-one__right-single-contact .bottom-content h2 {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 19px;
}

.footer-one__right-single-contact .bottom-content p {
    color: rgb(153, 153, 153);
}

.footer-one__right-single-project {
    position: relative;
    display: block;
    margin-left: -3px;
}

.footer-one__right-single-project-box {
    position: relative;
    display: block;
    margin-left: -5px;
    margin-right: -5px;
    padding-top: 6px;
    overflow: hidden;
}

.footer-one__right-single-project-box li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 5px;
    margin-bottom: 10px;
}

.footer-one__right-single-project-box li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.footer-one__right-single-project-box li .img-box::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.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

.footer-one__right-single-project-box li .img-box:hover::before {
    opacity: 1;
}

.footer-one__right-single-project-box li .img-box img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.footer-one__right-single-project-box li .img-box:hover img {
    transform: scale(1);
}

.footer-one__right-single-project-link {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: perspective(400px) translateY(20px);
    transform-origin: center top;
    transition: all 0.1s ease-in-out 0s;
    z-index: 5;
}

.footer-one__right-single-project-box li .img-box:hover .footer-one__right-single-project-link {
    opacity: 1;
    transform: perspective(400px) translateY(0px);
    transition: all 0.5s ease-in-out 0.5s;
}

.footer-one__right-single-project-link a {
    position: relative;
    display: block;
    font-size: 20px;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.footer-one__right-single-project-link a:hover {
    color: rgb(255, 255, 255);
}

.footer-one__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(135, 135, 135, 0.1);
    padding: 30px 0px;
}

.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(153, 153, 153);
    margin: 0px;
    text-transform: capitalize;
}

.footer-one__bottom .bottom-inner .copyright p a {
    color: rgb(153, 153, 153);
    transition: all 200ms linear 0.1s;
}

.footer-one__bottom .bottom-inner .copyright p a:hover {
    color: var(--thm-base);
}

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

.footer-one__bottom .bottom-inner .social-links ul {
    position: relative;
    display: block;
}

.footer-one__bottom .bottom-inner .social-links ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.footer-one__bottom .bottom-inner .social-links ul li:last-child {
    margin-right: 0px;
}

.footer-one__bottom .bottom-inner .social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 15px;
    width: 40px;
    height: 40px;
    background: rgb(163, 0, 6);
    border-radius: 10px;
    transition: all 200ms linear 0.1s;
    z-index: 1;
}

.footer-one__bottom .bottom-inner .social-links ul li a:hover {
    color: var(--thm-black);
}

.footer-one__bottom .bottom-inner .social-links ul li a::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s linear 0s;
    z-index: -1;
}

.footer-one__bottom .bottom-inner .social-links ul li a:hover::before {
    transform: scale(1);
    opacity: 1;
}

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

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

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

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

.footer-one__bottom-menu li a {
    position: relative;
    display: inline-block;
    color: rgb(153, 153, 153);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 200ms linear 0.1s;
}

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

.feature-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px 80px;
    z-index: 1;
}

.feature-two__single {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 34px 25px 32px;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #a30006;
}

.feature-two__single .shape2 {
    position: absolute;
    top: 35px;
    right: 55px;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s linear 0s;
    z-index: -1;
}

.feature-two__single:hover .shape2 {
    transform: scale(1);
    opacity: 1;
}

.feature-two__single::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 3px;
    background-color: var(--thm-base);
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
    transform-origin: right bottom;
    transform: scale(1, 0);
    z-index: -1;
}

.feature-two__single:hover::before {
    transform: scale(1, 1);
    transform-origin: center top;
}

.feature-two__single-icon {
    position: relative;
    display: block;
    margin-bottom: 25px;
    z-index: 1;
}

.feature-two__single-icon .shape1 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.feature-two__single-icon span::before {
    position: relative;
    display: inline-block;
    margin-top: 7px;
    margin-left: 25px;
    color: var(--thm-black);
    font-size: 55px;
    transition: all 500ms linear 0.1s;
    transform: scale(1);
}

.feature-two__single:hover .feature-two__single-icon span::before {
    transform: scale(0.9);
    color: #ffffff;
}

.feature-two__single-content {
    position: relative;
    display: block;
}

.feature-two__single-content h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 9px;
}

.feature-two__single-content h3 a {
    color: var(--thm-black);
}

.feature-two__single-content p {
    margin: 0px;
    transition: all 200ms linear 0.1s;
}

.feature-two__single:hover .feature-two__single-content p {
    color: #ffffff;
}

.about-two {
    position: relative;
    display: block;
    padding: 110px 0px;
    z-index: 1;
}

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

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

.about-two__img1 {
    position: relative;
    display: block;
    float: right;
    z-index: 1;
}

.about-two__img1::after {
    position: absolute;
    inset: 0px;
    background: linear-gradient(0deg, rgba(23, 29, 0, 0.2), rgba(23, 29, 0, 0.2));
    content: "";
    z-index: 1;
}

.about-two__img1 .shape1 {
    position: absolute;
    right: -30px;
    bottom: -40px;
    z-index: -1;
}

.about-two__img1::before {
    position: absolute;
    top: 0px;
    left: -30px;
    width: 10px;
    height: 175px;
    background: var(--thm-base);
    content: "";
}

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

.about-two__img1 .inner img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.about-two__img1:hover .inner img {
    transform: scale(1);
}

.about-two__img2 {
    position: absolute;
    left: 0px;
    bottom: -50px;
    overflow: hidden;
    z-index: 2;
}

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

.about-two__img2:hover::before {
    height: 100%;
    opacity: 0;
    transition: all 400ms linear 0s;
}

.about-two__img2 img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.about-two__img2:hover img {
    transform: scale(1);
}

.about-two__content {
    position: relative;
    display: block;
    padding-left: 40px;
}

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

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

.about-two__content-text p {
    font-size: 18px;
    line-height: 28px;
}

.about-two__counter {
    position: relative;
    display: block;
    margin-top: 30px;
    padding-bottom: 5px;
}

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

.about-two__counter-single h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
}

.about-two .odometer.odometer-auto-theme,
.about-two .odometer.odometer-theme-default {
    font-family: var(--thm-font-2);
    line-height: 58px;
}

.about-two__counter-single h2 .percent {
    position: relative;
    display: inline-block;
    top: 1px;
    left: -11px;
}

.about-two__counter-single h2 .k {
    position: relative;
    display: inline-block;
    left: -11px;
}

.about-two__counter-single h2 .plus {
    position: relative;
    display: inline-block;
    top: 2px;
    left: -21px;
}

.about-two__counter-single h3 {
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
}

.about-two__content-list {
    position: relative;
    display: block;
    border-top: 1px solid rgb(225, 225, 225);
    padding-top: 39px;
}

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

.about-two__content-list-single li {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

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

.about-two__content-list-single li p {
    margin: 0px;
}

.about-two__content-list-single li p span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 17px;
    font-weight: 700;
    top: 1px;
    padding-right: 3px;
}

.about-two__content-btn {
    position: relative;
    display: block;
    padding-top: 12px;
    line-height: 0;
}

.service-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px 80px;
    z-index: 1;
}

.service-two__single {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 40px 40px 37px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
}

.service-two__single::before {
    position: absolute;
    inset: 0px;
    transform: scaleX(0.8) rotateX(0deg);
    transition: all 0.4s linear 0s;
    background: var(--thm-base);
    border-radius: 5px;
    opacity: 0;
    content: "";
    z-index: -1;
}

.service-two__single:hover::before {
    transform: scaleX(1) rotateX(0deg);
    transition: all 0.4s linear 0s;
    opacity: 1;
}

.service-two__single-inner {
    position: relative;
    display: block;
    padding-left: 110px;
}

.service-two__single-icon {
    position: absolute;
    top: 0px;
    left: 0px;
}

.service-two__single-icon .shape1 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 70px;
    height: 70px;
}

.service-two__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 50px;
    margin-left: 25px;
    margin-top: 10px;
    transition: all 500ms linear 0.1s;
    transform: scale(1);
}

.service-two__single:hover .service-two__single-icon span::before {
    transform: scale(0.9);
}

.service-two__single-content {
    position: relative;
    display: block;
}

.service-two__single-content h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
}

.service-two__single-content h2 a {
    color: var(--thm-black);
}

.service-two__single-content p {
    margin: 0px;
}

.service-two__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 14px;
}

.service-two__single-content .btn-box a {
    color: var(--thm-black);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
}

.service-two__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 10px;
    font-weight: 700;
    padding-left: 1px;
    top: -1px;
    transition: all 200ms linear 0.1s;
}

.cta-one {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 67px 0px 70px;
    z-index: 1;
    margin-bottom: 100px;
}

.cta-one .shape1 {
    position: absolute;
    top: 0px;
    left: 100px;
    z-index: -1;
}

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

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

.cta-one__inner .title-box h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    text-transform: capitalize;
}

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

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

.cta-one__inner .btn-box .thm-btn::after {
    background: var(--thm-black);
}

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

.cta-one__inner .btn-box .thm-btn:hover {
    color: var(--thm-black);
}

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

.why-choose-one .shape2 {
    position: absolute;
    top: 0px;
    right: 145px;
    z-index: -1;
}

.why-choose-one::before {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 200px;
    width: 610px;
    background: var(--thm-base);
    content: "";
    z-index: -1;
}

.why-choose-one__content {
    position: relative;
    display: block;
    width: 100%;
}

.why-choose-one__content .sec-title {
    padding-bottom: 28px;
}

.why-choose-one__content-text {
    position: relative;
    display: block;
    border-bottom: 1px solid rgb(225, 225, 225);
    padding-bottom: 27px;
}

.why-choose-one__content-text p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0px;
}

.why-choose-one__content-list {
    position: relative;
    display: block;
    margin-top: 30px;
}

.why-choose-one__content-list ul {
    position: relative;
    display: block;
}

.why-choose-one__content-list ul li {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.why-choose-one__content-list ul li:last-child {
    margin-bottom: 0px;
}

.why-choose-one__content-list ul li .inner {
    position: relative;
    display: block;
    padding-left: 105px;
}

.pl-0 {
    padding-left: 0px !important;
}

.why-choose-one__content-list ul li .inner .icon-box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 70px;
    height: 70px;
    z-index: 1;
}

.why-choose-one__content-list ul li .inner .icon-box .shape1 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.why-choose-one__content-list ul li .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 50px;
    margin-top: 10px;
    margin-left: 25px;
}

.why-choose-one__content-list ul li .inner .content-box {
    position: relative;
    display: block;
}

.why-choose-one__content-list ul li .inner .content-box h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.why-choose-one__content-list ul li .inner .content-box p {
    margin: 0px;
}

.why-choose-one__img {
    position: relative;
    display: block;
}

.why-choose-one__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.why-choose-one__img .inner img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.why-choose-one__img:hover .inner img {
    transform: scale(1);
}

.projects-one {
    position: relative;
    display: block;
    background: var(--thm-black2);
    padding: 110px 0px 60px;
    z-index: 1;
}

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

.projects-one .shape2 {
    position: absolute;
    left: 90px;
    bottom: 410px;
    z-index: -1;
}

.projects-one .shape3 {
    position: absolute;
    top: 100px;
    right: 125px;
    z-index: -1;
}

.projects-one .shape3 img {
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.projects-one .shape4 {
    position: absolute;
    bottom: 290px;
    right: 0px;
    z-index: -1;
}

.projects-one .shape5 {
    position: absolute;
    bottom: 550px;
    right: 165px;
    z-index: -1;
}

.projects-one .sec-title__tagline h6 {
    color: var(--thm-base);
}

.projects-one .sec-title__tagline h6::before {
    background: rgba(255, 255, 255, 0.3);
}

.projects-one .sec-title__title {
    color: rgb(255, 255, 255);
}

.projects-one__img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.projects-one__img img {
    width: 100%;
}

.projects-one__content {
    position: relative;
    display: block;
    margin-left: -110px;
    margin-top: 34px;
    z-index: 5;
}

.projects-one__content-inner {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    overflow: hidden;
    padding: 59px 50px 110px 60px;
}

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

.projects-one__content-single .title-box {
    position: relative;
    display: block;
}

.projects-one__content-single .title-box p {
    margin: 0px;
}

.projects-one__content-single .title-box h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-top: 7px;
}

.projects-one__content-single-list {
    position: relative;
    display: block;
    margin-top: 23px;
    border-bottom: 1px solid rgb(225, 225, 225);
    padding-bottom: 32px;
}

.projects-one__content-single-list li {
    position: relative;
    display: inline-block;
    margin-right: 38px;
}

.projects-one__content-single-list li:last-child {
    margin-right: 0px;
}

.projects-one__content-single-list li p {
    margin: 0px;
}

.projects-one__content-single-list li h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    margin-top: 5px;
}

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

.projects-one__content-single .text-box p {
    margin: 0px;
}

.projects-one__content-single .btn-box {
    position: relative;
    display: block;
    margin-top: 37px;
    line-height: 0;
}

.projects-one .owl-theme .owl-nav {
    position: absolute;
    margin-top: 0px;
    bottom: 2px;
    right: 139px;
    z-index: 5;
}

.projects-one .owl-carousel .owl-nav button.owl-prev,
.projects-one .owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    border-radius: 50%;
    background-color: transparent;
    color: rgb(153, 153, 153);
    border: none;
    font-size: 35px;
    outline: none;
    transition: all 200ms linear 0.1s;
}

.projects-one .owl-carousel .owl-nav button.owl-next {
    transform: rotate(-180deg);
}

.projects-one .owl-carousel .owl-nav button.owl-prev span::before,
.projects-one .owl-carousel .owl-nav button.owl-next span::before {
    font-weight: 700;
}

.projects-one .owl-carousel .owl-nav button.owl-prev:hover,
.projects-one .owl-carousel .owl-nav button.owl-next:hover {
    color: var(--thm-gray);
}

.counter-one--two {
    position: relative;
    display: block;
    padding: 0px;
}

.counter-one--two .counter-one__inner {
    border-top: 0px solid rgb(225, 225, 225);
    padding-top: 117px;
}

.counter-one--two .counter-one__single-inner .icon-box span::before {
    color: var(--thm-base);
}

.counter-one--two .counter-one__single-inner .content-box .left-text h2 {
    color: rgb(255, 255, 255);
}

.counter-one--two .counter-one__single-inner .content-box .right-text h3 {
    color: rgb(153, 153, 153);
}

.counter-one--two .counter-one__single::before {
    background: rgba(255, 255, 255, 0.15);
}

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

.faq-one__img {
    position: relative;
    display: block;
    max-width: 565px;
    width: 100%;
}

.faq-one__img .sec-title {
    padding-bottom: 51px;
}

.faq-one__img1 {
    position: relative;
    display: block;
    z-index: 1;
}

.faq-one__img1 .shape1 {
    position: absolute;
    left: -30px;
    bottom: -40px;
    z-index: -1;
}

.faq-one__img1 .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

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

.faq-one__img1:hover .inner::before {
    width: 100%;
    opacity: 0;
    transition: all 400ms linear 0s;
}

.faq-one__img1 .inner img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.faq-one__img1:hover .inner img {
    transform: scale(1);
}

.faq-one__accordion {
    position: relative;
    display: block;
}

.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 20px;
    transition: all 500ms ease 0s;
    background: var(--thm-primary);
}

.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: all 500ms ease 0s;
    padding: 22px 30px 21px;
}

.accordion-box .block .acc-btn.active {
    padding-bottom: 19px;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-black);
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 20px;
    height: 20px;
    color: var(--thm-black);
    font-size: 20px;
    text-align: right;
    line-height: 20px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(-50%) rotate(0deg);
    transition: all 500ms ease 0s;
    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: 20px 30px 27px;
    border-top: 1px solid rgb(225, 225, 225);
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-content p {
    margin: 0px;
}

.testimonials-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 180px 0px;
    z-index: 2;
}

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

.testimonials-two__inner .sec-title {
    padding-bottom: 0px;
    margin-bottom: -138px;
    z-index: 5;
}

.testimonials-two__img-box {
    position: absolute;
    top: -36px;
    right: 0px;
    z-index: 5;
}

.testimonials-two__img-list {
    position: relative;
    display: block;
}

.testimonials-two__img-list li {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.testimonials-two__img-list li.ml85 {
    margin-left: 85px;
}

.testimonials-two__img-list li.pb20 {
    padding-bottom: 20px;
}

.testimonials-two__img-list li:last-child {
    margin-bottom: 0px;
}

.testimonials-two__img-list-single {
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-two__img-list-single img {
    width: 100%;
}

.testimonials-two__content {
    position: relative;
    display: block;
    z-index: 1;
}

.testimonials-two__content .shape1 {
    position: absolute;
    top: -52px;
    right: 155px;
    z-index: -1;
}

.testimonials-two__content-single {
    position: relative;
    display: block;
    max-width: 1115px;
    width: 100%;
}

.testimonials-two__content-single-inner {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.testimonials-two__content-single-inner .content-box {
    position: relative;
    display: block;
    max-width: 560px;
    width: 100%;
    flex: 1 1 0%;
}

.testimonials-two__content-single-inner .content-box p {
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    color: rgb(255, 255, 255);
}

.testimonials-two__content-single-inner .content-box .client-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.testimonials-two__content-single-inner .content-box .client-info .img-box {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    margin-left: 0px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-two__content-single-inner .content-box .client-info .img-box img {
    width: 100%;
}

.testimonials-two__content-single-inner .content-box .client-info .title-box {
    position: relative;
    display: block;
    margin-left: 25px;
    flex: 1 1 0%;
}

.testimonials-two__content-single-inner .content-box .client-info .title-box h3 {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 5px;
}

.testimonials-two__content-single-inner .content-box .client-info .title-box p {
    font-size: 16px;
    line-height: 26px;
    margin: 0px;
}

.testimonials-two__content-single-inner .img-box {
    position: relative;
    display: block;
    margin-left: 75px;
    z-index: 1;
}

.testimonials-two__content-single-inner .img-box .inner {
    position: relative;
    display: block;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-two__content-single-inner .img-box .inner img {
    width: 100%;
}

.testimonials-two__nav {
    position: absolute;
    display: flex;
    align-items: center;
    margin-top: 0px;
    bottom: 5px;
    z-index: 5;
    left: 318px;
}

#testimonials-two__swiper-button-next,
#testimonials-two__swiper-button-prev {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(225, 225, 225);
    font-size: 25px;
    outline: none;
    transition: all 200ms linear 0.1s;
}

#testimonials-two__swiper-button-next {
    margin-right: 30px;
}

#testimonials-two__swiper-button-prev {
    transform: rotate(-180deg);
}

#testimonials-two__swiper-button-next i::before,
#testimonials-two__swiper-button-prev i::before {
    font-weight: 400;
}

#testimonials-two__swiper-button-next:hover,
#testimonials-two__swiper-button-prev:hover {
    color: rgb(0, 0, 0);
}

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

.video-one {
    position: relative;
    display: block;
    padding: 230px 0px 224px;
    z-index: 1;
}

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

.video-one__bg::before {
    position: absolute;
    inset: 0px;
    background: linear-gradient(0deg, rgba(23, 29, 0, 0.7), rgba(23, 29, 0, 0.7));
    content: "";
    z-index: -2;
}

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

.video-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-one__icon a {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    background: var(--thm-base);
    text-align: center;
    color: var(--thm-black);
    font-size: 20px;
    transition: all 200ms linear 0.1s;
}

.video-one__icon a:hover {
    color: rgb(255, 255, 255);
    background: var(--thm-black2);
}

.video-one__icon a::before,
.video-one__icon a::after {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    box-shadow: rgba(255, 255, 255, 0.6) 0px 0px 0px 0px;
    animation: 3s ease 0s infinite normal none running ripple;
    transition: all 0.4s ease 0s;
}

.video-one__icon a::after {
    animation-delay: 0.6s;
}

.video-one__inner .title-box {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.video-one__inner .title-box p {
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
}

.brand-two {
    position: relative;
    display: block;
    padding: 110px 0px;
    z-index: 1;
}

.brand-two .swiper-slide {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    transition: all 0.5s ease 0s;
    overflow: hidden;
}

.brand-two .swiper-slide .img-box {
    position: relative;
    display: block;
    transition: all 0.3s ease 0s;
}

.brand-two .swiper-slide:hover .img-box {
    transform: translateY(-100%);
}

.brand-two .swiper-slide .img-box img {
    opacity: 1;
    width: auto;
}

.brand-two .swiper-slide .img-box2 {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease 0s;
}

.brand-two .swiper-slide:hover .img-box2 {
    transform: translateY(0px);
}

.appointment-one {
    position: relative;
    display: block;
    z-index: 1;
}

.appointment-one__inner {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 40px;
    overflow: hidden;
    z-index: 1;
}

.appointment-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 495px;
    width: 100%;
    z-index: 1;
}

.appointment-one__img::before {
    position: absolute;
    inset: 0px;
    background: linear-gradient(0deg, rgba(23, 29, 0, 0.1), rgba(23, 29, 0, 0.1));
    content: "";
    z-index: 1;
}

.appointment-one__img img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

.appointment-one__img:hover img {
    transform: scale(1);
}

.appointment-one__form {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-left: 33px;
}

.appointment-one__form .sec-title {
    padding-bottom: 23px;
}

.appointment-one__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 43px;
}

.appointment-one__form .input-box input[type="text"],
.appointment-one__form .input-box input[type="email"],
.appointment-one__form .input-box textarea {
    position: relative;
    display: block;
    background: var(--thm-primary);
    width: 100%;
    height: 55px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    padding-left: 0px;
    padding-right: 20px;
    border-radius: 0px;
    border-bottom: 1px solid rgb(225, 225, 225);
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
    outline: none;
}

.appointment-one__form .input-box textarea {
    width: 100%;
    height: 125px;
    padding-top: 15px;
    outline: none;
    resize: none;
}

.appointment-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.appointment-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.appointment-one__form form textarea::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.appointment-one__form-btn {
    position: relative;
    display: block;
    margin-top: 7px;
}

.subscribe-one--two {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.subscribe-one--two .subscribe-one__inner {
    background: rgb(255, 255, 255);
}

.subscribe-one--two .subscribe-one__content .icon-box span::before {
    color: var(--thm-base);
}

.subscribe-one--two .subscribe-one__form form input[type="text"] {
    color: var(--thm-gray);
    border-bottom: 1px solid rgb(225, 225, 225);
}

.subscribe-one--two .subscribe-one__form-checkbox input[type="checkbox"]:checked+label span {
    border: 1px solid var(--thm-gray);
}

.subscribe-one--two .subscribe-one__form-checkbox label span::before {
    border-bottom: 2px solid rgba(var(--thm-gray-rgb), 0.5);
    border-right: 2px solid rgba(var(--thm-gray-rgb), 0.5);
}

.footer-one--two {
    position: relative;
    display: block;
    padding: 110px 0px 0px;
    background: transparent;
    z-index: 1;
}

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

.footer-one--two__bg::before {
    position: absolute;
    inset: 0px;
    background: rgba(var(--thm-black2-rgb), 0.97);
    content: "";
    z-index: -2;
}

.footer-one--two .footer {
    overflow: hidden;
}

.subscribe-one--two {
    padding-bottom: 100px;
}

.footer-one--two .footer-widget__single-about {
    max-width: 550px;
    width: 100%;
}

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

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

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

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

.footer-widget__single-about .social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 200ms linear 0.1s;
    z-index: 1;
}

.footer-widget__single-about .social-links ul li a:hover {
    color: var(--thm-black);
}

.footer-widget__single-about .social-links ul li a::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--thm-base);
    border-radius: 2px;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s linear 0s;
    z-index: -1;
}

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

.footer-widget__single-about-menu {
    position: relative;
    display: block;
    margin-top: 39px;
}

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

.footer-widget__single-about-menu ul li {
    position: relative;
    display: inline-block;
    margin-right: 0px;
    padding-right: 5px;
}

.footer-widget__single-about-menu ul li::before {
    position: absolute;
    top: 6px;
    right: 0px;
    bottom: 6px;
    width: 1px;
    background: rgb(153, 153, 153);
    content: "";
}

.footer-widget__single-about-menu ul li:last-child::before {
    display: none;
}

.footer-widget__single-about-menu ul li a {
    position: relative;
    display: block;
    color: rgb(153, 153, 153);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    transition: all 200ms linear 0.1s;
}

.footer-widget__single-about-menu ul li a:hover {
    color: var(--thm-base);
}

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

.footer-one__right-single-post-single {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.footer-one__right-single-post-single.mb0 {
    margin-bottom: 0px;
}

.footer-one__right-single-post-single span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 10px;
}

.footer-one__right-single-post-single p {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin: 0px;
}

.footer-one__right-single-post-single p a {
    color: rgb(153, 153, 153);
    transition: all 200ms linear 0.1s;
}

.footer-one__right-single-post-single p a:hover {
    color: var(--thm-base);
}

.footer-one--two .footer-one__right-single-services {
    margin-left: -25px;
}

.footer-one--two .footer-one__right-single-post {
    margin-left: -20px;
}

.footer-one--two .footer-one__right-single-contact {
    margin-left: -25px;
}

.feature-three {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px 80px;
    z-index: 1;
}

.feature-three__single {
    position: relative;
    display: block;
    background: var(--thm-black2);
    padding: 37px 40px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
}

.feature-three__single-icon {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 120px;
    height: 110px;
    z-index: 1;
}

.feature-three__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 70px;
    top: -5px;
    transition: all 500ms ease 0s;
}

.feature-three__single:hover .feature-three__single-icon span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.feature-three__single-content {
    position: relative;
    display: block;
    max-width: 240px;
    width: 100%;
}

.feature-three__single-content h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.feature-three__single-content h3 a {
    color: rgb(255, 255, 255);
}

.feature-three__single-content p {
    color: rgb(153, 153, 153);
}

.about-three {
    position: relative;
    display: block;
    padding: 40px 0px 110px;
    z-index: 1;
}

.about-three::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 245px;
    width: 655px;
    background: rgb(245, 246, 240);
    content: "";
    z-index: -1;
}

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

.about-three__img::before {
    position: absolute;
    top: -30px;
    right: 0px;
    width: 330px;
    height: 10px;
    background: var(--thm-base);
    content: "";
    z-index: 1;
}

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

.about-three__img-inner img {
    width: 100%;
}

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

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

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

.about-three__content-text p {
    font-size: 18px;
    line-height: 28px;
}

.about-three__content-text2 {
    position: relative;
    display: block;
    background: var(--thm-black2);
    border-radius: 10px;
    overflow: hidden;
    padding: 43px 40px 41px;
    margin-top: 32px;
    z-index: 1;
}

.about-three__content-text2 .icon-box {
    position: absolute;
    bottom: 25px;
    right: 35px;
    z-index: -1;
}

.about-three__content-text2 .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgba(238, 238, 238, 0.2);
    font-size: 85px;
}

.about-three__content-text2 h3 {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
}

.about-three__content-list {
    position: relative;
    display: block;
    margin-top: 34px;
}

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

.about-three__content-list-single.style2 {
    margin-left: -10px;
}

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

.about-three__content-list-single ul li {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

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

.about-three__content-list-single ul li p {
    margin: 0px;
}

.about-three__content-list-single ul li p span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 17px;
    font-weight: 700;
    padding-right: 3px;
    top: 1px;
}

.about-three__btn {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 7px;
}

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

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

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

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

.service-three__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.service-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-black2-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
}

.service-three__single:hover .service-three__single-img .inner::before {
    opacity: 1;
}

.service-three__single-img .inner img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

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

.service-three__single-content {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 30px 30px 29px;
    margin-top: -115px;
    margin-left: 90px;
    z-index: 5;
}

.service-three__single-content .top-content {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-three__single-content .top-content .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 70px;
    height: 70px;
}

.service-three__single-content .top-content .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    margin-right: -40px;
    font-size: 50px;
}

.service-three__single-content .top-content .title-box {
    position: relative;
    display: block;
}

.service-three__single-content .top-content .title-box h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    font-family: var(--thm-font);
}

.service-three__single-content .top-content .title-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear 0.1s;
}

.service-three__single-content .top-content .title-box h2 a:hover {
    color: var(--thm-base);
}

.service-three__single-content .text-box {
    position: relative;
    display: block;
    border-bottom: 1px solid rgb(225, 225, 225);
    padding-bottom: 17px;
}

.service-three__single-content .text-box p {
    margin: 0px;
}

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

.service-three__single-content .btn-box a {
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    transition: all 200ms linear 0.1s;
}

.service-three__single-content .btn-box a:hover {
    color: var(--thm-base);
}

.service-three__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    top: 0px;
}

.service-three .owl-theme .owl-nav {
    position: absolute;
    top: 33%;
    left: 0%;
    right: 0px;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    transform: translateY(-50%);
    z-index: 5;
}

.service-three .owl-carousel .owl-nav button.owl-prev,
.service-three .owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(153, 153, 153, 0.1) 0px 2px 4px;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    opacity: 1;
    margin: 0px;
    transition: all 500ms ease 0s;
    z-index: 100;
}

.service-three .owl-carousel .owl-nav button.owl-prev:hover,
.service-three .owl-carousel .owl-nav button.owl-next:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.service-three .owl-carousel .owl-nav button.owl-prev {
    float: left;
    left: -120px;
}

.service-three .owl-carousel .owl-nav button.owl-next {
    float: right;
    transform: rotate(180deg);
    right: -120px;
}

.appointment-two {
    position: relative;
    display: block;
    background: rgb(163, 0, 6);
    padding: 110px 0px 0px;
    z-index: 1;
}

.appointment-two .sec-title {
    z-index: 5;
}

.appointment-two .shape1 {
    position: absolute;
    top: 115px;
    left: 110px;
    opacity: 0.2;
    z-index: -1;
}

.appointment-two .shape2 {
    position: absolute;
    left: 110px;
    bottom: 150px;
    opacity: 0.2;
    z-index: -1;
}

.appointment-two .shape2 img {
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.appointment-two .shape3 {
    position: absolute;
    top: 100px;
    left: 54%;
    opacity: 0.3;
    z-index: -1;
}

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

.appointment-two .sec-title__tagline h6 {
    color: rgb(255, 255, 255);
}

.appointment-two .sec-title__tagline h6::before {
    background: rgba(255, 255, 255, 0.3);
}

.appointment-two .sec-title__title {
    color: rgb(255, 255, 255);
}

.appointment-two__inner {
    position: relative;
    display: block;
    max-width: 900px;
    width: 100%;
    background: rgb(155, 0, 6);
    padding: 60px;
    z-index: 1;
}

.appointment-two__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.appointment-two__form .input-box input[type="text"],
.appointment-two__form .input-box input[type="email"],
.appointment-two__form .input-box input[type="tel"],
.appointment-two__form .input-box textarea {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    width: 100%;
    height: 60px;
    border: none;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    padding-left: 25px;
    padding-right: 20px;
    border-radius: 30px;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
    outline: none;
}

.appointment-two__form .input-box textarea {
    width: 100%;
    height: 150px;
    padding-top: 18px;
    outline: none;
    resize: none;
}

.appointment-two__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-black);
}

.appointment-two__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-black);
}

.appointment-two__form form textarea::-webkit-input-placeholder {
    color: var(--thm-black);
}

.contact-two__form-btn {
    position: relative;
    display: block;
    margin-right: 20px;
}

.contact-two__form-btn .thm-btn {
    color: rgb(255, 255, 255);
}

.contact-two__form-btn .thm-btn:hover {
    color: var(--thm-black);
}

.contact-two__form-btn .thm-btn::after {
    background: var(--thm-black);
}

.contact-two__form-btn .thm-btn::before {
    background: rgb(255, 255, 255);
}

.contact-two__form-bottom {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-two__form-bottom .contact-info {
    position: relative;
    display: block;
    padding-left: 20px;
}

.contact-two__form-bottom .contact-info::before {
    position: absolute;
    top: 7px;
    left: 0px;
    bottom: 7px;
    width: 1px;
    background: rgba(161, 198, 10, 0.5);
    content: "";
}

.contact-two__form-bottom .contact-info p {
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
}

.contact-two__form-bottom .contact-info h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    margin-top: 3px;
}

.contact-two__form-bottom .contact-info h3 a {
    color: rgb(255, 255, 255);
}

.price-two {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 110px 0px 80px;
    z-index: 1;
}

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

.price-two__single {
    position: relative;
    display: block;
    background: var(--thm-primary);
    border: 20px solid rgb(255, 255, 255);
    padding: 40px;
    margin-bottom: 30px;
    z-index: 1;
}

.price-two__single::after {
    position: absolute;
    inset: -20px;
    border: 20px solid var(--thm-black);
    transform: scaleX(0.8) rotateX(0deg);
    transition: all 0.4s linear 0s;
    opacity: 0;
    content: "";
}

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

.price-two__single::before {
    position: absolute;
    inset: 0px;
    transform: scaleX(0.8) rotateX(0deg);
    transition: all 0.4s linear 0s;
    background: var(--thm-base);
    border-radius: 0px;
    opacity: 0;
    content: "";
    z-index: -1;
}

.price-two__single:hover::before {
    transform: scaleX(1) rotateX(0deg);
    transition: all 0.4s linear 0s;
    opacity: 1;
}

.price-two__single-inner {
    position: relative;
    display: block;
}

.price-two__single-inner .table-header {
    position: relative;
    display: block;
    border-bottom: 1px solid rgb(225, 225, 225);
    padding-bottom: 22px;
    transition: all 200ms linear 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-header {
    border-color: rgb(161, 198, 10);
}

.price-two__single-inner .table-header .title-box {
    position: relative;
    display: inline-block;
    background: var(--thm-base);
    padding: 2px 15px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 9px;
    transition: all 200ms linear 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-header .title-box {
    background: var(--thm-black);
}

.price-two__single-inner .table-header .title-box span {
    color: var(--thm-black);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    transition: all 200ms linear 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-header .title-box span {
    color: rgb(255, 255, 255);
}

.price-two__single-inner .table-header h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
}

.price-two__single-inner .table-header p {
    color: rgb(153, 153, 153);
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 6px;
    transition: all 200ms linear 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-header p {
    color: rgba(var(--thm-black-rgb), 0.8);
}

.price-two__single-inner .table-content {
    position: relative;
    display: block;
    margin-top: 23px;
}

.price-two__single-inner .table-content ul {
    position: relative;
    display: block;
}

.price-two__single-inner .table-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.price-two__single-inner .table-content ul li:last-child {
    margin-bottom: 0px;
}

.price-two__single-inner .table-content ul li .icon-box {
    position: relative;
    display: block;
}

.price-two__single-inner .table-content ul li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 700;
    transition: all 200ms linear 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-content ul li .icon-box span::before {
    color: rgba(var(--thm-black-rgb), 0.8);
}

.price-two__single-inner .table-content ul li .text-box {
    position: relative;
    display: block;
    margin-left: 7px;
}

.price-two__single-inner .table-content ul li .text-box p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    transition: all 200ms linear 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-content ul li .text-box p {
    color: rgba(var(--thm-black-rgb), 0.8);
}

.price-two__single-inner .table-footer {
    position: relative;
    display: block;
    margin-top: 32px;
}

.price-two__single-inner .table-footer .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.price-two__single-inner .table-footer .btn-box .thm-btn {
    color: rgb(255, 255, 255);
}

.price-two__single-inner .table-footer .btn-box .thm-btn:hover {
    color: var(--thm-black);
}

.price-two__single-inner .table-footer .btn-box .thm-btn::before {
    background: rgb(255, 255, 255);
}

.price-two__single-inner .table-footer .btn-box .thm-btn::after {
    background: var(--thm-black);
}

.why-choose-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px;
    z-index: 1;
}

.why-choose-two__img {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

.why-choose-two__img1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    float: left;
    z-index: 1;
}

.why-choose-two__img1 img {
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.why-choose-two__img1:hover img {
    transform: scale(1.1);
}

.why-choose-two__img1::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.why-choose-two__img1:hover::before {
    animation: 0.75s ease 0s 1 normal none running circle;
}

.why-choose-two__img2 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    float: left;
    margin-left: 10px;
    z-index: 1;
}

.why-choose-two__img2::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.why-choose-two__img2:hover::before {
    animation: 0.75s ease 0s 1 normal none running circle;
}

.why-choose-two__img2 img {
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.why-choose-two__img2:hover img {
    transform: scale(1.1);
}

.why-choose-two__content {
    position: relative;
    display: block;
    max-width: 530px;
    width: 100%;
}

.why-choose-two__content .sec-title {
    padding-bottom: 38px;
}

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

.why-choose-two__content-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.why-choose-two__progress {
    position: relative;
    display: block;
    margin-top: 42px;
}

.why-choose-two__progress-single {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.why-choose-two__progress-single .progress-box {
    position: relative;
    display: block;
    line-height: 0;
}

.why-choose-two__progress-single .progress-box .graph-outer {
    position: relative;
    display: inline-block;
    text-align: center;
    z-index: 1;
}

.why-choose-two__progress-single .progress-box .graph-outer .count-box {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    transform: translateY(-50%);
}

.why-choose-two__progress-single .progress-box .graph-outer .count-text {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--thm-font-2);
}

.why-choose-two__progress-single .progress-box .graph-outer .count-Parsent {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 22px;
    font-weight: 700;
}

.why-choose-two__progress-single .title-box {
    position: relative;
    display: block;
    padding-left: 20px;
}

.why-choose-two__progress-single .title-box h2 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.why-choose-two__content-text2 {
    position: relative;
    display: block;
    padding-top: 9px;
}

.why-choose-two__content-text2 p {
    margin: 0px;
}

.why-choose-two__content-btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 42px;
}

.why-choose-two__content-btn .thm-btn {
    color: rgb(255, 255, 255);
}

.why-choose-two__content-btn .thm-btn:hover {
    color: var(--thm-black);
}

.why-choose-two__content-btn .thm-btn::before {
    background: var(--thm-base);
}

.why-choose-two__content-btn .thm-btn::after {
    background: var(--thm-black);
}

.projects-two {
    position: relative;
    display: block;
    padding: 110px 0px;
    z-index: 1;
}

.projects-two .sec-title__tagline h6 {
    color: var(--thm-base);
}

.projects-two .sec-title__tagline h6::before {
    background: rgba(255, 255, 255, 0.3);
}

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

.projects-two .sec-title__title {
    color: rgb(163, 0, 6);
}

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

.projects-two__single {
    position: relative;
    display: block;
}

.projects-two__single-inner {
    position: relative;
    display: block;
}

.projects-two__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.projects-two__single-img img {
    width: 100%;
    transform: scale(1);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

.projects-two__single:hover .projects-two__single-img img {
    transform: scale(1.2) rotate(1deg);
}

.projects-two__single-img::before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    right: 0px;
    height: 50%;
    background: rgb(255, 255, 255);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    opacity: 1;
    transform-origin: center top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}

.projects-two__single:hover .projects-two__single-img::before {
    opacity: 0.3;
    transform: scaleY(1);
}

.projects-two__single-img::after {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 50%;
    background: rgb(255, 255, 255);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    opacity: 1;
    transform-origin: center bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}

.projects-two__single:hover .projects-two__single-img::after {
    opacity: 0.3;
    transform: scaleY(1);
}

.projects-two__link {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    transform-style: preserve-3d;
    transform: scale(0);
    transition: all 700ms ease 200ms;
    z-index: 5;
}

.projects-two__single:hover .projects-two__link {
    opacity: 1;
    transform: scale(1);
    transition: all 600ms ease 700ms;
}

.projects-two__link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--thm-base);
    border-radius: 50%;
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    text-align: center;
    transition: all 0.4s ease-in-out 0s;
}

.projects-two__link a:hover {
    background: var(--thm-black);
    color: rgb(255, 255, 255);
}

.cta-one--two {
    position: relative;
    display: block;
    background: transparent;
    padding: 0px;
}

.cta-one--two .cta-one__inner {
    position: relative;
    background: var(--thm-base);
    padding: 89px 80px 85px;
    margin-top: -133px;
    z-index: 5;
}

.cta-one--two .cta-one__inner .shape2 {
    position: absolute;
    top: 0px;
    left: 110px;
    z-index: -1;
}

.faq-one--two {
    position: relative;
    display: block;
    padding-bottom: 110px;
    background: rgb(255, 255, 255);
}

.faq-one--two .accordion-box .block {
    background: transparent;
    border: 1px solid rgb(225, 225, 225);
}

.faq-one--two .accordion-box .block .acc-btn .icon-outer {
    color: var(--thm-gray);
}

.faq-one--two .faq-one__img .sec-title {
    padding-bottom: 61px;
}

.testimonials-three {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 110px 0px;
    z-index: 1;
}

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

.testimonials-three__inner {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-three__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 365px;
    height: 365px;
    border: 35px solid rgb(255, 255, 255);
    background: var(--thm-base);
    border-radius: 50%;
}

.testimonials-three__icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 145px;
}

.testimonials-three__content {
    position: relative;
    display: block;
    max-width: 795px;
    width: 100%;
    margin-left: 50px;
    overflow: hidden;
    flex: 1 1 0%;
}

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

.testimonials-three__single {
    position: relative;
    display: block;
    max-width: 795px;
    width: 100%;
}

.testimonials-three__single .client-info {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-three__single .client-info .img-box {
    position: relative;
    display: block;
    width: 80px;
}

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

.testimonials-three__single .client-info .title-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.testimonials-three__single .client-info .title-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.testimonials-three__single .client-info .title-box p {
    text-transform: capitalize;
    margin: 0px;
}

.testimonials-three__single .text-box {
    position: relative;
    display: block;
    margin-top: 31px;
}

.testimonials-three__single .text-box h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    font-family: var(--thm-font);
}

.testimonials-three__single .rating-box {
    position: relative;
    display: block;
    margin-top: 32px;
}

.testimonials-three__single .rating-box ul li span {
    color: rgb(255, 168, 24);
}

.testimonials-three__carousel.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
    position: absolute;
    left: 344px;
    top: 27px;
}

.testimonials-three__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(225, 225, 225);
    margin: 0px 5px;
    padding: 0px;
    transition: all 100ms linear 0.1s;
}

.testimonials-three__carousel.owl-carousel .owl-dot.active {
    background-color: rgb(153, 153, 153);
}

.testimonials-three__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

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

.blog-two {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px 72px;
    z-index: 1;
}

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

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

.blog-two__single-img .overlay-text {
    position: absolute;
    left: 10px;
    bottom: -15px;
    z-index: 5;
}

.blog-two__single-img .overlay-text span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    background: var(--thm-base);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    padding: 5px 20px 4px;
}

.blog-two__single-img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.blog-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(var(--thm-black2-rgb), 0.4);
    opacity: 0;
    z-index: 1;
    content: "";
}

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

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

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

.blog-two__single-content {
    position: relative;
    display: block;
    padding: 35px 0px 0px 10px;
}

.blog-two__single-content p {
    color: var(--thm-black);
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.blog-two__single-content p span {
    color: var(--thm-gray);
}

.blog-two__single-content h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    font-family: var(--thm-font);
    margin-bottom: 17px;
}

.blog-two__single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear 0.1s;
}

.blog-two__single-content h2 a:hover {
    color: var(--thm-base);
}

.blog-two__single-content .btn-box {
    position: relative;
    display: block;
    border-top: 1px solid rgb(225, 225, 225);
    padding-top: 17px;
}

.blog-two__single-content .btn-box a {
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    transition: all 200ms linear 0.1s;
}

.blog-two__single-content .btn-box a:hover {
    color: var(--thm-base);
}

.blog-two__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
}

.footer-one--three {
    position: relative;
    display: block;
    padding: 0px;
    z-index: 1;
}

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

.footer-one--three .shape5 {
    position: absolute;
    top: 80px;
    left: 100px;
    opacity: 0.2;
    z-index: -1;
}

.footer-one--three .shape6 {
    position: absolute;
    right: 110px;
    bottom: 245px;
    opacity: 0.2;
    z-index: -1;
}

.footer-one--three .brand-one {
    padding: 65px 0px 63px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.footer-one--three .footer {
    padding-top: 110px;
}

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

.team-one--about.team-one .sec-title__tagline h6 {
    color: var(--thm-black);
}

.team-one--about.team-one .sec-title__title {
    color: var(--thm-black);
}

.team-one--about.team-one .sec-title__tagline h6::before {
    background: var(--thm-base);
}

.team-one--about .team-one__single-content h2 a {
    color: var(--thm-black);
}

.team-one--about .team-one__single-content h2 a:hover {
    color: var(--thm-base);
}

.team-one--about .team-one__single-content p {
    color: var(--thm-gray);
}

.working-process-one {
    position: relative;
    display: block;
    background: var(--thm-black2);
    padding: 110px 0px 80px;
    z-index: 1;
}

.working-process-one .shape2 {
    position: absolute;
    top: 90px;
    left: 110px;
    opacity: 0.3;
    z-index: -1;
}

.working-process-one .shape3 {
    position: absolute;
    left: 120px;
    bottom: 115px;
    opacity: 0.3;
    z-index: -1;
}

.working-process-one .shape3 img {
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.working-process-one .shape4 {
    position: absolute;
    top: 100px;
    right: 110px;
    opacity: 0.3;
    z-index: -1;
}

.working-process-one .shape5 {
    position: absolute;
    right: 90px;
    bottom: 110px;
    opacity: 0.3;
    z-index: -1;
}

.working-process-one__pattern {
    position: absolute;
    inset: 50px 0px 0px;
    opacity: 0.08;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.working-process-one .sec-title__tagline h6 {
    color: var(--thm-base);
}

.working-process-one .sec-title__tagline h6::before {
    background: rgba(255, 255, 255, 0.3);
}

.working-process-one .sec-title__title {
    color: rgb(255, 255, 255);
}

.working-process-one__single {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 35px 20px 32px;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}

.working-process-one__single.mt30 {
    margin-top: 30px;
}

.working-process-one__single .number-box {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(228, 230, 223);
    font-weight: 600;
    font-size: 80px;
    line-height: 90px;
    font-family: var(--thm-font-2);
    z-index: -1;
}

.working-process-one__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 70px;
    height: 70px;
    margin: 0px auto;
    z-index: 1;
}

.working-process-one__single-icon span::before {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    color: var(--thm-black);
    font-size: 50px;
    transition: all 500ms linear 0.1s;
    transform: scale(1);
    margin-right: -35px;
}

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

.working-process-one__single-content {
    position: relative;
    display: block;
}

.working-process-one__single-content h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    margin-top: 27px;
    margin-bottom: 9px;
}

.working-process-one__single-content h3 a {
    color: var(--thm-black);
    transition: all 200ms linear 0.1s;
}

.working-process-one__single-content h3 a:hover {
    color: var(--thm-black);
}

.working-process-one__single-content p {
    margin: 0px;
}

.testimonials-two--about {
    position: relative;
    display: block;
}

.brand-two--about {
    position: relative;
    display: block;
    background: var(--thm-primary);
    z-index: 1;
}

.brand-two--about__pattern {
    position: absolute;
    inset: 0px;
    opacity: 0.25;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.services-one--services {
    position: relative;
    display: block;
    padding-top: 0px;
}

.appointment-one--services {
    position: relative;
    display: block;
    margin-top: 110px;
}

.service-details {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px;
    z-index: 1;
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__sidebar-single {
    position: relative;
    display: block;
}

.service-details__sidebar-single+.service-details__sidebar-single {
    margin-top: 30px;
}

.service-details__sidebar-services {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 42px 40px 50px;
    z-index: 1;
}

.service-details__sidebar-services-pattern {
    position: absolute;
    inset: 0px;
    opacity: 0.3;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.service-details__sidebar-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.service-details__sidebar-single .title-box h2 {
    position: relative;
    display: inline-block;
    padding-left: 7px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    z-index: 1;
}

.service-details__sidebar-single .title-box h2::before {
    position: absolute;
    top: 3px;
    left: 0px;
    width: 25px;
    height: 25px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.service-details__sidebar-services-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-details__sidebar-services-box li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.service-details__sidebar-services-box li:last-child {
    margin-bottom: 0px;
}

.service-details__sidebar-services-box li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--thm-gray);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    background: rgb(255, 255, 255);
    padding: 8px 10px 8px 20px;
    font-family: var(--thm-font);
    transition: all 200ms linear 0.1s;
    z-index: 1;
}

.service-details__sidebar-services-box li a:hover,
.service-details__sidebar-services-box li a.active {
    color: var(--thm-black);
}

.service-details__sidebar-services-box li a::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 0px;
    background-color: var(--thm-base);
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
    transform-origin: right bottom;
    transform: scale(1, 0);
    z-index: -1;
}

.service-details__sidebar-services-box li a:hover::before,
.service-details__sidebar-services-box li a.active::before {
    transform: scale(1, 1);
    transform-origin: center top;
}

.service-details__sidebar-services-box li a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 700;
    transition: all 200ms linear 0.1s;
    z-index: 1;
}

.service-details__sidebar-services-box li a:hover span,
.service-details__sidebar-services-box li a.active span {
    color: var(--thm-base);
}

.service-details__sidebar-services-box li a span::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 0px;
    background-color: var(--thm-black);
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
    transform-origin: right top;
    transform: scale(1, 0);
    z-index: -1;
}

.service-details__sidebar-services-box li a:hover span::after,
.service-details__sidebar-services-box li a.active span::after {
    transform: scale(1, 1);
    transform-origin: center bottom;
}

.service-details__sidebar-contact {
    position: relative;
    display: block;
    z-index: 1;
}

.service-details__sidebar-contact-box {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 60px 10px;
    z-index: 1;
}

.service-details__sidebar-contact-pattern {
    position: absolute;
    inset: 0px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.service-details__sidebar-contact-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0px auto 30px;
}

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

.service-details__sidebar-contact-box h2 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    text-transform: capitalize;
}

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

.service-details__sidebar-contact-box .btn-box .thm-btn {
    color: rgb(255, 255, 255);
}

.service-details__sidebar-contact-box .btn-box .thm-btn:hover {
    color: var(--thm-black);
}

.service-details__sidebar-contact-box .btn-box .thm-btn::after {
    background: var(--thm-black);
}

.service-details__sidebar-contact-box .btn-box .thm-btn::before {
    background: rgb(255, 255, 255);
}

.service-details__content {
    position: relative;
    display: block;
}

.service-details__content-img1 {
    position: relative;
    display: block;
}

.service-details__content-img1 img {
    width: 100%;
}

.service-details__content .text-box1 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.service-details__content .text-box1 h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.service-details__content .text-box1 .text1 {
    margin-bottom: 23px;
}

.service-details__content .text-box1 .text2 {
    margin: 0px;
}

.service-details__content .text-box2 {
    position: relative;
    display: block;
    margin-top: 27px;
}

.service-details__content .text-box2 .title-box {
    position: relative;
    display: block;
}

.service-details__content .text-box2 .title-box h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
}

.service-details__content .text-box2 .working-process-one__single {
    background: transparent;
    padding: 35px 0px 2px;
    margin-bottom: 30px;
    border-radius: 0px;
}

.service-details__content .text-box3 {
    position: relative;
    display: block;
}

.service-details__content .text-box3 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.service-details__content .text-box3 p {
    margin: 0px;
}

.service-details__content-img2 {
    position: relative;
    display: block;
    margin-top: 37px;
}

.service-details__content-img2 .single-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.service-details__content-img2 .single-box .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-details__content-img2 .single-box .img-box img {
    width: 100%;
}

.service-details__content .text-box4 {
    position: relative;
    display: block;
    padding-top: 9px;
}

.service-details__content .text-box4 .text1 {
    margin: 0px 0px 27px;
}

.service-details__content .text-box4 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.service-details__content .text-box4 .text2 {
    margin: 0px;
}

.service-details__content .text-box5 {
    position: relative;
    display: block;
    margin-top: 37px;
}

.service-details__content .text-box5 .img-box {
    position: relative;
    display: block;
}

.service-details__content .text-box5 .img-box img {
    width: 100%;
}

.service-details__content .text-box5 .content-box {
    position: relative;
    display: block;
    margin-top: 8px;
}

.service-details__content .text-box5 .content-box ul {
    position: relative;
    display: block;
}

.service-details__content .text-box5 .content-box ul li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.service-details__content .text-box5 .content-box ul li:last-child {
    margin-bottom: 0px;
}

.service-details__content .text-box5 .content-box ul li p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.service-details__content .text-box5 .content-box ul li p span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 700;
    padding-right: 3px;
}

.service-details__content .text-box6 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.service-details__content .text-box6 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.service-details__content .text-box6 p {
    margin: 0px;
}

.service-details__content .text-box6 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 37px;
}

.service-details__content .text-box6 .img-box img {
    width: 100%;
}

.counter-one--two.style3 {
    position: relative;
    display: block;
    background: var(--thm-black2);
    z-index: 1;
}

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

.counter-one--two.style3 .counter-one__inner {
    border-top: 0px solid rgb(225, 225, 225);
    padding-top: 117px;
    padding-bottom: 60px;
}

.project-three {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 102px 0px 40px;
    z-index: 1;
}

.project-three__menu-box {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 47px;
}

.project-three__menu-box .project-filter {
    position: relative;
    display: block;
    z-index: 1;
}

.project-three__menu-box .project-filter li {
    position: relative;
    display: inline-block;
    margin-right: 40px;
}

.project-three__menu-box .project-filter li:last-child {
    margin-right: 0px;
}

.project-three__menu-box .project-filter li .filter-text {
    position: relative;
    display: block;
    padding-left: 5px;
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease 0s;
    font-family: var(--thm-font);
    z-index: 1;
}

.project-three__menu-box .project-filter li .filter-text::before {
    position: absolute;
    top: 2px;
    left: 0px;
    width: 15px;
    height: 15px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0);
    transition: all 200ms ease 0s;
    z-index: -1;
}

.project-three__menu-box .project-filter li:hover .filter-text::before,
.project-three__menu-box .project-filter li.active .filter-text::before {
    transform: scale(1);
    opacity: 1;
    transition-delay: 200ms;
}

.project-three__menu-box .project-filter li:hover .filter-text,
.project-three__menu-box .project-filter li.active .filter-text {
    color: var(--thm-black);
}

.project-three__menu-box .project-filter li .count {
    display: none;
}

.project-three__single {
    position: relative;
    display: block;
    margin-bottom: 59px;
}

.project-three__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.project-three__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-black2-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
}

.project-three__single:hover .project-three__single-img::before {
    opacity: 0.6;
}

.project-three__single-img img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

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

.project-three__single-content {
    position: relative;
    display: block;
    margin-top: 19px;
}

.project-three__single-content p {
    margin: 0px;
}

.project-three__single-content h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    margin-top: 7px;
    z-index: 1;
}

.project-three__single-content h2 a {
    color: var(--thm-black);
}

.project-three__single-content h2 a span {
    position: relative;
    display: inline-block;
}

.project-three__single-content h2 a span::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 6px;
    right: 0px;
    height: 2px;
    background: var(--thm-black);
    z-index: -1;
    transform: scale(0, 1);
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
    transform-origin: right center;
}

.project-three__single .project-three__single-content h2 a:hover span::before {
    transform: scale(1, 1);
    transform-origin: left center;
}

.case-details {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px 37px;
    z-index: 1;
}

.case-details__text-box1 {
    position: relative;
    display: block;
}

.case-details__text-box1 .sec-title {
    padding-bottom: 28px;
}

.case-details__text-box1 p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.case-details__img-box1 {
    position: relative;
    display: block;
    margin-top: 37px;
}

.case-details__img-box1 .single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.case-details__img-box1 .single-img img {
    width: 100%;
}

.case-details__text-box2 {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 30px 60px 28px;
    margin-top: 30px;
}

.case-details__text-box2 ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.case-details__text-box2 ul li {
    position: relative;
    display: inline-block;
    padding-right: 55px;
    margin-left: 55px;
}

.case-details__text-box2 ul li:first-child {
    margin-left: 0px;
}

.case-details__text-box2 ul li:last-child {
    padding-right: 0px;
}

.case-details__text-box2 ul li::before {
    position: absolute;
    top: -10px;
    right: 0px;
    bottom: -8px;
    width: 1px;
    background: rgb(161, 198, 10);
    opacity: 0.7;
    content: "";
}

.case-details__text-box2 ul li:last-child::before {
    display: none;
}

.case-details__text-box2 ul li p {
    color: var(--thm-black);
    margin: 0px 0px 7px;
}

.case-details__text-box2 ul li h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
}

.case-details__text-box3 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.case-details__text-box3 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 23px;
}

.case-details__text-box3 .text1 {
    margin-bottom: 28px;
}

.case-details__text-box3 .text2 {
    margin: 0px;
}

.case-details__text-box4 {
    position: relative;
    display: block;
    margin-top: 37px;
}

.case-details__text-box4-left {
    position: relative;
    display: block;
}

.case-details__text-box4-left .title-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.case-details__text-box4-left .title-box h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
}

.case-details__text-box4-right {
    position: relative;
    display: block;
}

.case-details__text-box4-right .text-box {
    position: relative;
    display: block;
}

.case-details__text-box4-right .text-box h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 19px;
}

.case-details__text-box4-right .text-box .text1 {
    margin: 0px;
}

.case-details__text-box4-right .text-box .text2 {
    margin-top: 21px;
}

.case-details__text-box4-right .img-box {
    position: relative;
    display: block;
    margin-top: 27px;
}

.case-details__text-box4-right .img-box img {
    width: 100%;
}

.case-details__text-box5 {
    position: relative;
    display: block;
    padding-top: 10px;
}

.case-details__text-box5 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.case-details__text-box5 p {
    margin: 0px;
}

.cta-one--two.style3 {
    position: relative;
    display: block;
}

.cta-one--two.style3 .cta-one__inner {
    margin-top: 0px;
}

.project-three--case {
    position: relative;
    display: block;
    padding: 110px 0px 40px;
}

.faq-one--pricing {
    position: relative;
    display: block;
    padding: 110px 0px;
}

.faq-one--pricing .border-top {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 1px;
    width: 1320px;
    background: rgb(225, 225, 225);
    margin: 0px auto;
}

.faq-page {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 104px 0px 110px;
    z-index: 1;
}

.faq-page__search {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.faq-page__search .title-box {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.faq-page__search .title-box h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
}

.faq-page__search-form {
    position: relative;
    display: block;
}

.faq-page__search-form input[type="search"] {
    display: block;
    outline: none;
    background-color: rgb(255, 255, 255);
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    padding-left: 30px;
    height: 80px;
    width: 100%;
    padding-right: 85px;
    border-radius: 3px;
    border: 1px solid rgb(225, 225, 225);
}

.faq-page__search-form::-webkit-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.faq-page__search-form::placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.faq-page__search-form button[type="submit"] {
    background-color: var(--thm-base);
    color: var(--thm-black);
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 70px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-radius: 3px;
    transition: all 500ms ease 0s;
}

.faq-page__search-form:hover button[type="submit"] {
    background-color: var(--thm-black);
    color: rgb(255, 255, 255);
}

.faq-page__tab-button {
    position: relative;
    display: block;
    background: var(--thm-black2);
    padding: 32px 30px;
    z-index: 1;
}

.faq-page__tab-button-bg {
    position: absolute;
    inset: 0px;
    opacity: 0.15;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

.faq-page__tab-button .title-box {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.faq-page__tab-button .title-box h2 {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    padding-left: 5px;
    z-index: 1;
}

.faq-page__tab-button .title-box h2::before {
    position: absolute;
    top: 3px;
    left: 0px;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.faq-page__tab-button .tab-buttons {
    position: relative;
    display: block;
}

.faq-page__tab-button .tab-buttons .tab-btn {
    position: relative;
    display: block;
    color: rgb(153, 153, 153);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    border-radius: 0px;
    cursor: pointer;
    transition: all 200ms linear 0.1s;
    z-index: 1;
}

.faq-page__tab-button .tab-buttons li.tab-btn {
    border-bottom: 1px solid rgba(245, 246, 240, 0.2);
    padding-bottom: 18px;
    margin-top: 18px;
}

.faq-page__tab-button .tab-buttons li:last-child.tab-btn {
    border-bottom: none;
    padding-bottom: 0px;
}

.faq-page__tab-button .tab-buttons li:first-child.tab-btn {
    margin-top: 0px;
}

.faq-page__tab-button .tab-buttons .tab-btn:hover,
.faq-page__tab-button .tab-buttons .tab-btn.active-btn {
    color: rgb(255, 255, 255);
}

.tabs-content__inner {
    position: relative;
    display: block;
}

.tabs-content__faq {
    position: relative;
    display: block;
}

.tabs-content__inner .accordion-box .block .acc-content p {
    max-width: 580px;
    width: 100%;
}

.faq-page .tabs-content .tab {
    position: relative;
    display: none;
    transform: translateY(35px);
    transition: all 1000ms ease 0s;
    z-index: 10;
}

.faq-page .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    transform: translateX(0px);
}

.testimonials-three--faq {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
}

.testimonials-three--faq .testimonials-three__icon {
    border: 35px solid rgb(245, 246, 240);
}

.blog-page {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px;
    z-index: 1;
}

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

.blog-page__content-single {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

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

.blog-page__content-single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

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

.blog-page__content-single:hover .blog-page__content-single-img .inner::before {
    height: 100%;
    opacity: 0;
    transition: all 400ms linear 0s;
}

.blog-page__content-single-img .inner img {
    width: 100%;
    transition: all 0.5s ease 0s;
    transform: scale(1.05);
}

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

.blog-page__content-single-content {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 40px 40px 37px;
    margin-left: 90px;
    margin-top: -125px;
    z-index: 5;
}

.blog-page__content-single-content p {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
}

.blog-page__content-single-content p span {
    color: var(--thm-black);
}

.blog-page__content-single-content h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    font-family: var(--thm-font);
    margin-top: 10px;
    margin-bottom: 20px;
}

.blog-page__content-single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear 0.1s;
}

.blog-page__content-single-content h2 a:hover {
    color: var(--thm-black);
}

.blog-page__content-single-content .btn-box {
    position: relative;
    display: block;
    border-top: 1px solid rgb(225, 225, 225);
    padding-top: 22px;
}

.blog-page__content-single-content .btn-box a {
    color: var(--thm-gray);
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    transition: all 200ms linear 0.1s;
}

.blog-page__content-single-content .btn-box a:hover {
    color: var(--thm-black);
}

.blog-page__content-single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    top: -1px;
}

.blog-page__content-single.video {
    position: relative;
    display: block;
}

.blog-page__content-single.video .blog-page__content-single-img .inner::after {
    position: absolute;
    inset: 0px;
    background: rgb(10, 24, 74);
    opacity: 0.5;
    content: "";
}

.blog-page-video__icon {
    position: absolute;
    inset: -130px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.blog-page-video__icon a {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: var(--thm-base);
    text-align: center;
    color: var(--thm-black);
    font-size: 15px;
    transition: all 200ms linear 0.1s;
}

.blog-page-video__icon a:hover {
    color: rgb(255, 255, 255);
    background: var(--thm-black2);
}

.blog-page-video__icon a::before,
.blog-page-video__icon a::after {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    box-shadow: rgba(255, 255, 255, 0.6) 0px 0px 0px 0px;
    animation: 3s ease 0s infinite normal none running ripple;
    transition: all 0.4s ease 0s;
}

.blog-page-video__icon a::after {
    animation-delay: 0.6s;
}

.blog-page__content-single-img-carousel.owl-theme .owl-nav {
    position: absolute;
    top: 37%;
    left: 50px;
    right: 50px;
    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: row;
    justify-content: space-between;
    align-items: center;
    transform: scaleX(1) translateX(0px);
    z-index: 999;
}

.blog-page__content-single-img-carousel.owl-theme .owl-prev span,
.blog-page__content-single-img-carousel.owl-theme .owl-next span {
    display: block;
}

.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-prev,
.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    height: 60px;
    width: 60px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 600;
    opacity: 1;
    margin: 0px;
    padding: 0px;
    transform: translateY(0px);
    transition: all 300ms ease 0s;
    z-index: 99;
}

.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-next {
    transform: rotate(180deg);
}

.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-prev:hover,
.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-next:hover {
    color: var(--thm-base);
    border-color: var(--thm-base);
    z-index: 99;
}

.blog-page__content-single.style2 .blog-page__content-single-img .inner::after {
    position: absolute;
    inset: 0px;
    background: rgba(var(--thm-black-rgb), 0.4);
    content: "";
    z-index: 1;
}

.sidebar {
    position: relative;
    display: block;
}

.sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

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

.sidebar-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.sidebar-single .title-box h2 {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    z-index: 1;
}

.sidebar-single .title-box h2::before {
    position: absolute;
    top: 3px;
    left: 0px;
    width: 25px;
    height: 25px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.sidebar__search {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 42px 40px 50px;
    z-index: 1;
}

.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: 14px;
    font-weight: 400;
    padding-left: 20px;
    height: 60px;
    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: var(--thm-black);
    font-size: 17px;
    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: all 500ms ease 0s;
}

.sidebar__search-form:hover button[type="submit"] {
    color: var(--thm-base);
}

.sidebar__category {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 42px 40px 50px;
    z-index: 1;
}

.sidebar__category-list {
    position: relative;
    display: block;
    overflow: hidden;
}

.sidebar__category-list li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

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

.sidebar__category-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--thm-gray);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    background: rgb(255, 255, 255);
    padding: 8px 10px 8px 20px;
    font-family: var(--thm-font);
    transition: all 200ms linear 0.1s;
    z-index: 1;
}

.sidebar__category-list li a:hover,
.sidebar__category-list li a.active {
    color: var(--thm-black);
}

.sidebar__category-list li a::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 0px;
    background-color: var(--thm-base);
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
    transform-origin: right bottom;
    transform: scale(1, 0);
    z-index: -1;
}

.sidebar__category-list li a:hover::before,
.sidebar__category-list li a.active::before {
    transform: scale(1, 1);
    transform-origin: center top;
}

.sidebar__category-list li a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 500;
    transition: all 200ms linear 0.1s;
    z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li a.active span {
    color: var(--thm-base);
}

.sidebar__category-list li a span::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 0px;
    background-color: var(--thm-black);
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
    transform-origin: right top;
    transform: scale(1, 0);
    z-index: -1;
}

.sidebar__category-list li a:hover span::after,
.sidebar__category-list li a.active span::after {
    transform: scale(1, 1);
    transform-origin: center bottom;
}

.sidebar__recent-post {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 42px 40px 50px;
    z-index: 1;
}

.sidebar__recent-pos-list {
    position: relative;
    display: block;
}

.sidebar__recent-pos-list li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgb(225, 225, 225);
    margin-top: 25px;
    padding-bottom: 25px;
}

.sidebar__recent-pos-list li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.sidebar__recent-pos-list li:first-child {
    margin-top: 0px;
}

.sidebar__recent-pos-list li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar__recent-pos-list li .inner .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.sidebar__recent-pos-list li .inner .img-box img {
    width: 100%;
}

.sidebar__recent-pos-list li .inner .content-box {
    position: relative;
    display: block;
    margin-left: 25px;
    flex: 1 1 0%;
}

.sidebar__recent-pos-list li .inner .content-box p {
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
}

.sidebar__recent-pos-list li .inner .content-box h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    margin-top: 5px;
}

.sidebar__recent-pos-list li .inner .content-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear 0.1s;
}

.sidebar__recent-pos-list li .inner .content-box h3 a:hover {
    color: var(--thm-base);
}

.sidebar__tags {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 42px 40px 40px;
    overflow: hidden;
    z-index: 1;
}

.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: 14px;
    font-weight: 500;
    background: rgb(255, 255, 255);
    padding: 6px 22px;
    border-radius: 0px;
    text-transform: capitalize;
    transition: all 0.4s ease 0s;
}

.sidebar__tags-list li a:hover {
    color: var(--thm-black);
    background: var(--thm-base);
}

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

.sidebar__contact-box {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 60px 10px;
    z-index: 1;
}

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

.sidebar__contact-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0px auto 30px;
}

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

.sidebar__contact-box h2 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    text-transform: capitalize;
}

.sidebar__contact-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 31px;
}

.sidebar__contact-box .btn-box .thm-btn {
    color: rgb(255, 255, 255);
}

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

.sidebar__contact-box .btn-box .thm-btn::after {
    background: var(--thm-black);
}

.sidebar__contact-box .btn-box .thm-btn::before {
    background: rgb(255, 255, 255);
}

.blog-details {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px 0px;
    z-index: 1;
}

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

.blog-details__content-img1 {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-details__content-img1 img {
    width: 100%;
}

.blog-details__content-text-box1 {
    position: relative;
    display: block;
    margin-top: 30px;
}

.blog-details__content-text-box1 .text1 {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.blog-details__content-text-box1 .text1 span {
    color: var(--thm-black);
}

.blog-details__content-text-box1 h2 {
    position: relative;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    font-family: var(--thm-font);
    border-bottom: 1px solid rgb(225, 225, 225);
    padding-bottom: 19px;
}

.blog-details__content-text-box1 .text2 {
    margin: 19px 0px 0px;
}

.blog-details__content-text-box1 .text3 {
    margin: 26px 0px 0px;
}

.blog-details__content-text-box2 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.blog-details__content-text-box2 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    font-family: var(--thm-font);
    margin-bottom: 20px;
}

.blog-details__content-text-box2 .text1 {
    margin: 0px 0px 30px;
}

.blog-details__content-text-box2 .text2 {
    margin: 0px;
}

.blog-details__content-img2 {
    position: relative;
    display: block;
    margin-top: 37px;
    margin-bottom: 39px;
}

.blog-details__content-img2 img {
    width: 100%;
}

.blog-details__content-text-box3 {
    position: relative;
    display: block;
}

.blog-details__content-text-box3 .text1 {
    margin: 0px 0px 26px;
}

.blog-details__content-text-box3 .text2 {
    margin: 0px;
}

.blog-details__content-blockquote {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 43px 40px 42px;
    margin-top: 42px;
}

.blog-details__content-blockquote .inner {
    position: relative;
    display: block;
    padding-left: 115px;
}

.blog-details__content-blockquote .inner .icon-box {
    position: absolute;
    top: 7px;
    left: 0px;
}

.blog-details__content-blockquote .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 60px;
}

.blog-details__content-blockquote .inner .text-box {
    position: relative;
    display: block;
}

.blog-details__content-blockquote .inner .text-box p {
    color: var(--thm-black);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}

.blog-details__content-blockquote .inner .text-box h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-transform: capitalize;
}

.blog-details__content-text-box4 {
    position: relative;
    display: block;
    margin-top: 39px;
}

.blog-details__content-text-box4 .text1 {
    margin: 0px;
}

.blog-details__content-text-box4 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    font-family: var(--thm-font);
    margin-top: 39px;
    margin-bottom: 19px;
}

.blog-details__content-text-box4 .text2 {
    margin: 0px 0px 26px;
}

.blog-details__content-text-box4 .text3 {
    margin: 0px;
}

.blog-details__content-text-box5 {
    position: relative;
    display: block;
    margin-top: 42px;
}

.blog-details__content-text-box5 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-details__content-text-box5 .img-box img {
    width: 100%;
}

.blog-details__content-text-box5 .text-box {
    position: relative;
    display: block;
}

.blog-details__content-text-box5 .text-box .text1 {
    margin: 0px 0px 28px;
}

.blog-details__content-text-box5 .text-box .text2 {
    margin: 0px;
}

.blog-details__content-text-box6 {
    position: relative;
    display: block;
    margin-top: 38px;
}

.blog-details__content-text-box6 p {
    margin: 0px;
}

.blog-details__content-text-box7 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(225, 225, 225);
    border-bottom: 1px solid rgb(225, 225, 225);
    margin-top: 37px;
    padding: 15px 0px;
}

.blog-details__content-text-box7 .tag-box {
    position: relative;
    display: block;
}

.blog-details__content-text-box7 .tag-box a {
    color: var(--thm-gray);
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    background: var(--thm-primary);
    padding: 10px 20px 9px;
    transition: all 200ms linear 0.1s;
}

.blog-details__content-text-box7 .tag-box a:hover {
    background: var(--thm-base);
    color: var(--thm-black);
}

.blog-details__content-text-box7 .tag-box a+a {
    margin-left: 6px;
}

.blog-details__content-text-box7 .social-links {
    position: relative;
    display: block;
}

.blog-details__content-text-box7 .social-links ul {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--thm-base);
    padding: 12px 20px;
    line-height: 0;
}

.blog-details__content-text-box7 .social-links ul li {
    position: relative;
    display: inline-block;
    margin-right: 16px;
}

.blog-details__content-text-box7 .social-links ul li:last-child {
    margin-right: 0px;
}

.blog-details__content-text-box7 .social-links ul li a {
    position: relative;
    display: block;
    color: var(--thm-black);
}

.blog-details__content-text-box7 .social-links ul li a span::before {
    position: relative;
    display: inline-block;
    font-size: 16px;
}

.comment-one {
    position: relative;
    display: block;
    margin-top: 60px;
}

.comment-one__title {
    color: var(--thm-black);
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 31px;
}

.comment-one__single {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 78px;
}

.comment-one__single.mb0 {
    margin-bottom: 0px;
    margin-left: 110px;
}

.comment-one__image {
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    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 .top-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
}

.comment-one__content .top-box .text-box {
    position: relative;
    display: block;
}

.comment-one__content .top-box .text-box h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 4px;
}

.comment-one__content .top-box .text-box p {
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
}

.comment-one__content .top-box .btn-box {
    position: relative;
    display: block;
}

.comment-one__btn {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    transition: all 200ms linear 0.1s;
}

.comment-one__btn:hover {
    color: var(--thm-black);
}

.comment-one__btn span::before {
    position: relative;
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
}

.comment-one__content p {
    margin: 0px;
}

.comment-form {
    position: relative;
    display: block;
    margin-top: 59px;
}

.comment-form__title {
    color: var(--thm-black);
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.comment-one__form {
    position: relative;
    display: block;
}

.comment-one__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.comment-one__form .input-box input[type="text"],
.comment-one__form .input-box input[type="email"],
.comment-one__form .input-box textarea {
    position: relative;
    display: block;
    background: var(--thm-primary);
    width: 100%;
    height: 60px;
    border: none;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    padding-left: 25px;
    padding-right: 20px;
    border-radius: 30px;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
    outline: none;
}

.comment-one__form .input-box textarea {
    width: 100%;
    height: 160px;
    padding-top: 18px;
    border-radius: 20px;
    outline: none;
    resize: none;
}

.comment-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.comment-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.comment-one__form form textarea::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.comment-form__checkbox {
    position: relative;
    display: block;
    margin-top: -10px;
}

.comment-form__checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--thm-font);
    cursor: pointer;
}

.comment-form__checkbox input[type="checkbox"] {
    display: none;
}

.comment-form__checkbox input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 4px;
    left: 0px;
    width: 17px;
    height: 17px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 2px;
    cursor: pointer;
    transition: all 300ms ease 0s;
}

.comment-form__checkbox label span::before {
    position: absolute;
    top: 2px;
    left: 4px;
    display: block;
    border-bottom: 2px solid rgb(221, 221, 221);
    border-right: 2px solid rgb(221, 221, 221);
    content: "";
    width: 5px;
    height: 9px;
    pointer-events: none;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out 0s;
    opacity: 0;
}

.comment-form__checkbox input[type="checkbox"]:checked+label span {
    border: 1px solid rgb(221, 221, 221);
}

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

.comment-form__btn {
    position: relative;
    display: block;
    margin-top: 31px;
}

.blog-one--blog {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
}

.blog-one--blog .blog-one__single-content {
    background: var(--thm-primary);
}

.contact-page-google-map {
    position: relative;
    display: block;
    z-index: 1;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 705px;
    width: 100%;
}

.client-support-one {
    position: relative;
    display: block;
    background: rgb(255, 255, 255);
    padding: 110px 0px 80px;
    z-index: 1;
}

.client-support-one__single {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 35px 35px 37px;
    margin-bottom: 30px;
    z-index: 1;
}

.client-support-one__single-bg {
    position: absolute;
    inset: 0px;
    opacity: 0.3;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.client-support-one__single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    z-index: 1;
}

.client-support-one__single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 50px;
    right: -20px;
    transition: all 500ms linear 0.1s;
    transform: scale(1);
}

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

.client-support-one__single .content-box {
    position: relative;
    display: block;
}

.client-support-one__single .content-box h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    text-transform: capitalize;
    margin-top: 25px;
    margin-bottom: 17px;
}

.client-support-one__single .content-box p {
    color: var(--thm-black);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.client-support-one__single .content-box p a {
    color: var(--thm-black);
    transition: all 200ms linear 0.1s;
}

.client-support-one__single .content-box p a:hover {
    color: var(--thm-black);
}

div.table {
    display: block;
    margin: auto;
    max-width: 600px;
    padding: 5px;
    width: 100%;
}

.table-title h3 {
    color: rgb(250, 250, 250);
    font-size: 30px;
    font-style: normal;
    font-family: Roboto, helvetica, arial, sans-serif;
    text-transform: uppercase;
}

.table-fill {
    background: white;
    border-radius: 3px;
    border-collapse: collapse;
    margin: auto;
    max-width: 100%;
    padding: 5px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;
    animation: 5s ease 0s infinite normal none running float;
}

th {
    color: rgb(213, 221, 229);
    background: rgb(27, 30, 36);
    border-bottom: 4px solid rgb(158, 167, 175);
    border-right: 1px solid rgb(52, 58, 69);
    font-size: 23px;
    font-weight: 100;
    padding: 24px;
    text-align: left;
    text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 1px;
    vertical-align: middle;
}

th:last-child {
    border-top-right-radius: 3px;
    border-right: none;
}

tr {
    border: 2px solid rgb(163, 0, 6);
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 600;
    text-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px;
}


/* tr:hover td {
  background: rgb(143, 2, 7);
  color: rgb(255, 255, 255);
  border-top: 2px solid rgb(163, 0, 6);
}

tr:nth-child(2n + 1):hover td {
  background: rgb(163, 0, 6);
  border: rgb(255, 255, 255);
} */

tr:last-child td:first-child {
    border-top-right-radius: 3px;
}

tr:last-child td:last-child {
    border-top-right-radius: 3px;
}

td {
    background: rgb(255, 255, 255);
    padding: 9px;
    text-align: left;
    vertical-align: middle;
    font-weight: 500;
    font-size: 14px;
    text-shadow: rgba(0, 0, 0, 0.1) -1px -1px 1px;
    border-right: 2px solid rgb(163, 0, 6);
}


/* .table-hover > tr > td:hover {
  border-right: 2px solid rgb(255, 255, 255);
} */

td:last-child {
    border-right: 0px;
}

th.text-left {
    text-align: left;
}

th.text-center {
    text-align: center;
}

th.text-right {
    text-align: right;
}

td.text-left {
    text-align: left;
}

td.text-center {
    text-align: center;
}

td.text-right {
    text-align: right;
}

.new-d-none {
    display: none;
}

.new-d-none img {
    width: 40px;
}

.icon-box span img {
    width: 50px;
    position: relative;
    right: -30px;
    top: 20px;
}

.feature-two__single:hover a {
    color: #fff;
}

.feature-two__single:hover p {
    color: #fff;
}

.desk-none {
    display: none;
}

.float {
    position: fixed;
    width: 40px;
    bottom: 9%;
    right: 19px;
    z-index: 100;
}

.float-1 {
    position: fixed;
    width: 40px;
    bottom: 14%;
    right: 19px;
    z-index: 100;
}

.whatsapp {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 8%;
    width: 40px;
    height: 40px;
    transition: all 200ms linear 0.1s;
    z-index: 999999999;
}

.phone {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 14%;
    width: 40px;
    height: 40px;
    transition: all 200ms linear 0.1s;
    z-index: 999999999;
}