@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #205732;
  --accent-color: #205732;
  --warning-color: red;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

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

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
  background: #baedfc;
  
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}

/*  STRUCTURE  */
.hdw1 {
  padding: 10px 0;
  box-shadow: 0 5px 5px -5px var(--accent-color);
}
.hdw1__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hdw1__logo {
  max-width: 200px;
  width: 100%;
}
.hdw1__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.hdw1__btn {
  width: 120px;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  background: var(--light-color);
  color: var(--dark-color);
  z-index: 2;
  transition: all 0.5s ease;
  border: 1px solid #1c1c1c;
}
.hdw1__btn::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100px;
  transform: translateX(-120%) skewX(-45deg);
  background-color: rgba(250, 207, 181, 0.5019607843);
  left: 0;
  transition: all 2s ease;
  z-index: -1;
}
.hdw1__btn:hover {
  color: var(--light-color);
  background-color: var(--accent-color);
}
.hdw1__btn:hover::before {
  transform: translateX(120%) skewX(-45deg);
}

.logo {
  max-width: 70px;
}
.menu__list {
  display: none;
}
@media screen and (min-width: 1200px) {
  .menu__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
.menu__list.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  gap: 20px;
  gap: 20px;
  background-color: var(--light-color);
  z-index: 10;
}
.menu__link {
  color: var(--primary-color);
}
.menu__link:hover {
  color: var(--accent-color);
}

.burger {
  flex-shrink: 0;
  width: 24px;
  height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}
.burger:before {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--dark-color);
  top: 0%;
  transform: translateY(0%) rotate(0deg);
  transition: all 0.5s ease;
}
.burger:after {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--dark-color);
  transition: all 0.5s ease;
  bottom: 0;
  transform: translateY(0%) rotate(0deg);
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  transition: all 0.5s ease;
}
.burger.is-open {
  z-index: 11;
}
.burger.is-open::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.is-open::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.burger.is-open span {
  transform: scale(0);
}
@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.urgtolff {
  padding: 120px 0;
  position: relative;
  color: var(--light-color);
  background-image: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  margin-bottom: 20px;
}
.urgtolff:before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(to right, rgba(29, 29, 29, 0.8), rgba(29, 29, 29, 0.6), rgba(29, 29, 29, 0));
  z-index: -1;
}
.urgtolff__title {
  font-size: 48px;
  max-width: 640px;
  margin-bottom: 16px;
}
.urgtolff__text {
  max-width: 640px;
  margin-bottom: 16px;
}
.urgtolff__btn {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 8px 0;
  max-width: 140px;
}
.urgtolff__btn:hover {
  color: var(--light-color);
  background-color: var(--accent-color);
}

.about {
  padding: 70px 0;
}
.about__title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 36px;
}
.about__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .about__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .about__list {
    grid-template-columns: 1fr;
  }
}
.about__item {
  min-height: 425px;
}
.about__media {
  margin-bottom: 24px;
}
.about__media img {
  border-radius: 10px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 240px;
}
.about__item-title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}
.about__item-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.about__btn {
  max-width: 150px;
  margin: 0 auto;
  padding: 12px 0;
  color: #fff;
}
.about__btn:hover {
  background-color: var(--accent-color);
  -moz-column-rule: var(--light-color);
       column-rule: var(--light-color);
       color:#000;
}

.pomlop {
  padding: 70px 0;

  color: var(--light-color);
}
.pomlop__title {
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
  color:#000;
}
.pomlop__subtitle {
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
  color:#000;
}
.pomlop__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .pomlop__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .pomlop__list {
    grid-template-columns: 1fr;
  }
}
.pomlop__item {
  padding: 32px;
  border: 1px solid #4f4f4f;
  border-radius: 24px;
  background-color: #116697;
}
.pomlop__item svg {
  color: var(--accent-color);
}
.pomlop__item-title {
  margin-block: 16px;
  font-size: 24px;
}
.pomlop__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.pomlop__info h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  max-width: 380px;
}
.pomlop__info h2 span {
  display: block;
}
.pomlop__info p {
  max-width: 420px;
}

.hophey {
  padding: 70px 0;
}
.hophey__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.hophey__subtitle {
  margin-bottom: 32px;
  font-size: 20px;
  text-align: center;
}
.hophey__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.hophey__list :nth-child(1) {
  grid-column: span 3;
}
.ctt{
  /* max-width: 400px;
  margin: auto;
  text-align: center; */
}
.urgtolff__btn{
  /* margin: auto; */
  color: #fff;
  border: #fff 1px solid;
}
@media screen and (max-width: 1200px) {
  .hophey__list :nth-child(1) {
    grid-column: span 2;
  }
}
.hophey__list :nth-child(2) {
  grid-column: span 3;
}
@media screen and (max-width: 1200px) {
  .hophey__list :nth-child(2) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 1200px) {
  .hophey__list {
    grid-template-columns: 1fr;
  }
}
.hophey__item {
  grid-column: span 2;
  padding: 24px;
  border-radius: 24px;
  background-color: #116697;
  color: var(--light-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hophey__item-btn {
  display: flex;
  align-items: center;
  line-height: 24px;
  gap: 8px;
}
.hophey__item-btn svg {
  position: relative;
  transform: translateX(0px) rotate(-90deg);
  max-width: 160px;
  transition: all 0.3s ease;
}
.hophey__item-btn:hover {
  color: var(--dark-color);
}
.hophey__item-btn:hover svg {
  transform: translateX(5px) rotate(-90deg);
}
.hophey__btn {
  margin: 0 auto;
  max-width: 160px;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 12px 0;
  gap: 8px;
  color: #fff;
}
.hophey__btn:hover {
  background-color: var(--light-color);
   color: #000;
}
footer {
  border-top:1px solid #092c53;
}
hdw1{
  border-bottom: 1px solid #092c53;
}
.costrokt {
  padding: 30px 0;
  /* background-color: #F1F2F4; */
  border-radius: 32px;
}
.costrokt__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.costrokt__subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}
.costrokt__form {
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__input {
  padding: 8px 16px;
}
.form__textarea {
  padding: 8px 16px;
}
.form__btn {
  max-width: 180px;
  margin: 0 auto;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form__btn:hover {
  background-color: var(--accent-color);
}
.form__disclaimer {
  margin-top: -12px;
  margin-bottom: 6px;
}
.form__disclaimer a {
  color: var(--accent-color);
}
.form__disclaimer a:hover {
  color: var(--primary-color);
}

.pomlop-page {
  padding: 70px 0;
}
.pomlop-page__title {
  font-size: 32px;
  margin-bottom: 32px;
  text-align: center;
}
.pomlop-page__content p {
  margin-bottom: 16px;
}
.pomlop-page__content h2 {
  margin-bottom: 12px;
}
.pomlop-page__content a {
  color: var(--accent-color);
}
.pomlop-page__content a:hover {
  color: var(--primary-color);
}
.pomlop-page__content ul {
  margin-bottom: 12px;
}
.pomlop-page__btn {
  max-width: 180px;
  width: 100%;
  margin: 32px auto 0;
  padding: 12px 0;
}
.pomlop-page__btn:hover {
  background-color: var(--accent-color);
}

.docomentation__inner {
  padding: 32px;
    border: 1px solid #4f4f4f;
    border-radius: 10px;
    display: none;
    
    
}
.docomentation__inner p {
  color: #000;
}
.documentation__link {
  color: var(--accent-color);
  display: inline-block;
  transition: all .5s ease;
  position: relative;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid var(--accent-color);
  padding: 8px 16px;
}
@media (max-width: 993px) {
  .documentation__link {
    display: flex;
    max-width: 220px;
    justify-content: center;
    margin: 0 auto;
  }
}

.documentation__link:hover {
  color: var(--light-color);
  
}


.documentation__text {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.footer {
  padding: 35px 0;
}
.footer__info-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.footer__info-list :nth-child(1) {
  margin-right: auto;
  width: 70px;
}
@media screen and (max-width: 768px) {
  .footer__info-list {
    flex-wrap: wrap;
  }
  .footer__info-list :nth-child(1) {
    flex: 0 1 100%;
    margin: 0 auto;
  }
}
.footer__info-link {
  color: var(--accent-color);
}
.footer__info-link:hover {
  color: var(--primary-color);
}
.footer__disclaimer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer__disclaimer .ft_l{
display: block;
padding: 20px;
border-radius: 10px;
border: 1px solid black;
height: 100%;

}
.ft_lb{
  display: flex;
  flex-wrap: wrap;
}
.ftt{
  padding-left: 10px;
  padding-right: 10px;
  width: 50%;
  /* height: 100%; */
  margin-bottom: 10px;

}
.footer__disclaimer p{
  margin-bottom: 10px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.about h1,.about h2,.about h3,.about p{
  color: #000;
}
.about__item{
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #000;
}
.pomlop__inner p,.pomlop__inner h2{
  color:#000;
}
footer {}
@media screen and (max-width:700px) {

  .ftt{
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .footer__inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  .footer__copy {
    order: 2;
    text-align: center;
    margin: 0 auto;
  }
}
.footer__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .footer__list {
    flex: 0 1 100%;
  }
}
@media screen and (max-width: 480px) {
  .footer__list {
    flex-direction: column;
  }
}
.footer__link {
  transition: color 0.3s ease;
  color: var(--accent-color);
}
.footer__link:hover {
  color: var(--primary-color);
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.notify {
  background-color: #116697;

}
.notify__text {
  color: var(--light-color);
  padding: 8px 0;
  font-size: 16px;
  font-weight: 300;
}

.rating {
  background-color: var(--light-color);
  padding: 30px 0;
  max-width: 960px;
  border-radius: 30px;
  margin: -36px auto 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .rating {
    margin-top: 0;
  }
}
.rating__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .rating__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-self: center;
  }
}
@media screen and (max-width: 1200px) {
  .rating__card {
    width: 100%;
    max-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.rating__card:nth-child(2) img, .rating__card:nth-child(3) img {
  max-width: 24px;
  width: 100%;
}
.rating__card:nth-child(1) svg {
  color: #2962FF;
}
.rating__card:nth-child(4) svg {
  color: #01B57A;
}
.rating__head {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.rating__head img {
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .rating__head span {
    font-size: 14px;
  }
}
.rating__content {
  display: flex;
  align-items: center;
  gap: 3px;
}
.rating__content span {
  margin-right: 8px;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .rating__content span {
    font-size: 18px;
  }
}
.rating__content svg {
  color: #FF9F29;
}
@media screen and (max-width: 1200px) {
  .rating__content svg {
    width: 16px;
  }
}

.card {
  position: fixed;
  z-index: 20;
  bottom: 20px;
  right: 20px;
  width: 300px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 13px;
  overflow: hidden;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 18px #06a18f;
}
@media screen and (max-width: 480px) {
  .card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

#cookieSvg {
  width: 50px;
}

#cookieSvg g path {
  fill: rgb(227, 110, 110);
}

.cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  text-align: center;
}

.cookieDescription {
  text-align: center;
  font-size: 0.7em;
  font-weight: 600;
}

.buttonContainer {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.acceptButton {
  width: 80px;
  height: 30px;
  background-color: #7b57ff;
  transition-duration: 0.2s;
  border: none;
  color: rgb(241, 241, 241);
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.declineButton {
  width: 80px;
  height: 30px;
  background-color: rgb(218, 218, 218);
  transition-duration: 0.2s;
  color: rgb(46, 46, 46);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.declineButton:hover {
  background-color: var(--warning-color);
  transition-duration: 0.2s;
}

.acceptButton:hover {
  background-color: #9173ff;
  transition-duration: 0.2s;
}

/*  COMPONENTS  *//*# sourceMappingURL=main.css.map */