@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Thin.ttf") format("truetype");
    font-weight: 100;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
}

/* CSS Index
============================
01. Variable CSS
02. Header
03. Mobile Menu
04. Search
05. OffCanvas
06. Slider
07. Banner
08. Breadcrumb
09. About
10. Services
11. Work
12. Consultation
13. Project
14. Choose
15. Faq
16. Team
17. Counter
18. Brand
19. Testimonial
20. CTA
21. Error
22. Blog
23. Contact
24. Footer
25. Preloader
============================
*/

/*=============================
	01. Variable CSS
===============================*/
:root {
    --tg-body-font-family: "Montserrat", sans-serif;
    --tg-heading-font-family: "Montserrat", sans-serif;
    --tg-primary-color: #4f8f8d;
    --tg-secondary-color: #22252f;
    --tg-dark: #000;
    --tg-section-background: #fff9f6;
    --tg-body-font-color: #616161;
    --tg-heading-font-color: #22252f;
    --tg-paragraph-color: #616161;
    --tg-body-font-size: 16px;
    --tg-body-font-weight: 400;
    --tg-heading-font-weight: 700;
    --tg-body-line-height: 1.8;
    --tg-heading-line-height: 1.2;
    --tg-blue: #0d6efd;
    --tg-indigo: #6610f2;
    --tg-purple: #6f42c1;
    --tg-pink: #d63384;
    --tg-red: #ff1127;
    --tg-orange: #fd7e14;
    --tg-yellow: #ffc107;
    --tg-green: #198754;
    --tg-teal: #20c997;
    --tg-cyan: #0dcaf0;
    --tg-white: #ffffff;
    --tg-gray: #a0a0a0;
    --tg-gray-two: #737272;
    --tg-gray-three: #949494;
    --facebook: #3b5998;
    --twitter: #00acee;
    --linkedin: #1976d2;
    --pinterest: #3b5998;
    --youtube: #c4302b;
    --skype: #00aff0;
}
body {
    font-family: var(--tg-body-font-family);
    font-weight: var(--tg-body-font-weight);
    font-size: var(--tg-body-font-size);
    line-height: var(--tg-body-line-height);
    color: var(--tg-body-font-color);
    font-style: normal;
}
img,
.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}
.f-left {
    float: left;
}
.f-right {
    float: right;
}
.fix {
    overflow: hidden;
}
a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}
a:focus,
.btn:focus,
button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
    color: var(--tg-primary-color);
    text-decoration: none;
}
a,
button {
    color: var(--tg-primary-color);
    outline: medium none;
    text-decoration: none;
}
.btn:focus,
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}
.uppercase {
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-font-color);
    margin-top: 0px;
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: var(--tg-heading-line-height);
    font-weight: var(--tg-heading-font-weight);
    text-transform: inherit;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}
.list-wrap {
    margin: 0px;
    padding: 0px;
}
.list-wrap li {
    list-style: none;
}
p {
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-body-font-weight);
    line-height: var(--tg-body-line-height);
    color: var(--tg-paragraph-color);
    margin-bottom: 15px;
}
hr {
    border-bottom: 1px solid var(--tg-primary-color);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}
label {
    color: var(--tg-body-font-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}
*::-moz-selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}
::selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}
*::-moz-placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}
*::placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}
.theme-overlay {
    position: relative;
}
.theme-overlay::before {
    background: var(--tg-primary-color) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
}
.separator {
    border-top: 1px solid var(--tg-primary-color);
}

/* Bootstrap 5 */
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    --bs-gutter-x: 30px;
}
.row.g-0 {
    --bs-gutter-x: 0;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}

/*=============================
	1. Button style
===============================*/
.btn {
    user-select: none;
    -moz-user-select: none;
    background: var(--tg-primary-color) none repeat scroll 0 0;
    border: medium none;
    border-radius: 5px;
    color: var(--tg-white);
    cursor: pointer;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 34px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transition: all 0.3s ease;
    vertical-align: middle;
    white-space: nowrap;
    font-family: var(--tg-heading-font-family);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: var(--tg-secondary-color);
}
.btn:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.btn:hover {
    color: var(--tg-white);
}
.btn.btn-two {
    background: var(--tg-white);
    color: var(--tg-secondary-color);
}
.btn.btn-two:hover {
    color: var(--tg-white);
}
.breadcrumb > .active {
    color: var(--tg-primary-color);
}

/* scrollUp */
.scroll-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: fixed;
    bottom: -10%;
    right: 30px;
    font-size: var(--tg-body-font-size);
    border-radius: 6px;
    z-index: 99;
    color: var(--tg-white);
    text-align: center;
    cursor: pointer;
    background: var(--tg-primary-color);
    transition: 1s ease;
    border: none;
}
.scroll-top.open {
    bottom: 30px;
}
.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0) 80%
    );
}
.scroll-top:hover {
    background: var(--tg-secondary-color);
}

/*=============================
	02. Header
===============================*/
.custom-container {
    max-width: 1830px;
}
.custom-container-two {
    max-width: 1560px;
    margin: 0 auto;
}
.transparent-header {
    position: absolute;
    left: 0%;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}

/* header-top */
.header-top-wrap {
    padding: 9px 0;
    background: var(--tg-secondary-color);
}
.header-top-left span {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    color: #d1d1d1;
}
.header-top-left span i {
    margin-right: 5px;
    color: var(--tg-white);
}
.header-top-social .list-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.header-top-social .list-wrap li a {
    width: 28px;
    height: 28px;
    border-radius: 50px;
    border: 1px solid var(--tg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--tg-gray);
    line-height: 1;
}
.header-top-social .list-wrap li a:hover {
    background: var(--tg-white);
    border-color: var(--tg-white);
    color: var(--tg-secondary-color);
}

/* header-logo-area */
.header-logo-area {
    padding: 22px 0 28px;
    background: var(--tg-white);
}
.header-info-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
.header-info-wrap .header-info-item {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 17px 25px;
    transition: 0.3s linear;
}
.header-info-wrap .header-info-item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 5px;
    border: 1px solid var(--tg-primary-color);
    font-size: 20px;
    color: var(--tg-primary-color);
    margin-right: 10px;
    transition: 0.3s ease-in-out;
}
.header-info-wrap .header-info-item .icon svg {
    width: 22px;
}
.header-info-wrap .header-info-item .content span {
    display: block;
    line-height: 1;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--tg-primary-color);
    margin-bottom: 8px;
    transition: 0.3s ease-in-out;
}
.header-info-wrap .header-info-item .content a {
    display: block;
    line-height: 1;
    font-size: 15px;
    font-weight: 500;
    color: var(--tg-secondary-color);
}
.header-info-wrap .header-info-item:hover .content a:hover,
.header-info-wrap .header-info-item.active .content a:hover {
    color: var(--tg-secondary-color);
}
.header-info-wrap .header-info-item:hover,
.header-info-wrap .header-info-item.active {
    background: var(--tg-primary-color);
}
.header-info-wrap .header-info-item:hover .icon,
.header-info-wrap .header-info-item.active .icon {
    color: var(--tg-white);
    border-color: var(--tg-white);
    border-radius: 50%;
}
.header-info-wrap .header-info-item:hover .content a,
.header-info-wrap .header-info-item:hover .content span,
.header-info-wrap .header-info-item.active .content a,
.header-info-wrap .header-info-item.active .content span {
    color: var(--tg-white);
}

/* menu */
.menu-area {
    background: rgba(34, 37, 47, 0.4);
    width: 100%;
}
.menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*	padding: 40px 0 0 0;*/
    margin-top: 70px;
}
.sticky-menu .menu-nav {
    /*    padding: 10px 0!important;*/
    margin-top: 0px !important;
}
.logo.sticky-logo {
    display: none;
}
.navbar-wrap {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0;
}
.navbar-wrap > ul > li {
    list-style: none;
    display: block;
    position: relative;
    margin-right: 40px;
}

.navbar-wrap ul li a {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tg-dark);
    /*    padding: 15px 0;*/
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
    font-family: var(--tg-heading-font-family);
}

.navbar-wrap > ul > li.active > a,
.navbar-wrap > ul > li:hover > a {
    color: var(--tg-primary-color);
}
.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}
.header-action > ul {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.header-action > ul li {
    position: relative;
    margin-left: 30px;
}
.header-action ul li:first-child {
    margin-left: 0;
}
.header-action ul li a {
    color: var(--tg-heading-font-color);
    font-size: 14px;
}
.header-action ul li.header-search a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tg-secondary-color);
    color: var(--tg-white);
    border: 2px solid var(--tg-primary-color);
    font-size: 16px;
}
.header-action ul li.header-search a:hover {
    background: var(--tg-primary-color);
}
.header-action .header-btn .btn {
    color: var(--tg-white);
    font-size: 16px;
}
.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 290px;
    border: 1px solid #f5f5f5;
    background: var(--tg-white);
    margin: 15px 0 0 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    border-radius: 0 0 5px 5px;
}
.navbar-wrap ul li .sub-menu .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
}
.navbar-wrap ul li .sub-menu li {
    margin-left: 0;
    text-align: left;
    display: block;
}
.navbar-wrap ul li .sub-menu li a {
    padding: 9px 15px 9px 25px;
    line-height: 1;
    font-weight: 500;
    color: var(--tg-secondary-color);
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}
.navbar-wrap ul li .sub-menu li a::before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--tg-primary-color);
    transition: 0.3s ease-in-out;
}
.navbar-wrap ul li .sub-menu > li.active > a::before,
.navbar-wrap ul li .sub-menu li a:hover::before {
    width: 10px;
    margin-right: 5px;
}
.navbar-wrap ul li .sub-menu > li.active > a,
.navbar-wrap ul li .sub-menu li a:hover {
    color: var(--tg-primary-color);
}
.navbar-wrap ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.sticky-menu {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: var(--tg-white);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
}
.sticky-menu .navbar-wrap ul li a {
    color: var(--tg-secondary-color);
}
.sticky-menu .navbar-wrap > ul > li.active > a,
.sticky-menu .navbar-wrap > ul > li:hover > a {
    color: var(--tg-primary-color);
}

/* header-two */
.header-style-two .navbar-wrap ul {
    margin: 0 auto;
}
.header-style-two .navbar-wrap ul li a {
    padding: 52px 0;
}
.header-style-two .menu-area {
    background: rgba(0, 0, 0, 0.4);
}
.header-style-two .header-action .header-btn .btn {
    color: var(--tg-primary-color);
}
.header-style-two .sticky-menu {
    background: var(--tg-white);
}
.header-style-two .sticky-menu .header-action .header-btn .btn {
    background: var(--tg-primary-color);
    color: var(--tg-white);
}
.header-style-two .sticky-menu .logo {
    display: none;
}
.header-style-two .sticky-menu .logo.sticky-logo {
    display: block;
}

/* header-three */
.header-top-wrap-two {
    padding: 16px 0;
}
.header-top-menu .list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}
.header-top-menu .list-wrap li {
    position: relative;
}
.header-top-menu .list-wrap li::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--tg-white);
}
.header-top-menu .list-wrap li:last-child::before {
    display: none;
}
.header-top-menu .list-wrap li a {
    font-size: 14px;
    color: var(--tg-white);
    display: block;
    line-height: 1;
}
.header-top-menu .list-wrap li a:hover {
    color: var(--tg-primary-color);
}
.header-top-social-two .list-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.header-top-social-two .list-wrap li a {
    color: #b9b9b9;
    font-size: 14px;
    line-height: 1;
}
.header-top-social-two .list-wrap li a:hover {
    color: var(--tg-white);
}
.header-style-three .logo img {
    max-height: 50px;
}
.header-style-three .navbar-wrap ul {
    margin: 0 0 0 auto;
}
.header-style-three .header-action > ul {
    margin-left: 35px;
}
.header-style-three .menu-area {
    background: transparent;
}
.header-style-three .menu-nav {
    background: var(--tg-white);
    border-radius: 10px;
    padding: 0 20px;
}
.header-style-three .navbar-wrap ul li a {
    color: var(--tg-secondary-color);
}
.header-style-three .navbar-wrap > ul > li.active > a,
.header-style-three .navbar-wrap > ul > li:hover > a {
    color: var(--tg-primary-color);
}
.header-style-three .sticky-menu {
    background: var(--tg-white);
}

/* header-four */
.header-style-four .navbar-wrap ul {
    margin: 0 auto;
}
.header-style-four .menu-area {
    background: transparent;
    /*    padding: 10px 0;*/
}

.header-style-four .menu-area.sticky-menu {
    padding: 0;
    background: var(--tg-white);
}
.header-style-four .logo img {
    height: auto;
    width: 350px;
}
.header-style-four .menu-area.sticky-menu .logo {
    display: none;
}
.header-style-four .menu-area.sticky-menu .logo.d-none {
    display: block !important;
}
.header-style-four .header-action ul li.header-search a {
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
    background: transparent;
    color: var(--tg-white);
    border: none;
    font-size: 25px;
    line-height: 1;
}
.header-style-four .header-action ul li.header-search a:hover {
    color: var(--tg-primary-color);
}
.offcanvas-menu .menu-tigger {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    background: var(--tg-white);
    border-radius: 5px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}
.offcanvas-menu .menu-tigger span {
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: var(--tg-primary-color);
    transition: 0.15s linear;
}
.offcanvas-menu .menu-tigger span:nth-child(3) {
    width: 23px;
    margin-left: 7.5px;
}
.offcanvas-menu .menu-tigger:hover span:nth-child(3) {
    margin-left: 0;
    width: 30px;
}
.offcanvas-menu .menu-tigger:hover span:nth-child(1) {
    width: 23px;
    margin-left: 7.5px;
}
.header-style-four .menu-area.sticky-menu .header-action ul li.header-search a {
    color: var(--tg-primary-color);
}
.header-style-four .menu-area.sticky-menu .offcanvas-menu .menu-tigger {
    background: var(--tg-primary-color);
}
.header-style-four .menu-area.sticky-menu .offcanvas-menu .menu-tigger span {
    background: var(--tg-white);
}

/*=============================
	03. Mobile Menu
===============================*/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--tg-white);
    margin-right: 30px;
    top: 15px;
}
.nav-logo img {
    width: 150px;
}
.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}
.mobile-menu .navbar-collapse {
    display: block !important;
}
.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}
.mobile-menu-visible {
    overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu .navigation li.current > a:before {
    height: 100%;
}
.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}
.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}
.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--tg-white);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}
.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}
.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: #292b37;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}
.mobile-menu .navigation ul {
    padding: 0;
    margin: 0;
}
.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--tg-heading-font-color);
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.mobile-menu .navigation li ul li > a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: uppercase;
}
.mobile-menu .navigation li ul li ul li a {
    margin-left: 40px;
}
.mobile-menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
}
.mobile-menu .navigation li > a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 15px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: var(--tg-white);
    background: var(--tg-primary-color);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn i {
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: var(--tg-primary-color);
}
.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
    display: none;
}
.mobile-menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}
.mobile-menu .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: var(--tg-heading-font-color);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--tg-gray);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.mobile-menu .social-links li a:hover {
    border-color: var(--tg-primary-color);
    background: var(--tg-primary-color);
    color: var(--tg-white);
}
.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 27px;
    cursor: pointer;
    line-height: 1;
    color: var(--tg-primary-color);
    display: none;
    margin-top: 0;
    padding: 5px 10px;
    border: 2px solid var(--tg-primary-color);
}

/*=============================
	06. Slider
===============================*/

.slider-bg-three {
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0;
}
.custom-car-slide {
    background-color: #fff;
    background-repeat: no-repeat !important;
    background-position: left top !important;
    padding: 0 !important;
    min-height: 900px;
    display: flex !important;
    align-items: center;
    position: relative;
}
.slider-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    object-fit: fill;
    object-position: left top;

    z-index: 0;
}
.z-index-5 {
    z-index: 5;
    position: relative;
}
.hero-top-title {
    font-family: "Montserrat", sans-serif;
    font-size: 75px;
    letter-spacing: 18px;
    font-weight: 600;
    color: var(--tg-red);
    margin-bottom: 50px;
    line-height: 0.2;
}

html[lang="en"] .hero-top-title {
    font-size: 52px;
}

.hero-top-title .highlight-text {
    color: var(--tg-white);
}

.slider-content-three {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.custom-stats {
    font-family: "Montserrat", sans-serif;
    font-size: 125px;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 1.8px;
    color: var(--tg-dark);
    text-transform: uppercase;
}

.custom-stats span {
    display: block;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.1;
}

.custom-stats span:nth-child(1) {
    font-size: 116px;
}

.custom-stats span:nth-child(2) {
    font-size: 53px;
}

.custom-stats span:nth-child(3) {
    font-size: 47px;
}

.slider-car-image {
    position: absolute;
    right: 0;
    bottom: -20%;
    z-index: 5;
}

.slider-car-image img {
    width: 100%;
    max-width: 1259px;
    height: auto;
}

.left-shape {
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    width: 120px;
    height: 220px;
    background-color: rgba(46, 128, 127, 0.85);
    z-index: 2;
}

.right-shape {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 25%;
    height: 80%;
    background-color: rgba(46, 128, 127, 0.85);
    z-index: 2;
}

.right-top-shape {
    position: absolute;
    right: 10%;
    top: 0;
    width: 25%;
    height: 70px;
    background-color: rgba(46, 128, 127, 0.85);
    z-index: 2;
}

.slider-area-three .slick-dots {
    display: none !important;
}

/*=============================
	07. Banner
===============================*/
.banner-bg {
    background-size: cover;
    background-position: center;
    min-height: 960px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 240px 0 240px;
}
.banner-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.banner-content {
    text-align: center;
    margin-top: -40px;
}
.banner-content .title {
    margin-bottom: 35px;
    color: var(--tg-white);
    font-size: 70px;
    text-transform: uppercase;
    line-height: 1.2;
}
.banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/*=============================
	08. Breadcrumb
===============================*/
.breadcrumb-area.breadcrumb-bg {
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: visible;
    background-color: #fff;
    padding: 0 !important;
}

.breadcrumb-area.breadcrumb-bg-product {
    min-height: 300px;
    display: flex;
    align-items: end;
    position: relative;
    z-index: 1;
    overflow: visible;
    background-color: #fff;
    padding: 0 !important;
}

.breadcrumb-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    z-index: 0;
    filter: brightness(0.9) contrast(1.1) saturate(1.05);
}
.breadcrumb-area.breadcrumb-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.2) 40%,
        rgba(255, 255, 255, 0) 100%
    );

    z-index: 1;
    pointer-events: none;
}

.brand-logo {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 90%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    z-index: 5;
}

.breadcrumb-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-overlay-shape {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 25%;
    height: 100%;
    background-color: rgba(46, 128, 127, 0.85);
    z-index: 2;
}

.hero-top-title2 {
    font-family: "Montserrat", sans-serif;
    font-size: 75px;

    font-weight: 600;
    color: var(--tg-white);
    margin-bottom: 0;
    position: relative;
    z-index: 5;
    letter-spacing: 18px;
    line-height: 0.2;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: start;
    align-items: center;
}
html[lang="en"] .hero-top-title2 {
    letter-spacing: 7px;
    font-size: 65px;
    line-height: 1.3;
}

.brand-detail {
    position: relative;
    z-index: 2;
}
/*=============================
	09. About
===============================*/
.section-title .sub-title {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--tg-heading-font-family);
    color: var(--tg-primary-color);
    gap: 15px;
    margin-bottom: 30px;
}
.section-title .sub-title strong {
    transform: translateY(-2px);
}
.section-title .sub-title strong svg path {
    color: var(--tg-primary-color);
}
.section-title .title {
    margin-bottom: 0;
    font-size: 35px;
}
.word {
    display: inline-flex;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition-delay: calc(70ms * var(--word-index) + 0ms);
}
.innerAnimated .word {
    opacity: 1;
}
.char {
    display: inline-flex;
    opacity: 0;
    transform: rotateX(90deg);
    transform-origin: bottom;
    transition:
        opacity 1.1s cubic-bezier(0.65, 0.05, 0.36, 1),
        transform 1.1s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition-delay: calc(30ms * var(--char-index) + 10ms);
}
.innerAnimated .char {
    transform: rotateX(0deg);
    opacity: 1;
}
[data-animation^="innerAnimated"] {
    visibility: hidden;
}
.innerAnimated {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
}
.about-img-wrap {
    position: relative;
    padding-right: 100px;
    padding-bottom: 160px;
}
.about-img-wrap img {
    border-radius: 10px;
}
.about-img-wrap img:nth-child(2) {
    position: absolute;
    right: 30px;
    bottom: 0;
}
.about-img-wrap .play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--tg-primary-color);
    color: var(--tg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    line-height: 0;
    margin: 10px;
    left: 15px;
    bottom: 30px;
    z-index: 1;
}
.about-img-wrap .play-btn::before {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed var(--tg-secondary-color);
    background: transparent;
    z-index: -1;
    animation: btnRotate 15s linear infinite;
}
.about-content > p {
    margin-bottom: 45px;
}
.about-list .list-wrap {
    margin-bottom: 50px;
}
.about-list .list-wrap li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.about-list .list-wrap li:last-child {
    margin-bottom: 0;
}
.about-list .list-wrap li .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px dashed var(--tg-primary-color);
    flex: 0 0 auto;
    font-size: 25px;
    color: var(--tg-primary-color);
    margin-right: 10px;
    line-height: 0;
}
.about-list .list-wrap li .content .title {
    font-size: 20px;
    margin-bottom: 8px;
}
.about-list .list-wrap li .content p {
    margin-bottom: 0;
}
.about-content-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.about-content-bottom .call-btn {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--tg-secondary-color);
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
}
.about-content-bottom .call-btn i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tg-secondary-color);
    color: var(--tg-white);
    font-size: 15px;
    margin-right: 12px;
}
.about-content-bottom .call-btn:hover {
    color: var(--tg-primary-color);
}
.rotateme {
    -webkit-animation-name: btnRotate;
    animation-name: btnRotate;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes btnRotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes btnRotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

/* about-two */
.about-area-inner .col-45 {
    width: 44.5%;
    flex: 0 0 auto;
}
.about-area-inner .col-55 {
    width: 55.5%;
    flex: 0 0 auto;
}
.about-img-wrap-two {
    display: flex;
    align-items: center;
    gap: 20px;
}
.about-img-wrap-two img:nth-child(1) {
    border-radius: 10px 0 0 10px;
}
.about-img-wrap-two img:nth-child(2) {
    border-radius: 0 10px 10px 0;
}
.about-content-two {
    margin-left: 20px;
}
.section-title.title-style-three .sub-title {
    font-size: 16px;
    color: #838383;
    letter-spacing: 3.2px;
    margin-bottom: 20px;
}
.about-tab {
    width: 90%;
}
.about-tab .nav-tabs {
    border-bottom: none;
    gap: 20px;
    margin-bottom: 30px;
}
.about-tab .nav-tabs .nav-link {
    margin-bottom: 0;
    background: #fff7f3;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--tg-primary-color);
    font-family: var(--tg-heading-font-family);
    line-height: 1;
    padding: 16px 23px;
    border-radius: 5px;
}
.about-tab .nav-tabs .nav-link.active {
    background: var(--tg-primary-color);
    color: var(--tg-white);
}
.about-tab .tab-content p {
    margin-bottom: 30px;
}
.about-list-two .list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 0;
}
.about-list-two .list-wrap li {
    display: flex;
    align-items: baseline;
    width: 50%;
    font-weight: 500;
    color: var(--tg-secondary-color);
    gap: 7px;
}

/*=============================
	10. Services
===============================*/
.services-area {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 120px;
}
.services-area::before {
    content: "";
    width: 79%;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: var(--tg-section-background);
    z-index: -1;
}
.services-item {
    border-radius: 10px;
    background: var(--tg-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
    padding: 90px 20px 80px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.services-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: var(--tg-primary-color);
    z-index: -1;
    transition: 0.3s ease-in-out;
    opacity: 0;
}
.services-item:hover::before {
    height: 100%;
    opacity: 1;
}
.services-icon {
    font-size: 90px;
    line-height: 0;
    color: var(--tg-primary-color);
    margin-bottom: 40px;
    transition: 0.3s ease-in-out;
}
.services-content .title {
    font-size: 30px;
    margin-bottom: 25px;
}
.services-content .link-btn {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration-line: underline;
    text-transform: uppercase;
    line-height: normal;
    display: inline-block;
    color: #848484;
}
.services-content .number {
    width: 50px;
    height: 50px;
    border: 1px solid #ababab;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    -webkit-text-stroke: 1px #ababab;
    color: transparent;
    position: absolute;
    top: 40px;
    right: 40px;
    transition: 0.3s ease-in-out;
}
.services-item:hover .services-content .link-btn,
.services-item:hover .services-content .title,
.services-item:hover .services-icon {
    color: var(--tg-white);
}
.services-item:hover .services-content .title a:hover {
    color: var(--tg-white);
}
.services-item:hover .services-content .number {
    border-color: var(--tg-white);
    -webkit-text-stroke: 1px var(--tg-white);
}
.services-scrollbar {
    margin-top: 60px;
}
.services-scrollbar .swiper-scrollbar {
    display: block;
    width: 100%;
    height: 2px;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    background: transparent;
    margin: 11px 0;
}
.services-scrollbar .swiper-scrollbar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #c9c9c9;
    pointer-events: none;
}
.services-scrollbar .swiper-scrollbar .swiper-scrollbar-drag {
    height: 24px;
    background: var(--tg-primary-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    top: -11px;
    z-index: 1;
}

/* services-two */
.services-area-two {
    position: relative;
    padding: 140px 0 100px;
}
.services-shape {
    position: absolute;
    left: 0;
    bottom: 9%;
    z-index: -1;
}
.section-title.title-style-two .sub-title {
    font-size: 16px;
    gap: 10px;
    margin-bottom: 22px;
}
.section-title.title-style-two.text-center .sub-title::before {
    content: "";
    width: 37px;
    height: 2px;
    background: var(--tg-primary-color);
}
.section-title.title-style-two .sub-title::after {
    content: "";
    width: 37px;
    height: 2px;
    background: var(--tg-primary-color);
}
.services-item-two {
    margin-bottom: 40px;
}
.services-thumb-two {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.services-thumb-two img {
    width: 370px;
    height: 300px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-item-two:hover .services-thumb-two img {
    transform: scale(1.1);
}
.services-icon-two {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-white);
    border-radius: 10px;
    font-size: 45px;
    line-height: 0;
    color: var(--tg-primary-color);
    transition: 0.3s ease-in-out;
}
.services-item-two:hover .services-icon-two {
    background: var(--tg-primary-color);
    color: var(--tg-white);
}
.services-content-two {
    background: var(--tg-white);
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
    padding: 20px 30px;
    transition: 0.3s ease-in-out;
}
.services-content-two .title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
}
.services-content-two .title a:hover {
    color: var(--tg-white);
}
.services-content-two .link-btn {
    display: inline-block;
    color: #848484;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.services-content-two .link-btn:hover {
    color: var(--tg-secondary-color);
}
.services-item-two:hover .services-content-two {
    background: var(--tg-primary-color);
}
.services-item-two:hover .services-content-two .link-btn,
.services-item-two:hover .services-content-two .title {
    color: var(--tg-white);
}

/* services-three */
.services-area-three {
    margin-top: -188px;
    padding: 0 0 90px;
}
.services-item-three {
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: var(--tg-white);
    padding: 45px 40px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 30px;
}
.services-item-three::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: var(--tg-primary-color);
    z-index: -1;
    transition: 0.3s ease-in-out;
    opacity: 0;
}
.services-item-three.active::before,
.services-item-three:hover::before {
    opacity: 1;
    height: 100%;
}
.services-icon-three {
    line-height: 0;
    font-size: 75px;
    color: var(--tg-primary-color);
    margin-bottom: 20px;
    transition: 0.3s ease-in-out;
}
.services-content-three .title {
    font-size: 30px;
    margin-bottom: 40px;
    line-height: 1.3;
}
.services-content-three .title a:hover {
    color: var(--tg-white);
}
.services-content-three .link-arrow {
    font-size: 30px;
    line-height: 1;
    -webkit-text-stroke: 1px var(--tg-secondary-color);
    color: transparent;
}
.services-item-three.active .services-content-three .link-arrow,
.services-item-three:hover .services-content-three .link-arrow,
.services-item-three.active .services-content-three .title,
.services-item-three:hover .services-content-three .title,
.services-item-three.active .services-icon-three,
.services-item-three:hover .services-icon-three {
    color: var(--tg-white);
}
.services-item-three.active .services-content-three .link-arrow,
.services-item-three:hover .services-content-three .link-arrow {
    -webkit-text-stroke: 1px transparent;
}

/* services-four */
.services-area-four {
    background: var(--tg-section-background);
    padding: 120px 0 90px;
}
.services-item-four {
    border-radius: 20px;
    background: var(--tg-white);
    padding: 35px 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.services-item-four::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: var(--tg-primary-color);
    z-index: -1;
    transition: 0.3s ease-in-out;
    opacity: 0;
}
.services-item-four.active::before,
.services-item-four:hover::before {
    opacity: 1;
    height: 100%;
}
.services-content-four .services-content-top {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.services-icon-four {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tg-primary-color);
    border-radius: 50%;
    line-height: 0;
    font-size: 22px;
    color: var(--tg-primary-color);
    flex: 0 0 auto;
    margin-right: 15px;
    transition: 0.3s ease-in-out;
}
.services-item-four.active .services-icon-four,
.services-item-four:hover .services-icon-four {
    border-color: var(--tg-white);
    color: var(--tg-white);
}
.services-content-four .title {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
}
.services-content-four .title a:hover {
    color: var(--tg-white);
}
.services-content-four p {
    margin-bottom: 25px;
    transition: 0.3s ease-in-out;
}
.services-content-four .link-btn {
    color: #848484;
    font-family: var(--tg-heading-font-family);
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.services-content-four .link-btn:hover {
    text-decoration: underline;
}
.services-item-four.active .services-content-four .link-btn,
.services-item-four.active .services-content-four p,
.services-item-four.active .services-content-four .title,
.services-item-four:hover .services-content-four .link-btn,
.services-item-four:hover .services-content-four p,
.services-item-four:hover .services-content-four .title {
    color: var(--tg-white);
}

/* services-five */
.section-title.title-style-four .sub-title {
    display: block;
    align-items: center;
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--tg-heading-font-family);
    color: var(--tg-primary-color);
    margin-bottom: 15px;
}
.services-item-five {
    margin-bottom: 30px;
}
.services-thumb-five {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.services-thumb-five img {
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 370px;
    height: 270px;
    object-fit: cover;
}
.services-item-five:hover .services-thumb-five img {
    transform: scale(1.1);
}
.services-content-five {
    border-radius: 0px 0px 10px 10px;
    background: var(--tg-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
}
.services-content-five .icon {
    width: 100px;
    height: auto;
    min-height: 90px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-primary-color);
    color: var(--tg-white);
    line-height: 0;
    font-size: 45px;
}
.services-content-five .content {
    padding: 14px 15px;
}
.services-content-five .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}
.services-content-five .link-btn {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #848484;
    line-height: 1;
}
.services-content-five .link-btn:hover {
    color: var(--tg-primary-color);
}

/* services-details */
.services-sidebar {
    position: sticky;
    top: 110px;
}
.services-widget {
    margin-bottom: 40px;
}
.services-widget:last-child {
    margin-bottom: 0;
}
.services-cat-list .list-wrap {
    border-radius: 10px;
    overflow: hidden;
}
.services-cat-list .list-wrap li {
    margin-bottom: 2px;
}
.services-cat-list .list-wrap li:last-child {
    margin-bottom: 0;
}
.services-cat-list .list-wrap li a {
    font-size: 20px;
    font-weight: 600;
    color: var(--tg-secondary-color);
    background: #fbf6f3;
    display: block;
    line-height: 1.2;
    padding: 18px 40px;
}
.services-cat-list .list-wrap li.active a,
.services-cat-list .list-wrap li a:hover {
    color: var(--tg-white);
    background: var(--tg-primary-color);
}
.services-sidebar .services-contact {
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.services-sidebar .services-contact::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}
.services-sidebar .services-contact span {
    display: block;
    color: var(--tg-white);
    line-height: 1;
    margin-bottom: 10px;
}
.services-sidebar .services-contact .title {
    margin-bottom: 25px;
    color: var(--tg-white);
    font-size: 30px;
}
.services-details-wrap {
    margin-left: 10px;
}
.services-details-img {
    margin-bottom: 30px;
}
.services-details-img img {
    border-radius: 10px;
}
.services-details-content .title {
    margin-bottom: 15px;
    font-size: 40px;
}
.services-details-content p {
    margin-bottom: 30px;
}
.services-details-content .bold-info {
    font-style: italic;
    font-weight: 500;
    color: var(--tg-secondary-color);
}
.service-quality-wrap .title-two {
    margin-bottom: 0;
    font-size: 24px;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 25px;
    margin-bottom: 20px;
}
.service-quality-wrap .sq-item {
    margin-bottom: 30px;
    margin-top: 10px;
}
.service-quality-wrap .sq-item .thumb img {
    border-radius: 10px 10px 0 0;
}
.service-quality-wrap .sq-item .content {
    border-radius: 0px 0px 10px 10px;
    background: var(--tg-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 25px;
}
.service-quality-wrap .sq-item .content .title {
    font-size: 23px;
    margin-bottom: 10px;
}
.service-quality-wrap .sq-item .content p {
    margin-bottom: 0;
}
.services-faq-wrap .faq-wrap-two {
    padding: 60px 70px 40px;
    margin-left: 0;
    margin-top: 50px;
}

/*=============================
	11. Work
===============================*/
.work-item {
    text-align: center;
    border-radius: 10px;
    background: var(--tg-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    padding: 75px 20px 40px;
    position: relative;
    margin-top: 40px;
    transition: 0.3s linear;
    margin-bottom: 30px;
}
.work-item-wrap .row [class*="col-"]:nth-child(odd) .work-item {
    padding: 40px 20px 75px;
    margin-top: 0;
    margin-bottom: 70px;
}
.work-item.active,
.work-item:hover {
    background: var(--tg-primary-color);
}
.work-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border: 1px solid var(--tg-primary-color);
    border-radius: 50%;
    margin: 0 auto;
    color: var(--tg-primary-color);
    font-size: 30px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tg-white);
    transition: 0.3s linear;
}
.work-item-wrap .row [class*="col-"]:nth-child(odd) .work-item .work-icon {
    top: auto;
    bottom: -40px;
}
.work-item.active .work-icon,
.work-item:hover .work-icon {
    border-color: var(--tg-white);
    background: var(--tg-primary-color);
    color: var(--tg-white);
}
.work-content span {
    color: #838383;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: block;
    line-height: 1;
    margin-bottom: 12px;
    transition: 0.3s linear;
}
.work-content .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: 0.3s linear;
}
.work-content p {
    margin-bottom: 0;
    transition: 0.3s linear;
}
.work-item.active .work-content p,
.work-item.active .work-content .title,
.work-item.active .work-content span,
.work-item:hover .work-content p,
.work-item:hover .work-content .title,
.work-item:hover .work-content span {
    color: var(--tg-white);
}

/*=============================
	12. Consultation
===============================*/
.consultation-area {
    background: var(--tg-section-background);
    padding: 120px 0;
    position: relative;
}
.consultation-form .form-grp {
    margin-bottom: 30px;
}
.consultation-form .form-grp textarea,
.consultation-form .form-grp input {
    width: 100%;
    border: none;
    background: transparent;
    border-bottom: 1px solid #d6d6d6;
    padding: 0 0 5px;
    font-size: 15px;
    color: var(--tg-secondary-color);
    line-height: 1;
    display: block;
}
.consultation-form .form-grp textarea::placeholder,
.consultation-form .form-grp input::placeholder {
    font-size: 15px;
    color: #808080;
    line-height: 1;
}
.consultation-form .form-grp textarea {
    min-height: 110px;
    max-height: 110px;
}
.consultation-content {
    margin-right: 50px;
}
.consultation-img {
    background-size: cover;
    background-position: center;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

/* consultation-two */
.consultation-area-two {
    position: relative;
    /*    background: var(--tg-white);*/
}

.consultation-bg {
    background-image: url(../img/images/contact-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.consultation-content.consultation-content-two {
    margin-left: 70px;
}
.consultation-img-two {
    background-size: cover;
    background-position: center;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.consultation-img-two .play-btn {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-primary-color);
    color: var(--tg-white);
    border-radius: 50%;
    font-size: 30px;
    line-height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/*=============================
	13. Project
===============================*/
.project-area {
    position: relative;
    z-index: 1;
    padding: 120px 0 0;
}
.project-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60%;
    background: #0f171b;
    z-index: -1;
}
.section-title.white-title .title {
    color: var(--tg-white);
}
.project-item-wrap .row {
    --bs-gutter-x: 45px;
}
.project-item-wrap .row [class*="col-"] {
    padding: 0 22.5px;
}
.project-item {
    position: relative;
    overflow: hidden;
}
.project-thumb img {
    border-radius: 5px;
    width: 418px;
    height: 478px;
    object-fit: cover;
}
.project-content {
    position: absolute;
    left: 40px;
    right: 0;
    bottom: 35px;
    background: var(--tg-white);
    border-radius: 5px 0px 0px 5px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
    padding: 40px 40px;
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateX(200px);
}
.project-item.active .project-content,
.project-item:hover .project-content {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.project-content span {
    display: block;
    line-height: 1;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--tg-primary-color);
    font-family: var(--tg-heading-font-family);
    margin-bottom: 10px;
}
.project-content .title {
    margin-bottom: 0;
    font-size: 24px;
}

/* project-two */
.project-item-two {
    margin-bottom: 40px;
}
.project-thumb-two {
    padding-right: 30px;
}
.project-thumb-two img {
    border-radius: 10px;
}
.project-content-two {
    border-radius: 10px;
    background: var(--tg-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
    padding: 40px 25px 40px 40px;
    margin-left: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in-out;
}
.project-item-two:hover .project-content-two {
    background: var(--tg-primary-color);
}
.project-content-two span {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--tg-primary-color);
    font-family: var(--tg-heading-font-family);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    transition: 0.3s ease-in-out;
}
.project-content-two .title {
    font-size: 24px;
    margin-bottom: 0;
}
.project-content-two .title a:hover {
    color: var(--tg-white);
}
.project-item-two:hover .project-content-two .title,
.project-item-two:hover .project-content-two span {
    color: var(--tg-white);
}
.project-active-two [class*="col-"] {
    padding: 0 15px;
}
.project-active-two .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 10px;
    margin-top: 20px;
}
.project-active-two .slick-dots li {
    list-style: none;
    line-height: 0;
}
.project-active-two .slick-dots li button {
    text-indent: -9999999999px;
    border: none;
    background: #ececec;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    line-height: 1;
}
.project-active-two .slick-dots li.slick-active button {
    background: var(--tg-primary-color);
}

/* project-three */
.project-item-three {
    position: relative;
    overflow: hidden;
}
.project-thumb-three {
    overflow: hidden;
    border-radius: 10px;
}
.project-thumb-three img {
    width: 100%;
    height: 660px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}
.project-item-three:hover .project-thumb-three img {
    transform: scale(1.1);
}
.project-content-three {
    background: var(--tg-white);
    border-radius: 20px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
    padding: 40px 40px;
    width: 400px;
    position: absolute;
    left: 40px;
    bottom: 45px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-150px);
    opacity: 0;
    visibility: hidden;
}
.slick-current.slick-active .project-item-three .project-content-three,
.project-item-three:hover .project-content-three {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.project-content-three span {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--tg-primary-color);
    font-family: var(--tg-heading-font-family);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}
.project-content-three .title {
    margin-bottom: 0;
    font-size: 24px;
}
.project-active-three {
    --bs-gutter-x: 50px;
}
.project-active-three [class*="col-"] {
    padding: 0 25px;
}
.project-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 50px;
}
.project-nav .slick-arrow {
    border: none;
    border-radius: 5px;
    background: var(--tg-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 0;
    -webkit-text-stroke: 1px var(--tg-secondary-color);
    color: transparent;
}
.project-nav .slick-arrow:hover {
    color: var(--tg-white);
    background: var(--tg-primary-color);
    -webkit-text-stroke: transparent;
}

/* project-four */
.project-item-four {
    position: relative;
    margin-bottom: 30px;
}
.project-thumb-four {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.project-thumb-four::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35%;
    border-radius: 20px;
    background: #000;
    filter: blur(100px);
    pointer-events: none;
}
.project-content-four {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px 60px 60px 60px;
}
.project-content-four span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--tg-heading-font-family);
    line-height: 1;
    text-transform: uppercase;
    color: var(--tg-white);
    margin-bottom: 10px;
}
.project-content-four .title {
    margin-bottom: 0;
    color: var(--tg-white);
    font-size: 30px;
}

/* inner-project */
.inner-project-item-wrap .row {
    --bs-gutter-x: 50px;
}
.inner-project-item-wrap .project-item-three {
    margin-bottom: 50px;
}
.btn.btn-three {
    background: #fff6f1;
    color: var(--tg-primary-color);
}
.btn.btn-three:hover {
    color: var(--tg-white);
}
.btn.btn-three::before {
    background: var(--tg-primary-color);
}

/* project-details */
.project-details-img {
    margin-bottom: 50px;
}
.project-details-img img {
    border-radius: 10px;
}
.project-details-content .pd-inner-content .title {
    font-size: 40px;
    margin-bottom: 22px;
}
.project-details-content p {
    margin-bottom: 30px;
}
.project-details-content .pd-inner-content p {
    margin-bottom: 30px;
}
.project-details-content .title-two {
    font-size: 30px;
    margin-bottom: 12px;
}
.project-details-info {
    border-radius: 10px;
    background: var(--tg-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 25px;
    position: sticky;
    top: 100px;
}
.project-details-info .info-list .list-wrap li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.project-details-info .info-list .list-wrap li:last-child {
    margin-bottom: 0;
}
.project-details-info .info-list .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--tg-primary-color);
    color: var(--tg-primary-color);
    margin-right: 20px;
    flex: 0 0 auto;
}
.project-details-info .info-list .content span {
    display: block;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
}
.project-details-info .info-list .content .title {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
}
.project-details-social {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--tg-secondary-color);
    padding-top: 30px;
    margin-top: 40px;
}
.project-details-social .title {
    margin-bottom: 0;
    font-size: 15px;
}
.project-details-social .list-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}
.project-details-social .list-wrap li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tg-secondary-color);
    color: var(--tg-white);
    font-size: 15px;
}
.project-details-social .list-wrap li a:hover {
    background: var(--tg-primary-color);
}
.pd-list-item {
    border-radius: 10px;
    border: 1px solid #c3c3c3;
    padding: 40px 32px 35px;
    margin-bottom: 30px;
}
.pd-list-item .icon {
    font-size: 55px;
    line-height: 0;
    color: var(--tg-primary-color);
    margin-bottom: 15px;
}
.pd-list-item .content .title {
    margin-bottom: 10px;
    font-size: 24px;
}
.pd-list-item .content p {
    margin-bottom: 0;
}
.project-details-list-wrap {
    margin: 20px 0 0;
}
.prev-next-post-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.prev-next-post-wrap .btn {
    text-transform: capitalize;
    gap: 5px;
}
.project-active-five [class*="col-"] {
    padding: 0 15px;
}

/*=============================
	14. Choose
===============================*/
.choose-img-wrap {
    position: relative;
    padding-right: 47px;
    padding-bottom: 25px;
}
.choose-img-wrap img {
    border-radius: 20px;
}
.choose-img-wrap .year-experience {
    margin-bottom: 0;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--tg-secondary-color);
    border-radius: 50%;
    border: 15px solid var(--tg-white);
    font-size: 60px;
    color: var(--tg-primary-color);
    line-height: 1;
    position: absolute;
    right: 0;
    bottom: 0;
}
.choose-img-wrap .year-experience span {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: var(--tg-white);
    margin-top: 15px;
}
.choose-content p {
    margin-bottom: 30px;
}
.progress-item .title {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--tg-heading-font-family);
}
.progress-wrap {
    overflow: hidden;
}
.progress-item {
    margin-bottom: 50px;
}
.progress-item:last-child {
    margin-bottom: 0;
}
.progress-item .progress {
    height: 10px;
    background-color: #ffeae0;
    border-radius: 10px;
    overflow: inherit;
}
.progress-item .progress-bar {
    background-color: var(--tg-primary-color);
    position: relative;
    overflow: inherit;
    border-radius: 10px;
}
.progress-item .progress-bar span {
    display: block;
    position: absolute;
    right: -13px;
    bottom: 22px;
    color: var(--tg-primary-color);
    line-height: 1;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

/*=============================
	15. Faq
===============================*/
.faq-area {
    padding: 120px 0 0 0;
}

.faq-bg-area {
    background-image: url("../img/bg/faq-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 200px;
    z-index: 1;
}
.faq-img {
    background-color: rgba(46, 128, 127, 1);
    padding: 40px 80px 0 0;
}

.faq-img img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1029px;
    max-height: 429px;
}

.faq-content {
    padding: 0px 20px 30px;
}

.faq-content p {
    margin: 0 0 35px;
    text-align: center;
    font-size: 20px;
    line-height: 140%;
}
.contact-img {
    background-color: rgba(46, 128, 127, 1);
    padding: 10px 0 0 80px;
    max-height: 530px;
}
.contact-img img {
    width: auto;
    height: 520px !important;
    height: auto;
    display: block;
}
.about-text {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.about-text p {
    margin: 10px 0;
    text-align: left;
    line-height: 140%;
    max-width: 450px;
    font-size: 20px;
}
.faq-title {
    color: var(--tg-red) !important;
}

.vision-mission-row {
    position: relative;
}

.vision-mission-row::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 30px;
    background-color: rgba(79, 143, 141, 1);
    z-index: 2;
}

.custom-title {
    position: relative;
    display: inline-block;
    text-align: center;
}

.testimonial-area .custom-title {
    transform: translateY(-55px);
}

.custom-title .title-bg {
    position: absolute;
    top: 40%;
    transform: translate(-17%, -62%);
    font-size: 120px;
    font-weight: 100;
    color: rgba(0, 0, 0, 0.06);
    letter-spacing: 15px;
    z-index: 0;
    white-space: nowrap;
}

.custom-title .title-main {
    position: relative;
    z-index: 2;
    font-size: 42px;
    font-weight: 600;
    color: rgba(46, 128, 127, 1);
}

.value-list {
    list-style: none;
}

.value-list li {
    display: flex;
    align-items: center;
    font-weight: 600 !important;
    gap: 30px;
    font-size: 20px;
    margin: 15px 0 0 50px;
}

.value-list li img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(42%) sepia(20%) saturate(600%) hue-rotate(130deg);
}

/*.value-list li i {
    font-size: 26px;
    color: rgba(46, 128, 127, 1);
    min-width: 30px;
    font-weight: 600;
    font-weight: bold!important;
}*/

/*=============================
    16. Product Detail
===============================*/
.product-detail-bg-area {
    position: relative;
}

.products-dt-bg {
    position: relative;
    z-index: 1;
    max-height: 800px;
    background-color: rgba(46, 128, 127, 1);
    display: flex;
    justify-content: flex-end;
}

.product-detail-img {
    position: relative;
    max-width: 600px;
    width: 100%;
    z-index: 2;
    margin-top: 30px;
}

.product-detail-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    padding: 30px;
}

.product-detail-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );

    z-index: -1;
}

.product-detail-thumbs {
    margin-top: 20px;
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
}

.product-detail-thumbs .slick-slide {
    display: flex !important;
    justify-content: center;
    outline: none;
    cursor: pointer;
}

.product-detail-thumbs img {
    width: 160px;
    height: 160px;
    background-color: rgba(46, 128, 127, 1);
    padding: 5px;
    object-fit: contain;
    display: block;
    margin: auto;
    transition: all 0.3s ease;
}

.product-detail-thumbs button {
    display: none !important;
}

.product-detail-thumbs .slick-track {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transform: translate3d(0, 0, 0) !important;
}

.line-top {
    border-top: 3px solid var(--tg-red);
}
.product-line {
    height: 2px;
    background: var(--tg-primary-color);
}

/*=============================
	18. Brand
===============================*/
.brand-item {
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    text-align: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: 0.3s linear;
    background: var(--tg-white);
}
.brand-item:hover {
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    border-color: var(--tg-white);
}

/* brand-two */
.brand-area-two {
    padding: 50px 0 25px;
    border-top: 1px solid #e4e4e4;
}
.brand-item-two {
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-item-two img {
    cursor: pointer;
    filter: grayscale(1);
    transition: 0.3s linear;
}
.brand-item-two img:hover {
    filter: grayscale(0);
}
.brand-active .col-12 {
    padding: 0 15px;
}

/* brand-three */
.brand-area-three {
    background: var(--tg-section-background);
}
.brand-item.brand-item-three {
    filter: grayscale(1);
    opacity: 0.5;
}
.brand-item.brand-item-three:hover {
    opacity: 1;
    filter: grayscale(0);
}

/*=============================
	19. Testimonial
===============================*/
.testimonial-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: rgba(46, 128, 127, 1);
}

.product-area {
    position: relative;
}
.product-info {
    margin-top: 10px;
}

.product-title {
    display: flex;
    justify-content: start;
    font-size: 16px;
    font-weight: 600;
    color: var(--tg-white);
}

.more-btn-wrap {
    position: absolute;
    right: 8%;
    bottom: -48px;
    z-index: 5;
}

.brand-detail .more-btn-wrap {
    position: relative;
    margin: 50px 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.more-btn {
    background: var(--tg-red);
    color: var(--tg-white);
    border: none;
    padding: 10px 60px 10px 60px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    clip-path: polygon(
        0 0,
        calc(100% - 35px) 0,
        calc(100% - 15px) 50%,
        calc(100% - 35px) 100%,
        0 100%
    );
}

.more-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 31px;
    width: 25px;
    height: 100%;
    background: var(--tg-white);

    clip-path: polygon(
        calc(100% - 20px) 0,
        100% 50%,
        calc(100% - 20px) 100%,
        0 100%,
        calc(100% - 10px) 50%,
        0 0
    );
}

.more-btn:hover {
    color: var(--tg-white) !important;
    transform: scale(1.1);
}

.testimonial-item {
    border-radius: 10px;
    margin: 0 5px;
    text-align: center;
}

.testimonial-content p {
    margin-bottom: 35px;
}

.product-img {
    object-fit: contain;
    position: relative;
    padding: 20px;
    z-index: 1;
    width: 283px;
    height: 222px;
}
.product-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );

    z-index: -1;
}
.fail {
    color: var(--tg-white);
}
.testimonial-active [class*="col-"] {
    padding: 0 15px;
}

.slick-slide {
    border: none !important;
    outline: none !important;
}
.slick-dots {
    display: none !important;
}
.testimonial-active .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 20px;
    margin-top: 60px;
}
.testimonial-active .slick-dots li {
    list-style: none;
    line-height: 0;
}
.testimonial-active .slick-dots li button {
    text-indent: -99999999999px;
    width: 15px;
    height: 15px;
    border: none;
    border-radius: 50%;
    background: #262e32;
    line-height: 1;
}
.testimonial-active .slick-dots li.slick-active button {
    background: var(--tg-white);
    border-radius: 10px;
    width: 30px;
}

/* testimonial-two */
.testimonial-area-two {
    position: relative;
    padding: 120px 0 120px;
    z-index: 1;
}
.testimonial-shape {
    background-size: cover;
    background-position: center;
    width: 1091px;
    position: absolute;
    height: 523px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    z-index: -1;
}
.testimonial-item-two {
    text-align: center;
}
.testimonial-content-two p {
    font-size: 24px;
    color: var(--tg-secondary-color);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    width: 92%;
    margin: 0 auto 40px;
}
.testimonial-content-two .avatar-content .title {
    color: var(--tg-secondary-color);
}
.testimonial-active-two .col-12 {
    padding: 0 15px;
}

/*=============================
	21. Error
===============================*/
.error-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}
.error-img {
    text-align: center;
    margin-bottom: 50px;
}
.error-content {
    text-align: center;
}
.error-content .title {
    font-size: 60px;
    margin-bottom: 15px;
}
.error-content p {
    margin-bottom: 35px;
    font-size: 18px;
}

/*=============================
	22. Blog
===============================*/
.blog-post-item {
    margin-bottom: 30px;
}
.blog-meta .list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 10px;
}
.blog-meta .list-wrap li {
    font-size: 15px;
    text-transform: capitalize;
}
.blog-meta .list-wrap li i {
    margin-right: 8px;
}
.blog-meta .list-wrap li a {
    color: var(--tg-paragraph-color);
}
.blog-meta .list-wrap li a:hover {
    color: var(--tg-primary-color);
}
.blog-post-content .title {
    margin-bottom: 20px;
    font-size: 24px;
}
.blog-post-content .title a {
    color: inherit;
    display: inline;
    padding-bottom: 0;
    -webkit-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(currentColor),
        color-stop(98%, currentColor)
    );
    background-image: linear-gradient(
        to bottom,
        currentColor 0%,
        currentColor 98%
    );
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: left 100%;
}
.blog-post-content .title a:hover {
    background-size: 100% 1px;
    color: var(--tg-primary-color);
}
.blog-post-thumb {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px;
}
.blog-post-thumb img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-post-item-two:hover .blog-post-thumb img,
.blog-post-item:hover .blog-post-thumb img {
    transform: scale(1.1);
}
.blog-post-thumb .tag {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 12px;
    font-family: var(--tg-heading-font-family);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--tg-white);
    background: var(--tg-primary-color);
    display: block;
    padding: 7px 10px;
    border-radius: 5px;
}
.blog-post-thumb .tag:hover {
    background: var(--tg-secondary-color);
    color: var(--tg-white);
}
.blog-post-content p {
    margin-bottom: 20px;
}
.blog-post-content .link-btn {
    font-family: var(--tg-heading-font-family);
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 500;
    color: var(--tg-paragraph-color);
    display: inline-block;
}
.blog-post-content .link-btn:hover {
    color: var(--tg-secondary-color);
}

/* blog-two */
.blog-post-item-two {
    margin-bottom: 30px;
}
.blog-post-item-two .blog-post-thumb {
    margin-bottom: 25px;
}
.blog-post-item-two .blog-meta .list-wrap {
    margin-bottom: 15px;
}

/* blog-three */
.blog-post-item-three {
    margin-bottom: 30px;
}
.blog-post-thumb-three {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
}
.blog-post-thumb-three .post-date {
    position: absolute;
    right: 30px;
    top: 30px;
    color: var(--tg-white);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    background: var(--tg-primary-color);
    padding: 12px 14px;
    border-radius: 5px;
}
.blog-post-thumb-three img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}
.blog-post-item-three:hover .blog-post-thumb-three img {
    transform: scale(1.1);
}
.blog-post-content-three {
    border-radius: 0px 0px 10px 10px;
    border: 1px solid #e3e3e3;
    padding: 40px 40px 35px 40px;
    border-top: none;
    transition: 0.3s linear;
    background: var(--tg-white);
}
.blog-post-item-three:hover .blog-post-content-three {
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    border-color: var(--tg-white);
}
.blog-post-content-three .tag {
    display: inline-flex;
    align-items: center;
    color: #ababab;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 5px;
}
.blog-post-content-three .tag:hover {
    color: var(--tg-primary-color);
}
.blog-post-content-three .tag i {
    color: var(--tg-primary-color);
    margin-right: 5px;
}
.blog-post-content-three .title {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.35;
}
.blog-post-content-three .title a {
    color: inherit;
    display: inline;
    padding-bottom: 0;
    -webkit-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(currentColor),
        color-stop(98%, currentColor)
    );
    background-image: linear-gradient(
        to bottom,
        currentColor 0%,
        currentColor 98%
    );
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: left 100%;
}
.blog-post-content-three .title a:hover {
    background-size: 100% 1px;
    color: var(--tg-primary-color);
}
.blog-active [class*="col-"] {
    padding: 0 15px;
}
.blog-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 50px;
    gap: 20px;
}
.blog-nav .slick-arrow {
    border: none;
    border-radius: 5px;
    background: var(--tg-white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 0;
    -webkit-text-stroke: 1px var(--tg-secondary-color);
    color: transparent;
}
.blog-nav .slick-arrow:hover {
    color: var(--tg-white);
    background: var(--tg-primary-color);
    -webkit-text-stroke: transparent;
}

/* inner-blog */
.blog-item {
    margin-bottom: 30px;
}
.blog-thumb {
    max-width: 400px;
    max-height: 300px;
    min-height: 245px;
}

.blog-content {
    border-radius: 0px 0px 10px 10px;
    /* padding: 20px 0px; */
}
.blog-content-text {
    padding: 20px 0px;
}
.blog-content-text p {
    font-weight: 400;
    line-height: 140%;
}
.blog-content .title {
    font-size: 40px;
    margin-bottom: 20px;
}
.blog-content p {
    font-weight: 600;
}
.blog-content .link-btn {
    font-family: var(--tg-heading-font-family);
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 500;
    color: var(--tg-secondary-color);
    display: inline-block;
    line-height: 1;
}
.blog-content .link-btn:hover {
    color: var(--tg-primary-color);
}

/* blog-sidebar */
.blog-sidebar {
    border-radius: 10px;
    border: 1px solid #cfcfcf;
    padding: 40px 25px 50px;
    position: sticky;
    top: 100px;
}
.blog-widget {
    margin-bottom: 40px;
}
.blog-widget:last-child {
    margin-bottom: 0;
}
.widget-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.rc-post-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.rc-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.rc-post-item .thumb {
    width: 90px;
    flex: 0 0 90px;
    margin-right: 10px;
}
.rc-post-item .thumb img {
    border-radius: 2px;
}
.rc-post-item .content .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.rc-post-item .content span {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 14px;
    color: #8e8e8e;
    gap: 8px;
}
.sidebar-cat-list .list-wrap li {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.sidebar-cat-list .list-wrap li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.sidebar-cat-list .list-wrap li a {
    color: #757589;
    display: flex;
    align-items: center;
    line-height: 1.4;
    font-weight: 600;
    font-family: var(--tg-heading-font-family);
    gap: 5px;
}
.sidebar-cat-list .list-wrap li a:hover {
    color: var(--tg-primary-color);
}
.sidebar-tag-list .list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.sidebar-tag-list .list-wrap li a {
    color: #757589;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid #e0e0e0;
    display: block;
    padding: 10px 11px;
}
.sidebar-tag-list .list-wrap li a:hover {
    background: var(--tg-primary-color);
    border-color: var(--tg-primary-color);
    color: var(--tg-white);
}

/* blog-details */
.blog-content.blog-details-content .title {
    font-size: 30px;
}
.blog-details-content blockquote {
    margin: 0 0 50px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--tg-primary-color);
    padding: 35px 30px;
}
.blog-details-content blockquote .icon {
    font-size: 50px;
    line-height: 1;
    color: var(--tg-primary-color);
    margin-bottom: 10px;
}
.blog-details-content blockquote p {
    color: var(--tg-secondary-color);
    font-family: var(--tg-heading-font-family);
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}
.blog-details-content blockquote cite {
    font-style: normal;
    font-size: 18px;
    font-family: var(--tg-heading-font-family);
    font-weight: 700;
    color: var(--tg-secondary-color);
    line-height: 1;
}
.bd-img-wrap {
    margin-top: 40px;
}
.bd-img-wrap img {
    border-radius: 10px;
    margin-bottom: 30px;
}
.bd-img-wrap .row {
    --bs-gutter-x: 20px;
}
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.bd-content-bottom .post-tags .title {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}
.post-tags .list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.post-tags .list-wrap li a {
    color: #757589;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: block;
    border-radius: 2px;
    border: 1px solid #e0e0e0;
    padding: 10px 12px;
}
.post-tags .list-wrap li a:hover {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    border-color: var(--tg-primary-color);
}
.blog-post-share .list-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.blog-post-share .list-wrap li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tg-secondary-color);
    color: var(--tg-white);
    font-size: 15px;
}
.blog-post-share .list-wrap li a:hover {
    background: var(--tg-primary-color);
}
.comments-wrap {
    border-top: 1px solid #d9d9d9;
    padding-top: 60px;
    margin-top: 60px;
}
.comments-wrap-title {
    font-size: 22px;
    margin-bottom: 35px;
}
.comments-box {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.latest-comments .children .comments-box {
    padding: 0 0 40px 100px;
}
.latest-comments > .list-wrap > li:last-child .comments-box {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.comments-avatar {
    width: 80px;
    flex: 0 0 auto;
    margin-right: 20px;
}
.comments-text .avatar-name .name {
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: space-between;
}
.comments-text .comment-reply-link {
    color: var(--tg-primary-color);
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    display: block;
    border-radius: 2px;
    background: #fff7f3;
    padding: 8px 12px;
    text-transform: uppercase;
}
.comments-text .comment-reply-link:hover {
    background: var(--tg-primary-color);
    color: var(--tg-white);
}
.comments-text .avatar-name .date {
    display: block;
    font-size: 14px;
    line-height: normal;
}
.comments-text .avatar-name {
    margin-bottom: 20px;
}
.comments-text p {
    margin-bottom: 0;
}
.latest-comments {
    margin-bottom: 70px;
}
.comment-reply-title {
    font-size: 22px;
    margin-bottom: 30px;
}
.comment-form .row {
    --bs-gutter-x: 10px;
}
.comment-form .form-grp {
    margin-bottom: 10px;
}
.comment-form .form-grp textarea,
.comment-form .form-grp input {
    border-radius: 5px;
    border: 1px solid #bdbdbd;
    width: 100%;
    color: var(--tg-secondary-color);
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    padding: 20px 15px;
    height: 60px;
    display: block;
}
.comment-form .form-grp textarea {
    min-height: 184px;
    max-height: 184px;
}
.comment-form .form-grp textarea::placeholder,
.comment-form .form-grp input::placeholder {
    color: #9b9b9b;
    font-size: 15px;
    font-weight: 400;
}
.comment-form .checkbox-grp {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    margin-top: 30px;
}
.comment-form .checkbox-grp input {
    width: 15px;
    margin-top: 3px;
    margin-right: 10px;
    height: 15px;
    border-radius: 2px;
}
.comment-form .checkbox-grp label {
    color: var(--tg-secondary-color);
    user-select: none;
    line-height: 1.4;
    font-weight: 500;
    font-size: 15px;
}
.blog-style-one .blog-post-item-two {
    margin-bottom: 50px;
}
.blog-style-two .blog-post-item {
    margin-bottom: 60px;
}

/*=============================
	23. Contact
===============================*/
.contact-info-item {
    border-radius: 10px;
    border: 1px solid #c2c2c2;
    text-align: center;
    padding: 50px 30px 40px;
    margin-bottom: 35px;
}
.contact-info-item .icon {
    font-size: 60px;
    line-height: 1;
    color: var(--tg-primary-color);
    margin-bottom: 22px;
}
.contact-info-item .content .title {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.contact-page-adress .contact-info-left p,
.contact-page-adress .contact-info-left p a {
    color: var(--tg-dark);
    font-weight: 600;
}
.contact-page-vertical {
    padding: 0px 82px;
}
.contact-info-left {
    padding: 50px 0;
}
.contact-info-left p,
.contact-info-left p a {
    font-weight: 400;
    line-height: 140%;
    color: var(--tg-white);
    margin-bottom: 5px;
    font-size: 16px;
}
.contact-info-item .content p {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--tg-secondary-color);
    line-height: 1.54;
}
.contact-info-item .content p a {
    color: var(--tg-secondary-color);
}
.contact-info-item .content p a:hover {
    color: var(--tg-primary-color);
}
.contact-form-wrap {
    background: var(--tg-white);
    padding: 45px 35px;
}
.contact-page .contact-form-wrap {
    padding: 0px 70px;
}
.contact-form-wrap .title {
    color: var(--tg-white);
    font-size: 30px;
    margin-bottom: 30px;
}
.contact-form-wrap .form-grp {
    margin-bottom: 20px;
}
.contact-form-wrap .form-grp textarea,
.contact-form-wrap .form-grp input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #5c5c5c;
    background: transparent;
    color: var(--tg-primary-color);
    font-size: 15px;
    font-weight: 400;
    padding: 15px 22px;
    height: 50px;
    line-height: 1;
    display: block;
}
.contact-form-wrap .form-grp select {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #5c5c5c;
    background: transparent;
    color: var(--tg-dark);
    font-size: 15px;
    font-weight: 400;
    padding: 15px 22px;
    height: 50px;
    line-height: 1;
    display: block;
}
.contact-form-wrap .form-grp textarea {
    min-height: 183px;
    max-height: 183px;
}
.contact-form-wrap .form-grp textarea::placeholder,
.contact-form-wrap .form-grp input::placeholder {
    color: #898989;
    font-size: 15px;
    font-weight: 400;
}
.contact-form-wrap .btn:hover {
    color: var(--tg-primary-color);
}
.contact-form-wrap .btn::before {
    background: var(--tg-white);
}
.contact-form-wrap .row {
    --bs-gutter-x: 20px;
}
.contact-map {
    width: 100%;
    height: 100%;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.ajax-response.error {
    margin-top: 20px;
    color: red;
}
.ajax-response.success {
    margin-top: 20px;
    color: green;
}

/*=============================
	24. Footer
===============================*/
.footer-area {
}
.footer-newsletter-wrap .row {
    justify-content: space-between;
}

.footer-newsletter-wrap .navbar-wrap {
    display: flex;
    justify-content: flex-end;
}
.footer-newsletter-wrap {
    padding: 10px 0;
    /*    border-bottom: 1px solid #464646;*/
}
.footer-logo img {
    max-height: 120px;
}
.footer-newsletter-form form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-newsletter-form .form-grp {
    position: relative;
    width: 370px;
}
.footer-newsletter-form .form-grp input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--tg-gray-two);
    background: transparent;
    font-size: 14px;
    color: var(--tg-white);
    padding: 17px 35px;
    line-height: 1;
    height: 50px;
}
.footer-newsletter-form .form-grp input::placeholder {
    font-size: 14px;
    color: var(--tg-gray-two);
}
.footer-newsletter-form .form-grp label {
    font-size: 14px;
    color: var(--tg-gray-two);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.footer-top {
    padding: 60px 0 20px;
}
.footer-widget {
    margin-bottom: 40px;
}
.fw-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--tg-white);
    font-weight: 500;
}
.footer-contact .list-wrap li {
    display: flex;
    align-items: baseline;
    font-size: 15px;
    color: var(--tg-gray-three);
    line-height: 1.4;
    margin-bottom: 20px;
}
.footer-contact .list-wrap li:last-child {
    margin-bottom: 0;
}
.footer-contact .list-wrap li a {
    color: var(--tg-gray-three);
}
.footer-contact .list-wrap li a:hover {
    color: var(--tg-primary-color);
}
.footer-contact .list-wrap li i {
    font-size: 18px;
    color: var(--tg-primary-color);
    margin-right: 15px;
    transform: translateY(2px);
}
.footer-link .list-wrap li {
    padding-left: 17px;
    position: relative;
    line-height: 1.2;
    margin-bottom: 20px;
}
.footer-link .list-wrap li:last-child {
    margin-bottom: 0;
}
.footer-link .list-wrap li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #949494;
}
.footer-link .list-wrap li a {
    color: var(--tg-gray-three);
    font-size: 15px;
    position: relative;
}
.footer-link .list-wrap li a:hover {
    color: var(--tg-white);
}
.footer-link .list-wrap li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--tg-white);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.footer-link .list-wrap li a:hover::before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}
.materials-list .list-wrap li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.materials-list .list-wrap li:last-child {
    margin-bottom: 0;
}
.materials-list .list-wrap li .icon {
    font-size: 35px;
    line-height: 1;
    margin-right: 15px;
    color: #6b6b6b;
}
.materials-list .list-wrap li .content .title {
    font-size: 18px;
    font-weight: 400;
    color: var(--tg-white);
    margin-bottom: 10px;
}
.materials-list .list-wrap li .content span {
    display: block;
    line-height: 1;
    font-size: 15px;
    color: var(--tg-gray-three);
}
/*.footer-bottom {
    border-top: 1px solid #464646;
    padding: 15px 0;
}*/
.copyright-text p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--tg-gray-three);
}
.copyright-text p a {
    color: var(--tg-primary-color);
    font-weight: 600;
}
.copyright-text p a:hover {
    color: var(--tg-dark);
}
.footer-social .list-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.contact-info-left .list-wrap {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}
.contact-page-adress .contact-info-left .list-wrap li a {
    color: var(--tg-dark);
}
.contact-info-left .list-wrap li a {
    font-size: 20px;
    color: var(--tg-white);
}
.footer-social .list-wrap li a {
    font-size: 20px;
    color: var(--tg-primary-color);
}

/* footer-two */
.footer-area-two {
    background: #171717;
}
.footer-top-two {
    padding: 90px 0 40px;
}
.footer-newsletter-two {
    position: relative;
    height: 100%;
}
.footer-newsletter-two::before {
    content: "";
    position: absolute;
    right: 80px;
    top: 0;
    width: 1px;
    height: 88%;
    background: #464646;
}
.footer-top-two .footer-newsletter-form form {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

/*=============================
	25. Preloader
===============================*/
#preloader {
    background: var(--tg-white);
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 999;
}
.ta-preloader-block {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-align: center;
}
.ta-spinner-eff {
    position: relative;
    width: 50px;
    height: 50px;
    -webkit-animation: taRotation 12.8s steps(1) 0s infinite;
    animation: taRotation 12.8s steps(1) 0s infinite;
}
.ta-spinner-eff .ta-bar {
    position: absolute;
    background-color: var(--tg-primary-color);
}
.ta-spinner-eff .ta-bar-top {
    width: 100%;
    height: 7px;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: left top;
    transform: scale(0, 1);
    -webkit-animation: bar-top 3.2s linear 0s infinite;
    animation: bar-top 3.2s linear 0s infinite;
}
.ta-spinner-eff .ta-bar-right {
    width: 7px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: left top;
    transform: scale(1, 0);
    -webkit-animation: bar-right 3.2s linear 0s infinite;
    animation: bar-right 3.2s linear 0s infinite;
}
.ta-spinner-eff .ta-bar-bottom {
    width: 100%;
    height: 7px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    -webkit-animation: bar-bottom 3.2s linear 0s infinite;
    animation: bar-bottom 3.2s linear 0s infinite;
}
.ta-spinner-eff .ta-bar-left {
    width: 7px;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: left bottom;
    transform: scale(1, 0);
    -webkit-animation: bar-left 3.2s linear 0s infinite;
    animation: bar-left 3.2s linear 0s infinite;
}
@keyframes taRotation {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes bar-top {
    0% {
        transform: scale(0, 1);
    }
    12.5% {
        transform: scale(1, 1);
    }
    87.5% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(0, 1);
    }
}
@keyframes bar-right {
    0% {
        transform: scale(1, 0);
    }
    12.5% {
        transform: scale(1, 0);
    }
    25% {
        transform: scale(1, 1);
    }
    75% {
        transform: scale(1, 1);
    }
    87.5% {
        transform: scale(1, 0);
    }
    100% {
        transform: scale(1, 0);
    }
}
@keyframes bar-bottom {
    0% {
        transform: scale(0, 1);
    }
    25% {
        transform: scale(0, 1);
    }
    37.5% {
        transform: scale(1, 1);
    }
    62.5% {
        transform: scale(1, 1);
    }
    75% {
        transform: scale(0, 1);
    }
    100% {
        transform: scale(0, 1);
    }
}
@keyframes bar-left {
    0% {
        transform: scale(1, 0);
    }
    37.5% {
        transform: scale(1, 0);
    }
    50% {
        transform: scale(1, 1);
    }
    62.5% {
        transform: scale(1, 0);
    }
    100% {
        transform: scale(1, 0);
    }
}

.navbar-wrap ul .language-item .sub-menu {
    min-width: 120px;
}

.navbar-wrap ul .language-item a img {
    width: 40px;
}

/* -----------------------     Mobil Css          ----------------------------*/

@media (max-width: 767px) {
    .header-style-four .logo img {
        width: 250px;
    }
}

@media (max-width: 1800px) {
    .menu-nav {
        padding: 0 75px;
    }

    .header-style-four .logo img {
        width: 320px;
    }

    .slider-content-three {
        padding-left: 80px;
    }
    .left-shape {
        height: 200px;
    }
    .slider-car-image img {
        width: 1150px;
    }

    .custom-stats span:nth-child(1) {
        font-size: 110px;
    }

    .custom-stats span:nth-child(2) {
        font-size: 50px;
    }
    .custom-stats span:nth-child(3) {
        font-size: 45px;
    }
    .hero-top-title {
        padding-left: 80px;
        font-size: 60px;
    }
    html[lang="en"] .hero-top-title {
        font-size: 42px;
        padding-left: 80px;
    }
    .hero-top-title2 {
        padding-left: 80px;
        font-size: 60px;
    }

    html[lang="en"] .hero-top-title2 {
        letter-spacing: 6px;
        font-size: 60px;
    }

    .brand-logo {
        max-width: 600px;
    }

    .breadcrumb-area.breadcrumb-bg {
        min-height: 600px;
    }
}

@media (min-width: 1500px) and (max-width: 1630px) {
    .menu-nav {
        padding: 0px 90px;
    }

    .slider-car-image img {
        width: 1095px;
    }

    .slider-content-three {
        padding-left: 95px;
    }

    .custom-stats span:nth-child(1) {
        font-size: 105px;
    }

    .custom-stats span:nth-child(2) {
        font-size: 48px;
    }
    .custom-stats span:nth-child(3) {
        font-size: 43px;
    }
    .hero-top-title {
        padding-left: 95px;
        font-size: 58px;
    }

    html[lang="en"] .hero-top-title {
        font-size: 40px;
        padding-left: 100px;
    }
    .hero-top-title2 {
        padding-left: 95px;
        font-size: 58px;
    }

    html[lang="en"] .hero-top-title2 {
        font-size: 58px;
    }

    .brand-logo {
        max-width: 550px;
    }

    .navbar-wrap ul li a {
        font-size: 20px;
    }
}

@media (max-width: 1500px) {
    .menu-nav {
        padding: 0px 100px;
        margin-top: 45px;
    }

    .header-style-four .logo img {
        width: 310px;
    }
    .slider-content-three {
        padding-left: 130px;
    }
    .left-shape {
        height: 180px;
    }
    .slider-car-image img {
        width: 930px;
    }

    .custom-stats span:nth-child(1) {
        font-size: 80px;
    }

    .custom-stats span:nth-child(2) {
        font-size: 36px;
    }
    .custom-stats span:nth-child(3) {
        font-size: 32px;
    }
    .hero-top-title {
        padding-left: 130px;
        font-size: 40px;
    }

    html[lang="en"] .hero-top-title {
        font-size: 31px;
        padding-left: 130px;
    }

    .hero-top-title2 {
        padding-left: 130px;
        font-size: 46px;
    }
    html[lang="en"] .hero-top-title2 {
        letter-spacing: 5px;
        font-size: 52px;
    }

    .brand-logo {
        max-width: 500px;
        left: 15%;
    }

    .breadcrumb-area.breadcrumb-bg {
        min-height: 450px;
    }

    .navbar-wrap ul li a {
        font-size: 18px;
    }

    .navbar-wrap ul .language-item a img {
        width: 30px;
    }
}

@media (max-width: 1400px) {
    .menu-nav {
        padding: 0px 95px;
        margin-top: 55px;
    }

    .header-style-four .logo img {
        width: 300px;
    }
    .slider-content-three {
        padding-left: 130px;
    }
    .left-shape {
        height: 180px;
    }
    .slider-car-image img {
        width: 930px;
    }

    .custom-stats span:nth-child(1) {
        font-size: 80px;
    }

    .custom-stats span:nth-child(2) {
        font-size: 36px;
    }
    .custom-stats span:nth-child(3) {
        font-size: 32px;
    }
    .hero-top-title {
        padding-left: 130px;
        font-size: 40px;
    }

    html[lang="en"] .hero-top-title {
        letter-spacing: 16px;
        font-size: 29px;
        padding-left: 135px;
    }

    .hero-top-title2 {
        padding-left: 130px;
        font-size: 40px;
    }

    html[lang="en"] .hero-top-title2 {
        letter-spacing: 4px;
        font-size: 48px;
    }

    .brand-logo {
        max-width: 400px;
    }

    .breadcrumb-area.breadcrumb-bg {
        min-height: 400px;
    }
}

@media (max-width: 1270px) {
    .menu-nav {
        padding: 0px 95px;
    }

    .slider-car-image img {
        width: 900px;
    }

    .custom-stats span:nth-child(1) {
        font-size: 65px;
    }

    .custom-stats span:nth-child(2) {
        font-size: 29px;
    }
    .custom-stats span:nth-child(3) {
        font-size: 26px;
    }

    .hero-top-title {
        font-size: 30px;
    }

    html[lang="en"] .hero-top-title {
        letter-spacing: 13px;
    }
    .hero-top-title2 {
        font-size: 30px;
    }

    html[lang="en"] .hero-top-title2 {
        letter-spacing: 4px;
        font-size: 42px;
    }

    .brand-logo {
        max-width: 380px;
        left: 20%;
    }

    .navbar-wrap ul li a {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .menu-nav {
        padding: 0px 0px;
    }

    .header-style-four .logo img {
        width: 300px;
    }

    .slider-car-image img {
        width: 850px;
    }

    .slider-content-three {
        padding-left: 20px;
    }

    .custom-stats span:nth-child(1) {
        font-size: 65px;
    }

    .custom-stats span:nth-child(2) {
        font-size: 29px;
    }
    .custom-stats span:nth-child(3) {
        font-size: 26px;
    }

    .hero-top-title {
        font-size: 30px;
        padding-left: 20px;
    }

    html[lang="en"] .hero-top-title {
        font-size: 32px;
        letter-spacing: 10px;
        padding-left: 30px;
    }

    .hero-top-title2 {
        font-size: 30px;
        padding-left: 20px;
    }

    html[lang="en"] .hero-top-title2 {
        letter-spacing: 4px;
        font-size: 39px;
    }
}

@media (max-width: 992px) {
    .menu-nav {
        padding: 0px 35px;
        margin-top: 55px;
    }

    .header-style-four .logo img {
        width: 280px;
    }
    .left-shape {
        height: 120px;
        width: 70px;
    }

    .slider-bg-img {
        object-fit: cover;
    }
    .slider-car-image {
        bottom: 0;
    }
    .slider-car-image img {
        width: 550px;
    }

    .custom-stats span:nth-child(1) {
        font-size: 60px;
    }

    .custom-stats span:nth-child(2) {
        font-size: 27px;
    }
    .custom-stats span:nth-child(3) {
        font-size: 24px;
    }

    .hero-top-title {
        letter-spacing: 10px;
        font-size: 26px;
    }

    html[lang="en"] .hero-top-title {
        font-size: 28px;
        letter-spacing: 5px;
        padding-left: 30px;
    }

    .hero-top-title2 {
        letter-spacing: 10px;
        font-size: 26px;
        margin-bottom: -60px;
        padding-left: 30px;
    }

    html[lang="en"] .hero-top-title2 {
        letter-spacing: 0px;
        font-size: 34px;
    }

    .blog-thumb {
        max-width: 200px;
        max-height: 200px;
        min-height: 150px;
    }

    .brand-logo {
        max-width: 350px;
        left: 15%;
    }

    .breadcrumb-area.breadcrumb-bg {
        min-height: 350px;
    }

    .product-detail-content {
        margin-top: 50px;
    }
    .navigation .language-item {
        display: none !important;
    }

    .mobile-language-flags {
        display: flex;
        justify-content: center;
        gap: 12px;
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .mobile-language-flags a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 35px;
        transition: 0.2s;
    }

    .mobile-language-flags img {
        width: 28px;
        height: auto;
    }

    .mobile-language-flags a:hover {
        border-color: #007bff;
    }

    .contact-page .contact-form-wrap {
        padding: 45px 25px;
    }
    .contact-img img {
        height: auto !important;
    }

    .contact-page-vertical {
        padding: 0px 40px;
    }
}
@media (max-width: 768px) {
    .menu-area .mobile-nav-toggler {
        font-size: 18px;
    }

    .menu-nav {
        padding: 0;
        margin-top: 45px;
    }
    .header-style-four .logo img {
        width: 150px;
    }

    .left-shape {
        height: 80px;
        width: 50px;
    }
    .right-shape {
        width: 20%;
    }
    .right-top-shape {
        height: 50px;
        width: 20%;
    }
    .right-overlay-shape {
        width: 20%;
    }
    .slider-car-image {
        bottom: 35px;
        right: -18px;
    }
    .slider-car-image img {
        width: 300px;
    }

    .slider-content-three {
        padding-left: 45px;
    }

    .custom-stats span:nth-child(1) {
        font-size: 30px;
    }

    .custom-stats span:nth-child(2) {
        font-size: 12px;
    }
    .custom-stats span:nth-child(3) {
        font-size: 11px;
    }
    .hero-top-title {
        letter-spacing: 3px;
        font-size: 18px;
        padding-left: 45px;
        margin-bottom: 38px;
    }

    html[lang="en"] .hero-top-title {
        font-size: 19px;
        letter-spacing: 0px;
        padding-left: 40px;
    }

    .hero-top-title2 {
        letter-spacing: 3px;
        font-size: 28px;
        padding-left: 30px;
        margin-bottom: -40px;
    }

    html[lang="en"] .hero-top-title2 {
        letter-spacing: 0px;
        font-size: 30px;
        padding-left: 55px;
    }

    .brand-logo {
        max-width: 300px;
    }

    .breadcrumb-area.breadcrumb-bg {
        min-height: 300px;
    }
}
@media (max-width: 576px) {
    .slider-bg-three {
        min-height: 400px !important;
        padding: 130px 0 160px;
    }

    .menu-nav {
        padding: 0;
        margin-top: 30px;
        margin-right: 40px;
    }

    .left-shape {
        height: 60px;
        width: 40px;
    }

    .right-shape {
        width: 20%;
    }
    .right-top-shape {
        height: 30px;
        width: 20%;
    }

    .right-overlay-shape {
        width: 20%;
    }

    .slider-car-image {
        bottom: 25px;
        right: -18px;
    }
    .slider-car-image img {
        width: 260px;
    }

    .custom-stats span:nth-child(1) {
        font-size: 31px;
    }

    .custom-stats span:nth-child(2) {
        font-size: 13px;
    }
    .custom-stats span:nth-child(3) {
        font-size: 11px;
    }

    .hero-top-title {
        letter-spacing: 1.3px;
        font-size: 19px;
    }

    html[lang="en"] .hero-top-title {
        font-size: 18px;
    }

    .hero-top-title2 {
        letter-spacing: 0px;
        font-size: 21px;
        padding-left: 35px;
    }

    html[lang="en"] .hero-top-title2 {
        letter-spacing: 0px;
        font-size: 16px;
        padding-left: 35px;
    }

    .brand-logo {
        max-width: 200px;
        left: 12%;
    }

    .breadcrumb-area.breadcrumb-bg {
        min-height: 300px;
    }
}
