:root {
	--body-font-family: 'Izmir', sans-serif;
	--body-color: #fff;
	--primary-color: #10466b;/*#004784*/
	--primary-color-rgb: 16, 70, 107;/*0, 71, 132*/
	--white-color: #fff;
	--white-rgb: 255, 255, 255;
	--border-radius: 14px;
	--padding-px: 72px;
	--content-padding-px: 60px;
	--secondary-color: #F9FAFB;

	--btn-primary-color: #fff;
	--btn-primary-bg: var(--primary-color);

	--brand-logo-width: clamp(150px, 12.5vw, 300px);
	--brand-color-logo-width: clamp(150px, 10.5vw, 300px);

	--form-control-placeholder-color: #9CA3AF;
	--form-control-hover-border-color: var(--primary-color);

	--menu-color-rgb: 255, 255, 255;
	--menu-sub-color-rgb: #000;
	--menu-hover-color-rgb: var(--primary-color-rgb);
	--menu-font-size: clamp(.95rem, 1vw, 4rem);
	--menu-sub-font-size: clamp(.85rem, .9vw, 4rem);
	--menu-bg-color: #fff;
	
	--language-font-size: clamp(1rem, 1.05vw, 4rem);
	--language-font-color: #fff;
	--language-font-color-rgb: 255, 255, 255;

	--brightness-font-size: clamp(1.75rem, 1.6vw, 3rem);

	--swiper-slide-header-color: #fff;
	--swiper-slide-header-font-size: clamp(3.5rem, 1vw, 10rem);

	--swiper-slide-text-color: #fff;
	--swiper-slide-text-font-size: clamp(1.4rem, 1vw, 3rem);

	--footer-top-left-header-font-size: 43.5px;
	--footer-top-left-header-color: #fff;

	--footer-top-left-text-font-size: 16.8px;
	--footer-top-left-text-color: #fff;

	--footer-top-right-form-border-radius: 18px;

	--footer-border-radius: 30px;

	--footer-top-right-form-bg: #fff;

	--footer-top-right-form-header-font-size: 24px;
	--footer-top-right-form-header-color: #000;

	--footer-bottom-bg: #18181B;

	--main-blog-card-date-color: var(--primary-color);
	--main-blog-card-header-color: var(--primary-color);
	--main-blog-card-text-color: #6B7280;

	--main-blog-card-hover-bg: var(--primary-color);

	--success-color-rgb: 0, 139, 109;

}

body {
	background: var(--body-color);
	font-family: var(--body-font-family);
}

a {
	text-decoration: none;
	color: var(--primary-color);
}

a:hover {
	text-decoration: none;
}

.container {
	max-width: 1600px;
	padding-left: 60px;
	padding-right: 60px;
}

.bg-primary {
	background: var(--primary-color) !important;
}

.bg-secondary {
	background: var(--secondary-color) !important;
}

.btn {
	font-size: 15px;
	transition: all 0.3s ease;
	font-weight: 600;
	padding: 14px 30px;
}

.btn-sm {
	font-size: 14px;
	padding: 7.5px 20px;
	font-weight: 600;
	border-radius: calc(var(--border-radius) / 2);
}

.btn-lg {
	font-size: 16px;
    padding: 12.5px 20px;
    font-weight: 600;
    border-radius: var(--border-radius);
}

.btn-icon {
	width: 45px;
    height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0;
}

.btn-circle {
	border-radius: 16px;
}

.btn-primary {
	background: var(--btn-primary-bg);
	color: var(--btn-primary-color);
	border-color: var(--btn-primary-bg);
}

.btn-white, .btn-white:focus, .btn-white:active {
	background: #fff !important;
	border-color: #E5E7EB !important;
	color: var(--primary-color) !important;
}

.btn-white:hover {
	background: var(--primary-color) !important;
	color: #fff !important;
	border-color: var(--primary-color) !important;
}

.btn-soft-primary, .btn-soft-primary:focus, .btn-soft-primary:active {
	background: rgba(var(--primary-color-rgb), 0.15) !important;
	color: rgb(var(--primary-color-rgb)) !important;
	border-color: transparent !important;
}

.btn-soft-primary:hover {
	background: rgb(var(--primary-color-rgb)) !important;
	color: #fff !important;
	border-color: rgb(var(--primary-color-rgb)) !important;
}

.btn-soft-white, .btn-soft-white:focus, .btn-soft-white:active {
	background: rgba(var(--white-rgb), 0.3) !important;
	color: rgb(var(--white-rgb)) !important;
	border-color: transparent !important;
}

.btn-soft-white:hover {
	background: rgb(var(--white-rgb)) !important;
	color: var(--primary-color) !important;
	border-color: rgb(var(--white-rgb)) !important;
}

.badge {
	font-size: 14px;
    font-weight: 600;
    padding: 10px 20px 10px 15px;
}

.badge i {
	margin-right: 5px;
}

.badge-rounded {
	border-radius: 18px;
}

.badge-soft-white {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

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

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

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

.line-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.form-label {
	font-size: 16px;
}

.form-control {
	border-radius: 12px;
    background: #F5F7FA;
    border: 1px solid transparent;
    font-weight: 400;
}

.form-control::placeholder {
	color: var(--form-control-placeholder-color);
}

.form-control-lg {
	padding: 10px 20px;
	font-size: 16px;
	border: 2px solid transparent;
}

.form-control:hover, .form-control:focus {
	box-shadow: none;
	outline: none;
	background: #F5F7FA;
	border-color: var(--form-control-hover-border-color);
}

.section-padding {
	padding-top: var(--padding-px);
	padding-bottom: var(--padding-px);
}

.section-padding-top {
	padding-top: var(--padding-px);
}

.text-primary {
	color: var(--primary-color) !important;
}

.primary-header {
	font-size: 44px;
	font-weight: 400;
}

.primary-header b {
	font-weight: 700;
}

.content-section-padding {
	padding-top: var(--content-padding-px);
	padding-bottom: var(--content-padding-px);
}

/* HEADER CSS: BAŞLANGIÇ */

.header {
	width: 100%;
	transition: all 0.3s ease;
	z-index: 999;
	position: relative;
	/*border-bottom: 1px solid rgba(0, 0, 0, .1);*/
}

.index-page .header {
	position: absolute;
    padding-top: 30px;
    border-bottom: 0;
}

.brand-logo {
	width: var(--brand-logo-width);
	display: none;
}

.brand-color-logo {
	width: var(--brand-color-logo-width);
}

.index-page .header .brand-color-logo {
	display: none;
}

.index-page .header .brand-logo {
	display: block;
}

.header-left, .header-right {
	flex: 1;
}

.header-middle {
	flex: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-right-language {
	display: flex;
	margin-right: 25px;
	font-size: var(--language-font-size);
	color: var(--primary-color) !important;
}

.index-page .header-right-language {
	color: rgba(var(--language-font-color-rgb), 0.6) !important;
}

.header-right a {
	transition: all 0.3s ease;
}

.header-right-language a {
	transition: all 0.3s ease;
	color: var(--primary-color);
}

.index-page .header-right-language a {
	color: rgba(var(--language-font-color-rgb), 0.6) !important;
}

.index-page .header.header-active .header-right-language, 
.index-page .header.header-active .header-right-language a {
	color: rgba(0, 0, 0, .75) !important;
}

.header-right-language a:hover, .header-right-language a.active {
	color: var(--primary-color) !important;
}

.header-right-language a.active {
	font-weight: 600;
}

.index-page .header-right-language a:hover, .index-page .header-right-language a.active {
	color: var(--language-font-color) !important;
}

.header-right-action-buttons {
	display: flex;
	gap: 15px;
}

.header-right-action-buttons .btn {
	height: 45px;
	width: 45px;
	margin-left: 10px;
}

.header-right-action-buttons .btn-brightness {
	font-size: var(--brightness-font-size);
}

.btn-menu {
	font-size: 24px;
    line-height: 1;
    display: none;
}

.header-middle ul {
	display: none;
	margin-bottom: 0;
	opacity: 0;
	visibility: hidden;
    padding: 0;
    list-style: none;
    min-width: 200px;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.header-middle > ul {
	display: flex;
    list-style: none;
    opacity: 1;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-top: 0;
    min-width: auto;
   	transform: translateY(0px);
   	visibility: visible;
}

.header-middle ul li {
	position: relative;
}

.header-middle > ul > li.custom-dropdown-menu > a {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.header-middle > ul > li ul {
	box-shadow: var(--bs-box-shadow-lg) !important;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}

.header-middle > ul > li {
	padding: 0;
}

.header-middle > ul > li > a {
	background: transparent !important;
}

.index-page .header-middle > ul > li > a, 
.index-page .header-middle > ul > li > a:focus {
	padding: 10px 25px !important;
	border-radius: 12px;
	color: rgba(var(--menu-color-rgb), 1) !important;
}

.header-middle > ul > li > a > i {
	font-size: 14px;
    margin-left: 5px;
    position: relative !important;
    right: 0 !important;
}

.header-middle > ul > li.active > a, .header-middle > ul > li.menu-active > a, .header-middle > ul > li:hover > a {
	background: var(--primary-color) !important;
	color: #fff !important;
}

.header-middle > ul > li:hover > ul {
	display: block;
	position: fixed;
	opacity: 1;
	transform: translateY(0px);
	visibility: visible;
	left: auto !important;
    top: auto !important;
}

.header-middle ul li:hover > ul {
    display: block;
    position: fixed;
    opacity: 1;
    left: calc(100% - 0px);
    top: calc(100% - 115px);
    visibility: visible;
}

.header-middle ul li a {
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: var(--menu-sub-font-size);
	color: rgba(var(--primary-color-rgb), 1);
	padding: 10px 40px 10px 25px;
	display: block;
	background: var(--menu-bg-color);
	position: relative;
	padding-right: 40px;
}

.header-middle > ul > li > a, 
.header-middle > ul > li > a:focus {
	margin-right: 0;
	padding: 30px 25px !important;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: var(--menu-font-size) !important;
	color: #000;
}

.header-middle ul li a i {
	position: absolute;
	right: 20px;
}

.header-middle ul li a:last-child {
	border-bottom: 0;
}

.header-middle ul li a:hover {
	background: rgba(var(--primary-color-rgb), 1) !important;
	color: #fff !important;
}

.index-page .header-middle ul > li > ul > li:first-child > a {
	border-top-right-radius: var(--border-radius);
}

.index-page .header.header-active .header-middle ul > li > ul > li:first-child > a {
	border-top-right-radius: 0;
}

.header .header-middle > ul > li > a {
	border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.index-page .header .header-middle > ul > li > a {
	border: 0;
}

.header-middle ul > li > ul li:last-child a {
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}
/*
.header-middle ul > li ul {
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}
*/
.header-middle ul li.sub-dropdown-menu:hover a {
	border-bottom-right-radius: 0;
}

.header-middle ul li.sub-dropdown-menu:hover ul li a {
	border-bottom-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
}

.header-middle > ul > li ul a {
	border-top: 1px solid rgba(0, 0, 0, .05) !important;
}

.header.header-active {
	position: fixed;
	padding: 0;
    background: #fff;
    top: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: var(--bs-box-shadow) !important;
    transform: translateY(-300px);
    border-bottom: 0;
}

.header.header-active .header-middle > ul > li > a {
	color: #000 !important;
}

.header.header-active .header-middle > ul > li:hover > a {
	color: #fff !important;
	background: var(--primary-color) !important;
}

.index-page .header.header-active .header-middle > ul > li:hover > a {
	color: #fff !important;
	background: var(--primary-color) !important;
}

.header.header-active .brand-logo {
	display: none;
}

.header.header-active .brand-color-logo {
	display: block;
}

.index-page .header.header-active .header-middle > ul > li > a, 
.index-page .header.header-active .header-middle > ul > li > a:focus,
.header.header-active .header-middle > ul > li > a, 
.header.header-active .header-middle > ul > li > a:focus {
	border-right: 1px solid rgba(0, 0, 0, 0.05);
	padding: 30px 25px !important;
    border-radius: 0;
    margin-right: 0;
}

.index-page .header.header-active .header-middle > ul > li:first-child > a,
.header.header-active .header-middle > ul > li:first-child > a {
	border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.index-page .header-middle ul li a {
	padding: 10px 40px 10px 25px;
	border: 0;
}

 .header.header-active .header-middle > ul > li > a:focus
/*
.header.header-active .header-middle ul > li > ul > li:first-child > a {
	display: none;
}
*/
.header.header-active .header-right-language a:hover, 
.header.header-active .header-right-language a.active {
	color: var(--primary-color) !important;
	font-weight: 600;
}

.header.header-active .btn-soft-primary, 
.header.header-active .btn-soft-primary:focus, 
.header.header-active .btn-soft-primary:active,
.index-page .header.header-active .btn-soft-primary, 
.index-page .header.header-active .btn-soft-primary:focus, 
.index-page .header.header-active .btn-soft-primary:active {
	color: var(--primary-color) !important;
    background: rgba(var(--primary-color-rgb), 0.08) !important;
    transition: all 0.3s ease;
}

.header.header-active .btn-soft-primary:hover {
	color: #fff !important;
	background: var(--primary-color) !important;
}

.index-page .header .btn-soft-primary, 
.index-page .header .btn-soft-primary:focus, 
.index-page .header .btn-soft-primary:active {
	color: #fff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.index-page .header .btn-soft-primary:hover {
	color: #fff !important;
	background: var(--primary-color) !important;
}

.header.header-active .header-right-language, .header.header-active .header-right-language a {
	color: rgba(0, 0, 0, .75);
}

.header-active.header-top-active {
	transform: translateY(0px);
}

/* HEADER CSS: BİTİŞ */

/* SLIDER CSS: BAŞLANGIÇ */

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	display: flex;
	align-items: center;
}

.main-swiper {
	height: 100vh;
}

.main-swiper .swiper-slide {
	background-repeat: no-repeat;
	background-size: cover;
}

.swiper-slide-content {
	max-width: 40%;
	margin-bottom: 60px;
}

.swiper-slide-content-header {
	color: var(--swiper-slide-header-color);
	font-size: var(--swiper-slide-header-font-size);
	font-weight: 400;
}

.swiper-slide-content-text {
	color: var(--swiper-slide-text-color);
	font-size: var(--swiper-slide-text-font-size);
}

/* SLIDER CSS: BİTİŞ */

/* FOOTER CSS: BAŞLANGIÇ */

.footer {
	padding-bottom: var(--padding-px);
	padding-top: var(--padding-px);
}

.footer-top {
	background: #fff;
	position: relative;
	overflow: hidden;
	border-top-left-radius: var(--footer-border-radius);
    border-top-right-radius: var(--footer-border-radius);
}

.footer-top-content {
	padding: var(--padding-px);
}

.footer-top-bg {
	position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    opacity: 1;
}

.footer-top-gradient {
	background-color: rgba(var(--primary-color-rgb), 0.9);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.footer-top-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative;
    opacity: 1;
    background: #fff;
}

.footer-top-left-header {
	font-size: var(--footer-top-left-header-font-size);
    font-weight: 700;
    color: var(--footer-top-left-header-color);
}

.footer-top-left-text {
	font-size: var(--footer-top-left-text-font-size);
    color: var(--footer-top-left-text-color);
    font-weight: 500;
}

.footer-top-right-form {
	padding: 50px;
    background: #fff;
    border-radius: var(--footer-top-right-form-border-radius);
}

.footer-top-right-form-header {
    font-size: var(--footer-top-right-form-header-font-size);
    color: var(--footer-top-right-form-header-color);
    font-weight: 600;
}

.footer-top-right-form-text {
	font-size: 16px;
	color: #6B7280;
}

.footer-bottom {
	background: var(--footer-bottom-bg);
	border-bottom-left-radius: var(--footer-border-radius);
	border-bottom-right-radius: var(--footer-border-radius);
}

.footer-menu {
	padding-top: var(--padding-px);
	padding-bottom: var(--padding-px);
	color: #fff;
}

.footer-izbb-logo {
	width: 100px;
	margin-right: 25px;
	padding-right: 25px;
	border-right: 1px solid rgba(255, 255, 255, .4);
}

.footer-izpa-logo {
	width: 100px;
}

.footer-bottom-header {
	color: rgba(255, 255, 255, 0.4);
	font-size: 16px;
	margin-bottom: 15px;
}

.footer-bottom-link {
	color: #fff;
	font-size: 18px;
	transition: all 0.3s ease;
	font-weight: 400;
	margin-bottom: 5px;
}

.footer-bottom-link:hover {
	color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-bottom: calc(var(--padding-px) / 2);
	padding-top: calc(var(--padding-px) / 2);
	text-align: center;
}

/* FOOTER CSS: BİTİŞ */

.main-blog-card {
    margin-bottom: 20px;
}

.main-blog-card:last-child {
	margin-bottom: 0;
}

.main-blog-card .main-blog-card-link {
	padding: 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: calc(var(--border-radius) * 1.5);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.main-blog-card-date {
	background: #F3F5F7;
    border-radius: 20px;
    text-align: center;
    height: 75px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.main-blog-card-date-day {
	display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--main-blog-card-date-color);
}

.main-blog-card-date-month {
	font-size: 14px;
	font-weight: 600;
	display: block;
	color: var(--main-blog-card-date-color);
}

.main-blog-card-content-header {
	font-size: 24px;
	color: var(--main-blog-card-header-color);
	font-weight: 600;
}

.main-blog-card-content-text {
	color: var(--main-blog-card-text-color);
}

.main-blog-card-content-category {
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
	padding-left: 15px;
	text-transform: uppercase;
	font-size: 13px;
}

.main-blog-card-content-category::before {
	content: "•";
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -10px;
}

.main-blog-card:hover .main-blog-card-link, .main-blog-card.active .main-blog-card-link {
	background: var(--main-blog-card-hover-bg);
}

.main-blog-card:hover .main-blog-card-content-category, 
.main-blog-card.active .main-blog-card-content-category, 
.main-blog-card:hover .main-blog-card-content-header, 
.main-blog-card.active .main-blog-card-content-header,
.main-blog-card:hover .main-blog-card-content-text, 
.main-blog-card.active .main-blog-card-content-text {
	color: #fff !important;
}

.main-blog-full-card {
	height: 100%;
	border-radius: calc(var(--border-radius) * 2);
	overflow: hidden;
	position: relative;
}

.main-blog-full-card-img {
	width: 100%;
    height: 100%;
}

.main-blog-full-card-img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-blog-full-card-gradient {
	position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.58) 50%, rgba(237, 221, 83, 0) 80%);
}

.main-blog-full-card-content {
	position: absolute;
    z-index: 999;
    bottom: 0;
    padding: calc(var(--padding-px) / 1.3);
}

.main-blog-full-card-date {
	display: block;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    font-size: 18px;
}

.main-blog-full-card-header {
	font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-top: 15px;
}

.main-blog-full-card-text {
	font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 15px;
}



.main-plans-card-image img {
	box-shadow: var(--bs-box-shadow) !important;
	border-radius: calc(var(--border-radius) * 1.75);
}

.main-plans-card-content {
	padding: 20px 15px 0px 15px;
}

.main-plans-card-content h4 {
	font-size: 17px;
    color: var(--primary-color);
}

.main-plans-card {
	max-width: 70%;
}

.main-plans-card-image img {
	width: 100%;
}

.main-graphic-text {
	color: rgba(0, 0, 0, .75);
	font-size: 24px;
}

.main-graphic-detail {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.main-graphic-img {
	text-align: center;
}

.main-graphic-img img {
	width: 100%;
	max-width: 85%;
}

.main-graphic-content-header {
	font-size: 36px;
	font-weight: 400;
	color: var(--primary-color);
}

.main-graphic-content-text {
	color: #000;
}

.main-graphic-cards {
	padding-bottom: var(--content-padding-px)
}

.main-graphic-card {
	padding: 10px 25px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
    gap: 15px;
    height: 100%;
}

.main-graphic-card-icon {
	padding: 15px;
	background: var(--primary-color);
	width: 60px;
	height: 60px;
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.main-graphic-card-icon i {
	color: #fff;
}

.main-graphic-card-header {
	display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.main-graphic-card-text {
	display: block;
    font-size: 14px;
    font-weight: 500;
}

.main-graphic-card-badge {
	background: rgba(var(--success-color-rgb), 0.25);
    padding: 2px 10px;
    display: inline-block;
    color: rgb(var(--success-color-rgb));
    text-align: left;
    border-radius: calc(var(--border-radius) / 2);
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
}

#graphics-tab {
	margin-top: calc(var(--content-padding-px) / 2);
    padding: 15px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

#graphics-tab li {
	width: 100%;
    text-align: center;
    position: relative;
}

#graphics-tab li a {
	background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 18px;
    
}

#graphics-tab li a.active {
	color: #fff;
	font-weight: 600;
	position: relative;
    top: -3px;
    transition: all 0.3s ease;
}

#graphics-tab li a:hover {
	color: #fff;
}

#graphics-tab li::after {
	content: "";
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

#graphics-tab li a.active::after {
	content: "•";
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 15px;
}

#graphics-tab li:last-child::after {
	border-right: 0;
}

.page-header {
	background: url('../images/page-header/page-header.jpg');
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header-gradient {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-rgb), .55);
}

.page-header-title {
	font-size: 42px;
    color: #fff;
    font-weight: 600;
}

.page-header .breadcrumb-item {
	font-size: 15px;
}

.page-header .breadcrumb-item.active {
	color: #fff;
	font-weight: 600;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.75);
}

.page-header .breadcrumb-item a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1px;
}

.page-header .breadcrumb-item a:hover {
	color: #fff;
}

.contact-form {
	padding: calc(var(--padding-px) / 3);
}

.contact-form-header {
	font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.contact-form-hr {
	opacity: 0.1;
}

.contact-card {
	border-radius: var(--footer-border-radius);
    overflow: hidden;
    border: 0;
    box-shadow: var(--bs-box-shadow) !important;
}

.news-swiper-section {
	margin-top: -225px;
    z-index: 99;
    position: relative;
    padding-bottom: 30px;
}

.news-swiper-header {
	color: #fff;
    margin-bottom: 25px;
}

.news-swiper {
	padding-bottom: 50px;
	--swiper-pagination-color: var(--primary-color);
}

.swiper-news-card {
	padding: 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: var(--border-radius);
    width: 100%;
    box-shadow: var(--bs-box-shadow) !important;
}

.swiper-news-card-img {
	position: relative;
	margin-bottom: 10px;
}

.swiper-news-card-img img {
	width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.swiper-news-card-header {
	font-size: 18px;
    color: var(--primary-color);
}

.swiper-news-card-content {
	padding: 0px 10px;
}

.swiper-news-card-text {
	color: var(--main-blog-card-text-color);
	font-size: 14px;
}

.swiper-news-card-time {
	position: absolute;
    left: 10px;
    top: 10px;
    border-radius: calc(var(--border-radius) / 2);
    font-size: 13px;
    padding: 7px 15px;
    font-weight: 500;
}

.footer-social-medias {
	margin-top: 30px;
	display: block;
}

.footer-social-medias ul {
	list-style: none;
	padding-left: 0;
	display: flex;
	gap: 10px;
}

.footer-social-media-item {
	padding: 15px 20px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: calc(var(--border-radius) / 3);
    font-size: 20px;
    color: #000;
    background: #fff;
    transition: all 0.3s ease;
}

.footer-social-media-item:hover {
	background: var(--primary-color);
	color: #fff;
}

.news-swiper .swiper-horizontal > .swiper-pagination-bullets {
	bottom: 0px;
}

.offcanvas-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu {
	list-style: none;
    padding-left: 0;
}

.mobile-menu ul {
	list-style: none;
	padding-left: 0;
	display: none;
	background: rgba(0, 0, 0, .1);
}

.mobile-menu ul > ul {
	padding: 15px;
}

.mobile-menu li a {
	display: block;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    font-weight: 500;
}

#offcanvasMenu .offcanvas-body {
	padding: 0;
	background: var(--secondary-color);
}

.offcanvas-dropdown > a {
	position: relative;
}

.offcanvas-dropdown button {
	padding: 0;
    height: 100%;
    width: 56px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0;
    background: transparent;
    color: #000;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, .1);
    font-size: 18px;
}

.custom-offcanvas-search {
	position: fixed;
	top: -160px;
	z-index: 9999;
	width: 100%;
	transition: all 0.3s ease;
}

.custom-offcanvas-search.search-active {
	top: 0;
}

.custom-offcanvas-search-gradient {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 1;
	position: fixed;
	top: 0;
	display: none;
}

.custom-offcanvas-search.search-active .custom-offcanvas-search-gradient {
	display: block;
}

.custom-offcanvas-search-body {
	z-index: 2;
	position: relative;
	padding: 50px 20px;
	background: #fff;
	display: flex
}

.custom-offcanvas-search-input {
	width: 100%
}

.custom-offcanvas-search-input input {
	border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 100%;
}

.custom-offcanvas-search-button button {
	border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 100%;
    border-bottom-right-radius: 13px;
    border-top-right-radius: 13px;
    width: 50px;
}

.custom-offcanvas-close-button button {
	height: 100%;
    width: 50px;
    border-radius: 13px;
    font-size: 24px;
    color: rgba(0, 0, 0, .5);
}

.sidebar {
	position: sticky;
	top: 100px;
}

.sidebar-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
}

.sidebar-list {
	list-style: none; 
	padding-left: 0; 
	margin-bottom: 0;
}

.sidebar-link {
	padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: calc(var(--border-radius) / 3);
    width: 100%;
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.03);
    font-weight: 500;
}

.corporate-identity-logo {
	padding: 15px;
    border: 1px solid var(--bs-border-color);
}

.corporate-identity-logo h5 {
	margin-bottom: 15px;
}

.corporate-identity-logo a {
	font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
    display: block;
}

@media only screen and (max-width: 1280px) {

	.swiper-slide-content {
		max-width: 75%;
	}

	.index-page .header-middle > ul > li > a, .index-page .header-middle > ul > li > a:focus {
		padding: 10px 10px !important;
	}

}

@media only screen and (max-width: 991px) {

	:root {
		--swiper-slide-header-font-size: clamp(2rem, 1vw, 10rem);
		--swiper-slide-text-font-size: clamp(1rem, 1vw, 3rem);
		--content-padding-px: 30px;
		--footer-top-left-text-font-size: 16px;
		--footer-top-left-header-font-size: 28px;
		--footer-top-right-form-header-font-size: 20px;
		--padding-px: 36px;
		--brand-logo-width: clamp(150px, 12.5vw, 300px);
	}

	.container {
		max-width: 100%;
    	padding-right: calc(var(--bs-gutter-x) * .5);
    	padding-left: calc(var(--bs-gutter-x) * .5);
	}

	.badge {
		font-size: 12px;
	}

	.main-swiper {
		height: 60vh;
	}

	.swiper-slide-content {
		max-width: 100%;
	}

	.swiper-news-card {
		box-shadow: none !important;
	}

	.news-swiper-section {
		margin-top: -90px;
	}

	.main-plans-card {
		max-width: 90%;
        margin: 15px 0px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
	}

	.main-plans-card-content {
		padding: 0;
    	padding-top: 20px;
	}

	.main-plans-card-content h4 {
		font-size: 14px;
	}

	.btn {
		padding: 12px 30px;
    	font-size: 14px;
	}

	.btn-sm {
		padding: 7.5px 20px;
	}

	.primary-header {
		font-size: 28px;
	}

	.main-graphic-text {
		font-size: 16px;
	}

	.footer-top-content {
		padding: 40px 30px;
	}

	.footer-top-right-form {
		margin-top: 25px;
		padding: 30px;
	}

	.footer-top-left-text {
		font-weight: 400;
	}

	.footer {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.footer-top-right-form-text {
		font-size: 14px;
	}

	.form-label {
		font-size: 14px;
	}

	.footer-menu {
    	padding-top: calc(var(--padding-px) / 2);
    	padding-bottom: calc(var(--padding-px) / 2);
    }

	.footer-bottom {
		padding-left: 15px;
		padding-right: 15px;
	}

	.footer-bottom-link {
		font-size: 16px;
	}

	.header-middle {
		display: none;
	}

	.header-right-action-buttons {
		gap: 10px;
	}

	.btn-menu {
		display: flex;
	}

	.form-control-lg {
		font-size: 15px;
	}

	#graphics-tab {
		flex-wrap: wrap
	}

	#graphics-tab li {
		width: 50%;
	}

	#graphics-tab li a {
		font-size: 16px;
        height: 50px;
        display: block;
        border-right: 0;
	}

	#graphics-tab li:nth-child(1) a, #graphics-tab li:nth-child(2) a {
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}

	.main-graphic-card {
		padding: 15px;
	}

	.main-graphic-card-icon {
		width: 45px;
    	height: 45px;
    	padding: 10px;
    	font-size: 20px;
	}

	.main-graphic-content-header {
		font-size: 32px;
	}

	.main-graphic-content-text {
		font-size: 14px;
	}


	#graphics-tab li:nth-child(2)::after, #graphics-tab li:last-child::after {
		border-right: 0;
	}

	.main-blog-full-card-img {
		display: none;
	}

	.main-blog-card-content-header {
		font-size: 18px;
	}

	.main-blog-card-content-text {
		font-size: 14px;
	}

	#graphics-tab li a.active {
		top: 0;
	}

	.header {
	    padding-top: 10px !important;
	    padding-bottom: 10px !important;
	}

	.page-header .breadcrumb {
		display: none;
	}

	.text-page img {
		max-width: 100%;
	}

	.custom-offcanvas-search-body {
		padding: 30px 0;
	}

}







