:root {
  --color-main: orange;
  --color-gray: #555555;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

h1 {
  font-size: 48px;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.navigation {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/main_small.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.navigation__languages--style {
  color: white;
  padding: 6px;
  border: none;
}
.navigation__contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 40px;
  border-bottom: 1px solid #ccc;
  padding-top: 20px;
}
.navigation__contact--underline {
  color: white;
  text-decoration: none;
}

.header {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: left;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30vh;
}

.orange--button {
  background: var(--color-main);
  padding: 15px;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

h3 {
  color: #888888;
  font-weight: 400;
}

h5 {
  text-transform: uppercase;
  color: #888888;
}

.about {
  position: relative;
  display: flex;
  gap: 60px;
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .about {
    margin-top: 10px;
  }
}
.about__photo--block {
  position: absolute;
  top: 480px;
  left: -10px;
  width: 160px;
  height: 150px;
  background-color: var(--color-main);
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 0 100%);
  color: white;
  text-align: center;
}
.about__photo--block_exp {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 55px;
}
.about__photo__img {
  height: 580px;
  width: auto;
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 0 100%);
  object-fit: cover;
  margin-left: 50px;
}
@media (max-width: 1200px) {
  .about__photo__img, .about__photo--block {
    display: none;
  }
}
.about__info__contact {
  display: flex;
  gap: 20px;
}
.about__info__header {
  text-transform: uppercase;
}
.about__info--orange {
  color: var(--color-main);
}
.about__info__phone {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: var(--color-main);
  border-radius: 50%;
  font-size: 30px;
}
.about__info__phone__icon {
  position: absolute;
  left: 15px;
  top: 11px;
}
.about__info__phone__number__div {
  padding-top: 15px;
}
.about__info__phone__number {
  color: black;
  padding-top: 10px;
}

.no-bullets {
  list-style-type: none;
}

@media screen and (max-width: 1200px) {
  .about {
    flex-wrap: wrap;
  }
}
.call {
  margin-top: 100px;
  padding-bottom: 60px;
  min-height: 400px;
  width: 100%;
  background-color: var(--color-main);
}
.call__header {
  text-align: center;
  font-size: 2rem;
}
.call__subheader {
  text-align: center;
}

.subtitle__center {
  text-align: center;
  padding-top: 80px;
  margin: 0;
  color: white;
}
.subtitle__center--gray {
  color: #888888;
}

.advantages {
  min-height: 70vh;
}
.advantages__wrapper {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}
.advantages__contact {
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
}
.advantages__contact--orange {
  color: var(--color-main);
}

.advantage {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 400px;
  width: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 11px 14px 10px -10px rgb(129, 128, 128);
  -moz-box-shadow: 11px 14px 10px -10px rgb(129, 128, 128);
  box-shadow: 11px 14px 10px -10px rgb(129, 128, 128);
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 0 100%);
}
.advantage_1 {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("/img/adv1.jpg");
}
.advantage_2 {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%), url("/img/adv2.jpg");
}
.advantage_3 {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%), url("/img/adv5.jpg");
}
.advantage_4 {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%), url("/img/adv4.jpg");
}
.advantage_1:hover, .advantage_2:hover, .advantage_3:hover, .advantage_4:hover {
  scale: 1.1;
}
.advantage__title {
  color: white;
  font-size: 20px;
  text-align: center;
}
.advantage__desc {
  color: white;
  padding: 15px;
}

.product {
  display: flex;
  width: 100%;
  min-height: 50vh;
  box-sizing: border-box;
  background: var(--color-gray);
}
.product__photo {
  width: 100%;
  background-image: url("/img/014.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product__info__desc {
  color: white;
}

.subtitle__product {
  padding-top: 40px;
  padding-bottom: 40px;
  color: white;
}

.comfort {
  min-height: 50vh;
  margin-bottom: 80px;
}
.comfort__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.comfort__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 400px;
}
.comfort__item__icon {
  display: flex;
  justify-content: center;
  padding: 30px;
}
.comfort__finish__desc {
  margin-top: 40px;
}

.testimonials {
  min-height: 40vh;
  background-color: var(--color-main);
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1000px) {
  .testimonials {
    padding-top: 0;
  }
}
.testimonials__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .testimonials__wrapper {
    flex-wrap: wrap;
  }
}
.testimonials__info {
  min-width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 20px;
}
@media (max-width: 1000px) {
  .testimonials__info {
    width: 100%;
  }
}
.testimonials__subheader {
  text-align: center;
}
@media (max-width: 1000px) {
  .testimonials__subheader {
    text-align: center;
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #fcc368;
  padding: 30px;
  margin-right: 40px;
  margin-top: 10px;
}
.testimonial__header {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}
.testimonial__author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
}
.testimonial__author__photo {
  margin-right: 10px;
}
.testimonial__author__photo img {
  height: 70px;
  border: 4px var(--color-main) solid;
  border-radius: 50%;
}

.contact {
  min-height: 30vh;
}
.contact__info {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
  min-width: 40%;
  background-color: white;
  text-align: start;
  -webkit-box-shadow: 8px 8px 30px 0 rgb(66, 68, 90);
  -moz-box-shadow: 8px 8px 30px 0 rgb(66, 68, 90);
  box-shadow: 8px 8px 30px 0 rgb(66, 68, 90);
}
.contact__info .subtitle__center {
  padding-top: 40px;
}
.contact__block {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}
.contact--underline {
  text-decoration: none;
  color: black;
}

@media screen and (max-width: 800px) {
  .contact__info {
    width: 80%;
  }
}
footer {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 5px;
  border-top: 1px solid var(--color-gray);
  font-size: 12px;
  text-align: center;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 20px;
  display: none;
  text-align: center;
  z-index: 9999;
}
.cookie-consent____content {
  max-width: 600px;
  margin: 0 auto;
}
.cookie-consent .btn {
  padding: 10px 20px;
  margin: 10px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}
.cookie-consent .accept {
  background-color: #4caf50;
  color: white;
}
.cookie-consent .decline {
  background-color: #f44336;
  color: white;
}

@media (max-width: 600px) {
  .cookie-consent__content {
    padding: 10px;
    margin-right: 20px;
  }
}

/*# sourceMappingURL=mystyles.css.map */
