@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/webfonts/fa-brands-400.woff2") format("woff2");
}
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("assets/webfonts/fa-solid-900.woff2") format("woff2");
}
:root {
	--main-color: #000000;
	--second-color: #dbad76;
	--light-color: #eeeeee;
	--border-color: #cccccc;
	--text-color: rgba(0,0,0,.6);
	--border-radius: 5px;
	--form-height: 50px;
	--font-family: 'Inter', Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4 {
	margin: 0;
	line-height: 1.3;
	font-weight: 500;
}
html {
    scroll-behavior: smooth;
}
body {
    width: 100%;
    color: black;
    font-size: 17px;
	line-height: 1.6;
	font-family: var(--font-family);
	position: relative;
	margin: 0;
	padding: 50px 0 0;
}
#outer-wrap {
    overflow: hidden;
}
.full-width {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
}
.container, .has-sidebar #content-wrap {
	width: 1150px;
	margin: 0 auto;
	max-width: 90%;
	position: relative;
	z-index: 1;
}
ul, ol {
	margin: 0 0 20px 30px;
	padding: 0;
}
button {
    padding: 0;
    border: 0;
    cursor: pointer;
    font-family: var(--font-family);
    transition: .15s all;
}
*, *:before, *:after {
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}
p {
    margin: 0 0 15px;
}
a, :visited {
    color: black;
    text-decoration: none;
	transition: .15s all;
}
iframe {
    border: 0;
    max-width: 100%;
}
video {
    width: 100%;
    margin-bottom: -10px;
}
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}



/* Layout */
.right-sidebar #content-wrap, 
.left-sidebar #content-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.right-sidebar #primary {
    width: calc(100% - 360px);
}
.left-sidebar #primary {
    width: calc(100% - 360px);
}
.has-sidebar #sidebar {
    width: 300px;
    padding-bottom: 60px;
}
.right-sidebar #sidebar {
    order: 2;
}
@media (max-width: 960px) {
    .has-sidebar #primary, .has-sidebar #sidebar {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    #primary {
        order: 1;
    }
    #sidebar {
        order: 2;
    }
}


/* Header */
#site-header {
    position: fixed;
    z-index: 15;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    transition: transform .3s ease, opacity .3s ease;
}
.open-mobile-menu #site-header {
    background: white!important;
}
.is-visible #site-header {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.home:not(.has-fixed-header) #site-header {
    background: transparent;
    border-bottom: none;
    backdrop-filter: blur(20px);
}
#site-header-inner {
    position: relative;
}
.master-header-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	padding: 0 40px;
	height: 50px;
	width: 100%;
	gap: 100px;
}
#site-logo {
	width: 47px;
	z-index: 100;
}
#site-logo img {
    object-fit: contain;
}
.home:not(.has-fixed-header) #site-logo img {
    filter: invert(1);
}
.open-mobile-menu #site-logo img {
    filter: none!important;
}
#site-navigation {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#site-navigation-wrap .master-main-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 40px;
}
#site-navigation-wrap .master-main-menu > .menu-item {
    position: relative;
}
#site-navigation-wrap .master-main-menu > .menu-item > a {
	color: black;
	white-space: nowrap;
	height: 34px;
    line-height: 34px;
    display: block;
    position: relative;
    font-size: 15.5px;
    z-index: 100;
}
.home:not(.has-fixed-header) #site-navigation-wrap .master-main-menu > .menu-item > a {
    color: white;
}
#site-navigation-wrap .master-main-menu > .menu-item > a:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: black;
    transition: .3s all;
}
.home:not(.has-fixed-header) #site-navigation-wrap .master-main-menu > .menu-item > a:before {
    background: white;
}
#site-navigation-wrap .master-main-menu > .menu-item > a:hover:before {
    width: 100%;
}
#site-navigation-wrap .master-main-menu > .menu-item-has-children > a {
    padding-right: 15px;
}
#site-navigation-wrap .master-main-menu > .menu-item-has-children > a:after {
    content: "\e92e";
    font-family: Feather;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 13px;
}
#site-navigation-wrap .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    list-style: none;
    padding: 10px 0;
	border-bottom: 0;	
	z-index: 10;
	min-width: 160px;
	background: var(--main-color);
}
#site-navigation-wrap .master-main-menu > .menu-item > .sub-menu:before {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--main-color);
    position: absolute;
    bottom: 100%;
    left: 15px;
}
#site-navigation-wrap .menu-item-has-children:hover > .sub-menu {
	display: block;
}
#site-navigation-wrap .master-main-menu .sub-menu li {
	margin: 0;
	position: relative;
}
#site-navigation-wrap .sub-menu a {
    padding: 5px 15px;
    display: block;
	height: auto;
    white-space: nowrap;
    color: white;
}
#site-navigation-wrap .sub-menu a:hover {
	background: var(--main-color);
}
#site-navigation-wrap .sub-menu .sub-menu {
	position: absolute;
	left: 100%;
	top: 0;
	display: none;
	padding: 5px 0;
}
#site-navigation-wrap .sub-menu .menu-item-has-children > a:after {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 12px;
    font-weight: 500;
    transform: translateY(-50%);
}
#site-navigation-wrap .sub-menu .menu-item-has-children > a {
    padding-right: 30px;
    position: relative;
}
#mobile-sidebar-menu, .mobile-menu-area {
    display: none;
}
@media (max-width: 1250px) {
    .master-header-area {
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }
}
@media (max-width: 960px) {
    .master-header-area {
        justify-content: space-between;
    }
    #site-navigation-wrap {
        display: none;
    }
    #mobile-sidebar-menu, .mobile-menu-area {
        display: block;
    }
}


/* Mobile menu */
#mobile-sidebar-menu {
    width: 25px;
    cursor: pointer;
}
.mobil-menu-line-icon {
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.mobil-menu-line-icon span {
    width: 25px;
    height: 2px;
    margin-bottom: 5px;
    background: black;
    display: block;
    transition: 0.3s ease-in-out; /* Animasiya üçün vacibdir */
}
.home:not(.open-mobile-menu) .mobil-menu-line-icon span {
    background: white;
}
.home.has-fixed-header .mobil-menu-line-icon span {
    background: black!important;
}
/* Sonuncu span-ın marginini sıfırlayaq */
.mobil-menu-line-icon span:last-child {
    margin-bottom: 0;
}
/* "X" formasına çevrilmə vəziyyəti */
.open-mobile-menu .mobil-menu-line-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.open-mobile-menu .mobil-menu-line-icon span:nth-child(2) {
    opacity: 0; /* Ortadakı xətti gizlədirik */
}
.open-mobile-menu .mobil-menu-line-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu-area {
    position: fixed;
    top: 50px;
    right: 0;
    width: 100%;
    background: #fff;
    height: 100%;
    z-index: 1000;
    overflow: auto;
    display: none;
    transition: .3s all;
}
.mobile-menu-area * {
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close {
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 30px;
}
.mobile-menu-close-icon {
    cursor: pointer;
}
.mobile-menu-container {
    transform: translateX(60px);
    opacity: 0;
    transition: .6s all;
}
.mobile-menu-container .menu-container {
    width: 90%;
    margin: 0 auto;
    padding-top: 10px;
}
.animated-mobile-menu-container {
    transform: translateX(0);
    opacity: 1;
    transition-delay: .1s;
}
.active-mobile-menu {
	display: block;
}
.mobile-menu-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-menu-area a {
    position: relative;
    color: black;
    padding: 7px 0;
    display: inline-block;
    font-size: 19px;
}
.mobile-menu-area .menu-item-has-children > a:after {
    content: "\e92e";
    font-family: Feather;
    margin-left: 7px;
    font-size: 17px;
}
.mobile-menu-area .sub-menu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
    position: relative;
}
.mobile-menu-area .sub-menu a {
    font-weight: 400;
    font-size: 18px;
    padding: 5px 0;
    color: #dddddd;
}
.mobile-menu-area a:hover {
    opacity: .4;
}
.mobile-search-area {
    position: relative;
    padding: 0 30px;
    margin-bottom: 40px;
}
#mobile-search {
    position: relative;
}
.mobile-search-area input[type=text] {
    width: 100%;
    border: 0;
    height: 46px;
    font-size: 15px;
    padding: 0 20px;
    background: #191919;
    color: white;
    border-radius: 30px;
}
.mobile-search-area input::-webkit-input-placeholder {
    opacity: 1;
}
.mobile-search-area button {
    position: absolute;
    top: 0;
    right: 2px;
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 50%;
    font-weight: 500;
}
.master-overlay {
    position: fixed;
    width: 100%;
    height: calc(100% + 80px);
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
}



/* Menu search */
.master-menu-search-icon {
    cursor: pointer;
    font-size: 22px;
    margin-left: 20px;
}
.master-search-area {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 60px 0 80px;
    visibility: hidden;
    transform: translateY(-300px);
    transition: .5s all;
}
.visible-search {
    visibility: visible;
    transform: translateY(0);
}
#master-search {
    width: 100%;
    position: relative;
    opacity: 0;
    transition: .5s all;
}
.visible-search #master-search {
    opacity: 1;
    transition-delay: .3s;
}
.master-search-input {
    position: relative;
}
.master-search-input input[type="text"] {
    border: 0;
    padding: 0;
    font-size: 40px;
    height: 80px;
    font-weight: 700;
}
.master-search-input input[type="text"]::placeholder {
    opacity: 1;
    color: black;
}
.master-search-line {
    height: 2px;
    width: 0;
    background: black;
    transition: .8s all;
}
.visible-search .master-search-line {
    width: 100%;
    transition-delay: .5s;
}
.master-search-close {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    position: absolute;
    top: 16px;
    right: 0;
    cursor: pointer;
    z-index: 1;
}
.master-search-close i {
    position: relative;
    z-index: 2;
}
.master-search-close:before {
    content: '';
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: .3s all;
}
.master-search-close:hover:before {
    transform: translate(-50%, -50%) scale(1.2);
}
.master-search-results:not(:empty) {
    padding-top: 40px;
}


/* Page header */
#page-header {
    background: var(--light-color);
    padding: 25px 0;
    margin-bottom: 60px;
}
.page-header-title {
    font-size: 28px;
    line-height: 1.3;
}
.breadcrumbs {
    margin-top: 5px;
}
.breadcrumbs__separator {
    margin: 0 7px;
}



/* Index */
.master-posts {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.master-post {
    width: 50%;
    padding: 0 15px 30px;
}
.master-post-inner {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}
.master-post-thumbnail img {
    background: var(--light-color);
    transition: .5s all;
}
.master-post-thumbnail a {
    display: block;
    position: relative;
    overflow: hidden;
}
.master-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: .3s all;
}
.master-post-thumbnail a:hover img {
    transform: scale(1.05);
}
.master-post-details {
    padding: 30px;
}
.master-post-title {
    margin-bottom: 15px;
}
.master-post-title a {
    font-size: 26px;
    line-height: 1.4;
    display: block;
    font-weight: 500;
}
.master-post-excerpt {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
    word-break: break-words;
}
.master-post-button a {
    display: table;
}
.master-post-date {
    color: var(--text-color);
}
@media (max-width: 900px) {
    .master-post-title a {
        font-size: 20px;
    }
}
@media (max-width: 600px) {
    .master-post {
        width: 100%;
    }
}


/* Footer */
#footer {
    background-color: #000000;
    color: #fff;
    font-size: 16px;
}
.footer-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -40px;
    padding: 60px 0;
}
.footer-block {
    width: calc(100% / 6);
    padding: 0 15px 40px;
}
.footer-logo {
    width: 150px;
}
#footer a {
    color: #ccc;
}
.footer-links ul {
    list-style: none;
    margin: 0;
    font-size: 14px;
}
.footer-links ul li:not(:last-child) {
    margin-bottom: 5px;
}
.footer-links a {
    color: var(--text-color);
}
.footer-links a:hover {
    opacity: .5;
}
.footer-heading {
    font-weight: 500;
    margin-bottom: 15px;
    color: white;
}
.footer-desc {
    margin: 15px 0;
    line-height: 1.7;
}
.footer-contact-block:first-child {
    margin-bottom: 20px;
}
.footer-contact-block a {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 0.2px;
    font-size: 17px;
}
@media (max-width: 1000px) {
    .footer-block {
        width: 25%;
    }
}
@media (max-width: 700px) {
    .footer-block {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .footer-block {
        width: 100%;
        padding: 0;
        margin: 0 15px;
        border-bottom: 1px solid #222;
    }
    .footer-links {
        display: none;
    }
    .footer-heading {
        font-weight: 400;
        font-size: 14px;
        padding: 12px 0;
        margin: 0;
        position: relative;
    }
    .footer-heading:after {
        content: "\e92e";
        font-family: 'Feather';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        color: #999;
        font-size: 17px;
        transition: .3s all;
    }
    .active .footer-heading:after {
        transform: translateY(-50%) rotate(180deg);
    }
    .footer-links {
        padding: 0 0 15px 15px;
        font-size: 14px;
    }
}



/* Mailchimp */
.footer-form-block {
    position: relative;
}
.footer-form-block input {
    height: 40px;
    border: 1px solid #666;
    border-radius: var(--border-radius);
    font-size: 14px;
    padding-right: 100px;
    background: transparent;
}
.footer-form-block button {
    background: transparent;
    width: 100px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    color: white;
}



/* Footer bottom */
#footer-bottom {
    padding: 25px 0;
    font-size: 14px;
}
#footer-bottom, #footer-bottom a {
    color: #ccc;
}
.mfb-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .mfb-block {
        width: 100%;
        text-align: center;
    }
    .mfb-second {
        margin-top: 15px;
    }
}



/* Scroll to top */
#site-scroll-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 998;
    cursor: pointer;
    display: none;
    width: var(--form-height);
    height: var(--form-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsla(0, 0%, 92.5%, .6);
    backdrop-filter: saturate(180%) blur(5px);
    color: #222;
    font-size: 26px;
    text-align: center;
    border-radius: 50%;
    transition: .3s all;
}
#site-scroll-top:hover {
    color: white;
    background: var(--main-color);
}
@media (max-width: 767px) {
    #site-scroll-top {
        right: 20px;
        bottom: 40px;
        width: 44px;
        height: 44px;
    }
}


/* Social networks */
.social-networks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.colorfull-social .social-networks a {
    color: white;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    transition: .3s all;
}
.colorfull-social .facebook-social a {
    background: #6f6fd2;
}
.colorfull-social .instagram-social a {
    background: #bb8181;
}
.colorfull-social .youtube-social a {
    background: #e00000;
}
.colorfull-social .whatsapp-social a {
	background: #00da00;
}
.colorfull-social .twitter-social a {
	background: #55adee;
}
.colorfull-social .telegram-social a {
	background: #0088cc;
}
.colorfull-social .linkedin-social a {
	background: #0077b5;
}
.colorfull-social .tiktok-social a {
	background: #333333;
}
.colorfull-social .social-networks a:hover {
	background: #555;
}
.social-network-item-wl {
    width: 100%;
    margin-bottom: 7px;
}
.social-network-item-wl a {
    display: flex;
    align-items: center;
}
.social-network-label {
    padding-left: 12px;
}



/* Search results */
.search-title a {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    color: black;
    font-size: 20px;
}
.search-title:last-child a {
    border-bottom: 0;
}
.search-title a:hover {
    color: var(--main-color);
}
.live-search-button {
    margin-top: 30px;
}



/* Social share */
.master-social-share-area {
    margin-bottom: 40px;
}
.master-title {
    border-bottom: 1px solid var(--light-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.master-social-share-area ul {
    padding: 0;
    margin: 0 -5px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.master-social-share-area.share-with-label ul {
    justify-content: space-between;
}
.master-social-share-area:not(.share-with-label) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.master-social-share-area:not(.share-with-label) .master-title {
    border-bottom: 0;
    margin: 0;
    padding: 0 15px 0 0;
}
.master-social-share-area.share-with-label li {
    width: 20%;
}
.master-social-share-area li {
    padding: 0 5px;
    text-align: center;
    transition: .15s all;
}
.master-social-share-area a {
    display: block;
}
.master-social-share-area:not(.simple-share-area) a {
    color: white;
}
.master-social-share-area.simple-share-area a {
    color: black;
}
.master-social-share-area.share-with-label a {
    padding: 5px 15px;
}
.master-social-share-area:not(.share-with-label) a {
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    text-align: center;
}
.share-with-label li .master-label {
    padding-left: 10px;
}
.simple-share-area.share-with-label a {
    border: 1px solid #eee;
}
.master-social-share-area:not(.simple-share-area) .twitter-share a {
    background: #00aced;
}
.master-social-share-area:not(.simple-share-area) .twitter-share a:hover {
    background: #0093cb;
}
.master-social-share-area:not(.simple-share-area) .facebook-share a {
    background: #3b5998;
}
.master-social-share-area:not(.simple-share-area) .facebook-share a:hover {
    background: #324b80;
}
.master-social-share-area:not(.simple-share-area) .telegram-share a {
    background: #0088cc;
}
.master-social-share-area:not(.simple-share-area) .telegram-share a:hover {
    background: #3e659c;
}
.master-social-share-area:not(.simple-share-area) .email-share a {
    background: #e40303;
}
.master-social-share-area:not(.simple-share-area) .email-share a:hover {
    background: #ca0303;
}
.master-social-share-area:not(.simple-share-area) .whatsapp-share a {
    background: #30d244;
}
.master-social-share-area:not(.simple-share-area) .whatsapp-share a:hover {
    background: #25b938;
}
@media (min-width: 960px) {
    .whatsapp-mobile-share {
        display: none;
    }
}
@media (max-width: 959px) {
    .whatsapp-desktop-share {
        display: none;
    }
}
@media (min-width: 960px) and (max-width: 1050px) {
    .master-label {
        display: none;
    }
    .master-social-share-area li .fa {
        margin-right: 0;
    }
}
@media (min-width: 270px) and (max-width: 767px) {
    .master-label {
        display: none;
    }
    .master-social-share-area li .fa {
        margin-right: 0;
    }
}
@media (max-width: 269px) {
    .master-social-share-area li {
        width: 100%;
        margin-bottom: 5px;
    }
}


/* Post navigation */
#post-navigation-wrap {
    background: var(--light-color);
    padding: 20px 0;
}
.post-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}
.next-previous-post {
    padding: 0 15px;
}
.no-prev-es-post {
    display: table;
    margin-left: auto;
}
.post-navigation a {
    color: black;
    position: relative;
	width: 50%;
}
.next-previous-heading {
    display: table;
    background-color: var(--main-color);
    color: white;
    padding: 3px 20px;
    margin-bottom: 10px;
    transition: .15s all;
}
.post-navigation a:hover .next-previous-heading {
    background: var(--second-color);
}
.next-post .next-previous-heading {
    margin-left: auto;
    margin-right: 0;
}
.next-post {
    text-align: right;
    margin-left: auto;
}
.prev-post-no {
    display: table;
    margin-right: 0;
    margin-left: auto;
}
.next-previous-post > div {
    position: relative;
}
.next-previous-post > div:before {
    position: absolute;
    top: 0;
    font-family: 'Font Awesome 6 Free';
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: white;
    text-align: center;
    border-radius: 3px;
    background: var(--main-color);
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
}
.prev-post > div {
    padding-left: 40px;
}
.prev-post > div:before {
    content: '\f104';
    margin-right: 15px;
    left: 0;
}
.next-post > div {
    padding-right: 40px;
}
.next-post > div:before {
    content: '\f105';
    margin-left: 15px;
    right: 0;
}
@media (max-width: 767px) {
	.post-navigation a {
		width: 100%;
	}
}



/* Wordpress default gallery css */
.ms-gallery.ms-gallery-type-false {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.ms-gallery-type-true {
    column-gap: 0;
    margin: 0 -10px;
}
.ms-gallery-type-false .ms-image-9 {
    width: calc(100% / 9);
}
.ms-gallery-type-false .ms-image-8 {
    width: calc(100% / 8);
}
.ms-gallery-type-false .ms-image-7 {
    width: calc(100% / 7);
}
.ms-gallery-type-false .ms-image-6 {
    width: calc(100% / 6);
}
.ms-gallery-type-false .ms-image-5 {
    width: 20%;
}
.ms-gallery-type-false .ms-image-4 {
    width: 25%;
}
.ms-gallery-type-false .ms-image-3 {
    width: 33.3%;
}
.ms-gallery-type-false .ms-image-2 {
    width: 50%;
}
.ms-gallery-type-false .ms-image-1 {
    width: 100%;
}
.ms-image {
    padding: 0 10px 20px;
    margin: 0;
}
.ms-image a {
    display: block;
}
.ms-image img {
    background: #eee;
}
figure.image {
    margin: 0 0 20px;
}
.image figcaption {
    font-style: italic;
    margin-top: 5px;
}
.ms-gallery-tools {
    display: none;
}
.ms-gallery-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: red;
    border-radius: 50%;
}
.ms-gallery-pagination.swiper-pagination {
    margin: 15px -5px 30px;
}
.ms-gallery-nav:before {
    font-family: Feather;
}
.ms-gallery-nav-prev:before {
    content: "\e910";
}
.ms-gallery-nav-next:before {
    content: "\e912";
}
@media (max-width: 340px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }
    .ms-gallery-type-true {
        column-count: 1!important;
    }
    .ms-image {
        width: 100%!important;
        padding: 0 7.5px 15px;
    }
}
@media (min-width: 341px) and (max-width: 767px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }
    .ms-gallery-type-true {
        column-count: 2!important;
    }
    .ms-image {
        width: 50%!important;
        padding: 0 7.5px 15px;
    }
}
@media (min-width: 767px) and (max-width: 959px) {
    .ms-gallery-type-true {
        column-count: 3!important;
    }
    .ms-image {
        width: 33.3%!important;
    }
}



/* Sidebar */
.master-widget:not(:last-child) {
    margin-bottom: 40px;
}
.master-sidebar-title {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 15px;
}



/* Sidebar types */
.sidebar-type-item {
    margin-bottom: 10px;
}
.sidebar-type-item a {
    color: black;
    height: 80px;
    display: flex;
    align-items: center;
    background: #eee;
    border-radius: var(--border-radius);
    padding: 0 50px 0 20px;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    transition: .3s all;
}
.sidebar-type-item a:hover {
    transform: translateX(5px);
}
.active-type-item a {
    background: var(--main-color);
    color: white;
    pointer-events: none;
}
.sidebar-type-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


/* Sidebar posts */
.sidebar-post-item {
    margin-bottom: 25px;
}
.sidebar-post-item a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: black;
    line-height: 1.4;
}
.sidebar-post-item a:hover {
    color: var(--main-color);
}
.sidebar-post-thumbnail {
    width: 100px;
}
.sidebar-post-thumbnail img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.sidebar-post-details {
    width: calc(100% - 120px);
}
.sidebar-post-title {
    font-weight: 500;
    margin-bottom: 10px;
}



/* Sidebar archives */
.widget-archives {
    margin-top: 7px;
}
.widget-archives a {
    display: block;
    border-bottom: 1px solid var(--light-color);
    padding-bottom: 7px;
    padding-top: 7px;
    color: black;
}
.widget-archives a:hover {
    color: var(--main-color);
}
.widget-archives a:before {
    content: '\f114';
    font-family: FontAwesome;
    margin-right: 10px;
    color: black;
}
.sidebar-search {
    position: relative;
}
.sidebar-search input {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    color: black;
    padding: 0 15px;
    font-size: 15px;
}
.sidebar-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    background: var(--main-color);
    color: white;
}


/* Single post */
.single-content-part {
    width: 600px;
    margin: 0 auto;
    padding: 80px 0;
    max-width: 90%;
}
.single-post-title {
    margin-bottom: 50px;
}
.single-post-title h1 {
    font-size: 38px;
}
.single-post-thumbnail {
    margin-bottom: 30px;
}
.single-post-thumbnail img {
    background: var(--light-color);
	width: auto;
	max-height: 350px;
}
.single-post-meta {
    margin-top: 15px;
}
.single-post-date, .single-post-meta a {
    color: #666;
}
.single-post-date, .single-post-category, .single-post-author {
    display: inline-block;
    vertical-align: middle;
    padding-right: 30px;
}
.single-post-date:before {
    content: '\f073';
    font-family: 'FontAwesome';
    margin-right: 10px;
    color: black;
}
.single-post-category:before {
    content: '\f044';
    font-family: 'FontAwesome';
    margin-right: 5px;
}
.single-post-author:before {
    content: '\f2be';
    font-family: 'FontAwesome';
    margin-right: 5px;
}
.single-post-container-main {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}
.single-content {
    line-height: 1.7;
}
.single-content img {
	width: auto;
	max-height: 350px;
}
.single-content .ms-gallery img {
    width: 100%!important;
    max-height: inherit!important;
    height: 100%!important;
}
.aligncenter {
    margin: 0 auto;
}
.single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
    text-align: left;
    margin-bottom: 10px;
}
.single-content ul, .single-content ol {
    text-align: left;
}
.master-embed {
    position: relative;
    padding-top: 56%;
}
.master-embed iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.master-table {
    overflow-x: auto;
    max-width: 100%;
}
@media (max-width: 700px) {
    .single-post-title h1 {
        font-size: 26px;
    }
}



/* Designed List */
.designed-list ul {
    list-style: none;
    margin-left: 20px;
}
.designed-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.designed-list ul li:before {
    content: '\f138';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 2px;
    left: 0;
    font-weight: 900;
    color: var(--main-color);
    font-size: 13px;
}



/* Single Post Author */
.single-author-area {
    margin-top: 40px;
}
.single-author {
    display: table;
    width: 100%;
}
.single-author-block {
    display: table-cell;
    vertical-align: top;
}
.single-author-first {
    width: 150px;
}
.single-author-second {
    width: calc(100% - 150px);
    padding-left: 25px;
    padding-top: 5px;
}
.single-author img {
    height: 150px;
    width: 150px;
    -o-object-fit: cover;
       object-fit: cover;
}
.single-author-name {
    font-size: 20px;
}
.single-author-profession {
    font-size: 17px;
    margin-bottom: 10px;
}
.single-author-description {
    margin-bottom: 10px;
}
.no-image-author:before {
    content: '\f2be';
    font-family: FontAwesome;
    width: 150px;
    height: 150px;
    background: var(--light-color);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 76px;
    color: #999;
}
@media (max-width: 550px) {
	.single-author-block {
		display: block;
	}
	.single-author-second {
		width: 100%;
		padding-left: 0px;
		padding-top: 15px;
	}
}




/* Youtube */
.youtube-videos {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.youtube-video {
    padding: 0 15px 30px;
    width: 25%;
}
.youtube-thumbnail {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light-color);
    height: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.youtube-icon-block {
    position: relative;
    width: 100%;
    cursor: pointer;
    height: 100%;
}
.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: rgba(22,22,22,0.65);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    transition: .5s all;
}
.youtube-thumbnail:hover .youtube-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}
.youtube-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: white;
    transition: .5s all;
}
.youtube-thumbnail:hover .youtube-play-icon {
    opacity: 1;
}
.youtube-iframe {
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 10;
    top: 0;
}
.youtube-heading a {
    font-size: 15px;
    display: block;
    padding: 10px 0;
    line-height: 1.3;
    color: black;
    font-weight: 500;
}
.youtube-videos .next-videos {
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.youtube-loading-area {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 5px black;
    opacity: 0;
}
@media (max-width: 960px) {
	.youtube-icon, .youtube-play-icon {
		opacity: 1;
	}
	.play-video:before {
	    font-size: 22px;
	}
}
@media (max-width: 1100px) {
    .youtube-video {
        width: 33.3%;
    }
}
@media (max-width: 850px) {
    .youtube-video {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .youtube-video {
        width: 100%;
    }
}



/* Instagram */
.instagram-images {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.instagram-image {
	width: 25%;
	padding: 0 10px 20px;
}
.instagram-ratio {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 100%;
}
.instagram-image-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .3s all;
    overflow: hidden;
    background-color: var(--light-color);
}
.instagram-image-link:hover .instagram-image-details {
	opacity: 1;
	transition: .3s all;
}
.instagram-image-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
	transition: .3s all;
	opacity: 0;
}
.instagram-image-link:hover:before {
	opacity: 1;
}
.instagram-image-detallar {
    color: white;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-weight: 500;
	opacity: 0;
	transition: .3s all;
}
.instagram-icon {
    margin: 0 3px;
}
.instagram-icon:before {
	font-family: 'FontAwesome';
	margin-right: 7px;
}
.next-images {
    width: 100%;
    padding: 0 15px;
}
.next-image-button {
    display: table;
    margin: 0 auto;
    background: var(--main-color);
    color: white;
    padding: 10px 25px;
    line-height: 1.3;
    font-weight: 500;
    cursor: pointer;
    transition: .15s all;
}
.next-image-button:hover {
    background: var(--second-color);
}
.next-image-button::-moz-selection {
    background: transparent;
}
.next-image-button::selection {
    background: transparent;
}
.instagram-nav-button {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 1;
    font-size: 36px;
    text-shadow: 0 0 15px black;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.instagram-button-prev {
    left: 0;
}
.instagram-button-next {
    right: 0;
}
.instagram-ratio-carousel {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.instagram-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.instagram-carousel, .instagram-carousel .swiper-wrapper, .instagram-carousel .swipet-slide {
    height: 100%;
}
.instagram-icon-area {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.instagram-icon-inner {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.instagram-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    transition: .5s all;
}
.instagram-video:hover .instagram-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}
@media (min-width: 601px) and (max-width: 999px) {
	.instagram-image {
		width: 33.3%;
	}
}
@media (max-width: 600px) {
	.instagram-image {
		width: 50%;
	}
}


/* FAQ */
.master-accordion-title {
	color: black;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 15px 15px 30px;
    cursor: pointer;
    border-bottom: 1px solid var(--light-color);
    position: relative;
    line-height: 1.4;
    user-select: none;
}
.master-accordion-title:before {
    content: "\f067";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 15px;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 17px;
    color: var(--main-color);
}
.master-accordion-title.active:before {
    content: "\f068";
}
.master-accordion-content {
    color: black;
    margin-top: 15px;
    display: none;
}


/* Default input */
input[type="text"], input[type="email"], input[type="password"], input[type="number"], select {
    box-shadow: none;
    appearance: none;
    font-family: var(--font-family);
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    height: var(--form-height);
    line-height: var(--form-height);
    padding: 0 15px;
    color: black;
    font-size: 15px;
    background: white;
}
textarea {
    box-shadow: none
    appearance: none;
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    width: 100%;
    padding: 10px 15px;
    color: black;
    font-size: 15px;
    resize: vertical;
    min-height: 90px;
}
input[type=radio] {
    box-shadow: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: absolute;
    cursor: pointer;
    background: white;
    top: 0;
    left: 0;
}
input[type=radio]:checked {
    border-color: var(--main-color);
}
input[type=radio]:checked:before {
    content: '';
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
input[type=radio] + label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
}
input[type=checkbox] {
    box-shadow: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    background: white;
    top: 2px;
    left: 0;
    margin: 0;
    cursor: pointer;
}
input[type=checkbox]:checked {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}
input[type=checkbox]:checked:before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
}
input[type=checkbox] + label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
    margin-bottom: 0;
}
input[type=file]::file-selector-button {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    padding: 5px 15px;
}
sup, sub {
    font-size: 12px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
select {
    -webkit-appearance: none;
    background: transparent;
    background-image: url(/uploads/extra/chevron-down.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 5px);
    background-position-y: 15px;
    background-size: 18px;
    cursor: pointer;
    padding-right: 30px;
    border-radius: var(--border-radius);
}


/* Form */
.grecaptcha-badge {
    display: none;
}
.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}
.form-group .form-element {
    padding: 0 15px 15px;
}
.form-100 {
    width: 100%;
}
.form-85 {
    width: 85%;
}
.form-50 {
    width: 50%;
}
.form-33 {
    width: 33.3%;
}
.form-25 {
    width: 25%;
}
.form-15 {
    width: 15%;
}
.form-element {
    padding-bottom: 15px;
	position: relative;
}
.form-element label {
    display: block;
    width: 100%;
    margin-bottom: 3px;
}
.form-simple-file label {
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
}
.fsf-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.fsf-button {
    border: 1px solid #ddd;
    background: #eee;
    padding: 5px 15px;
    line-height: 1.3;
    margin-right: 10px;
}
.faf-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.faf-items label {
    width: auto;
}
.faf-item {
    padding: 0 5px;
}
.faf-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.faf-item i {
    width: 80px;
    height: 80px;
    border: 2px dashed #ddd;
    line-height: 80px;
    text-align: center;
    font-size: 22px;
    background: #f5f5f5;
    cursor: pointer;
}
.form-result:not(:empty) {
    margin-top: 20px;
}
.form-simple-file input, .form-advanced-file input {
    display: none;
}
.form-choices {
    display: flex;
    flex-wrap: wrap;
}
.form-choices .form-choice {
    padding-right: 30px;
}
.form-choice {
    position: relative;
}
.alert {
    padding: 10px 15px 10px 55px;
    text-align: left;
    min-height: 42px;
	position: relative;
	border-radius: var(--border-radius);
}
.alert-danger {
    color: #8d423b;
    background-color: #ffe2df;
    border-color: #ffd7d3;
}
.alert-success {
    color: #1d6944;
    background-color: #d4ffd3;
    border-color: #c3ecd8;
}
.alert-info {
    color: #281b80;
    background-color: #e0e0ff;
    border-color: #e0e0ff;
}
.alert:before {
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    left: 5px;
    height: 35px;
    width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: white;
    border-radius: var(--border-radius);
    transform: translateY(-50%);
}
.alert-danger:before {
    content: "\f071";
    background: #da6f64;
}
.alert-success:before {
    content: '\f058';
    background: #48c346;
}
.alert-info:before {
    content: "\f05a";
    background: #464fc3;
}
@media (max-width: 650px) {
	.form-50, .form-33, .form-25 {
		width: 100%;
	}
}


/* Progress bar */
.progress {
    background: #eee;
    border-radius: 5px;
    display: none;
    position: relative;
    margin-bottom: 20px;
    margin-top: 30px;
}
.progress-bar {
    height: 5px;
    line-height: 5px;
    background: red;
    font-weight: 500;
    color: white;
    padding: 0 15px;
    width: 0%;
    position: relative;
    max-width: 100%;
}
.progress-bar-text-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: 0;
    top: -25px;
    font-weight: 500;
    width: 100%;
}


/* ACF Map */
.acf-map-area {
    position: relative;
}
.acf-map {
	height: 450px;
	background: #eee;
	position: relative;
	border-radius: var(--border-radius);
	overflow: hidden;
}
.acf-iframe-map iframe {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 1;
}
.map-loading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    background: #ddd;
}
.map-loading-text {
    padding-top: 40px;
    font-weight: 500;
    font-size: 18px;
}



/* Comments */
.default-comment-form-area {
    display: none;
}
.comment-reply-area {
    margin-bottom: 20px;
}
#comments {
    padding-bottom: 20px;
}
.comment-count-heading {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.comment-list {
    list-style: none;
    margin: 0;
}
.comment {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
}
.comment-author, .comment-block {
    display: table-cell;
    vertical-align: top;
}
.comment-author {
    width: 70px;
    padding-right: 10px;
}
.comment-author .fa-solid {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 30px;
    color: #999;
}
.comment-author img {
    border: 1px solid #ddd;
    padding: 3px;
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
}
.comment-block {
    border: 1px solid #ddd;
    padding: 10px 15px;
    width: calc(100% - 70px);
}
.comment-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
}
.date.float-right {
    color: #a7a7a7;
}
.comment-rating {
    display: inline-flex;
    color: orange;
    font-size: 13px;
}
.comment-text {
    margin-top: 5px;
}
.comment-text p {
    margin-bottom: 5px;
}
.comment-reply {
    text-decoration: underline;
    color: var(--main-color);
    cursor: pointer;
    display: inline-block;
}
.comments .children {
    margin: 0 0 0 20px;
    list-style: none;
}
.comments .children > .comment {
    margin-bottom: 0;
}
.byuser .comment-block {
    background: #f5f5f5;
}
.comment-reply-heading-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}
.comment-reply-heading, .comment-reply-cancel {
    padding: 5px 0;
}
.comment-reply-cancel {
    text-decoration: underline;
    color: red;
    cursor: pointer;
    font-size: 14px;
}
.logged-user-comment-author {
    margin-bottom: 10px;
}
.comment-name {
    padding-right: 5px;
}
.default-comment-form {
    width: 100%;
    margin-top: 15px;
}
@-webkit-keyframes wd-rotate {
    100% {
		transform: rotate(360deg);
	}
}
@keyframes wd-rotate {
    100% {
		transform: rotate(360deg);
	}
}
@media (max-width: 600px) {
    .comment-author {
        width: 40px;
        padding-right: 5px;
    }
    .comment-author img {
        width: 35px;
        height: 35px;
    }
}


/* Rating */
.comment-ratings {
    display: flex;
    align-items: center;
    margin: 0 -2px;
}
.comment-ratings input {
    display: none;
}
.comment-rating label {
    padding: 0 2px!important;
}
.comment-rating label:before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    color: var(--light-color);
    font-size: 20px;
}
.active-comment-rating label:before {
    color: orange;
}


/* Gallery */
.master-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}
.master-image {
    width: 25%;
    padding: 0 10px 20px;
}
.master-image a {
    display: block;
    overflow: hidden;
    position: relative;
}
.master-image img {
	background: var(--light-color);
}
.master-image-overlay {
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s all;
}
.master-image a:hover .master-image-overlay {
    opacity: .3;
}
@media (max-width: 350px) {
	.master-image {
		width: 100%;
	}
}
@media (min-width: 351px) and (max-width: 767px) {
	.master-gallery {
		margin: 0 -5px;
	}
	.master-image {
		width: 50%;
		padding: 0 5px 10px;
	}
}
@media (min-width: 768px) and (max-width: 999px) {
	.master-image {
		width: 33.3%;
	}
}



/* Table */
table {
    line-height: 1.5;
    border-collapse: collapse;
	text-align: left;
	border: 0;
}
table td {
    border: 0;
    padding: 0;
}



/* Toolbar */
.toolbar-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000000;
}
.toolbar-area a {
    position: absolute;
    color: white;
    border-radius: 50%;
    left: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
	font-size: 20px;
	display: block;
}
.toolbar-phone {
    background: #6565ff;
    bottom: 0;
}
.toolbar-whatsapp {
    background: #45c71b;
    bottom: 55px;
}
@media (min-width: 768px) {
	.toolbar-area {
	    display: none;
	}
}


/* Loading */
.loading {
	color: transparent!important;
	position: relative;
	pointer-events: none;
}
.loading:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: opacity 0s ease;
	opacity: 1;
    animation: loading 450ms infinite linear;
    transition: opacity .25s ease;
}
.loading:before {
	visibility: hidden;
}
.small-loading-icon:after {
    width: 15px;
    height: 15px;
    margin-left: -7.5px;
    margin-top: -7.5px;
}
.big-loading-icon:after {
    width: 45px;
    height: 45px;
    margin-left: -22.5px;
    margin-top: -22.5px;
}
.light-loading-icon:after {
    border: 1px solid rgba(255,255,255,.3);
    border-left-color: #fff;
}
.dark-loading-icon:after {
    border: 1px solid rgba(0,0,0,.3);
    border-left-color: #000;
}
@-webkit-keyframes loading {
    100% {
		transform: rotate(360deg);
	}
}
@keyframes loading {
    100% {
		transform: rotate(360deg);
	}
}


/* QR code */
.qr-code img {
    width: 150px;
}



/* Swiper js */
.master-slider {
    height: 0;
    overflow: hidden;
}
.master-slider.swiper-initialized {
    height: auto;
}



/* Hide admin bar */
.active-admin-bar {
    margin-top: 35px;
}
.admin-bar {
    display: none;
}
.active-admin-bar .admin-bar {
    display: flex;
}
.hide-admin-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    z-index: 100000;
}
.active-admin-bar .hide-admin-bar {
    top: 35px;
}


/* Pagination */
.pagination {
    margin: 30px 0 0;
    list-style: none;
}
.page-item {
    display: inline-block;
}
.page-item a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--light-color);
    margin-right: 5px;
    color: black;
    padding: 0;
}
.page-item.active a, 
.page-item a:hover {
    background: var(--main-color);
    color: white;
}


/* Fancybox */
body.compensate-for-scrollbar {
    overflow: unset!important;
}
.fancybox-active .admin-bar {
    z-index: 1;
}


/* Mobile sticky phone */
.mobile-sticky-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
}
.mobile-sticky-elements a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-top: 7px;
    font-size: 18px;
}
.mobile-sticky-phone {
    background: var(--main-color);
}
.mobile-sticky-whatsapp {
    background: #25ce25;
}
@media (min-width: 801px) {
    .mobile-sticky-area {
        display: none;
    }
}



/* MailChimp */
#mailchimp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
#mailchimp > div {
    padding: 0 5px;
}
.mailchimp-element input {
    border: 1px solid #ddd;
    height: 40px;
    padding: 0 10px;
}
.mailchimp-button button {
    background: red;
    height: 40px;
    padding: 0 30px;
    font-size: 17px;
    color: white;
    text-transform: uppercase;
}
.mailchimp-result:not(:empty) {
    display: table;
    margin: 10px auto 0;
}
.mailchimp-success {
    position: relative;
    padding-left: 35px;
    font-weight: 500;
}
.mailchimp-success:before {
    content: '\f058';
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
}



/* Notify template */
.notify-block-area {
    text-align: center;
    margin-bottom: 30px;
}
.notify-block-icon-area {
    width: 150px;
    height: 150px;
    background: #00a900;
    display: flex;
    align-items: center;
    margin: 0 auto 30px;
    justify-content: center;
    border-radius: 30px;
    color: white;
    font-size: 100px;
}
.notify-fe-fe-check {
    background: #00a900;
}
.notify-fe-fe-x {
    background: #ff0000;
}
.notify-block-area h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.notify-block-description {
    color: #666;
    margin: 0 auto 25px;
    width: 600px;
    max-width: 100%;
}



/* Callout */
.callout-form-element {
    margin-bottom: 10px;
}
.callout-form-element input {
    width: 100%;
    border: 1px solid #ddd;
    height: var(--form-height);
    font-size: 15px;
    padding: 0 15px;
}
.success-message {
    text-align: center;
    color: #ccc;
    display: none;
}
.success-message:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    display: table;
    margin: 0 auto 15px;
    font-size: 24px;
    color: yellow;
}


/* Callout modal */
#callout-modal-form {
    width: 500px;
    display: none;
}


/* Master buttons */
.button {
    height: var(--form-height);
    cursor: pointer;
    padding: 0 30px;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    line-height: 1.2;
    user-select: none;
    transition: .15s all;
}
.simple-button {
    height: 35px;
    cursor: pointer;
    padding: 0 15px;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    line-height: 1.2;
    user-select: none;
    transition: .15s all;
}
.primary-button {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
.primary-button:hover {
    background: var(--second-color);
    color: white;
    border-color: var(--second-color);
}
.outline-button {
    background: #fff;
    color: black;
    border: 1px solid var(--main-color);
}
.outline-button:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}
.colored-button {
    background: var(--second-color);
    color: white;
    border: 1px solid var(--second-color);
}
.colored-button:hover {
    background: #f75848;
    border-color: #f75848;
}
.wide-button {
    width: 100%;
}
.icon-right-button:after {
    content: "\e912";
    font-family: Feather;
    margin-left: 10px;
    margin-right: -10px;
    font-size: 14px;
}
.icon-left-button:before {
    content: "\e912";
    font-family: Feather;
    margin-left: -10px;
    margin-right: 10px;
    font-size: 14px;
}
.icon-right-button.loading:after {
    margin-left: -7.5px;
    margin-right: 0;
}



/* Animations */
.animate {
    transition: 1.2s all;
}
.scale-animation {
    transform: scale(0.5);
    opacity: 0;
}
.fade-animation {
    opacity: 0;
}
.left-to-right-animation {
    transform: translateX(-100px);
    opacity: 0;
}
.right-to-left-animation {
    transform: translateX(100px);
    opacity: 0;
}
.top-to-bottom-animation {
    transform: translateY(-100px);
    opacity: 0;
}
.bottom-to-top-animation {
    transform: translateY(100px);
    opacity: 0;
}
.animated {
    opacity: 1;
    transform: none;
}


/* Topbar */
#topbar-wrap {
    border-bottom: 1px solid #ddd;
}
.topbar-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 -15px;
}
.topbar-block {
    padding: 5px 15px;
}
.topbar-elements {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px;
}
.topbar-element {
    padding: 5px 15px;
}



/* Master heading */
.heading-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px -30px;
}
.heading-block {
    padding: 0 15px 30px;
}
.hb-1 {
    width: 66.6%;
}
.hb-2 {
    width: 33.3%;
}
.heading-area {
    margin-bottom: 40px;
}
.page-heading-area {
    margin-bottom: 80px;
}
.heading-blocks .heading-area {
    margin-bottom: 0;
}
.sub-heading {
    margin-bottom: 10px;
}
.heading {
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}
.description {
    margin-top: 15px;
    color: var(--text-color);
}
.center-heading {
    text-align: center;
}
.center-heading .description {
    margin-left: auto;
    margin-right: auto;
}
.light-heading .heading,
.light-heading .sub-heading,
.light-heading .description {
    color: white;
}
.light-heading .description {
    color: #999;
}
@media (max-width: 1400px) {
    .heading {
        font-size: 40px;
    }
}
@media (max-width: 850px) {
    .heading {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .heading-block {
        width: 100%;
    }
    .heading {
        font-size: 28px;
    }
    .page-heading-area {
        margin-bottom: 40px;
    } 
}
@media (max-width: 600px) {
    .heading {
        font-size: 24px;
    }
}



/* Whatsapp */
.whatsapp-toolbar-area {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.whatsapp-icon-box {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-toolbar-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    padding-right: 20px;
    display: none;
}
.whatsapp-toolbar-text span {
    display: block;
    background: white;
    color: black;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(92 92 92 / 12%);
    line-height: 1.2;
    text-align: center;
    min-width: 170px;
    font-weight: 500;
    position: relative;
    z-index: -1;
}
.whatsapp-toolbar-text span:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #21ad21;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    z-index: 1;
}
.whatsapp-toolbar-icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: #21ad21;
    border-radius: 50%;
    font-size: 32px;
}



/* Language switcher */
.language-list-switcher ul {
    margin: 0 -7px;
    list-style: none;
    display: flex;
}
.language-list-switcher li {
    padding: 0 7px;
}
.language-list-switcher .language-item a {
    display: flex;
    align-items: center;
}
.language-list-switcher .language-item img {
    width: 22px;
    height: 22px;
}
.language-list-switcher .language-label {
    padding-left: 7px;
    font-weight: 500;
    color: black;
}



.language-dropdown-switcher ul {
    margin: 0 10px 0 0;
    list-style: none;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}
.language-dropdown-switcher .ls-sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -8px;
    width: 100%;
    box-shadow: 0 0 10px rgb(0 0 0 / 8%);
    border-radius: 8px;
    min-width: 40px;
    background: white;
    padding: 8px 0;
}
.language-dropdown-switcher img {
    width: 24px;
    height: 24px;
}
.language-dropdown-switcher .language-label {
    padding-left: 10px;
    font-weight: 500;
    transition: .3s all;
}
.language-dropdown-switcher:hover .ls-sub-menu {
    display: block;
}
.language-dropdown-switcher .ls-current-lang {
    display: flex;
    align-items: center;
    height: 38px;
    border-radius: 8px;
}
.language-dropdown-switcher .ls-current-lang:after {
    content: "\e92e";
    font-family: Feather;
    font-size: 14px;
    margin-left: 5px;
}
.language-dropdown-switcher .language-item {
    display: flex;
    justify-content: center;
}
.language-dropdown-switcher .language-item a {
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.language-dropdown-switcher .language-item a:hover .language-label {
    opacity: .5;
}
.language-dropdown-switcher .language-item:not(:last-child) {
    margin-bottom: 5px;
}
.language-dropdown-switcher .language-switcher.language-dropdown-switcher {
    margin-left: 15px;
}



/* Canvas sidebar */
.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: .7;
    display: block;
    z-index: 999;
    visibility: hidden;
}
.active-canvas-overlay {
    visibility: visible;
}
.canvas-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    background: white;
    height: 100%;
    transform: translate3d(100%,0,0);
    z-index: 10000;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.active-canvas-sidebar {
    transform: none;
}
.canvas-sidebar-header {
    border-bottom: 1px solid var(--light-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}
.csh-heading {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 22px;
}
.canvas-sidebar-body {
    padding: 40px 20px;
    overflow-y: auto;
    height: calc(100% - 97px);
}
.csh-close {
    font-size: 15px;
    cursor: pointer;
}
.csh-close:after {
    content: "\ea02";
    font-family: Feather;
    margin-left: 5px;
    transform: translateY(3px);
    display: inline-block;
    font-size: 18px;
}



/* Audio */
audio {
    height: 40px;
    width: 100%;
}
audio::-webkit-media-controls-enclosure {
    border-radius: 5px;
}
audio::-webkit-media-controls-panel {
    background: #ddd;
    height: 40px;
}



/* Swiper */
.relative-slider {
    position: relative;
}
.side-swiper-nav {
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}
.ssn-prev {
    left: -30px;
}
.ssn-next {
    right: -30px;
}
.center-swiper-navigations {
    display: flex;
    justify-content: center;
    margin: 0 -5px;
}
.center-swiper-nav {
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
}
.swiper-pagination {
    display: inline-flex;
    gap: 6px;
}
.swiper-pagination .swiper-pagination-bullet {
    cursor: pointer;
    background: #ddd;
    margin: 0!important;
    border-radius: 0!important;
    transition: .3s all;
}
.light-swiper-pagination .swiper-pagination-bullet {
    background: #fff!important;
    opacity: .3;
}
.light-swiper-pagination .swiper-pagination-bullet-active, 
.light-swiper-pagination .swiper-pagination-bullet:hover {
    opacity: 1;
}
.dots-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.liner-swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 2px;
    display: block;
}
.center-swiper-pagination {
    justify-content: center;
}
.swiper-slide .master-post {
    width: 100%;
    padding: 0;
}



/* Tabs */
.tabs-heading {
    list-style: none;
    margin: 0;
    display: flex;
    border-bottom: 1px solid #ccc;
}
.tabs-heading li {
    text-align: center;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0 20px;
    line-height: 1.2;
    color: #888;
}
.tabs-heading .active-tab {
    color: black;
}
.tabs-heading .active-tab:before {
    content: '';
    height: 3px;
    width: 100%;
    background: var(--main-color);
    left: 0;
    bottom: -1.5px;
    position: absolute;
}
.tabs-body > div:not(:first-child) {
    display: none;
}



/* Master scroll */
.master-scrolls ::-webkit-scrollbar, .master-scroll::-webkit-scrollbar  {
    width: 3px;
}
.master-scrolls ::-webkit-scrollbar-track, .master-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.master-scrolls ::-webkit-scrollbar-thumb, .master-scroll::-webkit-scrollbar-thumb {
    background: #888;
}
.master-scrolls ::-webkit-scrollbar-thumb:hover, .master-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}



/* FontAwesome */
.fa-solid:before {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
}
.fa-brands:before {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
}
.fa-facebook:before {
    content: "\f09a";
}
.fa-instagram:before {
    content: "\f16d";
}
.fa-youtube:before {
    content: "\f167";
}
.fa-x-twitter:before {
    content: "\e61b";
}
.fa-linkedin:before {
    content: "\f08c";
}
.fa-telegram:before {
    content: "\f2c6";
}
.fa-whatsapp:before {
    content: "\f232";
}
.fa-tiktok:before {
    content: "\e07b";
}
.fa-play:before {
    content: "\f04b"
}
.fa-envelope:before {
    content: "\f0e0";
}



/* Servis */
.services-area {
    padding: 80px 0;
}
.service-bg-area {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
}
.service-content-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -25px -50px;
}
.service-content-block {
    width: 50%;
    padding: 0 25px 50px;
}
.service-content-area {
    padding: 80px 0;
}
.page-heading-area h1 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
}
.page-heading-area h2 {
    font-size: 48px;
}
.service-main-content {
    text-align: center;
    width: 900px;
    margin: -40px auto 0;
    max-width: 100%;
    color: var(--text-color);
}
.service-item:not(:last-child) {
    margin-bottom: 40px;
}
.service-item-heading {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.4;
}
.service-item-desc {
    color: var(--text-color);
}
@media (max-width: 767px) {
    .services-area {
        padding: 40px 0;
    }
    .page-heading-area h1 {
        font-size: 20px;
    }
    .page-heading-area h2 {
        font-size: 32px;
    }
    .service-main-content {
        margin: 0 auto;
    }
    .service-content-block {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .service-item-heading {
        font-size: 18px;
    }
    .page-heading-area h2 {
        font-size: 24px;
    }
}



/* Contact */
.contact-area {
    background: #fafafa;
    padding: 80px 0;
}
.contact-contents {
    background: white;
    padding: 50px;
    margin: 80px 0;
}
.contact-item-heading {
    font-weight: 600;
    font-size: 16px;
}
.contact-item:not(:last-child) {
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .contact-area {
        padding: 40px 0;
    }
    .contact-contents {
        margin: 40px 0;
    }
}
@media (max-width: 500px) {
    .contact-contents {
        padding: 50px 20px;
    }
}




/* All posts */
.all-posts-area {
    background: #f2f2f2;
    padding: 80px 0;
}



/* Home */
.home {
    padding-top: 0;
}
.home-models {
    display: flex;
    flex-wrap: wrap;
}
.home-model a {
    display: block;
    height: 50vh;
    overflow: hidden;
    position: relative;
}
.home-model-image {
    height: 100%;
}
.home-model-image img {
    background: #222;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: .5s all;
}
.home-model-overlay {
    background: linear-gradient(180deg,transparent,rgba(0,0,0,.7));
    transition: .5s all;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.home-model-contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 100px 40px 40px;
    color: white;
    line-height: 1.2;
}
.home-model-titles {
    transition: .5s all;
}
.home-model-title {
    font-weight: 600;
    font-size: 32px;
    transform: translateY(30px);
    opacity: 0;
    animation-name: model;
    animation-duration: .8s;
    animation-fill-mode: both;
}
.home-model-desc {
    font-size: 12px;
    margin-top: 5px;
    transform: translateY(30px);
    opacity: 0;
    animation-name: model;
    animation-duration: .8s;
    animation-fill-mode: both;
}
.home-model-button-block {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 100px);
    opacity: 0;
    transition: .5s all;
}
.model-button {
    border: 1px solid white;
    border-radius: 30px;
    font-size: 15px;
    padding: 0 25px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    color: white;
    transition: .3s all;
}
.model-button:hover {
    background: rgb(255 255 255 / 24%);
}
@keyframes model {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (min-width: 501px) {
    .home-model a:hover img {
        transform: scale(1.05);
    }
    .home-model a:hover .home-model-overlay {
        opacity: 1;
    }
    .home-model a:hover .home-model-titles {
        opacity: .3;
    }
    .home-model a:hover .home-model-button-block {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
@media (max-width: 959px) {
    .home-model {
        width: 50%!important;
    }
}
@media (max-width: 500px) {
    .home-model {
        width: 100%!important;
        margin-bottom: 5px;
    }
    .home-model a {
        height: 260px;
    }
    .home-model-contents {
        padding: 20px;
        display: flex;
        align-items: flex-end;
    }
    .home-model-title {
        font-size: 27px;
    }
    .home-model-overlay {
        opacity: .5;
    }
}



/* Menu models */
.menu-model-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 10;
    padding-bottom: 100px;
    padding-top: 70px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .05);
    max-height: 100vh;
    overflow-y: auto;
    transform: translateY(calc(-100% - 100px));
    transition: .5s all;
}
.active-models-area .menu-model-area {
    transform: none;
}
.menu-model-term {
    padding-top: 30px;
}
.menu-models {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}
.menu-model {
    width: 20%;
    padding: 0 10px 20px;
    display: flex;
}
.menu-model a {
    background: #ddd;
    display: block;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.menu-model-desc {
    font-size: 13px;
    opacity: .5;
    line-height: 1.3;
}
.menu-model-term-name {
    color: var(--text-color);
    padding-bottom: 15px;
    line-height: 1.3;
}
.menu-model-bottoms {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px);
    transition: .3s all;
}
.menu-model-button {
    text-decoration: underline;
    font-size: 14px;
    transition: .3s all;
    transform: translateY(24px);
    opacity: 0;
    height: 24px;
    position: absolute;
}
.menu-model a:hover .menu-model-button {
    opacity: 1;
    transform: none;
}
.menu-model-image {
    height: 150px;
    margin: 0 auto;
    transition: .3s all;
}
.menu-model-image img {
    object-fit: contain;
    transition: .3s all;
}
.menu-model a:hover .menu-model-image {
    transform: translateY(-15px);
}
.menu-model a:hover .menu-model-bottoms {
    bottom: 44px;
}
#content .menu-model-area {
    position: relative;
    max-height: unset;
    overflow: hidden;
    box-shadow: none;
    padding: 30px 0 80px;
    transform: none;
    top: 0;
}
@media (max-width: 1000px) {
    .menu-model {
        width: 25%;
    }
}
@media (max-width: 850px) {
    .menu-model {
        width: 33.3%;
    }
}
@media (max-width: 600px) {
    #content .menu-model-area {
        padding: 0 0 60px;
    }
    .menu-models {
        margin: 0 -5px -10px;
    }
    .menu-model {
        width: 50%;
        padding: 0 5px 10px;
    }
}
@media (max-width: 370px) {
    .menu-model {
        width: 100%;
    }
}



/* Big model */
.models-slider {
    position: relative;
}
.big-model-slide {
    position: relative;
    overflow: hidden;
    background: #111;
}
.big-model-block {
    position: absolute;
    z-index: 1;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}
.big-model-title {
    font-weight: 500;
    font-size: 52px;
    line-height: 1;
}
.big-model-desc {
    margin: 10px 0 55px;
    color: #d9d9d9;
}
.big-model-slide img {
    transition: .75s all;
}
.big-model-slide:hover img {
    transform: scale(1.05);
}
.models-pagination {
    position: absolute;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 1;
}
@media (max-width: 767px) {
    .big-model-block {
        top: 50px;
    }
    .big-model-title {
        font-size: 30px;
    }
    .big-model-image img {
        height: 400px;
        object-fit: cover;
    }
}


/* Features */
.home-features-area {
    padding: 80px 0;
}
.home-features-slider {
    position: relative;
}
.home-feature-block {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    overflow: hidden;
}
.home-feature-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.home-feature-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
    background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.48) 100%);
}
.home-feature-image img {
    height: 100%;
    object-fit: cover;
    background: #222;
    transition: .8s all;
}
.home-feature-title {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    color: white;
    font-size: 32px;
    line-height: 1.4;
    transform: translateY(-25px);
    transition: .5s all;
}
.swiper-slide-active .home-feature-title {
    transform: translateY(0);
}
.home-feature-block:hover img {
    transform: scale(1.05);
}
.home-feature-block:hover .feature-title {
    transform: translateY(30px);
}
.home-features-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 92.5%, .6);
    border-radius: 50%;
    transition: .3s all;
    cursor: pointer;
    font-size: 24px;
}
.home-features-nav:hover {
    background: black;
    color: white;
}
.home-features-nav-prev {
    left: 45px;
}
.home-features-nav-next {
    right: 45px;
}
.home-feature-slide {
    width: 1150px;
    opacity: .7;
    margin: 0 7.5px;
    transition: .15s all;
}
.home-feature-slide.swiper-slide-active {
    opacity: 1;
}
.home-features-pagination {
    margin-bottom: 40px;
}
@media (max-width: 1200px) {
    .home-feature-slide {
        width: 90%;
    }
}
@media (max-width: 767px) {
    .home-features-area {
        background: #fafafa;
        padding: 60px 0 40px;
    }
    .home-feature-block {
        aspect-ratio: unset;
        background: white;
        border-radius: 0;
    }
    .home-feature-image {
        height: auto;
    }
    .home-feature-image img {
        aspect-ratio: 16 / 9;
        height: auto;
    }
    .home-features-slider .swiper-slide {
        height: auto!important;
        display: flex;
    }
    .home-features-nav {
        display: none;
    }
    .home-feature-title {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        color: black;
        font-size: 17px;
        padding: 25px 20px;
    }
    .home-features-slider .swiper-pagination {
        position: relative;
        margin-top: 40px;
    }
    .home-features-slider .light-swiper-pagination .swiper-pagination-bullet {
        background: #000000 !important;
    }
}



/* Single model */
.single-main-bg-area {
    position: relative;
}
.single-main-bg img {
    background: #111;
}
.single-main-titles {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    animation: title 0.6s ease-out forwards;
}
.single-main-title {
    font-size: 70px;
    font-weight: 500;
    line-height: 1.3;
}
.single-main-desc {
    font-size: 22px;
    line-height: 1.3;
}
.single-main-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    animation: bounce 2s ease infinite;
    color: white;
    font-size: 32px;
    line-height: 1;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate3d(-50%, 0px, 0px);
    }
    40% {
        transform: translate3d(-50%, 5px, 0px);
    }
    60% {
        transform: translate3d(-50%, 3px, 0px);
    }
}
@media (max-width: 767px) {
    .single-main-bg img {
        height: 400px;
        object-fit: cover;
    }
    .single-main-titles {
        position: absolute;
        top: 50px;
    }
    .single-main-title {
        font-size: 40px;
    }
    .single-main-desc {
        font-size: 18px;
    }
}
.main-feature-heading-area {
    width: 80%;
    margin: 0 auto 60px;
}
.main-feature {
    padding: 100px 0;
}
.feature-black-mode {
    background: #000000;
}
.feature-image {
    height: 100%;
    position: relative;
}
.feature-image img, .feature-image video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--light-color);
}
.feature-black-mode .feature-image img, .feature-black-mode .feature-image video {
    background: #222;
}
.site-paginations-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 15px;
}
.site-paginations {
    display: flex;
    justify-content: center;
    position: relative;
    gap: 50px;
    border-bottom: 1.5px solid #ddd;
    line-height: 1.3;
    text-align: center;
}
.site-pagination {
    padding: 12px 0;
    cursor: pointer;
    user-select: none;
}
.feature-descs {
    width: 80%;
    text-align: center;
    color: var(--text-color);
    font-size: 15px;
    margin-top: 25px;
    position: relative;
}
.feature-desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: .3s all;
}
.active.feature-desc {
    visibility: visible;
    opacity: 1;
}
.site-pagination-bar {
    position: absolute;
    width: 150px;
    height: 3px;
    background: var(--second-color);
    bottom: -2px;
    left: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Yumşaq sürüşmə effekti */
    pointer-events: none;
}
.site-pagination-block {
    opacity: .5;
}
.active .site-pagination-block {
    opacity: 1;
}
.feature-black-mode .site-paginations {
    color: white;
}
.feature-black-mode .site-paginations {
    border-color: #2a2a2a;
}
.feature-black-mode .feature-descs {
    color: rgb(212 212 212 / 60%);
}
.main-feature table {
    margin-top: 30px;
}
.main-feature tr:first-child td {
    font-size: 32px;
    color: black;
    line-height: 1.4;
    padding-bottom: 5px;
}
.feature-black-mode.main-feature tr:first-child td {
    color: white;
}
.main-feature tr td {
    padding-right: 50px;
    vertical-align: top;
}
@keyframes title {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 767px) {
    .site-paginations {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        border-left: 2px solid #eee;
        border-bottom: 0;
        order: 2;
    }
    .site-pagination {
        padding: 0 20px;
        width: 100%;
        text-align: left;
    }
    .site-pagination-bar {
        left: -2px !important;
        right: auto !important;
        bottom: auto !important;
        top: 0 !important;
        width: 2px !important;
        height: 0;
    }
    .feature-descs {
        order: 1;
        margin-bottom: 30px;
    }
}
@Media (max-width: 700px) {
    .main-feature-heading-area {
        width: 95%;
    }
}



/* Extra features */
.extra-features-area {
    padding: 100px 0;
}
.extra-feature-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px -10px;
}
.extra-feature-item {
    width: 33.3%;
    padding: 0 5px 10px;
}
.inner-container {
    width: 80%;
    margin: 0 auto;
}
.extra-feature:not(:last-child) {
    margin-bottom: 80px;
}
.extra-main-feature-title {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}
.extra-feature-item-block {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.extra-feature-item-block:before {
    content: '';
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .7));
    transition: .5s all;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
}
.extra-feature-image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #222;
}
.extra-feature-details {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 25px;
    color: white;
    line-height: 1.2;
}
.extra-feature-title {
    font-size: 22px;
    margin-bottom: 5px;
}
.extra-feature-desc {
    font-size: 15px;
}
@media (max-width: 1000px) {
    .relative-extra-features {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .extra-feature-items {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -5px -10px;
        width: 1000px;
    }
}
@media (max-width: 767px) {
    .extra-feature-item {
        width: 80vw;
    }
    .extra-feature-title {
        font-size: 19px;
    }
}


/* General features */
.general-featues-area {
    padding: 80px 0;
}
.general-features-slider {
    position: relative;
}
.general-feature-block {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.general-feature-image {
    height: 100%;
    position: relative;
}
.general-feature-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
    background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.48) 100%);
}
.general-feature-image img {
    height: 100%;
    object-fit: cover;
    background: #222;
    transition: .8s all;
}
.general-feature-title {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    color: white;
    font-size: 32px;
    line-height: 1.4;
    transition: .5s all;
}
.general-features-nav {
    width: 48px;
    height: 48px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 92.5%, .6);
    border-radius: 50%;
    transition: .3s all;
    cursor: pointer;
    font-size: 24px;
}
.general-features-nav:hover {
    background: black;
    color: white;
}
.general-features-nav-prev {
    left: 45px;
}
.general-features-nav-next {
    right: 45px;
}
.general-feature-slide {
    width: 1150px;
    max-width: 100%;
    opacity: .7;
    margin: 0 7.5px;
    transition: .15s all;
}
.general-feature-slide.swiper-slide-active {
    opacity: 1;
}
.general-features-helpers {
    position: absolute;
    bottom: -75px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.general-features-pagination {
    position: relative;
    width: auto !important;
}
.general-features-pagination .swiper-pagination-bullet {
    background: black;
}
.general-features-navs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.general-feature-slide {
    margin: 0 15px;
}
.general-feature-desc {
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 40px;
    color: white;
}
.general-feature-desc table td {
    padding: 0 30px;
}
.general-feature-desc table tr:first-child td {
    font-size: 14px;
    line-height: 1.2;
}
.general-feature-desc table tr:last-child td {
    font-size: 22px;
    line-height: 1.2;
}
@media (max-width: 850px) {
    .general-feature-desc table tr:last-child td {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .general-feature-slide {
        display: flex;
        height: auto !important;
    }
    .general-feature-block {
        aspect-ratio: auto;
        overflow: visible;
        background: #fafafa;
        padding-bottom: 35px;
    }
    .general-feature-image {
        height: auto;
    }
    .general-feature-image img {
        aspect-ratio: 16 / 9;
        height: auto;
    }
    .general-feature-title {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        z-index: 2;
        color: black;
        font-size: 22px;
        margin: 25px 0;
        padding: 0 20px;
    }
    .general-feature-desc {
        position: relative;
        bottom: auto;
        color: black;
        padding: 0 20px;
    }
}



/* Table */
.mobile-spec-grid { display: none; }

@media (max-width: 767px) {
    .desktop-only-table { display: none !important; }

    .mobile-spec-grid {
        display: flex;
        flex-wrap: wrap; /* Elementlərin növbəti sətirə keçməsini təmin edir */
        width: 100%;
        margin: 0 -10px; /* Gap effektini simulyasiya etmək üçün kənar boşluq */
    }

    .spec-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Hər elementin 50% yer tutmasını təmin edir (2 sütun) */
        flex: 0 0 50%; 
        max-width: 50%;
        padding: 0 10px; /* Sütunlar arası daxili boşluq */
        margin-bottom: 25px; /* Sətirlər arası məsafə */
        box-sizing: border-box;
    }

    .spec-label {
        color: #888;
        font-size: 14px;
        margin-bottom: 6px;
        font-weight: 400;
        line-height: 1.3;
    }

    .spec-value {
        color: #000;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.2;
    }
    .feature-black-mode .spec-value {
        color: #fff;
    }
    
    .main-feature .spec-label {
        font-size: 20px;
        color: #000;
    }
    
    .main-feature.feature-black-mode .spec-label {
        color: #fff;
    }
    
    .main-feature .spec-value {
        font-size: 14px;
        color: #888;
    }
}




/* Statik feature */
.static-feature-area {
    position: relative;
    background: #222;
}
.static-feature-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 100px 0;
}
.static-feature-bottom-area .static-feature-block {
    top: auto;
    bottom: 0;
}
.sf-heading-area {
    width: 80%;
    margin: 0 auto;
}
.sf-heading-area .heading {
    width: 650px;
    max-width: 100%;
}
@media (max-width: 1000px) {
    .static-feature-block {
        padding: 70px 0;
    }
}
@media (max-width: 767px) {
    .sf-heading-area {
        width: 95%;
    }
    .static-feature-block {
        padding: 35px 0;
    }
    .static-feature-image img, .static-feature-image video {
        height: 400px;
        object-fit: cover;
    }
}



/* Hero features */
.hero-slider {
    width: 100%;
    position: relative;
}
.hero-slider .swiper-wrapper {
    position: relative;
}
.hero-slider .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.6s ease;
}
.hero-slider .swiper-slide-active {
    opacity: 1 !important;
    z-index: 2;
}
.hero-feature-img img,
.hero-feature-img video {
    width: 100%;
    height: auto;
    display: block;
}
.hero-section { 
    padding: 100px 0; 
}
.hero-wrapper { 
    display: flex; 
    flex-wrap: wrap;
    align-items: center; 
    position: relative;
}
.hero-nav {
    width: 35%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    left: 100px;
    color: white;
}
.hero-nav:before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    height: 100%;
    background: white;
    opacity: .3;
    width: 2px;
}
.nav-list-item:not(:last-child) {
    margin-bottom: 15px;
}
.hero-nav-item {
    font-size: 22px;
    line-height: 1.4;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.4s ease;
}
.hero-nav-item.is-active { 
    opacity: 1;
}
.hero-nav-info {
    font-size: 14px;
    color: #a0a0a0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}
.hero-nav-info.is-active {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}
.hero-nav-indicator-bar {
    position: absolute; 
    width: 2px; /* İndi eni sabitdir */
    background: #d3ae81;
    left: -30px; /* Naviqasiyanın lap solunda */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
    .hero-nav {
        width: 100%;
        position: relative;
        top: auto;
        transform: none;
        left: auto;
        color: black;
        padding-left: 20px;
        order: 2;
    }
    .hero-nav:before {
        left: 0;
        background: #ddd;
    }
    .hero-nav-indicator-bar {
        left: 0;
    }
    .hero-slider {
        order: 1;
        margin-bottom: 30px;
    }
}




/* Conf */
.conf-area {
    padding: 100px 0;
    background: #fafafa;
}
.conf-main-heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
}
.conf {
    background: linear-gradient(180deg, #000 -67.47%, #353535);
    color: white;
    padding: 60px;
    border-radius: 20px;
    width: 1000px;
    margin: 0 auto;
}
.conf-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}
.conf-block {
    width: 50%;
    padding: 0 25px;
}
.c-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.c-item {
    width: 50%;
    padding: 0 15px 30px;
}
.c-item-title {
    color: #bababa;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 5px;
}
.c-item-value {
    font-weight: 500;
}
.conf-heading {
    font-size: 42px;
    font-weight: 500;
    background: linear-gradient(90deg, #d2aa7b, #fdf7f1);
    background-clip: text;
    color: transparent;
    line-height: 1.3;
    display: table;
}
.conf-sub-heading {
    font-size: 22px;
    font-weight: 500;
    background: linear-gradient(90deg, #d2aa7b, #fdf7f1);
    background-clip: text;
    color: transparent;
    line-height: 1.3;
    display: table;
}
.conf-silver-heading .conf-heading, .conf-silver-heading .conf-sub-heading {
    background: linear-gradient(90deg,#919191,#fff);
    background-clip: text;
}
.conf-desc {
    font-size: 15px;
    margin-top: 25px;
}
.conf-slider .swiper-slide {
    height: auto!important;
    display: flex;
}
@media (max-width: 1000px) {
    .conf-block {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .conf-slider-area {
        display: flex;
        flex-direction: column;
    }
    .conf-slider {
        order: 2;
    }
    .conf-paginations-block {
        order: 1;
        margin-bottom: 25px;
    }
    .conf {
        padding: 0;
        background: white;
        overflow: hidden;
    }
    .conf-heading-area {
        text-align: center;
        display: flex;
        flex-direction: column;
        padding: 20px;
        background: linear-gradient(180deg, #000 -67.47%, #353535);
    }
    .conf-desc {
        color: black;
        margin-top: 0;
        padding: 20px;
    }
    .c-items {
        padding: 20px;
        color: black;
    }
}



/* Product header */
.product-header {
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    opacity: 0; 
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform .3s cubic-bezier(.39, .575, .565, 1), 
                opacity .3s cubic-bezier(.39, .575, .565, 1);
    will-change: transform, opacity;
    backdrop-filter: saturate(180%) blur(20px);
    background-color: hsla(0,0%,100%,.8);
    font-weight: 500;
}
.is-visible .product-header {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}



/* Grid features */
.custom-grid-container {
    display: grid;
    /* 4 sütunlu bir struktur qururuq */
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: 250px; /* Hər xananın baza hündürlüyü */
    gap: 15px; /* Bloklar arasındakı məsafə */
}
.grid-no-image {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.grid-no-image .grid-item {
    width: 33.3%;
    padding: 0 15px 30px;
}
.grid-item {
    position: relative;
    overflow: hidden;
}
.custom-grid-container .grid-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.48) 100%);
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Şəkil xananı tam doldursun deyə */
}
.grid-item-1x1 {
    grid-column: span 1;
    grid-row: span 1;
}
.grid-item-2x1 {
    grid-column: span 2;
    grid-row: span 1;
}
.grid-item-1x2 {
    grid-column: span 1;
    grid-row: span 2;
}
.grid-item-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}
.grid-details {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: white;
    line-height: 1.4;
    z-index: 1;
}
.grid-no-image .grid-details {
    position: relative;
    color: black;
    padding: 0;
}
.grid-title {
    font-weight: 500;
}
.grid-desc {
    font-size: 15px;
    color: #bababa;
    margin-top: 5px;
}
@media (max-width: 767px) {
    .custom-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-item.wide, .grid-item.large {
        grid-column: span 2;
    }
    .grid-no-image .grid-item {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .grid-no-image .grid-item {
        width: 100%; 
    }
}



/* Double features */
.double-features-area {
    background: #fafafa;
}
.double-blocks {
    display: flex;
    flex-wrap: wrap;
    background: white;
}
.double-block {
    width: 50%;
}
.double-block-1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #eee;
}
.double-block-2 {
    text-align: center;
    padding: 80px 0;
}
.double-contents {
    width: 500px;
    max-width: 90%;
    margin: 0 auto;
}
.double-desc tr:last-child td {
    color: #bababa;
    font-size: 14px;
    line-height: 1.3;
}
.double-block .sub-heading {
    font-weight: 500;
    color: var(--second-color);
}
.double-desc {
    color: var(--text-color);
    font-size: 16px;
}
.double-desc td {
    text-align: center;
    padding: 0 15px!important;
}
.double-heading {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
}
@media (max-width: 900px) {
    .double-block {
        width: 100%;
    }
    .double-block-1 {
        height: 300px;
    }
}
@media (max-width: 767px) {
    .double-heading {
        font-size: 22px;
    }
    .double-block-2 {
        padding: 40px 0;
    }
}


/* Car colors */
.car-colors-area {
    padding: 100px 0;
}
.car-colors-items {
    display: flex;
    gap: 20px;
    padding-left: 5px;
}
.car-color {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}
.car-color:before {
    content: '';
    position: absolute;
    border: 2px solid white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.active.car-color:before {
    border-color: #222;
}