@font-face {
    font-family: 'cerebri-sans-regular';
    src: url('fonts/CerebriSans-Regular.woff2') format('woff2'),
        url('fonts/CerebriSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal; 
} 
@font-face {
    font-family: 'cerebri-sans-medium';
    src: url('fonts/CerebriSans-Medium.woff2') format('woff2'),
        url('fonts/CerebriSans-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'cerebri-sans-semibold';
    src: url('fonts/CerebriSans-SemiBold.woff2') format('woff2'),
        url('fonts/CerebriSans-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'cerebri-sans-bold';
    src: url('fonts/CerebriSans-Bold.woff2') format('woff2'),
        url('fonts/CerebriSans-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'cerebri-sans-light';
    src: url('fonts/CerebriSans-Light.woff2') format('woff2'),
        url('fonts/CerebriSans-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
:root {      
    --alt-font: 'cerebri-sans-regular';
    --primary-font:  'cerebri-sans-regular';
    --base-color: #313191;
    --secondary: #B01E18;
    --third: #444444;
    --four: #00B0EC;
    --dark-gray:#27354E;
    --soft-abu: #e5e5e547;
    --very-light-gray:#eceff1;
    --yellow: #27354E;
    --medium-gray: #7c898d;
    --solitude-blue: #f4f7f9;
    --hitam-soft: #222222;
    --hitam-soft-lagi: #292929;
}

body {
    font-size: 14px;
    line-height: 25px;
}

@media (max-width: 768px){
    .p-sm-0{
        padding: 0 !important;
    }
}

.fz-10 {
    font-size: 10px;
}

.fz-11 {
    font-size: 11px;
}

.fz-12 {
    font-size: 12px;
}

.fz-14 {
    font-size: 14px;
}

.fz-16 {
    font-size: 16px;
}

.fz-18 {
    font-size: 18px;
}

.fz-20 {
    font-size: 20px;
}

.fz-22 {
    font-size: 22px;
}

.d-content {
    display: contents;
}

.text-utama {
    color: var(--base-color);
}

.text-kedua {
    color: var(--secondary);
}

.text-ketiga {
    color: var(--third);
}

.text-putih {
    color: white;
}

.text-hitam {
    color: black;
}

.text-outline-shadow {
    /* color: #C3CDD1; */
    -webkit-text-stroke-color: #C3CDD1;
}

.text-gradient-utama-putih {
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%,  rgba(49, 49, 145, .2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-light-green-white {
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%,  #ebf6ee 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.limit-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.limit-text-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
            line-clamp: 3; 
    -webkit-box-orient: vertical;
}

.contact-item {
    padding: 10px 20px;
    border: 1px solid rgba(49,49,145, 0.5);
    border-bottom: 4px solid rgba(49,49,145, 0.5);
    border-radius: 0.4rem;
    display: flex;
    gap: 15px;
}

.contact-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-top: 5px;
}

.contact-item .title {
    font-size: 14px;
    color: var(--base-color);
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
}

.carousel-item img {
    transition: transform 5s ease-in-out; 
    transform: scale(1); 
}

.carousel-item.active img {
    transform: scale(1.1); 
}

.carousel-item:not(.active) img {
    transform: scale(1);
}

.bg-gradient-utama {
    background: linear-gradient(to right,rgba(0,155,76), rgba(242,233,0));
}

.bg-very-light-green {
    background-color: #ebf3ed;
}

.bg-utama {
    background-color: var(--base-color);
}

.bg-kedua {
    background-color: var(--secondary);
}

.bg-ketiga {
    background-color: var(--third);
}

.bg-hitam {
    background-color: black;
}

.bg-hitam-soft {
    background-color: var(--hitam-soft);
}

.bg-hitam-soft-lagi {
    background-color: var(--hitam-soft-lagi);
}

.bg-abu-soft {
    background-color: var(--soft-abu);
}

.bg-putih {
    background-color: white;
}

.bg-gradient-gold {
    background: linear-gradient(to right, rgba(195,161,55, 1.0), rgba(255, 255, 255, 0.0));
}

.bg-gradient-hitam {
    background: linear-gradient(rgba(255,255,255,.1), rgba(0,0,0,.8));
}

.zoom-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    z-index: 0; 
}

.zoom-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomInOut 10s infinite;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1); 
    }
    50% {
        transform: scale(1.1); 
    }
}

.radius-20-r {
    border-radius: 0 20px 20px 0;
}

.sidebar-sticky-top {
    position: sticky;
    top: 90px;
}

table {
    border-collapse: collapse; 
    width: 100%;
}

th, td {
    border: 1px solid black; 
    padding: 8px;
    text-align: left; 
}

th {
    border: 2px solid black; 
    background-color: #f2f2f2; 
}

.btn-utama {
    background:var(--base-color);
    background-size: 200% auto;
    color: white;
}

.btn-utama:hover {
    background: var(--base-color);
    color: var(--third);
}

.btn-kedua {
    background: var(--secondary);
    background-size: 200% auto;
    color: white;
}

.btn-kedua:hover {
    background: var(--secondary);
    color: var(--third);
}

.btn-ketiga {
    background: var(--third);
    background-size: 200% auto;
    color: var(--base-color);
}

.btn-ketiga:hover {
    background: var(--third);
    color: var(--secondary);
}

.radius-left-15 {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.scroll {
	display: block;
	height: 185px;
	overflow: auto;
	margin-bottom: 10px;
    /* direction: rtl;
    text-align: left; */
}

.simplescroll::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.simplescroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}
.simplescroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--base-color);
}
.simplescroll::-webkit-scrollbar-thumb:hover {
  background: var(--base-color);
}
.simplescroll::-webkit-scrollbar-thumb:active {
  background: var(--base-color);
}

.fasilitas ul li {
    list-style: none; 
    padding-left: 25px; 
    background: url('../../../images/check.png') no-repeat left top;
    background-size: 20px 20px;
    line-height: 1.5;
}

.bg-gradient-aztec-green {
    background-image: linear-gradient(to right bottom,#313e3b,#2e3b38,#2c3835,#293532,#27322f);
}

.border-start-utama {
    border-left: 10px solid var(--base-color);
}

.border-end-utama {
    border-right: 1.5px solid var(--base-color);
}

.border-bottom-utama {
    border-bottom: 1.5px solid var(--base-color);
}

.border-bottom-putih {
    border-bottom: 1.5px solid white;
}

.border-bottom-ketiga {
    border-bottom: 1.5px solid var(--third);
}

.bg-paket {
    background: linear-gradient(rgba(255,255,255,.95),rgba(255,255,255,.8)), url('../../../images/paket-bg.jpg') center center; 
    background-size: contain; 
    background-repeat: no-repeat;
}

.list-checked {
    padding-left: 0;
    text-align: left;
    list-style-type: none;
}

.list-checked>li {
    position: relative;
    padding: 5px 0;
    padding-left: 2.25rem;
}

.list-checked>li+li, .list-order>li+li {
    margin-top: 0;
}

.list-checked>li::before {
    position: absolute;
    top: 50%;
    left: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    font-size: .75rem;
    border-radius: 50%;
    background-color: rgb(22, 59, 222, .1);
    color: var(--bs-primary);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-weight: 900;
}

.list-checked.centang>li::before {
    position: absolute;
    top: 50%;
    left: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f124";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2rem;
    height: 1.2rem;
    line-height: normal;
    text-align: center;
    font-size: .55rem;
    border-radius: 50%;
    background-color: var(--base-color);
    color: white;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-weight: 900;
}

.list-checked.maps>li::before {
    position: absolute;
    top: 50%;
    left: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    line-height: normal;
    text-align: center;
    font-size: .75rem;
    border-radius: 50%;
    background-color: var(--base-color);
    color: white;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-weight: 900;
}

.fw-400 {
    font-family: 'cerebri-sans-regular' !important; 
    font-weight: normal !important;
}
.fw-300 {
    font-family: 'cerebri-sans-light' !important;
    font-weight: normal !important;
}
.fw-500 {
    font-family: 'cerebri-sans-medium' !important;
    font-weight: normal !important;
}
.fw-600 {
    font-family: 'cerebri-sans-semibold' !important;
    font-weight: normal !important;
}
.fw-700 {
    font-family: 'cerebri-sans-bold' !important;
    font-weight: normal !important;
} 
/* custom cursor */
.custom-cursor .circle-cursor-inner {
    background-color: var(--base-color);
}
.custom-cursor .circle-cursor-inner.cursor-link-hover {
    background-color: var(--base-color);
}
.custom-cursor .circle-cursor-outer {
    border: 1px solid var(--base-color);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
}
h1 {
    line-height: 4.375rem;
}
h2 {
    line-height: 3.438rem;
}
h3 {
    line-height: 3rem;
}
h4 {
    line-height: 2.6rem;
}
h5 {
    line-height: 2rem;
}
h6 {
    line-height: 1.75rem;
}
/* header */
.navbar .navbar-nav .nav-link {
    font-size: 14px;
    font-family: 'cerebri-sans-medium' !important;
}
.navbar .navbar-nav .dropdown .dropdown-menu a {
    font-size: 16px;
    line-height: 28px;
    font-family: 'cerebri-sans-regular' !important; 
}
header .btn.btn-small {
    font-size: 12px
}
header .btn.btn-small i {
    top:-2px;
}
/* header .navbar-brand img {
    max-height: 55px;
} */
@media (max-width: 767px) { 
    header .navbar-brand img {
        max-height: 35px;
    }
    header .navbar-brand {
        padding: 15px 0;
    }
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
    width: 300px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    border-bottom: 1px solid var(--very-light-gray);
    padding: 20px 30px;
    font-size: 17px;
    color: var(--dark-gray) !important; 
    font-family: 'cerebri-sans-medium' !important;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover{
    background-color: var(--very-light-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a img {
    width: 40px;
    margin-right: 10px;
}
/* btn */
.btn-link i {
    top:0px;
}
.btn.btn-hover-animation-switch .btn-icon {
    margin-left: 6px;
}
.btn {
    font-family: 'cerebri-sans-medium'; 
    font-weight: normal !important;
    text-transform: none;
    letter-spacing: normal;
}
.btn-yellow {
    background-color: var(--yellow) !important;
    color: var(--dark-gray) !important; 
}
.btn.btn-box-shadow.btn-yellow:hover {
    background-color: var(--yellow) !important;
    color: var(--dark-gray) !important;
}
.btn.btn-box-shadow.btn-yellow:active {
     border-color: var(--yellow) !important;
}
.btn.btn-extra-large {
    font-size: 17px;
}
.btn.btn-large {
    font-size: 16px;
}
.btn.btn-medium {
    font-size: 15px;
}
.btn.with-rounded.btn-large > span {
    line-height: 34px;
}
.btn.with-rounded.btn-medium > span {
    line-height: 30px;
}
/* text color */
.text-emerald-green {
    color: #62cd54;
}
/* bg color */
.bg-orient-blue {
    background-color: #004211; 
}
/* bg gradient color */
.bg-gradient-green-yellow-color { 
    background: rgb(236,171,35); 
    background: linear-gradient(306deg, rgba(236,171,35,1) 0%, rgba(0,83,61,1) 85%);
}
.bg-gradient-gray-light-dark-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(32, 35, 41, 1)), to(transparent));
    background-image: linear-gradient(to top, rgba(32, 35, 41, 1) 10%, transparent 50%);
}
/* homepage */
.contact-form-style-01 .btn.btn-large { 
    padding: 13px 40px;
}
.terms-condition .box:before {
    top: 7px;
}
.terms-condition .box:after {
    top: 11px;
}
.contact-form-style-01 {
    margin-top: -100px;
}
/* page title */
.page-title-extra-small h1 {
    font-size: 18px;
    line-height: 22px;
}
.page-title-extra-small h2 {
    font-size: 4rem;
    line-height: 3.8rem;
}
/* team style */
.team-style-01 figure figcaption .social-icon a {
    margin: 0 5px;
}
/* text shadow */
.text-shadow-medium { 
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
/* border color */
.border-color-yellow {
    border-color: var(--yellow) !important;
}
.pagination-style-01 .page-item.active .page-link,
.pagination-style-01 .page-item .page-link:hover {
    background: var(--dark-gray);
    color: var(--white);
}
.pagination-style-01 .page-item:first-child .page-link,
.pagination-style-01 .page-item:last-child .page-link {
    background: transparent;
    box-shadow: none !important;
}
.pagination-style-01 .page-item:first-child .page-link,
.pagination-style-01 .page-item:last-child .page-link {
    background: transparent;
    box-shadow: none !important;
}
.pagination-style-01 .page-item:first-child .page-link:hover,
.pagination-style-01 .page-item:last-child .page-link:hover {
    color: var(--dark-gray);
}
/* progress bar style 03 */
.progress-bar-style-03 .progress .progress-bar-title, 
.progress-bar-style-03 .progress .progress-bar-percent {
    bottom: 10px;
}
.progress-bar-style-03 .progress {
    height: 6px;
}
/* tooltip */ 
.tooltip-inner {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.16);
    color: var(--medium-gray);
    padding: 22px 35px;
    max-width: 260px;
    font-size: 16px;
    line-height: 26px;
    text-transform: none;
    font-weight: 400;
}
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before, .bs-tooltip-bottom .tooltip-arrow:before {
    border-bottom-color: var(--white) !important;
    border-width: 0 1.7em 1.7em !important; 
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before, .bs-tooltip-top .tooltip-arrow:before {
    border-top-color: var(--white) !important;
    border-width: 1.7em 1.7em 0 !important; 
}
.bs-tooltip-auto[data-popper-placement^=bottom] {
    margin-top: 15px !important;
}
.bs-tooltip-auto[data-popper-placement^=top] {
    margin-bottom: 15px !important;
}
.tooltip {
    opacity: 1 !important;
}
.tooltip .tooltip-arrow {
    width: 3.5em;
    height: 1.2em;
}
.bs-tooltip-start.tooltip .tooltip-arrow {
    width: 1.2em;
    height: 3.2em;
    margin-top: -18px;
}
.bs-tooltip-auto[data-popper-placement^=left] {
    margin-right: 15px;
}
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before, .bs-tooltip-start .tooltip-arrow:before {
    border-width: 1em 0 1em 1em !important;
    border-left-color: var(--white) !important;
}
.bs-tooltip-end.tooltip .tooltip-arrow {
    width: 1.2em;
    height: 3.2em;
    margin-top: -18px;
}
.bs-tooltip-auto[data-popper-placement^=right] {
    margin-left: 15px !important;
}
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before, .bs-tooltip-end .tooltip-arrow:before {
    border-width: 1.7rem 1.7rem 1.7rem 0 !important;
    border-right-color: var(--white) !important;
}
.tooltip-title {
    font-weight: 600;
    display: block;
    font-size: 18px;
    margin-bottom: 7px;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
}
/* top right bottom left */
.left-35px {
    left: 35px;
}
.bottom-35px {
    bottom: 35px;
}
/* footer */
footer .footer-logo img {
    max-height: 200px;
}
.footer-dark p, .footer-dark .widget-text {
    color: var(--white);
    opacity: 0.4;
}
.footer-dark .elements-social .light li a {
    opacity: 1;
}
.footer-dark p a, .footer-dark p a:hover {
    color: var(--white);
}
.footer-dark ul li a, .footer-dark .widget-link {
    color: var(--white);
    opacity: 0.4;
}
.footer-dark ul li a:hover, .footer-dark .widget-link:hover, .footer-dark a:hover {
    opacity: 1;
    color: var(--white);
}
footer ul li {
    margin-bottom: 0;
}
.footer-dark .newsletter-style-02 input::placeholder {
    color: var(--white);
}
.footer-dark .newsletter-style-02 input::-webkit-input-placeholder {
    color: var(--white) !important;
    text-overflow: ellipsis;
    opacity: 0.4;
}
.footer-dark .newsletter-style-02 input::-moz-placeholder {
    color: var(--white) !important;
    text-overflow: ellipsis;
    opacity: 0.4;
}
.footer-dark .newsletter-style-02 input:-ms-input-placeholder {
    color: var(--white) !important;
    text-overflow: ellipsis;
    opacity: 0.4;
}
.is-touchable .cursor-page-inner {
    display: none !important;
}
/* media query responsive */
@media (max-width: 1300px) {
    .sticky-wrap.shadow-in {
        left: 18px;
    }
}
@media (max-width: 1250px) {
    .sticky-wrap.shadow-in {
        left: 2px;
    }
}
@media (max-width: 1199px) {
    header .btn.btn-rounded.btn-small {
        padding: 9px 18px;
    }
}
@media (max-width: 991px) {
    .contact-form-style-01 {
        margin-top: 0;
    }
    .tab-style-08 ul .nav-item .nav-link {
        padding: 18px 20px;
    }
    .elements-social .large-icon li {
        margin: 0 5px;
    }
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
        padding-left: 0px;
        padding-right: 0px;
    }
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover{
        background-color: transparent;
    }
}
@media (max-width: 767px) { 
    .process-step-style-03 .progress-step-separator {
        display: block;
    }
}
@media (max-width: 575px) { 
    .process-step-style-03 .progress-step-separator {
        display: none;
    }
}
.custom-overlay {
    position: relative;
}
.custom-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}
.custom-hover-scale {
    transition: 0.3s;
}
.custom-hover-scale:hover {
    transform: scale(0.98);
}
.custom-hover-scale .image {
    transition: .3s;
}
.custom-hover-scale:hover .image {
    transform: scale(1.05);
}
.contact-btn {
    position: fixed;
    bottom: 65px;
    left: 20px;
    z-index: 8;
    display: flex;
    gap: 10px;
}
@media (min-width: 992px) {
    .position-lg-sticky {
        position: sticky;
    }
}

/*------------------- 2.5. Slick Slider -------------------*/
.swiper-wrapper.row {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}

.th-slider.has-shadow {
    padding-left: 12px;
    padding-right: 12px;
    margin: -25px -12px;
}

.th-slider.has-shadow .swiper-wrapper {
    padding: 25px 0;
}

.swiper-fade .swiper-slide {
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

.swiper-fade .swiper-slide-prev {
    opacity: 0;
}

.swiper-pagination-bullets {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: 45px 0 10px 0;
    padding-bottom: 20px;
    line-height: 20px;
    height: 16px;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    --swiper-pagination-bullet-size: 16px;
    --swiper-pagination-bullet-horizontal-gap: 15px;
    margin: 5px 7px;
    opacity: 1;
    background-color: transparent;
    border: 1px solid #113D48;
    color: #E4E4E4;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    /* Extra small devices */
}

@media (max-width: 575px) {
    .swiper-pagination-bullets .swiper-pagination-bullet {
        --swiper-pagination-bullet-horizontal-gap: 8px;
    }
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.slider-area {
    position: relative;
}

.slider-arrow {
    display: inline-block;
    padding: 0;
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.25);
    border-radius: 48px;
    color: var(--theme-color);
    position: absolute;
    top: 50%;
    left: var(--pos-x, -120px);
    width: var(--icon-size, 88px);
    height: var(--icon-size, 56px);
    line-height: var(--icon-size, 56px);
    font-size: var(--icon-font-size, 18px);
    margin-top: calc(var(--icon-size, 56px) / -2);
    z-index: 3;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .slider-arrow {
        display: none !important;
    }
}

.slider-arrow.style2 {
    width: var(--icon-size, 56px);
    height: var(--icon-size, 56px);
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
}

.slider-arrow.style2:hover {
    background-color: var(--title-color);
    color: var(--white-color);
    border-color: var(--title-color);
    border-color: var(--title-color);
}

.slider-arrow.style3 {
    background-color: var(--white-color);
    color: var(--white-color);
    --icon-size: 48px;
    line-height: 48px;
    border-radius: 50%;
    border-color: var(--white-color);
}

.slider-arrow.style3:hover {
    background-color: var(--title-color);
    color: var(--white-color);
    border-color: var(--white-color);
}

.slider-arrow.style4 {
    background-color: transparent;
    color: var(--title-color);
    border-color: #E4E4E4;
    box-shadow: none;
    font-size: var(--icon-font-size, 22px);
}

.slider-arrow.style4:hover {
    background-color: var(--title-color);
    color: var(--white-color);
    border-color: var(--title-color);
    border-color: var(--title-color);
}

.slider-arrow.default {
    position: relative;
    --pos-x: 0;
    margin-top: 0;
}

.slider-arrow.slider-next {
    right: var(--pos-x, -120px);
    left: auto;
}

.slider-arrow:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
}

.slider-arrow:hover img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

.arrow-margin .slider-arrow {
    top: calc(50% - 30px);
}

.arrow-wrap {
    position: relative;
}

.arrow-wrap .slider-arrow {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.4);
        -ms-transform: scale(0.4);
            transform: scale(0.4);
    /* Medium Large devices */
}

@media (max-width: 1299px) {
    .arrow-wrap .slider-arrow {
        display: none;
    }
}

.arrow-wrap:hover .slider-arrow {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

  /* Extra large devices */
@media (max-width: 1500px) {
    .slider-arrow {
        --arrow-horizontal: -20px;
        --pos-x: -70px;
    }
}

  /* Medium Large devices */
@media (max-width: 1399px) {
    .slider-arrow {
        --arrow-horizontal: 40px;
        --pos-x: -17px;
    }
}

.icon-box .slider-arrow {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.icon-box .slider-arrow:not(:last-child) {
    margin-right: 8px;
}

  /* Medium devices */
@media (max-width: 991px) {
    .slider-arrow {
        --icon-size: 40px;
        line-height: 38px;
        margin-right: 40px;
        font-size: 14px;
    }
    .slider-arrow.slider-next {
        margin-right: 0;
        margin-left: 40px;
    }
    .slick-dots {
        margin: 40px 0 0 0;
    }
    .icon-box .slider-arrow {
        margin-right: 0;
    }
}

.slick-3d-active {
    margin-left: -12%;
    margin-right: -12%;
}

.slick-3d-active .slick-list {
    padding-left: 30% !important;
    padding-right: 30% !important;
}

.slick-3d-active .slick-track {
    max-width: 100% !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
    -webkit-perspective: 100px;
            perspective: 100px;
}

.slick-3d-active .slick-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 100% !important;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, -webkit-transform 1s;
    transition: transform 1s, opacity 1s;
    transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.slick-3d-active .slick-3d-next,
.slick-3d-active .slick-3d-prev,
.slick-3d-active .slick-3d-next2,
.slick-3d-active .slick-3d-prev2 {
    display: block;
}

.slick-3d-active .slick-current {
    opacity: 1;
    position: relative;
    display: block;
    z-index: 2;
}

.slick-3d-active .slick-3d-next {
    opacity: 1;
    -webkit-transform: translate3d(50%, 0, -21px);
            transform: translate3d(50%, 0, -21px);
    z-index: 1;
    -webkit-perspective: 1000px;
            perspective: 1000px;
}

.slick-3d-active .slick-3d-next2 {
    opacity: 1;
    -webkit-transform: translate3d(40%, 0, -23px);
            transform: translate3d(40%, 0, -23px);
    z-index: 0;
    -webkit-perspective: 1000px;
            perspective: 1000px;
}

.slick-3d-active .slick-3d-prev {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, -21px);
            transform: translate3d(-50%, 0, -21px);
}

.slick-3d-active .slick-3d-prev .testi-card {
    box-shadow: none;
}

.slick-3d-active .slick-3d-prev2 {
    opacity: 1;
    -webkit-transform: translate3d(-40%, 0, -23px);
            transform: translate3d(-40%, 0, -23px);
}

/*------------------- 4.00. Products  -------------------*/
.galeri-product {
    background-color: var(--very-light-gray);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;
}

.icon-btn {
    display: inline-block;
    width: var(--btn-size, 46px);
    height: var(--btn-size, 46px);
    line-height: var(--btn-size, 43px);
    font-size: var(--btn-font-size, 18px);
    background-color: transparent;
    border: 2px solid #888C97;
    color: var(--title-color);
    text-align: center;
    border-radius: 99px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    position: relative;
}

.icon-btn.th-icon i {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.icon-btn:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white-color);
}

.icon-btn:hover.th-icon i {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

.icon-btn.style2 {
    background-color: var(--theme-color);
    color: var(--white-color);
    border: none;
    border-radius: 99px;
}

.icon-btn.style2:hover {
    background-color: var(--theme-color);
}

.th-product {
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    background: var(--white-color);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.06);
    /* Medium Large devices */
}

@media (max-width: 1299px) {
    .th-product {
        padding: 25px;
    }
}

.th-product .product-title {
    font-size: 20px;
    margin: 2px 0 2px 0;
    font-weight: 600;
    /* Medium Large devices */
}

@media (max-width: 1299px) {
    .th-product .product-title {
        font-size: 18px;
    }
}

.th-product .product-title a {
    color: inherit;
}

.th-product .product-title a:hover {
    color: var(--theme-color);
}

.th-product .product-category {
    color: var(--body-color);
    margin-bottom: 0px;
    display: block;
}

.th-product .product-category:hover {
    color: var(--theme-color);
}

.th-product .product-tag {
    font-size: 14px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--base-color);
    color: white;
    padding: 0 12px;
    min-width: 60px;
    border-radius: 4px;
    z-index: 3;
    line-height: 24px;
}

.th-product .woocommerce-product-rating {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    margin-top: 3px;
    margin-bottom: -0.4rem;
}

.th-product .product-content {
    margin-bottom: -0.4rem;
}

.th-product .star-rating {
    margin: 0 auto 0 auto;
    width: 93px;
}

.th-product .price {
    display: block;
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--body-font);
}

.th-product .price del {
    margin-left: 10px;
    font-weight: 400;
    color: var(--body-color);
}

.th-product .product-img {
    --space: 0px;
    background-color: var(--smoke-color);
    overflow: hidden;
    position: relative;
    margin: 0 0 20px 0;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.th-product .product-img:before {
    --space: 0px;
    content: '';
    height: calc(100% - var(--space)*2);
    width: calc(100% - var(--space)*2);
    border-radius: inherit;
    position: absolute;
    top: var(--space);
    left: var(--space);
    background-color: rgba(39, 53, 78, .7);
    z-index: 1;
    border-radius: 8px;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.th-product .product-img img {
    width: 100%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.th-product .actions {
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 3;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.th-product .actions .icon-btn {
    --btn-size: 45px;
    line-height: 42px;
    font-size: 16px;
    border-radius: 50%;
    border-color: white;
    background-color: white;
    color: var(--base-color);
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
}

.th-product .actions .icon-btn:hover {
    color: white;
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
}

  .th-product .actions > * {
    margin: 0 var(--icon-gap-x, 5px);
}

  .th-product .actions > * > a {
    margin: 0;
}

.th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
}

.th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
    position: relative;
    top: 0;
    left: 0;
    line-height: inherit;
    margin: 0;
    font-size: 24px;
}

.th-product .tinv-wishlist a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--white-color);
    color: var(--title-color);
    border-radius: 50%;
}

.th-product .tinv-wishlist a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.th-product .add_to_cart_button.added {
    display: none;
}

.th-product .added_to_cart {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    background-color: var(--title-color);
    color: var(--white-color);
    font-size: 0;
    text-align: center;
    border-radius: 99px;
    border: none;
    margin-bottom: 10px;
}

.th-product .added_to_cart:after {
    content: "\f07a";
    position: relative;
    font-family: var(--icon-font);
    font-size: 16px;
    font-weight: 700;
}

.th-product .added_to_cart:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.th-product .action-btn {
    background-color: var(--white-color);
    font-size: 14px;
    font-family: var(--title-font);
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    padding: 13px 25px;
}

.th-product .product-actions {
    position: absolute;
    left: 50%;
    bottom: -10%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.th-product .product-actions .th-btn {
    padding: 13px 15px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.th-product .product-actions .th-btn:hover:before {
    background-color: var(--theme-color);
}

.th-product:hover .product-img img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.th-product:hover .product-img:before {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    visibility: visible;
    opacity: 1;
}

.th-product:hover .product-actions {
    visibility: visible;
    opacity: 1;
    bottom: 35%;
}

.th-product:hover .product-actions .th-btn {
    background: var(--white-color);
}

.th-product:hover .product-actions .th-btn:before {
    background: var(--theme-color);
}

.th-product:hover .actions {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.th-product:hover .actions .icon-btn {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.th-product.list-view {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    text-align: left;
    height: 100%;
    padding: 10px;
    /* Medium devices */
    background: white;
}

@media (max-width: 991px) {
    .th-product.list-view {
        gap: 10px;
    }
}

.th-product.list-view .product-img {
    --space: 0px;
    width: 100%;
    width: 50%;
    margin: 0;
}

.th-product.list-view .product-img:before {
    --space: 0px;
}

.th-product.list-view .product-category {
    font-size: 13px;
    line-height: 23px;
    margin-top: -3px;
}

.th-product.list-view .star-rating {
    margin: 5px 0 0 0;
    width: 93px;
    font-size: 12px;
}

.th-product.list-view .product-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 4px 0 13px;
}

.th-product.list-view .actions {
    --icon-gap-x: 2px;
    width: 100%;
    right: 0;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.th-product.list-view .actions .icon-btn {
    --btn-size: 45px;
    --btn-font-size: 14px;
    background-color: var(--white-color);
    color: var(--title-color);
    border: none;
}

.th-product.list-view .actions .icon-btn:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
    font-size: 20px;
}

.th-product.list-view .tinv-wishlist a {
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.th-product.list-view .added_to_cart {
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.th-product.list-view .added_to_cart:after {
    font-size: 16px;
}

.th-product.list-view .tag {
    top: 8px;
    right: 8px;
    padding: 0px 15px;
}

.product-list-area {
    margin-bottom: -24px;
}

.swiper-slide.style2 .th-product {
    box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.06);
}

#productCarousel .slick-arrow {
    top: 37.5%;
} 

.mfp-content {
    margin: 1.5rem auto;
}

.mfp-content .product-details-img {
    padding-top: 15px;
}

.mfp-content .product-about {
    padding-top: 20px;
    padding-bottom: 20px;
}

.mfp-content .container {
    position: relative;
}

.mfp-content .product-big-img {
    margin-top: 12px;
    margin-bottom: 12px;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.woosq-popup {
    border-radius: 10px;
}

.woosq-popup .product_meta > span > a:after,
.woosq-popup .product_meta > span > span:after {
    display: none;
}

.woosq-product > .product .summary {
    display: grid;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
}

.woosq-product .thumbnails .slick-list {
    display: block;
}

.woosq-product .thumbnails .slick-dots li button {
    width: 12px;
    height: 12px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    background-color: var(--theme-color);
    opacity: 0.4;
}

.woosq-product .thumbnails .slick-dots li button:before {
    display: none;
}

.woosq-product .thumbnails .slick-dots li.slick-active button {
    opacity: 1;
}

.woosq-product .tinv-wraper {
    display: none;
}

.th-sort-bar {
    padding: 0;
    margin: 0 0 35px 0;
    background-color: transparent;
    border-radius: 0px;
}

.th-sort-bar .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 15px;
}

.th-sort-bar select {
    height: 50px;
    border: 0;
    background-color: transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 154px;
    font-size: 16px;
    padding: 0 8px;
    margin: 0;
    color: var(--title-color);
    background-position: right 0px center;
}

.th-sort-bar .woocommerce-result-count {
    padding-left: 0;
    margin-bottom: 0;
    color: var(--theme-color);
}

.th-sort-bar .sorting-filter-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
}

.th-sort-bar .nav {
    border: 1px solid #E9F6F9;
    border-radius: 4px;
    padding: 4px;
}

.th-sort-bar .nav a {
    display: inline-block;
    height: 32px;
    width: 32px;
    line-height: 32px;
    border: 0;
    background-color: transparent;
    text-align: center;
    position: relative;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--body-color);
    border-radius: 5px;
}

.th-sort-bar .nav a.active {
    color: var(--white-color);
    background: var(--theme-color);
}

.product-thumb-area {
    position: relative;
    margin-right: 10px;
}

.product-thumb-area .product-thumb-tab {
    position: absolute;
    top: 0;
    left: 0;
}

.product-thumb-tab {
    --thumb: 120px;
    --gap: 10px;
    max-width: var(--thumb);
    margin-left: calc(0px - var(--thumb)/2);
    position: relative;
    z-index: 3;
    display: grid;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    height: 100%;
}

.product-thumb-tab .tab-btn {
    background-color: var(--white-color);
    cursor: pointer;
    height: var(--thumb);
    width: var(--thumb);
    padding: var(--gap);
}

.product-thumb-tab .tab-btn img {
    max-width: 100%;
}

.product-thumb-tab .tab-btn:not(:last-of-type) {
    margin-bottom: 20px;
}

.product-thumb-tab .indicator {
    position: absolute;
    top: calc(var(--pos-y) + var(--gap));
    left: calc(var(--pos-x) + var(--gap));
    width: calc(var(--width-set) - var(--gap)*2);
    height: calc(var(--height-set) - var(--gap)*2);
    border: 2px solid var(--theme-color);
    pointer-events: none;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.product-big-img {
    background-color: var(--smoke-color);
    text-align: center;
    overflow: hidden;
    border-radius: 16px;
}

.product-big-img .img {
    width: 100%;
    border-radius: 16px;
}

.product-big-img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.product-big-img .slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 0;
}

.product-big-img .slick-dots {
    margin: -11px 0 0 0 !important;
    -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
            transform: translateY(-30px);
    --border-color: #c0c0c0;
}

.img-magnifier-container {
    position: relative;
}

.img-magnifier-glass {
    position: absolute;
    box-shadow: inset 0 10px 18px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: none;
    width: 200px;
    height: 200px;
}

.magnify {
    position: relative;
    cursor: none;
}

.magnify .magnifier {
    height: 180px;
    width: 180px;
    position: absolute;
    z-index: 20;
    box-shadow: inset 0 10px 18px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background-size: 700%;
    background-repeat: no-repeat;
    margin-left: -90px !important;
    margin-top: -90px !important;
    pointer-events: none;
    display: none;
}

.magnify .magnified {
    display: block;
    z-index: 10;
    margin: auto;
    width: 100%;
    height: 100%;
}

.magnify img {
    width: 100%;
    height: 100%;
}

.quantity {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.quantity > .screen-reader-text {
    display: inline-block;
    font-weight: 600;
    color: var(--title-color);
    font-family: var(--title-font);
    margin: 0;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    margin-right: 10px;
}

.quantity .qty-btn,
.quantity .qty-input {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: none;
    border-right: none;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    color: var(--body-color);
    font-size: 18px;
    font-weight: 600;
}

.quantity .qty-btn:last-child,
.quantity .qty-input:last-child {
    border-right: none;
}

.quantity .qty-btn {
    font-size: 16px;
}

.product_meta {
    font-weight: 700;
    font-size: 16px;
    font-family: var(--body-font);
    margin: 35px 0 0 0;
}

.product_meta > span {
    display: block;
    margin-bottom: 5px;
    color: var(--title-color);
    font-weight: bold;
}

.product_meta > span:last-child {
    margin-bottom: 0;
}

.product_meta > span a {
    color: inherit;
}

.product_meta > span a:hover {
    color: var(--theme-color);
}

.product_meta > span > a,
.product_meta > span > span {
    position: relative;
    color: var(--body-color);
    font-weight: 400;
}

.product_meta > span > a:after,
.product_meta > span > span:after {
    content: ",";
    margin-right: 5px;
}

.product_meta > span > a:last-child:after,
.product_meta > span > span:last-child:after {
    display: none;
}

.product_meta > span > a:first-child,
.product_meta > span > span:first-child {
    margin-left: 7px;
}

.product-tab-style1 {
    border-bottom: 1px solid var(--smoke-color);
    margin: 95px auto 40px auto;
    padding-bottom: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
}

.product-tab-style1 .th-btn.active {
    background-color: var(--title-color);
}

.product-tab-style2 {
    border-bottom: 1px solid #e4e4e4;
    margin: 95px 0 40px 0;
}

.product-tab-style2 li {
    margin: 0 45px 0 0;
}

.product-tab-style2 li:last-child {
    margin-right: 0;
}

.product-tab-style2 a {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    line-height: 1;
    padding: 0 0 17px 0;
    text-transform: capitalize;
}

.product-tab-style2 a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background-color: var(--theme-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.product-tab-style2 a.active:before {
    width: 100%;
}

#productTabContent {
    margin-bottom: -10px;
}

#additional_information {
    margin-bottom: 40px;
}

.product-inner-list > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.product-inner-list li {
    position: relative;
    padding-left: 15px;
}

.product-inner-list li:before {
    content: "-";
    position: absolute;
    left: 0;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 8px;
}

.share-title i {
    color: var(--theme-color);
}

.summary-content .product-title,
.product-about .product-title {
    margin: 0 0 5px 0;
}

.summary-content .product_title,
.product-about .product_title {
    margin-bottom: 20px !important;
}

.summary-content > .price,
.product-about > .price {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 800;
    color: var(--theme-color);
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-bottom: 5px;
    margin-top: -0.2em;
}

.summary-content > .price del,
.product-about > .price del {
    color: var(--gray-color);
    font-weight: 500;
    margin-left: 15px;
}

.summary-content .woocommerce-product-rating,
.summary-content .product-rating,
.product-about .woocommerce-product-rating,
.product-about .product-rating {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 5px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    top: 2px;
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    margin-bottom: 15px;
}

.summary-content .woocommerce-product-rating .star-rating,
.summary-content .product-rating .star-rating,
.product-about .woocommerce-product-rating .star-rating,
.product-about .product-rating .star-rating {
    width: 80px;
    font-size: 12px;
    margin-right: 8px;
}

.summary-content .woocommerce-review-link,
.product-about .woocommerce-review-link {
    color: var(--body-color);
}

.summary-content .checklist,
.product-about .checklist {
    margin: 29px 0 29px 0;
}

.summary-content .actions,
.product-about .actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 15px;
    margin: 35px 0 25px 0;
}

.summary-content .actions .th-btn,
.product-about .actions .th-btn {
    padding: 17px 44.5px;
}

.summary-content .actions .th-btn .btn-icon,
.product-about .actions .th-btn .btn-icon {
    padding: 10.5px 15px 10.5px 15px;
}

.summary-content .actions .icon-btn,
.product-about .actions .icon-btn {
    --btn-size: 60px;
    border-color: var(--theme-color);
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 99px;
}

.summary-content .actions .icon-btn:hover,
.product-about .actions .icon-btn:hover {
    background-color: var(--title-color);
    border-color: var(--title-color);
}

.summary-content .share,
.product-about .share {
    margin-top: 25px;
}

.summary-content .th-social a,
.product-about .th-social a {
    --icon-size: 40px;
    line-height: 38px;
    font-size: 14px;
    border: 1px solid var(--th-border-color);
    border-radius: 0;
}

.summary-content .th-social a:hover,
.product-about .th-social a:hover {
    border-color: var(--theme-color);
}

.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
    width: 56px;
    height: 56px;
    line-height: 54px;
    display: inline-block;
    border-radius: 99px;
    background-color: var(--theme-color);
    color: var(--white-color);
    border: none;
}

.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
    position: relative;
    top: 0;
    left: 0;
    line-height: inherit;
    margin: 0;
    font-size: 24px;
}

.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:hover,
.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:hover,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:hover,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:hover {
    background-color: var(--title-color);
}

.summary-content .tinv-wishlist a,
.product-about .tinv-wishlist a {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 0;
}

.summary-content .tinv-wishlist a:hover,
.product-about .tinv-wishlist a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.summary-content .quantity,
.product-about .quantity {
    position: relative;
}

.summary-content .quantity:after,
.product-about .quantity:after {
    content: '';
    height: 100%;
    width: 1px;
    background-color: var(--title-color);
    position: absolute;
    top: 0;
    left: 55px;
}

.summary-content .quantity .qty-input,
.product-about .quantity .qty-input {
    width: 101px;
    height: 60px;
    background-color: var(--title-color);
    color: var(--white-color);
    padding: 0 21px;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    border-radius: 48px;
}

.summary-content .quantity .qty-btn,
.product-about .quantity .qty-btn {
    color: var(--white-color);
    background-color: transparent;
    position: absolute;
    right: 21px;
    height: auto;
    width: auto;
    border: none;
    font-size: 14px;
    line-height: 16px;
}

.summary-content .quantity .quantity-minus,
.product-about .quantity .quantity-minus {
    bottom: 12px;
    color: rgba(255, 255, 255, 0.2);
}

.summary-content .quantity .quantity-plus,
.product-about .quantity .quantity-plus {
    top: 12px;
}

.woocommerce-Reviews .th-post-comment {
    border-radius: 20px;
}

.woocommerce-Reviews .th-post-comment .text {
    margin-bottom: -0.5em;
}

.woocommerce-Reviews .th-comments-wrap {
    padding: 0;
    margin-right: 0 !important;
    box-shadow: none;
    background-color: transparent;
}

.woocommerce-Reviews .th-comment-form {
    box-shadow: none;
    margin-right: 0 !important;
    margin-top: 28px;
    margin-bottom: 40px;
}

.woocommerce-Reviews .th-comment-form input,
.woocommerce-Reviews .th-comment-form .form-control {
    background-color: var(--white-color);
}

.woocommerce-Reviews .th-comment-form .blog-inner-title {
    margin-bottom: 10px;
}

.woocommerce-Reviews .comment-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0 24px;
    margin: -12px !important;
    margin-bottom: 28px !important;
}

.woocommerce-Reviews .comment-list li {
    width: 50%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .woocommerce-Reviews .comment-list li {
        width: 100%;
    }
}

.woocommerce-Reviews .th-post-comment {
    border: 1px solid var(--th-border-color) !important;
    padding: 40px !important;
    box-shadow: 0px 4px 30px rgba(1, 15, 28, 0.06);
    margin: 12px;
    border-radius: 10px;
}

.woocommerce-Reviews .th-post-comment .name {
    margin-bottom: 3px;
}

.woocommerce-Reviews .th-post-comment .commented-on {
    margin-bottom: 12px;
}

  /* Medium devices */
@media (max-width: 991px) {
    .woocommerce-Reviews .comment-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

#description {
    margin-bottom: 30px;
}

.product-details .th-comments-wrap {
    margin-top: 0;
}

.product-details .border-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.product-details .border-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 80px;
    background-color: var(--theme-color);
}

.product-inner-title {
    font-size: 32px;
    border-bottom: 1px solid var(--th-border-color);
    padding: 0 0 7px 0;
    margin: 0 0 30px 0;
}

.related-product-wrapper {
    padding-top: 115px;
}

  /* Medium Large devices */
@media (max-width: 1299px) {
    .product-thumb-tab {
        --thumb: 100px;
        margin-left: -40px;
    }
    .product-thumb-area {
        margin-right: 0;
    }
}

  /* Large devices */
@media (max-width: 1199px) {
    .th-sort-bar select {
        min-width: auto;
    }
    .product-tab-style1 {
        margin: 55px 0 40px 0;
    }
    .summary-content,
    .product-about {
        padding-left: 0;
    }
}

  /* Medium devices */
@media (max-width: 991px) {
    .product-big-img {
        margin-bottom: 40px;
    }
    .product-thumb-tab {
        margin-left: -10px;
    }
    .th-product-box.list-view .product-img {
        max-width: 150px;
    }
    .th-sort-bar .row {
        --bs-gutter-x: 20px;
    }
    .th-sort-bar .nav a:last-child {
        margin-right: 0;
        padding-right: 0;
    }
    .th-sort-bar .nav a:last-child:before {
        display: none;
    }
    .woosq-product > .product .thumbnails {
        max-height: 400px;
        min-height: 200px;
        padding: 10px;
    }
}

  /* Small devices */
@media (max-width: 767px) {
    .th-sort-bar {
        text-align: center;
        padding: 10px 15px 15px 15px;
    }
    .th-sort-bar .nav {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .th-sort-bar select {
        margin: 0 auto;
    }
    .th-sort-bar .woocommerce-result-count {
        padding-left: 0;
    }
    .th-product-box.list-view .product-img {
        max-width: 130px;
    }
    .th-product-box.list-view .actions {
        --btn-size: 30px;
        --btn-font-size: 10px;
        --icon-gap-x: 2px;
    }
}

  /* Extra small devices */
 @media (max-width: 575px) {
    .product-about .actions {
        gap: 15px 15px;
    }
    .product-thumb-tab {
        --thumb: 74px;
        --gap: 6px;
    }
    .product-thumb-tab .tab-btn:not(:last-of-type) {
        margin-bottom: 10px;
    }
}

  /* Extra small devices */
@media (max-width: 375px) {
    .th-product.list-view .product-img {
        max-width: 130px;
    }
    .th-product.list-view .product-content {
        padding: 0 15px;
    }
}

.productSlide {
    position: relative;
    /* Medium devices */
}

@media (max-width: 991px) {
    .productSlide {
        margin-bottom: 30px;
    }
}

.productSlide .product-tag {
    font-size: 14px;
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: var(--theme-color);
    text-transform: uppercase;
    color: var(--white-color);
    padding: 0 12px;
    border-radius: 8px;
    min-width: 60px;
    z-index: 3;
    line-height: 24px;
}

.product-thumb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.product-thumb .tab-btn {
    border: 1px solid var(--title-color);
    width: 60px;
    height: 60px;
    /* Extra small devices */
}

@media (max-width: 375px) {
    .product-thumb .tab-btn {
        width: 40px;
        height: 40px;
    }
}

.product-thumb .tab-btn.active {
    border: 1px solid var(--theme-color);
}

.product-thumb-wrap {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    /* Large devices */
    /* Medium devices */
}

@media (max-width: 1199px) {
    .product-thumb-wrap {
        left: 10px;
        bottom: 10px;
    }
}

@media (max-width: 991px) {
    .product-thumb-wrap {
        left: 20px;
        bottom: 20px;
    }
}

.p-cta{
    padding: 70px 60px;
}

.cta-container {
    background: var(--dark-gray);
    color: white;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .p-cta {
        padding: 60px 40px;
    }
    .cta-container {
        border-radius: 0 !important;
    }
}

.cta-container .bg-image {
    position: absolute;
    filter: grayscale(1);
    z-index: 0;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.cta-container .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(90deg,
        rgba(15,53,103, 0.9) 0%,
        rgba(15,53,103, 0.9) 50%,
        rgba(15,53,103, 0.5) 100%
    );
}

.cta-container .content {
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    font-weight: 600;
}

.cta-container p {
    font-size: 0.9rem;
}

/*------------------- 4.00. Contact  -------------------*/
/* Contact Page ---------------------------------- */
.contact-form {
    background-color: var(--white-color);
    box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.25);
    border-radius: 16px;
    padding: 40px;
    /* Medium Large devices */
}

@media (max-width: 1299px) {
    .contact-form {
        padding: 30px;
    }
}

.contact-form select::-moz-placeholder,
.contact-form .form-control::-moz-placeholder,
.contact-form .form-select::-moz-placeholder,
.contact-form textarea::-moz-placeholder,
.contact-form input::-moz-placeholder {
    color: var(--body-color);
}

.contact-form select::-webkit-input-placeholder,
.contact-form .form-control::-webkit-input-placeholder,
.contact-form .form-select::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder,
.contact-form input::-webkit-input-placeholder {
    color: var(--body-color);
}

.contact-form select:-ms-input-placeholder,
.contact-form .form-control:-ms-input-placeholder,
.contact-form .form-select:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder,
.contact-form input:-ms-input-placeholder {
    color: var(--body-color);
}

.contact-form select::-webkit-input-placeholder, .contact-form .form-control::-webkit-input-placeholder, .contact-form .form-select::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder, .contact-form input::-webkit-input-placeholder {
    color: var(--body-color);
}

.contact-form select::-moz-placeholder, .contact-form .form-control::-moz-placeholder, .contact-form .form-select::-moz-placeholder, .contact-form textarea::-moz-placeholder, .contact-form input::-moz-placeholder {
    color: var(--body-color);
}

.contact-form select:-ms-input-placeholder, .contact-form .form-control:-ms-input-placeholder, .contact-form .form-select:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder, .contact-form input:-ms-input-placeholder {
    color: var(--body-color);
}

.contact-form select::-ms-input-placeholder, .contact-form .form-control::-ms-input-placeholder, .contact-form .form-select::-ms-input-placeholder, .contact-form textarea::-ms-input-placeholder, .contact-form input::-ms-input-placeholder {
    color: var(--body-color);
}

.contact-form select::placeholder,
.contact-form .form-control::placeholder,
.contact-form .form-select::placeholder,
.contact-form textarea::placeholder,
.contact-form input::placeholder {
    color: var(--body-color);
}

.contact-form .nice-select .option {
    color: var(--title-color);
}

.contact-form .nice-select .option.selected {
    color: var(--theme-color) !important;
    background: var(--theme-color) !important;
}

.contact-form .nice-select .option.selected.focus {
    color: #fff !important;
    background: var(--theme-color) !important;
}

.contact-form .nice-select .option:hover, .contact-form .nice-select .option.focus {
    background: var(--theme-color) !important;
    color: #fff !important;
}

.contact-form .nice-select.open .list {
    border-bottom: 3px solid var(--theme-color);
}

.contact-form i {
    color: #888C97;
}

.contact-form textarea.form-control,
.contact-form textarea {
    min-height: 159px;
    padding-top: 16px;
    padding-bottom: 17px;
}

.contact-form .nice-select:after {
    border-bottom: 1px solid var(--body-color);
    border-right: 1px solid var(--body-color);
}

.contact-form .th-btn {
    padding: 19.5px 42px;
}

.contact-form .th-btn i {
    color: var(--white-color);
}

.contact-form.style2 textarea.form-control,
.contact-form.style2 textarea {
    min-height: 130px;
}

.contact-form.style2 select,
.contact-form.style2 .form-control,
.contact-form.style2 .form-select,
.contact-form.style2 textarea,
.contact-form.style2 input {
    height: 64px;
}

.contact-form2 {
    background-color: var(--white-color);
    border-radius: 16px 16px 0 0;
    padding: 40px;
    /* Extra small devices */
}

@media (max-width: 575px) {
    .contact-form2 {
        padding: 30px;
    }
}

.contact-form2 .nice-select .option {
    color: var(--title-color);
}

.contact-form2 .nice-select .option.selected {
    color: var(--theme-color) !important;
    background: var(--theme-color) !important;
    font-weight: 400;
}

.contact-form2 .nice-select .option.selected.focus {
    color: #fff !important;
    background: var(--theme-color) !important;
}

.contact-form2 .nice-select .option:hover, .contact-form2 .nice-select .option.focus {
    background: var(--theme-color) !important;
    color: #fff !important;
}

.contact-form2 .nice-select.open .list {
    border-bottom: 3px solid var(--theme-color);
}

.form-btn-wrapp {
    background-color: var(--theme-color);
    border-radius: 0px 0px 16px 16px;
    padding: 16px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

@media (max-width: 480px) {
    .form-btn-wrapp {
        display: block;
    }
}

@media (max-width: 480px) {
    .form-btn-wrapp .th-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

.form-btn-wrapp .th-btn:hover {
    color: var(--white-color);
}

.form-btn-wrapp .th-btn:hover img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

.form-btn-wrapp .contact-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
}

.form-btn-wrapp .contact-info_link {
    color: var(--white-color);
    margin-bottom: 0;
}

.form-btn-wrapp .contact-info_link a {
    color: inherit;
}

.about-contact-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    border: 1px solid #E1E4E6;
    border-radius: 8px;
    padding: 24px 24px 18px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    /* Extra small devices */
}

@media (max-width: 375px) {
    .about-contact-grid {
        gap: 14px;
        padding: 15px 15px 18px;
    }
}

.about-contact-grid:not(:last-child) {
    margin-bottom: 30px;
}

.about-contact-grid .about-contact-icon {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 70px;
    height: 70px;
    line-height: 68px;
    text-align: center;
    background: var(--dark-gray);
    border-radius: 50%;
    color: white;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    /* Extra small devices */
}

@media (max-width: 375px) {
    .about-contact-grid .about-contact-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

.about-contact-grid .about-contact-icon img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

.about-contact-grid .box-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: -0.3em;
    margin-bottom: 2px;
}

.about-contact-grid .about-contact-details-text {
    color: var(--title-color);
    margin-bottom: 0;
}

.about-contact-grid .about-contact-details-text a:not(:hover) {
    color: initial;
}

.about-contact-grid:hover .about-contact-icon {
    background: var(--base-color);
}

.contact-form-area {
    padding-top: 152px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .contact-form-area {
        padding-top: 0px;
    }
}

.contact-map {
    position: relative;
    line-height: 0px;
    border-radius: 30px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .contact-map {
        margin-bottom: 40px;
    }
}

.contact-map .contact-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    cursor: pointer;
}

.contact-map .contact-icon i {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 24px;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 50%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .contact-map .contact-icon i {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}

.contact-map .contact-icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    z-index: 3;
}

.contact-map .contact-icon img {
    -webkit-animation: jumpAni 2s ease-in-out infinite alternate;
            animation: jumpAni 2s ease-in-out infinite alternate;
}

.contact-map .contact-icon:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0;
    margin: auto;
    top: 90%;
    width: 38px;
    height: 18px;
    border-radius: 50%;
    background: rgba(13, 13, 12, 0.2);
    z-index: -1;
}

.contact-map .contact-icon:before {
    content: "";
    position: absolute;
    left: -40px;
    right: 0;
    margin: auto;
    top: 50%;
    width: 130px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--white-color);
    z-index: -1;
}

@-webkit-keyframes location-anim {
    0% {
        -webkit-transform: rotate(5deg) translate(5px, 5px);
            transform: rotate(5deg) translate(5px, 5px);
    }
    100% {
        -webkit-transform: rotate(5deg) translate(-5px, -5px);
            transform: rotate(5deg) translate(-5px, -5px);
    }
}

@keyframes location-anim {
    0% {
        -webkit-transform: rotate(5deg) translate(5px, 5px);
            transform: rotate(5deg) translate(5px, 5px);
    }
    100% {
        -webkit-transform: rotate(5deg) translate(-5px, -5px);
            transform: rotate(5deg) translate(-5px, -5px);
    }
}

@-webkit-keyframes location-anim2 {
    0% {
        -webkit-transform: scale(1);
            transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.5);
            transform: scale(0.5);
    }
}

@keyframes location-anim2 {
    0% {
        -webkit-transform: scale(1);
            transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.5);
            transform: scale(0.5);
    }
}

.contact-map iframe {
    width: 100%;
    height: 365px;
    border-radius: 30px;
}

.contact-map.style2 iframe {
    width: 100%;
    height: 398px;
    border-radius: 0;
}

.contact-map.style3 iframe {
    border-radius: 16px;
}

.contact-text {
    max-width: 369px;
    font-size: 18px;
}

.contact-btn {
	position: fixed;
	bottom: 65px;
	left: 20px;
	z-index: 99999;
	display: flex;
	gap: 10px;
}

.button-33 {
	background-color: #39B54A;
	border-radius: 30px;
	color: white;
	cursor: pointer;
	display: inline-block;
	padding: 5px 25px;
	text-align: center;
	text-decoration: none;
	transition: all 250ms;
	border: 0;
	font-size: 14px;
	font-weight: 500;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}

.button-33:hover {
	box-shadow: rgba(57, 181, 74, 0.35) 0 -25px 18px -14px inset,
	  rgba(57, 181, 74, 0.25) 0 1px 2px, rgba(57, 181, 74, 0.25) 0 2px 4px,
	  rgba(57, 181, 74, 0.25) 0 4px 8px, rgba(57, 181, 74, 0.25) 0 8px 16px,
	  rgba(57, 181, 74, 0.25) 0 16px 32px;
	transform: scale(1.05) rotate(-1deg);
	color: white;
}