@import url("https://fonts.googleapis.com/css?family=Alegreya+Sans:400");
@font-face {
  font-family: "Graphie-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Graphie-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: "Graphie-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Graphie-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Graphie-Light";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Graphie-Light.otf") format("opentype");
}
@font-face {
  font-family: "Graphie-Book";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Graphie-Book.otf") format("opentype");
}
.font-graphie-light {
  font-family: "Graphie-Light", Helvetica;
}

.font-graphie-semibold {
  font-family: "Graphie-SemiBold", Helvetica;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
}

:root {
  --green:#3CDBC0;
  --dark-green: #00A990;
  --light-blue: #7BFFF3;
  --gray: #484848;
  --black-100: #212121;
  --black-500: #000000;
  --red: #B00020;
}

body {
  scroll-behavior: smooth;
  font-size: 20px;
  line-height: 30px;
  position: relative;
  font-family: "Graphie-Regular", Helvetica;
}

body.modal-active {
  overflow: hidden;
}

ul {
  list-style-type: none;
}
ul li {
  line-height: initial;
}

a {
  color: unset;
  text-decoration: none;
}

.heading--1 {
  font-size: 80px;
  line-height: 88px;
  letter-spacing: -0.02em;
}
.heading--2 {
  font-size: 55px;
  line-height: 60.5px;
  letter-spacing: -0.02em;
}
.heading--3 {
  font-size: 45px;
  line-height: 49.5px;
  letter-spacing: -0.02em;
}
.heading--4 {
  font-size: 22px;
  line-height: 24.2px;
  letter-spacing: -0.02em;
}
.heading--5 {
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.02em;
}
.heading--6 {
  font-size: 16px;
  line-height: 17.6px;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 1024px) {
  .heading--2 {
    font-size: 45px;
    line-height: 49.5px;
  }
  .heading--3 {
    font-size: 38px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 600px) {
  .heading--2, .heading--3 {
    font-size: 30px;
    line-height: 36px;
  }
}

.text--green {
  color: var(--green);
}
.text--black-100 {
  color: var(--black-100);
}
.text--black-500 {
  color: var(--black-500);
}

.body--20 {
  font-size: 20px;
  line-height: 30px;
}
.body--16 {
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (max-width: 600px) {
  .body--20 {
    font-size: 16px;
    line-height: 24px;
  }
}

.pointer-events-none {
  pointer-events: none;
}

.opacity-0 {
  opacity: 0;
}
.opacity-1 {
  opacity: 1;
}

.w-full {
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

img {
  width: 100%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

.mg-0-auto-70 {
  margin: 0 auto;
  width: 70%;
}

h1, h2, h3, h4, h5, h6, p, a, span {
  font-weight: unset;
}

input,
button,
select,
textarea {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}

input,
select,
textarea {
  background-clip: padding-box;
}

button {
  background-clip: padding-box;
  outline: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

button:focus,
button:hover {
  outline: none !important;
}

.btn {
  font-family: "Graphie-Regular", Helvetica;
  border: solid 1px transparent;
  border-radius: 20px;
  outline: none;
  font-size: 20px;
  line-height: 1.1;
  color: var(--black-100);
  padding: 8px 40px 8px 40px;
  cursor: pointer;
  transition: all 0.7s;
  text-align: center;
}
.btn-sm {
  font-size: 16px;
  padding-top: 11px;
  padding-bottom: 10.5px;
  padding-bottom: 10.5px;
}

.btn-dark {
  color: var(--green);
  background: var(--black-100);
}
.btn-dark:hover {
  color: var(--black-100);
  border: solid 1px var(--black-100);
  background: transparent;
}

.btn-green {
  background: var(--green);
  color: var(--black-100);
}
.btn-green:hover {
  color: var(--green);
  background: var(--black-100);
}

.footer .form-control {
  width: 100%;
  padding: 19px 20px 18px;
  border-radius: 2.24px 28px 28px 2.24px;
  background: transparent;
  border: 1px solid rgba(33, 33, 33, 0.25);
  outline: none;
  transition: all 0.5s;
  font-size: 16px;
  font-family: "Graphie-Light", Helvetica;
  color: var(--black-100);
  box-shadow: none;
}
.footer .form-control::placeholder {
  font-size: 16px;
  color: var(--black-100);
}

.contact .form-control {
  transition: all 0.5s;
  width: 100%;
  padding: 18px 30px 18px;
  border-radius: 4px 25px 25px 4px;
  font-size: 12px;
  line-height: 18px;
  font-family: "Graphie-Light", Helvetica;
  color: var(--black-100);
  background-color: rgba(33, 33, 33, 0.1);
  border: 1px solid transparent;
  cursor: default;
  outline: none;
  box-shadow: none;
}
.contact .form-control:focus, .contact .form-control:hover {
  background-color: rgba(60, 219, 192, 0.1);
  border: 1px solid var(--green);
}
.contact .form-control::placeholder {
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
}
.contact .form-control.invalid {
  border: solid 1px var(--red);
  background-color: rgba(33, 33, 33, 0.1);
}

.error {
  font-size: 12px;
  line-height: 16px;
  font-family: "Graphie-Light";
  color: var(--red);
  padding-left: 5.5px;
  display: none;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

textarea {
  resize: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("../images/icons/arrow.png");
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: 25px;
  background-size: 15px;
}
select:focus, select:hover {
  background-image: url("../images/icons/arrow-2.png");
}

/* collapse / expand */
.tab-input {
  position: absolute;
}

.tab-content {
  max-height: 0;
  -webkit-transition: max-height 0.5s;
  -o-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

/* :checked - resize to full height */
.tab input:checked ~ .tab-content {
  max-height: 300vh;
  -webkit-transition: max-height 0.75s;
  -o-transition: max-height 0.75s;
  transition: max-height 0.75s;
}

.tab label {
  position: relative;
  display: block;
  cursor: pointer;
}

/* Icon */
.tab label::after {
  position: absolute;
  right: -5.25rem;
  top: 0.65rem;
  display: block;
  width: 18px;
  height: 10px;
  line-height: 1.5;
  font-size: 1.25rem;
  text-align: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/* Icon formatting - closed */
.tab .tab-input + label::after {
  content: "";
  background: url("../images/icons/plus-square.png") no-repeat;
  background-size: contain;
}

.tab input[type=checkbox] + label::after {
  top: 0.25rem;
  right: 0rem;
}

.tab input[type=checkbox]:checked + label::after {
  top: 0.35rem;
}

/* Icon formatting - open */
.tab .tab-input:checked + label::after {
  background: url("../images/icons/close-square.png") no-repeat;
  background-size: contain;
}

.header .bk-container {
  padding: 25px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header .bk-container .bk-logo {
  width: 101.25px;
  height: 40px;
}
.header .bk-container .bk-logo img {
  width: 100%;
}
.header .bk-container .bk-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .bk-container .bk-navbar ul {
  display: flex;
}
.header .bk-container .bk-navbar ul li {
  display: inline-block;
  margin-bottom: 0 !important;
  position: relative;
}
.header .bk-container .bk-navbar ul li:hover, .header .bk-container .bk-navbar ul li.active {
  cursor: pointer;
}
.header .bk-container .bk-navbar ul li:hover::before, .header .bk-container .bk-navbar ul li.active::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  border-bottom: 2px solid var(--green);
  left: 0;
  right: 0;
  margin: auto;
  bottom: -0.6rem;
  transition: all 0.5s;
  -webkit-animation: slide-right 0.3s ease-out;
  -moz-animation: slide-right 0.3s ease-out;
}
@media only screen and (max-width: 768px) {
  .header .bk-container .bk-navbar ul li:hover::before, .header .bk-container .bk-navbar ul li.active::before {
    width: 20%;
    margin: unset;
  }
}
.header .bk-container .bk-navbar ul li a {
  font-family: "Graphie-Light";
}
.header .bk-container .bk-navbar ul li:first-child {
  margin-right: 30px;
}
.header .bk-container .bk-navbar ul li:last-child {
  margin-right: 103px;
}
.header .bk-container .bk-mobile {
  display: none;
  z-index: 100;
  z-index: 99999;
  position: fixed;
  right: 25px;
  top: 35px;
}
.header .bk-container .bk-mobile .menu-hamburger {
  color: var(--black-100);
  width: 25px;
  line-height: 25px;
  display: inline-block;
}
.header .bk-container .bk-mobile .menu-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black-100);
  transition: all 0.5s;
  margin: 5px 0;
  position: relative;
}
.header .bk-container .bk-mobile.active {
  top: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
}
.header .bk-container .bk-mobile.active .menu-hamburger {
  width: 16px;
}
.header .bk-container .bk-mobile.active .menu-hamburger span {
  height: 1px;
  background-color: var(--black-100);
}
.header .bk-container .bk-mobile.active .menu-hamburger span:first-child {
  transform: rotate(45deg);
  top: 3px;
}
.header .bk-container .bk-mobile.active .menu-hamburger span:last-child {
  transform: rotate(-45deg);
  top: -3px;
}
@media only screen and (max-width: 800px) {
  .header .bk-container .bk-navbar {
    display: none;
  }
  .header .bk-container .bk-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header.dark {
  background: var(--black-100);
}
.header.dark .bk-container .bk-navbar ul li a {
  color: #fff;
}
.header.dark .bk-container .bk-mobile:not(.active) {
  top: 25px;
}
.header.dark .bk-container .bk-mobile:not(.active) .menu-hamburger span {
  background-color: #fff;
}
@media only screen and (max-width: 800px) {
  .header.dark .bk-container {
    padding: 15px 30px 10px;
  }
}

.footer .wrapper {
  padding-top: 62px;
}
.footer .wrapper .footer-top {
  max-width: 710px;
  margin: auto;
  text-align: center;
}
.footer .wrapper .footer-top p {
  margin-bottom: 20px;
}
.footer .wrapper .footer-top h3 {
  margin-bottom: 34px;
}
.footer .wrapper .footer-top .footer-preview {
  margin-top: 46px;
  width: 100%;
}
.footer .wrapper .footer-top .footer-download {
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto 39px;
  display: grid;
  display: -ms-grid;
  grid-template-columns: auto auto;
  -ms-grid-column: auto auto;
  grid-column-gap: 30px;
}
.footer .wrapper .footer-top .footer-download img {
  width: 100%;
  max-width: 149px;
}
.footer .wrapper .footer-mid {
  max-width: 1000px;
  margin: 63px auto 65px;
}
.footer .wrapper .footer-mid .footer-logo {
  width: 101.24px;
  height: 40px;
  margin-bottom: 47px;
  display: flex;
}
.footer .wrapper .footer-mid .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .wrapper .footer-mid .flex .footer-social-media {
  max-width: 235px;
}
.footer .wrapper .footer-mid .flex .footer-social-media p {
  margin-bottom: 38px;
}
.footer .wrapper .footer-mid .flex .footer-social-media ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .wrapper .footer-mid .flex .footer-social-media ul li {
  width: 30px;
  height: 30px;
  background-color: var(--black-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.7s;
}
.footer .wrapper .footer-mid .flex .footer-social-media ul li:hover {
  opacity: 0.65;
}
.footer .wrapper .footer-mid .flex .footer-social-media ul li:not(:last-child) {
  margin-right: 10px;
}
.footer .wrapper .footer-mid .flex .footer-social-media ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .wrapper .footer-mid .flex .footer-social-media ul li img {
  width: 15px;
  max-height: 16px;
  object-fit: contain;
}
.footer .wrapper .footer-mid .flex .footer-nav ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer .wrapper .footer-mid .flex .footer-subscribe {
  max-width: 320px;
}
.footer .wrapper .footer-mid .flex .footer-subscribe p {
  margin-bottom: 37.3px;
}
.footer .wrapper .footer-mid .flex .footer-subscribe #btn-success {
  float: right;
  border-radius: 28px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  padding-top: 19px;
  padding-bottom: 18px;
  width: 100%;
  display: none;
}
.footer .wrapper .footer-mid .flex .footer-subscribe #btn-success.d-block {
  animation: btn-width 0.2s ease-in;
}
.footer .wrapper .footer-mid .flex .footer-subscribe form {
  position: relative;
}
.footer .wrapper .footer-mid .flex .footer-subscribe form .container button {
  width: auto;
  border-radius: 28px;
  position: absolute;
  top: 1px;
  right: -2px;
  padding: 20px 40px 18px;
}
.footer .wrapper .footer-mid .flex .footer-subscribe form .container .form-control {
  font-size: 12px;
  line-height: 18px;
}
.footer .wrapper .footer-bottom {
  background: var(--black-100);
  color: var(--green);
  padding: 24px 0 20px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .footer .wrapper .footer-top .footer-preview {
    max-width: 560px;
  }
  .footer .wrapper .footer-mid {
    max-width: 100%;
    margin: 0 80px 45px;
  }
}
@media only screen and (max-width: 800px) {
  .footer .wrapper .footer-mid .footer-logo {
    margin-bottom: 25px;
  }
  .footer .wrapper .footer-mid .flex {
    flex-direction: column;
  }
  .footer .wrapper .footer-mid .flex .footer-social-media,
.footer .wrapper .footer-mid .flex .footer-nav {
    margin-bottom: 35px;
  }
  .footer .wrapper .footer-mid .flex .footer-social-media {
    max-width: unset;
  }
  .footer .wrapper .footer-mid .flex .footer-social-media p {
    margin-bottom: 15px;
  }
  .footer .wrapper .footer-mid .flex .footer-nav ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  .footer .wrapper .footer-mid .flex .footer-subscribe {
    max-width: 520px;
  }
  .footer .wrapper .footer-mid .flex .footer-subscribe p {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .footer .wrapper .footer-top {
    padding: 0 30px;
  }
  .footer .wrapper .footer-top .footer-preview {
    max-width: 375px;
  }
  .footer .wrapper .footer-top .btn {
    display: block;
    width: 100%;
  }
  .footer .wrapper .footer-mid {
    max-width: 100%;
    margin: 0 30px 45px;
  }
}

.sidebar-social {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-social li {
  width: 30px;
  height: 30px;
  background-color: var(--black-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.7s;
}
.sidebar-social li:hover {
  opacity: 0.65;
}
.sidebar-social li:not(:last-child) {
  margin-right: 16px;
}
.sidebar-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-social li img {
  width: 15px;
  max-height: 16px;
  object-fit: contain;
}
.sidebar-nav {
  margin-bottom: 210.5px;
}
.sidebar-nav li {
  border-top: 1px solid #e6e6e6;
}
.sidebar-nav li a {
  padding: 24.5px 25.5px 24.5px 25px;
  font-size: 20px;
  line-height: 24px;
  font-family: "Graphie-Light";
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-nav li a svg {
  margin: 0;
}
.sidebar-nav li:last-child {
  border-bottom: 1px solid #e6e6e6;
}
.sidebar-link {
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
}
.sidebar-link a {
  font-size: 14px;
  line-height: 14px;
  font-family: "Graphie-Light";
}
.sidebar-download {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-column: 1fr 1fr;
  grid-gap: 15px;
  margin-bottom: 30px;
}
.sidebar-download a {
  display: flex;
}
.sidebar-copy-right {
  font-size: 12px;
  line-height: 12px;
  font-family: "Graphie-Light";
  text-align: center;
}
.sidebar-bottom {
  padding: 0 25px 24px;
}

.mt-30 {
  margin-top: 30px;
}

.modal-header {
  padding: 34px 25px 30.5px;
}
.modal-header .bk-logo {
  width: 101.25px;
  display: flex;
}

.modal .mask {
  position: absolute;
  top: 6rem;
  right: 1.5rem;
  z-index: -1;
  max-width: 320px;
}
@media only screen and (max-width: 500px) {
  .modal .mask {
    right: -4.5rem;
  }
}
@media only screen and (max-width: 425px) {
  .modal .mask {
    right: -5.5rem;
  }
}

#modal-sidebar .modal-content {
  padding: 0;
}

.home .bk-title {
  position: relative;
  overflow: hidden;
}
.home .bk-title .wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 190.5px 0 100px;
  overflow-x: hidden;
}
.home .bk-title .wrapper .bk-title-left {
  position: relative;
  max-width: 405px;
  z-index: 2;
}
.home .bk-title .wrapper .bk-title-left h2 {
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.home .bk-title .wrapper .bk-title-left h3 {
  margin-bottom: 40px;
}
.home .bk-title .wrapper .bk-title-left .btn {
  padding-left: 39px;
  padding-right: 37px;
}
.home .bk-title .wrapper .bk-title-left .grid {
  width: fit-content;
  width: -moz-fit-content;
  display: grid;
  display: -ms-grid;
  grid-template-columns: auto auto;
  -ms-grid-columns: auto auto;
  grid-gap: 20px;
}
.home .bk-title .img-lg {
  position: absolute;
  right: -8rem;
  top: 0;
  z-index: 1;
  width: 100%;
  max-width: 838px;
}
.home .bk-title .img-sm {
  display: none;
  width: 100%;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1440px) {
  .home .bk-title .wrapper {
    padding: 190.5px 0 68.3px;
  }
}
@media only screen and (max-width: 1280px) {
  .home .bk-title .wrapper {
    padding: 170.5px 0 68.3px;
  }
  .home .bk-title .img-lg {
    position: absolute;
    right: -12rem;
  }
}
@media only screen and (max-width: 1024px) {
  .home .bk-title .wrapper {
    max-width: 100%;
    padding: 100px 80px 68.3px;
  }
  .home .bk-title .wrapper .bk-title-left {
    max-width: 420px;
  }
  .home .bk-title .img-lg {
    max-width: 520px;
    right: -3rem;
    top: 5rem;
  }
}
@media only screen and (max-width: 800px) {
  .home .bk-title .img-lg {
    display: none;
  }
  .home .bk-title .img-sm {
    display: block;
  }
  .home .bk-title .wrapper {
    padding: 60px 80px;
  }
  .home .bk-title .wrapper .bk-title-left {
    max-width: unset;
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .home .bk-title .wrapper {
    padding: 40px 30px;
  }
  .home .bk-title .wrapper .bk-title-left .grid {
    grid-template-columns: 1fr;
    -ms-grid-column: 1fr;
    width: 100%;
  }
}
.home .bk-description .wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 160px 0 170px;
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr auto;
  -ms-grid-columns: 1fr auto;
}
.home .bk-description .wrapper .bk-description-left {
  max-width: 405px;
}
.home .bk-description .wrapper .bk-description-left h3 {
  margin-bottom: 28px;
}
.home .bk-description .wrapper .bk-description-left p {
  margin-bottom: 20px;
}
.home .bk-description .wrapper .bk-description-left p:last-child {
  margin-bottom: 42px;
}
.home .bk-description .wrapper .bk-description-left .btn {
  padding-left: 71px;
  padding-right: 70px;
}
.home .bk-description .wrapper .bk-description-right {
  position: relative;
}
.home .bk-description .wrapper .bk-description-right img {
  width: 100%;
}
.home .bk-description .wrapper .bk-description-right .mask {
  position: absolute;
  right: -4.2rem;
  top: 35%;
}
@media only screen and (max-width: 1024px) {
  .home .bk-description .wrapper {
    max-width: 100%;
    padding: 70px 80px 120px;
    grid-template-columns: 1fr 1fr;
    -ms-grid-column: 1fr 1fr;
    grid-gap: 60px;
  }
  .home .bk-description .wrapper .bk-description-right .mask {
    right: -3.2rem;
    top: 25%;
    max-width: 100px;
  }
}
@media only screen and (max-width: 800px) {
  .home .bk-description .wrapper {
    padding: 50px 80px 100px;
    grid-template-columns: 1fr;
    -ms-grid-column: 1fr;
  }
  .home .bk-description .wrapper .bk-description-left {
    max-width: unset;
  }
  .home .bk-description .wrapper .bk-description-right .mask {
    right: -4.2rem;
    top: 56%;
    max-width: unset;
  }
}
@media only screen and (max-width: 600px) {
  .home .bk-description .wrapper {
    padding: 50px 30px 100px;
  }
  .home .bk-description .wrapper .bk-description-right {
    max-width: 300px;
  }
  .home .bk-description .wrapper .bk-description-right .mask {
    right: -2.5rem;
    top: 58%;
    max-width: 80px;
  }
  .home .bk-description .wrapper .bk-description-left .btn {
    display: block;
    width: 100%;
  }
}
.home .bk-slide .wrapper {
  padding: 0 0 79px 24rem;
  position: relative;
}
.home .bk-slide .wrapper .dots {
  margin-bottom: 20px;
}
.home .bk-slide .wrapper .dots .dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  background-color: var(--black-100);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.home .bk-slide .wrapper .dots .dot:not(:last-child) {
  margin-right: 12px;
}
.home .bk-slide .wrapper .dots .dot.active {
  background-color: var(--green);
}
.home .bk-slide .wrapper .mySlides {
  display: grid;
  grid-template-columns: auto 1fr;
  -ms-grid-column: auto 1fr;
  grid-gap: 190px;
}
.home .bk-slide .wrapper .bk-slide-left {
  position: relative;
  max-width: 569px;
}
.home .bk-slide .wrapper .bk-slide-left img {
  width: 100%;
}
.home .bk-slide .wrapper .bk-slide-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home .bk-slide .wrapper .bk-slide-right h3, .home .bk-slide .wrapper .bk-slide-right p {
  margin-bottom: 20px;
}
.home .bk-slide .wrapper .bk-slide-right .btn {
  width: 235px;
}
.home .bk-slide .wrapper .bk-slide-right h3.first {
  max-width: 339px;
}
.home .bk-slide .wrapper .bk-slide-right h3.second {
  max-width: 344px;
}
.home .bk-slide .wrapper .bk-slide-right h3.third {
  max-width: 320px;
}
.home .bk-slide .wrapper .bk-slide-right p {
  max-width: 320px;
}
@media only screen and (max-width: 1680px) {
  .home .bk-slide .wrapper {
    padding: 0 0 79px 16rem;
  }
}
@media only screen and (max-width: 1536px) {
  .home .bk-slide .wrapper {
    padding: 0 0 79px 141px;
  }
}
@media only screen and (max-width: 1024px) {
  .home .bk-slide .wrapper {
    padding: 0 0 79px 50px;
  }
  .home .bk-slide .wrapper .bk-slide-left {
    max-width: 425px;
  }
  .home .bk-slide .wrapper .mySlides {
    grid-gap: 80px;
  }
}
@media only screen and (max-width: 800px) {
  .home .bk-slide .wrapper {
    padding: 0 80px 50px;
  }
  .home .bk-slide .wrapper .mySlides {
    grid-template-columns: 1fr;
    -ms-grid-column: 1fr;
  }
  .home .bk-slide .wrapper .bk-slide-right {
    max-width: unset;
    grid-row-start: 1;
  }
}
@media only screen and (max-width: 600px) {
  .home .bk-slide .wrapper {
    padding: 0 30px 50px;
  }
  .home .bk-slide .wrapper .bk-slide-right h3 {
    max-width: 100% !important;
  }
  .home .bk-slide .wrapper .bk-slide-right .btn {
    width: 100%;
    display: block;
  }
}
.home .bk-functions {
  background-color: var(--black-100);
}
.home .bk-functions .wrapper {
  max-width: 1003px;
  margin: auto;
  padding: 87px 0;
}
.home .bk-functions .wrapper .content {
  color: #fff;
  text-align: right;
}
.home .bk-functions .wrapper .content h6 {
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 24.2px;
  margin-bottom: 11px;
}
.home .bk-functions .wrapper .icon {
  margin-top: 5px;
  max-width: 33px;
}
.home .bk-functions .wrapper .grid {
  width: fit-content;
  width: -moz-fit-content;
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-columns: 1fr auto 1fr;
  grid-gap: 30px;
}
.home .bk-functions .wrapper .grid .column:not(.column-2) {
  max-width: 292px;
}
.home .bk-functions .wrapper .grid .column:not(.column-2) .item {
  display: flex;
  opacity: 0.2;
  transition: all 0.4s;
  cursor: pointer;
  width: 292px;
}
.home .bk-functions .wrapper .grid .column:not(.column-2) .item:hover, .home .bk-functions .wrapper .grid .column:not(.column-2) .item.active {
  opacity: 1;
}
.home .bk-functions .wrapper .grid .column:not(.column-2) .item:not(:last-child) {
  margin-bottom: 80px;
}
.home .bk-functions .wrapper .grid .column-2 {
  max-width: 358px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .bk-functions .wrapper .grid .column-2 img {
  width: 100%;
}
.home .bk-functions .wrapper .grid .column-1 .item .content {
  margin-right: 24px;
}
.home .bk-functions .wrapper .grid .column-3 .item {
  flex-direction: row-reverse;
}
.home .bk-functions .wrapper .grid .column-3 .item .content {
  text-align: left !important;
}
.home .bk-functions .wrapper .grid .column-3 .item .icon {
  margin-right: 24px;
}
.home .bk-functions .wrapper .grid .column-3 .item:nth-child(1), .home .bk-functions .wrapper .grid .column-3 .item:nth-child(2) {
  margin-bottom: 56px !important;
}
.home .bk-functions .wrapper .bk-functions-line {
  margin: 42px 0 47px;
  width: 100%;
  height: 0px;
  background: transparent;
  border-bottom: 3px solid rgba(255, 255, 255, 0.25);
  position: relative;
}
.home .bk-functions .wrapper .bk-functions-line::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 23%;
  background: transparent;
  border-bottom: 3px solid var(--green);
}
.home .bk-functions .wrapper .bk-functions-slide {
  text-align: center;
  display: none;
}
.home .bk-functions .wrapper .bk-functions-slide #bk-function-img-mb {
  max-width: 320px;
}
.home .bk-functions .wrapper .bk-functions-slide .item {
  display: none;
  margin-bottom: 20px;
}
.home .bk-functions .wrapper .bk-functions-slide .item .content {
  text-align: center;
}
@media only screen and (max-width: 800px) and (min-width: 601px) {
  .home .bk-functions .wrapper .bk-functions-slide .item .content h6 {
    font-size: 34px;
    line-height: 40px;
  }
  .home .bk-functions .wrapper .bk-functions-slide .item .content p {
    font-size: 24px;
    line-height: 32px;
  }
}
.home .bk-functions .wrapper .bk-functions-slide .bk-functions-slide-nav {
  position: relative;
  max-width: 120px;
  margin: auto;
}
.home .bk-functions .wrapper .bk-functions-slide .bk-functions-slide-nav .arrow {
  position: absolute;
}
.home .bk-functions .wrapper .bk-functions-slide .bk-functions-slide-nav .arrow.left {
  left: 0;
}
.home .bk-functions .wrapper .bk-functions-slide .bk-functions-slide-nav .arrow.right {
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .home .bk-functions .wrapper {
    max-width: 100%;
    padding: 60px 80px;
  }
}
@media only screen and (max-width: 800px) {
  .home .bk-functions .wrapper .bk-functions-slide {
    display: block;
  }
  .home .bk-functions .wrapper .grid {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .home .bk-functions .wrapper {
    padding: 60px 30px;
  }
}
.home .bk-build {
  background-color: var(--black-100);
}
.home .bk-build .wrapper {
  padding: 163px 0 157px;
}
.home .bk-build .wrapper .grid {
  width: fit-content;
  width: -moz-fit-content;
  margin: auto;
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr auto;
  -ms-grid-columns: 1fr auto;
  grid-gap: 105px;
}
.home .bk-build .wrapper .bk-build-left {
  color: #fff;
  max-width: 405px;
  padding-top: 81px;
}
.home .bk-build .wrapper .bk-build-left h3 {
  margin-bottom: 20px;
}
.home .bk-build .wrapper .bk-build-left p {
  margin-bottom: 42px;
}
.home .bk-build .wrapper .bk-build-right {
  max-width: 490px;
  position: relative;
}
.home .bk-build .wrapper .bk-build-right img {
  width: 100%;
}
.home .bk-build .wrapper .bk-build-right .mask {
  transform: rotate(180deg);
  position: absolute;
  right: -4.6rem;
  top: 37%;
}
@media only screen and (max-width: 1024px) {
  .home .bk-build .wrapper {
    max-width: 100%;
    padding: 120px 80px 110px;
  }
  .home .bk-build .wrapper .grid {
    grid-template-columns: 1fr 1fr;
    -ms-grid-column: 1fr 1fr;
    grid-gap: 80px;
  }
  .home .bk-build .wrapper .grid .bk-build-left {
    padding-top: 40px;
  }
  .home .bk-build .wrapper .grid .bk-build-right .mask {
    right: -3.2rem;
    top: 42%;
    max-width: 100px;
  }
}
@media only screen and (max-width: 800px) {
  .home .bk-build .wrapper .grid {
    grid-template-columns: 1fr;
    -ms-grid-column: 1fr;
  }
  .home .bk-build .wrapper .grid .bk-build-left {
    padding-top: 0;
    max-width: unset;
  }
  .home .bk-build .wrapper .grid .bk-build-right .mask {
    top: 56%;
  }
}
@media only screen and (max-width: 600px) {
  .home .bk-build .wrapper {
    padding: 60px 30px 88px;
  }
  .home .bk-build .wrapper .grid {
    grid-gap: 40px;
  }
  .home .bk-build .wrapper .grid .bk-build-right {
    max-width: 300px;
  }
  .home .bk-build .wrapper .grid .bk-build-right .mask {
    right: -2.6rem;
    top: 45%;
    max-width: 80px;
  }
  .home .bk-build .wrapper .grid .bk-build-left .btn {
    display: block;
    width: 100%;
  }
}
.home .bk-pricing .wrapper {
  padding: 125px 0 0;
  width: fit-content;
  width: -moz-fit-content;
  margin: auto;
}
.home .bk-pricing .wrapper .bk-pricing-top {
  text-align: center;
}
.home .bk-pricing .wrapper .bk-pricing-top h3 {
  margin-bottom: 24px;
}
.home .bk-pricing .wrapper .bk-pricing-top p {
  margin-bottom: 41px;
}
.home .bk-pricing .wrapper .bk-pricing-mid .toggle-btn {
  margin-bottom: 63px;
  position: relative;
  display: flex;
  justify-content: center;
}
.home .bk-pricing .wrapper .bk-pricing-mid .toggle-btn .item {
  border-radius: 30px;
  color: var(--black-100);
  padding: 14px 0 10px;
  z-index: 0;
  transition: all 0.5s;
  background: #ECECEC;
  cursor: pointer;
  width: 235px;
  text-align: center;
}
.home .bk-pricing .wrapper .bk-pricing-mid .toggle-btn .item:not(:first-child) {
  margin-left: -3rem;
}
.home .bk-pricing .wrapper .bk-pricing-mid .toggle-btn .item.active {
  background: var(--green);
  z-index: 3;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid {
  margin-bottom: 30.8px;
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: 235px 235px 235px;
  grid-template-columns: 235px 235px 235px;
  grid-gap: 63px;
  width: fit-content;
  width: -moz-fit-content;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid .column {
  padding: 50px 30px 51.7px;
  background: #ECECEC;
  border-radius: 20px;
  text-align: center;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid .column .rounded-icon {
  background: var(--black-500);
  width: 128px;
  height: 128px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 30px;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid .column h4 {
  margin-bottom: 33px;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid.lg {
  grid-column-gap: 20px;
  grid-template-columns: 320px 320px 320px;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid.lg .column {
  padding: 50px 28px 33px;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid.lg .column h4 {
  margin-bottom: 20px;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid.lg .column .span {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 7px;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid.lg .column .span .digit {
  font-size: 45px;
  line-height: 45px;
  letter-spacing: -0.02em;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid.lg .column > span {
  display: block;
}
.home .bk-pricing .wrapper .bk-pricing-mid .grid.lg .column .mb-5px {
  margin-bottom: 5px;
}
.home .bk-pricing .wrapper .bk-pricing-mid .pricing {
  border-top: solid 2px rgba(33, 33, 33, 0.25);
  border-bottom: solid 2px rgba(33, 33, 33, 0.25);
  padding: 34.5px 0 24px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
}
.home .bk-pricing .wrapper .bk-pricing-mid .pricing .digit {
  font-size: 45px;
  line-height: 18px;
  letter-spacing: -0.02em;
}
.home .bk-pricing .wrapper .bk-pricing-bottom {
  width: 100%;
  text-align: center;
  margin: 56px auto 0;
}
.home .bk-pricing .wrapper .bk-pricing-bottom h3 {
  margin-bottom: 12px;
}
.home .bk-pricing .wrapper .bk-pricing-bottom p:not(.last) {
  margin-bottom: 16px;
}
.home .bk-pricing .wrapper .bk-pricing-bottom .grid {
  width: fit-content;
  width: -moz-fit-content;
  margin: 28px auto 0;
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: 235px 235px;
  grid-template-columns: 235px 235px;
  grid-gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .home .bk-pricing .wrapper {
    padding: 85px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .home .bk-pricing .wrapper .bk-pricing-mid .grid {
    grid-template-columns: 1fr !important;
    -ms-grid-column: 1fr !important;
    width: fit-content !important;
    width: -moz-fit-content !important;
    margin: auto !important;
    grid-gap: 20px;
  }
  .home .bk-pricing .wrapper .bk-pricing-mid .grid .column {
    max-width: 295px !important;
  }
  .home .bk-pricing .wrapper .bk-pricing-mid .pricing {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .home .bk-pricing .wrapper {
    padding: 50px 0 0;
  }
  .home .bk-pricing .wrapper .bk-pricing-top, .home .bk-pricing .wrapper .bk-pricing-bottom {
    padding: 0 30px;
  }
  .home .bk-pricing .wrapper .bk-pricing-mid .toggle-btn .item {
    width: 170px;
  }
  .home .bk-pricing .wrapper .bk-pricing-bottom .grid {
    grid-template-columns: 1fr;
    -ms-grid-column: 1fr;
    width: 100%;
  }
}
.home .bk-testimonial {
  background-color: var(--black-100);
}
.home .bk-testimonial .wrapper {
  padding: 111px 92px 90px;
  position: relative;
}
.home .bk-testimonial .wrapper .item {
  display: none;
  max-width: 660px;
  color: #fff;
  margin: auto;
  text-align: center;
}
.home .bk-testimonial .wrapper .item h3 {
  margin-bottom: 20px;
}
.home .bk-testimonial .wrapper .item img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto 20px;
}
.home .bk-testimonial .wrapper .item h4 {
  margin-bottom: 5px;
}
.home .bk-testimonial .wrapper .arrow {
  position: absolute;
  top: 45%;
  cursor: pointer;
  transition: all 0.5s;
}
.home .bk-testimonial .wrapper .arrow.left {
  left: 92px;
}
.home .bk-testimonial .wrapper .arrow.right {
  right: 92px;
}
.home .bk-testimonial .wrapper .arrow:hover {
  opacity: 0.25;
}
@media only screen and (max-width: 800px) {
  .home .bk-testimonial .wrapper {
    padding: 71px 80px 50px;
  }
  .home .bk-testimonial .wrapper .item {
    max-width: 100%;
    padding: 0 4rem;
  }
  .home .bk-testimonial .wrapper .item h3 {
    font-size: 22px;
    line-height: 28.2px;
  }
  .home .bk-testimonial .wrapper .item h4 {
    font-size: 18px;
    line-height: initial;
  }
  .home .bk-testimonial .wrapper .arrow.left {
    left: 80px;
  }
  .home .bk-testimonial .wrapper .arrow.right {
    right: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .home .bk-testimonial .wrapper {
    padding: 50px 30px 30px;
  }
  .home .bk-testimonial .wrapper .item {
    padding: 0 2rem;
  }
  .home .bk-testimonial .wrapper .arrow.left {
    left: 30px;
  }
  .home .bk-testimonial .wrapper .arrow.right {
    right: 30px;
  }
}

.about .bk-about {
  padding-top: 10px;
  background: var(--black-100);
}
.about .bk-about .wrapper {
  max-width: 1380px;
  margin: auto;
  background: var(--gray);
  padding: 93px 0 87px;
}
.about .bk-about .wrapper .grid {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 491px auto;
  -ms-grid-column: 491px auto;
  width: fit-content;
  width: -moz-fit-content;
  margin: auto;
  grid-gap: 20px;
}
.about .bk-about .wrapper .grid .bk-about-left {
  color: #fff;
  max-width: 406px;
}
.about .bk-about .wrapper .grid .bk-about-left h2 {
  margin-bottom: 20px;
}
.about .bk-about .wrapper .grid .bk-about-right {
  position: relative;
  max-width: 490px;
}
.about .bk-about .wrapper .grid .bk-about-right img {
  width: 100%;
}
.about .bk-about .wrapper .grid .bk-about-right .mask {
  position: absolute;
  right: -2.9rem;
  top: 20%;
}
@media only screen and (max-width: 1024px) {
  .about .bk-about .wrapper {
    padding: 93px 80px 87px;
  }
}
@media only screen and (max-width: 800px) {
  .about .bk-about .wrapper .grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .about .bk-about .wrapper .grid .bk-about-left {
    max-width: unset;
  }
}
@media only screen and (max-width: 600px) {
  .about .bk-about .wrapper {
    padding: 60px 30px 50px;
  }
  .about .bk-about .wrapper .grid .bk-about-right {
    max-width: 300px;
  }
  .about .bk-about .wrapper .grid .bk-about-right .mask {
    max-width: 50px;
    right: -1.5rem;
    top: 22%;
  }
}
.about .bk-description {
  background: var(--black-100);
}
.about .bk-description .wrapper {
  padding: 201px 0 160px;
  max-width: 1000px;
  margin: auto;
}
.about .bk-description .wrapper h3 {
  color: #fff;
  max-width: 830px;
  margin: 0 auto 219px;
  text-align: center;
}
.about .bk-description .wrapper .grid {
  display: grid;
  display: -ms-grid;
  grid-template-columns: auto 405px;
  -ms-grid-column: auto 405px;
  width: fit-content;
  width: -moz-fit-content;
  margin: auto;
  grid-gap: 105px;
}
.about .bk-description .wrapper .grid .bk-description-right {
  color: #fff;
  padding-top: 4rem;
}
.about .bk-description .wrapper .grid .bk-description-left {
  position: relative;
  max-width: 490px;
}
.about .bk-description .wrapper .grid .bk-description-left svg {
  position: absolute;
  bottom: 0;
  left: -83px;
}
@media only screen and (max-width: 1024px) {
  .about .bk-description .wrapper {
    padding: 120px 80px 100px;
  }
  .about .bk-description .wrapper h3 {
    margin-bottom: 100px;
  }
  .about .bk-description .wrapper .grid {
    grid-gap: 60px;
  }
}
@media only screen and (max-width: 800px) {
  .about .bk-description .wrapper {
    padding: 100px 80px 80px;
  }
  .about .bk-description .wrapper .grid {
    grid-template-columns: 1fr;
  }
  .about .bk-description .wrapper .grid .bk-description-left svg {
    left: unset;
    right: 0;
  }
  .about .bk-description .wrapper .grid .bk-description-right {
    padding-top: 0;
  }
}
@media only screen and (max-width: 600px) {
  .about .bk-description .wrapper {
    padding: 80px 30px 40px;
  }
  .about .bk-description .wrapper h3 {
    margin-bottom: 60px;
    font-size: 22px;
    line-height: 30px;
  }
}
.about .bk-preview {
  background-color: var(--black-100);
}
.about .bk-benefits {
  background-color: var(--black-100);
}
.about .bk-benefits .wrapper {
  padding: 160px 0 190px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.about .bk-benefits .wrapper > h3 {
  margin-bottom: 20px;
  color: #fff;
}
.about .bk-benefits .wrapper > p {
  max-width: 660px;
  margin: 0 auto 60px;
  color: #fff;
}
.about .bk-benefits .wrapper .grid {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-column: 1fr 1fr 1fr 1fr;
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
  grid-gap: 20px;
}
.about .bk-benefits .wrapper .grid .column {
  padding: 61px 30px 32px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
}
.about .bk-benefits .wrapper .grid .column .rounded-icon {
  background: var(--black-500);
  width: 128px;
  height: 128px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 30px;
}
.about .bk-benefits .wrapper .grid .column h4 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .about .bk-benefits .wrapper {
    padding: 120px 0 150px;
  }
  .about .bk-benefits .wrapper > h3 {
    margin-bottom: 20px;
  }
  .about .bk-benefits .wrapper > p {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 800px) {
  .about .bk-benefits .wrapper {
    padding: 100px 80px 120px;
  }
  .about .bk-benefits .wrapper .grid {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .about .bk-benefits .wrapper {
    padding: 80px 30px 100px;
  }
}
@media only screen and (max-width: 500px) {
  .about .bk-benefits .wrapper .grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}

.contact .wrapper {
  padding: 166px 0 141px;
  max-width: 1001px;
  margin: auto;
}
.contact .wrapper .grid {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 406px 490px;
  -ms-grid-column: 406px 490px;
  grid-gap: 105px;
}
.contact .wrapper .grid .contact-left h2 {
  margin-bottom: 31px;
}
.contact .wrapper .grid .contact-left p {
  max-width: 321px;
}
.contact .wrapper .grid .contact-right .grid {
  display: grid;
  display: -ms-grid;
  grid-gap: 20px;
  margin-bottom: 20px;
}
.contact .wrapper .grid .contact-right .grid.grid-1 {
  grid-template-columns: 1fr;
  -ms-grid-column: 1fr;
}
.contact .wrapper .grid .contact-right .grid.grid-1 .column {
  max-width: 490px;
}
.contact .wrapper .grid .contact-right .grid.grid-2 {
  grid-template-columns: 235px 235px;
  -ms-grid-column: 235px 235px;
}
.contact .wrapper .grid .contact-right .grid.grid-2 .column {
  max-width: 235px;
}
@media only screen and (max-width: 1024px) {
  .contact .wrapper {
    max-width: 100%;
    padding: 60px 80px 50px;
  }
  .contact .wrapper .grid {
    grid-template-columns: 1fr;
    -ms-grid-column: 1fr;
    grid-gap: 50px;
  }
  .contact .wrapper .grid .contact-right {
    max-width: 490px;
  }
}
@media only screen and (max-width: 600px) {
  .contact .wrapper {
    max-width: 100%;
    padding: 40px 30px 0;
  }
  .contact .wrapper .grid {
    grid-template-columns: 1fr;
    -ms-grid-column: 1fr;
    grid-gap: 30px;
  }
  .contact .wrapper .grid .contact-left h2 {
    margin-bottom: 10px;
  }
  .contact .wrapper .grid .contact-right .grid-2 {
    grid-template-columns: 1fr !important;
    -ms-grid-column: 1fr !important;
  }
  .contact .wrapper .grid .contact-right .grid .column {
    max-width: 100% !important;
  }
  .contact .wrapper .grid .contact-right .btn {
    width: 100%;
  }
}

.thank-you {
  height: calc(100vh - 90px);
  overflow: hidden;
}
.thank-you .wrapper {
  max-width: 830px;
  margin: auto;
  text-align: center;
}
.thank-you .wrapper.sm {
  padding-top: 60px;
}
.thank-you .wrapper.lg {
  padding: 121px 30px 0;
}
.thank-you .wrapper h2 {
  margin-bottom: 20px;
}
.thank-you .wrapper .grid {
  display: grid;
  display: -ms-grid;
  grid-gap: 20px;
  width: fit-content;
  width: -moz-fit-content;
}
.thank-you .wrapper .grid.grid-1 {
  margin: 20px auto 0;
  grid-template-columns: 150px;
  -ms-grid-column: 150px;
}
.thank-you .wrapper .grid.grid-2 {
  margin: 37px auto 0;
  grid-template-columns: 150px 150px;
  -ms-grid-column: 150px 150px;
}
.thank-you .wrapper .grid .btn {
  padding-left: 0;
  padding-right: 0;
}

.privacy .wrapper {
  max-width: 1000px;
  margin: 80px auto 191px;
  text-align: center;
}
.privacy .wrapper h2 {
  margin-bottom: 80px;
}
.privacy .wrapper .bk-content .tab {
  padding: 27px 46.5px 27px 50px;
  border-radius: 4px 40px 40px 4px;
  background-color: rgba(35, 35, 35, 0.1);
  text-align: left;
  margin-bottom: 30px;
}
.privacy .wrapper .bk-content .tab label::after {
  top: 0.15rem;
  right: 0;
  width: 20px;
  height: 20px;
}
.privacy .wrapper .bk-content .tab label h1 {
  padding-right: 20px;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--black-100);
}
.privacy .wrapper .bk-content .tab .tab-content {
  max-width: 800px;
  overflow: hidden;
}
.privacy .wrapper .bk-content .tab .tab-content ul {
  margin-left: 30px;
  list-style: lower-alpha;
}
.privacy .wrapper .bk-content .tab .tab-content ul li {
  padding-left: 40px;
}
.privacy .wrapper .bk-content .tab .tab-content ul li span {
  display: inline-block;
  width: 70px;
}
.privacy .wrapper .bk-content .tab .tab-content p, .privacy .wrapper .bk-content .tab .tab-content li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}
.privacy .wrapper .bk-content .tab .tab-content p:last-child, .privacy .wrapper .bk-content .tab .tab-content li:last-child {
  margin-bottom: 15px;
}
.privacy .wrapper .bk-content .tab .tab-content p:first-child {
  margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .privacy .wrapper {
    max-width: 100%;
    padding: 0 80px;
  }
  .privacy .wrapper h2 {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .privacy .wrapper {
    margin: 40px auto 60px;
    padding: 0 30px;
  }
  .privacy .wrapper h2 {
    margin-bottom: 50px;
  }
  .privacy .wrapper .bk-content .tab {
    padding: 27px 30px 27px 30px;
  }
  .privacy .wrapper .bk-content .tab label h1 {
    font-size: 18px;
    line-height: 22px;
    padding-right: 26px;
  }
  .privacy .wrapper .bk-content .tab .tab-content ul li {
    padding-left: 20px;
  }
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slide-right {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    opacity: 0.5;
    width: 25%;
  }
  100% {
    opacity: 1;
    width: 50%;
  }
}
@keyframes btn-width {
  0% {
    width: 52%;
  }
  70% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

/* custom modal left /right side */
.modal-active::before {
  position: fixed;
  content: "";
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0.35;
  z-index: 3;
  top: 0;
}

.modal {
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  position: fixed;
  transition: opacity 0.25s ease;
}
.modal.modal-error {
  top: 2rem;
  right: 2rem;
  height: unset;
  z-index: 99999;
}
@media only screen and (max-width: 500px) {
  .modal.modal-error {
    right: 1rem;
  }
}
.modal.modal-error .modal-close {
  z-index: 9;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s;
}
.modal.modal-error .modal-close:hover {
  background: #ECECEC;
}
.modal.modal-error .modal-close:hover svg {
  stroke: #fff !important;
}
.modal.modal-error .modal-container {
  width: 100%;
  max-width: 280px;
  padding: 2rem 1.5rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 20px;
  position: fixed;
}
.modal.modal-error .modal-header {
  display: flex;
  align-items: center;
  padding: 0;
}
.modal.modal-error .modal-header svg {
  margin-right: 15px;
}
.modal.modal-error .modal-content {
  margin-top: 10px;
}
.modal.left .modal-container, .modal.right .modal-container {
  position: fixed;
  margin: auto;
  height: 100%;
  width: 100%;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal.left .modal-content, .modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
  border-radius: 0;
  padding: 2rem 2rem;
}
.modal.left .modal-body, .modal.right .modal-body {
  padding: 15px 15px 80px;
}
.modal .modal-container {
  transition: width 1s ease;
}

.modal-body.scroll {
  overflow-x: hidden;
  height: calc(100vh - 200px);
  overflow-y: auto;
  padding-bottom: 0 !important;
}

/*Right*/
.modal.right.fade .modal-dialog {
  right: -320px;
}

.modal.right.fade.show .modal-dialog {
  right: 0;
}

.opacity-0 {
  display: none;
}

.h-100vh {
  height: 100vh;
}

.loading {
  background-color: white;
  height: 5px;
  margin-top: 18px;
  overflow: hidden;
  position: relative;
  width: 120px;
  border-radius: 25px;
}

.loading-bar {
  animation: side2side 2s ease-in-out infinite;
  background-color: var(--green);
  height: 100%;
  position: absolute;
  width: 50%;
  border-radius: 25px;
}

@keyframes side2side {
  0%, 100% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(150%);
  }
}
.center {
  left: 50%;
  margin: 0;
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
}

.overlay-loading {
  z-index: 8;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-item {
  position: absolute;
  top: 50%;
  left: 48%;
  z-index: 20;
}

.d-flex {
  display: flex;
}

/*# sourceMappingURL=style.css.map */
