* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 400;
  color: #263238;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.container {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}
.regularBtn {
  display: block;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  line-height: 22px;
  font-family: Open Sans;
  font-weight: 700;
  text-decoration: none;
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}
.regularBtn.affBtn {
  color: #2672f1;
  background: #f6faff;
  border: 2px solid #2672f1;
}
.regularBtn.affBtn:hover {
  color: #ffffff;
  background: #2672f1;
  border: 2px solid #2672f1;
}
.regularBtn.affBtn:active {
  color: rgba(255, 255, 255, 0.6);
  background: #1052bf;
  border: 2px solid #1052bf;
}
.regularBtn.advBtn {
  color: #0abf91;
  background: #f6faff;
  border: 2px solid #0abf91;
}
.regularBtn.advBtn:hover {
  color: #ffffff;
  background: #0abf91;
  border: 2px solid #0abf91;
}
.regularBtn.advBtn:active {
  color: rgba(255, 255, 255, 0.6);
  background: #089772;
  border: 2px solid #089772;
}

.firstScreen {
  min-height: 100vh;
}
.headerWrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.menuWrp {
  display: flex;
}
.menu_item {
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
}
.menu_item:not(:last-of-type) {
  margin-right: 30px;
}
.headerBtnWrp {
  display: flex;
  align-items: center;
}
.loginBtn {
  font-size: 16px;
  line-height: 22px;
  padding: 8px 30px;
  border-radius: 3px;
  color: #2672f1;
  background: #f6faff;
  border: 2px solid #2672f1;
  text-transform: capitalize;
}
.loginBtn:hover {
  color: #ffffff;
  background: #2672f1;
  border: 2px solid #2672f1;
}
.loginBtn:active {
  color: rgba(255, 255, 255, 0.6);
  background: #1052bf;
  border: 2px solid #1052bf;
}

.menuBtn {
  margin-left: 20px;
  width: 25px;
  height: 18px;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.menuBtn__burger {
  width: 25px;
  height: 3px;
  background: #263238;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
}
.menuBtn__burger::before,
.menuBtn__burger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: #263238;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
}
.menuBtn__burger::before {
  transform: translateY(-7.5px);
}
.menuBtn__burger::after {
  transform: translateY(7.5px);
}
.mobileMenu {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
}
.mobileMenu_inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mobileMenu_close {
  position: absolute;
  top: 37px;
  right: 17px;
  z-index: 999999;
  cursor: pointer;
}
.mobileMenu_item {
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  color: #ffffff;
  margin: 30px 0 0 44px;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}
.hero_half1 {
  width: 50%;
}
.hero_title {
  font-weight: 700;
  font-size: 55px;
  line-height: 75px;
  position: relative;
  z-index: 2;
  margin-right: -80px;
}
.hero_subtitle {
  margin-top: 20px;
  font-size: 18px;
  line-height: 30px;
}
.hero_mobImg {
  display: none;
}
.hero_btnBlock {
  display: flex;
  max-width: 490px;
  justify-content: space-between;
  margin-top: 40px;
}
.hero_btnWrp {
  width: 100%;
  margin-right: 30px;
}
.hero_btnWrp:last-of-type {
  margin: 0;
}
.hero_btnSubtext {
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
}
.hero .regularBtn {
  font-size: 18px;
  line-height: 25px;
  padding: 16px;
}
.hero_half2 {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.hero_bgImg {
  width: 100%;
}
.siteLogo {
  width: 140px;
}

@media (max-width: 1200px) {
  .siteLogo {
    width: 140px;
  }
  .hero {
    margin-top: 50px;
  }
  .hero_title {
    font-size: 52px;
    line-height: 64px;
    margin-right: -170px;
  }
  .hero .regularBtn {
    padding: 16px;
  }
  .hero_bgImg {
    width: 95%;
  }
}
@media (max-width: 1023px) {
  .menu_item {
    font-size: 14px;
    line-height: 19px;
  }
  .loginBtn {
    font-size: 14px;
    line-height: 19px;
  }
  .hero {
    margin-top: 30px;
  }
  .hero_half1 {
    width: calc(50% - 10px);
  }
  .hero_title {
    font-size: 41px;
    line-height: 56px;
  }
  .hero_subtitle {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .hero_btnBlock {
    margin-top: 15px;
  }
  .hero_btnWrp {
    margin-right: 20px;
  }
  .hero_btnSubtext {
    font-size: 14px;
    line-height: 19px;
  }
  .hero .regularBtn {
    font-size: 16px;
    line-height: 22px;
    padding: 12.5px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  .hero{
    margin-top: 20px;
  }
  .siteLogo {
    width: 120px;
  }
  .loginBtn {
    font-size: 13px;
    line-height: 18px;
  }
  .menuWrp {
    display: none;
  }
  .menuBtn {
    display: flex;
  }
  .headerBtnWrp {
    display: flex;
  }

  .hero_half1 {
    width: 100%;
  }
  .hero_title {
    margin: 0;
    font-size: 30px;
    line-height: 41px;
  }
  .hero_mobImg {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .hero_half2 {
    display: none;
  }
  .hero_btnBlock {
    justify-content: space-between;
    margin-top: 20px;
  }
  .hero .regularBtn {
    font-size: 16px;
    line-height: 22px;
  }
}
