*, ::after, ::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 16px;
}

body, button, input, select, textarea, h1, h2, h3, h4, h5, h6, a {
	font-family: "Montserrat","Open Sans";
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	line-height: 1;
}

ol, ul, li {
	list-style: none;
}

a {
	text-decoration:none;
}

body {
	background-color: #eeeeee;
}

body, p, a {
   font-family: "Montserrat","Open Sans", "sans-serif";
}

p {
	line-height: 20px;
}

button {
	cursor: pointer;
}

:root {
	--save-padding: 16px;
	--title-padding: 80px;
	--paddind-after-section: 100px;
}

@media screen and (max-width: 991px) {
	:root {
		--paddind-after-section: 100px;
	}
}

/* REUSABLE STYLES */

.container {
	max-width: calc(1320px + (var(--save-padding) * 2));
	margin: 0 auto;
	padding: 0 var(--save-padding);
}

.common-title {
	position: relative;
	padding-left: 90px;
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 34px;
	line-height: 35px;
	color: #3a3a3a;
}

.common-title::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	background: #767a81;
	width: 60px;
	height: 3px;
}

@media screen and (max-width: 781px) {
	.common-title {
		font-size: 24px;
		padding-left: 50px;
	}
	.common-title::after {
		width: 40px;
	}
}

.common-text {
	word-break: break-word;
	font-size: 16px;
	line-height: 20px;
	margin-left: var(--title-padding);
	color: #212529;
}

@media screen and (max-width: 600px) {
	.common-title {
		font-size: 20px;
		padding-left: 35px;
	}
	.common-title::after {
		width: 25px;
	}
	.common-text {
		font-size: 14px;
	}
}

@media screen and (max-width: 991px) {
	.common-text {
		margin-left: 0;
	}
}

.button--bordered {
	border: 1px solid transparent;
	transition: all .2s linear;
	padding: 14px 32px;
	background: #66cb00;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0.5px;
	user-select:none;
}

.button--bordered:hover {
	border-color: #66cb00;
	color: #ffffff;
	background: #393e46;
}

.slider-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	transition: all .2s linear;
	border: none;
	user-select:none;
}

.slider__button:hover{
	cursor: pointer;
}

/* HEADER */

.header {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #393e46;
	min-height: 90px;
	margin-bottom: 50px;
}

.header__container {
	width: 100%;
	max-width: 1360px;
	padding: 0 var(--save-padding);
}

.header__menu {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	width: 100%;
}

.contacts {
	width: 100%;
	display: flex;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
}

.contacts__sity {
	color: #ffffff;
	transition: all .2s linear;
}
.contacts__sity:hover {
	color: #66cb00;
}

.social-links {
	display: flex;
}

.social-links__icons{
	display: flex;
	padding: 0 20px;
	gap: 15px;
	transform: translateY(-2px);
}

.social-links__icon {
	background-size: cover;
	display: block;
	width: 30px;
	height: 30px;
}

.telephones {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-right: 30px;
}

.telephones__link {
	color: #ffffff;
	transition: all .2s linear;
	
}
.telephones__link:hover {
	color: #66cb00;
}

.menu__button-wrapper {
	display: flex;
}

.menu__button {
	display: inline-block;
	align-items: center;
	background: #66cb00;
	border: 1px solid transparent;
	transition: all .2s linear;
	font-size: 15px;
	font-weight: 500;
	color: #393e46;
	padding: 12px 17px;
	transition: all .2s linear;
}

@media screen and (max-width: 408px) {
	.menu__button {
		display: flex;
	}

	.menu__button:not(:last-child) {
		margin-bottom: 5px;
	}
}

.menu__button:hover {
	border-color: #66cb00;
    background: #66cb004d;
	color: #ffffff;
}
.menu__button-icon {
	width: 16px;
	height: 16px;
	color: #393e46;
	margin-right: 12px;
	transition: all .2s linear;
}

.menu__button-icon--white {
	display: none;
}

.menu__button:hover .menu__button-icon--black {
	display: none;
}

.menu__button:hover .menu__button-icon--white {
	display: block;
}

@media screen and (max-width: 830px) {
	.header {
		min-height: 130px;
	}
}

@media screen and (max-width: 781px) {
	.header {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 700px) {
	.header__menu {
		flex-direction: column-reverse;
	}

	.menu-links {
		padding: 15px 0px 15px 0px;
	}

	.menu__contacts {
		padding-top: 15px;
	}
}

@media screen and (max-width: 600px) {
	.social-links__icons {
		margin-right: 20px;
		margin-left: 20px;
		padding: 0 5px;
	}
}

@media screen and (max-width: 500px) {
	.telephones {
		margin-right: 0;
	} 
	.contacts__sity {
		display: none;
	}
}

/* Броньована захисна плівка для вікон */

.hero {
	margin-bottom: var(--paddind-after-section);
}

.hero__content {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.hero__text {
	margin-right: 53px;
	margin-bottom: 50px;
}

.hero__button {
	margin-left: var(--title-padding);
	margin-bottom: 27px;
	display: inline-block;
	text-align: center;
}

.hero__img {
	width: 100%;
}

@media screen and (max-width: 991px) {
	.hero__text {
		margin-left: 0;
	}
	.hero__button {
		margin-left: 0;
	}
}

@media screen and (max-width: 781px) {
	.hero__text {
		margin: 0 10px 50px 0;
	}
	.hero__content {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 600px) {
	.common-title {
		margin-bottom: 14px
	}
}

@media screen and (max-width: 575px) {
	.hero__button {
		width: 100%;
	}
}

@media screen and (max-width: 380px) {
	.social-links__icons{
		margin-right: 15px;
	}
}
/* Характеристика та переваги захисної плівки */

.advantages {
	margin-bottom: var(--paddind-after-section);
}

.advantages__text {
	margin-bottom: 15px;
}

.adv-table {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.adv-table__item {
	display: grid;
	grid-template-columns: 80px 1fr;
	margin: 0 auto;
}

.adv-table__media {
	display: flex;
	padding: 5px;
	margin-top: 15px;
}
.adv-table__icon-container {
	display: flex;
	justify-content: center;
	width: 80px;
	height: 80px;
}
.adv-table__icon {
	user-select:none;
}

.thermometer-icon{
	transform: translateX(3px);
}

.adv-table__content {
	padding: 20px 20px 10px 15px;
}

.adv-table__title {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.adv-table__text {
	font-size: 14px;
	margin-bottom: 15px;
	line-height: 21px;
	color: #333;
}
@media screen and (max-width: 1199px) {
	.adv-table {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 767px) {
	.adv-table {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 600px) {
	.adv-table__title {
		font-size: 16px;
	}
}
/* DETAILS */

.details {
	margin-bottom: var(--paddind-after-section);
}

.details__description {
	padding-bottom: 20px;
}

.details__img {
	display: block;
	max-width: 100%;
	padding-left: var(--title-padding);
}

@media screen and (max-width: 991px) {
	.details__img {
		padding-left: 0;
	}
}

/* PARTICULARITY */

.particularity {
	padding-bottom: var(--paddind-after-section);
}

.particularity__content {
	display: flex;
	gap: 35px;
}

.particularity__subtitle {
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 15px;
	color: #3a3a3a;
}

.particularity__text {
	font-size: 16px;
	color: #3a3a3a;
}

@media screen and (max-width: 1025px) {
	.particularity__content {
		display: flex;
		gap: 18px;
	}
	.particularity__subtitle {
		padding-bottom: 6px;
	}
	.particularity__content {
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 781px) {
	.particularity__subtitle {
		font-size: 18px;
	}
}

@media screen and (max-width: 600px) {
	.particularity__text {
		font-size: 14px;
	}
}
/* videos */

.videos {
	padding-bottom: var(--paddind-after-section);
}

.vslider__iframe {
	aspect-ratio: 16 / 9;
	margin-bottom: 15px;
}

.vslider__slide-title {
	font-size: 20px;
	font-weight: 600;
}

.vslider__pagination-wrapper {
	padding: 15px 0;
	width: max-content;
	margin: 0 auto;
}

.vslider__prevnext-buttons-wrapper {
	display: flex;
	padding-bottom: 15px;
}

.vslider__button {
	background: #222831;
}

.vslider__button:hover{
	background: #393e46;
}

.vslider__show-all-btn {
	display: inline-block;
}

.vslider__pagination .swiper-pagination-bullet {
	border-radius: 0%;
	width: 50px;
	height: 4px;
	background: #222831;
}

@media screen and (max-width: 600px) {
	.vslider__slide-title{
		font-size: 16px;
	}
}

/* Види та характеристики захисних плівок на вікна */
.characteristics {
	margin-bottom: var(--paddind-after-section);
}

.characteristics__description {
	margin-bottom: 20px;
}

.ch-content__inner-area {
	position: relative;
	margin: 0 auto;
	width: 100%;
	border: 4px solid black;
	padding: 15px 15px 13px 15px;
}

.ch-content__inner-area::before {
	position: absolute;
	content: "";
	width: 42px;
    height: 42px;
    border: 4px solid #393e46;
    bottom: -4px;
    right: -4px;
    border-bottom: none;
    border-right: none;
    background: #eeeeee;
}

.ch-content__inner-area::after {
	position: absolute;
	content: "";
	width: 30px;
    height: 30px;
    border: 4px solid #767a81;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.ch-content__swiper {
	padding: 0 35px;
}

.ch-slider {
	width: 80%;
}

.ch-slid {
	transition: all 2s linear;
	
}

.ch-slid__img-container {
	min-width: 300px;
}

.ch-slid__img {
	max-width: 100%;
	position: relative;
	user-select:none;
	margin: 0 auto;
}

.ch-slid__text {
	flex: 1;
	min-width: 300px;
	display: block;
	user-select:none;
	font-size: 16px;
}


.ch-slider__prevnext-wrapper {
	display: flex;
	margin-top: 15px;
}
.ch-slider__button {
	position: absolute;
	background: #dadadb;
	z-index: 2;
}

.ch-slider__button:hover {
	background: #393e46;
}

.ch-slider__prev {
	top: 50%;
	left: 15px;
}

.ch-slider__next {
	top: 50%;
	right: 15px;
}

@media screen and (max-width: 700px) {
	.ch-slider__button {
		position: relative;
	}
	.ch-slider__prev {
		top: 0;
		left: 0;
	}
	.ch-slider__next {
		top: 0;
		right: 0;
	}
}

@media screen and (max-width: 600px) {
	.ch-slid__text {
		font-size: 14px;
		min-width: 0;
	}
}

/* PRICE */

.price {
	padding-top: 20px;
	padding-bottom: 10px;
}

.price__subtitle {
	font-size: 30px;
	font-weight: 700;
	color: #393e46;
	margin-bottom: 20px;
}

.price__content {
	margin-left: 90px;
}

.content-price__item {
	margin-bottom: 20px;
}
.content-price__title {
	position: relative;
	padding-left: 35px;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 10px;
}

.content-price__title::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	background: #767a81;
	width: 24px;
	height: 2px;
}

.content-price__text {
	font-size: 16px;
	letter-spacing: 0.2px;
}

@media screen and (max-width: 781px) {
	.price__subtitle {
		font-size: 22px;
	}
	.price__content{
		margin-left: 50px;
	}
}

@media screen and (max-width: 620px) {
	.price__content{
		margin-left: 30px;
	}
	.content-price__title {
		font-size: 16px;
	}
	.price__subtitle {
		font-size: 18px;
	}
	.content-price__text {
		font-size: 14px;
	}
}

@media screen and (max-width: 400px) {
	.price__content{
		margin-left: 0px;
	}
	.content-price__title {
		padding-left: 0px;
	}
	
	.content-price__title::before {
		display: none;
	}
}

/* FORM */

.form-section {
	margin-bottom: 50px;
}

.main-form {
	max-width: 602px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	max-width: 600px;
	padding: 30px;
	background: #767a81;
}

.main-form__content {
	width: 100%;
}

.main-form__title {
	text-align: center;
    color: #eee;
    font-weight: 600;
    font-size: 28px;
	margin-bottom: 20px;
}

.main-form__inputs-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 15px;
}
.main-form__field {
	flex: 1;
	min-width: 200px;
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.main-form__field-info-box {
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 1px;
	padding-bottom: 5px;
	margin-right: auto;
	color: #eeeeee;
	display: none;
}

.main-form__field-info-box--show {
	display: block;
}

.main-form__text-field {
	color: #666;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
	padding: 10px;
	outline: none;
	font-size: 18px;
}

.main-form__text-field--error {
	border: 2px solid red;
}

.main-form__input {
	width: 100%;
	display: flex;
	align-items: center;
	height: 56px;
	
}

.main-form__textarea-wrapper{
	width: 100%;
}

.main-form__text-area {
	width: 100%;
	height: 129px;
	min-height: 129px;
	resize: vertical;
}

.main-form__button-wrapper {
	width: 100%;
}

.main-form__submit-button {
	display: block;
	margin: 0 auto;
}

.form-status-box__loader {
	position: relative;
	top: 3px;
	animation: 1s linear infinite rotate;
	display: none;
	margin-right: 5px;
}

@keyframes rotate {
	from {
	  transform: rotate(0deg);
	}
	to {
	  transform: rotate(360deg);
	}
}

.form-status-box__loader--loading {
	display: inline-block;
}

.form-status-box {
	width: 100%;
	margin-top: 15px;
}

.form-status-box__text--success {
	color: #66cb00;
}

.form-status-box__text {
	font-size: 18px;
	font-weight: 500;
}

@media screen and (max-width: 781px) {
	.main-form__title {
		font-size: 24px;
	}
}

@media screen and (max-width: 600px) {
	.main-form__title {
		font-size: 20px;
	}
	.main-form__text-field {
		font-size: 14px;
	}

	.main-form__submit-button {
		width: 100%;
	}
}

/* footer */
.footer {
	background-color: #393e46;
}

.footer__content {
	padding: 40px 20px;
	color: #ffffff;
	display: flex;
	gap: 20px;
}

.footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 0 20px;
	margin-left: auto;
}

.contact-footer__text {
	font-size: 18px;
}

.contact-footer__link {
	white-space: nowrap;
	transition: all .2s linear;
}

.contact-footer__link:hover{
	color: #66cb00;
}

.contact-footer__icon {
	width: 20px;
	height: 20px;
	transform: translateY(3px);
}

.social-list {
	display: flex;
	gap: 20px;
}

.social-list__item {
	width: 26px;
	height: 26px;
	transition: all .2s linear;
}

.social-list__item:hover {
	opacity: .7;
}

.social-list__link {
	display: block;
	width: 100%;
	height: 100%;
}

.social-list__icon {
	width: 100%;
}

.footer-maps {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 20px;
}
.footer-maps__item {
	flex: 1;
}

.footer-maps__title {
	font-size: 18px;
	margin-bottom: 7px;
}
.footer-maps__frame {
	display: block;
	height: 400px;
}

@media screen and (max-width: 830px) {
	.footer-maps {
		display: block;
	}
}

@media screen and (max-width: 500px) {
	.footer-maps__frame {
		display: block;
		height: 260px;
	}
}

@media screen and (max-width: 740px) {
	.footer__content {
		flex-wrap: wrap;
	}
	.footer-maps {
		order: 2;
	}
	.footer__contacts{
		order: 1;
		margin-left: 0;
		margin-bottom: 20px;
		padding: 0;
	}
}