html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background-image: url("/img/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #494949;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
input,
button,
select,
textarea {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.titles {
  position: relative;
  color: #494949;
  font-size: 35px;
  font-weight: 800;
}
.titles-icon {
  position: absolute;
  left: -95px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
hr {
  border: none;
  border-top: 1px solid #bbb9a9;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .titles {
    font-size: 25px;
  }
}
.menu {
  margin: auto 0;
  display: flex;
  justify-content: end;
  transition: 0.4s all;
}
.menu__link {
  display: block;
  margin: 0 15px;
  padding: 5px 15px;
  color: #494949;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.menu__link::before {
  content: "";
  background-color: #fee800;
  position: absolute;
  border-radius: 0;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 8px;
  z-index: -1;
  transition: 0.4s all;
}
.menu__link:hover::before {
  left: -5px;
  bottom: 0;
  height: 100%;
  width: calc(100% + 10px);
  border-radius: 10px;
}
.menu__btn {
  display: block;
  margin: 0 15px;
  padding: 8px 16px;
  color: #da2e00;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #da2e00;
  border-radius: 10px;
  transition: 0.4s all;
}
.menu__btn:hover {
  background: #da2e00;
  color: #fff;
}
.header {
  position: relative;
  transition: top 0.3s;
  top: -100%;
}
.header__menu {
  display: flex;
  justify-content: end;
}
.hamburger {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: 0.4s all;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: #333;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu.active {
  animation: slideDown 0.7s ease forwards;
}
.fixed-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fffce4;
  box-shadow: 0px 30px 40px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {
  .menu__link {
    font-size: 18px;
    margin: 10px 5px;
    padding: 5px 10px;
  }
}
@media (max-width: 768px) {
  .header__logo img {
    width: 80px;
  }
  .hamburger {
    display: flex;
  }
  .menu {
    overflow: hidden;
  }
  .menu__link {
    font-size: 18px;
    margin: 10px 20px;
    padding: 5px 10px;
  }
  .menu.active {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vh;
    background: #fffce4;
    align-items: start;
    margin-top: 83px;
    height: auto;
    overflow-y: auto;
    z-index: 9;
    box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.2);
  }
}
.intro {
  padding-top: 100px;
}
.intro__img {
  max-width: 400px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.intro__title {
  color: #494949;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  width: 450px;
  margin: 30px 0;
}
.intro__title span {
  color: #da2e00;
}
.intro p {
  margin-bottom: 36px;
}
.intro__btn {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 170px;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  background-color: #da2e00;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0px 4px 10px 0px #b0ad96;
  transition: 0.4s all;
}
.intro__btn-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0;
  opacity: 0;
  transition: 0.4s all;
}
.intro__btn:hover {
  background-color: #fee800;
  box-shadow: none;
  color: #494949;
  padding-left: 27px;
}
.intro__btn:hover .intro__btn-icon {
  opacity: 1;
  left: 25px;
}
.intro__btn2 {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 170px;
  margin-right: 16px;
  border-radius: 10px;
  border: 1px solid #da2e00;
  background-color: transparent;
  padding: 10px 20px;
  color: #da2e00;
  font-size: 16px;
  font-weight: 700;
  transition: 0.4s all;
}
.intro__btn2:hover {
  background-color: #fff;
  padding-left: 27px;
}
.intro__btn2:hover .intro__btn-icon {
  opacity: 1;
  left: 25px;
}
#paymentCodeInput {
  margin: 20px 0;
  display: block;
  height: 50px;
  width: 70%;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(232, 230, 212, 0.8);
  border: none;
  outline: none;
  transition: 0.4s all;
}
#paymentCodeInput::placeholder {
  color: rgba(105, 104, 97, 0.8);
}
#paymentCodeInput:focus {
  background-color: #fff;
  outline: 1px solid #fee800;
}
#submitPaymentCode {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 70%;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  background-color: #da2e00;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: 0px 4px 10px 0px #b0ad96;
  transition: 0.4s all;
}
#submitPaymentCode i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0;
  opacity: 0;
  transition: 0.4s all;
}
#submitPaymentCode:hover {
  background-color: #fee800;
  box-shadow: none;
  color: #494949;
  padding-left: 27px;
}
#submitPaymentCode:hover i {
  opacity: 1;
  right: 25px;
}
@media (max-width: 992px) {
  .intro__title {
    width: 350px;
    font-size: 45px;
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  .intro {
    padding-top: 20px;
    text-align: center;
  }
  .intro__img {
    padding-top: 30px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  .intro__btn {
    width: 280px;
  }
  .intro__btn2 {
    width: 280px;
  }
  .intro__title {
    width: auto;
    font-size: 45px;
    margin: 20px 0;
  }
  #paymentCodeInput {
    width: 100%;
  }
  #submitPaymentCode {
    width: 100%;
  }
}
@media (max-width: 574px) {
  .intro__title {
    font-size: 35px;
    margin: 20px 0;
  }
}
.services {
  margin: 120px auto 0;
}
.services__board {
  padding: 40px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.6) 2%,
    rgba(255, 255, 255, 0.1) 88%
  );
  box-shadow: 0 30px 60px rgba(159, 159, 159, 0.33);
  position: relative;
  z-index: 1;
  border-radius: 32px;
}
.services__board::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  z-index: -1;
}
.services__card {
  display: block;
  padding: 25px;
  text-align: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 23px 0px #e1dcd0;
  transition: 0.4s all;
}
.services__card img {
  height: 120px;
}
.services__card p {
  font-size: 20px;
  font-weight: 700;
  color: #494949;
}
.services__card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 2px 0px #e1dcd0;
}
@media (max-width: 992px) {
  .services__card img {
    height: 70px;
  }
}
@media (max-width: 574px) {
  .services__board {
    padding: 20px;
  }
}
.info {
  margin: 100px auto;
}
.info__img {
  width: 100%;
  max-width: 450px;
  display: block;
  margin: 0 auto;
}
.info__item {
  margin-bottom: 25px;
}
.info__item-title {
  padding-left: 40px;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: #494949;
  margin-bottom: 5px;
}
.info__item-title::before {
  content: "";
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-image: url("/img/dot.png");
  background-size: contain;
  position: absolute;
}
.we {
  margin: 100px auto;
}
.we__about {
  padding: 50px;
}
.we__about p {
  font-weight: 500;
}
.we__about-info {
  position: relative;
  padding-left: 32px;
  margin: 5px 0;
  font-weight: 500;
}
.we__about-info img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  transform: translateY(-50%);
}
.we__form {
  padding: 46px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.6) 2%,
    rgba(255, 255, 255, 0.1) 88%
  );
  box-shadow: 0 30px 60px rgba(159, 159, 159, 0.33);
  position: relative;
  z-index: 1;
  border-radius: 32px;
}
.we__form::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  z-index: -1;
}
.we__form h3 {
  font-size: 35px;
  font-weight: 500;
}
.we__form input {
  margin: 20px 0;
  display: block;
  height: 50px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(232, 230, 212, 0.8);
  border: none;
  outline: none;
  transition: 0.4s all;
}
.we__form input::placeholder {
  color: rgba(105, 104, 97, 0.8);
}
.we__form input:focus {
  background-color: #fff;
}
.we__form textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(232, 230, 212, 0.8);
  border: none;
  outline: none;
  transition: 0.4s all;
}
.we__form textarea::placeholder {
  color: rgba(105, 104, 97, 0.8);
}
.we__form textarea:focus {
  background-color: #fff;
}
.we__form button {
  background-color: transparent;
  color: #da2e00;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  border: 1px solid #da2e00;
  box-shadow: 0px 4px 10px 0px rgba(176, 173, 150, 0.2);
  height: 42px;
  cursor: pointer;
  transition: color 0.9s, background 0.2s;
}
.we__form button:hover {
  background: #da2e00;
  box-shadow: none;
  border: none;
  color: #fff;
}
@media (max-width: 768px) {
  .we__about {
    padding: 20px;
  }
  .we__form {
    padding: 20px;
  }
}
.footer {
  margin: 100px auto 30px;
}
.footer__logo {
  position: relative;
  font-size: 35px;
  font-weight: 200;
  letter-spacing: -1.4px;
  padding-left: 50px;
  line-height: 40px;
  padding-top: 10px;
}
.footer__logo img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer__lang {
  display: inline-flex;
  flex-direction: column;
  justify-content: end;
}
.footer__lang-item {
  height: 40px;
  background-color: transparent;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 10px;
  margin-right: 10px;
  color: #494949;
  transition: 0.4s all;
}
.footer__lang-item:hover {
  background-color: #fffde5;
  color: #da2e00;
}
.footer__link {
  text-align: right;
  display: block;
  font-size: 12px;
  color: #494949;
  text-decoration: underline;
}
.footer__link:hover {
  color: #da2e00;
}
.active {
  background-color: #fff;
}
@media (max-width: 768px) {
  .footer__lang {
    justify-content: start;
  }
}
.modalka {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.modalka-content {
  position: relative;
  background: #fffde5;
  width: 500px;
  padding: 40px;
  border-radius: 24px;
}
.modalka-content input {
  margin: 20px 0;
  display: block;
  height: 50px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(232, 230, 212, 0.8);
  border: none;
  outline: none;
  transition: 0.4s all;
}
.modalka-content input::placeholder {
  color: rgba(105, 104, 97, 0.8);
}
.modalka-content input:focus {
  background-color: #fff;
  outline: 1px solid #fee800;
}
.modalka-content button {
  background-color: transparent;
  color: #da2e00;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #da2e00;
  box-shadow: 0px 4px 10px 0px rgba(176, 173, 150, 0.2);
  height: 42px;
  cursor: pointer;
  transition: color 0.9s, background 0.2s;
}
.modalka-content button:hover {
  background: #da2e00;
  box-shadow: none;
  border: none;
  color: #fff;
}
.modalka-content {
  position: relative;
  background: #fff;
  width: 500px;
  padding: 40px;
  border-radius: 24px;
}
#closeModalka {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  color: #000;
}
.service-item {
  margin-bottom: 16px;
}
.service-item label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  margin-left: 10px;
  font-weight: 400;
  font-style: italic;
}
.service-item input,
.service-item select {
  display: inline-block;
  height: 50px;
  width: 100%;
  padding: 15px 20px;
  margin-right: 5px;
  border-radius: 10px;
  background: rgba(232, 230, 212, 0.8);
  border: none;
  outline: none;
  transition: 0.4s all;
}
.service-item input::placeholder,
.service-item select::placeholder {
  color: rgba(105, 104, 97, 0.8);
}
.service-item input:focus,
.service-item select:focus {
  background-color: #fff;
  border: 1px solid #bbb9a9;
}
.service-item button {
  width: 25%;
  display: inline-block;
  background-color: #494949;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  height: 50px;
  cursor: pointer;
  transition: color 0.9s, background 0.2s;
}
.service-item button:hover {
  background: #da2e00;
  box-shadow: none;
  border: none;
  color: #fff;
}
.service-item hr {
  border: 1px solid #bbb9a9;
  margin-top: 20px;
}
#dropdownInfo {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 16px;
}
#dropdownInfo p {
  margin-bottom: 10px;
  font-weight: 400;
}
#dropdownInfo p span {
  font-weight: 700;
}
.total-none {
  display: none;
}
input.readonly {
  background-color: #f3f3f3;
  color: #a9a9a9;
  border: 1px solid #dcdcdc;
  cursor: not-allowed;
}
input.readonly:hover {
  background-color: #e9e9e9;
}
.receipt__body {
  margin: 30px 0;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(73, 73, 73, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(73, 73, 73, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(73, 73, 73, 0.2);
}
.receipt h3 {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.receipt h4 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
  color: green;
}
.receipt hr {
  border: none;
  border-top: 5px dotted #bbb9a9;
  color: #fff;
  background-color: #fff;
  height: 5px;
  width: 100%;
  margin: 20px 0;
}
.receipt-body {
  box-sizing: border-box;
}
.payment-details p {
  margin-left: 0;
  margin-right: 0;
}
.flex-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  margin-left: 0;
  margin-right: 0;
}
.amount-title {
  font-size: 12px;
  font-weight: 700;
  color: #bbb9a9;
  margin: 0 auto;
  text-align: center;
}
.transaction-id {
  font-size: 11px;
  font-weight: 700;
  color: #bbb9a9;
}
.included-payments {
  font-size: 12px;
}
.included-payments span {
  font-weight: 700;
}
.included-payments p {
  margin-left: 0;
  margin-right: 0;
}
.subscriber {
  font-weight: 700;
}
.receipt-footer button {
  margin-left: 10px;
  display: block;
  width: 50px;
  padding: 10px 0;
  border-radius: 5px;
  border: none;
  background: #494949;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s all;
}
.receipt-footer button:hover {
  background: #da2e00;
}
@media print {
  header,
  footer,
  nav,
  .menu,
  .receipt-footer {
    display: none !important;
  }
}
.about {
  margin-top: 120px;
}
.about__text {
  font-size: 16px;
  line-height: 1.5;
  margin: 30px 0 30px;
}
.about__img {
  display: block;
  margin: 0 auto;
  width: 80%;
}
.about__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: #333;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .menu {
    display: none;
    flex-direction: column;
    align-items: start;
    padding-top: 20px;
  }
  .menu.active {
    display: flex;
  }
}
.partners {
  padding: 100px 0;
}
.partners-item {
  margin: 5px;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(187, 185, 169, 0.3);
  transition: 0.4s all;
}
.partners-item:hover {
  box-shadow: 0 0 20px rgba(73, 73, 73, 0.2);
}
.partners-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.payment-message {
  margin: 20px 0 16px 0;
  width: 70%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-message__content {
  position: relative;
  width: 100%;
  min-height: 120px;
  border-radius: 16px;
  background: #fff;
  padding: 15px 50px 15px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: inset 0px 0px 16px 0px rgba(176, 173, 150, 0.52);
}
.payment-message__icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
}
.payment-message__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  color: #494949;
  font-size: 18px;
  padding: 0;
  z-index: 10;
}
.payment-message__close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.payment-message__close i {
  line-height: 1;
}
.payment-message__text {
  text-align: left;
  color: #494949;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: 0.4s all;
}
.payment-message__text .subscriber-name {
  font-weight: 700;
}
.payment-message__content.border-red {
  background-color: #fff5f5;
}
.payment-message__content.border-yellow {
  background-color: #fffef0;
}
.payment-message__content.border-green {
  background-color: #f0fff4;
}
@media (max-width: 768px) {
  .payment-message {
    width: 100%;
  }
}
