* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(./img/bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container { 
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 20px;
}

.left, .right {
    flex: 1;
    padding: 20px;
    align-content: center;
}

.left {
    /* background-color: #f4f4f4; */
}

.right {
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
     /* РЈСЃС‚Р°РЅРѕРІРёР» С„РёРєСЃРёСЂРѕРІР°РЅРЅСѓСЋ РІС‹СЃРѕС‚Сѓ РґР»СЏ СЃР»Р°Р№РґРµСЂР° */
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

/* РЎС‚РёР»Рё РґР»СЏ С„РѕСЂРјС‹ Р·Р°СЏРІРєРё */
.consultation-form {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.consultation-form h2 {
    margin-bottom: 15px;
    font-size: 18px;
}

.consultation-form form {
    display: flex;
    flex-direction: column;
}

.consultation-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.consultation-form input[type="tel"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.consultation-form button {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.consultation-form button:hover {
    background-color: #0056b3;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    width: 100%;
    margin-top: 20px;
    padding: 20px;
}

.feature {
    flex: 1;
    min-width: 220px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature h2 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature p {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature {
        width: 80%;
    }
}
.slide img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    width: 100%;
    margin-top: 25px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-logo,
.footer-info,
.footer-map {
	flex: 1 1  ;
	margin-bottom: 20px;
}

.footer-logo {
	text-align: center;
}

.footer-logo img {
	max-width: 150px;
}


.footer-info p {
	margin: 10px 0;
}

.footer-map iframe {
	width: 100%;
	height: 200px;
	border: none;
}
.whatsapp {
    position: fixed;
    width: 100%;
    background: #40C351;
    bottom: 0;
    text-align: center;
	display: none;
}
.whatsapp a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px 0px;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
	}

	.footer-info, 
	.footer-logo, 
	.footer-map {
		text-align: center;
	}

	.footer-logo img {
		max-width: 120px;
	}

	.footer-map iframe {
		height: 250px;
	}
	.whatsapp {
	display: block;
	}
}