@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Regular.ttf);
  font-weight: 400;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

.ul-style-none {
  padding: 0;
}
.ul-style-none li {
  padding: 0;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

input:not([type=checkbox], [type=radio]),
input:not([type=checkbox], [type=radio]):focus,
textarea,
textarea:focus,
select,
select:focus {
  outline: none !important;
  -webkit-appearance: none;
}

.modal__bg {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: none;
}

.modal {
  max-width: 450px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 90;
  display: none;
}
.modal.active, .modal__bg.active {
  display: block;
}
.modal-body {
  width: 100%;
  height: 100%;
  padding: 30px;
  position: relative;
}
.modal-title {
  font-size: 25px;
  margin-bottom: 30px;
  text-align: center;
}
.modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

body.show-modal {
  overflow: hidden;
}

.close {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.close .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.close .inner::before, .close .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
.close .inner::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.close .inner::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

/*.menu {*/
/*  display: -webkit-box;*/
/*  display: -ms-flexbox;*/
/*  display: flex;*/
/*}*/

.menu a {
  padding: 5px;
}
.menu a:hover {
  opacity: 0.7;
}
.mobile-nav .menu {
  display: block;
}
.mobile-nav li {
  margin-right: 0;
  margin-bottom: 5px;
}
.mobile-nav li a {
  font-size: 14px;
}
.mobile-nav {
  margin-bottom: 25px;
}
.mobile-wrap {
  max-width: 450px;
  width: 100%;
  height: 100vh;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 70;
}
.mobile-wrap.active {
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mobile-body {
  width: 100%;
  height: 100%;
  padding: 70px 15px 30px 30px;
  position: relative;
}
.mobile-body .close {
  position: absolute;
  top: 25px;
  right: 25px;
}
.mobile-body .close .inner::before,
.mobile-body .close .inner::after {
  background-color: #fff;
}
.mobile-nav .menu a {
  color: #fff;
}

.mobile-btn {
  width: 40px;
  height: 20px;
  cursor: pointer;
  position: relative;
  display: none;
}
.mobile-btn .inner, .mobile-btn::before, .mobile-btn::after {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
}
.mobile-btn .inner {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mobile-btn::before {
  content: "";
  top: 0;
}
.mobile-btn::after {
  content: "";
  bottom: 0;
}

.mobile-wrap-btns {
  margin-top: 30px;
}

.mobile-wrap-btns .btn {
  display: block;
  margin-bottom: 15px;
}
.mobile-wrap-btns .btn:last-child {
  margin-bottom: 0;
}

.tab {
  margin-bottom: 30px;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 30px;
}
.tab-title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.tab-ans {
  line-height: 1.3;
  margin-top: 25px;
  display: none;
}
.tab.active .tab-ans {
  display: block;
}

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

.header {
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
  padding: 15px 50px;
  border-radius: 150px;
  margin-top: 30px;
  margin-bottom: 50px;
}
.header.fixed {
  width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3) !important;
  margin-top: 0;
  border: none !important;
  border-radius: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-btns {
  display: flex;
  align-items: center;
}
.header-btns .btn {
  width: 150px;
  margin-left: 10px;
}
.btn.register-btn {
  background-color: transparent !important;
}
.header-btns .lang-switcher {
  margin-left: 15px;
}

.custom-logo-link {
  width: 150px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-logo-link img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
}

.section {
  padding-top: 100px;
  padding-bottom: 50px;
}
.section-title {
  text-align: center;
  margin-bottom: 30px;
}
.section-title h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}
.section-title span {
  position: relative;
}

.section.banner {
  padding-top: 0;
}

.banner {
  height: 600px;
}
.banner-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.banner-img {
  max-width: 600px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.banner-img img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  border-radius: 20px;
}

.has-border {
  position: relative;
}
.has-border::before, .has-border::after {
  content: "";
  display: block;
  width: 1px;
  height: 90%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.has-border::before {
  left: 0;
}
.has-border::after {
  right: 0;
}

.offer {
  width: 50%;
  padding-left: 15px;
  text-align: right;
}
.offer-title h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.offer-desc {
  margin-bottom: 35px;
  font-size: 18px;
}
.offer .btn {
  max-width: 300px;
  width: 100%;
  line-height: 55px;
}

.btn {
  display: inline-block;
  padding: 0 15px;
  line-height: 50px;
  text-align: center;
  color: inherit;
  border-radius: 10px;
}

.btn:hover {
  opacity: 0.7;
}

.slots-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.slots-item {
  width: 25%;
  padding: 0 7.5px;
  margin-bottom: 15px;
}
.slots-item .item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.slots-item .item__title {
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
}
.slots-item .item__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slots-item:hover img {
  opacity: 0.7;
}
.slots-item:hover .item__title::before {
  width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.content-title {
  font-size: 45px;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
}
.content-text {
  line-height: 1.5;
}


.elements-item {
  margin-bottom: 70px;
}
.elements-item:last-child {
  margin-bottom: 0;
}
.elements-item-title {
  text-align: center;
  margin-bottom: 35px;
}
.elements-item-title h2 {
  font-size: 30px;
}
.elements-item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.elements-item-text {
  width: 49%;
  padding-bottom: 20px;
  margin-top: -20px;
}
.elements-item-text.has-border::after {
  display: none;
}
.elements-item-image {
  width: 49%;
}
.elements-item:nth-child(even) .elements-item-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.footer {
  padding: 50px 0;
}

.pay-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.own {
  font-size: 13px;
}
.page .section {
  padding-top: 0;
}

.lang-switcher {
  position: relative;
}
.lang-switcher-current li:not(.current-lang) {
  display: none;
}
.lang-switcher li {
  list-style-type: none;
}
.lang-switcher li:last-child {
  margin-right: 0;
}
.lang-switcher li img {
  width: 25px !important;
  height: 17px !important;
  border-radius: 5px;
}
.lang-switcher-list {
  padding: 0 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
  display: none;
}
.lang-switcher-list li {
  margin-bottom: 10px;
}
.lang-switcher:hover .lang-switcher-list {
  display: block;
}
.mobile-wrap .lang-switcher ul {
  display: flex;
}
.mobile-wrap .lang-switcher ul li {
  margin-right: 10px;
}
.mobile-wrap .lang-switcher ul li:last-child {
  margin-right: 0;
}
.header .nav {
  padding: 0 25px;
}
.header .nav ul li a {
  white-space: nowrap;
}
.header .nav ul {
  flex-wrap: wrap;
  justify-content: center;
}
.header .nav ul li {
  margin-bottom: 10px;
}
.offer-btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
a.social-icon {
  width: 45px;
  min-width: 45px;
  height: 45px;
  display: block;
  border-radius: 150%;
  padding: 10px;
  margin-right: 15px;
  border: 1px solid;
}
a.social-icon svg {
  width: 100%;
  height: 100%;
}
.header-menu {
  position: relative;
}
.header-menu-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
}
.header-menu:hover .header-menu-list {
  display: block;
}
.header-menu-list {
  min-width: 250px;
  padding: 15px;
  border: 1px solid rgb(68, 68, 68);
  border-radius: 17px;
  backdrop-filter: blur(53.5px);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
}







/* Adaptive */
@media (max-width: 1350px) {
  .has-border::before,
  .has-border::after {
    display: none;
  }
  .offer-title h1 {
    font-size: 60px;
  }
  .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 1100px){
  .header {
    width: 95%;
    padding: 10px 15px;
    margin-top: 15px;
  }
  .custom-logo-link {
    max-width: 100px;
    height: 50px;
  }
  .custom-logo-link img {
    display: block;
  }
  .header-btns {
    display: none;
  }
  .header-menu {
    display: none;
  }
  .mobile-btn {
    display: block;
  }
}
@media (max-width: 900px) {
  .wrap {
    padding: 0 15px;
  }
  .slots-item {
    width: 25%;
  }
  .section {
    padding-top: 50px;
  }
}
@media (max-width: 850px) {
  .banner-content {
    display: block;
  }
  .banner {
    padding-top: 50px !important;
    padding-bottom: 30px;
    height: auto;
  }
  .banner-img {
    margin: 0 auto 50px;
  }
  .offer {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .offer-btns {
    flex-direction: column-reverse;
  }
  .offer-btn {
    margin-bottom: 20px;
  }
  .section-title span::before {
    display: none;
  }
  .elements-item-row {
    display: block;
  }
  .elements-item {
    margin-bottom: 50px;
  }
  .elements-item:last-child {
    margin-bottom: 0;
  }
  .elements-item-text {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }
  .elements-item-image {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .slots-item {
    width: 33.3333%;
  }
}
@media (max-width: 600px) {
  .header {
    margin-bottom: 0;
  }
  .offer-title h1 {
    font-size: 40px;
  }
  .section {
    padding-bottom: 50px;
  }
  .section.banner {
    padding-bottom: 0;
  }
  .section.slots {
    padding-bottom: 20px;
  }
  .btn {
    line-height: 45px;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 14px;
  }
  .slots-item {
    width: 50%;
  }
  .slots-item .item__title {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .section-title {
    font-size: 35px;
  }
  .header-btns .btn {
    width: 100px;
  }
  .elements-item {
    margin-bottom: 30px;
  }
  .elements-item-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 450px){
  .header-btns .btn:nth-child(2) {
    margin-top: 5px;
  }
}
