@font-face {
  font-family: 'Dachi-The-Lynx'; /* The name you will use in your CSS */
  src: url('../fonts/Dachi-The-Lynx.otf') format('opentype'); /* Path to your file */
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Keeps text visible while loading */
}
body {
	margin:0;
	padding:0;
	font-family: "Noto Sans Georgian", sans-serif;
	font-size: 17px;
	color: #262624;
}
body.no-scroll {
  overflow-y: hidden;
}
* {
	text-decoration: none;
	box-sizing: border-box;
}
img {
	max-width: 100%;
}
.container {
	width: 100%;
	max-width: 1280px;
	padding:0 40px;
	margin:0 auto;
}
.header_wrapper {
	box-shadow: 0px 1px 10px 0px rgba(41,77,99,0.3);
	-webkit-box-shadow: 0px 1px 10px 0px rgba(41,77,99,0.3);
	-moz-box-shadow: 0px 1px 10px 0px rgba(41,77,99,0.3);
	position: relative;
	z-index: 999;
}
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
}
.logo {
	line-height:0;
}
.logo img {
	height: 45px;
}
.mob_menu {
	display: none;
}
.mob_nav {
	display: none;
}
.menu {

}
.nav_single {
	height: 100px;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	font-family: 'Dachi-The-Lynx';
	color: #103470;
	margin:0 40px 0 0;
	padding-top: 6px;
}
.nav_single:hover {
	color: #E82223;
}
.nav_catalogue {
	padding:0 36px;
	padding-top: 6px;
	height: 50px;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #103470;
	font-family: 'Dachi-The-Lynx';
	font-size: 14px;
	color: #fff;
	transition: all 0.2s ease;
}
.nav_catalogue:hover {
	background: #E82223;
}
.nav_catalogue svg {
	width: 20px;
	height: 20px;
	fill:#fff;
	margin-top: -7px;
	margin-right: 15px;
}
/* Container holds button and content together */
.dropdown-container {
  position: relative;
  display: inline-block;
}
/* The Trigger Button */
.dropdown-btn {
	margin:0 24px 0 0;
	height: 100px;
	font-size: 14px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	transition: all 0.2s ease;
	font-family: 'Dachi-The-Lynx';
	color: #262624;
	background: #fff;
	border:none;
	outline:none;
	padding-top: 6px;
}
.dropdown-btn:hover {
  color: #EE1C25;
}

/* Arrow Icon Setup */
.arrow {
	margin:-8px 0 0 10px;
	font-size: 14px;
	transition: transform 0.3s ease; /* Smooth rotation */
}

/* Hidden Dropdown Content Menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%
  left: 0;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  z-index: 10;
  overflow: hidden;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: var(--text-color);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.15s ease;
}

.dropdown-content a:hover {
  background-color: var(--bg-hover);
  color: var(--primary-color);
}

/* --- State Classes (Toggled via JS) --- */

/* Show the dropdown menu */
.dropdown-container.active .dropdown-content {
  display: block;
}

/* Rotate the arrow upside down */
.dropdown-container.active .arrow {
  transform: rotate(180deg);
}

.hero_wrapper {

}
.hero {

}
.hero_item {
	position: relative;
}
.hero_photo {
	line-height: 0;
	height: calc(100dvh - 100px);
}
.hero_photo img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.hero_info {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding:0 0 40px 0;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+50,0.7+100 */
background: linear-gradient(to bottom,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 50%,rgba(0,0,0,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}
.hero_info_spacer {
	width: 100%;
	max-width: 1280px;
	padding:0 40px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.hero_caption {
	width: calc(100% - 150px);
}
.hero_title {
	font-family: Dachi-The-Lynx;
	font-size: 30px;
	color: #fff;
}
.hero_desc {
	margin:8px 0 0 0;
	font-size: 19px;
	color: #fff;
}
.hero_arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	padding:0 0 2px 0;
}
.hero_arrows div {
	width: 76px;
	height: 76px;
	border-radius: 100%;
	border:1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	cursor: pointer;
}
.hero_arrows div:hover {
	background: #E82223;
}
.hero_arrows div:first-child {
	margin:0 20px 0 0;
}
.hero_arrows div svg {
	width: 30px;
	height: 30px;
	fill:#fff;
}
.section_wrapper {
	padding:120px 0;
}
.section_wrapper.grey {
	background:#E7E7E7;
}
.section {

}
.section_header {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.section_header.left {
	align-items: flex-start;
}
.section_title {
	font-family: Dachi-The-Lynx;
	font-size: 30px;
	text-align: center;
	color: #103470;
}
.section_header.left .section_title {
	text-align: left;
}
.section_text {
	margin:30px 0 0 0;
}
.section_text p {
	margin:0 0 30px 0;
	font-size: 18px;
	line-height: 27px;
}
.section_text p.highlight {
	color: #EE1C25;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
}
.section_text p:last-child {
	margin:0;
}
.section_split {
	display: flex;
	justify-content: space-between;
}
.section_split_info {
	width: calc(50% - 20px);
}
.section_split_photo {
	width: calc(50% - 20px);
	line-height: 0;
}
.section_split_photo.sdlg-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	background:#fff;
	border-radius: 12px;
}
.section_split_photo.sdlg-logo img {
	height: 160px;
}
.product_category_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.product_category_item {
	width: calc(100% / 3 - 20px);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin:80px 0 0 0;
	
}
.product_category_icon {
	line-height: 0;
	transition: all 0.3s ease;
}
.product_category_item:hover .product_category_icon {
	transform: scale(1.1);
}
.product_category_icon img {
	height: 100px;
}
.product_category_title {
	margin:40px 0 0 0;
	text-align: center;
	font-family: Dachi-The-Lynx;
	font-size: 15px;
	color: #103470;
	transition: all 0.3s ease;
}
.product_category_item:hover .product_category_title {
	color: #262624;
}
.product_category_more {
	margin:20px 0 0 0;
	font-size: 14px;
	font-weight: 600;
	color: #E82223;
	display: flex;
	align-items: center;
	justify-content: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	border-radius: 36px;
	padding:0 22px;
	padding-bottom: 4px;
	border:1px solid #E82223;
	transition: all 0.3s ease;
}
.product_category_item:hover .product_category_more {
	background: #E82223;
	color: #fff;
}
.product_category_more svg {
	width: 20px;
	height: 20px;
	fill:#E82223;
	margin:3px 0 0 12px;
	transition: all 0.3s ease;
}
.product_category_item:hover .product_category_more svg {
	fill: #fff;
}
.benefit_list {
	margin:40px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.benefit_list_item {
	margin:40px 0 0 0;
	width: calc(50% - 20px);
	border:1px solid #E7E7E7;
	border-radius: 12px;
	padding:40px;
}
.benefit_list_icon {
	line-height: 0;
}
.benefit_list_icon svg {
	width:80px;
	height: 80px;
	fill:#EE1C25;
}
.benefit_list_info {
	margin:30px 0 0 0;
}
.benefit_list_title {
	font-family: Dachi-The-Lynx;
	font-size: 15px;
	color: #0F347B;
}
.benefit_list_desc {
	margin:15px 0 0 0;
	font-size: 18px;
	line-height: 27px;
}
.offer_list {
	margin:40px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.offer_list_item {
	margin:40px 0 0 0;
	width: calc(50% - 20px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.offer_list_icon {
	width: 72px;
}
.offer_list_icon svg {
	width: 75px;
	height: 75px;
	fill:#EE1C25;
}
.offer_list_title {
	width:calc(100% - 80px);
	padding:0 0 0 30px;
	line-height: 25.5px;
	font-weight: 500;
}
.product_list {
	margin: 80px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: flex-start; /* Aligns items to the left */
	flex-wrap: wrap;
	gap: 30px;                   /* Automatically handles the spacing between items */
}
.product_item {
	width: calc(100% / 3 - 20px); /* Keeps your 3-column width calculation */
	background: #fff;
	border-radius: 12px;
}
.product_photo {
	aspect-ratio: 1/1;
	line-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:0 40px;
	overflow: hidden;
}
.product_photo img {
	transition: all 0.3s ease;
}
.product_item:hover .product_photo img {
	transform:scale(1.1);
}
.product_title {
	padding:0 40px 30px 40px;
	font-family: Dachi-The-Lynx;
	font-size: 20px;
	color: #0F347B;
}
.product_title span {
	color: #EE1C25;
}
.product_single_wrapper {
	margin:80px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product_single_photo {
	width: calc(50% - 50px);
	aspect-ratio: 1/1;
	background: #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:40px;
}
.product_single_info {
	width: calc(50% - 50px);
}
.product_single_title {
	font-family: Dachi-The-Lynx;
	font-size: 36px;
	color: #0F347B;
}
.product_single_title span {
	color: #EE1C25;
}
.product_single_params {
	margin:40px 0 0 0;
}
.product_single_param {
	margin:15px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 18px;
}
.product_single_param div {
	width:200px;
}
.product_single_param span {
	width: calc(100% - 200px);
	font-weight: 600;
}
.contact_wrapper {
	margin:80px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contact_map {
	width: calc(50% - 50px);
	aspect-ratio: 1/1;
	line-height: 0;
}
.contact_map iframe {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.contact_info {
	width: calc(50% - 50px);
}
.contact_details {
	
}
.contact_details div {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin:0 0 25px 0;
}
.contact_details div a {
	color: #262624;
}
.contact_details div:last-child {
    margin:0;
}
.contact_details div span {
    width: 30px;
    color: #EE1C25;
}
.contact_details div div {
    width: calc(100% - 30px);
    font-size: 20px;
}
.footer_wrapper {
    background: #0F347B;
    padding:80px 0;
}
.footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer_company_logo {
    width: calc(100% / 3);
}
.footer_company_logo img {
    height: 45px;
    filter: brightness(0) invert(100%);
}
.footer_company_logo div {
    margin:25px 0 0 0;
    font-size: 15px;
    line-height: 22.5px;
    color: #fff;
}
.footer_company {
    
}
.footer_company_info {

}
.footer_company_info div {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin:0 0 25px 0;
}
.footer_company_info div a {
	color: #fff;
}
.footer_company_info div:last-child {
    margin:0;
}
.footer_company_info div span {
    width: 30px;
    color: #fff;
}
.footer_company_info div div {
    width: calc(100% - 30px);
    font-size: 16px;
    color: #fff;
}
.footer_menu {
    
}
.footer_menu_split {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_menu_split div {
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.footer_menu_split div a {
    margin:0 0 25px 0;
    font-size: 16px;
    color: #fff;
}
.footer_menu_split div a:last-child {
    margin:0;
}
.footer_addon_wrapper {
    background: #0F347B;
}
.footer_addon {
    border-top: 1px solid #fff;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_social {
    
}
.footer_social a {
    margin:0 20px 0 0;
    font-size: 24px;
    transition: all 0.3s ease;
    color: #fff;
}
.footer_social a:hover {
    opacity: 0.7;
}
.footer_social a:last-child {
    margin:0;
}
.footer_copy {
    font-size: 15px;
    color: #fff;
}


@media only screen and (max-width : 600px) {

	.container {
		padding:0 20px;
	}
	.header {
		height: 80px;
	}
	.logo img {
		height: 35px;
	}
	.menu {
		display: none;
	}
	.hero_photo {
		height: auto;
		aspect-ratio: 16/9;
	}
	.hero_title {
		display: none;
	}
	.hero_desc {
		display: none;
	}
	.hero_arrows {
		display: none;
	}
	.section_wrapper {
		padding:60px 0;
	}
	.section_title {
		font-size: 22px;
	}
	.product_category_list {
		
	}
	.product_category_item {
		margin:60px 0 0 0;
		width: 100%;
	}
	.product_category_icon img {
		height: 80px;
	}
	.section_split {
		flex-direction: column;
	}
	.section_split_info {
		width: 100%;
	}
	.section_split_photo {
		margin:40px 0 0 0;
		width: 100%;
	}
	.section_split_photo.sdlg-logo {
		aspect-ratio: 16/9;
	}
	.section_split_photo.sdlg-logo img{
		height: 100px;
	}
	.section_text p.highlight {
		font-size: 18px;
		line-height: 27px;
	}
	.section_text p {
		font-size: 16px;
		line-height: 24px;
	}
	.benefit_list_item {
		width: 100%;
		margin:20px 0 0 0;
		padding:20px;
	}
	.benefit_list_desc {
		font-size: 16px;
		line-height: 24px;
	}
	.offer_list {
		margin:20px 0 0 0;
	}
	.offer_list_item {
		width: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.offer_list_title {
		width: 100%;
		padding:0;
		margin:20px 0 0 0;
		text-align: center;
		font-size: 16px;
		line-height: 24px;
	}
	.footer_wrapper {
		padding:80px 0 40px 0;
	}
	.footer {
		flex-wrap: wrap;
	}
	.footer_menu {
		width: 100%;
		order:1;
	}
	.footer_company {
		border-top: 1px solid #fff;
		margin:40px 0 0 0;
		padding:40px 0 0 0;
		width: 100%;
		order:2;
	}
	.footer_company_logo {
		width: 100%;
		order:3;
		border-top: 1px solid #fff;
		margin:40px 0 0 0;
		padding:40px 0 0 0;
	}
	.footer_company_logo img{
		height: 35px;
	}
	.footer_addon {
		padding:40px 0;
		height: auto;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.footer_copy {
		margin:20px 0 0 0;
		font-size: 12px;
	}
	.product_item {
		width: 100%;
	}
	.product_list {
		margin:60px 0 0 0;
	}
	.product_single_wrapper {
		margin:60px 0 0 0;
		flex-wrap: wrap;
	}
	.product_single_photo {
		width: 100%;
	}
	.product_single_info {
		margin:40px 0 0 0;
		width: 100%;
	}
	.product_single_title {
		font-size: 24px;
	}
	.product_single_param {
		font-size: 16px;
	}
	.contact_wrapper {
		margin:60px 0 0 0;
		flex-wrap: wrap;
	}
	.contact_info {
		width: 100%;
		order:1;
	}
	.contact_map {
		margin:40px 0 0 0;
		width: 100%;
		order:2;
	}
	.contact_details div div {
		font-size: 16px;
	}
	.mob_menu {
		width: 45px;
		height: 45px;
		border-radius: 6px;
	}
	.mob_menu.open {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #EE1C25;
	}
	.mob_menu.close.active {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #EE1C25;
	}
	.mob_menu svg {
		width: 24px;
		height: 24px;
		fill:#fff;
	}
	.mob_nav.active {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		position: fixed;
		z-index: 999;
		top:80px;
		left:0;
		width: 100%;
		height: calc(100dvh - 80px);
		background: #0F347B;
	}
	.mob_nav_single {
		color: #fff;
		font-family: 'Dachi-The-Lynx';
		font-size: 18px;
		margin:0 0 30px 0;
	}
	.mob_nav_catalogue {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 50px;
		border-radius: 50px;
		padding:0 40px;
		padding-top: 4px;
		background: #EE1C25;
		color: #fff;
		font-family: 'Dachi-The-Lynx';
		font-size: 18px;
	}
}