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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Mont, Mont Regular, sans-serif;
  color: #1a1d23;
}

body.active {
  overflow-y: hidden;
}

img {
  width: 100%;
}

a {
  color: #1a1d23;
  text-decoration: none;
}

ul {
  list-style: none;
}

button:hover {
  cursor: pointer;
}

.h2 {
  font-size: 64px;
  font-family: EuropeExtBold, EuropeExt Bold, Helvetica, sans-serif;
  text-transform: uppercase;
  line-height: 3.5rem;
}

.bl-text {
  color: #21e0d5;
}

.object-fit {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

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

header {
  width: 100%;
  padding: 15px 10px;
  background-color: #fff;
  position: fixed;
  z-index: 5;
  top: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  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 .burger-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 15;
}

header .burger-btn .burger {
  width: 100%;
  height: 2px;
  background-color: #1a1d23;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

header .burger-btn .burger::after,
header .burger-btn .burger::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1a1d23;
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

header .burger-btn .burger::before {
  top: 8px;
}

header .burger-btn .burger::after {
  bottom: 8px;
}

header .burger-btn .burger.active {
  background-color: transparent;
}

header .burger-btn .burger.active::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
}

header .burger-btn .burger.active::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #fff;
}

header .logo {
  width: 150px;
}

header .nav-bar {
  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;
  overflow: hidden;
}

header .nav-bar ul {
  display: flex;
}

header .nav-bar a {
  margin: 0 35px;
  font-size: 16px;
}

header .nav-bar_link {
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  display: inline-block;
  position: relative;
}

header .nav-bar_link:hover {
  opacity: 0.7;
}

.btn-black {
  min-width: 180px;
  padding: 15px 10px;
  color: #fff;
  font-family: EuropeExtBold, EuropeExt Bold, sans-serif;
  text-align: center;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  background-color: #1a1d23;
  -webkit-transition: 0.1s ease-in;
  -o-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
}

.btn-black:hover {
  color: #1a1d23;
  background-color: transparent;
  border-color: #1a1d23;
}

.soon {
  padding: 1px 7px;
  color: #fff;
  font-size: 12px;
  background-color: #21e0d5;
  border-radius: 5px;
  position: absolute;
  top: -15px;
  right: -30px;
}

.nav-bar_mobile {
  padding-top: 70px;
  padding-left: 30px;
  display: block;
  background-color: #1a1d23;
  width: 300px;
  height: 100%;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: fixed;
  top: 0;
  left: -350px;
}

.nav-bar_mobile nav a {
  margin-top: 15px;
  font-size: 22px;
  color: #fff;
}

.nav-bar_mobile.active {
  left: 0;
}

footer {
  margin-top: 90px;
}

footer .logo {
  width: 150px;
  margin: 0 auto;
}

footer .footer-navnar {
  margin: 0 auto;
  margin-top: 35px;
  max-width: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer .footer-navnar a {
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  display: inline-block;
  position: relative;
  font-size: 16px;
}

footer .footer-navnar a:hover {
  opacity: 0.7;
}

footer .contacts {
  margin-top: 50px;
  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;
  position: relative;
}

footer .contacts .mail {
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  font-size: 16px;
}

footer .contacts .mail:hover {
  opacity: 0.7;
}

footer .contacts .social-list {
  margin: 0;
}

footer .contacts .subscrube-form {
  position: relative;
}

footer .contacts .subscrube-form .subscrube-form-inner {
  position: relative;
}

footer .contacts .subscrube-form input {
  padding-right: 40px;
  padding-bottom: 5px;
  border: none;
  border-bottom: 1px solid #cfcfcf;
  font-size: 16px;
  outline: 0;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  font-family: Mont, Mont Regular, sans-serif;
}

footer .contacts .subscrube-form input:focus {
  border-bottom: 2px solid #1a1d23;
}

footer .contacts .subscrube-form button {
  width: 33px;
  height: 14px;
  border: none;
  outline: 0;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  background: center/contain no-repeat url(../img/transfer.webp);
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 0;
}

footer .contacts .subscrube-form button:focus,
footer .contacts .subscrube-form button:hover {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

footer .copyright {
  margin-top: 60px;
  border-top: 1px solid #cfcfcf;
  text-align: center;
  font-size: 13px;
  padding: 15px 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer .copyright > * {
  text-align: left;
  flex-grow: 1;
}

footer .copyright .Policy {
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

footer .copyright .Policy a {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
footer .copyright .Policy a:hover {
  opacity: 0.7;
}
footer .copyright .Policy a:last-child:after {
  display: none;
}

footer .copyright .Policy a:after {
  content: "|";
  margin: 0 5px;
  position: relative;
}

.social-list {
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 35px;
}

.social-list_item {
  margin: 0 17px;
  width: 25px;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.social-list_item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

@media (min-width: 800px) {
  footer .contacts .social-list {
    position: absolute;
    left: 52.5%;
    margin-left: -90px;
  }
}

@media (max-width: 1080px) {
  .copyright span {
    text-align: center;
    display: block;
    width: 100%;
  }
  footer .copyright .Policy {
    text-align: center;
    justify-content: center;
  }
  footer .copyright .Policy a {
    margin: 0 5px;
  }
}

@media (min-width: 847px) {
  header .burger-btn {
    display: none;
  }
}

@media (max-width: 1080px) {
  header .btn-black {
    padding: 15px 10px;
    min-width: 120px;
    font-size: 14px;
  }
  header {
    padding-left: 0;
    padding-right: 0;
  }
  header .nav-bar a {
    margin: 0 17px;
  }
}
@media (max-width: 970px) {
  section.main .container .left .social-list {
    display: none;
  }
}
@media (max-width: 847px) {
  header .btn-black {
    padding: 15px 10px;
    min-width: 120px;
    font-size: 14px;
  }
  header .logo {
    width: 150px;
    margin-left: 45px;
  }
  header .nav-bar nav {
    display: none;
  }

  footer .copyright .Policy {
    text-align: center;
    justify-content: center;
  }
  footer .copyright .Policy a {
    display: block;
    margin: 5px 0;
    border-top: 1px solid #eee;
    padding-top: 5px;
  }
}

@media (max-width: 400px) {
  header .btn-black {
    padding: 10px;
    min-width: 100px;
    font-size: 10px;
  }
  header .logo {
    width: 100px;
    margin-left: 45px;
  }
}

@media (max-width: 800px) {
  footer .footer-navnar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  footer .footer-navnar a {
    margin: 10px 0;
  }
  footer .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 35px;
  }
  footer .contacts .social-list {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  footer .contacts .mail {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  footer .contacts .subscrube-form {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 35px 0;
  }
  footer .copyright {
    margin-top: 45px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1040px;
  }
}

@media (max-width: 1080px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 990px) {
  .container {
    max-width: 90%;
  }
}

/* Policy style */
.header_offset {
  padding-top: 100px;
}

.policy_cont {
  padding: 50px 0;
}

.policy_cont .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.policy_cont .container .left_side {
  width: 25%;
}

.policy_cont .container .left_side ul li a {
  background-color: #f4f4f4;
  padding: 15px;
  margin-bottom: 20px;
  display: block;
}

.policy_cont .container .left_side ul li a.active {
  background-color: #509dff;
  color: #fff;
}

.policy_cont .container .right_side {
  width: 70%;
}

.policy_cont .container .h2 {
  font-size: 30px;
  padding-bottom: 30px;
}

.policy_cont .container .h4 {
  font-size: 24px;
  padding-bottom: 15px;
}

.policy_cont .container p {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 10px;
}

.policy_cont .container .line {
  padding-bottom: 50px;
}

.policy_cont .container .h5 {
  font-size: 20px;
  padding-bottom: 15px;
}

.policy_cont .container a {
  color: #509dff;
  transition: 0.5s;
  font-weight: 500;
}
.policy_cont .container a:hover {
  color: #2a5eff;
}

.policy_cont .container .right_side ul {
  padding-bottom: 15px;
  margin-left: 20px;
}

.policy_cont .container .right_side ul li {
  position: relative;
  margin-bottom: 10px;
}

.policy_cont .container .right_side ul li:last-child {
  margin-bottom: 0;
}

.policy_cont .container .right_side ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  position: absolute;
  background-color: #509dff;
  border-radius: 50%;
  left: -10px;
  top: 5px;
}

.policy_cont .container .h6 {
  font-size: 18px;
}

@media (max-width: 847px) {
  .header_offset {
    padding-top: 70px;
  }

  .policy_cont .container .left_side {
    width: 100%;
  }

  .policy_cont .container .left_side ul li a {
    padding: 10px;
    margin-bottom: 15px;
  }

  .policy_cont .container .right_side {
    width: 100%;
    margin-top: 20px;
  }

  .policy_cont .container .h2 {
    font-size: 26px;
    padding-bottom: 20px;
  }

  .policy_cont .container .h4 {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .policy_cont .container p {
    font-size: 14px;
    line-height: 20px;
  }

  .policy_cont .container .line {
    padding-bottom: 30px;
  }

  .policy_cont .container .h5 {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .policy_cont .container .right_side ul {
    padding-bottom: 10px;
    margin-left: 10px;
  }

  .policy_cont .container .right_side ul li {
    margin-bottom: 5px;
  }

  .policy_cont .container .h6 {
    font-size: 16px;
  }
}
