* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: Arial, sans-serif;
}
.container {
    padding: 15px 15px;
    max-width: 1300px;
    margin: 0 auto;
}
.logo img {
	max-width: 100%;
}
.menu-toggle {
	display: none;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
}
nav {
	position: relative;
}
nav ul {
	display: flex;
	list-style: none;
}
nav ul li {
	margin: 0 20px;
	position: relative;
}
nav ul li a {
	text-decoration: none;
	color: #000;
	font-size: 18px;
	font-weight: bold;
}
.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 10px;
	transition: all 0.3s ease;
	z-index: 1;
	width: 190px;
}
nav ul li:hover .submenu {
	display: block;
}
.submenu li {
	margin: 5px;
	padding: 5px;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	transition: opacity 0.3s ease;
}
.headercontact a {
    color: #000;
    text-decoration: none;
}
.hero {
    background: url(../img/34248.webp) no-repeat center / cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.overlay {
	/* position: absolute; */
	/* top: 0; */
	/* left: 0; */
	/* width: 100%; */
	/* height: 100%; */
	/* background: rgba(0, 0, 0, 0.5); */
}
.hero-content {
	/* position: relative; */
	/* z-index: 2; */
}
.hero h1 {
    font-size: 15vh;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 2px #fcfcfc, -2px -2px 2px #ffffff, 0px 2px 2px #ffffff, 0px 2px 3px #ffffff;
    color: black;
}
.hero h2 {
    text-transform: uppercase;
    text-shadow: 2px 2px 2px #fcfcfc, -2px -2px 2px #ffffff, 0px 2px 2px #ffffff, 0px 2px 3px #ffffff;
    color: black;
}
.menublock {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headercontact {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
}
.headercontact img {
    width: 30px;
}
.headercontact p {
    display: flex;
    align-items: center;
    gap: 10px;
}
.headercontact img {
    width: 30px;
}
.hero p {
	font-size: 20px;
	margin-top: 10px;
}
.button {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 24px;
	background: #fff;
	color: #000;
	text-decoration: none;
	border-radius: 25px;
	font-size: 18px;
	font-weight: bold;
}
.company-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 15px;
}
.company-text {
	width: 50%;
}
.company-text h2 {
	font-size: 36px;
	color: #001f5b;
	font-weight: bold;
}
.company-text p {
	font-size: 16px;
	margin: 20px 0;
	line-height: 1.5;
}
.stats {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
.stat {
	width: 50%;
	font-size: 22px;
	font-weight: bold;
	color: #001f5b;
	padding: 10px 0;
	text-align:center;
}
.stat span {
	font-size: 50px;
	color: #e3001b;
}
.stat p{
    font-size: 22px;
    font-weight: bold;
    color: #001f5b;
}
.company-image {
	width: 45%;
}
.company-image img {
	width: 100%;
	border-radius: 10px;
}
.features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 50px 15px;
}
.feature {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.feature img {
	width: 50px;
	height: 50px;
}
.feature-content {
	max-width: 400px;
}
.feature-title {
	font-size: 18px;
	font-weight: bold;
	color: #001f5b;
}
.feature-description {
	color: #333;
	margin-top: 5px;
}
h2.titleh2 {
    font-size: 36px;
    color: #001f5b;
    font-weight: bold;
    text-transform: uppercase;
}
h2.titleh2 span {
    color: #e3001b;
}
.catalog-section {
    text-align: center;
    padding: 50px 20px;
    background-image: url(../img/bg2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.catalog-title {
	font-size: 48px;
	font-weight: bold;
	color: #001f5b;
	margin-bottom: 30px;
}
.catalog-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.catalog-item {
	background: white;
	border-radius: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	text-align: center;
	transition: transform 0.3s ease-in-out;
}
.catalog-item:hover {
	transform: translateY(-5px);
}
.catalog-item img {
	width: 100%;
	height: auto;
}
.catalog-info {
	padding: 20px;
	background: #e3001b;
	color: white;
	border-radius: 0 0 15px 15px;
}
.catalog-info h3 {
	font-size: 18px;
	font-weight: bold;
}
.catalog-info p {
	font-size: 14px;
	margin-top: 5px;
}
.catalog-button {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	background: white;
	color: #e3001b;
	text-decoration: none;
	font-weight: bold;
	border-radius: 20px;
}

.certificates-section {
	padding: 50px 15px;
}
.certificates-title {
	font-size: 48px;
	font-weight: bold;
	color: #001f5b;
	margin-bottom: 30px;
	position: relative;
}
.certificates-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background: #e3001b;
	margin: 10px auto 0;
}
.owl-carousel .item img {
	width: 100%;
	max-width: 300px;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.owl-carousel .item img:hover {
	transform: scale(1.05);
}
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	align-items: center;
	justify-content: center;
}
.modal img {
	max-width: 80%;
	max-height: 80%;
}
.close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 30px;
	color: white;
	cursor: pointer;
}
.footer {
    background: #001f5b;
    color: white;
    padding: 40px 20px;
}
footer.footer .container {
    justify-content: space-around;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.footer h3 {
	font-size: 20px;
	margin: 25px 0 5px;
}
.footer p, .footer a {
	color: white;
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
}
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.modal.show {
	opacity: 1;
}
.modal-content {
	background: white;
	padding: 20px;
	border-radius: 10px;
	width: 300px;
	text-align: center;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}
.modal.show .modal-content {
	transform: scale(1);
}
.modal input {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.modal button {
	background: #001f5b;
	color: white;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	border-radius: 5px;
}
.modal button:hover {
	background: #003080;
}
.footer-column img {
    max-width: 100%;
}
.fix-block {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    display: none;
    z-index: 1;
}
.whatsapp a, .callnumber a {
    color: white;
    width: 50%;
    text-align: center;
    padding: 20px 0px;
    background: #25D366;
    float: left;
    text-transform: uppercase;
    font-weight: bold;
}
.callnumber a {
    background: #1466b8 !important;
} 
@media (max-width: 768px) {
.menu-toggle {
	display: block;
	font-size: 30px;
}
.fix-block {
        display: block;
    }
.headercontact {
	font-size: 12px;
	gap: 10px;
}
.headercontact p {
    gap: 5px;
}
.headercontact img {
    width: 20px;
}
.catalog-container {
    flex-direction: column;
}
.menublock {
    justify-content: center;
}
.catalog-container {
	grid-template-columns: 1fr;
}
.catalog-container {
	grid-template-columns: repeat(2, 1fr);
}
.features-section {
	grid-template-columns: 1fr;
	text-align: center;
}
.feature {
	flex-direction: column;
	align-items: center;
}
.logo img {
	max-width: 80%;
}
.logo {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
nav ul {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: -250px;
	background: #fff;
	width: 250px;
	height: 100%;
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
	transition: left 0.3s ease;
	padding-top: 50px;
}
nav ul.active {
	left: 0;
}
.overlay.active {
	display: block;
}
.submenu {
	display: none !important;
	position: static;
	box-shadow: none;
	padding-left: 20px;
}
.submenu-toggle {
	cursor: pointer;
	display: block;
}
.submenu.active {
	display: block !important;
	transition: all 0.3s ease;
}
.hero h1 {
	font-size: 7vh;
}
.hero h2 {
    font-size: 2vh;
    line-height: 25px;
}
.hero p {
	font-size: 18px;
}
.button {
	padding: 10px 20px;
	font-size: 16px;
}
.company-section {
	flex-direction: column;
	text-align: center;
}
.company-text, .company-image {
	width: 100%;
}
.stats {
	justify-content: center;
}
.stat {
	width: 100%;
}
.footer {
	flex-direction: column;
	text-align: center;
}
.footer-column {
	max-width: 100%;
	margin-bottom: 20px;
}
footer.footer .container{
	grid-template-columns: 1fr;
    text-align: justify;
}
}
@media (max-width: 1024px) {
	.catalog-container {
		grid-template-columns: repeat(2, 1fr);
	}
}