@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Philosopher:wght@400;700&family=Poppins:wght@500;600&display=swap");
:root {
  --montserrat: "Montserrat", sans-serif;
  --poppins: "Poppins", sans-serif;
  --color-light: rgb(31, 31, 31);
  --btn-active: rgb(189, 0, 0);
}

* {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  color: black;
  font-family: "Philosopher", sans-serif;
}

.container {
  max-width: 1200px;
  padding: 20px 40px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.nav {
  background-color: transparent;
  height: 90px;
  width: 100%;
  padding-top: 10px;
  z-index: 15;
}
@media (min-width: 414px) {
    .logo-image {
      position: absolute;
      width: 200px;
      top: -34px;
    }
}
@media (max-width: 413px) {
    .logo-image {
      position: absolute;
width: 150px;
    top: -25px;
    }
}
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-row * {
  color: var(--color-light);
}
.nav-row .nav-logo {
  position: relative;
}
.nav-row .phone-number {
  font-family: var(--poppins);
  font-size: 20px;
  font-weight: 500;
}
.nav-row .tutorial {
  margin-top: -5px;
  font-size: 11.8px;
  font-family: var(--montserrat);
}

.menu {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-left:200px
}
.menu .menu-item {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 18px;
  position: relative;
}
.menu .menu-item:before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: var(--color-light);
  transition: 0.1s ease-in-out;
}
.menu .menu-item:hover::before {
  width: 100%;
  left: 0;
}

.header {
  background-image: url("./images/main-bg.jpg");
  background-size:cover;
  background-position: center bottom; 
  height: 700px;
}

.header-wrapper {
  display: flex;
}

.header-title {
  font-size: 54px;
  line-height: 45px;
  margin-top: 150px;
}

.mini-title {
  font-family: var(--montserrat);
  font-size: 22px;
  font-weight: 600;
  color: rgb(112, 112, 112);
  margin-top: 3px;
}

.slogan {
  font-size: 18px;
  margin-top: 30px;
  font-family: var(--montserrat);
  font-weight: 600;
  max-width: 500px;
}

.header-btn {
  width: 330px;
  border: none;
  background-color: rgb(0, 148, 0);
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--montserrat);
  padding: 20px 30px;
  font-size: 22px;
  margin-top: 50px;
  margin-right: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.header-btn:hover {
  transform: translateY(-5px);
}

.spacer {
  display: none;
}

.cat-p {padding-top:20px;width:100%;text-align:center}

@media (max-width: 1250px) {
  .spacer {
    display: block;
  }
}
.header-btn-cost {
  width: 330px;
  border: 3px solid rgb(21, 202, 21);
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--montserrat);
  padding: 17px 30px;
  font-size: 22px;
  margin-top: 30px;
  background: transparent;
  cursor: pointer;
}

.header-image {
  width: 600px;
  position: absolute;
  right: 0;
  top: 0;
}

.catalog-title {
  font-size: 36px;
  text-align: center;
  margin-top: 10px;
}
.catalog-title p {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 16.8px;
  color: rgba(31, 31, 31, 0.8);
  border: 3px solid yellow;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
  padding: 5px 10px;
}

.slider-block {
  margin-top: 50px;
}
.slider-block .slide {
  text-align: center;
}
.slider-block h2 {
  margin-top: 10px;
}

.btn-block {
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
}

.catalog-btn {
  border: none;
  background: transparent;
  background-color: rgb(213, 0, 0);
  color: white;
  padding: 15px 40px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  font-size: 22px;
  font-family: var(--montserrat);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.catalog-btn:hover {
  transform: translateY(-5px);
}

.paint {
  margin-top: 60px;
  height: auto;
  padding:20px 0 60px 0;
  background-image: url("./images/paint-bg.jpg");
  background-position: top;
  background-size: cover;
  position: relative;
}
.paint .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.paint .slide {
  text-align: center;
  position: relative;
  height: 100px;
}
.paint .slide .color-type {
  margin: 0 auto;
}

.paint-slider {
  text-align: center;
  margin: 70px auto 0;
}

.paint-title {
  color: white;
  text-align: center;
  font-size: 36px;
  margin-top: 50px;
  border-bottom: 2px solid white;
  padding-bottom: 30px;
}

.paint-safety {
  font-size: 18px;
  color: white;
  text-align: center;
  margin-top: 30px;
  font-family: var(--montserrat);
}
.paint-safety strong {
  font-size: 18px;
  color: white;
  font-family: var(--montserrat);
}

.color-type {
  padding: 3px;
  border: 1px solid white;
  border-radius: 30px;
  width: 50px;
  text-align: center;
  height: 50px;
}
.color-type .color-image {
  width: 50px;
  height: 50px;
  border-radius: 100px;
}

.color-name {
  color: white;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.sizes-title {
  color: white;
  text-align: center;
  font-size: 28px;
  margin-top: 70px;
}

.sizes-line {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 50px;
}

.size {
  color: white;
  text-decoration: underline;
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 19px;
}

.about {
  background-image: url("./images/main-bg.jpg");
  padding-bottom: 50px;
}
.about .about-title {
  font-size: 56px;
  margin-top: 20px;
}
@media screen and (min-width: 1048px) {
	.about .about-description {
	  font-size: 20px;
	  margin-top: 40px;
	  font-weight: 600;
	  font-family: var(--montserrat);
	  text-align:left
	}
}
@media screen and (max-width: 1047px) {
	.about .about-description {
	  font-size: 18px;
	  margin-top: 40px;
	  font-family: var(--montserrat);
	  text-align:left
	}
}
.about .about-offer {
  font-size: 20px;
  margin-top: 40px;
  font-weight: 600;
  font-family: var(--montserrat);
}

.why {
  text-align: center;
  font-size: 45px;
  margin-top: 30px;
}

.benefits {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin: 0 auto;
}

.card {
  border: 1px solid rgb(209, 209, 209);
  text-align: center;
  border-radius: 30px;
  margin-top: 50px;
  width: 300px;
  height: 200px;
  padding: 20px;
}
.card .card-icon {
  width: 100px;
}
.card p {
  margin-top: 30px;
  font-weight: 600;
  font-family: var(--montserrat);
  font-size: 14px;
}
.card:hover {
  box-shadow: 0px 0px 10px rgba(31, 31, 31, 0.1);
}

.deliver-bg {
  width: 570px;
}

.deliver-block {
  display: flex;
  align-items: center;
  margin-top: 0px;
}
.deliver-block .deliver-text-side {
  margin-left: 30px;
  margin-top: 30px;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 20px;
  padding: 40px 40px 40px 20px;
}
.deliver-block .deliver-text-side h2 {
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 29px;
}
.deliver-block .deliver-text-side p {
  font-size: 16px;
  font-family: var(--montserrat);
}
.deliver-block .deliver-text-side:hover {
  box-shadow: 0px 0px 10px rgba(31, 31, 31, 0.1);
}

.price-wrapper {
  display: flex;
}
.price-wrapper .t-side {
  max-width: 600px;
}
.price-wrapper .t-side h1 {
  font-size: 36px;
  margin-right: 70px;
  margin-top: 30px;
}
.price-wrapper .t-side button {
  border: none;
  background-color: rgb(213, 0, 0);
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 40px;
  font-size: 22px;
  font-family: var(--montserrat);
  font-weight: 600;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: 0.2s ease-in-out;
  margin-top: 50px;
}
.price-wrapper .t-side button:hover {
  transform: translateY(-5px);
}
.price-wrapper .t-side button img {
  width: 40px;
}

.price-desk {
  margin: 0 auto;
}

.form-section {
  background-image: url("./images/form-bg.jpg");
  background-position: center;
  background-size: cover;
  height: 800px;
  position: relative;
}
.form-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.form-wrapper {
  position: absolute;
  z-index: 15;
  width: 500px;
  height: 600px;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.form-wrapper .form-title {
  font-size: 35px;
}
.form-wrapper .form-description {
  font-family: var(--montserrat);
  font-size: 18px;
  margin-bottom: 40px;
}
.form-wrapper strong {
  border: 3px solid red;
  padding: 5px 30px;
}
.form-wrapper .form-input {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 20px;
  margin-top: 10px;
  outline: none;
  padding: 20px 40px;
  font-size: 18px;
  font-family: var(--montserrat);
}
.form-wrapper .rights {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 14px;
  color: rgba(31, 31, 31, 0.9);
}
.form-wrapper .submit-btn {
  border: none;
  border-radius: 20px;
  background: transparent;
  background-color: rgb(213, 0, 0);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  padding: 20px 60px;
  width: 100%;
  font-size: 19px;
  font-family: var(--montserrat);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: 0.2s ease-in-out;
  margin-top: 60px;
}
.form-wrapper .submit-btn:hover {
  transform: translateY(-5px);
}

.footer {
  background-color: #272525;
  padding: 70px;
}

@media screen and (min-width: 1048px) {
	.footer p {
	  color: rgb(214, 214, 214);
	  width: -moz-fit-content;
	  width: fit-content;
	  margin: 0 auto;
	  font-size: 25px;
	}
	.footer a{
		color: rgb(214, 214, 214);
	}
}
@media (max-width: 1047px) and (min-width: 401px) {
	.footer p {
	  color: rgb(214, 214, 214);
	  width: -moz-fit-content;
	  width: fit-content;
	  margin: 0 auto;
	  font-size: 22px;
	}
	.footer a{
		color: rgb(214, 214, 214);
	}
}@media screen and (max-width: 400px) {
	.footer p {
	  color: rgb(214, 214, 214);
	  width: -moz-fit-content;
	  width: fit-content;
	  margin: 0 auto;
	  font-size: 16px;
	}
	.footer a{
		color: rgb(214, 214, 214);
	}
}

@media screen and (max-width: 1048px) {
  .menu {
    display: none;
  }
  .header {
    height: 1000px;
  }
  .header-title {
    margin-top: 20px;
  }
  .header-wrapper {
    display: block;
  }
  .buttons-block {
    margin: -50px 0 0 60px;
  }
  .header-image {
    position: relative;
    left: -75px;
    margin-top: -80px;
  }
  .sizes-line {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .slide {
    margin: 0;
  }
  .size {
    font-size: 16px;
  }
  .benefits {
    display: block;
  }
  .card {
    box-sizing: border-box;
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    height: initial;
  }
  .card p {
    margin-top: 0;
  }
  .deliver-block {
    display: block;
  }
  .deliver-bg {
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
  .price-desk {
    display: none;
  }
  .price-wrapper {
    display: block;
  }
  .price-wrapper .t-side {
    text-align: center;
    margin: 0 auto;
  }
  .price-wrapper .t-side h1 {
    margin: 0;
  }
  .price-wrapper .t-side button {
    margin: 30px auto;
  }
  .slider-block {
    margin-top: 20px;
  }
  .slider-block .slide img {
    width: 200px;
    margin: 0 auto;
  }
  .btn-block {
    margin-top: 0px;
  }
}
@media screen and (max-width: 640px) {
  .container {
    text-align: center;
    padding: 10px 10px;
  }
  .header {
    height: 650px;
  }
  .header-title {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    margin: 0px;
  }
  .mini-title {
    margin: 0;
    font-size: 15px;
  }
  .slogan {
    margin: 10px auto 0;
    font-size: 14px;
  }
  .sizes-title {
    margin-top: 10px;
  }
  .sizes-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    margin-top: 20px;
  }
  .last {
    grid-column: 1/3;
  }
  .header-image {
    position: relative;
    width: 300px;
    margin-top: -30px;
    left: initial;
  }
  .paint-title {
    font-size: 30px;
    margin-top: 20px;
    padding-bottom: 10px;
  }
  .buttons-block {
    margin: 0;
  }
  .header-btn {
    margin: 0;
  }
  .header-btn-cost {
    margin-top: 10px;
  }
  .catalog-title {
    font-size: 25px;
  }
  .catalog-title p {
    font-size: 12px;
    margin: 0;
  }
  .slider-block {
    margin-top: 10px;
  }
  .slider-block .slide img {
    width: 200px;
    margin: 0 auto;
  }
  .deliver-block .deliver-text-side {
    margin-left: 0;
    margin-top: 15px;
  }
  .form-section {
    height: 650px;
  }
  .form-wrapper {
    height: initial;
    width: 90%;
    box-sizing: border-box;
  }
  .form-wrapper .form-title {
    font-size: 20px;
  }
  .form-wrapper .form-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .form-wrapper strong {
    border: 1px solid red;
    padding: 2px 10px;
  }
  .form-wrapper .form-input {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
  }
  .form-wrapper .rights {
    font-size: 12px;
  }
  .form-wrapper .submit-btn {
    margin-top: 30px;
    font-size: 14px;
  }
}/*# sourceMappingURL=styles.css.map */
.social {width: fit-content;margin: 0 auto;}
.social img{width:41px;padding:10px 5px 0 10px;}
.politic{color:#fff;text-align:center;margin-top:25px}
@media screen and (min-width: 641px) {
	.politic a{padding:0 5px;font-size:14px;}
}
@media screen and (max-width: 640px) {
	.politic a{width:100%;display:block;font-size:12px;}
}
.cookie_notice {
    display: none;
    position: fixed;
    z-index: 9999999;
    bottom: 20px;
  right: 20px;
  width:50%;
    text-align: center;
    font-size: 15px;
    font-family: Verdana, sans-serif;  
    color: #000;
   background: #fff;
	  padding: 10px 20px;
	border: 2px solid #039B03B2;
}
/* Оформление кнопок */
.cookie_btn {
    display: inline-block;
    margin: 10px 6px 4px 6px;
    text-decoration: none;
    position: relative;
    font-size: 13px;
    padding: 4px 12px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase; 
    background: #00A000;
  border: 2px solid #67D967;
}
.cookie_btn:hover {
    color: #FFF;
}
.cookie_btn:after,
.cookie_btn:before {
    position: absolute;
    height: 2px;
    left: 50%;
    background: #FFF;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.cookie_btn:before {
    top: -6px;
}
.cookie_btn:hover:after,
.cookie_btn:hover:before {
    width: 100%;
    left: 0;
}
@media screen and (max-width: 641px) {
	.cookie_notice {width:80%;}
	.cookie_btn {width: 170px;}
}		