* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.5s;
  font-family: Gilroy;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background: #F6F6F6;
}

a {
  text-decoration: none;
  color: #fff;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

li {
  color: #000;
}

.container {
  max-width: 1290px;
  margin: 0 auto;
}

@media (max-width: 1290px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 450px;
  }
}
@media (max-width: 450px) {
  .container {
    max-width: 90vw;
  }
}
.swiper {
  max-width: 412px;
  height: 100%;
  width: 110%;
}
.swiper-wrapper {
  padding: 0 10px;
}
.swiper-button-next, .swiper-button-prev {
  width: 60px !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}
.swiper-button-prev {
  left: 0% !important;
}
.swiper-button-next {
  right: 0% !important;
}

@media (max-width: 992px) {
  .swiper-wrapper {
    padding: 0;
  }
  .swiper-button-next {
    right: 1% !important;
  }
  .swiper-button-prev {
    left: 1% !important;
  }
}
@media (max-width: 768px) {
  .swiper {
    width: 100% !important;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 35px !important;
    top: 40% !important;
  }
}
@font-face {
  font-family: "second";
  font-weight: 700;
  src: url("../fonts/GetVoIPGrotesque.woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 100;
  src: url("../fonts/gilroy/Gilroy-Thin.woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 200;
  src: url("../fonts/gilroy/Gilroy-UltraLight.woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 300;
  src: url("../fonts/gilroy/Gilroy-Light.woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  src: url("../fonts/gilroy/Gilroy-Regular.woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  src: url("../fonts/gilroy/Gilroy-Medium.woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  src: url("../fonts/gilroy/Gilroy-Semibold.woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  src: url("../fonts/gilroy/Gilroy-Bold.woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 800;
  src: url("../fonts/gilroy/Gilroy-Extrabold.woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 900;
  src: url("../fonts/gilroy/Gilroy-Black.woff");
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  position: relative;
}
.header-wrapper {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: relative;
}
.header-logo {
  width: 10%;
}
.header-nav {
  width: 70%;
}
.header-nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-nav > ul > li {
  font-size: 20px;
}
.header-nav > ul > li:hover > a {
  color: #F4DE4D;
}
.header-button {
  width: 15%;
  background: #F4DE4D;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #4F4F4F;
  padding: 15px 0;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
.header-burger-menu {
  display: none;
}

@media (max-width: 1290px) {
  .header-nav {
    width: 60%;
  }
  .header-nav > ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  .header-nav > ul > li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .header-button {
    width: 20%;
  }
}
@media (max-width: 992px) {
  .header-logo {
    width: 18%;
  }
  .header-nav > ul > li {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
  .header-logo {
    width: 25%;
  }
  .header-button {
    font-size: 10px;
    width: 45%;
  }
  .header-burger {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 30px;
    height: 30px;
  }
  .header-burger > div {
    background: #fff;
    height: 3px;
    border-radius: 20px;
    margin-bottom: 3px;
  }
  .header-burger > div:nth-child(1n) {
    width: 20%;
  }
  .header-burger > div:nth-child(2n) {
    width: 75%;
  }
  .header-burger > div {
    transition: 0.5s;
  }
  .header-burger.active > div {
    transition: 0.5s;
  }
  .header-burger.active > div:nth-child(1) {
    display: none;
  }
  .header-burger.active > div:nth-child(3) {
    display: none;
  }
  .header-burger.active > div:nth-child(5) {
    display: none;
  }
  .header-burger.active > div:nth-child(2) {
    width: 100%;
    transform: rotate(-45deg);
    margin-top: 11px;
    margin-bottom: 0px;
  }
  .header-burger.active > div:nth-child(4) {
    display: none;
  }
  .header-burger.active > div:nth-child(6) {
    width: 100%;
    transform: rotate(45deg);
    margin-top: -10px;
    margin-bottom: 9px;
  }
  .header-burger-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    color: #000;
    padding: 10px 30px;
    z-index: 999999999999;
  }
  .header-burger-menu li {
    margin-bottom: 10px;
  }
  .header-burger-menu a {
    color: #000;
  }
  .header-burger-menu.active {
    display: block;
  }
}
.hero > .container {
  padding-bottom: 200px;
}
.hero-wrapper {
  background-image: url(../img/hero-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 60px;
}
.hero-title {
  margin-top: 10vh;
  font-family: second;
  font-size: 99px;
  font-weight: 700;
  width: 40%;
  color: #fff;
  margin-bottom: 25px;
}
.hero-title > span {
  color: #F4DE4D;
  font-family: second;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.hero-subtitle {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 35px;
}
.hero-button {
  color: #4F4F4F;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 34px 0;
  letter-spacing: 4.24px;
  background: linear-gradient(268deg, rgba(255, 255, 255, 0.15) 18.53%, rgba(255, 255, 255, 0.27) 48.27%, rgba(255, 255, 255, 0) 78.01%), linear-gradient(105deg, #F4DE4D -8.1%, #F4DE4D 103.25%);
  display: block;
  width: 27%;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 1290px) {
  .hero-title {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .hero > .container {
    padding-bottom: 120px;
  }
  .hero-title {
    font-size: 66px;
    margin-bottom: 15px;
  }
  .hero-subtitle {
    font-size: 24px;
  }
  .hero-button {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .hero-title {
    width: 70%;
    font-size: 51px;
    margin-bottom: 15px;
  }
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .hero-button {
    font-size: 12px;
    width: 70%;
    padding: 15px 0;
    letter-spacing: 3.24px;
  }
}
@media (max-width: 450px) {
  .hero-title {
    width: 100%;
  }
}
.step {
  overflow: visible;
}
.step-wrapper {
  background-image: url(../img/bg-second.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 89px;
  padding-bottom: 105px;
}
.step-list-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
}
.step-list:nth-child(1) {
  width: 100%;
}
.step-list:nth-child(1) .step-item {
  width: 32%;
  position: relative;
  padding-top: 80px;
}
.step-list:nth-child(1) .step-item::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}
.step-list:nth-child(1) .step-item:nth-child(1)::before {
  background-image: url(../img/second-one.png);
}
.step-list:nth-child(1) .step-item:nth-child(2)::before {
  background-image: url(../img/second-two.png);
}
.step-list:nth-child(1) .step-item:nth-child(3)::before {
  background-image: url(../img/second-three.png);
}
.step-list:nth-child(2) .step-list-inner {
  width: 68%;
  margin-top: -8%;
}
.step-list:nth-child(2) .step-item {
  width: 48%;
  padding-top: 80px;
}
.step-list:nth-child(2) .step-item.active {
  padding-top: 0;
}
.step-list:nth-child(2) .step-item::after {
  left: 11px;
}
.step-list:nth-child(2) .step-item::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}
.step-list:nth-child(2) .step-item:nth-child(1)::before {
  background-image: url(../img/second-four.png);
}
.step-list:nth-child(2) .step-item:nth-child(2)::before {
  background-image: url(../img/second-five.png);
}
.step-list:nth-child(3) .step-list-inner {
  width: 37%;
  margin-top: -8%;
}
.step-list:nth-child(3) .step-item {
  width: 100%;
}
.step-list:nth-child(3) .step-item::after {
  display: none;
}
.step-item {
  width: 27%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 280px;
  padding-bottom: 75px;
  position: relative;
  width: 470px !important;
  height: 470px;
}
.step-item > div {
  z-index: 2;
}
.step-item.hover::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/bg-hover.svg);
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 7px;
  z-index: 0;
  background-repeat: no-repeat;
  padding: 5px;
}
.step-item.active {
  scale: 1.01;
  padding: 0;
  transform: rotateY(180deg);
  padding-top: 0 !important;
}
.step-item.active .step-item-title {
  display: none;
}
.step-item.active .step-item-button {
  display: none;
}
.step-item.active .step-item-subtitle {
  display: flex;
}
.step-item-subtitle {
  display: none;
  color: #fff;
  font-family: Gilroy;
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
  padding: 0 13%;
  position: relative;
  transform: rotateY(180deg);
  text-align: center;
}
.step-item-subtitle::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 35%;
  width: 30%;
  height: 1%;
  background: #000;
  box-shadow: 1px 1px 100px 105px #000;
  z-index: -5;
}
.step-item-title {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  max-width: 90%;
  margin-bottom: 10px;
}
.step-item-button {
  border: 3px solid #fff;
  padding: 12px 0;
  width: 50%;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
.step-item.slider {
  background-image: url(../img/second-six.png);
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-position: center;
  background-size: 90% 100%;
  background-repeat: no-repeat;
  padding-top: 119px;
  padding-bottom: 84px;
  margin: 0 auto;
  height: auto;
}
.step-slider-img {
  width: 70%;
  margin: 0 auto;
}
.step-slider-img > img {
  max-width: 267px;
  max-height: 158px;
  -o-object-fit: contain;
     object-fit: contain;
}
.step-slider-title {
  font-size: 24px;
  font-weight: 500;
  color: #141414;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.step-slider-button {
  padding: 13px 0;
  width: 50%;
  text-align: center;
  font-weight: 500;
  margin: 0 auto;
  margin-top: 30px;
  border: 3px solid #000;
}

@media (max-width: 1290px) {
  .step-item {
    padding-top: 180px;
  }
  .step-item.hover::after {
    top: 36px;
    left: -5px;
  }
  .step-list:nth-child(2) .step-item {
    padding-top: 140px;
  }
  .step-list:nth-child(2) .step-item::after {
    left: -4px;
  }
}
@media (max-width: 992px) {
  .step-wrapper {
    padding: 40px 0;
  }
  .step-list {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .step-list-inner {
    width: 133%;
  }
  .step-list:nth-child(2) .step-list-inner {
    width: 89%;
    justify-content: flex-start;
    margin: 0;
    margin-left: 10px;
  }
  .step-list:nth-child(3) .step-list-inner {
    width: 46%;
  }
  .step-list:nth-child(3) .step-item {
    background-size: contain;
    padding-top: 160px;
    padding-bottom: 145px;
  }
  .step-list:nth-child(3) .step-item.slider {
    width: 350px !important;
    padding-right: 30px;
  }
  .step-list:nth-child(3) .step-slider-img {
    width: 60%;
  }
  .step-list:nth-child(3) .step-slider-title {
    font-size: 18px;
  }
  .step-list:nth-child(3) .step-slider-button {
    margin-top: 20px;
  }
  .step-item {
    margin-right: 20px;
  }
  .step-item.hover::after {
    top: 9.5%;
  }
  .step-item-title {
    font-size: 16px;
  }
  .step-item-subtitle::after {
    box-shadow: 1px 1px 100px 45px #000;
  }
}
@media (max-width: 767px) {
  .step-list:nth-child(1) .step-list-inner {
    width: 149% !important;
  }
  .step-list:nth-child(1) > .step-item {
    width: 400px;
  }
  .step-list:nth-child(2) .step-list-inner {
    width: 100% !important;
  }
  .step-list:nth-child(2) .step-item {
    width: 400px !important;
  }
}
@media (max-width: 767px) {
  .step-wrapper {
    padding-top: 0;
  }
  .step-list-inner {
    overflow: hidden;
  }
  .step-list:nth-child(1) {
    width: 100%;
    overflow-x: scroll;
  }
  .step-list:nth-child(1) .step-item {
    padding-top: 120px;
  }
  .step-list:nth-child(1) .step-item.active {
    padding-top: 73px;
  }
  .step-list:nth-child(2) {
    width: 100%;
    margin-top: 3%;
    overflow-x: scroll;
  }
  .step-list:nth-child(2) .step-item {
    padding-top: 97px;
  }
  .step-list:nth-child(2) .step-item:nth-child(1) > .step-item-title {
    margin-bottom: 10px;
  }
  .step-list:nth-child(2) .step-item.active {
    padding-top: 18% !important;
  }
  .step-list:nth-child(3) {
    width: 280px !important;
    margin: 0 auto;
    margin-top: 10%;
    overflow-x: scroll;
  }
  .step-list:nth-child(3) .step-list-inner {
    width: 100%;
    margin-top: 0;
  }
  .step-list:nth-child(3) .step-list-inner > .swaper {
    max-width: 100%;
  }
  .step-list:nth-child(3) .step-item {
    width: 100%;
    padding-top: 25%;
    padding-bottom: 15%;
    width: 100% !important;
  }
  .step-list:nth-child(3) .step-item.slider {
    width: 280px !important;
  }
  .step-item {
    height: 320px;
  }
  .step-item-title {
    font-size: 18px;
  }
  .step-item-subtitle {
    font-size: 14px;
    padding-top: 23%;
  }
  .step-item-subtitle::after {
    height: 0;
    box-shadow: 1px 1px 100px 70px #000;
  }
  .step-item-button {
    font-size: 12px;
  }
  .step-item.slider {
    background-size: contain;
  }
  .step-item.active > .step-item-subtitle {
    padding-top: 0;
    margin-top: 0;
  }
  .step-slider-title {
    display: none;
  }
  .step-slider-button {
    font-size: 12px;
    width: 35%;
    padding: 7px 0;
  }
  .step-list:nth-child(3) {
    margin-top: 0;
  }
  .step-list:nth-child(3) .step-item.slider {
    padding-right: 0;
  }
}
@media (max-width: 450px) {
  .step-list:nth-child(1) .step-list-inner {
    width: 240% !important;
    margin-left: 10vw;
    margin-right: 7vw;
  }
  .step-list:nth-child(1) .step-item {
    width: 32% !important;
    padding-top: 80px !important;
    padding-bottom: 70px;
  }
  .step-list:nth-child(2) .step-list-inner {
    width: 165% !important;
    margin-top: 0;
    margin-left: 10vw;
    margin-right: 6vw;
  }
  .step-list:nth-child(2) .step-item {
    width: 49% !important;
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .step-list:nth-child(2) .step-item.active {
    padding-top: 28% !important;
  }
  .step-list:nth-child(3) {
    margin-top: 10%;
  }
}
.reg-wrapper {
  padding-top: 50px;
}
.reg-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.reg-item {
  padding: 20px 40px;
  box-shadow: 0px 100px 100px 0px rgba(0, 0, 0, 0.1137254902);
  display: flex;
  align-items: center;
  width: 32%;
}
.reg-item-num {
  color: #F4DE4D;
  font-size: 64px;
  font-weight: 700;
  font-family: "second";
  line-height: 9%;
  margin-right: 10px;
}
.reg-item-num > span {
  color: #939796;
  font-size: 64px;
  font-weight: 700;
  font-family: "second";
  margin-left: -15px;
}
.reg-item-title {
  font-size: 18px;
  font-weight: 500;
  width: 60%;
}
.reg-button {
  margin: 0 auto;
  margin-top: 85px;
  width: 25%;
  padding: 30px 0;
  text-transform: uppercase;
  color: #4F4F4F;
  font-weight: 700;
  background: linear-gradient(268deg, rgba(255, 255, 255, 0.15) 18.53%, rgba(255, 255, 255, 0.27) 48.27%, rgba(255, 255, 255, 0) 78.01%), linear-gradient(105deg, #F4DE4D -8.1%, #F4DE4D 103.25%);
  display: flex;
  text-align: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 1290px) {
  .reg-item-num {
    display: flex;
  }
  .reg-item-num > span {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .reg-item {
    flex-direction: column;
  }
  .reg-item-num {
    line-height: 100%;
  }
  .reg-item-title {
    width: 100%;
    text-align: center;
  }
  .reg-button {
    padding: 20px 0;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .reg-list {
    flex-direction: column;
  }
  .reg-item {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0px 23px 100px 0px rgba(0, 0, 0, 0.1137254902);
  }
  .reg-item-num {
    font-size: 40px;
  }
  .reg-item-num > span {
    font-size: 40px;
  }
  .reg-item-title {
    font-size: 14px;
    width: 100%;
  }
  .reg-item-title > br {
    display: none;
  }
  .reg-button {
    width: 100%;
    margin-top: 0;
    padding: 15px 0;
  }
}
@media (max-width: 450px) {
  .reg-item-title > br {
    display: block;
  }
}
.footer-wrapper {
  margin-top: 145px;
  background: #232425;
  padding: 17px 0;
}
.footer-wrapper > .container > .footer-mob {
  display: none;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid #747474;
}
.footer-logo {
  width: 10%;
}
.footer-nav {
  width: 70%;
}
.footer-nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  width: 20%;
  color: #DADADA;
  font-size: 16px;
}
.footer-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 37%;
}
.footer-social {
  display: flex;
  justify-content: space-between;
  width: 40%;
}
.footer-social > a {
  width: 23%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-social > a > svg {
  transition: 0.5s;
}
.footer-social > a > svg:nth-child(2) {
  display: none;
}
.footer-social > a:hover > svg:nth-child(1) {
  display: none;
  transition: 0.5s;
}
.footer-social > a:hover > svg:nth-child(2) {
  display: block;
  transition: 0.5s;
}
.footer-button {
  padding: 18px 0;
  width: 50%;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(268deg, rgba(255, 255, 255, 0.15) 3.35%, rgba(255, 255, 255, 0.27) 46.94%, rgba(255, 255, 255, 0) 90.54%), linear-gradient(105deg, #F4DE4D -8.1%, #F4DE4D 103.25%);
  cursor: pointer;
}

@media (max-width: 992px) {
  .footer-logo {
    width: 15%;
  }
  .footer-nav > ul {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .footer-nav > ul > li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .footer-copy {
    width: 40%;
  }
  .footer-button {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .footer-wrapper > .container > .footer-top, .footer-wrapper > .container > .footer-bottom {
    display: none;
  }
  .footer-wrapper > .container > .footer-mob {
    display: flex;
  }
  .footer-mob {
    display: flex;
    flex-direction: column;
  }
  .footer-nav > ul {
    display: flex;
    flex-direction: colum;
  }
  .footer-top {
    padding-bottom: 10px;
  }
  .footer-logo {
    width: 20%;
  }
  .footer-button {
    width: 60%;
    padding: 10px 0;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    width: 100%;
  }
  .footer-nav > ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-nav > ul > li {
    margin-bottom: 10px;
  }
  .footer-copy {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */