@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: #1F4E79;
  --accent-color: #1F4E79;
  --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: #1C1C1C;
  
}
h1,h2,h3,h4,h5,p,li{
  color:#ffff;

}

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  */
.uktopt {
  padding: 10px 0;
  box-shadow: 0 5px 5px -5px var(--accent-color);
}
h1{
  word-break: break-all;
}
.uktopt__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.uktopt__logo {
  max-width: 200px;
  width: 100%;
}
.uktopt__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.uktopt__btn {
  width: auto;
  padding: 8px 10px;
  position: relative;
  overflow: hidden;
  background: var(--light-color);
  color: var(--dark-color);
  z-index: 2;
  transition: all 0.5s ease;
  border: 1px solid #1c1c1c;
}
.uktopt__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;
}
.uktopt__btn:hover {
  color: var(--light-color);
  background-color: var(--accent-color);
}
.uktopt__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: #fff;
  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: #fff;
  transition: all 0.5s ease;
  bottom: 0;
  transform: translateY(0%) rotate(0deg);
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  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;
  }
}

.coprt12 {
  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;
}
.coprt12: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;
}
.coprt12__title {
  font-size: 48px;
  max-width: 640px;
  margin-bottom: 16px;
}
.coprt12__text {
  max-width: 640px;
  margin-bottom: 16px;
}
.coprt12__btn {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 8px 0;
  max-width: 140px;
}
.coprt12__btn:hover {
  color: var(--light-color);
  background-color: var(--accent-color);
}

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

.nttregon {
  padding: 70px 0;

  color: var(--light-color);
}
.nttregon__title {
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
  color:#fff;
}
.nttregon__subtitle {
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
  color:#fff;
}
.nttregon__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .nttregon__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .nttregon__list {
    grid-template-columns: 1fr;
  }
}
.nttregon__item {
  padding: 32px;
  border: 1px solid #4f4f4f;
  border-radius: 24px;
  background-color: #967a45;
}
.nttregon__item svg {
  color: var(--accent-color);
}
.nttregon__item-title {
  margin-block: 16px;
  font-size: 24px;
}
.nttregon__inner {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  gap: 32px;
}
.nttregon__info h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  max-width: 380px;
}
.nttregon__info h2 span {
  display: block;
}
.nttregon__info p {
  max-width: 420px;
}
.nttregon__suptitle{
    margin: auto;
    text-align: center;
  margin-bottom: 20px;
}
.nttregon__text{
  margin: auto;
    text-align: center;
  margin-bottom: 20px;
}

.holkhpor {
  padding: 70px 0;
}
.holkhpor__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.holkhpor__subtitle {
  margin-bottom: 32px;
  font-size: 20px;
  text-align: center;
}
.holkhpor__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: auto;
  margin-bottom: 32px;
  max-width: 720px;
  
}
.holkhpor__list :nth-child(1) {
  grid-column: span 3;
}
.ctt{
  /* max-width: 400px;
  margin: auto;
  text-align: center; */
}
.coprt12__btn{
  /* margin: auto; */
  color: #fff;
  border: #fff 1px solid;
}
@media screen and (max-width: 1200px) {
  .holkhpor__list :nth-child(1) {
    grid-column: span 3;
  }
}
.holkhpor__list :nth-child(2) {
  grid-column: span 3;
}
@media screen and (max-width: 1200px) {
  .holkhpor__list :nth-child(2) {
    grid-column: span 3;
  }
}
@media screen and (max-width: 1200px) {
  .holkhpor__list {
    grid-template-columns: 1fr;
  }
}
.holkhpor__item {
  grid-column: span 3;
  padding: 24px;
  border-radius: 24px;
  background-color: #967a45;
  color: var(--light-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.holkhpor__item-btn {
  display: flex;
  align-items: center;
  line-height: 24px;
  gap: 8px;
}
.holkhpor__item-btn svg {
  position: relative;
  transform: translateX(0px) rotate(-90deg);
  max-width: 160px;
  transition: all 0.3s ease;
}
.holkhpor__item-btn:hover {
  color: var(--dark-color);
}
.holkhpor__item-btn:hover svg {
  transform: translateX(5px) rotate(-90deg);
}
.holkhpor__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;
}
.holkhpor__btn:hover {
  background-color: var(--light-color);
   color: #000;
}
footer {
  border-top:1px solid #092c53;
}
header{
  border-bottom: 1px solid #092c53;
}
.formgetprom {
  padding: 30px 0;
  /* background-color: #F1F2F4; */
  border-radius: 32px;
}
.formgetprom__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.formgetprom__subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}
.formgetprom__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);
}

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

.docomentation__inner {
  padding: 32px;
    border: 1px solid #4f4f4f;
    border-radius: 10px;
   
    background: #967a45;
    color:#fff;
    
    
}
.docomentation__inner p {
  color: #fff;
}
.documentation__link {
  color: #fff;
  display: inline-block;
  transition: all .5s ease;
  position: relative;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid #fff;
  padding: 8px 16px;
  font-size: 14px;
}
@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%;

  margin-bottom: 10px;

} */
.footer__disclaimer p{
  margin-bottom: 10px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.mfport h1,.mfport h2,.mfport h3,.mfport p{
  color: #fff;
}
.mfport__item{
  padding: 10px;
  border-radius: 10px;
 
}
.nttregon__inner p,.nttregon__inner h2{
  color:#fff;
}
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: #1F4E79;

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

.dumpostop {
  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) {
  .dumpostop {
    margin-top: 0;
  }
}
.dumpostop__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .dumpostop__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-self: center;
  }
}
@media screen and (max-width: 1200px) {
  .dumpostop__card {
    width: 100%;
    max-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.dumpostop__card:nth-child(2) img, .dumpostop__card:nth-child(3) img {
  max-width: 24px;
  width: 100%;
}
.dumpostop__card:nth-child(1) svg {
  color: #2962FF;
}
.dumpostop__card:nth-child(4) svg {
  color: #01B57A;
}
.dumpostop__head {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.dumpostop__head img {
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .dumpostop__head span {
    font-size: 14px;
  }
}
.dumpostop__content {
  display: flex;
  align-items: center;
  gap: 3px;
}
.dumpostop__content span {
  margin-right: 8px;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .dumpostop__content span {
    font-size: 18px;
  }
}
.dumpostop__content svg {
  color: #FF9F29;
}
@media screen and (max-width: 1200px) {
  .dumpostop__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;
}
.cookieHeading,.cookieDescription{
  color: #000!important;
}
/*  COMPONENTS  *//*# sourceMappingURL=main.css.map */