.slogan1 .sec-title {
    font-size: 35px;
    margin-top: -0.25em;
}



/* ==============================
   YMM Header Stable Version
============================== */

.ymm-header,
.ymm-header * {
    box-sizing: border-box;
}

.ymm-header {
    position: relative;
    z-index: 99;
    background: #ffffff;
    color: #243447;
    border-bottom: 1px solid #e8eef5;
}

.ymm-header a {
    text-decoration: none;
}

/* Topbar */
.ymm-topbar {
    background: #f8fbfd;
    border-bottom: 1px solid #edf2f7;
}

.ymm-topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ymm-topbar-left,
.ymm-topbar-right,
.ymm-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ymm-topbar-left a,
.ymm-topbar-slogan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #66788a;
    font-size: 13px;
    font-weight: 700;
}

.ymm-topbar-left a:hover {
    color: #0f7abf;
}

.ymm-topbar-left i,
.ymm-topbar-slogan i {
    color: #f0a51f;
}

.ymm-social {
    gap: 8px;
}

.ymm-social a {
    width: 28px;
    height: 28px;
    border: 1px solid #e3ebf3;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7a8898;
    background: #ffffff;
    transition: all 0.25s ease;
}

.ymm-social a:hover {
    color: #0f7abf;
    background: #f7fbfe;
    border-color: #d0e5f1;
}

/* Main Header */
.ymm-main-wrap {
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid #e8eef5;
    box-shadow: 0 12px 28px rgba(33, 48, 68, 0.05);
}

.ymm-main-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 122, 191, 0.07) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

.ymm-main {
    position: relative;
    z-index: 2;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ymm-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.ymm-logo {
    display: inline-flex;
    align-items: center;
}

.ymm-logo img {
    max-height: 58px;
    width: auto;
}

.ymm-brand-text {
    flex-direction: column;
    justify-content: center;
    padding-left: 18px;
    border-left: 1px solid #dce5ee;
}

.ymm-brand-text strong {
    color: #0f7abf;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
}

.ymm-brand-text span {
    margin-top: 6px;
    color: #7b8a99;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

/* Desktop Nav */
.ymm-desktop-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.ymm-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ymm-nav-item {
    position: relative;
    list-style: none;
}

.ymm-nav-link {
    position: relative;
    min-height: 88px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #243447;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.ymm-nav-link i {
    margin: 0;
    color: #90a0b1;
    font-size: 11px;
    transition: all 0.25s ease;
}

.ymm-nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 18px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #0f7abf, #f0a51f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.ymm-nav-item:hover > .ymm-nav-link {
    color: #0f7abf;
}

.ymm-nav-item:hover > .ymm-nav-link i {
    color: #0f7abf;
    transform: rotate(180deg);
}

.ymm-nav-item:hover > .ymm-nav-link::after {
    transform: scaleX(1);
}

/* Desktop Dropdown */
.ymm-dropdown {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    width: 270px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e6edf4;
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(33, 48, 68, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: all 0.25s ease;
    z-index: 9999;
}

.ymm-dropdown-large {
    width: 350px;
}

.ymm-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid #e6edf4;
    border-top: 1px solid #e6edf4;
    transform: translateX(-50%) rotate(45deg);
}

.ymm-has-dropdown:hover > .ymm-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.ymm-dropdown a {
    position: relative;
    min-height: 46px;
    padding: 10px 14px 10px 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    color: #304255;
    background: #ffffff;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
    transition: all 0.25s ease;
}

.ymm-dropdown a + a {
    margin-top: 6px;
}

.ymm-dropdown a::before {
    content: "";
    position: absolute;
    left: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d6eaf6;
    transition: all 0.25s ease;
}

.ymm-dropdown a:hover {
    color: #0f7abf;
    background: #f5fbfe;
}

.ymm-dropdown a:hover::before {
    background: #0f7abf;
}

/* Actions */
.ymm-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ymm-icon-btn {
    width: 46px;
    height: 46px;
    border: 1px solid #e4ebf3;
    border-radius: 12px;
    background: #ffffff;
    color: #213044;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.ymm-icon-btn:hover {
    color: #0f7abf;
    border-color: #cfe4f1;
    background: #f7fbfe;
}

.ymm-call {
    align-items: center;
    gap: 12px;
    padding: 8px 14px 8px 8px;
    border: 1px solid #e4ebf3;
    border-radius: 14px;
    background: #f9fbfd;
    color: #243447;
    transition: all 0.25s ease;
}

.ymm-call:hover {
    color: #243447;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(33, 48, 68, 0.08);
}

.ymm-call > span {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf8fc;
    color: #0f7abf;
}

.ymm-call small {
    display: block;
    color: #8392a2;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
}

.ymm-call strong {
    display: block;
    margin-top: 4px;
    color: #243447;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.1;
}

.ymm-cta {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f7abf, #149ad6);
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 12px 30px rgba(15, 122, 191, 0.22);
    transition: all 0.25s ease;
}

.ymm-cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 122, 191, 0.28);
}

/* Search */
.ymm-search-popup input {
    border-radius: 14px;
}

/* Mobile */
.ymm-mobile-wrapper {
    z-index: 99999;
}

.ymm-mobile-panel {
    position: relative;
    width: 100%;
    max-width: 410px;
    height: 100vh;
    padding: 26px 20px 30px;
    background: #ffffff;
    text-align: left;
    overflow-y: auto;
    overflow-x: hidden;
}

.ymm-mobile-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 122, 191, 0.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 122, 191, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
    opacity: 0.65;
}

.ymm-mobile-panel > * {
    position: relative;
    z-index: 2;
}

.ymm-mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid #e2ebf3;
    border-radius: 12px;
    background: #ffffff;
    color: #243447;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ymm-mobile-brand {
    padding-right: 52px;
    margin-bottom: 22px;
}

.ymm-mobile-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
}

.ymm-mobile-logo img {
    max-height: 54px;
    width: auto;
}

.ymm-mobile-brand-text {
    padding: 14px 16px;
    border-radius: 16px;
    background: #f7fbfe;
    border: 1px solid #e3edf5;
}

.ymm-mobile-brand-text span {
    display: block;
    color: #0f7abf;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ymm-mobile-brand-text strong {
    display: block;
    margin-top: 5px;
    color: #243447;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.25;
}

.ymm-mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ymm-mobile-nav > ul > li {
    margin-bottom: 9px;
    list-style: none;
}

.ymm-mobile-nav > ul > li > a,
.ymm-mobile-toggle {
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid #e2ebf3;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: #243447;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.25;
    transition: all 0.25s ease;
}

.ymm-mobile-toggle {
    cursor: pointer;
}

.ymm-mobile-toggle i {
    margin: 0;
    font-size: 12px;
    color: #8a99a8;
    transition: transform 0.25s ease, color 0.25s ease;
}

.ymm-mobile-nav > ul > li > a:hover,
.ymm-mobile-toggle:hover,
.ymm-mobile-has-sub.is-open > .ymm-mobile-toggle {
    color: #0f7abf;
    background: #f4fbfe;
    border-color: #cfe5f1;
}

.ymm-mobile-has-sub.is-open > .ymm-mobile-toggle i {
    color: #0f7abf;
    transform: rotate(180deg);
}

.ymm-mobile-submenu {
    display: none !important;
    padding: 9px 0 2px 12px !important;
    margin: 0 !important;
}

.ymm-mobile-has-sub.is-open > .ymm-mobile-submenu {
    display: block !important;
}

.ymm-mobile-submenu li {
    margin-bottom: 7px;
    list-style: none;
}

.ymm-mobile-submenu li a {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f9fbfd;
    border: 1px solid #e6eef5;
    color: #4d5f72;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
    transition: all 0.25s ease;
}

.ymm-mobile-submenu li a:hover {
    color: #0f7abf;
    background: #f3fbfe;
    border-color: #d4e8f3;
}

.ymm-mobile-contact {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.ymm-mobile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5d7083;
    font-size: 13px;
    font-weight: 750;
    word-break: break-word;
}

.ymm-mobile-contact i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
    background: #edf8fc;
    color: #0f7abf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ymm-mobile-cta {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 15px;
    background: linear-gradient(135deg, #0f7abf, #149ad6);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 14px 30px rgba(15, 122, 191, 0.22);
}

.ymm-mobile-cta:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1599px) {
    .ymm-nav-link {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 13px;
    }

    .ymm-main {
        gap: 18px;
    }
}

@media (max-width: 1399px) {
    .ymm-call {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .ymm-cta {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .ymm-main {
        min-height: 76px;
    }

    .ymm-logo img {
        max-height: 50px;
    }

    .ymm-actions {
        gap: 8px;
    }

    .ymm-icon-btn {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}

@media (max-width: 575px) {
    .ymm-mobile-panel {
        max-width: 100%;
        padding: 24px 18px 28px;
    }

    .ymm-mobile-logo img {
        max-height: 48px;
    }

    .ymm-mobile-brand-text strong {
        font-size: 15px;
    }

    .ymm-logo img {
        max-height: 44px;
    }
}

























.service-section {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.section-header {
	margin-bottom: 45px;
}

.section-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding: 8px 18px;
	border-radius: 999px;
	background-color: rgba(13, 110, 253, 0.08);
	color: #0d6efd;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.4px;
}

.section-title {
	margin-bottom: 0;
	color: #101828;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.15;
}

.service-card {
	position: relative;
	height: 100%;
	background-color: #ffffff;
	border: 1px solid rgba(16, 24, 40, 0.08);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 16px 45px rgba(16, 24, 40, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(13, 110, 253, 0.22);
	box-shadow: 0 24px 65px rgba(16, 24, 40, 0.14);
}

.service-card-image {
	display: block;
	position: relative;
	height: 230px;
	overflow: hidden;
	background-color: #eef2f6;
}

.service-card-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 24, 40, 0) 45%, rgba(16, 24, 40, 0.45) 100%);
	opacity: 0.75;
	transition: opacity 0.3s ease;
}

.service-card:hover .service-card-image::after {
	opacity: 0.95;
}

.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.service-card:hover .service-card-image img {
	transform: scale(1.08);
}

.service-card-icon {
	position: absolute;
	top: 190px;
	left: 28px;
	z-index: 2;
	width: 74px;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	background-color: #ffffff;
	box-shadow: 0 14px 35px rgba(16, 24, 40, 0.18);
}

.service-card-icon img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.service-card-body {
	display: flex;
	flex-direction: column;
	height: calc(100% - 230px);
	padding: 24px 28px 28px;
}

.service-card-title {
	margin-bottom: 14px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
}

.service-card-title a {
	color: #101828;
	text-decoration: none;
	transition: color 0.3s ease;
}

.service-card-title a:hover {
	color: #0d6efd;
}

.service-card-text {
	margin-bottom: 22px;
	color: #667085;
	font-size: 15px;
	line-height: 1.7;
}

.service-card-link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: fit-content;
	padding: 12px 18px;
	border-radius: 999px;
	background-color: #101828;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.service-card-link:hover {
	gap: 16px;
	background-color: #0d6efd;
	color: #ffffff;
}

@media (max-width: 767px) {
	.section-header {
		margin-bottom: 32px;
	}

	.service-card-image {
		height: 210px;
	}

	.service-card-icon {
		top: 172px;
		left: 22px;
		width: 66px;
		height: 66px;
		border-radius: 18px;
	}

	.service-card-icon img {
		width: 36px;
		height: 36px;
	}

	.service-card-body {
		height: auto;
		padding: 28px 22px 24px;
	}
}












.ymm-footer {
	position: relative;
	overflow: hidden;
	background: #061426;
	color: #ffffff;
}

.ymm-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 12%, rgba(14, 165, 233, 0.2), transparent 28%),
		radial-gradient(circle at 86% 20%, rgba(37, 99, 235, 0.22), transparent 32%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
	pointer-events: none;
}

.ymm-footer::after {
	content: "";
	position: absolute;
	top: -160px;
	right: -120px;
	width: 440px;
	height: 440px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.035);
	pointer-events: none;
}

.ymm-footer-pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 92%);
	pointer-events: none;
}

.ymm-footer-main {
	position: relative;
	z-index: 2;
	padding: 76px 0 34px;
}

.ymm-footer-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: stretch;
	margin-bottom: 44px;
}

.ymm-footer-brand {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(18px);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.ymm-footer-logo {
	flex: 0 0 150px;
	width: 150px;
	height: 112px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.ymm-footer-logo img {
	max-width: 100%;
	max-height: 78px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.ymm-footer-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding: 8px 14px;
	border: 1px solid rgba(56, 189, 248, 0.26);
	border-radius: 999px;
	background: rgba(14, 165, 233, 0.12);
	color: #7dd3fc;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.ymm-footer-label::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #38bdf8;
	box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.12);
}

.ymm-footer-brand p {
	margin: 0;
	max-width: 680px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 16px;
	line-height: 1.8;
}

.ymm-footer-contact-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px;
	border-radius: 30px;
	background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
	box-shadow: 0 24px 70px rgba(37, 99, 235, 0.28);
	overflow: hidden;
}

.ymm-footer-contact-card::before {
	content: "";
	position: absolute;
	right: -50px;
	bottom: -50px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
}

.ymm-footer-contact-card::after {
	content: "";
	position: absolute;
	top: 24px;
	right: 24px;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.12);
}

.ymm-footer-contact-card span {
	position: relative;
	z-index: 2;
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.ymm-footer-contact-card a {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	text-decoration: none;
	line-height: 1.3;
}

.ymm-footer-contact-card i {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
}

.ymm-footer-line {
	height: 1px;
	margin-bottom: 44px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.ymm-footer-grid {
	display: grid;
	grid-template-columns: 1.22fr 0.72fr 1fr 1.12fr;
	gap: 36px;
}

.ymm-footer-widget {
	min-width: 0;
}

.ymm-footer-title {
	position: relative;
	margin: 0 0 22px;
	padding-bottom: 15px;
	color: #ffffff;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.25;
}

.ymm-footer-title::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 52px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #38bdf8, #2563eb);
}

.ymm-footer-title::after {
	content: "";
	position: absolute;
	left: 60px;
	bottom: 0;
	width: 8px;
	height: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.3);
}

.ymm-footer-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 15px;
	line-height: 1.8;
}

.ymm-footer-mini-list {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.ymm-footer-mini-list span {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 700;
}

.ymm-footer-mini-list i {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(14, 165, 233, 0.13);
	color: #38bdf8;
}

.ymm-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ymm-footer-menu li {
	margin-bottom: 11px;
}

.ymm-footer-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
}

.ymm-footer-menu a::before {
	content: "";
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: rgba(56, 189, 248, 0.55);
	transition: width 0.3s ease, background-color 0.3s ease;
}

.ymm-footer-menu a:hover {
	color: #ffffff;
	transform: translateX(5px);
}

.ymm-footer-menu a:hover::before {
	width: 28px;
	background: #38bdf8;
}

.ymm-footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.ymm-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.055);
	color: #ffffff;
	text-decoration: none;
	transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.ymm-footer-contact-item:hover {
	transform: translateY(-4px);
	border-color: rgba(56, 189, 248, 0.42);
	background: rgba(255, 255, 255, 0.085);
	color: #ffffff;
}

.ymm-footer-contact-item span {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(37, 99, 235, 0.18));
	color: #7dd3fc;
}

.ymm-footer-contact-item div {
	min-width: 0;
}

.ymm-footer-contact-item strong {
	display: block;
	margin-bottom: 3px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
}

.ymm-footer-contact-item small {
	display: block;
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 1.5;
	word-break: break-word;
}

.ymm-footer-project-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 48px;
	padding: 30px 34px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(8, 47, 73, 0.96), rgba(30, 64, 175, 0.96)),
		linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
	overflow: hidden;
}

.ymm-footer-project-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
	background-size: 28px 28px;
	opacity: 0.5;
	pointer-events: none;
}

.ymm-footer-project-box div,
.ymm-footer-project-box a {
	position: relative;
	z-index: 2;
}

.ymm-footer-project-box span {
	display: block;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 800;
}

.ymm-footer-project-box strong {
	display: block;
	max-width: 780px;
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.35;
}

.ymm-footer-button {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 24px;
	border-radius: 999px;
	background: #ffffff;
	color: #1d4ed8;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
	transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.ymm-footer-button:hover {
	transform: translateY(-3px);
	color: #0f3fb1;
	box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.ymm-footer-bottom {
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.26);
}

.ymm-footer-bottom-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
}

.ymm-footer-bottom-content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
}

.ymm-footer-agency {
	display: inline-flex;
	align-items: center;
}

.ymm-footer-agency img {
	max-height: 28px;
	width: auto;
	object-fit: contain;
	opacity: 0.88;
	transition: opacity 0.3s ease;
}

.ymm-footer-agency:hover img {
	opacity: 1;
}

/* WhatsApp Box */

#whatsapp-chat.ymm-whatsapp-box {
	position: fixed;
	right: 24px;
	bottom: 104px;
	z-index: 99999;
	width: 360px;
	max-width: calc(100vw - 32px);
	border-radius: 26px;
	background: #ffffff;
	box-shadow: 0 24px 80px rgba(2, 6, 23, 0.28);
	overflow: hidden;
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	transform-origin: right bottom;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#whatsapp-chat.ymm-whatsapp-box.whatsapp-chat-hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(18px) scale(0.94);
}

.ymm-whatsapp-header {
	position: relative;
	padding: 18px;
	background: linear-gradient(135deg, #0f766e, #16a34a);
	color: #ffffff;
}

.ymm-whatsapp-header::before {
	content: "";
	position: absolute;
	right: -35px;
	top: -35px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.13);
}

.ymm-whatsapp-header .head-home {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
}

.ymm-whatsapp-header .info-avatar {
	position: relative;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.ymm-whatsapp-header .info-avatar::after {
	content: "";
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 13px;
	height: 13px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background: #22c55e;
}

.ymm-whatsapp-header .info-avatar img {
	width: 34px;
	height: 34px;
	object-fit: contain;
	border-radius: 10px;
}

.ymm-whatsapp-header p {
	margin: 0;
	color: #ffffff;
	line-height: 1.3;
}

.ymm-whatsapp-header .whatsapp-name {
	display: inline-block;
	margin-bottom: 2px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 900;
}

.ymm-whatsapp-header small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 600;
}

.ymm-whatsapp-box .hide,
.ymm-whatsapp-box .home-chat {
	display: none !important;
}

.ymm-whatsapp-body {
	position: relative;
	min-height: 230px;
	padding: 22px;
	background:
		linear-gradient(rgba(236, 253, 245, 0.92), rgba(236, 253, 245, 0.92)),
		url("../img/bg-whatsapp.png");
	background-size: cover;
}

.ymm-whatsapp-body::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 14px 14px, rgba(15, 118, 110, 0.08) 2px, transparent 2px);
	background-size: 28px 28px;
	pointer-events: none;
}

.ymm-whatsapp-body .dAbFpq {
	position: relative;
	z-index: 2;
}

.ymm-whatsapp-bubble {
	position: relative;
	max-width: 88%;
	padding: 14px 14px 10px;
	border-radius: 0 18px 18px 18px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
	color: #1f2937;
}

.ymm-whatsapp-bubble::before {
	content: "";
	position: absolute;
	top: 0;
	left: -9px;
	width: 0;
	height: 0;
	border-top: 0 solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid #ffffff;
}

.ymm-whatsapp-bubble .bMIBDo {
	margin-bottom: 6px;
	color: #0f766e;
	font-size: 13px;
	font-weight: 900;
}

.ymm-whatsapp-bubble .iSpIQi {
	color: #334155;
	font-size: 14px;
	line-height: 1.55;
}

.ymm-whatsapp-bubble .cqCDVm {
	margin-top: 6px;
	color: #94a3b8;
	font-size: 11px;
	text-align: right;
}

.ymm-whatsapp-message {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px;
	background: #ffffff;
	border-top: 1px solid #e5e7eb;
}

.ymm-whatsapp-message textarea {
	flex: 1;
	width: 100%;
	min-height: 46px;
	max-height: 92px;
	padding: 13px 15px;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #f8fafc;
	color: #0f172a;
	font-size: 14px;
	line-height: 1.4;
	outline: none;
	resize: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ymm-whatsapp-message textarea:focus {
	border-color: #22c55e;
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.ymm-whatsapp-message textarea::placeholder {
	color: #94a3b8;
}

.ymm-whatsapp-message #send-it {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #ffffff;
	box-shadow: 0 12px 26px rgba(22, 163, 74, 0.28);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ymm-whatsapp-message #send-it:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(22, 163, 74, 0.36);
}

.ymm-whatsapp-message #send-it svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.ymm-whatsapp-box #get-number {
	display: none;
}

.ymm-whatsapp-box .close-chat {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 5;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.ymm-whatsapp-box .close-chat:hover {
	background: rgba(255, 255, 255, 0.28);
	color: #ffffff;
	transform: rotate(90deg);
}

/* WhatsApp Floating Button */

.ymm-whatsapp-button {
	position: fixed;
	right: 24px;
	bottom: 26px;
	z-index: 99998;
	width: 68px;
	height: 68px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	box-shadow: 0 18px 45px rgba(22, 163, 74, 0.38);
	text-decoration: none;
	animation: ymmWhatsappPulse 2s infinite;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ymm-whatsapp-button::before {
	content: "";
	position: absolute;
	inset: -7px;
	border-radius: 50%;
	border: 1px solid rgba(34, 197, 94, 0.32);
}

.ymm-whatsapp-button::after {
	content: "WhatsApp";
	position: absolute;
	right: 78px;
	top: 50%;
	transform: translateY(-50%);
	padding: 9px 13px;
	border-radius: 999px;
	background: #0f172a;
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, right 0.3s ease;
}

.ymm-whatsapp-button:hover {
	transform: translateY(-4px) scale(1.04);
	box-shadow: 0 24px 55px rgba(22, 163, 74, 0.46);
}

.ymm-whatsapp-button:hover::after {
	right: 84px;
	opacity: 1;
	visibility: visible;
}

.ymm-whatsapp-button svg {
	position: relative;
	z-index: 2;
	width: 48px;
	height: 48px;
	display: block;
}

@keyframes ymmWhatsappPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.42), 0 18px 45px rgba(22, 163, 74, 0.38);
	}

	70% {
		box-shadow: 0 0 0 16px rgba(34, 197, 94, 0), 0 18px 45px rgba(22, 163, 74, 0.38);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), 0 18px 45px rgba(22, 163, 74, 0.38);
	}
}

/* Responsive */

@media (max-width: 1199px) {
	.ymm-footer-intro {
		grid-template-columns: 1fr;
	}

	.ymm-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ymm-footer-contact-card {
		min-height: 150px;
	}
}

@media (max-width: 991px) {
	.ymm-footer-main {
		padding-top: 58px;
	}

	.ymm-footer-brand {
		align-items: flex-start;
	}

	.ymm-footer-project-box {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.ymm-footer-main {
		padding: 44px 0 28px;
	}

	.ymm-footer-intro {
		margin-bottom: 34px;
	}

	.ymm-footer-brand {
		flex-direction: column;
		gap: 20px;
		padding: 24px;
		border-radius: 24px;
	}

	.ymm-footer-logo {
		width: 138px;
		height: 96px;
		flex-basis: auto;
	}

	.ymm-footer-logo img {
		max-height: 64px;
	}

	.ymm-footer-brand p {
		font-size: 15px;
	}

	.ymm-footer-contact-card {
		padding: 24px;
		border-radius: 24px;
	}

	.ymm-footer-contact-card a {
		font-size: 19px;
	}

	.ymm-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.ymm-footer-project-box {
		margin-top: 38px;
		padding: 24px;
		border-radius: 24px;
	}

	.ymm-footer-project-box strong {
		font-size: 19px;
	}

	.ymm-footer-button {
		width: 100%;
	}

	.ymm-footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}

	#whatsapp-chat.ymm-whatsapp-box {
		right: 16px;
		bottom: 94px;
		width: calc(100vw - 32px);
		border-radius: 22px;
	}

	.ymm-whatsapp-button {
		right: 16px;
		bottom: 18px;
		width: 62px;
		height: 62px;
	}

	.ymm-whatsapp-button svg {
		width: 44px;
		height: 44px;
	}

	.ymm-whatsapp-button::after {
		display: none;
	}
}

@media (max-width: 420px) {
	.ymm-footer-contact-card a {
		font-size: 17px;
	}

	.ymm-whatsapp-header {
		padding: 16px;
	}

	.ymm-whatsapp-body {
		min-height: 215px;
		padding: 18px;
	}

	.ymm-whatsapp-message {
		padding: 12px;
	}

	.ymm-whatsapp-message textarea {
		font-size: 13px;
	}
}



























.certificate-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
	max-width: 720px;
	margin: 0 auto 45px;
}

.section-subtitle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	padding: 8px 18px;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.06);
	color: #4b5563;
	font-size: 14px;
	font-weight: 600;
}

.section-title {
	margin: 0;
	color: #111827;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
}

.certificate-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.certificate-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
	transition: 0.3s ease;
}

.certificate-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
}

.certificate-card__image {
	position: relative;
	height: 230px;
	background: #f3f4f6;
	overflow: hidden;
}

.certificate-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
}

.certificate-card:hover .certificate-card__image img {
	transform: scale(1.06);
}

.certificate-card__content {
	padding: 26px;
}

.certificate-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.certificate-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: #111827;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
}

.certificate-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
}

.certificate-card__icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.certificate-card__title {
	min-height: 58px;
	margin: 0 0 18px;
	color: #111827;
	font-size: 22px;
	font-weight: 750;
	line-height: 1.3;
}

.certificate-card__code {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 22px;
	padding: 14px 16px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid #eef2f7;
}

.certificate-card__code span {
	color: #6b7280;
	font-size: 13px;
	font-weight: 600;
}

.certificate-card__code strong {
	color: #111827;
	font-size: 14px;
	font-weight: 800;
	text-align: right;
}

.certificate-card__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	border-radius: 14px;
	background: #111827;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.25s ease;
}

.certificate-card__button:hover {
	background: #374151;
	color: #ffffff;
	text-decoration: none;
}

.certificate-card__button--disabled {
	background: #e5e7eb;
	color: #6b7280;
	pointer-events: none;
}

.empty-state {
	max-width: 620px;
	margin: 0 auto;
	padding: 45px 25px;
	border-radius: 24px;
	background: #ffffff;
	text-align: center;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.empty-state h3 {
	margin-bottom: 10px;
	color: #111827;
	font-size: 24px;
	font-weight: 800;
}

.empty-state p {
	margin: 0;
	color: #6b7280;
}

@media (max-width: 1199px) {
	.certificate-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.certificate-section {
		padding: 55px 0;
	}

	.section-title {
		font-size: 30px;
	}

	.certificate-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.certificate-card__image {
		height: 210px;
	}

	.certificate-card__content {
		padding: 22px;
	}

	.certificate-card__title {
		min-height: auto;
		font-size: 20px;
	}
}






















.service-style2:hover {
    background-color: #506666;
    outline-color: var(--white-color);
}
.service-style2 .text-inherit:hover {
    color: #ffffff;
}
.service-style2 {
    padding: 20px 25px 20px 25px;
    background-color: var(--white-color);
    text-align: center;
    box-shadow: 1.5px 2.598px 14.88px 1.12px rgba(54, 72, 89, 0.05);
    outline: 1px solid rgb(1 60 114 / 73%);
    outline-offset: -9px;
    transition: all ease 0.4s;
    margin: 0 0 30px 0;
}
.service-style2 .service-title {
    font-size: 24px;
    transition: all ease 0.4s;
    margin-top: 10px;
}



.service-style3 {
    background-color: #00316a !important;
    padding: 0 0px 10px 0px;
    text-align: center;
    margin-bottom: 30px;
    transition: all ease 0.4s;
}
.service-style3 .service-img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 25px;
    position: relative;
}
.service-style3 .service-title {
    font-size: 26px;
    margin-bottom: 6px;
    color: #fff !important;
}
.service-style3 .service-text {
    color: #ffffff;
}

.footer-layout7 {
    background-color: #9fcac936;
}

.breadcumb-content {
    padding: 50px 0 50px 0;
}
.breadcumb-title {
    color: #fff;
    margin: -0.22em 0 -0.22em 0;
    font-size: 40px;
    text-transform: UNSET;
}
.breadcumb-menu li:last-child {
    color: #ffffff;
}
.breadcumb-menu li, .breadcumb-menu a {
    word-break: break-word;
    white-space: normal;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    font-family: var(--body-font);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/*------------------- PAGE GALERİ -------------------*/
/* Galeri resimlerini sabitleme */
.page_galeri .image-item img {
    width: 100%;        /* Genişlik bulunduğu sütuna yayılsın */
    height: 250px;      /* Sabit yükseklik (İsteğe göre değiştirebilirsiniz) */
    object-fit: cover;  /* Resmi bozmadan kutuya sığdırır ve fazlalığı kırpar */
    object-position: center; /* Resmi ortalar */
    border-radius: 8px; /* İsterseniz köşeleri hafif yuvarlatabilirsiniz */
    transition: transform 0.3s ease; /* Hover efekti için yumuşatma */
}
/* Hover (Üzerine gelince) efekti */
.image-hover-zoom:hover img {
    transform: scale(1.05); /* Üzerine gelince hafif büyüme sağlar */
}
/* Mobilde resimlerin çok küçük kalmaması için ayar */
@media (max-width: 768px) {
    .page_galeri .image-item img {
        height: 200px;
    }
}


/*------------------- TOC -------------------*/
.widget-toc{
  background: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #ddd;
}
.widget-toc p{
  font-weight: bold;
}
.widget-toc ol{}
.widget-toc ol li a{
  font-weight: bold;
}





/*------------------- 2.1. Container -------------------*/
:root {
  --main-container: 90%;
  --container-gutters: 24px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  :root {
    --main-container: 1250px;
  }
}
@media only screen and (min-width: 1300px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .th-container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
  /*
  .container-xxl.px-0,
  .container-xl.px-0,
  .container-lg.px-0,
  .container-md.px-0,
  .container-sm.px-0,
  .container.px-0 {
    max-width: var(--main-container);
  }
  */

}

@media only screen and (min-width: 1300px) {
  .th-container {
    --main-container: 1776px;
  }
}
@media only screen and (min-width: 1300px) {
  .th-container2 {
    --main-container: 1544px;
  }
}
@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.container-gallery {
  max-width: 1840px;
}


.comment-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.comment-section .comment-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s;
  border: 1px solid #e9ecef;
}
.comment-section .comment-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.comment-section .user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-section .comment-input {
  border-radius: 10px;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  transition: all 0.3s;
}
.comment-section .comment-input:focus {
  box-shadow: none;
  border-color: #86b7fe;
}
.comment-section .btn-comment {
  border-radius: 20px;
  padding: 8px 25px;
  background: #0d6efd;
  border: none;
  transition: all 0.3s;
}
.comment-section .btn-comment:hover {
  background: #0b5ed7;
  transform: translateY(-1px);
}
.comment-section .comment-actions {
  font-size: 0.9rem;
}
.comment-section .comment-actions a {
  color: #6c757d;
  text-decoration: none;
  margin-right: 15px;
  transition: color 0.2s;
}
.comment-section .comment-actions a:hover {
  color: #0d6efd;
}
.comment-section .comment-time {
  color: #adb5bd;
  font-size: 0.85rem;
}
.comment-section .reply-section {
  margin-left: 60px;
  border-left: 2px solid #e9ecef;
  padding-left: 20px;
}

.contact-links{}
.contact-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-links ul li{
  margin-bottom: 20px;
}
.contact-links ul li a{}
.contact-links ul li a .icon{
  display: inline-block;
  background: red;
  border-radius: 50%;
  color: #fff;
  line-height: 30px;
  font-size: 15px;
  width: 30px;
  height: 30px;
  text-align: center;
}
.contact-links ul li a .name{
  display: inline-block;
  color: #fff;
}
.contact-links ul li a .desc{
  display: inline-block;
  color: #fff;
  font-weight: bold;
}

.modal.lightbox img{
  margin: 0 !important;
  width: 100% !important;
}
.modal.lightbox .ratio.ratio-16x9{
  background-color: #00000000 !important;
}
.modal.lightbox .carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: -100px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2%;
  height: 100px !important;
  color: #fff;
  text-align: center;
  opacity: .5;
  transition: opacity .15s ease;
}
.modal.lightbox .carousel-control-next-icon {
  background-image: url('../img/icon_next.png');
}
.modal.lightbox .carousel-control-prev-icon {
  background-image: url('../img/icon_prev.png');
}
.modal.lightbox .modal-xl {
  max-width: 70%;
}


.goog-logo-link,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.goog-te-gadget{
  font-size: 0 !important
}
#google_translate_element{
  /*
    position: absolute;
    top: -5px;
    right: -110px;
  */
  height: 35px;
      position: absolute;
    top: 8px;
}
#google_translate_element a{
    display: none !important;
}
.goog-te-combo{
  border: 1px solid;
  padding: 5px 0 5px 0;
  width: 100px;
}
.widget_breton_core_switcher{
  display: none;
}

.langs-select{
  float: right;
  margin-left: 20px;
  height: 30px;
  line-height: 27px;
}
.skiptranslate{
  display: none;
}
.lang_actives .boxed_wrapper{
  margin-top: -40px;
}
.lang_actives.lang_en .main-menu .navigation > li{
  margin: 0px 5px;
}
.lang_actives.lang_en .main-menu .navigation > li > a{
  font-size: 13px;
  font-weight: bold;
}


/* Button Animate */
.custom-btn {
  color: #fff;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
}
.btn-animate1 {
  border: none;
  background: rgb(195 0 0);
  background: linear-gradient(0deg, rgb(195 0 0) 0%, rgb(255 0 0) 100%);
  color: #fff;
  overflow: hidden;
}
.btn-animate1:hover {
  text-decoration: none;
  color: #fff;
}
.btn-animate1:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-animate1:hover{
  opacity: .7;
}
.btn-animate1:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.trwpwhatsappballon {
    font-size: 14px;
    border-radius: 12px;
    border: 1px solid #fff;
    max-width: 250px;
    display: none;
}
.trwpwhatsapptitle {
    background-color: #22c15e;
    color: white;
    padding: 14px;
    border-radius: 12px 12px 0px 0px;
    text-align: center;
}
.trwpwhatsappmessage {
    padding: 16px 12px;
    background-color: white;
}
.trwpwhatsappinput {
    position: relative;
    background-color: white;
    border-radius: 0px 0px 12px 12px;
}
.trwpwhatsappinput input {
    width: 206px;
    border-radius: 10px;
    margin: 1px 1px 0px 10px;
    padding:10px;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 300;
    font-size: 13px;
    background-color: #efefef;
    border: 1px solid #d4d4d4;
}
.trwpwhatsappbutton {
    background-color: #22c15e;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    color: #fff;
    max-width: 220px;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.trwpwhatsappall {
    position: fixed;
    z-index: 9999999999999999999;
    bottom: 50px;
    right: 10px;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 300;
    font-size: 15px;
}
.trwpwhatsappsendbutton {
    color: #22c15e;
    cursor:pointer;
}
.trwpwhatsappsendbutton i{
    position: absolute;
    right: 10px;
}
.trwpwhatsappall button {border: none;}
.trwpwhatsappall button i {
    float: right;
    position: absolute;
    z-index: 999999999999;
    right: 10px;
    bottom: 15px;
    font-size: 18px !important;
    color: #000;
}
.trwpwhatsappall .kapat {
    position: absolute;
    right: 8px;
    top: 6px;
    font-size: 13px;
    border: 1px solid #fff;
    border-radius: 99px;
    padding: 2px 5px 2px 5px;
    color: white;
    font-size: 10px;
    cursor: pointer;
}



/* CSS Multiple Whatsapp Chat */
#whatsapp-chat a:link,
#whatsapp-chat a:visited {
  color: #444;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
#whatsapp-chat h1 {
  font-size: 20px;
  text-align: center;
  display: block;
  background: linear-gradient(to right top, #6f96f3, #164ed2);
  padding: 20px;
  color: #fff;
  border-radius: 50px;
}
#whatsapp-chat .whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}
#whatsapp-chat {
  box-sizing: border-box !important;
  outline: none !important;
  position: fixed;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  right: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}
a.blantershow-chat {
  /*   background: #009688; */
  background: #fff;
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 100px;
  right: 30px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}
a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0 0 0 0;
}
#whatsapp-chat .header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}
#whatsapp-chat .header-chat h3 {
  margin: 0 0 10px;
}
#whatsapp-chat .header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #fff;
}
#whatsapp-chat .info-avatar {
  position: relative;
}
#whatsapp-chat .info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
  background: #fff;
  height: auto;
  padding: 5px;
}
#whatsapp-chat a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}
#whatsapp-chat a.informasi:hover {
  background: #f1f1f1;
}
#whatsapp-chat .info-chat span {
  display: block;
}
#whatsapp-chat #get-label,
#whatsapp-chat span.chat-label {
  font-size: 12px;
  color: #888;
}
#whatsapp-chat #get-nama,
#whatsapp-chat span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
#whatsapp-chat #get-label,
#whatsapp-chat #get-nama {
  color: #fff;
}
#whatsapp-chat span.my-number {
  display: none;
}
/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
#whatsapp-chat textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 50px;
  outline: none;
  resize: none;
  padding: 10px;
  font-size: 14px;
}
#whatsapp-chat a#send-it {
  width: 40px;
  font-weight: 700;
  padding: 10px 0 0 5px;
  background: #095e54;
  border-radius: 0;
}
#whatsapp-chat a#send-it svg {
  fill: #fff;
  height: 24px;
  width: 24px;
}
#whatsapp-chat .first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
}
#whatsapp-chat .first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}
#whatsapp-chat .start-chat .blanter-msg {
  display: flex;
}
#whatsapp-chat #get-number {
  display: none;
}
#whatsapp-chat a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}
@keyframes ZpjSY {
  0% {
    background-color: #b6b5ba;
  }
  15% {
    background-color: #111111;
  }
  25% {
    background-color: #b6b5ba;
  }
}
@keyframes hPhMsj {
  15% {
    background-color: #b6b5ba;
  }
  25% {
    background-color: #111111;
  }
  35% {
    background-color: #b6b5ba;
  }
}
@keyframes iUMejp {
  25% {
    background-color: #b6b5ba;
  }
  35% {
    background-color: #111111;
  }
  45% {
    background-color: #b6b5ba;
  }
}
@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
.whatsapp-chat-hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}
.whatsapp-chat-show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}
#whatsapp-chat .whatsapp-message-container {
  display: flex;
  z-index: 1;
}
#whatsapp-chat .whatsapp-message {
  padding: 7px 14px 6px;
  background-color: white;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}
#whatsapp-chat .whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: #e6ddd4;
  position: relative;
}
#whatsapp-chat .whatsapp-chat-body::before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}
#whatsapp-chat .dAbFpq {
  display: flex;
  z-index: 1;
}
#whatsapp-chat .eJJEeC {
  background-color: white;
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}
#whatsapp-chat .hFENyl {
  position: relative;
  display: flex;
}
#whatsapp-chat .ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  background-color: #9e9da2;
  animation-name: ZpjSY;
}
#whatsapp-chat .dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: #b6b5ba;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  animation-name: hPhMsj;
}
#whatsapp-chat .kAZgZq {
  padding: 7px 14px 6px;
  background-color: white;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 40px);
}
#whatsapp-chat .kAZgZq::before {
  position: absolute;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0px;
  left: -12px;
  width: 12px;
  height: 19px;
}
#whatsapp-chat .bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}
#whatsapp-chat .iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}
#whatsapp-chat .iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}
#whatsapp-chat .cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}


.btn_whatsapp {
    position: fixed;
    bottom: 20px;
    width: 60px;
    right: 90px;
}


@media (max-width: 992px){
  .mobilGizle{
    display: none !important;
  }
  .slideshow-container {
  }



}


@media (min-width: 992px) and (max-width: 1100px) {


}

@media (min-width: 1100px) and (max-width: 1200px) {


}

@media (min-width: 1750px) and (max-width: 999925px) {


}


/* 320 - 480 */
@media only screen and (min-device-width : 990px) and (max-device-width : 1200px) {


}
/* 320 - 480 */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {


}
/* 475 - 768 */
@media only screen and (min-device-width : 475px) and (max-device-width : 768px) {




}
/* 765 - 990 */
@media only screen and (min-device-width : 765px) and (max-device-width : 990px) {


}
/* 990 - 1300 */
@media only screen and (min-device-width : 990px) and (max-device-width : 1300px) {

}
