@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/dm-sans-v14-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/dm-sans-v14-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/dm-sans-v14-latin-700.woff2') format('woff2');
}

.back-to-top-wrapper, a, button, p, input, textarea, li {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.back-to-top-btn {
    -webkit-transition: transform 0.3s 0s ease-out;
    -moz-transition: transform 0.3s 0s ease-out;
    -ms-transition: transform 0.3s 0s ease-out;
    -o-transition: transform 0.3s 0s ease-out;
    transition: transform 0.3s 0s ease-out;
}

:root {
    --tp-ff-body: 'DM Sans', sans-serif;
    --tp-ff-heading: 'DM Sans', sans-serif;
    --tp-ff-p: 'DM Sans', sans-serif;
    --tp-ff-fontawesome: "Font Awesome 6 Pro";
    --tp-common-white: #fff;
    --tp-common-black: #3e3e47;
    --tp-heading-1: #232331;
    --tp-grey-1: #f8f5f1;
    --tp-text-1: #767676;
    --tp-theme-1: #ffbf42;
    --tp-theme-2: #761918;
    --tp-background-1: #232331;
    --tp-border-primary: #000;
}

.container, .container-fluid {
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.tp-location-area .row {
    --bs-gutter-x: 0px;
}

body {
    font-family: var(--tp-ff-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

a {
    text-decoration: none;
}

h2,h3,h4 {
    font-family: var(--tp-ff-heading);
    color: var(--tp-heading-1);
    margin-top: 0px;
    font-weight: 700;
    line-height: 1.2;
    -webkit-transition: color 0.3s 0s ease-out;
    -moz-transition: color 0.3s 0s ease-out;
    -ms-transition: color 0.3s 0s ease-out;
    -o-transition: color 0.3s 0s ease-out;
    transition: color 0.3s 0s ease-out;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-family: var(--tp-ff-p);
    font-size: 16px;
    font-weight: 400;
    color: #767676;
    line-height: 30px;
}

a:focus {
    text-decoration: none;
    outline: none;
}

a:focus,a:hover {
    color: inherit;
    text-decoration: none;
}

a,button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer !important;
}

button:focus {
    outline: 0;
}

input[type=text],input[type=email],input[type=tel],textarea {
    outline: none;
    background-color: #fff;
    height: 40px;
    width: 100%;
    line-height: 40px;
    font-size: 14px;
    border: 2px solid white;
    color: var(--tp-common-black);
    padding-left: 29px;
    padding-right: 29px;
    background-color: rgb(255, 255, 255);
}

input[type=text]::-webkit-input-placeholder,input[type=email]::-webkit-input-placeholder,input[type=tel]::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
    color: #84848B;
}

input[type=text]::-moz-placeholder,input[type=email]::-moz-placeholder,input[type=tel]::-moz-placeholder,textarea::-moz-placeholder {
    color: #84848B;
}

input[type=text]:-moz-placeholder,input[type=email]:-moz-placeholder,input[type=tel]:-moz-placeholder,textarea:-moz-placeholder {
    color: #84848B;
}

input[type=text]:-ms-input-placeholder,input[type=email]:-ms-input-placeholder,input[type=tel]:-ms-input-placeholder,textarea:-ms-input-placeholder {
    color: #84848B;
}

*::-moz-selection {
    background: var(--tp-common-black);
    color: #84848B;
    text-shadow: none;
}

::-moz-selection {
    background: var(--tp-common-black);
    color:#84848B;
    text-shadow: none;
}

::selection {
    background: var(--tp-common-black);
    color:#84848B;
    text-shadow: none;
}

*::-moz-placeholder {
    color:#84848B;
    font-size: var(--tp-fz-body);
    opacity: 1;
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.fix {
    overflow: hidden;
}

.z-index-1 {
    z-index: 1;
}

.p-relative {
    position: relative;
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.body-overlay {
    background-color: var(--tp-common-black);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.body-overlay:hover {
    cursor: pointer;
}

#jarallax-container-0 {
    clip: rect(0 1903px 655px 0);
    clip: rect(0, 1903px, 655px, 0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.back-to-top-wrapper {
    position: fixed;
    right: 50px;
    bottom: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 767px) {
    .back-to-top-wrapper {
        right: 20px;
        bottom: 20px;
    }
}

.back-to-top-btn {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: var(--tp-common-black);
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: var(--tp-common-white);
    border-radius: 50%;
}

.back-to-top-btn svg {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.back-to-top-btn:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.tp-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    background-color: #761918;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 17px 50px;
    overflow: hidden;
    transition: all 0.5s linear;
    z-index: 1;
    text-align: center;
}
.tp-header__btn .tp-btn {
    background-color: #373b3f;
    font-weight: 500;
    text-transform: uppercase;
}

.tp-btn::before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: 0px;
    background-color: #ffbf42;
    content: "";
    transform: scaleY(0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: -1;
}

.tp-btn:hover {
    color: #000;
}

.tp-btn:hover::before {
    transform: scaleY(1) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    background-color: var(--tp-theme-2);
    color: var(--tp-common-white);
    font-size: 16px;
    font-weight: 800;
    padding: 17px 50px;
    overflow: hidden;
    transition: all 0.5s linear;
    z-index: 1;
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .thm-btn {
        padding: 17px 45px;
    }
}

.thm-btn::before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background-color: var(--tp-theme-1);
    content: "";
    transform: scaleY(0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: -1;
}

.thm-btn:hover {
    color: var(--tp-common-black);
}

.thm-btn:hover::before {
    transform: scaleY(1) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }

    25% {
        transform: translatex(20px);
    }

    50% {
        transform: translatey(-20px);
    }

    75% {
        transform: translatex(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

@-webkit-keyframes movingX {
    0% {
        left: 100%;
    }

    100% {
        left: -25%;
    }
}

@keyframes movingX {
    0% {
        left: 100%;
    }

    100% {
        left: -25%;
    }
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }

    25% {
        transform: translatex(20px);
    }

    50% {
        transform: translatey(-20px);
    }

    75% {
        transform: translatex(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

#loading {
    background-color: var(--tp-theme-2);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 5;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.object {
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    position: absolute;
    border-top: 5px solid var(--tp-common-white);
    border-bottom: 5px solid transparent;
    border-left: 5px solid var(--tp-common-white);
    border-right: 5px solid transparent;
    -webkit-animation: animate 2s infinite;
    animation: animate 2s infinite;
}

#object_one {
    left: 75px;
    top: 75px;
    width: 50px;
    height: 50px;
}

#object_two {
    left: 65px;
    top: 65px;
    width: 70px;
    height: 70px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#object_three {
    left: 55px;
    top: 55px;
    width: 90px;
    height: 90px;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

#object_four {
    left: 45px;
    top: 45px;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes animate {
    50% {
        -ms-transform: rotate(360deg) scale(0.8);
        -webkit-transform: rotate(360deg) scale(0.8);
        transform: rotate(360deg) scale(0.8);
    }
}

@keyframes animate {
    50% {
        -ms-transform: rotate(360deg) scale(0.8);
        -webkit-transform: rotate(360deg) scale(0.8);
        transform: rotate(360deg) scale(0.8);
    }
}

.theme-color {
    background: var(--tp-theme-1);
}

.theme-color-2 {
    background: var(--tp-theme-2);
}

.theme-background {
    background: #f4f4f4;
}
.theme-background-1 {
    background: #232122;
}
.theme-background-2 {
    background: #464646;
}

.red-bg {
    background: #761918;
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgb(24 24 24 / 0%);
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
}

.body-overlay.apply {
    opacity: 1;
    visibility: visible;
}

.body-overlay:hover {
    cursor: url(../img/cross-out.png), pointer;
}

.offcanvas__btn {
    margin-bottom: 55px;
}

.offcanvas__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: transparent;
    color: #761918;
    margin-right: 5px;
    border: 1px solid #761918;
}

.offcanvas__social a:hover {
    background: var(--tp-theme-2);
    color: var(--tp-common-white);
    border-color: var(--tp-theme-2);
}

.offcanvas__contact-call {
    font-size: 23px;
    color: var(--tp-heading-1);
    font-weight: 700;
    margin-bottom: 5px;
}

.offcanvas__contact-call:hover {
    color: var(--tp-theme-2);
}

.offcanvas__contact-mail {
    font-size: 16px;
    font-weight: 500;
    color: #271D3A;
}

.tpoffcanvas {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    right: -100%;
    width: 480px;
    bottom: 0;
    box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
    background: var(--tp-common-white) none repeat scroll 0 0;
    z-index: 999999;
    padding: 50px;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.45s ease-in-out;
    overflow-y: scroll;
}

.tpoffcanvas .tp-main-menu-mobile {
    margin-bottom: 50px;
}

.tpoffcanvas.opened {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .tpoffcanvas {
        width: calc(100% - 35px);
        padding: 40px 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tpoffcanvas {
        width: 400px;
        padding: 40px;
    }
}

.tpoffcanvas.opened {
    right: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.6s;
    opacity: 1;
    visibility: visible;
}

.tpoffcanvas__logo {
    margin-bottom: 60px;
}

.tpoffcanvas__logo a img {
    width: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tpoffcanvas__logo {
        padding-top: 0;
    }
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .tpoffcanvas__logo {
        padding-top: 0;
    }
}

.tpoffcanvas__close-btn button {
    position: absolute;
    right: 47px;
    top: 56px;
    transition: 1s;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.3s;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 2px solid #761918;
}

@media (max-width: 767px) {
    .tpoffcanvas__close-btn button {
        right: 28px;
        top: 44px;
    }
}

.tpoffcanvas__close-btn button:hover {
    background-color: var(--tp-theme-2);
    border-color: var(--tp-theme-2);
    color: var(--tp-common-white);
}

.tpoffcanvas__close-btn button:hover i {
    transform: rotate(360deg);
}

.tpoffcanvas__close-btn button i {
    font-weight: 300;
    font-size: 20px;
    transition: 0.9s;
    color: #761918;
}

.tp-main-menu-mobile ul {
    position: static;
    display: block;
    box-shadow: none;
}

.tp-main-menu-mobile ul li {
    list-style: none;
    position: relative;
    width: 100%;
    padding: 0;
}

.tp-main-menu-mobile ul li:hover > a {
    color: var(--tp-theme-1);
}

.tp-main-menu-mobile ul li:hover > a::after {
    color: var(--tp-theme-1);
}

.breadcrumb__bg {
    background-size: cover;
    background-repeat: no-repeat;
}

.breadcrumb__title {
    font-size: 60px;
    color: var(--tp-common-white);
    font-weight: 700;
}

@media (max-width: 767px) {
    .breadcrumb__title {
        font-size: 45px;
    }
}

.breadcrumb__bg__overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #3a3a4a;
    width: 100%;
    height: 100%;
    display: inline-block;
    opacity: 0.3;
}

.breadcrumb__item {
    background-color: #761918;
    display: inline-block;
    padding: 7px 20px;
}

.breadcrumb__list span {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    padding-right: 3px;
    margin-right: 3px;
    text-transform: capitalize;
}

.breadcrumb__list span a:hover {
    color: var(--tp-theme-primary);
}

.tp-section__subtitle {
    color: var(--tp-theme-2);
    font-weight: 700;
}

.tp-section__subtitle-before {
    display: inline-block;
    padding-right: 30px;
}

.tp-section__subtitle-before::before {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 0px;
    width: 20px;
    height: 2px;
    background: var(--tp-heading-1);
}

.tp-section__title {
    font-size: 47px;
    font-weight: 700;
    line-height: 1.1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-section__title {
        font-size: 38px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section__title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-section__title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .tp-section__title {
        font-size: 34px;
    }
}

.tp-section__title-white {
    color: var(--tp-common-white);
    font-size: 47px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .tp-section__title-white {
        font-size: 40px;
    }
}

.tp-header__icon {
    color: #767676;
    font-size: 25px;
    transition: 0.3s;
    background: var(--tp-grey-1);
    height: 58px;
    width: 58px;
    text-align: center;
    line-height: 64px;
    border-radius: 30px;
}

.tp-header__icon i {
    color: #3a3a4a;
}

.tp-header__icon-info label {
    font-size: 16px;
    color: #d5d5d5;
    display: block;
    transition: 0.3s;
}

.tp-header__icon-info span {
    font-size: 16px;
    color: #ffffff;
    transition: 0.4s;
    cursor: pointer;
}

.tp-header__icon-info span:hover {
    color: var(--tp-theme-2);
}

.tp-menu-bar {
    background: #232122;
    color: #ffffff;
    padding: 15px 21px;
    font-size: 24px;
}

.main-logo::before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #87a1ba;
    background-image:url(../images/header-logo-bg.webp);
    background-size: cover;
    width: 37%;
    height: 100%;
    content: "";
    z-index: 1;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .main-logo::before {
        width: 45%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
    .main-logo::before {
        clip-path: polygon(0 0, 89% 0, 142% 100%, 0% 100%);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .main-logo::before {
        width: 47%;
        height: 78%;
    }
}

@media (max-width: 767px) {
    .main-logo::before {
        width: 70%;
        height: 78%;
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu {
        margin-left: 50px;
    }
}

.main-menu > nav > ul > li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-right: 54px;
}

.main-menu > nav > ul > li > a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    padding: 17px 0;
    font-weight: 500;
}

.main-menu > nav > ul > li:hover > a {
    color: var(--tp-common-white);
}

.tp-main-menu-mobile ul {
    position: static;
    display: block;
    box-shadow: none;
}

.tp-main-menu-mobile ul li {
    list-style: none;
    position: relative;
    width: 100%;
    padding: 0;
}

.tp-main-menu-mobile ul li:not(:last-child) a {
    border-bottom: 1px solid rgb(191 10 48);
}

.tp-main-menu-mobile ul li > a {
    display: block;
    font-size: 16px;
    color: var(--tp-common-black);
    position: relative;
    padding: 10px 0;
    padding-right: 20px;
}

.tp-main-menu-mobile ul li:hover > a {
    color: var(--tp-theme-2);
}

.tp-main-menu-mobile ul li:hover > a::after {
    color: var(--tp-theme-1);
}

.tp-main-menu-mobile * ul, .tp-main-menu-mobile * li {
    transition: none !important;
}

.tp-footer__text p {
    color: #9898a0;
}

.tp-footer-col-2 {
    margin-left: 50px;
}

.tp-footer__contact-info ul li {
    position: relative;
    list-style-type: none;
    padding-left: 35px;
    margin-bottom: 10px;
}

.tp-footer__contact-info ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #787878;
}

.tp-footer__contact-info ul li a:hover {
    color: #000;
}

.tp-footer__contact-info ul li span {
    position: absolute;
    top: 8px;
    left: 0;
    color: var(--tp-theme-2);
    line-height: 1;
}

.tp-footer__contact-info ul li:first-child a {
    font-weight: 500;
    font-size: 14px;
}

.tp-footer__widget-title {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    padding-bottom: 25px;
}

@media (max-width: 767px) {
    .tp-footer__copyright {
        margin-bottom: 15px;
    }
}

.tp-footer__content ul li {
    list-style-type: none;
    margin-bottom: 13px;
    margin-left: -14px;
}

.tp-footer__content ul li:last-child {
    margin-bottom: 0;
}

.tp-footer__content ul li a {
    font-weight: 500;
    font-size: 14px;
    color: #787878;
    transition: 0.3s;
}

.tp-footer__content ul li a i {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.tp-footer__content ul li a:hover {
    color: #000;
    margin-left: 20px;
}

.tp-footer__content ul li a:hover i {
    opacity: 1;
    visibility: visible;
}

.tp-footer__social ul li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
}

.tp-footer__social ul li a {
    color: #787878;
    font-size: 14px;
    transition: 0.3s;
}

.tp-footer__social ul li a:hover {
    color: #000;
}

.tp-footer__right-bg {
    position: absolute;
    left: 0;
    top: 83px;
}

.tp-footer__bottom {
    background: #f0f0f0;
}

.tp-footer__copyright p {
    color: #9898a0;
    font-size: 14px;
    margin-bottom: 0;
}

.tp-footer__shape-1 {
    position: absolute;
    bottom: -3px;
    right: 0;
    left: 0;
    max-width: 300px;
}

@media (max-width: 767px) {
    .tp-footer__widget {
        margin-left: 0;
    }
}

.movingX {
    -webkit-animation: movingX 10s linear infinite;
    animation: movingX 10s linear infinite;
}

.tp-slider__item {
    background-color: #232122;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-slider__content {
        margin-left: 130px;
    }
}

.tp-slider__height {
    height: 860px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-slider__height {
        height: 700px;
    }
}

@media (max-width: 767px) {
    .tp-slider__height {
        height: auto;
        min-height: 400px;
        background-size: contain;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-slider__content {
        margin-left: -165px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-slider__content {
        margin-left: -120px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider__content {
        margin-left: 98px;
    }
}

.tp-slider-right-bg {
    background-repeat: no-repeat;
    background-position: right;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-slider-right-bg {
        width: 62%;
        float: right;
        height: 700px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-slider-right-bg {
        width: 62%;
        float: right;
        height: 700px;
    }
}

.tp-slider__counter-number {
    position: absolute;
    bottom: 60px;
    left: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider__counter-number {
        bottom: 44px;
        left: 4px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-slider__counter-number {
        bottom: 46px;
        left: 17px;
    }
}

@media (max-width: 767px) {
    .tp-slider__counter-number {
        bottom: 49px;
        left: 16px;
        display: none!important;
    }
}

.tp-slider__counter-number span {
    font-size: 80px;
    color: #ffffff;
    font-weight: 700;
    width: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
    .tp-slider__counter-number span {
        color: var(--tp-common-white);
    }
}

.tp-slider__quote-icon {
    font-size: 50px;
    color: var(--tp-theme-2);
    display: inline-block;
    margin-top: 12px;
}

.tp-slider__social {
    position: absolute;
    left: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-slider__social {
        display: none;
    }
}

.tp-slider__social ul li {
    list-style: none;
    display: block;
    margin-bottom: 20px;
}

.tp-slider__social ul li a {
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 13px 17px;
    display: block;
    transition: 0.4s;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider__social ul li a {
        color: var(--tp-common-white);
        border: 1px solid var(--tp-common-white);
    }
}

.tp-slider__social ul li a:hover {
    background: var(--tp-theme-2);
    color: var(--tp-common-white);
    border: 1px solid #761918;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider__social ul li a:hover {
        border: 1px solid var(--tp-theme-2);
    }
}

.tp-slider__nav {
    position: relative;
    bottom: 110px;
    z-index: 2;
    right: 59px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider__nav {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .tp-slider__nav {
        right: 10px;
    }
}

.tp-slider__nav .hero-button-next {
    background: #232122cf;
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 20px;
    margin-right: 10px;
    transition: 0.4s;
}

.tp-slider__nav .hero-button-next:hover {
    background-color: var(--tp-heading-1);
    color: var(--tp-common-white);
}

.tp-slider__nav .hero-button-prev {
    background: #232122cf;
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 20px;
    margin-right: 16px;
    transition: 0.4s;
}

.tp-slider__nav .hero-button-prev:hover {
    background-color: var(--tp-heading-1);
    color: var(--tp-common-white);
}

.tp-slider-title {
    font-size: 80px;
    color: var(--tp-common-white);
    font-weight: 700;
    line-height: 1.1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-slider-title {
        font-size: 65px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider-title {
        font-size: 67px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-slider-title {
        padding-right: 100px;
    }
}

@media (max-width: 767px) {
    .tp-slider-title {
        font-size: 35px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-slider-title {
        font-size: 55px;
    }
}

.circal::before {
    background: #761918a8;
    width: 825px;
    height: 825px;
    position: absolute;
    content: "";
    top: 18px;
    left: 288px;
    border-radius: 50%;
    mix-blend-mode: darken;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .circal::before {
        width: 650px;
        height: 650px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .circal::before {
        width: 650px;
        height: 650px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .circal::before {
        left: 75px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .circal::before {
        width: 660px;
        height: 660px;
        left: 53px;
        top: 115px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .circal::before {
        width: 590px;
        height: 590px;
        left: 0px;
    }
}

@media (max-width: 767px) {
    .circal::before {
        width: 335px;
        height: 335px;
        top: 127px;
        left: 6px;
    }
}

.tp-slider__item.swiper-slide-active .circal::before {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.tp-slider__item.swiper-slide-active .circal::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
}

.tp-slider__item.swiper-slide-active .thm-btn {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.tp-slider__item.swiper-slide-active .thm-btn {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
}

.tp-slider__item.swiper-slide-active .tp-slider-title {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.tp-slider__item.swiper-slide-active .tp-slider-title {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
}

.tp-slider__item.swiper-slide-active .cargo-shipping-text {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.tp-slider__item.swiper-slide-active .cargo-shipping-text {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.cargo-shipping {
    position: absolute;
    right: 550px;
    z-index: 2;
    bottom: 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cargo-shipping {
        right: 483px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
    .cargo-shipping {
        display: none;
    }
}

.cargo-shipping span {
    font-size: 16px;
    font-weight: 500;
    color: var(--tp-common-white);
}

.cargo-shipping::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 1px;
    top: 18px;
    left: 138px;
    background: #8a8a88;
    transition: 0.9s linear;
    z-index: 2;
    -webkit-transition: all 0.9s ease-out 0s;
    -moz-transition: all 0.9s ease-out 0s;
    -ms-transition: all 0.9s ease-out 0s;
    -o-transition: all 0.9s ease-out 0s;
    transition: all 0.9s ease-out 0s;
}

.swiper-slide-active .tp-slider-right-bg .cargo-shipping::before {
    width: 301px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-about__lg-img {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .tp-about__lg-img {
        margin-left: 0;
    }
}

.tp-about__wrap {
    background: var(--tp-common-white);
    width: 1480px;
    margin: 0 auto;
    margin-top: -167px;
    z-index: 2;
    position: relative;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-about__wrap {
        width: 100%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about__wrap {
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about__wrap {
        margin-top: 0px;
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-about__wrap {
        margin-top: 0px;
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about__wrap {
        margin-top: 0px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .tp-about__wrap {
        margin-top: 0px;
        width: 100%;
    }
}

.cta-title-1 {
    font-size: 60px;
    color: var(--tp-common-white);
    font-weight: 700;
    margin-bottom: 52px;
    line-height: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cta-title-1 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .cta-title-1 {
        font-size: 35px;
    }
}

.cta__content span {
    color: var(--tp-theme-1);
    font-weight: 700;
    line-height: 0;
    margin-bottom: 40px;
    display: inline-block;
}

.tp-video__height-video-bg {
    height: 525px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .tp-video__height-video-bg {
        height: 350px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-video__height-video-bg {
        height: 370px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-video__height-video-bg {
        height: 370px;
    }
}

@media (max-width: 767px) {
    .tp-video__wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.tp-video__wrap h4 {
    font-size: 36px;
    font-weight: 500;
    color: var(--tp-common-white);
    font-family: cursive;
}

.tp-video__bg-opacity::before {
    content: "";
    background: var(--tp-heading-1);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 60%;
}

.video-one__video-link {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.video-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 102px;
    height: 102px;
    line-height: 90px;
    text-align: center;
    font-size: 31px;
    color: black;
    border-radius: 50%;
    background-color: var(--tp-theme-1);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

@media (max-width: 767px) {
    .video-one__video-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

.video-one__video-icon:hover {
    background-color: var(--tp-common-white);
    color: black;
}

.video-one__video-icon:before {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    content: "";
    border-radius: 50%;
    border: 1px solid rgba(255, 191, 66, 0.1);
    z-index: 1;
}

.video-one__video-link .ripple,.video-one__video-icon .ripple:before,.video-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

@media (max-width: 767px) {
    .video-one__video-link .ripple,.video-one__video-icon .ripple:before,.video-one__video-icon .ripple:after {
        width: 80px;
        height: 80px;
    }
}

.video-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.cta-opasity::before {
    content: "";
    position: absolute;
    background: #070613;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

@media (max-width: 767px) {
    .contact-page-title {
        margin-right: 0px;
    }
}

.tp-choose__circel-img {
    position: absolute;
    top: -165px;
    left: 0;
    transform: rotate(21deg);
    z-index: -1;
}

@media (max-width: 767px) {
    .tp-choose__content {
        margin-right: 0;
    }
}

.tp-testimonial__item {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(164, 160, 160, 0.1);
    margin: 17px 0;
}

.tp-testimonial__item .quote-img {
    position: absolute;
    right: 50px;
    bottom: 30px;
}

.tp-testimonial__item .quote-img span {
    font-size: 70px;
    color: #d3d3d6;
    line-height: 0;
    transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testimonial__item .quote-img {
        right: 27px;
        bottom: 6px;
    }
}

@media (max-width: 767px) {
    .tp-testimonial__item .quote-img {
        right: 17px;
        bottom: 15px;
    }
}

.tp-testimonial__item .shap-img {
    position: absolute;
    top: 0;
    right: -165px;
    animation: 9s linear 0s infinite normal none running moving;
    z-index: -1;
}

.tp-testimonial__item::after {
    position: absolute;
    content: "";
    background: var(--tp-heading-1);
    width: 150px;
    height: 150px;
    bottom: -88px;
    left: 17px;
    transform: rotate(-46deg);
    transition: 0.3s;
}

.tp-testimonial__item::before {
    position: absolute;
    content: "";
    background: var(--tp-theme-2);
    width: 150px;
    height: 150px;
    bottom: 4px;
    left: -81px;
    transform: rotate(-46deg);
}

@media (max-width: 767px) {
    .tp-testimonial__avata-img {
        margin-right: 20px;
    }
}

.tp-testimonial__avata-img img {
    border-radius: 50%;
    border: 5px solid var(--tp-common-white);
    z-index: 2;
    position: relative;
}

.tp-testimonial__content {
    padding: 40px;
    padding-right: 68px;
    padding-bottom: 16px;
}

@media (max-width: 767px) {
    .tp-testimonial__content {
        padding: 20px;
        padding-right: 20px;
        padding-bottom: 16px;
    }
}

.tp-testimonial__avata {
    padding: 40px;
    padding-left: 17px;
    padding-bottom: 37px;
    padding-top: 0;
}

.tp-testimonial__ster-icon i {
    color: var(--tp-theme-2);
    font-size: 16px;
}

.tp-testimonial-title-1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--tp-heading-1);
}

@media (max-width: 767px) {
    .tp-testimonial-title-1 {
        font-size: 16px;
    }
}

.tp-testimonial__text span {
    font-size: 14px;
    color: #767676;
    font-weight: 400S;
}

.tp-testimonial__nav {
    position: absolute;
    bottom: 85px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testimonial__nav {
        bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-testimonial__nav {
        bottom: 60px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-testimonial__nav {
        bottom: 80px;
    }
}

@media (max-width: 767px) {
    .tp-testimonial__nav {
        bottom: 70px;
    }
}

.tp-testimonial__nav .testimonial-button-prev {
    background: var(--tp-grey-1);
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    color: var(--tp-heading-1);
    font-size: 20px;
    float: left;
    margin-right: 16px;
    transition: 0.4s;
}

.tp-testimonial__nav .testimonial-button-prev:hover {
    background-color: var(--tp-heading-1);
    color: var(--tp-common-white);
}

.tp-testimonial__nav .testimonial-button-next {
    background: var(--tp-grey-1);
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    color: var(--tp-heading-1);
    font-size: 20px;
    transition: 0.4s;
}

.tp-testimonial__nav .testimonial-button-next:hover {
    background-color: var(--tp-heading-1);
    color: var(--tp-common-white);
}

.testimonials-wrapper {
    margin-right: -580px;
}

@media (max-width: 767px) {
    .testimonials-wrapper {
        margin-right: 0px;
    }
}

.testimonials-active .swiper-slide-duplicate-prev .tp-testimonial__item::after {
    background: var(--tp-theme-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-features {
        margin-top: 50px;
        padding-bottom: 0px;
    }
}

.tp-features__bg-color {
    background-color: var(--tp-heading-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-features__bg-color {
        padding-bottom: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-features__bg-color {
        padding-bottom: 0;
        padding-top: 80px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
    .tp-features__bg-color {
        padding-bottom: 0px;
    }
}

.tp-features__img {
    margin-top: -80px;
    margin-left: -140px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-features__img {
        margin-top: -73px;
        margin-left: 0;
        max-width: 67%;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-features__img {
        margin-left: 16px;
        max-width: 93%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-features__img {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .tp-features__img {
        margin-top: -72px;
        max-width: 273px;
        margin-bottom: 20px;
        margin-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-features__img {
        margin-top: -72px;
        max-width: 362px;
        margin-bottom: 35px;
    }
}

.tp-features__img img {
    max-width: inherit;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-features__img img {
        max-width: 100%;
    }
}

.tp-features__single p {
    color: #9898a0;
    font-size: 16px;
    font-weight: 400;
}

.tp-features__shap-img {
    position: absolute;
    right: 0;
    bottom: -174px;
    animation: moving 9s linear infinite;
}
.service-item {
    width: 255px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.service-item-image {
    overflow: hidden;
    margin: 15px;
    height: 200px;
    width: 200px;
    border-radius: 100%;
    box-shadow: 1px 1px 5px #000000a6;
}

.service-title {
    font-size: 1.2rem;
    max-width: 194px;
    text-align: center;
    margin: 10px 0;
}

.tp-services__item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 20px 0px rgba(35, 35, 49, 0.06);
    padding: 40px;
    transition: 0.4s;
    padding-bottom: 37px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
    .tp-services__ptb {
        padding-top: 30px;
    }
}

.tp-services__content p {
    margin: 0;
}

.tp-services__icon {
    float: left;
    margin-right: 30px;
    flex: 0 0 auto;
    font-size: 40px;
    color: var(--tp-theme-2);
    font-weight: bold;
    transition: 0.3s;
}

.tp-services__number-count {
    font-size: 42px;
    color: #ebebeb;
    font-weight: 700;
    position: absolute;
    left: -8px;
    bottom: 20px;
    transform: rotate(-90deg);
    transition: 0.3s;
}

@media (max-width: 767px) {
    .tp-services__number-count {
        font-size: 37px;
        bottom: 15px;
    }
}

.tp-services__title-1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--tp-heading-1);
    transition: 0.3s;
}

.tp-services__title-1 a:hover {
    color: var(--tp-theme-1);
}

.tp-services__hover-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    width: 100%;
    height: 100%;
}

.tp-services__hover-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tp-services__hover-img::before {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--tp-heading-1);
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.9;
    transition: 0.3s;
}

.tp-services__tran {
    position: absolute;
    right: 0;
    bottom: 0;
}

.tp-services__tran::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--tp-common-white);
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.tp-services__shap {
    position: absolute;
    left: 202px;
    bottom: 227px;
    animation: moving 9s linear infinite;
}

.tp-services__item:hover .tp-services__hover-img {
    opacity: 1;
    visibility: visible;
}

.tp-services__item:hover .tp-services__number-count {
    color: red;
}

.tp-services__item:hover .tp-services__icon {
    color: var(--tp-common-white);
}

.tp-services__item:hover .tp-services__content h3 {
    color: var(--tp-common-white);
}

.tp-services__item:hover .tp-services__content p {
    color: #9898a0;
}

.tp-location-page-item {
    padding: 80px 60px;
    height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-location-page-item {
        padding: 30px 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-location-page-item {
        padding: 10px 14px;
    }
}

@media (max-width: 767px) {
    .tp-location-page-item {
        padding: 34px 3px;
    }
}

.tp-location-page-item .icon span {
    height: 120px;
    width: 120px;
    background-color: #761918;
    text-align: center;
    line-height: 135px;
    display: inline-block;
    font-size: 70px;
    border-radius: 50%;
    margin-right: 30px;
    color: #ffffff;
    transition: 0.4s;
}

.tp-location-page-item .icon span:hover {
    background-color: var(--tp-heading-1);
    color: #fff;
}

.tp-location-page-item .icon span::before {
    content: "";
    position: absolute;
    top: 3px;
    right: 43px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 30px;
}

.tp-location-page-item .text h3 {
    color: #ffffff;
}

.tp-location-page-item .text p {
    color: #ffffff;
}

.tp-location-page-item-2 .icon span {
    background-color: #232122;
    color: #fff;
}

.tp-location-page-item-2 .icon span:hover {
    background-color: var(--tp-theme-1);
    color: var(--tp-heading-1);
}

.tp-location-page-item-2 .icon span::before {
    background-color: #ffbf42;
}

.tp-location-page-item-2 .text h3 {
    color: #fff;
}

.tp-location-page-item-2 .text p {
    color: #fff;
}

.tp-location-page-item-3 .icon span {
    background-color: #c01f27;
    color: var(--tp-common-white);
}

.tp-location-page-item-3 .icon span:hover {
    background-color: var(--tp-theme-1);
    color: var(--tp-heading-1);
}

.tp-location-page-item-3 .icon span::before {
    background-color: var(--tp-theme-1);
}

.tp-location-page-item-3 .text h3 {
    color: var(--tp-common-white);
}

.tp-location-page-item-3 .text p {
    color: #fff;
}

.tp-contact-map iframe {
    height: 580px;
    width: 100%;
    margin-bottom: 0;
}

.contact-page__comment-input input {
    height: 60px;
    margin-bottom: 20px;
    border: 1px solid #c8c8c8;
}

.contact-page__comment-input textarea {
    height: 150px;
    margin-bottom: 20px;
    resize: none;
    border: 1px solid #c8c8c8;
}

.contact-page__comment-input input:focus, .contact-page__comment-input textarea:focus {
    border: 1px solid #c01f27;
}

.tp-contact__comment-input input:focus {
    border: 1px solid red;
}

.tp-contact-map {
    line-height: 0;
}

.tp-contact__inner-column {
    background: var(--tp-grey-1);
    padding: 60px;
    padding-top: 50px;
    margin-bottom: -140px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-contact__inner-column {
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-contact__inner-column {
        margin-bottom: 70px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-contact__inner-column {
        margin-bottom: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-contact__inner-column {
        margin-bottom: 100px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-contact__inner-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .tp-contact__inner-column {
        padding: 25px;
        margin-bottom: 14px;
    }
}

.tp-contact__contact-form h4 {
    font-size: 36px;
    color: var(--tp-heading-1);
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .tp-contact__contact-form h4 {
        font-size: 30px;
    }
}

.tp-contact__contact-form label {
    color: #767676;
    font-size: 16px;
}

input:focus {
    outline: none;
}

input::-ms-expand {
    display: none;
}

textarea:focus {
    outline: none;
}

textarea::-ms-expand {
    display: none;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
}

input:focus::-moz-placeholder {
    opacity: 0;
}

input:focus:-ms-input-placeholder {
    opacity: 0;
}

input:focus:-moz-placeholder {
    opacity: 0;
}

input::-webkit-input-placeholder {
    color: white;
}

textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}

textarea:focus::-moz-placeholder {
    opacity: 0;
}

textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

textarea:focus:-moz-placeholder {
    opacity: 0;
}



.main-logo a,.tp-footer__widget-logo {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 500;
    gap: 5px;
    position: relative;
    z-index: 3;
}

.tp-footer__widget-logo,.tp-footer__widget-logo:hover {
    color: #fff;
}

.tpoffcanvas__logo a {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 500;
    gap: 5px;
}

.tpoffcanvas__logo a img {
    width: 150px;
}

.tp-header__top.tp-header__he {
    background-color: #232122;
}

.reset-captcha {
    right: 4px;
    width: 24px;
    position: absolute;
    top: 10px;
    cursor: pointer;
}

@media(max-width: 500px) {
    .main-logo a {
        font-size: 2rem;
        width: 200px;
    }
    .circal {
        display: none;
    }

    .service-item-container {
        flex-wrap: nowrap !important;
        gap: 10px;
        width: 8500px;
    }

     .overflow-x-scroll{   
        overflow-x: scroll;
    }


    .pt-120 {
        padding-top: 20px;
    }
}
