:root {
    --color-primary: #19233E;
    --color-primary-rgb: 25, 35, 62;
    --color-primary-hover: #967e59;
    --color-accent: #967e59;
    --color-accent-hover: #27241b;
    --color-text: #7A7A7A;
    --border-color: #d1d1d6;
    --border-radius: 7px;
}
html {
    height: 100%;
}
body {
    font-family: "Playfair Display", serif;
    text-rendering: optimizelegibility;
    color: var(--color-primary);
    /*background-color: #f7f7f7;*/
    font-size: 16px;
    top: 0 !important;
}
a {
    color: var(--color-primary);
    text-decoration: none;
}
a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline 1px line;
}
img {
    height: auto;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f2f6fa;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b8b8b8;
}
/* scrollbar */

::-moz-selection { /* Code for Firefox */
    color: #ffffff;
    background: rgba(var(--color-primary-rgb), 0.5);
}
  
::selection {
    color: #ffffff;
    background: rgba(var(--color-primary-rgb), 0.5);
}

.great-vibes {
    font-family: "Great Vibes", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
  }
  


.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
    font-family: "Albert Sans", sans-serif;
    color: var(--color-primary);
    text-transform: none;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px;
}

.page-wrapper {
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}
.bg-smoke {
    background-color: #fffaeb;
}

.btn {
    padding: 8px 25px;
    height: 46px;
    border-radius: 30px;
    font-size: 15px;
    line-height: 25px;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: none;

    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary-hover);
    --bs-btn-hover-border-color: #var(--color-primary-hover);
    --bs-btn-active-bg: #var(--color-primary-hover);
    --bs-btn-active-border-color: #var(--color-primary-hover);
    --bs-btn-disabled-bg: var(--color-primary);
    --bs-btn-disabled-border-color: var(--color-primary);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    box-shadow: none;
}

.btn-hover {
    position: relative;
    border: none;
    overflow: hidden;
}
.btn-hover span{
    z-index: 1;
    position: relative;
}

.btn-hover:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: -5%;
    border-radius: 30px;
    background-color: var(--color-accent);
    -webkit-transition: .5s ease;
    transition: .5s ease;
    display: block;
    z-index: 0;
}
.btn-hover:hover {
    background-color: var(--color-primary);
}
.btn-hover:hover:after {
    width: 110%;
}





.btn-hover-outline {
    position: relative;
    border: none;
    overflow: hidden;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 30px;
}
.btn-hover-outline span{
    z-index: 1;
    position: relative;
}

.btn-hover-outline:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: -5%;
    border-radius: 30px;
    background-color: var(--color-accent);
    -webkit-transition: .5s ease;
    transition: .5s ease;
    display: block;
    z-index: 0;
}
.btn-hover-outline:hover {
    color: #ffffff;
}
.btn-hover-outline:hover:after {
    width: 110%;
}


.btn-secondary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: none;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    box-shadow: none;
}

/* KVKK & GDPR cookie consent*/
.cc-notification {
    position: fixed;
    z-index: 100;
    opacity: 0.8;
    border-radius: 4px;
    background-color: rgb(0, 0, 0);
    z-index: 2147483647;
    left: 10px;
    right: 10px;
    bottom: 18px;
    padding: 16px;
    padding-top: 24px;
    padding-right: 24px;
  }
  .cc-notification.active {
    display: block;
  }
  .cc-notification .wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }
  .cc-notification .wrapper span.cc-text {
    font-size: 14px;
    color: #ffffff;
  }
  .cc-notification .wrapper span.cc-text a {
    text-decoration: underline;
    color: #ffffff;
  }
  .cc-notification .wrapper .close {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(255,255,255,.75);
    cursor: pointer;
    font-size: 5px;
    margin-right: 0;
    padding: 5px;
    background: transparent;
    border: none;
  }
  .cc-notification .wrapper .close svg{
    width: 26px;
    height: 26px;
    fill: currentColor;
  }

@media (min-width: 768px) {
    .cc-notification {
        background-clip: padding-box;
        bottom: 16px;
        left: 16px;
        max-width: 400px;
        width: 400px;
    }
}
  
/* KVKK & GDPR cookie consent*/


/* top bar */
.topbar {
    background: #ffffff;
    padding: 7px 0;
    color: var(--color-text);
    z-index: 2;
    border-bottom: 1px solid #E9E8E4;
}
.topbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.topbar li {
    display: inline-block;
    font-size: 13px;
    margin-right: 25px;
}
.topbar li:last-child {
    margin-right: 0;
}
.topbar li a {
    font-size: 14px;
    line-height: 32px;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .topbar {
        font-size: 13px;
        padding: 7px 5px;
    }
}

/* top bar */
.op-0 {
    opacity: 0;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.page-header {
    background-color: #ffffff;
    box-shadow: 0 5px 15px 0 rgb(199 199 199 / 65%);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    position: sticky;
}

.sticky-header .page-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    overflow: hidden;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    opacity: 1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.header-logo {
    padding-top: 15px;
    padding-bottom: 15px;
}
.header-logo img {
    max-height: 60px;
}


.mobile-header {
    background-color: #ffffff;
    padding-top: 7px;
    padding-bottom: 7px;
    box-shadow: 0 0 15px 0 rgb(199 199 199 / 65%);
}
.mobile-header .header-logo {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 15px;
    z-index: 1;
}
.mobile-header .header-logo img {
    max-height: 45px;
    max-width: 100%;
}


.fade-scale {
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  
  .fade-scale.show {
    opacity: 1;
    transform: scale(1);
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }


.mobile-menu-toggler {
    background: none;
    border: none;
}
.mobile-menu-toggler:active,
.mobile-menu-toggler:focus {
    outline: 0;
}
  
.mobile-menu-toggler .icon-bar {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px 0;
    transition: all 0.2s;
    background: #333333;
}


.main-menu nav{
    font-weight: 400;
    display: flex;
    padding: 0;
}
.main-menu {
    font-size: 16px;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    flex-direction: row;
    min-height: 55px;
    align-content: center;
    align-items: center;
    position: relative;
}
.main-menu li {
    flex: 1 1 auto;
    position: relative;
    padding: 6px 12px;
}
.main-menu li a {
    position: relative;
    padding: 0;
    color: var(--color-primary);
    transition: all .25s ease-in-out;
    font-size: 18px;
    white-space: inherit;
    text-align: center;
}
.main-menu li a .nav-title{
    font-weight: 400;
    width: 100%;
    height: 100%;
}

.main-menu .nav-item .nav-title:before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-accent);
    bottom: 0;
    position: absolute;
    -webkit-transition: width .3s ease-in;
    -moz-transition: width .3s ease-in;
    transition: width .3s ease-in;
}
.main-menu .nav-item:hover .nav-title:before, .main-menu .nav-item.active .nav-title:before {
    width: 100%;
}
.main-menu li:hover, .main-menu li:hover a, .main-menu .nav-item.active a{
    color: var(--color-accent);
}

.main-menu .dropdown-menu {
    background-color: #ffffff;
    margin-top: -2px;
    border-radius: 0;
    padding: 0;
    border-color: #f1f2f3;
    margin-top: 5px;
}
  

.main-menu li .dropdown-menu a {
    color: #ffffff;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 500;
    text-transform: inherit;
}
.main-menu li .dropdown-menu a:hover {
    color: var(--color-primary);
}
  
.main-menu li .dropdown-menu {
    visibility: hidden;
    overflow: hidden;
    transition: 0.3s;
    border: none;
    border-radius: var(--border-radius);
    background: #ffffff;
    box-shadow:0 3px 10px 0px rgba(125,125,125,0.25);
    transform: scaleY(0);
    transform-origin: 0 0;
    padding: 15px;
    min-width: 250px;
}
.main-menu li .dropdown-menu .dropdown-item {
    text-align: left;
    color: var(--color-accent);
}
.main-menu li .dropdown-menu .dropdown-item:focus,
.main-menu li .dropdown-menu .dropdown-item:hover {
    color: var(--color-primary);
    background-color: transparent;
}
.main-menu li .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
}
.main-menu li .dropdown-menu.fade-up {
    top: 180%;
}
.main-menu li:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    overflow: visible;
    transform: scaleY(1);
    transition: all 0.4s ease-in-out;
}
  
.main-menu li .dropdown-toggle:after {
    margin-left: 5px;
    margin-top: 5px;
}
.main-menu li .dropdown-menu .dropdown-menu {
    margin-left: 0;
    margin-right: 0;
}
.main-menu li .dropdown-menu li {
    position: relative;
}

.btn-contact {
    border-radius: 50%;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

.btn-contact:hover {
    background-color: var(--color-primary);
    color: var(--color-accent);
}
.btn-contact svg{
    fill: currentColor;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in-out;
}
.btn-contact:hover svg{
    transform: rotate(45deg);
}


@media all and (min-width: 992px) {
	.dropdown-menu li{ position: relative; 	}
	.nav-item .submenu{ 
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}
	.nav-item .submenu-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover > .submenu{ display: block; }
}	
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu{
      margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
  }
}




.offcanvas-mobile-menu {
    padding: 0 15px;
    max-width: 80%;
}
.offcanvas-mobile-menu .custom-close {
    top: 25px !important;
    right: 35px !important;
}
.offcanvas-mobile-menu .offcanvas-header {
    padding-bottom: 10px;
    padding-left: 5px;
    border-bottom: 1px dashed #dedede;
}
.offcanvas-mobile-menu .offcanvas-header .offcanvas-title {
    font-size: 18px;
}
.offcanvas-mobile-menu .offcanvas-header .logo {
    max-height: 40px;
}
.offcanvas-mobile-menu .offcanvas-body {
    padding: 10px 5px;
}

.mobile-menu {
    display: block;
    padding: 0;
    list-style: none;
}
.mobile-menu li.nav-item {
    display: block;
}
.mobile-menu li.nav-item a {
    flex-wrap: inherit;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    -ms-flex-wrap: wrap;
    text-align: center;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}
.mobile-menu li.nav-item a i {
    margin-right: 10px;
}
.mobile-menu li.nav-item a span.nav-title {
    text-align: left;
    padding-left: 10px;
    font-size: 16px;
}
  
.mobile-menu li.has-sub-category a.sub-category-toggle:after {
    margin-left: auto;
    content: "+";
    font-weight: 600;
}
.mobile-menu li.has-sub-category a.sub-category-toggle.show:after {
    content: "--";
}
  
.mobile-menu li.has-sub-category .sub-category-list {
    display: none;
    transition: all 0.2s ease-in-out;
    background: #fff;
    padding: 0;
    margin-left: 10px;
}

.mobile-search-box {
    margin: 15px 0;
}
.mobile-search-box form {
    color: #a9a9a9;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    transition: all 500ms;
}
.mobile-search-box input {
    border-radius: 0;
    font-size: 14px;
    padding: 8px 36px 8px 8px;
    width: 100%;
    border: 1px solid #e3e3e3;
}
.mobile-search-box button {
    position: absolute;
    background: transparent;
    border: 0 none;
    color: #e3e3e3;
    height: 44px;
    width: 40px;
    padding: 0;
    right: 0;
    top: 0;
    transition: all 300ms ease-in 0s;
    text-align: center;
    outline: 0;
}
.mobile-search-box button .icon {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.offcanvas-contact {
    padding: 0 15px;
    background: var(--color-primary);
    color: #cccccc;
    width: 450px;
}
.offcanvas-contact.offcanvas-end {
    width: 450px;
}
.offcanvas-contact .custom-close {
    top: 25px !important;
    right: 35px !important;
    background: var(--color-accent);
    width: 10px;
    height: 10px;
    padding: 10px;
}
.offcanvas-contact .custom-close:before, .offcanvas-contact .custom-close:after {
    background-color: #ffffff;
}
.offcanvas-contact .offcanvas-header {
    height: 80px;
}
.offcanvas-contact .offcanvas-header .offcanvas-title {
    visibility: hidden;
}
.offcanvas-contact .logo {
    max-height: 45px;
    margin-bottom: 20px;
}
.offcanvas-contact .heading {
    font-family: "Inter", serif;
    font-size: 18px;
    line-height: 28px;
    color: #CCCCCC;
}


.icon-box-item {
    display: flex;
    flex-direction: flex;
    align-items: center;
    justify-content: start;
    text-align: left;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
    border-radius: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    transition: 0.4s;
    margin-bottom: 30px;
}

.icon-box-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.icon-box-item .icon-box-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-right: 25px;
}
.icon-box-item .icon-box-text {
    display: flex;
    justify-content: left;
    flex-direction: column;
}
.icon-box-item .icon-box-text .title{
    display: flex;
    align-items: left;
    flex-direction: column;
    transition: 0.4s;
    font-family: "Manrope", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 0;
}
.icon-box-item .icon-box-text .text, .icon-box-item .icon-box-text .text a{
    font-family: "Inter", serif;
    font-size: 18px;
    line-height: 26px;
    color: #CCCCCC;
    margin: 0;
    text-decoration: none;
}


.contact-page .icon-box-item .icon-box-text .title{
    color: var(--color-text);
}
.contact-page .icon-box-item .icon-box-text .text, .contact-page .icon-box-item .icon-box-text .text a{
    color: var(--color-text);
}


.contact-card {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 25px;
}



.password-visibility-toggler {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    height: 48px;
    width: 50px;
    color: #a5a5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s all ease-in-out;
}
.password-visibility-toggler svg {
    height: 25px;
    width: 25px;
    fill: currentColor;
    vertical-align: sub;
    transition: all 0.3s all ease-in-out;
}




.custom-close {
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin: -15px;
    padding: 12px;
    position: absolute;
    right: 25px;
    top: 15px;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    transform: translateX(10px);
    box-shadow: none;
    outline: 0 none !important;
    background-color: transparent;
    border: 9px solid transparent;
    border-radius: 100%;
}
.custom-close:before,
.custom-close:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background-color: #333333;
    transform-origin: 50% 50%;
    opacity: 1;
    transition: transform ease 0.25s;
}
.custom-close.custom-close-light:before,
.custom-close.custom-close-light:after {
    background-color: #ffffff !important;
}
.custom-close:before,
.custom-close:before {
    transform: rotate(45deg);
}
.custom-close:after,
.custom-close:after {
    transform: rotate(-45deg);
}
.custom-close:hover:before,
.custom-close:hover:after {
    transform: rotate(0deg);
}


/* Toast Messages */
#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}
.toast-top-right {
    top: 12px;
    right: 12px;
}
.toast-top-left {
    top: 12px;
    left: 12px;
}
.toast-bottom-right {
    bottom: 12px;
    right: 12px;
}
.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}
.toast-bottom-center {
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
}
#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#toast-container > .toast {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #fff;
    opacity: 0.8;
}
#toast-container > .toast .btn-close-toast {
    margin: auto 0.5rem auto auto;
    filter: invert(1) grayscale(100%) brightness(200%);
}
#toast-container > .toast:hover,
#toast-container > .toast:focus {
    opacity: 1;
}
@media (max-width: 576px) {
    #toast-container > .toast {
      width: 300px;
    }
}
/* Toast Messages */

/* Custom Modal */
.custom-alert .modal-content {
    border: none;
    border-radius: 5px;
    color: #545454;
}

.custom-alert .modal-body {
    text-align: center;
    padding: 20px;
}

.custom-alert .modal-body .custom-modal-title {
    position: relative;
    max-width: 100%;
    margin: 10px;
    color: #595959;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}

.custom-alert .modal-body .custom-modal-message {
    z-index: 1;
    justify-content: center;
    margin: 10px 10px 20px;
    padding: 0;
    overflow: auto;
    color: #545454;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
}

.custom-alert .custom-alert-icon {
    text-align: center;
    display: block;
    height: 80px;
    margin-bottom: 20px;
}

.custom-alert .custom-alert-actions {
    display: flex;
    z-index: 1;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 20px auto 0;
    padding: 0;
}

.custom-alert .custom-alert-actions .btn {
    margin: 0 5px;
}

.custom-alert.custom-alert-info .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg fill='%2334a7da' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cpath d='M290.211,360.727c-5.234,0.488-10.489-0.693-15.011-3.375c-3.304-3.392-4.888-8.101-4.305-12.8 c0.122-3.912,0.589-7.806,1.396-11.636c0.781-4.394,1.79-8.744,3.025-13.033l13.731-47.244c1.416-4.663,2.352-9.459,2.793-14.313 c0-5.236,0.698-8.844,0.698-10.938c0.292-9.333-3.693-18.289-10.822-24.32c-8.769-6.732-19.689-10.041-30.72-9.309 c-7.905,0.119-15.749,1.413-23.273,3.84c-8.223,2.56-16.873,5.624-25.949,9.193l-3.956,15.36 c2.676-0.931,5.935-1.978,9.658-3.142c3.552-1.052,7.234-1.601,10.938-1.629c5.196-0.563,10.426,0.713,14.778,3.607 c2.956,3.527,4.343,8.109,3.84,12.684c-0.013,3.913-0.442,7.814-1.28,11.636c-0.815,4.073-1.862,8.378-3.142,12.916 l-13.847,47.476c-1.116,4.413-2.009,8.879-2.676,13.382c-0.544,3.855-0.816,7.743-0.815,11.636 c-0.057,9.397,4.24,18.291,11.636,24.087c8.904,6.837,19.98,10.226,31.185,9.542c7.89,0.162,15.753-0.978,23.273-3.375 c6.594-2.25,15.399-5.469,26.415-9.658l3.724-14.662c-2.984,1.238-6.057,2.249-9.193,3.025 C298.346,360.583,294.274,360.935,290.211,360.727z'%3E%3C/path%3E%3Cpath d='M304.756,136.727c-6.333-5.816-14.677-8.945-23.273-8.727c-8.591-0.194-16.927,2.932-23.273,8.727 c-11.632,10.03-12.931,27.591-2.9,39.224c0.894,1.037,1.863,2.006,2.9,2.9c13.252,11.853,33.294,11.853,46.545,0 c11.632-10.129,12.851-27.769,2.722-39.401C306.635,138.481,305.725,137.571,304.756,136.727z'%3E%3C/path%3E%3Cpath d='M256,0C114.615,0,0,114.615,0,256s114.615,256,256,256s256-114.615,256-256S397.385,0,256,0z M256,488.727 C127.468,488.727,23.273,384.532,23.273,256S127.468,23.273,256,23.273S488.727,127.468,488.727,256S384.532,488.727,256,488.727 z'%3E%3C/path%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert.custom-alert-success .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 512.257 512.257' fill='%239dd97b' xml:space='preserve' %3E%3Cpath d='M147.379,213.709c-4.881-4.18-12.227-3.612-16.407,1.269c-3.731,4.356-3.731,10.781,0,15.138L247.335,346.48 c4.493,4.595,11.86,4.678,16.455,0.185c0.062-0.061,0.124-0.122,0.185-0.185L458.07,142.843l16.64-17.455l33.396-34.909 c4.92-4.134,5.557-11.474,1.423-16.395c-4.134-4.92-11.474-5.557-16.395-1.423c-0.663,0.557-1.261,1.186-1.785,1.876 l-29.905,31.069l-16.175,16.989L255.364,321.694L147.379,213.709z'%3E%3C/path%3E%3Cpath fill='rgba(165,220,134,.5)' d='M490.768,158.785h0.233c-4.742-4.338-12.102-4.01-16.44,0.732c-2.691,2.942-3.689,7.057-2.644,10.905 c47.548,119.414-10.711,254.763-130.124,302.31S87.03,462.021,39.482,342.607C-8.066,223.194,50.193,87.845,169.607,40.297 C257.374,5.35,357.559,26.925,423.161,94.901c4.976,4.067,12.307,3.33,16.374-1.646c3.66-4.478,3.476-10.964-0.432-15.227 c-0.48-0.348-0.986-0.66-1.513-0.931C338.714-23.513,176.998-24.919,76.388,73.957s-102.017,260.592-3.141,361.202 c98.876,100.611,260.592,102.017,361.202,3.141c72.747-71.493,95.986-179.413,59.112-274.511 C493.061,161.914,492.101,160.194,490.768,158.785z'%3E%3C/path%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert.custom-alert-error .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='100px' height='100px' viewBox='0 0 512 512' style='fill:%23DC3545;' xml:space='preserve'%3E%3Cpath d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0 S484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0 C465.2,195.5,465.2,316.5,390.8,390.8z'/%3E%3Cpolygon points='340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 352,340.2 267.6,256 352,171.8 '/%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert.custom-alert-warning .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg fill='%23ff9000' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 338.531 338.531' xml:space='preserve'%3E%3Cpath d='M333.413,275.866l-139.2-239.6c-6.4-10.8-15.6-17.2-25.2-17.2c-10,0-19.2,6.4-25.2,17.2l-138.4,239.6 c-6.4,10.8-7.2,22-2,30.4c4.8,8.4,14.8,13.2,27.6,13.2h276.8c12.4,0,22.4-4.8,27.6-13.2 C340.213,297.866,339.413,286.666,333.413,275.866z M320.213,297.866c-2,3.2-6.4,4.8-12.8,4.8h-276.8c-6.4,0-11.2-2-12.8-4.8 c-2-3.2-1.2-8,2-13.6l138.4-239.6c3.2-5.6,7.2-8.8,10.8-8.8c3.6,0,7.6,3.2,10.8,8.8l138.4,239.6 C321.413,289.866,322.213,294.666,320.213,297.866z'%3E%3C/path%3E%3Cpath d='M169.013,97.866c-4.8,0-8.4,3.6-8.4,8.4v111.2c0,4.8,3.6,8.4,8.4,8.4s8.4-3.6,8.4-8.4v-111.2 C177.413,101.466,173.813,97.866,169.013,97.866z'%3E%3C/path%3E%3Ccircle cx='169.013' cy='259.466' r='14.8'%3E%3C/circle%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert.custom-alert-question .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg fill='%2387adbd' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 612 612' xml:space='preserve'%3E%3Cpath d='m306.022 612v-13.984l-.022 13.984c-168.73 0-306-137.275-306-306.005 0-168.725 137.27-305.995 306-305.995s306 137.27 306 305.995c0 168.73-137.265 306.005-305.978 306.005zm-.022-584.03c-153.308 0-278.03 124.723-278.03 278.025 0 153.307 124.722 278.035 278.03 278.035h.022c153.29 0 278.008-124.729 278.008-278.036 0-153.302-124.722-278.024-278.03-278.024z' fill='%23c9dae1'%3E%3C/path%3E%3Cpath d='m306 370.409c-7.725 0-13.985-6.26-13.985-13.985v-59.195c0-7.725 6.26-13.985 13.985-13.985 30.951 0 56.13-25.178 56.13-56.129 0-30.957-25.179-56.146-56.13-56.146s-56.135 25.189-56.135 56.146c0 7.725-6.26 13.985-13.985 13.985s-13.985-6.26-13.985-13.985c0-46.379 37.731-84.116 84.105-84.116s84.1 37.737 84.1 84.116c0 41.608-30.375 76.257-70.114 82.936v46.374c-.002 7.724-6.26 13.984-13.986 13.984z'%3E%3C/path%3E%3Ccircle cx='305.995' cy='433.743' r='23.03' fill='%2387adbd'%3E%3C/circle%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert .close {
    position: absolute;
    right: 20px;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: .5;
}

/* Custom Modal */

.col-form-label {
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.125rem;
}

.form-control {
    padding: 0 12px;
    height: 50px;
    color: var(--color-text);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: none !important;
    outline: none !important;
}
.form-control:focus {
    border-color: var(--color-primary);
}

textarea.form-control {
    padding: 12px;
    height: auto;
}

.category-card {
    margin-bottom: 15px;
    transition: 0.3s all ease;
}
.category-card img {
    border-radius: 5px 5px 0 0;
}
.category-card span {
    border-radius: 0 0 5px 5px;
    display: block;
    background: var(--color-accent);
    color: #ffffff;
    padding: 12px 10px;
    text-align: center;
    transition: 0.3s all ease;
}
.category-card:hover span {
    background: var(--color-primary);
}



footer {
    /*margin-top: auto;*/
}
.footer-band {
    width: 100%;
    height: auto;
    background-color: var(--color-primary);
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #ffffff;
    font-weight: 500;
}
.footer-band span {
    color: #FFF;
    font-size: 24px;
    text-align: right;
    width: 100%;
    padding-top: 7px;
    float: left;
    padding-right: 10px;
}
.footer-band a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 32px;
    display: block;
    font-weight: 700;
}
.footer-band .btn {
    float: left;
    margin-top: 4px;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
}
.footer-band .btn svg {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}
@media screen and (max-width: 992px) {
    .footer-band span {
        float: unset;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .footer-band .btn {
        float: unset;
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 10px;
    }
}

.footer{
    padding: 90px 0px 40px 0px;
    background-color: var(--color-primary);
}
.copyright{
    padding: 20px 0;
    background-color: var(--color-primary);
    color: #cccccc;
    font-weight: 400;
    font-size: 15px;
    border-top: 1px solid #111111;
}
.footer .title {
    font-family: "Manrope", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.footer .logo {
    max-height: 50px;
} 
.footer .footer-menu {
    list-style: inside;
    margin: 0;
    padding: 0;
    margin-bottom: 25px;
}
.footer .footer-menu.bullet-square {
    list-style: none outside;
    list-style-type: square;
    padding-left: 15px;
}
.footer .footer-menu.bullet-square .footer-menu-item {
    list-style: none outside;
    list-style-type: square;
}
.footer .footer-col .text {
    color: #cccccc;
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0;
}
.footer .footer-col .slogan {
    color: #ffffff;
    font-family: "Inter", serif;
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
}
.footer .footer-menu .footer-menu-item, .footer .footer-menu .footer-menu-item a {
    list-style-type: none;
    list-style: none;
    color: #cccccc;
    font-size: 15px;
    padding: 0;
    margin: 10px 0;
    transition: color 0.4s;
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
}
.footer .footer-menu .footer-menu-item a:hover {
    color: var(--color-accent);
}
.footer .footer-menu .footer-menu-item a:after {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    top: auto;
    bottom: -2px;
    left: 0;
    transform: none;
    width: 0;
    height: 1px;
    transition: all .3s ease;
    background-color: var(--color-primary);
}
.footer .footer-menu .footer-menu-item a:hover:after {
    width: 100%;
}
  
.footer .footer-menu.social-icons {
    margin-top: 10px;
}
.footer .footer-menu.social-icons .footer-menu-item {
    display:inline;
    margin: 0 5px;
}
.footer .footer-menu.social-icons .footer-menu-item svg{
    fill: var(--color-primary);
    width: 25px;
    height: 25px;
}
.footer .footer-menu.social-icons .footer-menu-item:hover svg{
    fill: var(--color-accent);
}
  
.footer .company {
    color: #afaca7;
    margin-bottom: 0;
}

.footer-logo {
    max-width: 200PX;
    padding: 10px 15px;
}


.scroll-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    transform: translateY(45px);
    border-radius: 50px;
    transition: 300ms linear;
}
.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.scroll-to-top::after {
    content: "🡩";
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    color: var(--color-accent);
    left: 0px;
    top: 0px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    box-shadow: none;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
}
.scroll-to-top svg {
    color: var(--color-accent);
    fill: var(--color-accent);
    border-radius: 50%;
    background: #ffffff;
}
.scroll-to-top svg path{
    fill: none;
}

.scroll-to-top .progress-circle path {
    stroke: var(--color-accent);
    stroke-width: 20px;
    box-sizing: border-box;
    transition: 400ms linear;
}

.whatsapp-support {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #25D366;
}
.whatsapp-support svg {
    fill: #ffffff;
    height: 25px;
    width: 25px;
}

/*hero banner*/
.hero-banner {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/public/assets/images/resources/breadcrumb-2.webp");
    padding: 0;
    height: 400px;
    display: flex;
    align-items: center;
}
.hero-banner .container {
    position: relative;
    text-align: center;
}
.hero-banner .page-title{
    font-size: 54px;
    color: #ffffff;
    margin-bottom: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
}
.hero-banner .breadcrumb-wrapper {
    overflow: hidden;
    margin: 10px 0;
} 
.hero-banner .breadcrumb {
    display: -webkit-box;
    display: flex;
    margin: 0;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-wrap: wrap;
} 
.hero-banner .breadcrumb::-webkit-scrollbar {
    display: none;
}
.hero-banner .breadcrumb > li {
    display: inline-block;
    color: #ffffff;
}
.hero-banner .breadcrumb > li a {
    text-decoration: none;
    color: #ffffff;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}
.hero-banner .breadcrumb > li a:hover {
    color: var(--color-primary);
}
.hero-banner .breadcrumb > li.active {
    color: #ffffff;
}
.hero-banner .breadcrumb li i {
    padding-right: 8px;
} 
.hero-banner .breadcrumb > li + li:before {
    padding: 0 10px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    color: #ffffff;
    vertical-align: middle;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

@media screen and (max-width: 768px) {
    .hero-banner .page-title {
        font-size: 36px;
        line-height: 1.2;
        font-weight: 600;
    }
}
/*hero banner*/

.sidebar-content {
    border: 1px solid #ededed;
    background: #ffffff;
    border-radius: var(--border-radius);
    width: 250px;
}
.sidebar-title {
    padding: 10px 25px;
    font-weight: 600;
    border-bottom: 1px dashed #dedede;
}

.sidebar-content .sidebar-nav {
    flex-grow: 1;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    padding: 8px 5px;
}
.sidebar-content .sidebar-item {
    display: flex;
}

.sidebar-content .sidebar-nav .sidebar-link {
    font-weight: 400;
    padding: 6px;
    position: relative;
    font-size: 14px;
    cursor: pointer;
    color: rgb(62, 65, 69);
    text-decoration: none;
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
}
.sidebar-content .sidebar-nav .sidebar-link .count {
    margin-top: auto;
    margin-bottom: auto;
    text-align: right;
    opacity: 0.7;
    color: rgb(132, 134, 137);
    flex: 1 1 0%;
}
.sidebar-content .sidebar-nav .sidebar-link .icon-wrapper {
    width: 25px;
    display: flex;
}
.sidebar-content .sidebar-nav .sidebar-link .icon{
    fill: currentColor;
    width: 16px;
}
.sidebar-content .sidebar-nav .sidebar-item:hover a {
    color: var(--color-primary);
}
.sidebar-content.brand-filter .sidebar-nav{
    max-height: 300px;
    overflow-y: scroll;
}


.product-sidebar {
    width: 300px;
}
.product-sidebar .product-card {
    box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
    background: #ffffff;
    border-radius: 2px;
    padding: 10px;
}
.product-sidebar .product-card .image-wrapper {
    text-align: center;
}
.product-sidebar .product-card img{
    max-width: 100%;
}



/*product-filter*/
.product-filter {
    margin-bottom: 10px;
    padding: 8px 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: var(--border-radius);
}
.product-filter .col-left {
    flex: 1;
}
.product-filter .col-left,
.product-filter .col-right {
    margin: 0px -15px;
    display: flex;
    align-items: center;
}
.product-filter .col-left > div,
.product-filter .col-right > div {
    position: relative;
    padding: 0px 15px;
}
.product-filter .col-left > div + div:before,
.product-filter .col-right > div + div:before {
    content: "";
    position: absolute;
    display: block;
    top: calc(50% - 7px);
    left: 0px;
    height: 14px;
    border-left: 1px solid #adadad;
}
.product-filter button.sort-results {
    padding: 2px 5px;
    font-weight: 400;
    cursor: pointer;
    outline: 0;
    background: transparent;
    border: none;
    font-size: 14px;
}
.product-filter .sort {
    max-width: 180px;
}
.product-filter .sort .sort-order-list {
    padding: 10px;
    position: absolute;
    top: 2rem;
    right: -5px;
    z-index: 2;
    background: #fff;
    width: 100%;
    border-radius: 0;
    display: none;
    box-shadow: 0 3px 10px 0px rgba(125,125,125,0.25);
    border: solid 1px #f1f1f1;
    min-width: 180px;
}
.product-filter .sort .sort-order-list.show {
    display: block;
}
.product-filter .sort .sort-order-list .sort-order-item {
    padding: 3px 2px;
}
.product-filter .sort .sort-order-list .sort-order-item a {
    color: #333;
    font-size: 14px;
    width: 100%;
    text-decoration: none;
}
.product-filter .sort .sort-order-list .sort-order-item:hover a {
    text-decoration: underline;
}
.product-filter .filter button.filter-results {
    padding: 0.57143rem 0.57143rem 0.57143rem 0;
    letter-spacing: 0.04286rem;
    font-weight: 400;
    cursor: pointer;
    outline: 0;
    background: transparent;
    border: none;
    font-size: 15px;
}
.product-filter .filter {
    min-width: 100px;
}



.text-content {
    word-wrap: break-word!important;
    word-break: break-word!important;
    color: var(--color-text);
}
.text-content strong,
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
    font-family: "Manrope", serif;
    color: var(--color-text);
    font-weight: 600;
}
.text-content h1 {
    font-size: 24px;
    line-height: 1.3846153846;
}
.text-content h2 {
    font-size: 22px;
    line-height: 1;
}
.text-content h3 {
    font-size: 20px;
    line-height: 1.0909090909;
}
.text-content p {
    font-size: 17px;
    line-height: 26px;
    color: var(--color-text);
}
.text-content p:last-child {
    margin-bottom: 0;
}
.text-content table {
    border-collapse: collapse;
    width: 100%;
}
.text-content table tbody tr td {
    padding: 8px;
    border: 1px solid var(--border-color);
}
.text-content table thead tr th, .text-content table thead tr td {
    font-weight: 700;
    font-size: 12px;
    padding: 7px;
    border: 1px solid var(--border-color);
}
.text-content table tbody tr:nth-child(2n+1) > td {
    background-color: #F8F8F8;
}
.text-content ul,
.text-content ul li,
.text-content ol li,
.text-content ol {
    list-style: initial;
}
.text-content li {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 10px;
}

.text-content blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eee;
}
  
.text-content blockquote p,
blockquote p {
    display: inline;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-style: italic;
}
  
.text-content blockquote ol:last-child,
.text-content blockquote p:last-child,
.text-content blockquote ul:last-child {
    margin-bottom: 0;
}
  
.text-content blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
  
.text-content br {
    display: block !important;
}
  
  /* Lists */
.text-content ul,
.text-content ul li {
    list-style-type: square;
}
  
.text-content ol,
.text-content ol li {
    list-style-type: decimal;
}
  
.text-content ul,
.text-content ol {
    margin: 16px 0;
    padding: 0 0 0 40px;
    word-wrap: break-word;
}
.text-content li > ul,
.text-content li > ol {
    margin: 0;
}
  
.text-content pre {
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.text-content img {
    border-style: none;
    vertical-align: top;
    max-width: 100%;
    height: auto !important;
    margin-top: 7px;
    margin-bottom: 7px;
}
  
.text-content .info {
    display: block;
    position: relative;
    font-size: 12px;
    line-height: 16px;
    color: #404040;
    margin: 0 0 21px 0;
}
.text-content .info span {
    font-style: italic;
}
  
.text-content .share-buttons span {
    color: var(--color-text);
    font-weight: 700;
    font-size: 13px;
    margin-right: 15px;
}
.text-content .share-buttons a {
    font-size: 18px;
    margin-left: 5px;
    padding: 5px;
    color: var(--color-primary);
}
.text-content .share-buttons a:hover {
    color: #757575;
}




.swiper-nav .swiper-nav-btn {
    position: absolute;
    cursor: pointer;
    top: 45% !important;
    text-align: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    z-index: 10;
    cursor: pointer;
    border: 0;
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-out 0s;
    touch-action: none;
    border: 1px solid var(--border-color);
  }
  .swiper-nav .swiper-nav-btn.prev-item-1 {
    transition: all 500ms ease;
    opacity: 0;
    left: 20px;
  }
  .swiper-nav .swiper-nav-btn.next-item-1 {
    transition: all 500ms ease;
    opacity: 0;
    right: 20px;
  }
  .swiper-container:hover .swiper-nav .swiper-nav-btn.prev-item-1 {
    transition: all 500ms ease;
    opacity: 1;
  }
  .swiper-container:hover .swiper-nav .swiper-nav-btn.next-item-1 {
    transition: all 500ms ease;
    opacity: 1;
  }
  .swiper-container:hover .swiper-nav .swiper-nav-btn.swiper-button-disabled {
    opacity: 0.5;
  }
  .swiper-nav .swiper-nav-btn.next-item-1 svg, .swiper-nav .swiper-nav-btn.prev-item-1 svg {
    width: 20px;
    height: 40px;
    transition: all 0.3s ease-out 0s;
  }
  @media (max-width: 768px) {
    .swiper-nav .swiper-nav-btn {
      border-radius: 0;
      background-color: transparent;
      box-shadow: none;
    }
    .swiper-wrapper .swiper-nav .swiper-nav-btn.prev-item-1:hover {
        width: 50px;
        height: 50px;
        transition: all 500ms ease;
    }
    .swiper-wrapper:hover .swiper-nav .swiper-nav-btn.prev-item-1 {
        left: 0;
    }
    .swiper-wrapper:hover .swiper-nav .swiper-nav-btn.next-item-1 {
        right: 0;
    }
}

.swiper-nav .swiper-nav-btn-2 {
    position: absolute;
    cursor: pointer;
    top: 45% !important;
    text-align: center;
    width: 50px;
    height: 50px;
    background: rgba(250, 252, 244, .2);
    color: #ffffff;
    border-radius: 0;
    z-index: 10;
    cursor: pointer;
    border: 0;
    border-radius: 50%;
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-out 0s;
    touch-action: none;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.swiper-nav .swiper-nav-btn-2.prev-item-2 {
    transition: all 500ms ease;
    opacity: 0;
    left: 20px;
  }
  .swiper-nav .swiper-nav-btn-2.next-item-2 {
    transition: all 500ms ease;
    opacity: 0;
    right: 20px;
  }
  .swiper-container:hover .swiper-nav .swiper-nav-btn-2.prev-item-2, .swiper-container:hover .swiper-nav .swiper-nav-btn-2.next-item-2 {
    transition: all 500ms ease;
    opacity: 1;
  }
  .swiper-container:hover .swiper-nav .swiper-nav-btn-2.swiper-button-disabled {
    opacity: 0.5;
  }
  .swiper-nav .swiper-nav-btn-2.next-item-2 svg, .swiper-nav .swiper-nav-btn-2.prev-item-2 svg {
    width: 20px;
    height: 40px;
    transition: all 0.3s ease-out 0s;
  }
  .swiper-nav .swiper-nav-btn-2:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    opacity: 1;
  }
  .swiper-nav .swiper-nav-btn-2:hover svg{
    fill: #ffffff;
  }
  @media (max-width: 768px) {
    .swiper-nav .swiper-nav-btn {
      border-radius: 0;
      background-color: transparent;
      box-shadow: none;
    }
    .swiper-wrapper .swiper-nav .swiper-nav-btn-2.prev-item-2:hover {
        width: 50px;
        height: 50px;
        transition: all 500ms ease;
    }
    .swiper-wrapper:hover .swiper-nav .swiper-nav-btn-2.prev-item-2 {
        left: 0;
    }
    .swiper-wrapper:hover .swiper-nav .swiper-nav-btn-2.next-item-2 {
        right: 0;
    }
}

.swiper-pagination-bullets {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: 45px 0 10px;
    padding-bottom: 20px;
    line-height: 20px;
    height: 16px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    background: transparent;
    opacity: 1;
    margin: 0 12px !important;
}

.swiper-pagination-bullet-active {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

#main-slider.swiper-container {
    border-radius: 2px;
}



.banner-strip {
    color: #ffffff;
    fill: #ffffff;
    background-color: #2d465f;
    border-radius: 2px;
    font-size: 18px;
    padding: 10px;
    text-align: center;
}



.banner-section {
    padding-top: 30px;
    padding-bottom: 30px;
}
.banner-card{
    overflow: hidden;
	position: relative;
	display: block;
    border-radius: 2px;
    box-shadow: 0 5px 15px -5px rgba(0,0,0, .1);
}
.banner-card img{
    border-radius: var(--border-radius);
    transition: all 0.3s ease-in-out;
}
.banner-card:hover img{
    scale: 1.02;
}

.product-list-section {
    padding-top: 30px;
    padding-bottom: 30px;
}



.categories-section {
    padding: 40px 0;
}
.categories-section .swiper-slide {
    display: flex;
    justify-content: center;
}
.categories-section .swiper-slide .image-wrapper{
    background-color: #ffffff;
    padding: 15px;
    width: fit-content;
    height: fit-content;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}
.categories-section .swiper-slide .category-title{
    font-weight: 600;
    font-size: 16px;
    display: block;
    text-align: center;
    margin-top: 10px;
}
.categories-section .swiper-slide .category-title:hover , .categories-section .swiper-slide:hover .category-title {
    color: var(--color-primary);
}


.section-title {
    font-family: "Manrope", serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 15px;
}


.section-title h1,
.section-title h2 {
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    font-size: 36px;
    font-family: "Manrope", sans-serif;
    color: var(--color-primary);
}

.section-title .icon{
    width: 30px;
    fill: currentColor;
    margin-right: 5px;
}
.section-title .sub-title{
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: "Great Vibes", serif;
}

.section-title-2 {
    font-weight: 600;
}
.section-title-2 h1:after, .section-title-2 h2:after {
    width: 70px;
    height: 3px;
    background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-primary) 50%,
    #b3b8ba 50%,
    #b3b8ba 100%
  );
}


.section-intro .section-description {
    font-size: 16px;
    color: #777777;
}
.section-intro .intro-card {
    text-align: center;
    border-radius: 5px;
    padding: 15px 10px 5px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: #ffffff;
}
.section-intro .intro-card svg{
    transition: all 0.3s ease-in-out;
}
.section-intro .intro-card:hover svg{
    width: 65px;
    height: 65px;
}
.section-intro .intro-card h3{
    margin-top: 15px;
    font-size: 18px;
    color: var(--color-primary);
}
.section-intro .intro-card p{
    font-size: 15px;
    color: #555555;
}



.section-about {
    background: #eaedf2 url(../images/aboutusbg.jpg) top right;
    min-height: 895px;
    padding-top: 215px;
}


.product-details-card {
    border: 1px solid #ededed;
    background: #ffffff;
    border-radius: 2px;
}

.product-details .product-brand {
    color: var(--color-primary);
}

.product-details .product-title {
    font-size: 28px;
    font-weight: 600;
    word-break: break-word;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
}

.product-details .featured-price-wrapper .info-text {
    color: #198754;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
}

.product-details .featured-price-wrapper .price-wrapper .price {
    font-size: 26px;
    font-weight: 600;
    margin-right: 10px;
}
.product-details .featured-price-wrapper .price-wrapper .price i {
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}
.product-details .featured-price-wrapper .price-wrapper .last-update {
    font-size: 13px;
    font-weight: 400;
    color: #787878;
    margin-top: 10px;
}
.product-details .featured-price-wrapper .merchant-wrapper .merchant-name span {
    font-size: 13px;
    font-weight: 600;
}
.product-details .featured-price-wrapper .merchant-wrapper .btn-merchant {
    padding: 5px 25px;
    border-radius: 15px;
    font-size: 13px;
}
.product-details .featured-price-wrapper .merchant-wrapper .btn-merchant svg {
    vertical-align: text-bottom;
    margin-left: 5px;
}



.register-wrapper {
    max-width: 450px;
    margin: 50px auto;
}
.register-wrapper .section-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.form-check:not(.form-switch) {
    display: block;
    min-height: 28px;
    padding-left: 28px;
    margin-bottom: 5px;
}
.form-check:not(.form-switch) .form-check-input[type=checkbox] {
    margin-left: -28px;
    border-radius: var(--border-radius);
    border-color: var(--border-color);
    width: 20px;
    height: 20px;
    box-shadow: none !important;
}

.form-switch {
    padding-left: 3em;
}
.form-switch .form-check-input{
    height: 20px;
    width: 40px;
    margin-left: -3em;
    box-shadow: none !important;
}
.form-switch .form-check-input:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.hover-float-shadow {
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px transparent;
    backface-visibility: hidden;
    position: relative;
    transition-duration: .3s;
    transition-property: transform;
}

.hover-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center,rgba(75, 75, 75, 0.35) 0,rgba(75, 75, 75, 0) 80%);
    transition-duration: .3s;
    transition-property: transform,opacity;
}

.hover-float-shadow:active, .hover-float-shadow:focus, .hover-float-shadow:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.hover-float-shadow:active:before, .hover-float-shadow:focus:before, .hover-float-shadow:hover:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.error-list {
    margin-bottom: 10px;
    color: #dd2619;
}
.error-list span {
    color: #dd2619;
    display: block;
    margin-left: 5px;
}

.error-list span:before {
    content: "✖";
    margin-right: 8px;
}


/* Half Slider*/

.half-slider .wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.half-slider .wrapper::-webkit-scrollbar {
    display: none;
}
.half-slider .wrapper .half-slider-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    flex-basis: 0;
    flex-grow: 1;
    padding-right: 10px;
    padding-left: 10px;
}
.half-slider .wrapper .half-slider-item:hover img {
    opacity: 0.8;
}
.half-slider .wrapper .half-slider-item img {
    width: 100%;
    max-width: 100%;
    box-shadow: 0px 10px 50px -30px rgb(0 0 0 / 35%);
    transition: all 0.3s ease-out 0s;
    border-radius: var(--border-radius);
}

@media screen and (max-width: 992px) {
    .half-slider .wrapper {
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        margin-right: 0;
        margin-left: 0;
    }
    .half-slider .wrapper .half-slider-item {
        flex: 0 0 40vw;
        max-width: 100%;
    }
    .half-slider .wrapper .half-slider-item:first-child {
        margin-left: -10px;
    }
    .half-slider .wrapper .half-slider-item:last-child {
        margin-right: -10px;
    }
}
@media screen and (max-width: 768px) {
    .half-slider .wrapper .half-slider-item {
        flex: 0 0 60vw;
    }
    .half-slider .wrapper .half-slider-item {
        padding-right: 10px;
        padding-left: 10px;
    }
}
@media screen and (max-width: 576px) {
    .half-slider .wrapper .half-slider-item {
        flex: 0 0 80vw;
    }
}
  
  /* Half Slider*/

.offcanvas-backdrop:hover {
    cursor: url(../images/icons/cross.svg), url(../images/icons/cross.svg), zoom-out;
}


.account-menu {
    padding-left: 0;
    list-style: none;
}
.account-menu .icon {
    height: 25px;
    fill: currentColor;
    margin-right: 5px;
}
.account-menu li {
    margin: 15px 0;
}
.account-menu a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
}
.account-menu .logout {
    border: 1px solid #f1f1f1;
    background: #f1f1f1;
    color: #383838;
    width: 100%;
}
.account-menu .logout:hover {
    border: 1px solid #999999;
    background: #f1f1f1;
    color: #333333;
}
.account-menu .divider {
    height: 0;
    margin: 35px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.15);
}


.left-block {
    max-width: 250px;
    padding-right: 5px;
    padding-left: 5px;
}
  
@media screen and (max-width: 768px) {
    .left-block {
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) / 2);
        padding-left: calc(var(--bs-gutter-x) / 2);
    }
}

.btn-gray {
    color: #fff;
    background-color: #4a4a4a;
    width: 100%;
}


/* Adress */
.new-address {
    background: #f6f6f6;
    font-size: 14px;
    font-weight: 500;
    min-height: 150px;
    cursor: pointer;
}
.new-address:hover {
    background: #e7e7e7;
}
.new-address svg {
    fill: #e6e6e6;
    width: 70px;
}
.new-address span {
    display: block;
    color: #777777;
    font-size: 18px;
    cursor: pointer;
}
.new-address:hover svg{
    fill: #b3b3b3;
}
  
.edit-address {
    background: #f6f6f6;
    color: #676767;
    font-size: 14px;
    font-weight: 500;
    min-height: 150px;
}
.edit-address:hover {
    background: #e7e7e7;
}
.edit-address span {
    display: block;
    color: #676767;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
}
.edit-address span.title {
    display: inline-block;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 600;
}
.edit-address span.delete svg{
    fill: #e5212f;
    width: 20px;
    height: 20px;
}
.edit-address span.edit{
    margin-right: 15px;
}
.edit-address span.edit svg{
    fill: #1e930c;
    width: 20px;
    height: 20px;
}
/* Adress */

.addr-info-box {
    border: solid 1px #ebebeb;
    margin-bottom: 10px;
}
.addr-info-box .title {
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    background-color: #e5e5e5;
    border-bottom: 1px solid;
    border-color: #f1f1f1;
    padding: 7px 10px;
    margin-bottom: 0;
}
.addr-info-box address {
    padding: 5px;
}

.products-table {
    border: 1px solid #f1f1f1;
}
.products-table thead th {
    background-color: #e5e5e5;
    border-bottom: 1px solid;
    border-color: #f1f1f1;
    padding: 7px 10px;
}
.products-table td {
    padding: 7px 10px;
    vertical-align: middle;
}

.products-table .btn {
    padding: 5px 10px;
    font-size: 15px;
    line-height: 15px;
    border-radius: 0;
}


.pagination {
    justify-content: center;
    list-style: none;
    font-size: 16px;
}
.pagination .page-item .page-link {
    background-color: #fff;
    border-color: #E9E9E9;
    color: #3b3b3b;
    width: auto;
    min-width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 30px;
    padding: 6px 7px;
    margin: 0 3px;
    border-radius: 50%;
}
.pagination .page-item.active .page-link {
    background: var(--color-accent);
    color: #ffffff;
}

.pagination .page-item:last-child .page-link, .pagination .page-item:first-child .page-link {
    border-radius: 50%;
}



.iti__flag {
    background-image: url("../images/icons/flags.png") !important;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("../images/icons/flags@2x.png") !important;
    }
}


/* Checkbox */
.styled-checkbox {
    position: absolute;
    opacity: 0;
}
.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}
.styled-checkbox + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: sub;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #cccccc;
}
.styled-checkbox:focus {
    border-color: var(--color-hover);
}
.styled-checkbox:focus + label:before {
    box-shadow: none;
}
.styled-checkbox:checked + label:before {
    background: var(--color-primary);
}
.styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}
.styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}
.styled-checkbox:hover + label:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 7px;
    height: 11px;
    border: 1px solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.styled-checkbox:checked + label:before{
    border: 1px solid var(--color-primary);
}
.styled-checkbox:checked + label:after{
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 7px;
    height: 11px;
    border: 1px solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* Checkbox */


.blog-image {
    border-radius: 16px;
}


/* category block */
.blog-category-block {
    margin-bottom: 15px;
    padding: 15px 15px 5px;
    border: 1px solid #E9E8E4;
    border-radius: 15px;
}
.blog-category-block ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog-category-block ul li {
    font-size: 15px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
    padding: 14px 0;
    transition: 0.4s;
    margin-bottom: 10px;
    font-weight: 600;
}
.blog-category-block ul li:not(:last-child) {
    border-bottom: 1px solid #E9E8E4;
}
.blog-category-block ul li a {
    color: var(--color-text);
    font-size: 16px;
    text-decoration: none;
    display: block;
}
.blog-category-block ul li a:hover {
    color: var(--color-accent);
    text-decoration: none;
}
.blog-category-block ul li.current, .blog-category-block ul li:hover {
    color: var(--color-accent);
}
.blog-category-block ul li .icon {
    display: none;
}
.blog-category-block ul li.current .icon, .blog-category-block ul li:hover .icon {
    display: block;
    fill: var(--color-accent);
}

.blog-category-block .heading {
    font-size: 26px;
    padding-bottom: 12px;
    font-weight: 600;
    position: relative;
    border-bottom: 3px solid #E9E8E4;
}
.blog-category-block .heading::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    width: 70px;
    background: var(--color-accent);
}
/* category block */


/* category block */
.latest-posts-block {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 30px;
  }
.latest-posts-block ul {
    padding-inline-start: 0;
}
.latest-posts-block ul li {
    list-style: none;
    margin: 0;
}
.latest-posts-block ul li .blog-post {
    display: flex;
}
.latest-posts-block ul li .blog-post .thumb {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 80px;
    margin-right: 5px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}
.latest-posts-block ul li .blog-post .thumb:after {
    content: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22%23ffffff%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M4.715%206.542%203.343%207.914a3%203%200%201%200%204.243%204.243l1.828-1.829A3%203%200%200%200%208.586%205.5L8%206.086a1%201%200%200%200-.154.199%202%202%200%200%201%20.861%203.337L6.88%2011.45a2%202%200%201%201-2.83-2.83l.793-.792a4%204%200%200%201-.128-1.287z%22%2F%3E%3Cpath%20d%3D%22M6.586%204.672A3%203%200%200%200%207.414%209.5l.775-.776a2%202%200%200%201-.896-3.346L9.12%203.55a2%202%200%201%201%202.83%202.83l-.793.792c.112.42.155.855.128%201.287l1.372-1.372a3%203%200%201%200-4.243-4.243z%22%2F%3E%3C%2Fsvg%3E');
    position: absolute;
    inset: 0;
    font-size: 24px;
    background-color: rgba(var(--color-primary-rgb), .7);
    color: var(--color-accent);
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.latest-posts-block ul li .blog-post:hover .thumb:after {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    border-radius: 5px;
}
.latest-posts-block ul li .blog-post .thumb img {
    border-radius: 5px;
}
.latest-posts-block ul li .title {
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-left: 5px;
}
.latest-posts-block ul li .title a {
    color: var(--color-primary);
    text-decoration: none;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 15px;
}
.latest-posts-block ul li:hover .title a {
    color: var(--color-primary);
    text-decoration: none;
}
.latest-posts-block ul li .title .date {
    color: var(--color-primary);
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}
/* category block */
  

  .aside-list {
    margin-bottom: 25px;
    background: #f5f5f5;
    padding: 15px;
}
.aside-list .title {
    color: #333;
    font-size: 16px;
    background: #f1f1f1;
    padding: 10px;
    margin: 0;
    display: flex;
    align-items: center;
}
.aside-list ul {
    list-style: inside;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    border: none;
}
.aside-list ul li {
    list-style: none;
    border-bottom: 1px solid #d5d5d5;
}
.aside-list ul li:last-child {
    border-bottom: none;
}
.aside-list ul li a {
    position: relative;
    padding: 10px 5px;
    color: #333333;
    display: block;
    font-size: 15px;
    text-decoration: none;
}
.aside-list ul li:hover a {
    text-decoration: underline;
}
  
.aside-list .filter-box {
    list-style: inside;
    margin: 0;
    padding: 10px;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-top: none;
    border-radius: 0 0 5px 5px;
}


.testimonial-card {
    margin-right: 15px;
    margin-left: 15px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    cursor: pointer;
}
.testimonial-card .content {
    text-align: center;
    background-color: #f5f7f7;
    padding: 35px 15px 35px;
}
.testimonial-card .name {
    font-size: 15px;
    color: #969fa8;
    margin: 10px 0 5px;
    font-weight: 400;
}
.testimonial-card .text {
    font-size: 18px;
    color: #777777;
    margin: 10px 0 5px;
    font-weight: 400;
}
.testimonial-card .star {
    fill: #eeae25;
}
.testimonial-card .stars {
    margin-bottom: 15px;
}
.testimonial-card .contact-wrapper {
    text-align: center;
    margin-top: -30px;
}
.testimonial-card img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 0px 4px #ffffff;
}


.service-card {
    transition: all 0.3s ease-in-out;
    height: 100%;
    cursor: pointer;
    background-color: #fffaeb;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f1f1;
}
.service-card a {
    text-decoration: none;
}
.service-card .title {
    font-size: 24px;
    color: var(--color-primary);
    margin: 15px 10px 5px;
    font-weight: 600;
}
.service-card .text {
    font-size: 16px;
    color: #6b6b6b;
    margin: 0 10px 10px;
    font-weight: 400;
    display: -webkit-box;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.service-card .image-wrapper {
    overflow: hidden;
    position: relative;
}
.service-card .image-wrapper img{
    -webkit-transform: scale(1.5);
	transform: scale(1);
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
    object-fit: cover;
    width: 100%;
}
.service-card:hover {
    box-shadow: 0 0 10px 7px #e6e6e69d;
}
.service-card:hover .image-wrapper img{
    -webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.service-card .read-more {
    display: flex;
    margin: 0 10px 15px;
    transition: all 0.3s ease-in-out;
}
.service-card .read-more svg{
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}
.service-card .read-more:hover svg{
    transform: rotate(45deg);
}






.reference-card {
    transition: all 0.3s ease-in-out;
    height: 100%;
    cursor: pointer;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f1f1;
}
.reference-card a {
    text-decoration: none;
}
.reference-card .title {
    font-size: 20px;
    background: var(--color-primary);
    color: #ffffff;
    padding: 10px;
    font-weight: 500;
    margin: 0;
}
.reference-card .image-wrapper {
    overflow: hidden;
    position: relative;
}
.reference-card .image-wrapper img{
    -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
    object-fit: cover;
}
.reference-card:hover {
    box-shadow: 0 0 10px 7px #e6e6e69d;
}
.reference-card:hover .image-wrapper img{
    -webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery-one {
	padding-bottom: 90px;
	padding-top: 120px;
}

.gallery-one__single {
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.gallery-one__single>img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
    object-fit: cover;
    height: 250px;
}

.gallery-one__single:hover>img {
	-webkit-transform: scale(1.05);
	        transform: scale(1.05);
}

.gallery-one__link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(var(--color-primary-rgb), .3);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	text-align: center;
	font-size: 46px;
	color: #ffffff;
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.gallery-one__link svg{
    fill: #ffffff;
	width: 80px;
}

.gallery-one__link:hover {
	color: #ffffff;
}


.gallery-one__single:hover .gallery-one__link {
	opacity: 1;
}

.gallery-one__single > img {
	width: 100%;
	-webkit-animation: galleryHomeEightImg 5s linear infinite;
	animation: galleryHomeEightImg 5s linear infinite;
}

@-webkit-keyframes galleryHomeEightImg {

	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}

	25% {
		-webkit-transform: scale(1.01);
		        transform: scale(1.01);
	}

	50% {
		-webkit-transform: scale(1.05);
		        transform: scale(1.05);
	}

	75% {
		-webkit-transform: scale(1.01);
		        transform: scale(1.01);
	}

	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@keyframes galleryHomeEightImg {

	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}

	25% {
		-webkit-transform: scale(1.01);
		        transform: scale(1.01);
	}

	50% {
		-webkit-transform: scale(1.05);
		        transform: scale(1.05);
	}

	75% {
		-webkit-transform: scale(1.01);
		        transform: scale(1.01);
	}

	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}


/** preloader **/
#preloader {
    background: var(--color-primary);
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.sk-cube-grid {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    top: 45%;
    position:relative;
  }
  
  .sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: var(--color-accent);
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
            animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
  }
  .sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s; }
  .sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
            animation-delay: 0s; }
  .sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  
  @-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
      -webkit-transform: scale3D(1, 1, 1);
              transform: scale3D(1, 1, 1);
    } 35% {
      -webkit-transform: scale3D(0, 0, 1);
              transform: scale3D(0, 0, 1); 
    }
  }
  
  @keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
      -webkit-transform: scale3D(1, 1, 1);
              transform: scale3D(1, 1, 1);
    } 35% {
      -webkit-transform: scale3D(0, 0, 1);
              transform: scale3D(0, 0, 1);
    } 
  }



  .loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    color: #fff;
  }
    .loader:before,
    .loader:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: inherit;
      height: inherit;
      border-radius: 50%;
      transform: rotateX(70deg);
      animation: 1s spin linear infinite;
    }
    .loader:after {
      color: var(--color-accent);
      transform: rotateY(70deg);
      animation-delay: .4s;
    }

  @keyframes rotate {
    0% {
      transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotateZ(360deg);
    }
  }

  @keyframes rotateccw {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(-360deg);
    }
  }

  @keyframes spin {
    0%,
    100% {
      box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
      box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
      box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
      box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
      box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
      box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
      box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
      box-shadow: .2em -.2em 0 0 currentcolor;
    }
  }

  
  /** preloader **/


@keyframes scaleout-image {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes flipInY{
    0%{
        -webkit-transform:perspective(400px) rotateY(90deg);
        transform:perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function:ease-in;
        animation-timing-function:ease-in;
        opacity:0;
    }
    40%{
        -webkit-transform:perspective(400px) rotateY(-20deg);
        transform:perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function:ease-in;
        animation-timing-function:ease-in;
    }
    60%{
        -webkit-transform:perspective(400px) rotateY(10deg);
        transform:perspective(400px) rotateY(10deg);
        opacity:1;
    }
    80%{
        -webkit-transform:perspective(400px) rotateY(-5deg);
        transform:perspective(400px) rotateY(-5deg);
    }
    to{
        -webkit-transform:perspective(400px);
        transform:perspective(400px);
    }
}
@keyframes flipInY{
    0%{
        -webkit-transform:perspective(400px) rotateY(90deg);
        transform:perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function:ease-in;
        animation-timing-function:ease-in;
        opacity:0;
    }
    40%{
        -webkit-transform:perspective(400px) rotateY(-20deg);
        transform:perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function:ease-in;
        animation-timing-function:ease-in;
    }
    60%{
        -webkit-transform:perspective(400px) rotateY(10deg);
        transform:perspective(400px) rotateY(10deg);
        opacity:1;
    }
    80%{
        -webkit-transform:perspective(400px) rotateY(-5deg);
        transform:perspective(400px) rotateY(-5deg);
    }
    to{
        -webkit-transform:perspective(400px);
        transform:perspective(400px);
    }
}



/* cf social feed ig*/
.instagram-section {
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #ffffff;
    position: relative;
}
.instagram-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.instagram-title-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}
.instagram-subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #5e5e72;
}
.instagram-title {
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 25px;
}

.ig-posts {
    padding: 5px 0;
}
.ig-posts .post-grid {
    padding: 0 5px;
    margin-bottom: 15px;
    transition: 0.3s all ease;
}
.ig-posts .post-grid .post-image {
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
}
.ig-posts .post-grid .post-image a {
    display: block;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
}
.ig-posts .post-grid .post-image img {
    width: 100%;
    height: auto;
    position: absolute;
}
.ig-posts .post-grid .post-caption {
  font-size: 13px;
  line-height: 16px;
  display: none;
  overflow: hidden;
  text-align: center;
  position: absolute;
  z-index: 3;
  top: 0;
  color: #ffffff;
  width: 100%;
  max-height: 100%;
  margin: auto;
  transition: 0.3s all ease;
  padding: 15px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ig-posts .post-grid .post-caption span{
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px;
  position: absolute;
  right: 0;
  left: 0;
}
.ig-posts .post-grid .post-image .media-type {
  position: absolute;
  z-index: 5;
  top: 0.6em;
  right: 0.6em;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.ig-posts .post-grid .post-image .media-type svg{
  fill: var(--color-primary);
  opacity: 0.8;
}
.ig-posts .post-grid .post-image:hover .media-type svg{
  fill: #ffffff;
}
.ig-posts .post-grid .post-image:hover {
  box-shadow: rgba(147, 157, 170, 0.2) 0px 7px 15px 0px;
}
.ig-posts .post-grid:hover .post-caption {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  display: flex;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}


#google_translate_element2, .skiptranslate {
    display: none !important;
}

.top-translate .dropdown-toggle::after {
    display: none;
}
.top-translate ul {
    min-width: max-content;
    border-radius: 0;
    margin-top: 10px !important;
    margin-left: -15px !important;
}
.top-translate ul li {
    display: list-item;
    margin: 0;
}
.top-translate ul li a {
    line-height: 2;
}



.contact-icon-card {
    text-align: center;
    margin-bottom: 30px;
}
.contact-icon-card .icon-wrapper {
    color: #fff;
    background-color: var(--color-primary);
    transition: all ease .3s;
    position: relative;
    z-index: 2;
    display: inline-block;
    width: auto;
    border-radius: 0;
    margin-bottom: 15px;
    padding: 30px;
    box-shadow: 0 0 15px 7px #e9edef;
}
.contact-icon-card .icon-wrapper svg {
    width: 2.911em;
    height: 2.911em;
    line-height: 2.92;
    fill: currentColor;
}
.contact-icon-card .text {
    color: #969fa8;
    font-size: 16px;
}
.contact-icon-card .text a {
    color: #969fa8;
    text-decoration: none;
}

.contact-icon-card:hover .icon-wrapper svg{
    -webkit-animation:icons-zoom .25s ease-out;
    -ms-animation:icons-zoom .25s ease-out;
    animation:icons-zoom .25s ease-out
}


@-webkit-keyframes icons-zoom{
    0%{
        opacity:1;
    }
    100%{
        opacity:0;
        -webkit-transform:scale(1.75,1.75);
        transform:scale(1.75,1.75);
    }
}
@keyframes icons-zoom{
    0%{
        opacity:1;
    }
    100%{
        opacity:0;
        -webkit-transform:scale(1.75,1.75);
        -ms-transform:scale(1.75,1.75);
        transform:scale(1.75,1.75);
    }
}




.service-box {
    text-align: center;
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin: 20px;
    padding: 45px 30px;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.service-box span{
    display: block;
}
.service-box .service-icon {
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease-out;
}
.service-box .service-title {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--color-primary);
    transition: all 0.3s ease-out;
}
.service-box .service-info {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    color: #ffffff;
}
.service-box:hover .service-title {
    margin-top: -40px;
    color: #ffffff;
}
.service-box:hover {
    background-color: #70809052;
}
.service-box:hover .service-info {
    opacity: 1;
    visibility: visible;
    margin-bottom: 40px;
}
.service-box:hover .service-icon {
    visibility: hidden;
    opacity: 0;
}

.service-box-2 {
    text-align: center;
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 30px 40px;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.service-box-2 span{
    display: block;
}
.service-box-2 .service-icon-2 {
    margin-bottom: 20px;
    width: 140px;
    height: 140px;
}
.service-box-2 .service-title-2 {
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 10px;
    transition: all 0.3s;
}
.service-box-2 .service-info-2 {
    font-size: 16px;
    font-weight: 400;
    color: #6a7073;
}

.service-box-2 svg{
    transition: all 0.3s;
}
.service-box-2:hover svg{
    transform:scale(1.05,1.05);
}
.service-box-2:hover .service-title-2{
    letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
    .service-box {
        margin: 0;
    }
}



.clients-section{
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
  }
  .clients-section .client{
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .clients-section .client img{
    display: block;
    width: 100%;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
  }

  .clients-section .client:hover img{
    opacity: 1;
    filter: none;
  }





.page-header .logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 90px;
    z-index: -1;
    /*background-color: var(--color-accent);*/
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    -webkit-background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-image: url('../images/resources/logo_bg_mask.webp');
    display: none;
}

@media only screen and (min-width: 1300px) {
    .header-container {
        max-width: 1776px;
    }
}

@media (max-width: 1199px) {
    .page-header .logo-bg {
        width: 30%;
    }
}

@media (max-width: 991px) {
    .page-header .logo-bg{
        width: 50%;
        z-index: 0;
        height: -webkit-fill-available;
    }
}

@media (max-width: 767px) {
    .page-header .logo-bg {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .page-header .logo-bg {
        width: 70%;
    }
}




.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: .4s;
    transition: .4s;
}

.contact-grid .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(--color-primary);
    border-radius: 50%;
    color: #ffffff;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.contact-grid:hover .contact-icon {
    background: var(--color-accent);
}
.contact-grid .contact-icon svg {
    width: 25px;
    height: 25px;
}
.contact-grid .box-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: -.3em;
    margin-bottom: 2px;
}
.contact-grid .contact-details-text, .contact-grid .contact-details-text a {
    margin-bottom: 0;
    font-size: 15px;
    text-decoration: none;
}

.section-contact-form {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url('../images/resources/badrum-background-contact.webp');
}


.section-background-1 {
    background-image: url('../images/resources/section-background-1.webp');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}









.slider-arrow {
    display: inline-block;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0px 20px 20px rgba(204, 204, 204, .25);
    border-radius: 48px;
    color: var(--color-accent);
    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 .4s ease-in-out;
    transition: all .4s ease-in-out;
}


.main-slider .slider-arrow svg{
    width: 25px;
    fill: #ffffff;
}
.main-slider .slider-arrow.slider-next svg{
    transform: rotate(90deg);
}
.main-slider .slider-arrow.slider-prev svg{
    transform: rotate(-90deg);
}

.main-slider:hover .slider-arrow {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@media (max-width: 1500px) {
    .slider-arrow {
        --arrow-horizontal: -20px;
        --pos-x: -70px;
    }
}

@media (max-width: 1399px) {
    .slider-arrow {
        --arrow-horizontal: 40px;
        --pos-x: -17px;
    }
}


.main-slider .swiper-slide:before {
    content: "";
    position: absolute;
    mix-blend-mode: normal;
    z-index: 0;
    inset: 0px;
    background: rgba(13, 13, 12, 0.5);
}
.main-slider .slider-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.main-slider .slider-content .mw-700 {
    max-width: 700px;
}
.main-slider .subtitle {
    color: var(--color-accent);
    font-size: 40px;
    margin-bottom: 0;
    opacity: 0;
    animation-delay: "0.2s";
}
.main-slider .title {
    opacity: 0;
    color: #ffffff;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 45px;
    animation-delay: "0.4s";
}
.main-slider .slider-btn-group {
    opacity: 0;
    animation-delay: "0.6s";
}
.main-slider .slider-btn-group .btn {
    padding: 18px 35px;
    height: auto;
    border-radius: 30px;
    font-size: 16px;
}
.main-slider .slider-btn-group .btn-hover-outline {
    border-color: #ffffff;
    color: #ffffff;
}
.main-slider .slider-btn-group .btn-hover-outline:hover {
    border-color: var(--color-accent);
}
.main-slider .swiper-slide-active .subtitle, .main-slider .swiper-slide-active .title, .main-slider .swiper-slide-active .slider-btn-group {
    opacity: 1;
    animation: slideInUp;
    animation-duration: 0.8s;
}











.hero-1{
    position:relative;
    overflow:hidden
}
.hero-1 .th-hero-bg{
    z-index:2
}
.hero-1 .th-hero-bg:before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(13,13,12,.5);
    mix-blend-mode:normal;
    z-index:-1
}
.hero-1 .th-swiper-custom{
    position:absolute;
    top:47%;
    margin:0;
    -webkit-transform:rotate(-90deg);
    -ms-transform:rotate(-90deg);
    transform:rotate(-90deg);
    right:55px;
    z-index:9
}
@media (max-width:767px){
    .hero-1 .th-swiper-custom{
        display:none
    }
}
.hero-1 .th-swiper-custom .swiper-pagination-bullets{
    position:relative;
    z-index:3;
    text-align:center;
    margin: -5px 0 0;
    line-height:10px;
    height:3px
}
.hero-1 .th-swiper-custom .swiper-pagination-bullets .swiper-pagination-bullet{
    display:inline-block;
    --swiper-pagination-bullet-size:24px;
    --swiper-pagination-bullet-horizontal-gap:12px;
    margin:5px 7px;
    height:2px;
    width: 25px;
    opacity:1;
    border-radius:0;
    background-color: #ffffff;
    border:1px solid  #ffffff;
    position:relative;
    -webkit-transition:.4s;
    transition:.4s;
    cursor:pointer
}
.hero-1 .th-swiper-custom .swiper-pagination-bullets .swiper-pagination-bullet:before{
    display:none
}
.hero-1 .th-swiper-custom .swiper-pagination-bullets .swiper-pagination-bullet:hover,.hero-1 .th-swiper-custom .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color:var(--color-accent);
    border:1px solid var(--color-accent)
}
.hero-1 .th-swiper-custom .swiper-pagination-bullets .swiper-pagination-bullet:first-child{
    margin-left:0
}
.hero-1 .th-swiper-custom .swiper-pagination-bullets .swiper-pagination-bullet:last-child{
    margin-right:0
}
.hero-1 .slider-pagination .swiper-pagination-bullets .swiper-pagination-bullet{
    width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    background: #ffffff;
    height:3px
}
.hero-1 .slider-arrow{
    --icon-size:64px;
    background:rgba(250,252,244,.2);
    -webkit-backdrop-filter:blur(5px);
    backdrop-filter:blur(5px);
    border-radius:36px;
    color: #ffffff;
    box-shadow:none;
    border:none;
    opacity:1;
    visibility:visible;
    left:var(--pos-x,-90px)
}

.hero-1 .slider-arrow img{
    -webkit-transform:rotate(-90deg);
    -ms-transform:rotate(-90deg);
    transform:rotate(-90deg)
}
.hero-1 .slider-arrow.slider-next{
    right:var(--pos-x,-90px);
    left:auto;
}
.hero-1 .slider-arrow:hover{
    background-color:var(--color-accent);
    color: #ffffff;
}
.hero-1:hover .slider-arrow{
    opacity:1;
    visibility:visible;
    -webkit-transform:scale(1);
    -ms-transform:scale(1);
    transform:scale(1)
}


@media (max-width:768px){
    .main-slider .title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .main-slider .subtitle {
        font-size: 28px;
        line-height: 1.3;
    }

    .main-slider .slider-btn-group .btn {
        padding: 12px 28px;
        height: auto;
        border-radius: 30px;
        font-size: 14px;
    }
}

@media (max-width:1399px){
    .hero-1 .th-swiper-custom{
        display:none
    }
}







.activity-card {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.activity-card .activity-image {
    border-radius: 24px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}
.activity-card .activity-image img {
    border-radius: 24px;
    -webkit-transition: 1.3s all ease;
    transition: 1.3s all ease;
    width: 100%;
}
.activity-card:hover .activity-image img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.activity-card .activity-image img:after {
    background: rgba(255, 255, 255, .5);
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
}

.activity-card .activity-content .title {
    font-size: 24px;
    line-height: 1.417;
    font-weight: 600;
    margin-top: -.32em;
    margin-bottom: 0;
}

.activity-card .activity-content .title a{
    font-size: 24px;
    text-decoration: none;
}
.activity-card .activity-content .see-more {
    font-size: 15px;
    text-decoration: none;
    color: #607479;
}













/*blog card*/
.blog-card {
    position: relative;
    margin-bottom: 25px;
    transition: all 0.3s linear 0s;
}
.blog-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.blog-card .blog-image {
    overflow: hidden;
    position: relative;
    margin-bottom: 35px;
    border-radius: 16px;
}
.blog-card .blog-image a {
    display: block;
}
.blog-card .blog-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease-in-out;
}
.blog-card:hover .blog-image img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.blog-card .blog-content {
    color: #607479;
    font-size: 14px;
}
.blog-card .blog-content .date {
    margin-bottom: 12px;
}
.blog-card .title {
    line-height: 1.3;
    margin-bottom: 15px;
    overflow: hidden;
    font-weight: 600;
}
.blog-card .title a {
    color: var(--color-primary);
    text-decoration: none;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.blog-card:hover .title a {
    color: var(--color-primary);
}
.blog-card .short-desc {
    margin: 0 0 18px;
    color: #607479;
    line-height: 1.75;
    font-size: 18px;
    margin-bottom: 30px;
}
/*blog card*/




.search-input-group input{
    border-radius: 30px;
    border-color: transparent;
    z-index: 0 !important;
    padding-right: 25px;
}
.search-input-group input:hover, .search-input-group input:focus, .search-input-group input:active {
    border-color: var(--color-accent);
}

.search-input-group .btn{
    border-radius: 30px !important;
    border-color: transparent;
    background-color: var(--color-accent);
    color: #ffffff;
    height: 50px;
    left: -20px;
    right: -20px;
    z-index: 1;
}
.search-input-group .btn:hover:after{
    background-color: var(--color-primary);
}







.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.destination-card img {
    width: 100%;
    height: auto;
    transition: 0.5s ease-in-out;
}
.destination-card:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, rgba(var(--color-primary-rgb), 0)), color-stop(99%, rgba(var(--color-primary-rgb), 0.98)), to(rgba(var(--color-primary-rgb), 1)));
    background: linear-gradient(to bottom, rgba(var(--color-primary-rgb), 0) 49%, rgba(var(--color-primary-rgb), 0.98) 99%, rgba(var(--color-primary-rgb), 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
}
.destination-card .destination-content{
    position: absolute;
    padding: 15px 25px;
    bottom: 0;
    left: 0;
    right: 0;
    color:  var(--color-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    z-index: 6;
}
.destination-card .destination-content .title a{
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}
.destination-card:hover .destination-content .title a {
    color:  var(--color-accent);
}
.destination-card .destination-content .see-more {
    padding: 10px;
    background-color: var(--color-accent);
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    opacity: 0;
}
.destination-card .destination-content .see-more svg{
    fill: #ffffff;
    width: 22px;
    height: 20px;
    vertical-align: sub;
    transition: 0.3s ease-in-out;
}
.destination-card:hover .destination-content .see-more {
    opacity: 1;
}



.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #bcced2;
    border-top: transparent;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.tour-card:hover {
    box-shadow: 0px 20px 20px rgba(204,204,204,.25);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.tour-card .tour-image img {
    width: 100%;
}
.tour-card .tour-content {
    padding: 15px;
}
.tour-card .tour-content .title{
    font-size: 18px;
    margin-bottom: 7px;
}
.tour-card .tour-content .destinations {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 10px;
    font-weight: 400;
    display: -webkit-box;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.tour-card .tour-content .destinations a {
    display: inline;
    color: #6b6b6b;
}
.tour-card .tour-content .destinations a:not(:last-child)::after {
    content: ', '; 
  }
.tour-card .tour-card-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 25px;
}


.trip-card {
    margin-bottom: 15px;
    padding: 25px;
    border: 1px solid #E9E8E4;
    border-radius: 15px;
}

.trip-card-title {
    font-size: 24px;
    font-weight: 500;
}

.trip-card .trip-facts-value {
    margin: 16px;
    display: flex;
    flex-wrap: wrap;
    align-self: flex-start;
    flex-direction: row;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    min-width: 230px;
}

.trip-facts-value .icon-holder {
    font-size: 15px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    height: 1.5em;
    margin-right: 6px;
}

.trip-facts-value .icon-holder svg {
    width: 1em;
    height: 1em;
    font-size: inherit;
}

.trip-facts-value label {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(6, 22, 38, .4);
    font-weight: normal;
}
.trip-facts-value .trip-facts-text, .trip-facts-value .trip-facts-text a {
    font-size: 15px;
    line-height: 1.5;
    width: 100%;
    flex: auto;
    color: #7A7A7A;
}
.trip-facts-value .trip-facts-text a {
    color: var(--color-accent);
}

.trip-facts-value .trip-facts-text a:not(:last-child)::after {
    content: ', ';
}

.nav-tab-wrapper {
    padding: 12px 24px 0;
    border-bottom: 1px solid rgba(4, 15, 26, .1);
}
.nav-tab-wrapper .nav-link{
    color: var(--color-accent);
    border-bottom: 2px solid transparent;
}
.nav-tab-wrapper .nav-link.active {
    border-color: var(--color-accent);
}









.accordion {
    border: none;
    border-radius: 0;
    position: relative;
}
.accordion .accordion-item {
    border-radius: 0;
    position: relative;
}
.accordion .accordion-item .accordion-button{
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 16px;
    padding: 16px 20px 20px 40px;
}

















.itinerary-accordion {
    border: none;
    border-radius: 0;
    position: relative;
}
.itinerary-accordion .accordion-item {
    border: none;
    border-radius: 0;
    position: relative;
}
.itinerary-accordion .accordion-item .accordion-button{
    border: none;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 18px;
    padding: 16px 20px 20px 40px;
}

.itinerary-accordion .accordion-item .accordion-button::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-accent);
    position: absolute;
    left: 10px;
    top: 28px;
    transform: translate(-50%, -50%);
}

.itinerary-accordion .accordion-item:first-child .accordion-button::before, .itinerary-accordion .accordion-item:last-child .accordion-button::before {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M9 1.5C7.4087 1.5 5.88258 2.13214 4.75736 3.25736C3.63214 4.38258 3 5.9087 3 7.5C3 11.55 8.2875 16.125 8.5125 16.32C8.64835 16.4362 8.82124 16.5 9 16.5C9.17877 16.5 9.35165 16.4362 9.4875 16.32C9.75 16.125 15 11.55 15 7.5C15 5.9087 14.3679 4.38258 13.2426 3.25736C12.1174 2.13214 10.5913 1.5 9 1.5ZM9 14.7375C7.4025 13.2375 4.5 10.005 4.5 7.5C4.5 6.30653 4.97411 5.16193 5.81802 4.31802C6.66193 3.47411 7.80653 3 9 3C10.1935 3 11.3381 3.47411 12.182 4.31802C13.0259 5.16193 13.5 6.30653 13.5 7.5C13.5 10.005 10.5975 13.245 9 14.7375ZM9 4.5C8.40666 4.5 7.82664 4.67595 7.33329 5.00559C6.83994 5.33524 6.45542 5.80377 6.22836 6.35195C6.0013 6.90013 5.94189 7.50333 6.05764 8.08527C6.1734 8.66721 6.45912 9.20176 6.87868 9.62132C7.29824 10.0409 7.83279 10.3266 8.41473 10.4424C8.99667 10.5581 9.59987 10.4987 10.1481 10.2716C10.6962 10.0446 11.1648 9.66006 11.4944 9.16671C11.8241 8.67336 12 8.09334 12 7.5C12 6.70435 11.6839 5.94129 11.1213 5.37868C10.5587 4.81607 9.79565 4.5 9 4.5ZM9 9C8.70333 9 8.41332 8.91203 8.16665 8.7472C7.91997 8.58238 7.72771 8.34811 7.61418 8.07403C7.50065 7.79994 7.47094 7.49834 7.52882 7.20736C7.5867 6.91639 7.72956 6.64912 7.93934 6.43934C8.14912 6.22956 8.41639 6.0867 8.70737 6.02882C8.99834 5.97094 9.29994 6.00065 9.57403 6.11418C9.84811 6.22771 10.0824 6.41997 10.2472 6.66665C10.412 6.91332 10.5 7.20333 10.5 7.5C10.5 7.89782 10.342 8.27936 10.0607 8.56066C9.77936 8.84196 9.39783 9 9 9Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.itinerary-accordion .accordion-item::before {
    content: "";
    width: 0;
    height: 100%;
    border-left: 1px solid rgba(233, 232, 228, 1);
    background: none;
    position: absolute;
    top: 0px;
    left: 10px;
}
.itinerary-accordion .accordion-item:first-child::before {
    top: 20px;
}
.itinerary-accordion .accordion-item:last-child::before {
    height: 20px;
}

.itinerary-accordion .accordion-item .accordion-body {
    color: #7A7A7A;
    /*border-bottom: 1px solid rgba(4, 15, 26, .1) !important;*/
}


.tour-cost ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}
.tour-cost ul li {
    margin: 0 0 4px;
    padding-left: 24px;
    position: relative;
    line-height: 2;
}
.tour-cost ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 1em;
    height: 1.75em;
}
.tour-cost ul.includes li::before {
    background: #43a32d;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM16.7372 9.67572C17.1104 9.2686 17.0828 8.63604 16.6757 8.26284C16.2686 7.88965 15.636 7.91715 15.2629 8.32427L10.5 13.5201L8.73716 11.597C8.36397 11.1899 7.7314 11.1624 7.32428 11.5356C6.91716 11.9088 6.88966 12.5413 7.26285 12.9485L9.76285 15.6757C9.95226 15.8824 10.2197 16 10.5 16C10.7803 16 11.0478 15.8824 11.2372 15.6757L16.7372 9.67572Z%27 fill=%27black%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM16.7372 9.67572C17.1104 9.2686 17.0828 8.63604 16.6757 8.26284C16.2686 7.88965 15.636 7.91715 15.2629 8.32427L10.5 13.5201L8.73716 11.597C8.36397 11.1899 7.7314 11.1624 7.32428 11.5356C6.91716 11.9088 6.88966 12.5413 7.26285 12.9485L9.76285 15.6757C9.95226 15.8824 10.2197 16 10.5 16C10.7803 16 11.0478 15.8824 11.2372 15.6757L16.7372 9.67572Z%27 fill=%27black%27/%3E%3C/svg%3E%0A");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 1em 1em;
    mask-size: 1em 1em;
    -webkit-mask-position: center;
    mask-position: center;
}
.tour-cost ul.excludes li::before {
    background: #d80808;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM15.7072 8.29289C16.0977 8.68342 16.0977 9.31658 15.7072 9.70711L13.4142 12.0001L15.7071 14.293C16.0976 14.6835 16.0976 15.3167 15.7071 15.7072C15.3166 16.0977 14.6834 16.0977 14.2929 15.7072L12 13.4143L9.7072 15.7071C9.31668 16.0976 8.68351 16.0976 8.29299 15.7071C7.90246 15.3166 7.90246 14.6834 8.29299 14.2929L10.5858 12.0001L8.29289 9.7072C7.90237 9.31668 7.90237 8.68351 8.29289 8.29299C8.68342 7.90246 9.31658 7.90246 9.70711 8.29299L12 10.5859L14.293 8.29289C14.6835 7.90237 15.3167 7.90237 15.7072 8.29289Z%27 fill=%27black%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM15.7072 8.29289C16.0977 8.68342 16.0977 9.31658 15.7072 9.70711L13.4142 12.0001L15.7071 14.293C16.0976 14.6835 16.0976 15.3167 15.7071 15.7072C15.3166 16.0977 14.6834 16.0977 14.2929 15.7072L12 13.4143L9.7072 15.7071C9.31668 16.0976 8.68351 16.0976 8.29299 15.7071C7.90246 15.3166 7.90246 14.6834 8.29299 14.2929L10.5858 12.0001L8.29289 9.7072C7.90237 9.31668 7.90237 8.68351 8.29289 8.29299C8.68342 7.90246 9.31658 7.90246 9.70711 8.29299L12 10.5859L14.293 8.29289C14.6835 7.90237 15.3167 7.90237 15.7072 8.29289Z%27 fill=%27black%27/%3E%3C/svg%3E%0A");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 1em 1em;
    mask-size: 1em 1em;
    -webkit-mask-position: center;
    mask-position: center;
}











.tour-details__gallery-thumb-carousel,
.tour-details__gallery-carousel {
    overflow: hidden;
}

.tour-details__gallery-thumb-carousel {
    margin-bottom: 60px;
}

.tour-details__gallery-carousel {
    margin-bottom: 10px;
}

.tour-details__gallery-thumb-carousel img {
    cursor: pointer;
}

.tour-details__gallery-image {
    position: relative;
}
.tour-details__gallery-image img{
    width: 100%;
}
.tour-details__gallery-thumb-image img{
    width: 100%;
}

.tour-details__gallery-links {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.tour-details__gallery-links a {
    display: block;
    width: 38px;
    height: 38px;
    background-color: rgba(var(--thm-black-rgb), .2);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    font-size: 14px;
    color: #fff;
    margin-left: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}


.tour-details__gallery-image:hover .tour-details__gallery-links a {
    background-color: #fff;
    color: var(--thm-secondary);
}

.tour-details__content .accrodion-grp {
    margin-bottom: 60px;
}