@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Unbounded:wght@200..900&display=swap);

:root {
    --tg-ff-body: "Inter", sans-serif;
    --tg-ff-heading: "Unbounded", sans-serif;
    --tg-ff-p: "Inter", sans-serif;
    --tg-ff-fontawesome: "Font Awesome 6 Pro";
    --tg-common-white: #fff;
    --tg-common-black: #000;
    --tg-grey-1: #6f6f6f;
    --tg-grey-2: #f0f0f0;
    --tg-theme-primary: #cbca7b;
    --tg-border-1: rgba(28, 29, 31, 0.15)
}

body {
    font-family: var(--tg-ff-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--tg-common-black);
    line-height: 30px
}

img,
.img {
    max-width: 100%;
    -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
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: #fff0;
    text-decoration: none;
    -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
}

a:focus,
.btn:focus,
.button:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none
}

a:hover,
button:hover {
    color: var(--tg-common-black);
    text-decoration: none
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

.scrool-bar::-webkit-scrollbar {
    width: 5px;
    display: block;
    overflow: hidden;
    position: relative;
    margin-left: 5px
}

.scrool-bar::-webkit-scrollbar-thumb {
    background-color: #e1e1e1;
    outline: 1px solid #e1e1e1
}

.scrool-bar::-mos-webkit-scrollbar-thumb {
    background-color: #e1e1e1;
    outline: 1px solid #e1e1e1
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
    outline: none;
    background-color: var(--tg-common-white);
    height: 56px;
    width: 100%;
    line-height: 56px;
    font-size: 15px;
    color: var(--tg-common-black);
    padding-left: 26px;
    padding-right: 26px;
    border: 1px solid #a2a9ac
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--tg-common-black)
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--tg-common-black)
}

input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
    color: var(--tg-common-black)
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: var(--tg-common-black)
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
    color: var(--tg-common-black)
}

input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--tg-common-black);
    font-weight: 700;
    font-family: var(--tg-ff-heading);
    line-height: 1.1;
    text-transform: unset;
    letter-spacing: -.02em
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit
}

h1 {
    font-size: 60px
}

h2 {
    font-size: 50px
}

h3 {
    font-size: 30px
}

h4 {
    font-size: 24px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 30px;
    font-family: var(--tg-ff-p)
}

label {
    color: var(--tg-common-black);
    cursor: pointer
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%
}

*::-moz-selection {
    background: var(--tg-common-black);
    color: var(--tg-common-white);
    text-shadow: none
}

::-moz-selection {
    background: var(--tg-common-black);
    color: var(--tg-common-white);
    text-shadow: none
}

::selection {
    background: var(--tg-common-black);
    color: var(--tg-common-white);
    text-shadow: none
}

input,
textarea {
    color: var(--tg-common-black)
}

*::-moz-placeholder {
    color: var(--tg-common-black);
    font-size: 16px;
    opacity: 1
}

*::placeholder {
    color: var(--tg-common-black);
    font-size: 16px;
    opacity: 1
}

.ovh {
    overflow: hidden
}

.clear {
    clear: both
}

.p-relative {
    position: relative
}

.p-absolute {
    position: absolute
}

.lh-28 {
    line-height: 28px
}

.tg-round-15 {
    border-radius: 15px
}

.tg-round-25 {
    border-radius: 25px
}

.tg-rounded-10 {
    border-radius: 10px
}

.tg-rounded-full {
    border-radius: 400px
}

.z-index-m-1 {
    z-index: -1
}

.z-index-1 {
    z-index: 1
}

.z-index-2 {
    z-index: 2
}

.z-index-3 {
    z-index: 3
}

.z-index-4 {
    z-index: 4
}

.z-index-5 {
    z-index: 5
}

.z-index-6 {
    z-index: 6
}

.z-index-7 {
    z-index: 7
}

.z-index-8 {
    z-index: 8
}

.z-index-9 {
    z-index: 9
}

.z-index-10 {
    z-index: 10
}

.z-index-999 {
    z-index: 999
}

.gx-10 {
    --bs-gutter-x: 10px
}

.gx-50 {
    --bs-gutter-x: 50px
}

.gx-80 {
    --bs-gutter-x: 80px
}

.tg-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%
}

.fix {
    overflow: hidden
}

.text-right {
    text-align: right
}

.lh-1 {
    line-height: 1
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.tg-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%
}

.rounded-circale {
    border-radius: 50%
}

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear
}

.p-inherit {
    position: inherit !important
}

@media (min-width:1400px) {
    .container-1710 {
        max-width: 1710px
    }
}

.tg-btn {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--tg-common-white);
    border-radius: 30px;
    padding: 22px 45px;
    display: inline-block;
    line-height: 1;
    background: var(--tg-common-black);
    font-family: var(--tg-ff-heading)
}

.tg-btn:hover {
    color: var(--tg-common-white)
}

.tg-btn-primary {
    background: var(--tg-theme-primary);
    color: var(--tg-common-black)
}

.tg-btn-primary:hover {
    color: var(--tg-common-black)
}

.tg-btn-white {
    background: var(--tg-common-white);
    color: var(--tg-common-black)
}

.tg-btn-white:hover {
    color: var(--tg-common-black)
}

.tg-btn-hover:hover .hover-effect .effect-1 {
    top: -100%
}

.tg-btn-hover .hover-effect {
    position: relative;
    overflow: hidden;
    display: block;
    height: 17px;
    line-height: normal
}

.tg-btn-hover .hover-effect .effect-1 {
    display: block;
    height: 100%;
    position: relative;
    top: 0%;
    transition: 0.3s
}

.tg-btn-rounded {
    width: 150px;
    height: 150px;
    border: 1px solid var(--tg-common-black);
    background: #fff0;
    border-radius: 50%;
    font-family: var(--tg-ff-heading);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--tg-common-black);
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block
}

.tg-btn-rounded span {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 43px
}

.tg-btn-rounded span svg {
    margin-top: 7px
}

.tg-btn-rounded:hover {
    color: var(--tg-common-white)
}

.tg-btn-rounded:hover .tg-btn-circle-dot {
    width: 520px;
    height: 520px
}

.tg-btn-rounded-black {
    background: var(--tg-common-black);
    color: var(--tg-common-white)
}

.tg-btn-rounded-black:hover {
    border-color: var(--tg-theme-primary);
    background: #fff0;
    color: var(--tg-common-black)
}

.tg-btn-rounded-black .tg-btn-circle-dot {
    background: var(--tg-theme-primary)
}

.tg-btn-rounded-primary {
    background: var(--tg-theme-primary);
    color: var(--tg-common-black);
    border-color: var(--tg-theme-primary)
}

.tg-btn-rounded-primary:hover {
    border-color: var(--tg-theme-primary);
    background: #fff0;
    color: var(--tg-common-white)
}

.tg-btn-rounded-primary .tg-btn-circle-dot {
    background: var(--tg-common-black)
}

.tg-btn-rounded-white {
    background: #fff0;
    color: var(--tg-common-white);
    border-color: var(--tg-common-white)
}

.tg-btn-rounded-white:hover {
    border-color: var(--tg-theme-primary);
    background: #fff0;
    color: var(--tg-common-black)
}

.tg-btn-rounded-white .tg-btn-circle-dot {
    background: var(--tg-theme-primary)
}

.tg-btn-circle-dot {
    position: absolute;
    bottom: 0;
    left: 32px;
    width: 0;
    height: 0;
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    line-height: 20px;
    border-radius: 50%;
    background-color: var(--tg-common-black);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #fff0;
    z-index: -1
}

.tg-btn-two {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--tg-common-white);
    border-radius: 30px;
    padding: 15px 48px;
    background: var(--tg-common-black);
    transition: all 0.3s ease-in-out;
    font-family: var(--tg-ff-heading);
    border: 1px solid var(--tg-common-black)
}

.tg-btn-two:hover {
    color: var(--tg-common-black);
    background: var(--tg-common-white)
}

.tg-btn-two-white {
    background: var(--tg-common-white);
    color: var(--tg-common-black);
    padding: 19px 34px
}

.tg-btn-two-white:hover {
    background: var(--tg-theme-primary)
}

.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--tg-common-black);
    display: flex;
    align-items: center;
    justify-content: center
}

.preloader-inner {
    display: block;
    width: 45px;
    height: 45px
}

.preloader-inner span {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 37px;
    height: 37px;
    margin: 4px;
    border: 4px solid #fff0;
    border-radius: 50%;
    animation: preloader 1s cubic-bezier(.5, 0, .5, 1) infinite;
    border-color: var(--tg-theme-primary) #fff0 #fff0 #fff0
}

.preloader-inner span:nth-child(1) {
    animation-delay: -0.1s
}

.preloader-inner span:nth-child(2) {
    animation-delay: -0.2s
}

.preloader-inner span:nth-child(3) {
    animation-delay: -0.3s
}

@-webkit-keyframes preloader {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes preloader {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.tgbg-primary {
    background: var(--tg-theme-primary)
}

.tgbg-grey {
    background: var(--tg-grey-2)
}

.tgbg-black {
    background: var(--tg-common-black)
}

.tgbg-black-2 {
    background: rgb(255 255 255 / .06)
}

.offCanvas-toggle {
    position: relative;
    margin-right: 40px;
    padding-right: 40px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .offCanvas-toggle {
        margin-right: 25px;
        padding-right: 25px
    }
}

@media (max-width:575px) {
    .offCanvas-toggle {
        display: none
    }
}

.offCanvas-toggle::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--tg-border-1)
}

.offCanvas-toggle .menu-tigger {
    color: var(--tg-common-black)
}

.offCanvas-toggle .menu-tigger:hover {
    color: var(--tg-theme-primary)
}

.offCanvas-toggle-two {
    margin-right: 0;
    padding-right: 0;
    padding-left: 40px
}

.offCanvas-toggle-two::before {
    right: auto;
    left: 0;
    height: 104px
}

.offCanvas__info {
    background: var(--tg-common-white) none repeat scroll 0 0;
    height: 100%;
    padding: 30px;
    padding-top: 80px;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s cubic-bezier(.785, .135, .15, .86);
    -moz-transition: all 0.3s cubic-bezier(.785, .135, .15, .86);
    -webkit-transition: all 0.3s cubic-bezier(.785, .135, .15, .86);
    -ms-transition: all 0.3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: all 0.3s cubic-bezier(.785, .135, .15, .86);
    width: 400px;
    z-index: 999;
    overflow-y: scroll;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%)
}

@media (max-width:575px) {
    .offCanvas__info {
        width: 100%
    }
}

.offCanvas__info.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0)
}

.offCanvas__info::-webkit-scrollbar {
    width: 0
}

.offCanvas__close-icon {
    position: absolute;
    top: 0;
    right: 0
}

.offCanvas__close-icon button {
    color: var(--tg-common-white);
    cursor: pointer;
    font-size: 24px;
    padding: 0;
    transition: all 0.4s ease;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background: var(--tg-common-black)
}

.offCanvas__close-icon button:hover {
    color: var(--tg-common-black);
    background: var(--tg-theme-primary)
}

.offCanvas__logo img {
    max-height: 34px
}

.offCanvas__social-icon span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    color: var(--tg-common-black);
    display: block;
    margin-bottom: 15px
}

.offCanvas__social-icon a {
    color: var(--tg-common-black);
    display: inline-block;
    margin-right: 5px;
    text-align: center;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border: 1px solid var(--tg-border-1);
    border-radius: 50%;
    transition: all 0.4s ease
}

.offCanvas__social-icon a svg {
    transform: translateY(-2px);
    width: 16px !important
}

.offCanvas__social-icon a:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-white)
}

.offCanvas__overly {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -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
}

.offCanvas__overly.active {
    opacity: .7;
    visibility: visible
}

.contact-list h4 {
    color: var(--tg-common-black);
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 15px
}

.contact-list a {
    margin: 0;
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--tg-common-black);
    line-height: 26px;
    display: flex;
    align-items: center
}

.contact-list a i {
    font-size: 20px;
    width: 20px;
    margin-right: 15px
}

.contact-list a:hover {
    color: var(--tg-theme-primary)
}

.offcanvas-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px
}

.offcanvas-gallery .popup-image {
    position: relative
}

.offcanvas-gallery .popup-image::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--tg-theme-primary);
    top: 0;
    left: 0;
    opacity: .6;
    transform: scale(0);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out
}

.offcanvas-gallery .popup-image:hover::after {
    transform: scale(1)
}

.offcanvas-title-wrap h3 {
    font-weight: 600;
    font-size: 34px;
    letter-spacing: -.01em
}

.tg-breadcrumb-spacing {
    padding-top: 270px;
    padding-bottom: 50px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .tg-breadcrumb-spacing {
        padding-top: 170px;
        padding-bottom: 50px
    }
}

@media (max-width:575px) {
    .tg-breadcrumb-spacing {
        padding-top: 100px;
        padding-bottom: 50px
    }
}

.tg-breadcrumb-title {
    font-weight: 700;
    font-size: 100px;
    line-height: 110%;
    color: var(--tg-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
    .tg-breadcrumb-title {
        font-size: 70px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-breadcrumb-title {
        font-size: 50px
    }
}

@media (max-width:575px) {
    .tg-breadcrumb-title {
        font-size: 35px
    }
}

.tg-breadcrumb-service-spacing {
    padding: 45px 0 35px 0
}

.tg-breadcrumb-navigation-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 183%
}

@media (max-width:575px) {
    .tg-breadcrumb-navigation-title {
        font-size: 32px
    }
}

.tg-breadcrumb-navigation ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px 25px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-breadcrumb-navigation ul {
        justify-content: inherit
    }
}

.tg-breadcrumb-navigation ul li {
    font-weight: 500;
    font-size: 16px;
    color: var(--tg-common-black);
    margin-left: 13px
}

.tg-breadcrumb-navigation ul li a {
    position: relative
}

.tg-breadcrumb-navigation ul li a::after {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 14px;
    top: -4px;
    right: -22px;
    color: var(--tg-common-black)
}

.tg-text-slide-bigtext {
    font-weight: 800;
    font-size: 130px;
    line-height: 108%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    -webkit-text-stroke-color: var(--tg-common-black);
    -webkit-text-stroke-width: 1px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-text-slide-bigtext {
        font-size: 90px
    }
}

.tg-text-slide-active .swiper-slide {
    width: auto !important
}

.scroll__top {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    position: fixed;
    bottom: -10%;
    right: 50px;
    font-size: 16px;
    z-index: 99;
    color: var(--tg-common-white);
    text-align: center;
    cursor: pointer;
    background: var(--tg-common-black);
    transition: 1s ease;
    border-radius: 50%
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .scroll__top {
        right: 25px;
        bottom: 25px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .scroll__top {
        right: 30px
    }
}

@media (max-width:575px) {
    .scroll__top {
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 14px
    }
}

.scroll__top.open {
    bottom: 30px
}

@media (max-width:575px) {
    .scroll__top.open {
        bottom: 15px
    }
}

.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, rgb(0 0 0 / .25) 0%, #fff0 80%)
}

.scroll__top:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-white)
}

.tg-section-subtitle {
    font-weight: 600;
    letter-spacing: -.04em;
    color: var(--tg-common-black);
    display: inline-block
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-section-title {
        font-size: 40px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-section-title {
        font-size: 30px
    }

    .tg-section-title br {
        display: none
    }
}

.tgmobile__search {
    padding: 0 20px 25px 25px
}

.tgmobile__search form {
    position: relative
}

.tgmobile__search input {
    border: 1px solid #d9e1e1;
    border-radius: 8px;
    width: 100%;
    height: 50px;
    background: var(--tg-common-white);
    font-family: var(--tg-ff-poppins);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    padding-right: 50px;
    color: var(--tg-grey-1)
}

.tgmobile__search input:focus {
    border-color: var(--tg-common-black)
}

.tgmobile__search input::placeholder {
    font-family: var(--tg-ff-poppins);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--tg-grey-1)
}

.tgmobile__search button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    padding: 0;
    right: 20px;
    line-height: 1;
    background: #fff0;
    color: var(--tg-common-black)
}

.tgmobile__menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 350px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 9991;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(.785, .135, .15, .86);
    -moz-transition: all 0.3s cubic-bezier(.785, .135, .15, .86);
    -webkit-transition: all 0.3s cubic-bezier(.785, .135, .15, .86);
    -ms-transition: all 0.3s cubic-bezier(.785, .135, .15, .86) e;
    -o-transition: all 0.3s cubic-bezier(.785, .135, .15, .86);
    -webkit-transform: translateX(101%);
    -moz-transform: translateX(101%);
    -ms-transform: translateX(101%);
    -o-transform: translateX(101%);
    transform: translateX(101%)
}

@media (max-width:575px) {
    .tgmobile__menu {
        width: 100%
    }
}

.tgmobile__menu .navbar-collapse {
    display: block !important
}

.tgmobile__menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left
}

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

.tgmobile__menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0
}

.tgmobile__menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / .1)
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 20px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-common-white);
    background: var(--tg-common-black);
    cursor: pointer;
    border-radius: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
    border-radius: 10px;
    width: 12px;
    height: 2px;
    background-color: var(--tg-common-white);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
    border-radius: 10px;
    width: 2px;
    height: 12px;
    background-color: var(--tg-common-white);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
    background-color: var(--tg-common-black)
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
    background-color: var(--tg-common-white)
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
    display: none
}

.tgmobile__menu .navigation li>a {
    position: relative;
    display: block;
    padding: 13px 60px 13px 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tg-common-black);
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
    letter-spacing: 1px;
    line-height: 1
}

.tgmobile__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;
    width: 2px;
    background: var(--tg-common-black);
    pointer-events: none
}

.tgmobile__menu .navigation li ul li>a {
    margin-left: 20px
}

.tgmobile__menu .navigation li ul li ul li a {
    margin-left: 40px
}

.tgmobile__menu .navigation li ul li ul li ul li a {
    margin-left: 60px
}

.tgmobile__menu .navigation li>.sub-menu {
    display: none
}

.tgmobile__menu .navigation li>.sub-menu>li>ul {
    display: none
}

.tgmobile__menu .navigation ul {
    padding: 0;
    margin: 0
}

.tgmobile__menu .navigation ul li a {
    display: block
}

.tgmobile__menu .navigation ul li ul li>a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize
}

.tgmobile__menu .navigation:last-child {
    border-bottom: 1px solid rgb(0 0 0 / .1)
}

.tgmobile__menu .navigation>li>ul>li:first-child {
    border-top: 1px solid rgb(0 0 0 / .1)
}

.tgmobile__menu .navigation>li.active>a::before {
    height: 100%
}

.tgmobile__menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    color: var(--tg-common-black);
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 23px
}

.tgmobile__menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    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: rgb(0 0 0 / .5)
}

.tgmobile__menu .social-links ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

.tgmobile__menu .social-links ul li {
    position: relative;
    display: inline-block;
    margin: 0 6px 10px
}

.tgmobile__menu .social-links ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 22px;
    color: var(--tg-common-black);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.tgmobile__menu .social-links ul li a svg {
    width: 18px
}

.tgmobile__menu .social-links ul li a:hover {
    color: var(--tg-grey-1)
}

.tgmobile__menu .tgmenu__action {
    padding: 0 0;
    margin: 0 0
}

.tgmobile__menu .tgmenu__action>ul {
    margin: 0 0;
    padding: 30px 20px 0;
    justify-content: center;
    gap: 0 15px
}

.tgmobile__menu .tgmenu__action>ul li {
    margin: 0 0
}

.tgmobile__menu .tgmenu__action>ul .header-btn {
    display: block
}

.tgmobile__menu-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--tg-common-white);
    padding: 0 0;
    z-index: 5;
    box-shadow: -9px 0 14px 0 rgb(0 0 0 / .06)
}

.tgmobile__menu-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--tg-color-white-default);
    margin-right: 30px;
    top: 15px
}

.mobile-menu-visible {
    overflow: hidden
}

.mobile-menu-visible .tgmobile__menu {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%)
}

.mobile-menu-visible .tgmobile__menu-backdrop {
    opacity: 1;
    visibility: visible
}

.mobile-menu-visible .tgmobile__menu .close-btn {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .header-mobile-spacing {
        padding: 20px 0
    }
}

@-webkit-keyframes borderanimate2 {
    0% {
        transform: translate(-50%, -50%) scale(.8)
    }

    60% {
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0
    }
}

@-moz-keyframes borderanimate2 {
    0% {
        transform: translate(-50%, -50%) scale(.8)
    }

    60% {
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0
    }
}

@-ms-keyframes borderanimate2 {
    0% {
        transform: translate(-50%, -50%) scale(.8)
    }

    60% {
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0
    }
}

@keyframes borderanimate2 {
    0% {
        transform: translate(-50%, -50%) scale(.8)
    }

    60% {
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px
    }

    100% {
        margin-top: 0
    }
}

.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(.645, .045, .355, 1) 0.1s;
    opacity: 0
}

@keyframes img-anim-right {
    0% {
        transform: translateX(1);
        clip-path: inset(0 0 0 100%);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(.645, .045, .355, 1) 0.1s;
    opacity: 0
}

@keyframes img-anim-left {
    0% {
        transform: translateX(1);
        clip-path: inset(0 100% 0 0);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(.645, .045, .355, 1) 0.1s;
    opacity: 0
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

@keyframes upslide {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-30px)
    }

    60% {
        transform: translateY(-20px)
    }
}

.upslide {
    animation: upslide 4s linear forwards infinite alternate
}

.tg-rotate {
    -webkit-animation: rotate-infinite 15s linear infinite;
    animation: rotate-infinite 15s linear infinite
}

@-webkit-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-moz-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-ms-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes rotate-infinite {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.search__popup {
    padding-top: 70px;
    padding-bottom: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--tg-common-white);
    backdrop-filter: blur(10px);
    z-index: 99999999;
    -webkit-transform: translateY(calc(-100% - 80px));
    -moz-transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(calc(-100% - 80px));
    -o-transform: translateY(calc(-100% - 80px));
    transform: translateY(calc(-100% - 80px));
    -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition-delay: 0.5s
}

.search__popup.search-opened {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    transition-delay: 0s
}

.search__popup.search-opened .search__input {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s
}

.search__popup.search-opened .search__input::after {
    width: 100%;
    transition-delay: 0.5s
}

.search__input {
    position: relative;
    height: 80px;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    -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;
    transition-delay: 0.5s;
    opacity: 0
}

.search__input::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: var(--tg-common-black);
    transition-delay: 0.3s;
    -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
}

.search__input input {
    width: 100%;
    height: 100%;
    background-color: #fff0;
    border: 0;
    outline: 0;
    font-size: 24px;
    color: var(--tg-common-black);
    border-bottom: 1px solid #fff0;
    padding: 0;
    padding-right: 30px
}

.search__input input::placeholder {
    font-size: 24px;
    color: var(--tg-grey-1)
}

.search__input button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--tg-common-black);
    border: none;
    padding: 0 0;
    background: #fff0
}

.search__close {
    position: absolute;
    top: 10%;
    right: 2%;
    z-index: 2
}

.search-close-btn {
    margin: 0;
    padding: 0;
    border: none;
    color: var(--tg-common-black);
    cursor: pointer;
    background: #fff0
}

.search-close-btn:hover {
    color: var(--tg-theme-primary)
}

.search-popup-overlay {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    -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;
    transition-delay: 0.5s;
    opacity: 0;
    visibility: hidden;
    background: #000d25
}

.search-popup-overlay.search-popup-overlay-open {
    opacity: .55;
    visibility: visible;
    transition-delay: 0s
}

.search-input-field~.search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--tg-theme-primary);
    transition: all 0.5s;
    z-index: 1
}

.search-input-field:focus~.search-focus-border {
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.5s
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-170 {
        padding-top: 115px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-165 {
        padding-top: 110px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-160 {
        padding-top: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-155 {
        padding-top: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-150 {
        padding-top: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-145 {
        padding-top: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-140 {
        padding-top: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-135 {
        padding-top: 95px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-130 {
        padding-top: 90px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-125 {
        padding-top: 85px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-120 {
        padding-top: 80px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-115 {
        padding-top: 75px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-110 {
        padding-top: 70px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-105 {
        padding-top: 65px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pt-100 {
        padding-top: 60px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-170 {
        padding-bottom: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-165 {
        padding-bottom: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-160 {
        padding-bottom: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-155 {
        padding-bottom: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-150 {
        padding-bottom: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-145 {
        padding-bottom: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-140 {
        padding-bottom: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-135 {
        padding-bottom: 95px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-130 {
        padding-bottom: 90px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-125 {
        padding-bottom: 85px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-120 {
        padding-bottom: 80px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-115 {
        padding-bottom: 75px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-110 {
        padding-bottom: 70px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-105 {
        padding-bottom: 65px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-100 {
        padding-bottom: 60px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-95 {
        padding-bottom: 55px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .pb-90 {
        padding-bottom: 50px
    }
}

.tg-header-search {
    width: 60px;
    height: 60px;
    border: 1px solid var(--tg-common-black);
    border-radius: 50%;
    color: var(--tg-common-black)
}

.tg-header-search i {
    font-weight: 500
}

.tg-header-4-right .tg-header-search {
    border: 1px solid var(--tg-common-white);
    color: var(--tg-common-white)
}

.tg-header-4-right .tgmenu-offcanvas-open-bar {
    border: 1px solid var(--tg-common-white)
}

.tg-header-4-right .tgmenu-offcanvas-open-bar span {
    background: var(--tg-common-white)
}

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    width: 100%;
    z-index: 999;
    visibility: visible;
    background: rgb(255 255 255 / .9);
    box-shadow: 0 1px 3px 0 rgb(18 20 32 / .14);
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    backdrop-filter: blur(10px)
}

.header-sticky .tgmenu__navbar-wrap>ul>li>a {
    padding: 35px 0
}

.header-sticky .tgmenu-main-4>ul>li>a {
    color: var(--tg-common-black)
}

.header-sticky .tg-header-logo .logo-1 {
    display: none
}

.header-sticky .tg-header-logo .logo-2 {
    display: block !important
}

.header-sticky .tg-header-4-right .tg-header-search {
    border: 1px solid var(--tg-common-black);
    color: var(--tg-common-black)
}

.header-sticky .tg-header-4-right .tgmenu-offcanvas-open-bar {
    border: 1px solid var(--tg-common-black)
}

.header-sticky .tg-header-4-right .tgmenu-offcanvas-open-bar span {
    background: var(--tg-common-black)
}

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

.tgmenu__navbar-wrap>ul>li:not(:last-child) {
    margin-right: 50px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tgmenu__navbar-wrap>ul>li:not(:last-child) {
        margin-right: 30px
    }
}

.tgmenu__navbar-wrap>ul>li>a {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    color: var(--tg-common-black);
    padding: 45px 0;
    font-family: var(--tg-ff-heading)
}

.tgmenu__navbar-wrap>ul>li>a:hover .effect-1 {
    top: -100%
}

.tgmenu__navbar-wrap>ul>li .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 250px;
    background: var(--tg-common-white);
    margin: 0;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    transform-origin: 0 0;
    -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;
    -webkit-box-shadow: 0 30px 70px 0 rgb(137 139 142 / .15);
    -moz-box-shadow: 0 30px 70px 0 rgb(137 139 142 / .15);
    box-shadow: 0 30px 70px 0 rgb(137 139 142 / .15);
    border-radius: 0;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9
}

.tgmenu__navbar-wrap>ul>li .sub-menu.sub-menu-right {
    right: 0;
    left: auto
}

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

.tgmenu__navbar-wrap>ul>li .sub-menu li {
    margin-left: 0;
    text-align: left;
    display: block
}

.tgmenu__navbar-wrap>ul>li .sub-menu li a {
    padding: 6px 15px 6px 25px;
    font-weight: 500;
    font-size: 16px;
    display: block;
    color: var(--tg-common-black);
    margin: 0;
    font-family: var(--tg-ff-heading);
    text-transform: capitalize
}

.tgmenu__navbar-wrap>ul>li .sub-menu li:hover>a,
.tgmenu__navbar-wrap>ul>li .sub-menu li.active>a {
    color: var(--tg-theme-primary)
}

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

.tgmenu__navbar-wrap>ul>li.active>a,
.tgmenu__navbar-wrap>ul>li:hover>a {
    color: var(--tg-theme-primary) !important
}

.tgmenu-offcanvas-open-bar {
    background: #fff0;
    position: relative;
    height: 60px;
    width: 60px;
    border: 1px solid var(--tg-common-black);
    border-radius: 50%;
    text-align: center;
    line-height: 54px;
    padding-top: 20px;
    cursor: pointer
}

@media (max-width:575px) {
    .tgmenu-offcanvas-open-bar {
        height: 45px;
        width: 45px;
        padding-top: 13px
    }
}

.tgmenu-offcanvas-open-bar:hover span:nth-child(2) {
    transform: translateX(0)
}

.tgmenu-offcanvas-open-bar span {
    display: block;
    height: 2px;
    width: 22px;
    background: var(--tg-common-black);
    margin: auto;
    transition: 0.4s
}

.tgmenu-offcanvas-open-bar span:not(:last-child) {
    margin-bottom: 6px
}

.tgmenu-offcanvas-open-bar span:nth-child(2) {
    transform: translateX(2px)
}

.tgmenu-link-effect {
    position: relative;
    overflow: hidden;
    display: block;
    height: 17px;
    line-height: normal
}

.tgmenu-link-effect .effect-1 {
    display: block;
    height: 100%;
    position: relative;
    top: 0%;
    transition: 0.3s
}

.tgmenu__wrap-two .tgmenu__navbar-wrap>ul>li.active>a,
.tgmenu__wrap-two .tgmenu__navbar-wrap>ul>li:hover>a {
    color: var(--tg-common-black) !important
}

.tgmenu-main-4>ul>li>a {
    color: var(--tg-common-white)
}

.tg-menu-full {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
    z-index: 999;
    background: var(--tg-common-white);
    box-shadow: 0 10px 30px 0 rgb(25 25 26 / .1);
    overflow: hidden;
    margin: auto
}

.tg-menu-full .tg-full-wrapper {
    padding: 30px 30px 0 30px
}

.tg-menu-full .tg-full-wrapper .full {
    margin-bottom: 25px
}

.tg-menu-full .tg-full-wrapper .full-thumb {
    height: 250px;
    border-radius: 4px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
(max-width:575px) {
    .tg-menu-full .tg-full-wrapper .full-thumb {
        height: auto
    }
}

.tg-menu-full .tg-full-wrapper .full-thumb a {
    padding: 0
}

.tg-menu-full .tg-full-wrapper .full-thumb img {
    transition: all 0.4s ease;
    object-fit: cover
}

.tg-menu-full .tg-full-wrapper .full-thumb:hover img {
    transform: scale(1.06)
}

.tg-menu-full .tg-full-wrapper .full-thumb-wrap {
    padding: 10px;
    border: 1px solid rgb(0 0 0 / .1);
    position: relative
}

.tg-menu-full .tg-full-wrapper .full-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--tg-common-black)
}

.tg-menu-full .tg-full-wrapper .full-title.active a {
    color: var(--tg-theme-primary)
}

.tg-menu-full .tg-full-wrapper .full-title a {
    padding: 0;
    color: var(--tg-common-black)
}

.tg-menu-full .tg-full-wrapper .full-title a:hover {
    color: var(--tg-theme-primary)
}

.tg-menu-full .tg-full-wrapper .comeing-soon .full-thumb {
    position: relative
}

.tg-menu-full .tg-full-wrapper .comeing-soon .full-thumb::before {
    position: absolute;
    z-index: 22;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    backdrop-filter: blur(6px);
    background-color: rgb(0 0 0 / .2);
    border-radius: 6px
}

.tg-hero-content {
    padding-left: 125px
}

@media only screen and (min-width:1600px) and (max-width:1700px),
only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-content {
        padding-left: 15px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-content {
        padding-top: 0
    }
}

.tg-hero-title {
    font-weight: 800;
    font-size: 140px;
    line-height: 1;
    color: #000
}

@media only screen and (min-width:1600px) and (max-width:1700px),
only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-title {
        font-size: 130px
    }
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-title {
        font-size: 100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-title {
        font-size: 80px
    }
}

@media (max-width:575px) {
    .tg-hero-title {
        font-size: 40px
    }
}

.tg-hero-title img {
    margin-left: -20px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-title img {
        width: 100px
    }
}

@media (max-width:575px) {
    .tg-hero-title img {
        width: 70px;
        margin-left: 0
    }
}

.tg-hero-thumb {
    float: right
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-thumb {
        float: inherit;
        padding-top: 30px
    }

    .tg-hero-thumb img {
        width: 100%
    }
}

.tg-hero-spacing {
    padding-top: 50px
}

.tg-hero-bigtext {
    font-weight: 800;
    font-size: 300px;
    line-height: 1;
    color: var(--tg-theme-primary);
    margin-bottom: 0
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-bigtext {
        font-size: 200px
    }
}

@media (max-width:575px) {
    .tg-hero-bigtext {
        font-size: 100px
    }
}

.tg-hero-text-slide-active {
    margin-top: -135px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-text-slide-active {
        margin-top: -100px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-text-slide-active {
        margin-top: -50px
    }
}

@media (max-width:575px) {
    .tg-hero-text-slide-active {
        margin-top: 0
    }
}

.tg-hero-text-slide-active .swiper-slide {
    width: auto !important
}

.tg-hero-text-shape {
    position: absolute;
    bottom: 36px;
    left: 0;
    width: 100%;
    z-index: 22
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-text-shape {
        bottom: 23px
    }
}

.tg-hero-2-spacing {
    padding-top: 245px;
    padding-bottom: 195px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-2-spacing {
        padding-top: 170px;
        padding-bottom: 110px
    }
}

.tg-hero-2-title {
    font-weight: 700;
    font-size: 120px;
    line-height: 1;
    letter-spacing: -.03em
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .tg-hero-2-title {
        font-size: 90px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-hero-2-title {
        font-size: 80px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tg-hero-2-title {
        font-size: 60px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-2-title {
        font-size: 40px
    }

    .tg-hero-2-title br {
        display: none
    }
}

.tg-hero-2-para {
    padding-right: 587px
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .tg-hero-2-para {
        padding-right: 415px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-hero-2-para {
        padding-right: 318px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-2-para {
        padding-right: 0
    }
}

@media (max-width:575px) {
    .tg-hero-2-para {
        flex-direction: column
    }
}

.tg-hero-2-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1
}

.tg-hero-2-shape-two {
    position: absolute;
    right: 195px;
    bottom: 210px
}

@media (max-width:575px) {
    .tg-hero-2-shape-two {
        display: none
    }
}

.tg-hero-2-thumb {
    position: absolute;
    right: 0;
    top: 175px;
    z-index: -1;
    width: 55%;
    height: 92%;
    object-fit: cover
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-2-thumb {
        position: inherit;
        margin-top: 30px;
        width: 100%
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-2-btn {
        margin-right: 20px
    }
}

.tg-hero-3-title {
    font-weight: 700;
    font-size: 87px;
    line-height: 122%;
    letter-spacing: 0
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-3-title {
        font-size: 65px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-3-title {
        font-size: 45px
    }
}

@media (max-width:575px) {
    .tg-hero-3-title {
        font-size: 35px
    }
}

.tg-hero-3-banner {
    flex-wrap: wrap;
    padding: 17px 115px 17px 30px;
    transform: translateY(-13px)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-3-banner {
        transform: translateY(1px)
    }
}

@media (max-width:575px) {
    .tg-hero-3-banner {
        padding: 11px 15px 11px 15px
    }
}

.tg-hero-3-banner span {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black);
    line-height: 1;
    font-family: var(--tg-ff-heading);
    letter-spacing: 0
}

.tg-hero-3-roundedtext {
    width: 72px;
    height: 72px;
    display: inline-block;
    background: var(--tg-theme-primary);
    line-height: 56px;
    text-align: center;
    border-radius: 50px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-3-roundedtext {
        display: none
    }
}

.tg-hero-3-roundedtext .shape {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto
}

.tg-hero-3-para {
    margin-left: 670px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-hero-3-para {
        margin-left: 400px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-3-para {
        margin-left: 0
    }
}

@media (max-width:575px) {
    .tg-hero-3-para {
        flex-wrap: wrap
    }
}

.tg-hero-3-spacing {
    padding-top: 120px;
    padding-bottom: 70px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-3-spacing {
        padding-top: 80px
    }
}

@media (max-width:575px) {
    .tg-hero-3-spacing {
        padding-top: 30px
    }
}

.tg-hero-3-shape {
    margin-top: -20px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-3-shape {
        margin-top: 0;
        margin-bottom: 30px
    }
}

.tg-hero-3-shape-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%
}

.tg-hero-3-transparent-text {
    font-weight: 800;
    font-size: 300px;
    color: #f0f0f0;
    position: absolute;
    bottom: 96px;
    left: 0;
    line-height: 1;
    z-index: -1;
    font-family: var(--tg-ff-heading);
    margin-left: -135px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-3-transparent-text {
        font-size: 163px;
        margin-left: -50px;
        bottom: 158px
    }
}

@media (max-width:575px) {
    .tg-hero-3-transparent-text {
        font-size: 100px
    }
}

.tg-hero-4-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1
}

.tg-hero-4-btn {
    padding-top: 252px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-4-btn {
        padding-top: 50px
    }
}

.tg-hero-4-spacing {
    padding-top: 135px;
    padding-bottom: 50px
}

.tg-hero-4-right-shape {
    position: absolute;
    right: 0;
    bottom: 0
}

@media (max-width:575px) {
    .tg-hero-4-right-shape {
        width: 80px
    }
}

.tg-hero-4-text-slide-active .swiper-slide {
    width: auto !important
}

.tg-hero-4-bigtext {
    font-weight: 800;
    font-size: 140px;
    line-height: 100%;
    color: var(--tg-common-white);
    transition: all 0.4s ease
}

.tg-hero-4-bigtext:hover {
    filter: blur(7px)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-4-bigtext {
        font-size: 90px
    }
}

.tg-hero-4-bigtext:hover {
    backdrop-filter: blur(14px)
}

.tg-hero-5-content {
    margin-left: 100px
}

@media only screen and (min-width:1600px) and (max-width:1700px),
only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-content {
        margin-left: 0
    }
}

.tg-hero-5-spacing {
    padding-top: 160px;
    padding-bottom: 210px
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tg-hero-5-spacing {
        padding-top: 120px
    }
}

@media (max-width:575px) {
    .tg-hero-5-spacing {
        padding-top: 90px;
        padding-bottom: 110px
    }
}

.tg-hero-5-title {
    font-weight: 700;
    font-size: 180px;
    line-height: 100%;
    letter-spacing: 0
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .tg-hero-5-title {
        font-size: 140px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-hero-5-title {
        font-size: 120px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tg-hero-5-title {
        font-size: 90px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-title {
        font-size: 80px
    }

    .tg-hero-5-title span {
        margin-left: 0
    }

    .tg-hero-5-title img {
        margin-left: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tg-hero-5-title {
        font-size: 60px
    }
}

@media (max-width:575px) {
    .tg-hero-5-title {
        font-size: 34px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-title .star {
        width: 80px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-title .star {
        width: 50px;
        transform: translateY(-6px)
    }
}

@media (max-width:575px) {
    .tg-hero-5-title .star {
        width: 30px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-hero-5-title .avatar {
        width: 150px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-title .avatar {
        width: 100px
    }
}

@media (max-width:575px) {
    .tg-hero-5-title .avatar {
        width: 60px
    }
}

.tg-hero-5-para {
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-black)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-para br {
        display: none
    }
}

.tg-hero-5-text {
    margin-top: -143px;
    margin-left: -30px
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-text {
        margin-top: -120px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tg-hero-5-text {
        margin-top: -74px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-text {
        margin-top: 40px;
        margin-left: 0
    }
}

.tg-hero-5-shape {
    position: absolute;
    bottom: 0;
    left: 80px;
    z-index: -1
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-shape {
        left: 0;
        width: 300px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-shape {
        width: 200px
    }
}

@media (max-width:575px) {
    .tg-hero-5-shape {
        width: 100px
    }
}

.tg-hero-5-shape-two {
    position: absolute;
    bottom: -80px;
    right: 172px;
    z-index: -1
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-shape-two {
        width: 150px;
        bottom: -40px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-5-shape-two {
        right: 0
    }
}

@media (max-width:575px) {
    .tg-hero-5-shape-two {
        width: 100px
    }
}

.tg-hero-6-spacing {
    padding-top: 127px;
    padding-bottom: 180px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-6-spacing {
        padding-bottom: 100px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-6-content {
        margin-bottom: 20px
    }
}

.tg-hero-6-title {
    font-weight: 700;
    font-size: 90px;
    line-height: 111%;
    color: var(--tg-common-white)
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tg-hero-6-title {
        font-size: 60px
    }
}

@media (max-width:575px) {
    .tg-hero-6-title {
        font-size: 44px
    }
}

.tg-hero-6-thumb {
    position: absolute;
    bottom: -209px;
    left: 0;
    width: 50%;
    height: 540px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-6-thumb {
        width: 48%
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tg-hero-6-thumb {
        bottom: -100px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-6-thumb {
        bottom: 0;
        width: 100%;
        position: inherit;
        height: auto;
        margin-bottom: 30px
    }
}

.tg-hero-6-thumb img {
    object-fit: cover;
    height: 100%
}

.tg-hero-6-btn {
    margin-right: -85px
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-6-btn {
        margin-right: 0
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-6-btn .tg-portfolio-4-btn {
        flex-direction: column;
        align-items: flex-start
    }
}

.tg-hero-6-btn .tg-btn-rounded {
    background: var(--tg-common-white);
    border-color: var(--tg-common-white)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-6-btn .tg-btn-rounded {
        margin-right: 20px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-6-btn .tg-btn-rounded {
        margin-bottom: 20px
    }
}

.tg-hero-6-btn .tg-btn-rounded:hover {
    border-color: var(--tg-common-black)
}

.tg-hero-6-btn .tg-portfolio-4-btn p {
    color: var(--tg-common-white)
}

.tg-hero-6-icon {
    display: flex;
    justify-content: space-between;
    flex: 0 0 auto
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-6-icon {
        margin-left: 0
    }
}

@media (max-width:575px) {
    .tg-hero-6-icon {
        padding-bottom: 0
    }
}

.tg-hero-6-icon span {
    display: inline-block;
    margin: 0 5px
}

@media (max-width:575px) {
    .tg-hero-6-icon span {
        width: 60px
    }
}

.tg-hero-7-title {
    font-weight: 700;
    font-size: 100px;
    line-height: 110%;
    text-align: center;
    color: var(--tg-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
    .tg-hero-7-title {
        font-size: 70px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tg-hero-7-title {
        font-size: 50px
    }
}

@media (max-width:575px) {
    .tg-hero-7-title {
        font-size: 35px
    }
}

.tg-hero-7-spacing {
    padding-top: 207px;
    padding-bottom: 225px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-7-spacing {
        padding-top: 120px;
        padding-bottom: 180px
    }
}

.tg-hero-7-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1
}

.tg-hero-7-content {
    position: relative;
    z-index: 3
}

.tg-hero-7-next {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: var(--tg-common-white);
    font-family: var(--tg-ff-heading);
    transition: all .4 ease
}

.tg-hero-7-next:hover {
    color: var(--tg-theme-primary)
}

.tg-hero-7-prev {
    width: 80px;
    height: 80px;
    display: inline-block;
    background: var(--tg-common-black);
    color: var(--tg-common-white);
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    transition: all 0.4s ease
}

.tg-hero-7-prev:hover {
    background: var(--tg-common-white);
    color: var(--tg-common-black)
}

.tg-hero-7-navigation {
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 88%;
    margin: 0 120px
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-7-navigation {
        margin: 0 80px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-7-navigation {
        margin: 0 30px
    }
}

.tg-hero-7-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-7-shape {
        display: none
    }
}

.tg-hero-7-zoom .swiper-slide.swiper-slide-active .text {
    -webkit-animation-name: fadeInUp;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.8s;
    animation-duration: 1s;
    opacity: 1
}

.tg-hero-7-zoom .swiper-slide.swiper-slide-active .text2 {
    -webkit-animation-name: fadeInUp;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.9s;
    animation-duration: 1s;
    opacity: 1
}

.tg-hero-8-spacing {
    padding-top: 175px;
    padding-bottom: 155px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-spacing {
        padding-top: 120px;
        padding-bottom: 120px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-spacing {
        padding-bottom: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-spacing {
        padding-top: 90px
    }
}

.tg-hero-8-subtitle {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -.01em;
    color: var(--tg-theme-primary);
    display: inline-block
}

.tg-hero-8-title {
    font-size: 150px;
    line-height: 80%;
    letter-spacing: -.02em;
    color: var(--tg-common-white)
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-hero-8-title {
        font-size: 115px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-title {
        font-size: 100px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-title {
        font-size: 70px
    }
}

@media (max-width:575px) {
    .tg-hero-8-title {
        font-size: 50px
    }
}

.tg-hero-8-contact-info {
    column-count: 2;
    margin-right: 340px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-hero-8-contact-info {
        margin-right: 240px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-contact-info {
        margin-right: 150px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-contact-info {
        margin-right: 0;
        column-count: 1
    }
}

.tg-hero-8-contact-info a {
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-common-white);
    display: flex;
    margin-bottom: 15px
}

.tg-hero-8-contact-info a:hover {
    color: var(--tg-theme-primary)
}

.tg-hero-8-contact-info a i {
    transform: translateY(5px);
    margin-right: 20px
}

.tg-hero-8-btn {
    margin-left: 270px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-hero-8-btn {
        margin-left: 200px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-btn {
        margin-left: 0
    }
}

.tg-hero-8-thumb {
    position: absolute;
    bottom: 0;
    right: 26px;
    width: 38%
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-thumb {
        width: auto;
        position: inherit;
        right: auto
    }
}

.tg-hero-8-thumb img {
    mix-blend-mode: luminosity
}

.tg-hero-8-author-position {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -.01em;
    color: var(--tg-common-black);
    background: var(--tg-theme-primary);
    transform: rotate(-10deg);
    font-family: var(--tg-ff-heading);
    padding: 14px 20px;
    position: absolute;
    bottom: 192px;
    right: 314px
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-author-position {
        right: 70px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-hero-8-author-position {
        bottom: 100px
    }
}

@media (max-width:575px) {
    .tg-hero-8-author-position {
        font-size: 20px
    }
}

.tg-hero-8-shape {
    position: absolute;
    bottom: 0;
    right: -25px
}

.tg-hero-8-shape-two {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 27%
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-item {
        margin-left: 0
    }
}

.tg-about-item h4 {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -.02em
}

.tg-about-item p {
    font-size: 18px;
    color: #000
}

.tg-about-shape {
    margin-left: -40px
}

.tg-about-bigtext {
    position: absolute;
    bottom: 130px;
    right: 0;
    font-weight: 500;
    font-size: 210px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0;
    color: rgb(0 0 0 / .15);
    margin-right: -70px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-bigtext {
        font-size: 160px
    }
}

@media (max-width:575px) {
    .tg-about-bigtext {
        font-size: 100px
    }
}

.tg-about-2-content {
    margin-right: 400px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tg-about-2-content {
        margin-right: 200px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-2-content {
        margin-right: 0;
        margin-bottom: 40px
    }
}

.tg-about-2-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #000
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-2-clients {
        margin-left: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-2-clients {
        margin-bottom: 30px
    }
}

.tg-about-2-clients h4 {
    font-weight: 600;
    font-size: 50px;
    letter-spacing: -.02em;
    margin-bottom: 0
}

.tg-about-2-clients span {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black);
    margin-bottom: 14px;
    display: block
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-2-thumb-two {
        padding-top: 0
    }
}

.tg-about-3-thumb {
    margin-top: -140px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-3-thumb {
        margin-top: 0
    }
}

.tg-about-3-border {
    height: 1px;
    width: 100%;
    background: var(--tg-common-black)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-3-content p br {
        display: none
    }
}

.tg-about-3-counter-item h2 {
    font-weight: 500;
    font-size: 70px;
    letter-spacing: -.01em
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-3-counter-item h2 {
        font-size: 60px
    }
}

.tg-about-5-para {
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-black)
}

@media (max-width:575px) {
    .tg-about-5-thumb-three {
        padding-top: 0
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-5-thumb-wrap {
        margin-right: 30px
    }
}

@media (max-width:575px) {
    .tg-about-5-thumb-wrap {
        margin-right: 0
    }
}

.tg-about-6-thumb {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 51%;
    height: 524px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-6-thumb {
        height: 450px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-about-6-thumb {
        position: inherit;
        width: 100%;
        height: auto;
        margin-bottom: 30px
    }
}

.tg-about-6-thumb img {
    object-fit: cover;
    height: 100%
}

.tg-service-item {
    border-top: 1px solid var(--tg-common-black);
    border-bottom: 1px solid var(--tg-common-black);
    padding: 43px 0 20px 60px;
    margin-top: -1px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1
}

@media (max-width:575px) {
    .tg-service-item {
        padding: 23px 15px 20px 15px
    }
}

.tg-service-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    background: var(--tg-common-black);
    top: auto;
    bottom: 0;
    left: 0;
    transition: all 0.4s ease;
    z-index: -1
}

.tg-service-item:hover::before {
    height: 100%;
    top: 0;
    bottom: auto
}

.tg-service-item:hover .tg-service-item-title span {
    color: var(--tg-common-white)
}

.tg-service-item:hover .tg-service-item-title h3 {
    color: var(--tg-common-white)
}

.tg-service-item:hover .tg-service-text p {
    opacity: 0
}

.tg-service-item:hover .tg-service-text img {
    opacity: 1;
    visibility: visible
}

.tg-service-item:hover .tg-service-btn a {
    border: 1px solid var(--tg-theme-primary);
    background: var(--tg-theme-primary)
}

.tg-service-item-title {
    display: flex;
    align-items: center
}

.tg-service-item-title span {
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-common-black);
    transition: all 0.3s ease
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-item-title span {
        margin-right: 15px
    }
}

.tg-service-item-title h3 {
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -.01em;
    color: var(--tg-common-black);
    margin-bottom: 0;
    transition: all 0.3s ease
}

.tg-service-text {
    position: relative
}

.tg-service-text p {
    color: var(--tg-common-black);
    transition: all 0.3s ease;
    margin-bottom: 0
}

.tg-service-text img {
    position: absolute;
    top: -1px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    height: 100%
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-text img {
        top: 0
    }
}

.tg-service-btn a {
    border: 1px solid var(--tg-common-black);
    border-radius: 40px;
    width: 64px;
    height: 64px;
    display: inline-block;
    text-align: center;
    line-height: 59px;
    transition: all 0.4s ease;
    color: var(--tg-common-black)
}

.tg-service-2-subtitle {
    font-weight: 600;
    font-size: 18px;
    color: var(--tg-common-white);
    display: block
}

.tg-service-2-item {
    font-family: var(--tg-ff-heading);
    font-weight: 700;
    font-size: 80px;
    line-height: 1;
    color: var(--tg-common-white);
    display: flex;
    align-items: center;
    transition: all 0.6s ease;
    border-top: 1px solid var(--tg-common-white);
    border-bottom: 1px solid var(--tg-common-white);
    padding-top: 30px;
    padding-bottom: 30px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-2-item {
        font-size: 40px
    }
}

@media (max-width:575px) {
    .tg-service-2-item {
        font-size: 24px
    }
}

.tg-service-2-item:hover {
    padding-left: 60px;
    color: var(--tg-theme-primary)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-2-item:hover {
        padding-left: 10px
    }
}

.tg-service-2-item span {
    font-family: var(----tg-ff-body);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--tg-common-black);
    width: 40px;
    height: 40px;
    display: inline-block;
    background: var(--tg-theme-primary);
    border-radius: 60px;
    text-align: center;
    line-height: 40px;
    margin-right: 30px
}

.tg-service-3-icon {
    color: rgb(28 29 31 / .15);
    transition: all 0.4s ease
}

.tg-service-3-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid var(--tg-common-black)
}

@media (max-width:575px) {
    .tg-service-3-item {
        padding: 15px 0
    }
}

.tg-service-3-item:hover {
    background: var(--tg-common-white);
    border-color: var(--tg-common-white);
    padding: 25px 30px
}

@media (max-width:575px) {
    .tg-service-3-item:hover {
        padding: 15px 10px
    }
}

.tg-service-3-item:hover .tg-service-3-icon {
    color: var(--tg-common-black)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-3-item-wrap {
        margin-right: 0;
        margin-left: 0
    }
}

.tg-service-3-item-content span {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black);
    display: inline-block;
    margin-bottom: 2px
}

.tg-service-3-item-content h4 {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -.01em
}

@media (max-width:575px) {
    .tg-service-3-item-content h4 {
        font-size: 18px
    }
}

.tg-service-4-item h4 {
    font-weight: 700;
    font-size: 44px;
    line-height: 114%;
    letter-spacing: -.01em;
    color: var(--tg-common-white)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-4-item h4 {
        font-size: 35px
    }
}

.tg-service-4-item h4 a:hover {
    color: var(--tg-theme-primary)
}

.tg-service-4-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-white)
}

.tg-service-4-item .link {
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    text-transform: uppercase;
    color: var(--tg-common-white);
    border-bottom: 1px solid #fff0
}

.tg-service-4-item .link:hover {
    color: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary)
}

.tg-service-5-item {
    border-top: 1px solid var(--tg-common-white);
    border-bottom: 1px solid var(--tg-common-white);
    padding: 43px 0 20px 60px;
    margin-top: -1px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1
}

@media (max-width:575px) {
    .tg-service-5-item {
        padding: 43px 20px 20px 20px
    }
}

.tg-service-5-item:hover {
    border-top: 1px solid var(--tg-common-black);
    border-bottom: 1px solid var(--tg-common-black)
}

.tg-service-5-item:hover .tg-service-5-item-title span {
    color: var(--tg-theme-primary)
}

.tg-service-5-item:hover .tg-service-5-item-title h3 {
    color: var(--tg-theme-primary)
}

.tg-service-5-item:hover .tg-service-5-btn a {
    border: 1px solid var(--tg-theme-primary);
    background: var(--tg-theme-primary)
}

.tg-service-5-item:hover .tg-service-5-thumb {
    opacity: 1;
    visibility: visible
}

.tg-service-5-item-title {
    display: flex;
    align-items: center
}

.tg-service-5-item-title h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 107%;
    letter-spacing: -.01em;
    color: var(--tg-common-white);
    transition: all 0.4s ease
}

.tg-service-5-item-title span {
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-common-white);
    transition: all 0.4s ease
}

@media (max-width:575px) {
    .tg-service-5-item-title span {
        margin-right: 20px
    }
}

.tg-service-5-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-white);
    transition: all 0.4s ease
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-5-text p br {
        display: none
    }
}

.tg-service-5-btn a {
    border: 1px solid var(--tg-common-white);
    border-radius: 40px;
    width: 64px;
    height: 64px;
    display: inline-block;
    text-align: center;
    color: var(--tg-common-white);
    line-height: 59px;
    transition: all 0.4s ease
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-5-title-text {
        margin-right: 0
    }
}

.tg-service-5-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-5-thumb {
        height: 100%;
        object-fit: cover
    }
}

.tg-service-6-count {
    font-weight: 700;
    font-size: 200px;
    line-height: .8;
    letter-spacing: -.01em;
    background: linear-gradient(180deg, #cbca7b 0%, #fff0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    margin-bottom: -53px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-6-count {
        font-size: 170px
    }
}

.tg-service-6-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 114%;
    letter-spacing: -.01em;
    color: var(--tg-common-black)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-6-title {
        font-size: 32px
    }
}

.tg-service-6-para {
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-black)
}

.tg-service-6-btn {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--tg-common-black);
    font-family: var(--tg-ff-heading);
    border-bottom: 1px solid #fff0
}

.tg-service-6-btn:hover {
    border-color: var(--tg-common-black)
}

.tg-service-7-wrap {
    border: 1px solid var(--tg-common-black);
    padding: 40px 40px 25px 40px;
    transition: all 0.4s ease
}

.tg-service-7-wrap:hover {
    background: var(--tg-common-white);
    border-color: var(--tg-common-white)
}

.tg-service-7-count {
    font-family: var(----tg-ff-heading);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -.01em;
    color: var(--tg-ff-heading);
    display: block;
    margin-bottom: 150px;
    text-align: right
}

.tg-service-7-title {
    font-size: 30px;
    line-height: 107%;
    letter-spacing: -.01em;
    display: block
}

.tg-service-7-btnwrap .tg-btn-rounded-black:hover {
    background: var(--tg-common-white);
    color: var(--tg-common-black)
}

.tg-service-7-btnwrap .tg-btn-rounded-black:hover .tg-btn-circle-dot {
    background: var(--tg-common-white)
}

.tg-service-7-para p {
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-black)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-7-para p br {
        display: none
    }
}

.tg-service-8-shape {
    position: absolute;
    top: 145px;
    left: 167px
}

.tg-service-8-count {
    font-weight: 400;
    font-size: 20px;
    color: #cbca7b;
    display: inline-block;
    margin-right: 70px
}

.tg-service-8-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 113%;
    color: var(--tg-common-white)
}

.tg-service-8-title a:hover {
    color: rgb(240 240 240 / .631372549)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-8-title-wrap {
        margin-bottom: 30px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-8-right {
        margin-left: 0
    }
}

.tg-service-8-right ul li {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -.02em;
    color: var(--tg-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-8-right ul li {
        font-size: 17px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-8-thumb {
        padding-top: 60px
    }
}

.tg-service-8-item {
    border-top: 1px solid var(--tg-common-white);
    border-bottom: 1px solid var(--tg-common-white);
    padding: 31px 20px 10px 40px;
    margin-top: -1px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-8-item {
        padding: 31px 0 10px 0
    }
}

.tg-service-details-title {
    font-size: 60px;
    line-height: 117%;
    letter-spacing: -.03em
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-details-title {
        font-size: 45px
    }
}

@media (max-width:575px) {
    .tg-service-details-title {
        font-size: 40px
    }
}

.tg-service-details-border {
    width: 100%;
    height: 1px;
    background: var(--tg-common-black)
}

.tg-service-details-list ul {
    column-count: 2
}

@media (max-width:575px) {
    .tg-service-details-list ul {
        column-count: 1
    }
}

.tg-service-details-list ul li {
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-common-black);
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px
}

.tg-service-details-list ul li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: var(--tg-common-black);
    border-radius: 20px;
    top: 50%;
    transform: translateY(-50%);
    left: 0
}

.tg-service-details-thumb-wrap {
    margin-top: -83px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-details-thumb-wrap {
        margin-top: 0
    }
}

.tg-service-timeline {
    height: 1px;
    width: 100%;
    background: var(--tg-common-black);
    display: flex
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-timeline {
        display: none
    }
}

.tg-service-timeline-item {
    position: relative
}

.tg-service-timeline-item::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: var(--tg-common-black);
    top: -48px;
    left: 0;
    border-radius: 30px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-timeline-item::before {
        display: none
    }
}

.tg-service-timeline-item h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 125%;
    letter-spacing: -.01em;
    color: var(--tg-common-black)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-replace-content {
        margin-right: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-replace-shape {
        margin-top: 0
    }
}

.tg-service-replace-title h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 123%;
    letter-spacing: -.01em
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-service-replace-title h2 {
        font-size: 35px
    }
}

.tg-portfolio-item:hover .tg-portfolio-tag {
    transform: translateY(0);
    opacity: 1
}

.tg-portfolio-item:hover .tg-portfolio-thumb img {
    transform: scale(1.03) translateX(8px)
}

.tg-portfolio-thumb {
    display: inline-block;
    overflow: hidden
}

.tg-portfolio-thumb img {
    transform: scale(1.03);
    transition: 0.4s ease-in-out;
    width: 100%
}

.tg-portfolio-tag {
    position: absolute;
    bottom: 40px;
    left: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out
}

@media (max-width:575px) {
    .tg-portfolio-tag {
        bottom: 20px;
        left: 20px
    }
}

.tg-portfolio-tag-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--tg-common-black);
    border-radius: 20px;
    padding: 5px 20px;
    display: inline-block;
    background: var(--tg-common-white);
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
    cursor: pointer
}

.tg-portfolio-tag-text:hover {
    background: var(--tg-common-black);
    color: var(--tg-common-white)
}

.tg-portfolio-title {
    font-weight: 600;
    font-size: 30px;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

.tg-portfolio-title a:hover {
    color: var(--tg-theme-primary)
}

.tg-portfolio-2-item {
    overflow: hidden
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-2-item {
        padding-top: 0
    }
}

@media (max-width:575px) {
    .tg-portfolio-2-item {
        margin-bottom: 40px
    }
}

.tg-portfolio-2-item:hover .tg-portfolio-2-thumb {
    overflow: hidden
}

.tg-portfolio-2-item:hover .tg-portfolio-2-thumb img {
    transform: scale(1.1)
}

.tg-portfolio-2-thumb img {
    transition: all 0.3s ease-in-out
}

.tg-portfolio-2-thumb:hover .tg-portfolio-2-content {
    margin-bottom: 0
}

.tg-portfolio-2-thumb:hover .tg-portfolio-2-link {
    opacity: 1
}

.tg-portfolio-2-content {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--tg-common-white);
    padding: 30px 115px 28px 40px;
    margin-left: 40px;
    margin-bottom: -40px;
    transition: all 0.3s ease-in-out
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-2-content {
        padding: 30px 30px 28px 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-2-content {
        margin-left: 0
    }
}

@media (max-width:575px) {
    .tg-portfolio-2-content {
        position: inherit;
        margin-bottom: 0
    }
}

.tg-portfolio-2-content span {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black)
}

.tg-portfolio-2-content h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: -.01em
}

@media (max-width:575px) {
    .tg-portfolio-2-content h3 {
        font-size: 20px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-2-content h3 br {
        display: none
    }
}

.tg-portfolio-2-content h3 a:hover {
    color: var(--tg-theme-primary)
}

.tg-portfolio-2-link {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--tg-common-black);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    font-family: var(--tg-ff-heading)
}

@media (max-width:575px) {
    .tg-portfolio-2-link {
        opacity: 1
    }
}

.tg-portfolio-2-link:hover {
    color: var(--tg-theme-primary)
}

.tg-portfolio-3-btn {
    padding-top: 350px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tg-portfolio-3-btn {
        padding-top: 200px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-3-btn {
        padding-top: 0
    }
}

.tg-portfolio-4-thumb img {
    transition: all 0.4s ease
}

.tg-portfolio-4-item:hover .tg-portfolio-4-thumb img {
    transform: scale(1.1)
}

.tg-portfolio-4-item-content {
    background: var(--tg-common-white);
    transition: all 0.4s ease;
    padding: 80px 80px 80px 80px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .tg-portfolio-4-item-content {
        padding: 50px 50px 50px 50px
    }
}

@media (max-width:575px) {
    .tg-portfolio-4-item-content {
        padding: 20px 20px 20px 20px
    }
}

.tg-portfolio-4-item-content:hover {
    background: var(--tg-theme-primary)
}

.tg-portfolio-4-item-content:hover .tg-btn-rounded-primary {
    border-color: var(--tg-common-black)
}

.tg-portfolio-4-item-title {
    margin-bottom: 245px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-4-item-title {
        margin-bottom: 145px
    }
}

@media (max-width:575px) {
    .tg-portfolio-4-item-title {
        margin-bottom: 45px
    }
}

.tg-portfolio-4-item-title span {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black)
}

.tg-portfolio-4-item-title h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    letter-spacing: -.01em
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-4-item-title h4 a br {
        display: none
    }
}

.tg-portfolio-4-btn {
    display: flex;
    align-items: center
}

@media (max-width:575px) {
    .tg-portfolio-4-btn {
        flex-wrap: wrap
    }
}

.tg-portfolio-4-btn a {
    flex: 0 0 auto;
    margin-right: 60px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-4-btn a {
        margin-right: 20px
    }
}

@media (max-width:575px) {
    .tg-portfolio-4-btn a {
        margin-bottom: 20px
    }
}

.tg-portfolio-4-btn p {
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-black)
}

.tg-portfolio-6-item-content:hover {
    background: var(--tg-common-black)
}

.tg-portfolio-6-item-content:hover .tg-portfolio-4-item-title span {
    color: var(--tg-common-white)
}

.tg-portfolio-6-item-content:hover .tg-portfolio-4-item-title h4 {
    color: var(--tg-common-white)
}

.tg-portfolio-6-item-content:hover .tg-portfolio-4-item-title h4 a:hover {
    color: var(--tg-common-white)
}

.tg-portfolio-6-item-content:hover .tg-portfolio-4-btn p {
    color: var(--tg-common-white)
}

.tg-portfolio-6-item-content:hover .tg-btn-rounded-primary {
    border-color: var(--tg-common-white)
}

.tg-portfolio-6-item-content:hover .tg-btn-rounded-primary {
    background: var(--tg-common-white);
    color: var(--tg-common-black);
    border-color: var(--tg-common-white)
}

.tg-portfolio-6-item-content:hover .tg-btn-rounded-primary:hover {
    border-color: var(--tg-theme-primary)
}

.tg-portfolio-6-item-content:hover .tg-btn-rounded-primary .tg-btn-circle-dot {
    background: var(--tg-theme-primary)
}

.tg-portfolio-7-tag span,
.tg-portfolio-7-tag a {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--tg-common-white);
    border-radius: 20px;
    padding: 5px 20px;
    background: var(--tg-common-black);
    display: inline-block;
    transition: all 0.4s ease
}

.tg-portfolio-7-tag span:hover,
.tg-portfolio-7-tag a:hover {
    background: var(--tg-common-white);
    color: var(--tg-common-black)
}

.tg-portfolio-7-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 122%;
    letter-spacing: -.01em;
    text-align: center
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-7-title {
        font-size: 26px
    }

    .tg-portfolio-7-title a br {
        display: none
    }
}

.tg-portfolio-7-title a {
    transition: all 0.5s ease
}

.tg-portfolio-7-title a:hover {
    text-decoration: underline
}

.tg-portfolio-7-btn {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease
}

.tg-portfolio-7-item {
    padding: 80px 80px 42px 80px;
    position: sticky;
    top: 100px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-7-item {
        padding: 20px 20px 22px 20px
    }
}

.tg-portfolio-7-item:hover .tg-portfolio-7-btn {
    opacity: 1;
    visibility: visible
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-8-content {
        margin-bottom: 40px
    }
}

.tg-portfolio-8-content span {
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--tg-common-white);
    display: inline-block;
    margin-bottom: 6px
}

.tg-portfolio-8-content h2 {
    font-weight: 600;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: -.02em;
    color: var(--tg-common-white)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-8-content h2 {
        font-size: 40px
    }
}

.tg-portfolio-8-content h2 a:hover {
    color: var(--tg-common-white)
}

.tg-portfolio-8-item {
    position: sticky;
    top: 100px;
    background: #0f0f0f;
    padding-left: 5px
}

.tg-portfolio-8-item .tg-portfolio-7-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center
}

.tg-portfolio-8-item:hover .tg-portfolio-7-btn {
    opacity: 1;
    visibility: visible
}

.tg-portfolio-details-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-left: 150px;
    padding-right: 150px;
    border-bottom: 1px solid var(--tg-common-black)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-details-info {
        padding-left: 0;
        padding-right: 0
    }
}

.tg-portfolio-details-info-item {
    margin: 10px 20px;
    text-align: center
}

.tg-portfolio-details-info-item h4 {
    font-weight: 600;
    font-size: 24px
}

.tg-portfolio-details-info-item span {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black)
}

.tg-portfolio-details-overview-title h2 {
    font-weight: 600;
    font-size: 60px;
    letter-spacing: -.02em
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-details-overview-title h2 {
        font-size: 40px;
        margin-bottom: 40px
    }
}

.tg-portfolio-details-overview-title span {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -.02em;
    color: #000
}

.tg-portfolio-details-overview-title span span {
    font-weight: 600
}

.tg-portfolio-details-overview-list h5 {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -.02em;
    border-bottom: 1px solid var(--tg-common-black);
    margin-bottom: 20px;
    padding-bottom: 20px
}

.tg-portfolio-details-overview-details h5 {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -.02em
}

.tg-portfolio-details-identity-title {
    font-weight: 700;
    font-size: 60px;
    letter-spacing: -.02em
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-details-identity-title {
        font-size: 40px
    }
}

.tg-portfolio-details-identity-subtitle {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

.tg-portfolio-details-identity-tag-inner {
    display: flex;
    align-items: center
}

.tg-portfolio-details-identity-tag-inner span {
    font-weight: 600;
    font-size: 18px;
    color: var(--tg-common-black)
}

.tg-portfolio-details-identity-tag-inner span.prev i {
    margin-right: 10px
}

.tg-portfolio-details-identity-tag-inner span.next i {
    margin-left: 10px
}

.tg-portfolio-details-identity-tag-inner span.borders {
    width: 1px;
    height: 70px;
    background: var(--tg-common-black);
    display: inline-block;
    margin: 0 100px
}

@media (max-width:575px) {
    .tg-portfolio-details-identity-tag-inner span.borders {
        margin: 0 50px
    }
}

.tg-portfolio-details-identity-tag-inner span i {
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    transition: all 0.4s ease
}

.tg-portfolio-details-identity-tag-inner span i:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-black);
    border-color: var(--tg-theme-primary)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-portfolio-details-identity-thumb {
        margin-left: 0;
        margin-right: 0
    }
}

.tg-portfolio-details-agencies-content h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 138%
}

.tg-portfolio-details-agencies-content p {
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-black)
}

.tg-video-play {
    height: 100px;
    width: 100px;
    display: inline-block;
    background: var(--tg-theme-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    color: var(--tg-common-black)
}

.tg-video-play:hover {
    color: var(--tg-common-black)
}

.tg-pulse-border {
    border-radius: 50%;
    z-index: 1;
    position: relative
}

.tg-pulse-border::after,
.tg-pulse-border::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255 / .4);
    animation: borderanimate2 2s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    z-index: -1;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    z-index: -1
}

.tg-pulse-border::before {
    animation-delay: 0.7s
}

.tg-video-inner {
    padding-top: 320px;
    padding-bottom: 320px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-video-inner {
        padding-top: 220px;
        padding-bottom: 220px
    }
}

.tg-video-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%
}

.tg-video-5-spacing {
    padding-top: 460px;
    padding-bottom: 180px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-video-5-spacing {
        padding-top: 180px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-video-5-wrap {
        text-align: center
    }
}

.tg-video-5-wrap .popup-video {
    background: var(--tg-common-black);
    color: var(--tg-common-white)
}

.tg-video-5-wrap .tg-pulse-border::after,
.tg-video-5-wrap .tg-pulse-border::before {
    border: 1px solid var(--tg-common-black)
}

@media (max-width:575px) {
    .tg-chose-funding {
        margin-right: 0
    }
}

.tg-chose-funding h3 {
    font-weight: 700;
    font-size: 360px;
    letter-spacing: -.06em;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    line-height: .9
}

@media (max-width:575px) {
    .tg-chose-funding h3 {
        font-size: 250px
    }
}

.tg-chose-funding h3 span {
    display: inline-block;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: -.06em;
    color: var(--tg-common-black);
    font-family: var(--tg-ff-p);
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    background: var(--tg-theme-primary);
    border-radius: 100px;
    position: absolute;
    right: -22px;
    top: 25px
}

.tg-chose-funding p {
    line-height: 167%;
    color: var(--tg-common-black)
}

.tg-chose-newwork {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

@media (max-width:575px) {
    .tg-chose-newwork {
        display: none
    }
}

.tg-chose-item h4 {
    font-size: 22px;
    letter-spacing: -.02em
}

.tg-chose-item p {
    line-height: 167%;
    color: var(--tg-common-black)
}

.tg-chose-shape {
    margin-right: -153px
}

@media only screen and (min-width:1600px) and (max-width:1700px),
only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-chose-shape {
        margin-right: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-chose-2-thumb {
        margin-bottom: 40px
    }
}

.tg-chose-2-item-wrap {
    margin-right: 250px
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .tg-chose-2-item-wrap {
        margin-right: 120px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-chose-2-item-wrap {
        margin-right: 100px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-chose-2-item-wrap {
        margin-right: 15px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-chose-2-item-wrap {
        margin-left: 15px
    }
}

.tg-counter-item {
    background: var(--tg-common-white);
    text-align: center;
    padding: 50px 30px 26px 30px
}

.tg-counter-item:hover .icons {
    color: var(--tg-theme-primary)
}

.tg-counter-item h4 {
    font-size: 90px;
    line-height: 72%;
    letter-spacing: -.02em
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-counter-item h4 {
        font-size: 70px
    }
}

.tg-counter-item .icons {
    color: var(--tg-grey-2);
    transition: all 0.3s ease
}

.tg-counter-item p {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--tg-common-black);
    margin-top: -53px
}

.tg-counter-2-item {
    border: 1px solid #000;
    padding: 30px 40px 30px 40px;
    margin-right: -1px;
    transition: all 0.4s ease
}

.tg-counter-2-item:hover {
    background: var(--tg-common-black);
    transform: scaleY(105%)
}

.tg-counter-2-item:hover .title {
    color: var(--tg-common-white)
}

.tg-counter-2-item:hover .para {
    color: var(--tg-common-white)
}

.tg-counter-2-item:hover .position {
    color: var(--tg-common-white)
}

.tg-counter-2-item .title {
    font-weight: 600;
    font-size: 50px;
    line-height: 76%;
    letter-spacing: -.02em
}

.tg-counter-2-item .position {
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
    color: var(--tg-common-black)
}

.tg-counter-2-item .para {
    font-size: 18px;
    line-height: 133%;
    color: var(--tg-common-black)
}

.tg-counter-2-wrap {
    padding-top: 240px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-counter-2-wrap {
        padding-top: 140px
    }
}

.tg-brand-wrap .swiper-slide {
    display: inline-block;
    width: 300px
}

.tg-blog-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -.02em
}

.tg-blog-title a:hover {
    color: var(--tg-theme-primary)
}

.tg-blog-para {
    line-height: 167%;
    color: var(--tg-common-black)
}

.tg-blog-item:hover .tg-blog-thumb img {
    transform: scale(1.05)
}

.tg-blog-item:hover .tg-blog-btn {
    opacity: 1;
    visibility: visible
}

.tg-blog-thumb img {
    transition: all 0.3s ease
}

.tg-blog-tag {
    border-top: 1px solid var(--tg-common-black);
    padding-top: 30px
}

.tg-blog-tag span {
    font-weight: 500;
    font-size: 16px;
    color: var(--tg-common-black);
    display: inline-block
}

.tg-blog-tag span.tg-tag {
    border: 1px solid var(--tg-common-black);
    border-radius: 17px;
    padding: 1px 17px
}

.tg-blog-tag span.tg-border {
    width: 40px;
    height: 1px;
    background: var(--tg-common-black);
    margin-left: 20px;
    margin-right: 15px
}

.tg-blog-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease
}

.tg-blog-btn a {
    color: var(--tg-common-white);
    border-color: var(--tg-common-white)
}

.tg-blog-btn a:hover {
    border-color: var(--tg-common-black)
}

.tg-blog-2-author-name h5 {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -.02em;
    margin-bottom: 0;
    line-height: 1;
    font-family: var(--tg-ff-p)
}

.tg-blog-2-author-name span {
    font-weight: 400;
    font-size: 16px;
    color: #000
}

.tg-blog-2-border {
    border-top: 1px solid var(--tg-common-black);
    width: 100%;
    display: block
}

.tg-blog-2-date {
    font-weight: 400;
    font-size: 17px;
    color: var(--tg-common-black)
}

.tg-blog-4-item .tg-blog-title {
    color: var(--tg-common-white)
}

.tg-blog-4-item .tg-blog-2-author-name h5 {
    color: var(--tg-common-white)
}

.tg-blog-4-item .tg-blog-2-author-name span {
    color: var(--tg-common-white)
}

.tg-blog-4-item .tg-blog-2-date {
    color: var(--tg-common-white)
}

.tg-blog-4-item .tg-blog-2-border {
    border-top: 1px solid var(--tg-common-white)
}

@media (max-width:575px) {
    .tg-blog-5-btn {
        margin-bottom: 0
    }
}

.tg-blog-standard-item:hover .tg-blog-standard-thumb img {
    transform: scale(1.1)
}

.tg-blog-standard-thumb {
    overflow: hidden
}

.tg-blog-standard-thumb img {
    transition: all 0.4s ease
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-blog-standard-left-wrap {
        margin-right: 0
    }
}

.tg-blog-standard-comments span {
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-common-black)
}

.tg-blog-standard-comments span.dvdr {
    margin: 0 5px
}

.tg-blog-standard-comments span.names {
    position: relative;
    padding-left: 18px
}

.tg-blog-standard-comments span.names::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--tg-common-black);
    border-radius: 50%
}

.tg-blog-standard-title {
    font-weight: 600;
    font-size: 44px;
    line-height: 114%;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-blog-standard-title {
        font-size: 30px
    }
}

.tg-blog-standard-title-2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 114%;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-blog-standard-title-2 {
        font-size: 25px
    }
}

.tg-blog-standard-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--tg-common-black);
    font-family: var(--tg-ff-heading)
}

.tg-blog-standard-navigation ul {
    display: flex;
    justify-content: center
}

.tg-blog-standard-navigation ul li {
    margin: 0 5px
}

.tg-blog-standard-navigation ul li a {
    font-weight: 600;
    font-size: 18px;
    color: var(--tg-common-black);
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    border-radius: 100px;
    border: 1px solid var(--tg-common-black);
    font-family: var(--tg-ff-heading)
}

.tg-blog-standard-navigation ul li a:hover,
.tg-blog-standard-navigation ul li a.active {
    background: var(--tg-theme-primary);
    color: var(--tg-common-black);
    border-color: var(--tg-theme-primary)
}

.tg-blog-standard-author {
    background: #f0f0f0;
    border: 1px solid var(--tg-common-black);
    padding: 40px 40px 35px 40px
}

.tg-blog-standard-author p {
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: var(--tg-common-black)
}

.tg-blog-standard-author-title {
    font-weight: 600;
    font-size: 30px;
    letter-spacing: -.02em;
    text-align: center;
    color: var(--tg-common-black)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-blog-standard-author-title {
        font-size: 25px
    }
}

.tg-blog-standard-search input {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black);
    height: 60px;
    width: 100%;
    border: 1px solid var(--tg-common-black);
    padding-left: 30px;
    padding-right: 70px
}

.tg-blog-standard-search input::placeholder {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black)
}

.tg-blog-standard-search button {
    width: 60px;
    height: 60px;
    background: var(--tg-theme-primary);
    text-align: center;
    line-height: 60px;
    color: var(--tg-common-black);
    border: 1px solid var(--tg-common-black);
    position: absolute;
    top: 0;
    right: 0
}

.tg-blog-standard-categories ul li a {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black);
    padding: 3px 0;
    display: block
}

.tg-blog-standard-categories ul li a:hover {
    text-decoration: underline;
    text-decoration-skip-ink: none
}

.tg-blog-standard-tag ul {
    display: flex;
    flex-wrap: wrap
}

.tg-blog-standard-tag ul li a {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black);
    padding: 3px 10px;
    display: inline-block
}

.tg-blog-standard-tag ul li a:hover {
    text-decoration: underline;
    text-decoration-skip-ink: none
}

.tg-blog-recent-content h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -.02em
}

.tg-blog-recent-content span {
    font-weight: 500;
    font-size: 16px;
    color: var(--tg-common-black)
}

.tg-blog-recent-post:hover .tg-blog-recent-post-thumb img {
    transform: scale(1.1)
}

.tg-blog-recent-post-thumb img {
    transition: all 0.4s ease
}

.tg-blog-details-blockquote {
    display: flex
}

.tg-blog-details-blockquote .icons {
    width: 45px;
    height: 45px;
    background: var(--tg-theme-primary);
    text-align: center;
    line-height: 45px;
    flex: 0 0 auto;
    display: inline-block;
    margin-top: 7px;
    margin-right: 20px
}

.tg-blog-details-blockquote .titles {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -.02em
}

.tg-blog-details-tag ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.tg-blog-details-tag ul li:not(:last-child) {
    margin-right: 40px
}

.tg-blog-details-tag ul li a {
    font-weight: 400;
    font-size: 18px;
    color: #000
}

.tg-blog-details-tag ul li a:hover {
    text-decoration: underline;
    text-decoration-skip-ink: none
}

.tg-blog-details-tag-wrap {
    border-top: 1px solid var(--tg-common-black);
    border-bottom: 1px solid var(--tg-common-black);
    padding: 20px 0
}

.tg-blog-details-social ul {
    display: flex;
    align-items: center;
    justify-content: end
}

@media (max-width:575px) {
    .tg-blog-details-social ul {
        justify-content: flex-start;
        margin-top: 10px
    }
}

.tg-blog-details-social ul li:not(:first-child) {
    margin-left: 12px
}

.tg-blog-details-social ul li a {
    font-family: var(--tg-ff-heading);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

.tg-blog-details-social ul li a:hover {
    text-decoration: underline;
    text-decoration-skip-ink: none
}

.tg-blog-details-comment ul li {
    display: flex;
    align-items: center
}

@media (max-width:575px) {
    .tg-blog-details-comment ul li {
        flex-wrap: wrap
    }
}

.tg-blog-details-comment-thumb {
    width: 200px;
    flex: 0 0 auto
}

@media (max-width:575px) {
    .tg-blog-details-comment-thumb {
        margin-bottom: 20px
    }
}

.tg-blog-details-comment-content h3 {
    font-weight: 600;
    font-size: 30px;
    letter-spacing: -.02em
}

.tg-cta-title {
    font-weight: 800;
    font-size: 120px;
    line-height: 100%;
    letter-spacing: -.02em;
    color: var(--tg-common-white);
    text-shadow: 1px 1px 2px rgb(0 0 0 / .6), 0 0 5px rgb(0 0 0 / .6), 0 0 0 rgb(0 0 0 / .6)
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tg-cta-title {
        font-size: 100px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-cta-title {
        font-size: 70px
    }
}

@media (max-width:575px) {
    .tg-cta-title {
        font-size: 46px
    }
}

.tg-cta-shape {
    position: absolute;
    left: 160px;
    top: 125px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-cta-shape {
        left: 40px
    }
}

.tg-cta-shape-2 {
    position: absolute;
    right: 270px;
    bottom: 115px
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-cta-shape-2 {
        right: 100px
    }
}

.tg-cta-2-title {
    font-weight: 600;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: -.02em
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-cta-2-title {
        font-size: 60px
    }
}

@media (max-width:575px) {
    .tg-cta-2-title {
        font-size: 30px
    }
}

.tg-cta-2-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 100%
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-cta-2-thumb {
        width: 100%;
        position: inherit
    }
}

.tg-cta-2-thumb img {
    width: 100%;
    height: 100%
}

.tg-cta-2-shape {
    position: absolute;
    right: 0;
    bottom: 145px;
    width: 24%
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-cta-2-shape {
        width: 17%
    }
}

.tg-cta-6-title {
    font-weight: 600;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-cta-6-title {
        font-size: 60px
    }
}

@media (max-width:575px) {
    .tg-cta-6-title {
        font-size: 37px
    }
}

.tg-cta-6-border {
    width: 100%;
    height: 1px;
    background: var(--tg-common-black)
}

.tg-footer-title {
    font-size: 50px;
    line-height: 120%
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-footer-title br {
        display: none
    }
}

@media (max-width:575px) {
    .tg-footer-title {
        font-size: 30px
    }
}

.tg-footer-location h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 167%;
    letter-spacing: -.02em;
    font-family: var(--tg-ff-p)
}

.tg-footer-location a {
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-black)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-footer-location a br {
        display: none
    }
}

.tg-footer-location-wrap {
    column-count: 2;
    padding-right: 88px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-footer-location-wrap {
        padding-right: 0
    }
}

@media (max-width:575px) {
    .tg-footer-location-wrap {
        column-count: 1
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-footer-social {
        margin-bottom: 50px
    }
}

.tg-footer-social a {
    border: 1px solid #000;
    border-radius: 100px;
    width: 44px;
    height: 44px;
    display: inline-block;
    text-align: center;
    line-height: 44px;
    transition: all 0.4s ease
}

.tg-footer-social a svg {
    transform: translateY(-2px);
    width: 17px !important
}

.tg-footer-social a:hover {
    background: var(--tg-common-black);
    color: var(--tg-common-white)
}

.tg-footer-rborder {
    width: 1px;
    height: 78px;
    background: var(--tg-common-black);
    display: inline-block;
    position: absolute;
    right: 105px;
    bottom: 40px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-footer-rborder {
        right: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-footer-rborder {
        display: none
    }
}

.tg-footer-form {
    position: relative
}

.tg-footer-form-btn {
    position: absolute;
    right: 0;
    top: 0
}

.tg-footer-form input {
    border: none;
    border-bottom: 1px solid var(--tg-common-black);
    width: 100%;
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-black);
    padding-left: 0;
    height: 50px;
    background: #fff0
}

.tg-footer-form input::placeholder {
    color: var(--tg-common-black)
}

.tg-footer-form input:focus {
    border: none;
    border-bottom: 1px solid var(--tg-common-black)
}

.tg-footer-bottom {
    border-top: 1px solid var(--tg-common-black);
    padding: 21px 0 20px 0
}

.tg-footer-copyright p {
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-common-black);
    margin-bottom: 10px
}

.tg-footer-copyright p a {
    font-weight: 700
}

.tg-footer-menu ul {
    display: flex;
    justify-content: end;
    flex-wrap: wrap
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-footer-menu ul {
        justify-content: flex-start
    }
}

.tg-footer-menu ul li {
    margin-left: 40px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-footer-menu ul li {
        margin-left: 20px
    }
}

.tg-footer-menu ul li a {
    font-family: var(--tg-ff-heading);
    font-weight: 500;
    font-size: 16px;
    color: var(--tg-common-black);
    padding: 10px 0;
    display: inline-block;
    text-transform: uppercase
}

.tg-footer-menu ul li a:hover {
    color: var(--tg-theme-primary)
}

.tg-footer-2-location .email {
    font-weight: 400;
    font-size: 17px;
    line-height: 153%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    display: block;
    color: var(--tg-common-black);
    margin-bottom: 4px
}

.tg-footer-2-location .email:hover {
    color: var(--tg-theme-primary)
}

.tg-footer-2-location .number {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

.tg-footer-2-location .number:hover {
    color: var(--tg-theme-primary)
}

.tg-footer-4-widget .tg-footer-location h4 {
    color: var(--tg-common-white)
}

.tg-footer-4-widget .tg-footer-location a {
    color: var(--tg-common-white)
}

.tg-footer-4-widget .tg-footer-rborder {
    background: var(--tg-common-white)
}

.tg-footer-4-widget .tg-footer-social a {
    border: 1px solid var(--tg-common-white);
    color: var(--tg-common-white)
}

.tg-footer-4-widget .tg-footer-social a:hover {
    background: var(--tg-common-white);
    color: var(--tg-common-black);
    border-color: var(--tg-common-white)
}

.tg-footer-4-widget .tg-footer-form input {
    border-color: var(--tg-common-white);
    color: var(--tg-common-white)
}

.tg-footer-4-widget .tg-footer-form input::placeholder {
    color: var(--tg-common-white)
}

.tg-footer-4-bottom {
    border-top: 1px solid var(--tg-common-white)
}

.tg-footer-4-bottom .tg-footer-copyright p {
    color: var(--tg-common-white)
}

.tg-footer-4-bottom .tg-footer-copyright p a:hover {
    color: var(--tg-common-white)
}

.tg-footer-4-bottom .tg-footer-menu ul li a {
    color: var(--tg-common-white)
}

.tg-footer-4-bottom .tg-footer-menu ul li a:hover {
    color: var(--tg-theme-primary)
}

.tg-footer-8-bottom {
    border-top: none
}

.tg-process-item {
    border: 1px solid #000;
    padding: 53px 50px 24px 50px;
    transition: all 0.3s ease-in-out
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-process-item {
        margin-top: 0
    }
}

.tg-process-item:hover {
    background: var(--tg-common-black)
}

.tg-process-item:hover .tg-process-icon .count {
    color: var(--tg-common-white)
}

.tg-process-item:hover .tg-process-icon svg {
    color: var(--tg-common-white)
}

.tg-process-item:hover .tg-process-content h4 {
    color: var(--tg-common-white)
}

.tg-process-item:hover .tg-process-content p {
    color: var(--tg-common-white)
}

.tg-process-content h4 {
    font-weight: 600;
    font-size: 26px;
    letter-spacing: -.02em
}

.tg-process-content p {
    font-size: 18px;
    line-height: 144%;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

.tg-process-icon .count {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

.tg-contact-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 57%;
    height: 100%;
    z-index: -1;
    background: var(--tg-theme-primary)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-contact-bg {
        display: none
    }
}

.tg-contact-icon {
    column-count: 2;
    margin-right: 100px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-contact-icon {
        margin-right: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-contact-icon {
        column-count: 3
    }
}

.tg-contact-icon span {
    width: 50%;
    display: inline-block;
    margin-bottom: 120px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-contact-form {
        padding-left: 0
    }
}

.tg-contact-form-info-item h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 125%;
    letter-spacing: -.01em
}

.tg-contact-form-info-item a {
    font-weight: 400;
    font-size: 18px;
    display: block;
    color: var(--tg-common-black);
    padding-bottom: 5px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-contact-spacing {
        margin-top: 0
    }
}

.tg-contact-input input,
.tg-contact-input textarea {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black);
    border: none;
    border-bottom: 1px solid var(--tg-common-black);
    padding-left: 0;
    height: 42px;
    background: #fff0
}

.tg-contact-input input::placeholder,
.tg-contact-input textarea::placeholder {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black)
}

.tg-contact-input textarea {
    height: 115px
}

.tg-contact-8-title {
    font-size: 80px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-contact-8-title {
        font-size: 50px;
        margin-bottom: 40px
    }
}

.tg-contact-8-form .tg-contact-input input,
.tg-contact-8-form .tg-contact-input textarea {
    border-color: var(--tg-common-white);
    color: var(--tg-common-white)
}

.tg-contact-8-form .tg-contact-input input::placeholder,
.tg-contact-8-form .tg-contact-input textarea::placeholder {
    color: var(--tg-common-white)
}

.tg-contact-8-form .tg-contact-input textarea {
    height: 135px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-contact-8-shape {
        margin-top: 0;
        margin-bottom: 30px
    }
}

@media (max-width:575px) {
    .tg-contact-map-area {
        padding-top: 0
    }
}

.tg-contact-map-wrap {
    margin-top: 208px;
    width: 350px;
    background: var(--tg-common-white);
    padding: 60px 30px 50px 60px;
    position: absolute;
    left: 300px;
    z-index: 2
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tg-contact-map-wrap {
        left: 100px
    }
}

@media (max-width:575px) {
    .tg-contact-map-wrap {
        left: 0
    }
}

.tg-contact-map-wrap h6 {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -.02em
}

.tg-contact-map-wrap a {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -.01em;
    color: var(--tg-common-black);
    display: block
}

.tg-contact-map-inner {
    line-height: 1;
    overflow: hidden
}

.tg-contact-map-inner iframe {
    width: 100%;
    height: 800px;
    filter: saturate(0);
    line-height: 1
}

.tg-team-3-content h4 {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -.01em;
    margin-bottom: 0
}

.tg-team-3-content h4 a:hover {
    color: var(--tg-theme-primary)
}

.tg-team-3-social {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 30px;
    left: 15px;
    gap: 6px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1
}

.tg-team-3-social a {
    width: 48px;
    height: 48px;
    display: inline-block;
    border-radius: 100%;
    background: rgb(255 255 255 / .15);
    border: 1px solid rgb(255 255 255 / .1);
    backdrop-filter: blur(3px);
    text-align: center;
    line-height: 48px;
    color: var(--tg-common-white)
}

.tg-team-3-social a:hover {
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
    color: var(--tg-common-black)
}

.tg-team-3-shape {
    position: absolute;
    bottom: 52px;
    left: 47px;
    opacity: 0;
    pointer-events: none;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    -webkit-transition: all 0.8s linear;
    transition: all 0.8s linear
}

.tg-team-3-item:hover .tg-team-3-shape {
    opacity: 1;
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%)
}

.tg-team-3-item:hover .tg-team-3-social {
    opacity: 1;
    left: 30px
}

.tg-team-3-item:hover .tg-team-7-shape {
    opacity: 1;
    visibility: visible
}

.tg-team-3-item:hover .tg-team-3-thumb img {
    transform: scale(1.1)
}

.tg-team-3-thumb {
    overflow: hidden
}

.tg-team-3-thumb img {
    transition: all 0.4s ease
}

.tg-team-7-shape {
    border-radius: 100%;
    background: #cbca7b;
    filter: blur(160px);
    width: 307px;
    height: 407px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1
}

.tg-team-7-item .tg-team-3-social a {
    background: var(--tg-common-white);
    color: var(--tg-common-black)
}

.tg-team-7-item .tg-team-3-social a:hover {
    background: var(--tg-common-black);
    color: var(--tg-common-white);
    border-color: var(--tg-common-black)
}

.tg-team-details-thumb {
    position: sticky;
    top: 100px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-team-details-thumb {
        margin-right: 0
    }
}

.tg-team-details-content {
    margin-left: -30px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-team-details-content {
        margin-left: 0
    }
}

.tg-team-details-content-para a {
    font-weight: 400;
    font-size: 17px;
    line-height: 165%;
    color: var(--tg-common-black)
}

.tg-team-details-content-para a.under {
    text-decoration: underline
}

.tg-team-details-subtitle {
    font-weight: 600;
    font-size: 18px;
    color: var(--tg-common-black);
    display: inline-block
}

.tg-team-details-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 133%;
    letter-spacing: -.01em
}

.tg-team-details-list ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    color: var(--tg-common-black)
}

.tg-team-details-list-title {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -.01em;
    color: var(--tg-common-black)
}

.tg-team-details-progress-bar .tg-skill-progress-bar-title label {
    font-size: 16px;
    color: var(--tg-common-black)
}

.tg-team-details-progress-bar .progress-count {
    font-size: 16px !important;
    color: var(--tg-common-black) !important
}

.tg-team-details-progress-bar .tg-skill-progress-bar .progress-bar {
    background-color: var(--tg-theme-primary);
    height: 10px
}

.tg-team-details-progress-bar .tg-skill-progress-bar .progress {
    height: 10px;
    background: #f0f0f0
}

.tg-awards-3-subtitle {
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    color: var(--tg-common-black);
    background: var(--tg-theme-primary);
    padding: 6px 32px
}

.tg-awards-3-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(10 17 25 / .15);
    border-top: 1px solid rgb(10 17 25 / .15);
    padding: 16px 30px 6px 30px;
    position: relative;
    margin-top: -1px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-awards-3-item a {
        padding: 10px 10px 4px 10px
    }
}

.tg-awards-3-item a:hover {
    background: var(--tg-common-black)
}

.tg-awards-3-item a:hover .title {
    color: var(--tg-common-white)
}

.tg-awards-3-item a:hover .icon {
    color: var(--tg-common-white)
}

.tg-awards-3-item .title {
    font-family: var(--tg-ff-heading);
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-common-black)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-awards-3-item .title {
        font-size: 15px
    }
}

.tg-awards-3-item .title span {
    font-weight: 600;
    font-family: var(--tg-ff-p)
}

@media (max-width:575px) {
    .tg-awards-3-item .title span {
        margin-right: 10px
    }
}

.tg-awards-3-item.active a {
    background: var(--tg-common-black)
}

.tg-awards-3-item.active a .title {
    color: var(--tg-common-white)
}

.tg-awards-3-item.active a .icon {
    color: var(--tg-common-white)
}

.tg-awards-3-item .icon {
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-common-black)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-awards-3-para br {
        display: none
    }
}

.tg-awards-3-img-wrapper {
    position: relative;
    margin-top: -70px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-awards-3-img-wrapper {
        margin-left: 0;
        margin-top: 0
    }
}

.tg-awards-3-img-wrapper .hover-image {
    display: inline-block
}

.tg-awards-3-img-wrapper .hover-image .thumb {
    object-fit: cover;
    opacity: 0;
    transform: rotate(-20deg) !important;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 50px;
    border-radius: 10px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-awards-3-img-wrapper .hover-image .thumb {
        width: 250px
    }
}

.tg-awards-3-img-wrapper .hover-image .shape {
    opacity: 0;
    transition: all 0.5s ease;
    position: absolute;
    top: 250px;
    left: 141px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-awards-3-img-wrapper .hover-image .shape {
        display: none
    }
}

.tg-awards-3-img-wrapper .hover-image.active .thumb {
    opacity: 1;
    transform: rotate(0deg) !important
}

.tg-awards-3-img-wrapper .hover-image.active .shape {
    opacity: 1;
    transform: scale(1);
    top: 280px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-awards-3-img-wrapper .hover-image.active .shape {
        top: 119px
    }
}

.tg-testimonial-video {
    margin-left: 300px;
    padding-top: 320px;
    padding-bottom: 320px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-video {
        margin-left: 100px;
        padding-top: 200px;
        padding-bottom: 200px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-video {
        text-align: center;
        margin-left: 0;
        padding-top: 100px;
        padding-bottom: 100px
    }
}

.tg-testimonial-video .popup-video {
    background: var(--tg-common-white);
    width: 80px;
    height: 80px;
    line-height: 80px
}

.tg-testimonial-item p {
    font-size: 18px;
    line-height: 178%;
    color: var(--tg-common-black)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-item p br {
        display: none
    }
}

.tg-testimonial-name h3 {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -.01em;
    margin-bottom: 0
}

.tg-testimonial-name span {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black)
}

.tg-testimonial-wrap {
    padding: 90px 300px 50px 110px;
    margin-top: -140px
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .tg-testimonial-wrap {
        padding: 90px 100px 50px 110px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-wrap {
        padding: 40px 50px 30px 50px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-wrap {
        margin-top: 0
    }
}

@media (max-width:575px) {
    .tg-testimonial-wrap {
        padding: 20px 20px 20px 20px
    }
}

.tg-testimonial-navigation {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1
}

@media (max-width:575px) {
    .tg-testimonial-navigation {
        position: inherit;
        margin-top: 20px
    }
}

.tg-testimonial-navigation span {
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    border: 1px solid var(--tg-common-black);
    transition: all 0.4s ease
}

.tg-testimonial-navigation span:hover {
    background: var(--tg-common-white);
    border-color: var(--tg-common-white)
}

.tg-testimonial-spacing {
    padding-top: 270px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-spacing {
        padding-top: 80px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-4-content {
        margin-left: 0
    }
}

.tg-testimonial-4-content h5 {
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -.01em;
    color: var(--tg-common-white)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-4-content h5 {
        font-size: 25px
    }
}

.tg-testimonial-4-author span {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-white);
    display: inline-block;
    margin-bottom: 5px
}

.tg-testimonial-4-author h6 {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -.01em;
    color: var(--tg-common-white)
}

.tg-testimonial-4-navigation {
    position: absolute;
    right: 0;
    bottom: 30px;
    z-index: 2
}

@media (max-width:575px) {
    .tg-testimonial-4-navigation {
        position: inherit;
        margin-top: 30px
    }
}

.tg-testimonial-4-navigation span {
    width: 60px;
    height: 60px;
    display: inline-block;
    border: 1px solid var(--tg-common-white);
    border-radius: 40px;
    color: var(--tg-theme-primary);
    text-align: center;
    line-height: 60px;
    transition: all 0.4s ease
}

.tg-testimonial-4-navigation span.tg-testimonial-4-prev {
    margin-left: 10px
}

.tg-testimonial-4-navigation span:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-white);
    border-color: var(--tg-theme-primary)
}

@media (max-width:575px) {
    .tg-testimonial-4-thumb img {
        width: 180px
    }
}

.tg-testimonial-5-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -.01em;
    color: var(--tg-common-black);
    background: var(--tg-common-white);
    padding: 13px 20px;
    display: inline-block
}

.tg-testimonial-5-border {
    height: 1px;
    width: 100%;
    background: #000;
    display: block
}

.tg-testimonial-5-content h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 158%;
    letter-spacing: -.01em;
    color: var(--tg-common-black);
    font-family: var(--tg-ff-inter)
}

.tg-testimonial-5-content .tg-testimonial-4-author span {
    color: var(--tg-common-black);
    margin-bottom: 0
}

.tg-testimonial-5-content .tg-testimonial-4-author h6 {
    font-size: 26px;
    color: var(--tg-common-black);
    font-family: var(--tg-ff-inter)
}

.tg-testimonial-5-navigation {
    bottom: 0
}

.tg-testimonial-5-navigation span {
    border: 1px solid var(--tg-common-black);
    color: var(--tg-common-black)
}

.tg-testimonial-5-navigation span:hover {
    background: var(--tg-common-white);
    color: var(--tg-common-black)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-5-innerspacing {
        padding-bottom: 40px
    }
}

.tg-testimonial-5-thumb {
    position: absolute;
    right: 90px;
    bottom: 0
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-5-thumb {
        right: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-5-thumb {
        position: inherit
    }
}

.tg-testimonial-5-thumb img {
    mix-blend-mode: luminosity
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px) {
    .tg-testimonial-5-thumb img {
        width: 300px
    }
}

.tg-testimonial-8-slider {
    margin-left: 115px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-8-slider {
        margin-left: 40px
    }
}

.tg-testimonial-8-pagenation {
    position: absolute;
    top: 75px !important;
    left: 0px !important;
    display: flex;
    flex-direction: column;
    z-index: 2;
    gap: 10px
}

.tg-testimonial-8-pagenation .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 1px solid var(--tg-common-black);
    background: #fff0;
    opacity: 1
}

.tg-testimonial-8-pagenation .swiper-pagination-bullet-active {
    background: var(--tg-common-black)
}

.tg-testimonial-8-thumb-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: end
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-8-thumb-wrap {
        padding-top: 40px;
        justify-content: flex-start
    }
}

.tg-testimonial-8-wow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 68px;
    right: 0;
    margin: 0 auto
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-testimonial-8-wow {
        display: none
    }
}

.tg-skill-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 44%;
    height: 100%
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-skill-thumb {
        position: inherit;
        width: auto
    }
}

.tg-skill-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.tg-skill-progress-bar-item {
    padding: 25px 0;
    overflow: hidden;
    padding-bottom: 10px
}

.tg-skill-progress-bar-title label {
    font-family: var(--tg-ff-heading);
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-white);
    margin-top: 6px
}

.tg-skill-progress-bar .progress {
    overflow: visible;
    height: 2px;
    border-radius: 0;
    background: rgb(255 255 255 / .3)
}

.tg-skill-progress-bar .progress-bar {
    position: relative;
    top: 0;
    height: 2px;
    overflow: visible;
    border-radius: 0;
    background-color: var(--tg-common-white)
}

.tg-skill-progress-bar .progress-bar .progress-count {
    position: absolute;
    bottom: -37px;
    right: 0;
    font-family: var(--tg-ff-heading);
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-white)
}

.tg-skill-btn .tg-btn-rounded-primary {
    color: var(--tg-common-black)
}

.tg-skill-btn .tg-btn-rounded-primary:hover {
    border-color: var(--tg-common-white);
    background: #fff0;
    color: var(--tg-common-black)
}

.tg-skill-btn .tg-btn-rounded-primary .tg-btn-circle-dot {
    background: var(--tg-common-white)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-skill-content p br {
        display: none
    }
}

.tg-skill-4-spacing {
    padding-bottom: 50px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-skill-4-spacing {
        padding-bottom: 0;
        margin-top: 90px;
        margin-bottom: 90px
    }
}

.tg-faq-4-accordion .accordion-items {
    border-bottom: 1px solid var(--tg-common-white);
    padding: 36px 0
}

.tg-faq-4-accordion .accordion-items h2 {
    line-height: 1
}

.tg-faq-4-accordion .accordion-buttons {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -.01em;
    color: var(--tg-common-white);
    text-align: left;
    padding: 0;
    position: relative;
    display: block;
    width: 100%;
    padding-right: 100px;
    line-height: 125%
}

@media (max-width:575px) {
    .tg-faq-4-accordion .accordion-buttons {
        padding-right: 20px;
        font-size: 20px
    }
}

.tg-faq-4-accordion .accordion-buttons:not(.collapsed) .plus-icon::before {
    transform: translate(-50%, -50%) rotate(90deg)
}

.tg-faq-4-accordion .accordion-buttons .plus-icon {
    position: absolute;
    top: 50%;
    right: 0
}

.tg-faq-4-accordion .accordion-buttons .plus-icon::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--tg-common-white);
    border-radius: 2px;
    transition: 0.4s
}

.tg-faq-4-accordion .accordion-buttons .plus-icon::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--tg-common-white);
    border-radius: 2px
}

.tg-faq-4-accordion .accordion-body {
    padding: 0;
    padding-top: 14px
}

.tg-faq-4-accordion .accordion-body p {
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-white);
    margin-bottom: 0
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-faq-4-wrap {
        padding-top: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-faq-4-spacing {
        margin-top: 90px
    }
}

.tg-faq-4-thumb {
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-faq-4-thumb {
        position: inherit;
        width: auto;
        margin-top: 30px
    }
}

.tg-faq-4-thumb img {
    height: 100%;
    object-fit: cover
}

.tg-faq-6-accordion .accordion-buttons {
    color: var(--tg-common-black)
}

.tg-faq-6-accordion .accordion-body p {
    color: var(--tg-common-black)
}

.tg-faq-6-accordion .accordion-items {
    border-bottom: 1px solid var(--tg-common-black)
}

.tg-faq-6-accordion .accordion-buttons {
    color: var(--tg-common-black)
}

.tg-faq-6-accordion .accordion-buttons .plus-icon::before {
    background-color: var(--tg-common-black)
}

.tg-faq-6-accordion .accordion-buttons .plus-icon::after {
    background-color: var(--tg-common-black)
}

.tg-faq-details-subtitle {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black);
    display: block;
    border-bottom: 1px solid var(--tg-common-black);
    padding-bottom: 6px
}

.tg-faq-details-title {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -.01em
}

.tg-faq-details-info {
    padding: 32px 40px 16px 40px
}

.tg-faq-details-info-link ul li {
    margin-bottom: 13px
}

.tg-faq-details-info-link ul li a {
    font-weight: 400;
    font-size: 18px;
    color: #000
}

.tg-faq-details-thumb-wrap {
    padding: 40px 40px 20px 40px
}

.tg-faq-details-thumb-info h4 {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -.02em;
    color: var(--tg-common-white)
}

.tg-faq-details-thumb-info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: var(--tg-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-faq-details-list {
        margin-left: 0
    }
}

.tg-faq-details-list .accordion-buttons {
    padding-right: 50px
}

.tg-pricing-6-wrap {
    background: var(--tg-common-white)
}

.tg-pricing-6-wrap:hover .tg-pricing-6-icon {
    background: var(--tg-common-black);
    color: var(--tg-common-white)
}

.tg-pricing-6-icon {
    width: 130px;
    height: 130px;
    display: inline-block;
    text-align: center;
    line-height: 107px;
    border-radius: 50%;
    border: 10px solid var(--tg-theme-primary);
    margin-top: -60px;
    transform: translateY(-15px);
    background: var(--tg-common-white);
    transition: all 0.4s ease
}

.tg-pricing-6-header {
    padding: 0 60px 0 60px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-pricing-6-spacing {
        margin-top: 0
    }
}

.tg-pricing-6-list {
    padding: 0 60px 39px 60px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-pricing-6-list {
        padding: 0 30px 19px 30px
    }
}

.tg-pricing-6-list ul li {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-common-black);
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px
}

.tg-pricing-6-list ul li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--tg-common-black);
    left: 0;
    transform: translateY(-50%);
    top: 50%;
    border-radius: 20px
}

.tg-pricing-6-header-content h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 117%;
    color: var(--tg-common-black);
    display: inline-block;
    padding: 10px 16px;
    background: var(--tg-theme-primary)
}

.tg-pricing-6-header-content span {
    display: block;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -.01em;
    color: var(--tg-common-black)
}

.tg-pricing-6-header-content h2 {
    font-weight: 500;
    font-size: 70px;
    letter-spacing: -.01em;
    color: var(--tg-common-black)
}

.tg-pricing-6-btn a {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--tg-common-white);
    background: var(--tg-common-black);
    text-align: center;
    padding: 15px 20px;
    display: block
}

.tg-shop-top-result p {
    font-weight: 500;
    font-size: 18px;
    color: var(--tg-common-black)
}

.tg-shop-top-select .nice-select {
    font-size: 14px;
    height: 40px;
    line-height: 38px;
    padding: 0 25px;
    min-width: 204px;
    text-transform: capitalize;
    float: none;
    background: #f9f9f9;
    color: var(--tg-common-black);
    border: 1px solid var(--tg-common-black);
    border-radius: 0;
    max-width: 180px;
    margin-left: auto
}

@media (max-width:575px) {
    .tg-shop-top-select .nice-select {
        min-width: 180px
    }
}

.tg-shop-top-btn {
    font-weight: 500;
    font-size: 14px;
    color: var(--tg-common-white);
    padding: 7px 30px;
    background-color: var(--tg-common-black)
}

.tg-shop-top-btn svg {
    margin-right: 7px
}

.tg-shop-top-btn:hover {
    color: var(--tg-common-black);
    background-color: var(--tg-theme-primary)
}

.tg-product-item:hover .tg-product-action {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible
}

.tg-product-item:hover .tg-product-btn {
    opacity: 1;
    visibility: visible;
    bottom: 0
}

.tg-product-action {
    position: absolute;
    right: 0;
    top: 108px;
    z-index: 1;
    left: 30px;
    opacity: 0;
    text-align: center;
    transition: all 0.4s ease
}

.tg-product-action-btn {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--tg-common-black);
    background-color: var(--tg-common-white);
    border-bottom: 0;
    border-radius: 50%;
    margin-bottom: 6px;
    box-shadow: 0 1px 2px 0 rgb(1 15 28 / .2)
}

.tg-product-action-btn:hover {
    color: var(--tg-common-white);
    background-color: var(--tg-common-black);
    border-color: var(--tg-common-black)
}

.tg-product-action-btn:hover .tg-product-tooltip {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(20px) translateY(-50%);
    -moz-transform: translateX(20px) translateY(-50%);
    -ms-transform: translateX(20px) translateY(-50%);
    -o-transform: translateX(20px) translateY(-50%);
    transform: translateX(20px) translateY(-50%)
}

.tg-product-tooltip {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 35px;
    font-weight: 500;
    font-size: 12px;
    color: var(--tg-common-white);
    background-color: var(--tg-common-black);
    display: inline-block;
    width: max-content;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: all 0.4s ease
}

.tg-product-tooltip::before {
    -webkit-transform: translateY(-65%) rotate(67deg);
    -moz-transform: translateY(-65%) rotate(67deg);
    -ms-transform: translateY(-65%) rotate(67deg);
    -o-transform: translateY(-65%) rotate(67deg);
    transform: translateY(-65%) rotate(67deg);
    position: absolute;
    content: "";
    top: 46%;
    width: 0;
    height: 0;
    border-left: 8px solid var(--tg-common-black);
    border-bottom: 8px solid #fff0;
    left: -6px
}

.tg-product-tooltip-right {
    left: 100%;
    right: auto
}

.tg-product-tooltip-right::before {
    left: -4px;
    right: auto;
    border-left: 0;
    border-right: 8px solid var(--tg-common-black)
}

.tg-product-btn {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease
}

.tg-product-btn a {
    color: var(--tg-common-white);
    background: var(--tg-common-black);
    padding: 13px 42px;
    width: 100%;
    text-align: center;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase
}

.tg-product-category {
    font-size: 18px;
    color: var(--tg-common-black);
    margin-bottom: 2px;
    display: inline-block
}

.tg-product-title {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -.01em;
    color: var(--tg-common-black)
}

.tg-product-title a:hover {
    color: var(--tg-theme-primary)
}

.tg-product-price {
    font-family: var(--tg-ff-heading);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -.01em;
    color: var(--tg-common-black)
}

.tg-product-content {
    align-items: flex-start
}

.tg-product-details-nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none
}

.tg-product-details-nav-link {
    width: 150px;
    height: 150px;
    padding: 0;
    border: none;
    margin: 10px 5px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .tg-product-details-nav-link {
        width: 100px;
        height: 100px
    }
}

@media (max-width:575px) {
    .tg-product-details-nav-link {
        width: 80px;
        height: 80px
    }
}

.tg-product-details-nav-link img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.tg-product-details-nav-link.active {
    border: none
}

.tg-product-details-nav-link:hover {
    border: none
}

.tg-product-details-subtitle {
    font-weight: 400;
    font-size: 16px;
    color: var(--tg-common-black);
    display: inline-block
}

.tg-product-details-title {
    font-weight: 600;
    font-size: 30px;
    letter-spacing: -.02em;
    color: var(--tg-common-black)
}

.tg-product-details-price {
    font-weight: 600;
    font-size: 22px;
    color: var(--tg-common-black)
}

.tg-product-details-ratings i {
    color: #ffb21d;
    font-size: 14px
}

.tg-product-details-ratings .total {
    font-weight: 400;
    font-size: 15px;
    color: #55585b
}

.tg-product-details-content {
    font-weight: 400;
    font-size: 15px;
    line-height: 147%;
    color: var(--tg-common-black)
}

.tg-product-details-content span {
    font-weight: 500;
    color: var(--tg-common-black)
}

.tg-product-details-view {
    font-size: 16px;
    font-weight: 400;
    color: var(--tg-common-black)
}

.tg-product-details-view span {
    color: var(--tg-common-black);
    font-weight: 500;
    margin-right: 4px
}

.tg-product-details-color-title {
    font-weight: 400;
    font-size: 15px;
    color: var(--tg-common-black)
}

.tg-product-details-color-filter .tg-checkbox {
    appearance: none;
    -moz-appearance: none;
    display: block;
    width: 18px;
    height: 18px;
    border: none;
    outline: none;
    flex: 0 0 auto;
    background: #f26339;
    padding: 0;
    margin-right: 4px;
    border-radius: 50px;
    transform: translateY(1px);
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px
}

.tg-product-details-color-filter .tg-checkbox-2 {
    background: #F1B23D
}

.tg-product-details-color-filter .tg-checkbox-3 {
    background: rgb(224 74 182 / .94)
}

.tg-product-details-color-filter .tg-checkbox-4 {
    background: #31bb00
}

.tg-product-details-color-filter .tg-checkbox:checked {
    position: relative;
    border-color: #fff0
}

.tg-product-details-color-filter .tg-checkbox:checked::after {
    box-sizing: border-box;
    position: absolute;
    content: "\f00c";
    font-weight: 700;
    font-family: var(--tg-ff-fontawesome);
    font-size: 10px;
    color: var(--tg-common-white);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.tg-product-details-color-filter .tg-checkbox:hover {
    cursor: pointer
}

.tg-product-details-action-title {
    font-weight: 500;
    font-size: 16px;
    color: var(--tg-common-black)
}

.tg-product-details-quantity {
    width: 122px;
    position: relative;
    background: var(--tg-common-white)
}

.tg-product-details-quantity .tg-quantity-input {
    height: 44px;
    text-align: center;
    font-size: 14px;
    border: none;
    background-color: var(--tg-common-white);
    padding: 0 45px;
    width: 100%;
    box-shadow: 0 1px 3px 0 rgb(1 15 28 / .1);
    color: var(--tg-common-black)
}

.tg-product-details-quantity span {
    width: 35px;
    height: 34px;
    line-height: 34px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    color: var(--tg-common-black);
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.4s ease;
    margin: 0 3px !important;
    cursor: pointer
}

.tg-product-details-quantity span::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 26px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    background-color: #e1e1e1
}

.tg-product-details-quantity span.decrement {
    right: auto;
    left: 0
}

.tg-product-details-quantity span.decrement::before {
    left: auto;
    right: 0
}

.tg-product-details-cart-btn {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--tg-common-black);
    padding: 10px 92px;
    display: inline-block;
    background: var(--tg-theme-primary)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-product-details-cart-btn {
        padding: 10px 40px
    }
}

.tg-product-details-cart-btn:hover {
    color: var(--tg-common-white);
    background: var(--tg-common-black)
}

.tg-product-details-wishlist-btn {
    box-shadow: 0 1px 3px 0 rgb(1 15 28 / .1);
    background: var(--tg-common-white);
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 46px
}

.tg-product-details-wishlist-btn:hover {
    color: var(--tg-common-white);
    background: var(--tg-common-black)
}

.tg-product-details-compare-wrap ul li {
    display: flex;
    align-items: center;
    margin-bottom: 7px
}

.tg-product-details-compare-wrap ul li h5 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    margin-right: 10px
}

.tg-product-details-compare-wrap ul li span {
    font-weight: 400;
    color: var(--tg-common-black)
}

.tg-product-details-compare-wrap ul li span.black {
    color: var(--tg-common-black)
}

.tg-product-details-social a {
    box-shadow: 0 1px 3px 0 rgb(1 15 28 / .1);
    background: var(--tg-common-black);
    border-radius: 0;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 35px;
    color: var(--tg-common-white)
}

.tg-product-details-social a:hover {
    color: var(--tg-common-white);
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary)
}

.tg-product-details-payment-way {
    border: 1px solid rgb(28 29 31 / .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 20px 0 20px
}

.tg-product-details-payment-text span {
    font-weight: 400;
    font-size: 14px;
    color: var(--tg-common-black)
}

.tg-product-details-payment-text span.grey {
    display: block;
    line-height: 1
}

.tg-product-details-payment-bank a {
    height: 32px;
    box-shadow: 0 1px 3px 0 rgb(1 15 28 / .1);
    background: #fff;
    display: inline-block;
    line-height: 32px;
    padding: 1px 8px;
    border-radius: 6px;
    margin-left: 6px
}

.tg-product-details-tab-line {
    transition: all 0.3s 0s ease-out;
    position: absolute;
    bottom: -3px;
    height: 3px;
    background-color: var(--tg-theme-secondary);
    display: block
}

.tg-product-details-tab-nav .nav-tabs {
    border: none
}

@media (max-width:575px) {
    .tg-product-details-tab-nav .nav-tabs {
        padding-bottom: 0
    }
}

.tg-product-details-tab-nav .nav-tabs .nav-link {
    text-transform: capitalize;
    position: relative;
    margin: 0;
    border: 0;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: var(--tg-common-black);
    padding: 17px 52px;
    border-radius: 0;
    border-bottom: 1px solid rgb(28 29 31 / .1)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-product-details-tab-nav .nav-tabs .nav-link {
        padding: 10px 30px
    }
}

.tg-product-details-tab-nav .nav-tabs .nav-link:not(:first-child) {
    margin-left: 5px
}

.tg-product-details-tab-nav .nav-tabs .nav-link.active,
.tg-product-details-tab-nav .nav-tabs .nav-link:hover {
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary)
}

.tg-product-details-tab-nav .nav-tabs .nav-link.active::after,
.tg-product-details-tab-nav .nav-tabs .nav-link:hover::after {
    width: 100%;
    left: 0;
    right: auto
}

@media (max-width:575px) {
    .tg-product-details-tab-nav .nav-tabs span#productTabMarker {
        display: none !important
    }
}

.tg-product-details-desc-wrapper>p {
    line-height: 30px;
    text-transform: capitalize;
    color: var(--tg-grey-1)
}

.tg-product-details-desc-wrapper ul li {
    font-weight: 400;
    font-size: 18px;
    color: var(--tg-grey-1);
    display: flex;
    margin-bottom: 15px
}

.tg-product-details-desc-wrapper ul li i {
    margin-right: 10px;
    transform: translateY(3px)
}

.tg-product-details-desc-title {
    font-weight: 600;
    font-size: 30px;
    letter-spacing: -.02em
}

.tg-product-details-additional-info-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px
}

.tg-product-details-additional-info.tg-table-style-2 table {
    border: 0;
    border-collapse: separate;
    border-spacing: 0 7px;
    width: 100%;
    font-family: var(--tg-ff-poppins)
}

.tg-product-details-additional-info.tg-table-style-2 table tr {
    border: 0
}

.tg-product-details-additional-info.tg-table-style-2 table tr:not(:last-child) {
    border: 0;
    margin-bottom: 6px
}

.tg-product-details-additional-info.tg-table-style-2 table tr tg {
    padding: 7px 24px;
    border: 1px solid #E6E7E8
}

.tg-product-details-additional-info.tg-table-style-2 table tr tg:first-child {
    padding-left: 24px;
    border-right: 0;
    font-size: 16px;
    color: var(--tg-common-black);
    background-color: #F9F9F9;
    width: 306px
}

.tg-product-details-additional-info.tg-table-style-2 table tr tg:last-child {
    padding-left: 34px
}

.tg-product-details-review-title-2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 33px
}

.tg-product-details-review-avater-thumb {
    flex: 0 0 auto
}

.tg-product-details-review-avater-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex: 0 0 auto
}

.tg-product-details-review-avater-rating span {
    font-size: 13px;
    margin-right: 2px;
    color: #FFB21D;
    font-family: var(--tg-ff-poppins)
}

.tg-product-details-review-avater-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
    font-family: var(--tg-ff-poppins)
}

.tg-product-details-review-avater-meta {
    font-size: 14px;
    line-height: 1.2;
    margin-left: 3px;
    display: inline-block;
    font-family: var(--tg-ff-poppins)
}

@media (max-width:575px) {
    .tg-product-details-review-avater-2 {
        flex-direction: column
    }
}

.tg-product-details-review-form-title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 4px
}

.tg-product-details-review-form-rating p {
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 0;
    font-family: var(--tg-ff-poppins)
}

.tg-product-details-review-form-rating-icon span {
    font-size: 12px;
    color: #FFB21D
}

.tg-product-details-review-form>p {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--tg-ff-poppins)
}

.tg-product-details-review-item-wrapper-2 {
    padding-bottom: 80px;
    border-bottom: 1px solid #E6E7E8;
    font-family: var(--tg-ff-poppins)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-product-details-thumb-wrapper {
        margin-right: 0
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tg-product-details-wrap {
        margin-right: 0;
        margin-left: 0
    }
}

.tg-error-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.tg-error-spacing {
    height: 100vh
}

.tg-error-spacing div {
    height: 100%
}

.tg-error-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.tg-error-content .tg-error-title-wrap {
    height: auto
}

@media (max-width:575px) {
    .tg-error-spacing {
        padding-top: 150px
    }
}

.tg-error-title {
    font-weight: 700;
    font-size: 280px;
    line-height: 1;
    color: var(--tg-common-white)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .tg-error-title {
        font-size: 180px
    }
}

@media (max-width:575px) {
    .tg-error-title {
        font-size: 80px
    }
}

.tg-error-subtitle {
    font-weight: 700;
    font-size: 60px;
    color: var(--tg-common-white)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .tg-error-subtitle {
        font-size: 50px
    }
}

@media (max-width:575px) {
    .tg-error-subtitle {
        font-size: 30px
    }
}

.login__left-side {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    padding: 64px 48px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .login__left-side {
        padding: 32px
    }
}

@media (max-width:575px) {
    .login__left-side {
        padding: 25px;
        height: 350px
    }
}

.login__left-side::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / .01) 0%, rgb(0 0 0 / .43) 100%);
    width: 100%;
    height: 100%;
    z-index: -1
}

.login__left-content p {
    font-size: 20px;
    color: var(--tg-common-white);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem
}

@media (max-width:575px) {
    .login__left-content p {
        font-size: 18px
    }
}

.login__left-content .title {
    font-size: 1.125rem;
    color: var(--tg-common-white);
    margin-bottom: 8px;
    font-weight: 600
}

.login__left-content span {
    display: block;
    line-height: 1;
    color: var(--tg-common-white);
    opacity: .8
}

.login__form-wrap {
    text-align: center;
    padding: 30px 15px;
    width: 400px;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .login__form-wrap {
        width: 360px
    }
}

@media (max-width:575px) {
    .login__form-wrap {
        width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .login__form-wrap {
        width: 80%
    }
}

.login__form-wrap .title {
    font-size: 36px;
    text-transform: capitalize;
    margin-bottom: 30px
}

.login__form-wrap .divider {
    display: block;
    padding: 30px 0;
    text-transform: uppercase
}

.login__form-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.login__form-social a {
    font-size: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 48px;
    flex: 1 1 0%;
    align-items: center;
    justify-content: center;
    color: var(--tg-common-white);
    background: #212529;
    border-radius: 8px
}

.login__form-social a:nth-child(2) {
    background: #066ec2
}

.login__form .form__grp {
    margin-bottom: 15px
}

.login__form .form__grp input,
.login__form .form__grp textarea {
    width: 100%;
    background: var(--tg-common-white);
    border: 1px solid #d1d4e3;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    font-size: 15px;
    color: var(--tg-common-black);
    padding: 11px 18px;
    height: 50px;
    display: block
}

.login__form .form__grp input::placeholder,
.login__form .form__grp textarea::placeholder {
    font-size: 15px;
    color: var(--tg-grey-1)
}

.login__form .tg-btn {
    width: 100%;
    justify-content: center;
    margin-top: 30px
}

.account__check {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap
}

.account__check-remember {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 5px
}

.account__check-remember input {
    width: 20px;
    height: 20px;
    margin-inline-end: 3px;
    padding: 0
}

.account__check-remember label {
    user-select: none
}

.account__check-remember label a {
    font-weight: 600;
    text-decoration: underline;
    margin-left: 5px
}

.account__check-forgot a {
    color: var(--tg-theme-primary);
    font-size: 16px;
    text-decoration: underline;
    font-weight: 600
}

.account__switch {
    margin-top: 30px
}

.account__switch p {
    margin-bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.account__switch a {
    color: var(--tg-theme-primary);
    text-decoration: underline;
    font-weight: 600
}

table {
    margin: 0 0 1.5em;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid var(--border-color)
}

th {
    font-weight: 700;
    color: var(--tg-common-black)
}

td,
th {
    border: 1px solid var(--border-color);
    padding: 9px 12px
}

.quantity {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

.woocommerce-cart-form {
    text-align: center
}

.cart_table {
    border: 0;
    margin-bottom: 45px
}

.cart_table thead {
    border-bottom: 2px solid var(--tg-common-black)
}

.cart_table thead th {
    border: none !important
}

.cart_table td:before,
.cart_table th {
    color: var(--tg-common-black);
    font-weight: 600;
    border: none;
    font-size: 18px;
    padding: 0 0 13px
}

.cart_table td:before {
    content: attr(data-title);
    position: absolute;
    left: 15px;
    top: 50%;
    vertical-align: top;
    padding: 0;
    transform: translateY(-50%);
    display: none
}

.cart_table td {
    border: none;
    border-bottom: 2px solid var(--tg-common-black);
    color: var(--tg-common-black);
    font-size: 18px;
    padding: 20px 10px;
    position: relative;
    vertical-align: middle
}

.cart_table td[data-title=Name] {
    text-align: start;
    padding: 22px 20px
}

.cart_table td[data-title=Name] a {
    color: var(--tg-common-black);
    font-weight: 600;
    font-size: 20px
}

.cart_table td[data-title=Name] a:hover {
    color: var(--tg-common-black)
}

@media (max-width:991px) {
    .cart_table td[data-title=Name] a {
        font-size: 16px
    }
}

@media (max-width:767px) {
    .cart_table td[data-title=Name] {
        text-align: end;
        padding-right: 15px
    }
}

.cart_table td[data-title=Remove] {
    text-align: start;
    padding-left: 5px
}

@media (max-width:991px) {
    .cart_table td[data-title=Remove] {
        padding-right: 20px
    }
}

@media (max-width:767px) {
    .cart_table td[data-title=Remove] {
        text-align: end;
        padding-right: 15px
    }
}

.cart_table td[data-title=Product] {
    width: 100px;
    padding: 22px 0
}

@media (max-width:767px) {
    .cart_table td[data-title=Product] {
        width: 100%;
        padding-right: 15px
    }
}

.cart_table .product-quantity {
    color: var(--tg-common-black)
}

.cart_table .product-quantity input {
    position: relative;
    top: -2px
}

.cart_table .cart-productname {
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--body-color)
}

.cart_table .cart-productimage {
    display: inline-block;
    border: 0 solid var(--smoke-color);
    border-radius: 5px;
    overflow: hidden
}

.cart_table .remove {
    color: #858580;
    font-size: 18px
}

.cart_table .remove:hover {
    color: var(--tg-common-black)
}

.cart_table .quantity {
    align-items: center;
    background: #F6F5F3;
    padding: 9px 20px;
    border-radius: 50px
}

.cart_table .quantity .title {
    font-size: 18px;
    margin-right: 24px;
    color: var(--tg-common-black)
}

@media (max-width:767px) {
    .cart_table .quantity .title {
        display: none
    }
}

.cart_table .quantity .qty-input {
    width: 33px;
    height: auto;
    border: none;
    background-color: #fff0;
    color: var(--tg-common-black);
    padding: 11px 5px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0;
    line-height: 1
}

.cart_table .quantity .qty-btn {
    color: var(--tg-common-black);
    background-color: #fff0;
    height: auto;
    width: auto;
    border: none;
    position: relative;
    z-index: 1;
    font-size: 14px
}

.cart_table .quantity .quantity-minus {
    margin-right: -14px
}

.cart_table .quantity .quantity-plus {
    margin-left: -14px
}

.cart_table .actions {
    text-align: right;
    vertical-align: middle
}

.cart_table .actions>.btn {
    font-size: 16px;
    padding: 17px 28px;
    margin-right: 15px
}

.cart_table .actions>.btn:last-child {
    margin-right: 0
}

.cart-coupon {
    float: left;
    margin: 0;
    width: 455px;
    max-width: 100%;
    display: flex
}

.cart-coupon input {
    height: 60px;
    width: calc(100% - 200px);
    border: none;
    margin-right: 16px;
    padding: 0;
    border-bottom: 2px solid var(--tg-common-black);
    border-radius: 0
}

.cart-coupon input:active,
.cart-coupon input:focus,
.cart-coupon input:hover {
    border-bottom: 2px solid var(--tg-common-black)
}

@media (max-width:575px) {
    .cart-coupon input {
        width: calc(100% - 106px);
        height: 50px
    }
}

.cart-coupon .btn {
    width: max-content
}

@media (max-width:575px) {
    .cart-coupon {
        flex-wrap: wrap;
        gap: 15px 0
    }
}

.cart_totals {
    border: 0;
    margin-bottom: 28px
}

.cart_totals th,
.cart_totals td {
    vertical-align: top;
    padding: 16px 20px;
    border: none;
    border-bottom: 2px solid var(--tg-common-black);
    font-size: 14px;
    color: var(--tg-common-black);
    width: 75%
}

@media (max-width:991px) {

    .cart_totals th,
    .cart_totals td {
        width: 50%
    }
}

.cart_totals th:first-child,
.cart_totals td:first-child {
    width: 25%;
    background-color: #fff0;
    padding-left: 0;
    font-weight: 600;
    font-size: 14px;
    color: var(--tg-common-black)
}

@media (max-width:991px) {

    .cart_totals th:first-child,
    .cart_totals td:first-child {
        width: 50%
    }
}

.cart_totals .amount {
    font-weight: 400;
    font-size: 18px
}

.cart_totals .order-total .amount {
    font-weight: 600
}

@media (max-width:991px) {
    .cart_table th {
        padding: 23px 8px;
        font-size: 14px
    }

    .cart_table .cart-productname {
        font-size: 14px
    }

    .cart_table .cart-coupon {
        width: 100%;
        margin-bottom: 20px;
        justify-content: center
    }

    .cart_table .actions {
        text-align: center
    }
}

@media (max-width:767px) {
    .cart_table {
        text-align: left;
        min-width: auto;
        border-collapse: separate;
        border-spacing: 0 20px;
        border: none
    }

    .cart_table thead {
        display: none
    }

    .cart_table td {
        padding: 15px;
        display: block;
        width: 100%;
        padding-left: 25%;
        text-align: right;
        border: 1px solid #f3f3f3;
        border-bottom: none
    }

    .cart_table td::before {
        display: block
    }

    .cart_table td:last-child {
        border-bottom: 1px solid #f3f3f3
    }

    .cart_table td.actions {
        padding-left: 15px;
        text-align: center
    }

    .cart_table td.actions>.btn {
        margin-top: 10px;
        display: block;
        width: max-content;
        margin-left: auto;
        margin-right: auto
    }

    .cart_table td.actions>.btn:last-child {
        margin-right: auto
    }

    .cart_table .cart-coupon {
        width: 100%;
        text-align: center;
        float: none;
        justify-content: center;
        display: block;
        padding-bottom: 10px
    }

    .cart_table .cart-coupon input {
        width: 100%;
        margin-bottom: 10px
    }

    .cart_totals th,
    .cart_totals td {
        padding: 15px 10px
    }

    .cart_totals th:first-child,
    .cart_totals td:first-child {
        width: 17%;
        line-height: 1.4
    }
}

.woocommerce-checkout label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0
}

.woocommerce-checkout .form-group,
.woocommerce-checkout .form-row {
    margin-bottom: 0
}

.woocommerce-checkout .form-select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .form-control {
    margin-bottom: 0;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 2px solid var(--tg-common-black);
    border-radius: 0;
    font-size: 16px
}

.woocommerce-checkout .form-select option:checked,
.woocommerce-checkout .form-select option:focus,
.woocommerce-checkout .form-select option:hover,
.woocommerce-checkout .select2-container option:checked,
.woocommerce-checkout .select2-container option:focus,
.woocommerce-checkout .select2-container option:hover,
.woocommerce-checkout .form-control option:checked,
.woocommerce-checkout .form-control option:focus,
.woocommerce-checkout .form-control option:hover {
    background: var(--tg-common-black)
}

textarea.form-control,
textarea {
    min-height: 100px;
    padding-top: 16px;
    padding-bottom: 17px
}

.single-select,
.form-select,
select {
    display: block;
    width: 100%;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 26px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

input[type=radio] {
    visibility: hidden;
    opacity: 0;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none
}

input[type=radio]~label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0
}

input[type=radio]~label::before {
    content: "\f111";
    position: absolute;
    font-family: var(--tg-ff-fontawesome);
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    padding-left: 0;
    font-size: .6em;
    line-height: 19px;
    text-align: center;
    border: 1px solid var(--tg-theme-primary);
    border-radius: 100%;
    font-weight: 700;
    background: var(--tg-common-white);
    color: #fff0;
    transition: all 0.2s ease
}

input[type=radio]:checked~label::before {
    border-color: var(--tg-theme-primary);
    background-color: var(--tg-theme-primary);
    color: var(--white-color)
}

label {
    margin-bottom: .5em;
    margin-top: -.3em;
    display: block;
    color: var(--tg-common-black);
    font-size: 16px
}

@media (max-width:575px) {

    .woocommerce-checkout .form-select,
    .woocommerce-checkout .select2-container,
    .woocommerce-checkout .form-control {
        font-size: 16px
    }
}

.woocommerce-checkout .form-select {
    background-position: right 0 center
}

.woocommerce-checkout select,
.woocommerce-checkout .form-select,
.woocommerce-checkout .form-control,
.woocommerce-checkout .select2,
.woocommerce-checkout .select2-container {
    margin-bottom: 32px
}

.woocommerce-cart-form .cart_table thead th {
    text-align: start
}

.woocommerce-cart-form .cart_table td {
    text-align: start;
    padding: 20px 20px;
    padding-left: 0;
    line-height: 20px;
    font-size: 18px;
    font-weight: 400
}

@media (max-width:767px) {
    .woocommerce-cart-form .cart_table td {
        text-align: end
    }
}

.woocommerce-cart-form .cart_table td[data-title=Name] {
    padding-left: 0
}

.woocommerce-cart-form .cart_table td[data-title=Name] a {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--body-font)
}

.woocommerce-cart-form .cart_table td[data-title=Name] a span {
    font-weight: 600
}

.checkout-ordertable th,
.checkout-ordertable td {
    vertical-align: middle;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--tg-common-black);
    border: 0;
    text-align: right;
    border-bottom: 2px solid var(--tg-common-black)
}

.checkout-ordertable th {
    text-align: left
}

.checkout-ordertable ul {
    margin: 0;
    padding: 0
}

.checkout-ordertable .order-total .amount {
    font-weight: 600
}

.woocommerce-checkout-payment {
    text-align: left
}

.woocommerce-checkout-payment ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-top: 30px
}

.woocommerce-checkout-payment ul li {
    padding-top: 20px;
    border-bottom: 1px solid #d8d8d8;
    border-radius: 4px;
    font-size: 16px
}

.woocommerce-checkout-payment ul input[type=radio]~label {
    margin-bottom: 20px;
    color: var(--tg-common-black);
    font-size: 18px;
    font-weight: 400
}

.woocommerce-checkout-payment ul input[type=radio]~label:before {
    border: 2px solid var(--tg-common-black)
}

.woocommerce-checkout-payment ul input[type=radio]:checked~label::before {
    border: 2px solid var(--tg-common-black);
    background-color: #fff0;
    color: var(--tg-common-black);
    line-height: 17px
}

.woocommerce-checkout-payment .place-order {
    padding-top: 50px
}

.woocommerce-checkout-payment .payment_box {
    color: #a1b1bc;
    background-color: #fff0;
    border: 0;
    border-bottom: none;
    font-size: 18px;
    padding: 0 0 20px;
    border-radius: 4px;
    display: none
}

.woocommerce-checkout-payment .payment_box h5 {
    font-weight: 600;
    margin-top: 10px
}

.woocommerce-checkout-payment .payment_box p {
    margin: 0;
    color: var(--tg-common-black)
}

.th-checkout-wrapper form.woocommerce-form {
    margin-bottom: 25px
}

@media (max-width:767px) {
    tfoot.checkout-ordertable th {
        display: none
    }

    .woocommerce-checkout-payment ul input[type=radio]~label img {
        max-width: 150px
    }

    .checkout-ordertable th,
    .checkout-ordertable td {
        padding: 5px 20px 5px 60px
    }
}

.wsus__privacy_policy_text {
    margin-bottom: -8px
}

.wsus__privacy_policy_text h1,
.wsus__privacy_policy_text h2,
.wsus__privacy_policy_text h3,
.wsus__privacy_policy_text h4,
.wsus__privacy_policy_text h5,
.wsus__privacy_policy_text h6 {
    margin-bottom: 25px;
    margin-top: 30px;
    font-weight: 600;
    text-transform: capitalize
}

.wsus__privacy_policy_text h1 {
    font-size: 34px
}

.wsus__privacy_policy_text h2 {
    font-size: 30px
}

.wsus__privacy_policy_text h3 {
    font-size: 26px
}

.wsus__privacy_policy_text h4 {
    font-size: 22px
}

.wsus__privacy_policy_text h5 {
    font-size: 18px
}

.wsus__privacy_policy_text h6 {
    font-size: 16px
}

.wsus__privacy_policy_text p {
    margin-top: 20px;
    color: var(--tg-common-black)
}

.wsus__privacy_policy_text ol,
.wsus__privacy_policy_text ul {
    margin-top: 25px
}

.wsus__privacy_policy_text ol li,
.wsus__privacy_policy_text ul li {
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
    position: relative;
    padding-left: 15px;
    color: var(--tg-common-black)
}

.wsus__privacy_policy_text ol li::after,
.wsus__privacy_policy_text ul li::after {
    position: absolute;
    content: "";
    top: 13px;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--tg-common-black);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.wsus__privacy_policy_text p a {
    font-size: 18px;
    font-weight: 500;
    color: var(--tg-theme-primary)
}

.tg-header-top__area {
    background: var(--tg-theme-primary)
}

.tg-header-top__info ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 50px
}

.header_language_area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end
}

.header_language_area .nice-select {
    background-color: #fff0;
    border: none;
    height: 50px;
    line-height: 50px;
    padding-right: 20px;
    padding-left: 20px
}

.header_language_area li {
    position: relative
}

.header_language_area li:first-child {
    padding-right: 20px
}

.header_language_area>li:first-child::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 30px;
    background: #d78383;
    top: 10px;
    right: 0
}

.header_language_area>li:first-child::before {
    position: absolute;
    content: "";
    background: url(../images/global_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    top: 18px;
    left: -3px
}

.header_language_area .nice-select .current {
    font-size: 16px;
    color: var(--tg-common-black)
}

.header_language_area .nice-select:after {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    height: 7px;
    margin-top: -5px;
    width: 7px;
    right: 3px
}

.header_language_area .header_currency {
    width: 90px
}

.header_language_area .nice-select .list {
    min-width: 110px
}

.checkout-wrapper select,
.checkout-wrapper .form-select {
    background-image: none
}

.tg-portfolio-area.tgbg-black-2 .tg-skill-btn a:hover {
    background: var(--tg-common-white)
}

.chose-area,
.tg-hero-2-spacing,
.process-area,
.tp-service-4-area {
    overflow: hidden
}

.cart_table .cart-productimage img {
    object-fit: cover
}

.wsus__product__sidebar {
    padding: 25px;
    border: 1px solid #eee
}

.wsus__product_searchbox {
    position: relative
}

.wsus__product_searchbox input {
    padding: 14px 60px 13px 20px;
    background: #fff0;
    border: 1px solid rgb(23 23 24 / .14);
    height: auto;
    line-height: initial
}

.wsus__product_searchbox button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    color: var(--tg-common-white);
    background: var(--tg-common-black);
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s
}

.wsus__product_searchbox button:hover {
    color: var(--tg-common-white);
    background: var(--tg-theme-primary)
}

.wsus__product__sidebar_category {
    margin-top: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgb(23 23 24 / .14)
}

.wsus__product__sidebar_category h5,
.wsus__product_sidebar_range h5 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase
}

.wsus__product__sidebar_category ul {
    margin-top: 20px;
    list-style: none
}

.wsus__product__sidebar_category ul li {
    margin-top: 10px
}

.wsus__product__sidebar_category ul li .form-check {
    margin-bottom: 0
}

.wsus__product__sidebar_category ul li input {
    padding: 0;
    width: 16px !important;
    height: 16px !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    margin-top: 4px
}

.wsus__product__sidebar_category ul li .form-check-input:focus {
    box-shadow: none
}

.wsus__product__sidebar_category ul li label {
    font-size: 16px;
    font-weight: 400;
    line-height: initial
}

.wsus__product_sidebar_range {
    margin-top: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgb(23 23 24 / .14)
}

.wsus__product__sidebar_rating {
    padding-bottom: 0;
    border-bottom: none
}

.wsus__product__sidebar_rating ul li label i {
    color: #F5980C
}

.wsus__filter_btn {
    background: var(--tg-theme-primary);
    padding: 10px 25px;
    position: relative
}

.wsus__filter_btn i {
    margin-right: 5px
}

.wsus__filter_btn span {
    font-size: 16px;
    font-weight: 400
}

.wsus__filter_btn::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: var(--tg-common-black);
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%)
}

.wsus__filter_btn::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 20px;
    background: var(--tg-common-black);
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%)
}

.wsus__filter_btn.hide_plus::after {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0)
}

@media (min-width:1600px) and (max-width:1800px) {
    .tg-header-top__area {
        padding: 0 20px
    }

    .tgmenu__navbar-wrap>ul>li:not(:last-child) {
        margin-right: 40px
    }
}

@media (min-width:1400px) and (max-width:1599.99px) {
    .tg-header-top__area {
        padding: 0 20px
    }

    .tgmenu__navbar-wrap>ul>li:not(:last-child) {
        margin-right: 30px
    }
}

@media (min-width:1200px) and (max-width:1399.99px) {
    .tg-footer-menu ul li {
        margin-left: 35px
    }

    .tg-breadcrumb-navigation-title {
        font-size: 48px
    }

    .tg-header-top__area {
        padding: 0 20px
    }

    .tgmenu__navbar-wrap>ul>li:not(:last-child) {
        margin-right: 15px
    }
}

@media (min-width:992px) and (max-width:1199.99px) {
    .tg-footer-menu ul li a {
        font-size: 15px
    }

    .tg-breadcrumb-navigation-title {
        font-size: 42px
    }

    .tg-header-top__area {
        padding: 0 20px
    }
}

@media (min-width:768px) and (max-width:991.99px) {
    .tg-service-2-item {
        font-size: 54px
    }

    .tg-pricing-6-list ul li {
        font-size: 16px
    }

    .tg-breadcrumb-navigation-title {
        font-size: 46px
    }

    .header_language_area {
        justify-content: center
    }

    .wsus__product__sidebar {
        display: none
    }

    .wsus__product__sidebar.show_sidebar {
        display: block;
        margin-top: 25px
    }

    .tg-shop-top-resul {
        margin-top: 25px;
        margin-bottom: 20px
    }

    .tg-shop-top-select .nice-select {
        min-width: 100%;
        max-width: 100%
    }
}

@media (min-width:576px) and (max-width:767.99px) {
    .tg-btn {
        margin-top: 10px
    }

    .tg-breadcrumb-navigation-title {
        font-size: 42px
    }

    .header_language_area {
        justify-content: center
    }

    .wsus__product__sidebar {
        display: none
    }

    .wsus__product__sidebar.show_sidebar {
        display: block;
        margin-top: 25px
    }

    .tg-shop-top-resul {
        margin-top: 25px;
        margin-bottom: 20px
    }

    .tg-shop-top-select .nice-select {
        min-width: 100%;
        max-width: 100%
    }
}

@media (max-width:575.99px) {
    .tg-btn {
        margin-top: 10px
    }

    .tg-pricing-6-list ul li {
        font-size: 16px
    }

    .header_language_area {
        justify-content: center
    }

    .wsus__product__sidebar {
        display: none
    }

    .wsus__product__sidebar.show_sidebar {
        display: block;
        margin-top: 25px
    }

    .tg-shop-top-resul {
        margin-top: 25px;
        margin-bottom: 20px
    }

    .tg-shop-top-select .nice-select {
        min-width: 100%;
        max-width: 100%
    }
}