* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  color: #0d2d3d;
}

a {
  text-decoration: none;
  background-image: linear-gradient(0deg, currentColor 0%, currentColor 100%);
  background-size: 1px 1px;
  background-position: 0 bottom;
  background-repeat: repeat-x;
}
a:hover {
  background-image: none;
}

h1,
.title_1 {
  font-weight: bold;
  font-size: 48px;
  line-height: 120%;
}
@media screen and (max-width: 1023px) {
  h1,
.title_1 {
    font-size: 36px;
  }
}

h2,
.title_2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 120%;
}
@media screen and (max-width: 1023px) {
  h2,
.title_2 {
    font-size: 30px;
  }
}

h3,
.title_3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
}

p {
  margin-bottom: 1.5em;
}

ul {
  padding-left: 30px;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}

.input {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  height: 50px;
  font-size: 18px;
  line-height: 26px;
  color: #0d2d3d;
  background: #ffffff;
  border: 2px solid #eaedee;
  border-radius: 12px;
  outline: none;
}
.input::-webkit-input-placeholder {
  color: #96999C;
}
.input:-moz-placeholder {
  color: #96999C;
}
.input::-moz-placeholder {
  color: #96999C;
}
.input:-ms-input-placeholder {
  color: #96999C;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  background: #211a5d;
  border-radius: 10px;
  border: none;
  outline: none;
  user-select: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn:hover {
  background: #6A0091;
}
.btn.v2 {
  height: 60px;
  font-size: 20px;
  background: #FD194A;
}
.btn.v2:hover {
  background: #6A0091;
}

.box_shadow_1 {
  box-shadow: 0px 20px 100px rgba(66, 42, 131, 0.5);
}

.box_shadow_2 {
  box-shadow: 0px 10px 25px rgba(66, 42, 131, 0.1);
}

.oh {
  overflow: hidden;
}

.mih100vh {
  min-height: 100vh;
}

.db\! {
  display: block !important;
}

.fw600 {
  font-weight: 600;
}

.fw500 {
  font-weight: 500;
}

.fw800 {
  font-weight: 800;
}

.wbbw {
  word-break: break-word;
}

.main_bg {
  background: url(../images/main_bg.jpg) center top/1920px no-repeat;
}
@media screen and (max-width: 1023px) {
  .main_bg {
    background-size: 2000px;
  }
}

.header {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 1023px) {
  .header {
    max-width: 542px;
  }
}
.header__wrap {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
  height: 87px;
  display: flex;
  justify-content: center;
  align-content: center;
}

.logo {
  display: flex;
  align-items: flex-start;
  background-image: none;
}
.logo__image {
  display: block;
  width: 52px;
  height: 43px;
  background: url(../images/logo_white.svg);
}
.logo__text {
  margin-left: 12px;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}
.logo.v2 .logo__image {
  background: url(../images/logo_red.svg);
}
.logo.v2 .logo__text {
  color: #FD194A;
}

.top_nav {
  display: flex;
  align-items: flex-start;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .top_nav {
    padding-top: 65px;
    flex-direction: column;
  }
}
.top_nav__wrap {
  margin-left: auto;
  overflow-y: auto;
  transition: right 0.3s;
}
@media screen and (max-width: 1023px) {
  .top_nav__wrap {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    padding: 25px;
    width: 100%;
    max-width: 250px;
    background: #090528;
  }
}
.top_nav__wrap.active {
  right: 0;
}
.top_nav__item {
  margin-right: 50px;
}
@media screen and (max-width: 1023px) {
  .top_nav__item {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.top_nav__item:last-child {
  margin-right: 0;
}
.top_nav__item.active .top_nav__item_a {
  color: rgba(255, 255, 255, 0.35);
  background: none;
}
.top_nav__item_a {
  color: #fff;
  transition: background 0.1s, color 0.1s;
}
.top_nav__item_a:hover {
  color: #8B8B8B;
  background-image: linear-gradient(0deg, #8B8B8B 0%, #8B8B8B 100%);
  background-size: 1px 1px;
  background-position: 0 bottom;
  background-repeat: repeat-x;
}
.top_nav__item_a.corner {
  position: relative;
}
.top_nav__item_a.corner:before {
  display: none;
  content: "";
  position: absolute;
  top: 8px;
  right: -21px;
  width: 12px;
  height: 14px;
  background: url(../images/corner_to_bottom.svg) 0 0/contain no-repeat;
}
@media screen and (max-width: 1023px) {
  .top_nav__item_a.corner:before {
    display: inline-block;
  }
}
.top_nav__lvl2 {
  display: none;
  list-style: none;
  padding: 0;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .top_nav__lvl2 {
    display: none !important;
  }
}
.top_nav__lvl2 .top_nav__item:not(.active) .top_nav__item_a {
  color: #FD194A !important;
}
.top_nav__lvl2 .top_nav__item:not(.active) .top_nav__item_a:hover {
  background-image: linear-gradient(0deg, #FD194A 0%, #FD194A 100%);
}
.top_nav.v2 .top_nav__item.active .top_nav__item_a {
  color: #0D2D3D;
  background-image: none;
}
@media screen and (max-width: 1023px) {
  .top_nav.v2 .top_nav__item.active .top_nav__item_a {
    color: #949494;
    background-image: linear-gradient(0deg, #949494 0%, #949494 100%);
  }
}
.top_nav.v2 .top_nav__item.active .top_nav__lvl2 .top_nav__item.active .top_nav__item_a {
  background-image: linear-gradient(0deg, #949494 0%, #949494 100%);
}
.top_nav.v2 .top_nav__item.active .top_nav__lvl2 .top_nav__item_a {
  background-image: linear-gradient(0deg, #FD194A 0%, #FD194A 100%);
}
.top_nav.v2 .top_nav__item_a {
  color: #FD194A;
  background-image: linear-gradient(0deg, #FD194A 0%, #FD194A 100%);
}
@media screen and (max-width: 1023px) {
  .top_nav.v2 .top_nav__item_a {
    color: #fff;
    background-image: linear-gradient(0deg, #fff 0%, #fff 100%);
  }
}
.top_nav.v2 .top_nav__item_a:hover {
  color: #0D2D3D;
  background-image: linear-gradient(0deg, #0D2D3D 0%, #0D2D3D 100%);
}
@media screen and (max-width: 1023px) {
  .top_nav.v2 .top_nav__item_a:hover {
    color: #fff;
  }
}

.link_1 {
  color: #fff;
  transition: background 0.15s, color 0.15s;
}
.link_1:hover {
  color: #8B8B8B;
  background-image: linear-gradient(0deg, #8B8B8B 0%, #8B8B8B 100%);
  background-size: 1px 1px;
  background-position: 0 bottom;
  background-repeat: repeat-x;
}

.link_2 {
  color: #FD194A;
  background-image: linear-gradient(0deg, #FD194A 0%, #FD194A 100%);
  background-size: 2px 2px;
}
.link_2:hover {
  color: #0D2D3D;
  background-image: linear-gradient(0deg, #0D2D3D 0%, #0D2D3D 100%);
}

.bottom_nav {
  display: flex;
  align-items: flex-start;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .bottom_nav {
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }
}
.bottom_nav__item {
  margin-right: 50px;
}
@media screen and (max-width: 1023px) {
  .bottom_nav__item {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.bottom_nav__item:last-child {
  margin-right: 0;
}
.bottom_nav__item.active .bottom_nav__item_a {
  background: none;
  color: #8B8B8B;
}
.bottom_nav__item_a {
  color: #fff;
  transition: background 0.15s, color 0.15s;
}
.bottom_nav__item_a:hover {
  color: #8B8B8B;
  background-image: linear-gradient(0deg, #8B8B8B 0%, #8B8B8B 100%);
  background-size: 1px 1px;
  background-position: 0 bottom;
  background-repeat: repeat-x;
}

.side_nav {
  list-style: none;
  padding: 0;
}
.side_nav__item {
  margin-bottom: 18px;
}
.side_nav__item.active .side_nav__item_a {
  color: #0D2D3D;
  background-image: linear-gradient(0deg, #0D2D3D 0%, #0D2D3D 100%);
}
.side_nav__item_a {
  font-weight: 500;
  font-size: 18px;
  color: #FD194A;
  background-size: 2px 2px;
}
.side_nav__item_a:hover {
  color: #0D2D3D;
  background-image: linear-gradient(0deg, #0D2D3D 0%, #0D2D3D 100%);
}

.compare_table {
  width: 100%;
  border-collapse: collapse;
}
.compare_table thead tr td {
  padding-left: 20px;
  padding-right: 20px;
  height: 63px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
  background: #211A5D;
  border-bottom: 1px solid #CCCCCC;
}
.compare_table thead tr td:nth-child(2) {
  padding-left: 0;
  padding-right: 0;
  width: 150px;
  text-align: center;
  background: #FD194A;
}
@media screen and (max-width: 1023px) {
  .compare_table thead tr td:nth-child(2) {
    width: 63px;
  }
}
.compare_table thead tr td:nth-child(3) {
  padding-left: 0;
  padding-right: 0;
  width: 150px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .compare_table thead tr td:nth-child(3) {
    width: 63px;
    font-size: 12px;
    word-break: break-all;
  }
}
.compare_table tbody tr td {
  padding-left: 20px;
  padding-right: 20px;
  height: 64px;
  font-weight: 500;
  background: #fff;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 1023px) {
  .compare_table tbody tr td {
    padding-right: 10px;
    font-size: 16px;
  }
}
.compare_table tbody tr td:nth-child(2) {
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  line-height: 150%;
  color: #A3A3A3;
  text-align: center;
  background: #FAFAFA;
}
.compare_table tbody tr td:nth-child(3) {
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  line-height: 150%;
  color: #A3A3A3;
  text-align: center;
}
.compare_table tbody tr:last-child td {
  border-bottom: none;
}

.check-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/check-icon.svg) 0 0/contain no-repeat;
}

.gamburger-icon, .gamburger-red-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: url(../images/gamburger-icon.svg) 0 0/contain no-repeat;
}

.gamburger-red-icon {
  background: url(../images/gamburger-red-icon.svg) 0 0/contain no-repeat;
}

.close-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: url(../images/close-icon.svg) 0 0/contain no-repeat;
}

.footer {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1100px;
}
@media screen and (max-width: 1023px) {
  .footer {
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.footer__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-left: 18px;
  padding-right: 18px;
  min-height: 134px;
  background: #090528;
}

.breadcrumbs {
  display: flex;
  list-style: none;
  padding: 0;
}
.breadcrumbs__li:after {
  content: "/";
  padding-left: 5px;
  padding-right: 5px;
}
.breadcrumbs__li:last-child:after {
  display: none;
}
.breadcrumbs__li_a {
  color: #0D2D3D !important;
}

.article {
  font-weight: 500;
  margin-bottom: 100px;
}
.article h1 {
  margin-bottom: 20px;
}
.article h2 {
  margin-bottom: 20px;
}
.article h3 {
  margin-bottom: 28px;
}
.article a {
  color: #FD194A;
}
.article a:hover {
  color: #0D2D3D;
  text-decoration: none;
  background-image: linear-gradient(0deg, currentColor 0%, currentColor 100%);
  background-size: 1px 1px;
  background-position: 0 bottom;
  background-repeat: repeat-x;
}
.article img {
  max-width: 100%;
  height: auto;
}

.faq {
  margin-bottom: 100px;
  font-weight: 500;
}
.faq__wrap h1 {
  margin-bottom: 72px;
}
.faq > div {
  margin-bottom: 50px;
}
.faq h3 {
  margin-bottom: 20px;
}

.flex { display: flex; }
.fdc { flex-direction: column; }
.dn { display: none; }
.posa { position: absolute; }
.t23 { top: 23px; }
.r18 { right: 18px; }
.mla { margin-left: auto; }
.aic { align-items: center; }
.jcc { justify-content: center; }
.fx\/1 { flex: 1; }
.mba { margin-bottom: auto; }
.pt87 { padding-top: 87px; }
.px18 { padding-left: 18px; padding-right: 18px; }
.pt40 { padding-top: 40px; }
.pb80 { padding-bottom: 80px; }
.tac { text-align: center; }
.fz48 { font-size: 48px; }
.lh58 { line-height: 58px; }
.mb30 { margin-bottom: 30px; }
.fz24 { font-size: 24px; }
.lh36 { line-height: 36px; }
.mb32 { margin-bottom: 32px; }
.mxa { margin-left: auto; margin-right: auto; }
.maw350 { max-width: 350px; }
.clr-fff { color: #fff; }
.mb20 { margin-bottom: 20px; }
.pt127 { padding-top: 127px; }
.maw1100 { max-width: 1100px; }
.maw828 { max-width: 828px; }
.mb47 { margin-bottom: 47px; }
.mr14 { margin-right: 14px; }
.jcsb { justify-content: space-between; }
.mt70 { margin-top: 70px; }
.mb50 { margin-bottom: 50px; }
.mb35 { margin-bottom: 35px; }
.fww { flex-wrap: wrap; }
.mx-15 { margin-left: -15px; margin-right: -15px; }
.m15 { margin: 15px; }
.maw256 { max-width: 256px; }
.bdrs10 { border-radius: 10px; }
.maw100\% { max-width: 100%; }
.px20 { padding-left: 20px; padding-right: 20px; }
.py13 { padding-top: 13px; padding-bottom: 13px; }
.bgc-fff { background-color: #fff; }
.fz18 { font-size: 18px; }
.lh27 { line-height: 27px; }
.mt15 { margin-top: 15px; }
.mb5 { margin-bottom: 5px; }
.mt10 { margin-top: 10px; }
.mt12 { margin-top: 12px; }
.ml30 { margin-left: 30px; }
.maw186 { max-width: 186px; }
.mih822 { min-height: 822px; }
.mt38 { margin-top: 38px; }
.mb100 { margin-bottom: 100px; }
.maw540 { max-width: 540px; }
.mb27 { margin-bottom: 27px; }
.mb29 { margin-bottom: 29px; }
.px62 { padding-left: 62px; padding-right: 62px; }
.py40 { padding-top: 40px; padding-bottom: 40px; }
.w100\% { width: 100%; }
.maw916 { max-width: 916px; }
.mih100 { min-height: 100px; }
.bdrs20 { border-radius: 20px; }
.mb45 { margin-bottom: 45px; }
.mr20 { margin-right: 20px; }
.maw150 { max-width: 150px; }
.mb69 { margin-bottom: 69px; }
.maw688 { max-width: 688px; }
.mb71 { margin-bottom: 71px; }
.maw920 { max-width: 920px; }
.db { display: block; }
.maw790 { max-width: 790px; }
@media screen and (max-width: 1023px) {
.sm\:db { display: block; }
.sm\:fz32 { font-size: 32px; }
.sm\:lh32 { line-height: 32px; }
.sm\:fz18 { font-size: 18px; }
.sm\:lh21 { line-height: 21px; }
.sm\:tac { text-align: center; }
.sm\:ml0 { margin-left: 0px; }
.sm\:maw542 { max-width: 542px; }
.sm\:mxa { margin-left: auto; margin-right: auto; }
.sm\:dn { display: none; }
.sm\:mb80 { margin-bottom: 80px; }
.sm\:mb19 { margin-bottom: 19px; }
.sm\:lh27 { line-height: 27px; }
.sm\:mb85 { margin-bottom: 85px; }
.sm\:px20 { padding-left: 20px; padding-right: 20px; }
.sm\:fdc { flex-direction: column; }
.sm\:mr0 { margin-right: 0px; }
.sm\:mb20 { margin-bottom: 20px; }
.sm\:maw100\% { max-width: 100%; }
.sm\:mb39 { margin-bottom: 39px; }
.sm\:mb41 { margin-bottom: 41px; }
.sm\:lh19 { line-height: 19px; }
}

@media screen and (max-width: 579px) {
.xxs\:tac { text-align: center; }
.xxs\:mt56 { margin-top: 56px; }
.xxs\:mb30 { margin-bottom: 30px; }
.xxs\:jcc { justify-content: center; }
.xxs\:maw100\% { max-width: 100%; }
}
