* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.container {
	max-width: 1260px;
	padding: 0 10px;
	margin: 0 auto;
}

.header__phone {
	display: none;
}

.header__logo img {
	width: 216px;
	height: 49px;
}

.row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 35px;
}

.btn {
	background-color: #d9d9d9;
	border-radius: 25px;
	height: 45px;
	width: 280px;
	font-size: 24px;
	cursor: pointer;
	border: none;
	display: block;
	text-align: center;
	line-height: 45px;
}

li {
	list-style: "✓  ";
	font-size: 24px;
	margin-left: 30px;
}

a {
	text-decoration: none;
	color: black;
}

header {
	padding: 10px 0;
}

.hero h1 {
	font-size: 48px;
}

.hero .container {
	position: relative;
	height: calc(100vh - 73px);
	max-height: 800px;
	display: flex;
}

.hero__info {
	width: 60%;
	margin-bottom: 50px;
}

.hero__image img {
	height: 80vh;
	object-fit: cover;
	border-radius: 15px;
}

@media all and (max-width: 768px) {
    .hero__image{
        flex-shrink: 0;
        width: 100%;
    }
    .hero__image img{
        max-height: 480px;
        width: 100%;
    }
}

.hero ul {
	margin: 40px 0;
}

.about {
	padding: 60px 0;
	background-color: #efefef;
}

.about .row {
	justify-content: flex-start;
}

.about h2 {
	font-size: 42px;
}

.about ul {
	margin: 30px 0;
}

.about__slider {
	width: calc(50% - 15px);
	overflow: hidden;
	height: 500px;
	position: relative;
}

.about__slider img {
	position: absolute;
	left: 50%;
	top: 0;
	width: 0%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0;
	transition: all 0.2s;
}

.about__slider img.active {
	z-index: 2;
	opacity: 1;
	left: 0;
	width: 100%;
}

.about__slider-bullets {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 5px;
}

.about__slider-bullets figure {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.307);
	z-index: 100;
	border-radius: 50%;
	cursor: pointer;
}

.about__slider-bullets figure.active {
	background: white;
}

footer {
	padding: 60px 0 0 0;
}

footer h3 {
	font-size: 24px;
	color: #818181;
	margin-bottom: 10px;
	margin-top: 30px;
}

footer a,
footer p {
	font-size: 20px;
}

footer a {
	margin-bottom: 7px;
	display: block;
}

.footer__content {
	width: calc(50% - 15px);
}

footer iframe {
	width: 600px;
	height: 300px;
}

footer h3:nth-child(1) {
	margin-top: 0;
}

.footer__map a {
	border-radius: 0;
	width: 100%;
	height: auto;
}

.footer__map .btn{
    	height: auto;
}

.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
}

.footer__socials a{
     display: flex;
     gap: 6px;
     align-items: center;
}

.footer__socials img{
    width: 32px;
    height: 32px;
}

footer .header__logo {
	width: fit-content;
	margin: 30px auto 30px auto;
}

.models {
	padding: 80px 0;
}

.models h2 {
	font-size: 42px;
	margin-bottom: 30px;
}

.models-content {
	margin-bottom: 40px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 20px;
	font-weight: 700;
}
.models-content-photo-mobile {
	display: none;
}
.models-content-photo {
	margin-bottom: 30px;
	width: 100%;
	height: auto;
	display: block;
}

@media all and (max-width: 1060px) {
	.hero__image img {
		position: static;
		width: 100%;
		max-width: 100%;
		border-bottom: 2px solid #818181;
	}

	.hero .row {
		flex-direction: column-reverse;
	}

	.hero .container {
		max-height: fit-content;
		height: auto;
	}

	.hero__info {
		width: 100%;
	}

	.about .row,
	footer .row {
		flex-direction: column;
		justify-content: center;
	}

	.about__slider,
	.footer__content {
		width: 100%;
	}

	footer iframe {
		width: 100vw;
	}

	footer {
		padding-bottom: 0;
	}
}

@media all and (max-width: 600px) {
	.models-content-photo-mobile {
		display: block;
		width: 100%;
		height: auto;
		margin-bottom: 30px;
	}
	.models-content-photo {
		margin-bottom: 30px;
		width: 100%;
		height: auto;
		display: none;
	}

	header a {
		display: none;
	}
	.header__phone {
		display: block;
		animation: drag-drag 4s 1s ease-in-out infinite;
		animation-iteration-count: 3;
	}
	.header__phone img {
		width: 36px;
		height: 36px;
	}
	.hero h1,
	.about h2,
	.models h2 {
		font-size: 32px;
	}

	@keyframes drag-drag {
		0% {
			transform: rotate(0deg);
		}
		3% {
			transform: rotate(-10deg);
		}
		6% {
			transform: rotate(10deg);
		}
		9% {
			transform: rotate(-10deg);
		}
		12% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(0deg);
		}
	}
}
