:root {
    --noto-font-family: 'Noto Sans Georgian';
    --firago-font-family: 'FiraGo';
    --body-color: #364152;
    --primary-blue: #2E90FA;
    --primary-blue-text: #1570EF;
    --primary-grey: #4B5565;
}

@font-face {
    font-family: 'Noto Sans Georgian';
    src: url('/fronts/assets/fonts/NotoSansGeorgian-Regular.eot');
    src: url('/fronts/assets/fonts/NotoSansGeorgian-Regular.eot?#iefix') format('embedded-opentype'),
        url('/fronts/assets/fonts/NotoSansGeorgian-Regular.woff2') format('woff2'),
        url('/fronts/assets/fonts/NotoSansGeorgian-Regular.woff') format('woff'),
        url('/fronts/assets/fonts/NotoSansGeorgian-Regular.ttf') format('truetype'),
        url('/fronts/assets/fonts/NotoSansGeorgian-Regular.svg#NotoSansGeorgian-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FiraGo';
    src: url('/fronts/assets/fonts/FiraGO-Regular.eot');
    src: url('/fronts/assets/fonts/FiraGO-Regular.eot?#iefix') format('embedded-opentype'),
        url('/fronts/assets/fonts/FiraGO-Regular.woff2') format('woff2'),
        url('/fronts/assets/fonts/FiraGO-Regular.woff') format('woff'),
        url('/fronts/assets/fonts/FiraGO-Regular.ttf') format('truetype'),
        url('/fronts/assets/fonts/FiraGO-Regular.svg#NotoSansGeorgian-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: var(--noto-font-family);
    color: var(--body-color);
}
body.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none !important;
}

section#home {
  background-image: url(/fronts/assets/images/home.png);
}

/* header */

header {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(36px);
  padding: 5px 0;
  position: relative;
  z-index: 1;
}
.right-header-panel {
  padding: 12px 0;
}

.logo {
  margin-right: 80px;
}

.nav-item {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--body-color) !important;
  margin-right: 32px;
  display: inline-flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.lang {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #CDD5DF;
  box-shadow: 0px 1px 2px rgba(18, 25, 38, 0.05);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lang::after {
  display: none;
}
.races {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border: 1px solid #var(--primary-blue);
  box-shadow: 0px 1px 2px rgba(18, 25, 38, 0.05);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-left: 16px;
  cursor: pointer;
}

/* home section */
.home-section {
  position: relative;
  padding: 80px 0;
}
.main-title {
  margin-top: 40px;
  font-family: var(--firago-font-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  color: #121926;
  text-shadow: 2px 4px 1px rgba(18, 25, 38, 0.12);
}
.main-title span {
    position: relative;
    z-index: 1;
}
.main-title .ln2 {
  color: var(--primary-blue-text);
}
.main-title .ln1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-blue);
  opacity: 0.2;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  height: 16px;
  margin-bottom: 10px;
  z-index: -1;
}
.main-text {
  position: relative;
  font-family: var(--firago-font-family);
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-grey);
  margin-top: 24px;
  z-index: 1;
}
.login-card {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  max-width: 470px;
  display: block;
  margin: 0 auto;
  padding: 8px;
}

.login-card-inner {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0px 1px 3px rgba(18, 25, 38, 0.1), 0px 1px 2px rgba(18, 25, 38, 0.06);
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -o-border-radius: 14px;
  padding: 32px;
  min-height: 416px;
}
.login-card h4 {
  font-family: var(--firago-font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--body-color);
  padding: 16px;
  position: relative;
  width: fit-content;
  display: table;
}
.login-card h4 span {
  position: relative;
}
.login-card h4 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #var(--primary-blue);
  opacity: 0.16;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  height: 8px;
  margin-bottom: 2px;
  z-index: -1;
}
.login-card label {
  font-size: 14px;
  line-height: 20px;
  color: var(--body-color);
  display: block;
  margin-bottom: 6px;
}
.login-card-inner .form-group {
  margin-bottom: 24px;
}

.control {
  background: #FFFFFF;
  border: 1px solid #CDD5DF;
  box-shadow: 0px 1px 2px rgba(18, 25, 38, 0.05);
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  height: 44px;
  padding-left: 42px;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #697586;
  outline: none !important;
}
.maskon {
  position: absolute;
  top: 50%;
  left: 0;
  margin-left: 17px !important;
  margin-top: -7px;
}
.login-tool {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.remember {
  position: relative;
}
.remember input {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  position: absolute;
}
.remember label {
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-grey);
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.remember label::before {
  content: '';
  background: #FFFFFF;
  border: 1px solid #CDD5DF;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.remember input:checked + label::before {
  content: '\f00c';
  background: var(--primary-blue);
  border: 1px solid #CDD5DF;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  position: relative;
  vertical-align: middle;
  margin-right: 8px;
  font-family: 'Font Awesome 6 Pro';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.login-btn {
  background: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  box-shadow: 0px 1px 2px rgba(18, 25, 38, 0.05);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.register-btn {
  background: #FFFFFF;
  border: 1px solid #CDD5DF;
  box-shadow: 0px 1px 2px rgba(18, 25, 38, 0.05);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color) !important;
  margin-top: 16px;
}
.packmask {
  position: absolute;
  bottom: 0;
  left: 38%;
  margin-bottom: 20px;
  animation: MoveUpDown 1.5s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.planemask {
  position: absolute;
  bottom: 40%;
  left: 38%;
  margin-bottom: 20px;
}

@keyframes MoveUpDown {
  0%, 100% {
    margin-bottom: 13px;
    opacity: 0.8;
  }
  50% {
    margin-bottom: 20px;
    opacity: 1;
  }
}

-webkit-@keyframes MoveUpDown {
  0%, 100% {
    margin-bottom: 13px;
    opacity: 0.8;
  }
  50% {
    margin-bottom: 20px;
    opacity: 1;
  }
}


.video-container {
  background: rgba(18, 25, 38, 0.04);
  border: 2px dashed rgba(18, 25, 38, 0.12);
  position: absolute;
  bottom: 0;
  width: 370px;
  height: 325px;
  margin-bottom: -80px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  margin-left: 24px;
}
.video-inner {
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  margin-left: -24px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: calc(100% - 48px);
  margin-top: 24px;
  cursor: pointer;
}
.video-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
}
.video-inner span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.32) 50%, rgba(255, 255, 255, 0.96) 100%), url(.jpg);
  border: 2px solid #FFFFFF;
  box-shadow: 0px 24px 48px -12px rgba(18, 25, 38, 0.18);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
}
.video-tool {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.32) 0.01%, #FFFFFF 100%);
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-grey);
  padding: 16px;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  display: flex;
  align-items: center;
}
.video-tool i {
  margin-right: 14px;
}


/* advantages */
section#advantages {
  padding: 120px 0 80px 0;
}
.section-title {
  font-family: var(--firago-font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #121926;
  font-feature-settings: 'case';
  position: relative;
  margin-bottom: 78px;
}
.section-title::after {
  content: '';
  width: 48px;
  height: 4px;
  background: #F04438;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  bottom: 0;
  margin-bottom: -20px;
  position: absolute;
  left: 0;
}
.app-icon {
  width: 52px;
  height: 52px;
  background: #EFF8FF;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}
.app-icon img {
  height: 20px;
}
.app-title {
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: var(--firago-font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--body-color);
}
.app-text * {
  font-size: 16px;
  line-height: 24px;
  color: #697586;
}
.app-text p {
  margin-bottom: 0;
}



/* about */
section#about {
  background: #eef2f6;
  padding: 80px 0;
}
.about-image {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(.jpg);
  border: 3px solid #FFFFFF;
  box-shadow: 0px 24px 48px -12px rgba(18, 25, 38, 0.18);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  overflow: hidden;
}
.about-image  img {
  width: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
}
.ab-title {
  font-family: var(--firago-font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #121926;
  position: relative;
  margin-bottom: 52px;
}

.ab-title::after {
  content: '';
  width: 48px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  bottom: 0;
  margin-bottom: -20px;
  position: absolute;
  left: 0;
}
.about-text {
  margin-bottom: 32px;
}
.about-text * {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-grey);
}
.about-text p {
  margin: 0;
}

.about-additional-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.about-additional-left {
  min-width: 48px;
  height: 48px;
  background: #FFFFFF;
  box-shadow: 0px 4px 8px -2px rgba(18, 25, 38, 0.1), 0px 2px 4px -2px rgba(18, 25, 38, 0.06);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-right: 16px;
}
.about-additional-right h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
  margin-bottom: 4px;
}
.about-additional-right p {
  font-size: 14px;
  line-height: 20px;
  color: #697586;
  margin: 0;
}
/* how it works */
section#howWorks {
  background: #E3E8EF;
}
.line-container {
  padding: 80px 0;
  position: relative;
}
.line-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  border-left: 2px dashed #F8FAFC;
  margin-left: 26px;
}
.howwork-item {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}
.howwork-item::before {
  content: '';
  position: absolute;
  left: 0;
  width: 52px;
  height: 52px;
  background: #F8FAFC;
  box-shadow: 0px 1px 2px rgba(18, 25, 38, 0.05);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  top: 50%;
  margin-top: -26px;
}
.howwork-item::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-blue);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  margin-left: 16px;
  top: 50%;
  margin-top: -10px;
}
.howwork-item-left {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
  padding-left: 70px;
  margin-right: 80px;
  white-space: nowrap;
}
.howwork-item-right {
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(18, 25, 38, 0.05);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
}
.howwork-info {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1849A9;
  margin-left: 32px;
}

.howwork-info p {
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-grey);
}
.howwork-icon {
  min-width: 56px;
  height: 56px;
  background: #EEF2F6;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #697586;
  font-size: 19px;
}

/* prices */
section#prices {
  background: #eef2f6;
  padding: 80px 0;
}
.price-card {
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(18, 25, 38, 0.1), 0px 1px 2px rgba(18, 25, 38, 0.06);
  border-radius: 20px;
}
.section-title2 {
  font-family: var(--firago-font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 46px;
}
.section-title2::after {
  content: '';
  width: 48px;
  height: 4px;
  background: #F79009;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  bottom: 0;
  margin-bottom: -20px;
  position: absolute;
  left: 0;
}
.price-top-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.price-top-text p {
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
  margin-bottom: 0px;
  margin-left: 16px;
}
.price-top-text span {
  color: #F79009;
}
.price-top-text strong {
  color: #212121;
}
.price-top-icon {
  padding: 0px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #EDFCF2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-top-icon i {
  color: #16B364;
}
.price-top-image {
  width: 100%;
  height: 452px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(.jpg);
  border-radius: 16px;
  overflow: hidden;
}
.price-top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-bottom-text {
  padding: 24px;
  width: 100%;
  height: 140px;
  background: #EEF2F6;
  border-radius: 16px;
  margin-top: 174px;
}
.price-bottom-text h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-grey);
}
.price-bottom-text p {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-grey);
}
.bottom-border-2 {
  border-bottom: 2px solid #E3E8EF;
  margin-bottom: 32px;
  padding-bottom: 32px;
}
.calc-price-box {
  padding: 24px;
  width: 100%;
  height: auto;
  background: #EEF2F6;
  border-radius: 16px;
}
.calc-right-box {
  border-bottom: 1px solid #CDD5DF;
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.calc-right-box:last-child {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.calc-price-right-box {
  padding: 32px 20px;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(18, 25, 38, 0.05);
  border-radius: 14px;
}
.calc-right-box p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-grey);
}
.calc-right-box p:last-child {
  margin-bottom: 0px;
}
.calc-right-box .price-sum {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #202939;
}
.calculate-button {
  padding: 12px 32px;
  width: auto;
  height: auto;
  background: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  box-shadow: 0px 1px 2px rgba(18, 25, 38, 0.05);
  border-radius: 14px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin-top: 24px;
}
.hidden {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.choose-country {
  padding: 8px 16px;
  width: 200px;
  height: 36px;
  height: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  color: var(--primary-grey);
  text-align: center;
}
.country:checked + label.choose-country {
  padding: 8px 16px;
  width: 200px;
  height: 36px;
  background: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(18, 25, 38, 0.1), 0px 1px 2px rgba(18, 25, 38, 0.06);
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  color: var(--body-color);
  text-align: center;
}
.custom-radios-box {
  padding: 2px;
  width: 410px;
  height: 40px;
  background: rgba(105, 117, 134, 0.08);
  border: 1px solid #CDD5DF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.calculate-card label {
  font-size: 14px;
  line-height: 20px;
  color: var(--body-color);
  margin-bottom: 3px;
}
.calculate-card i {
  color: #697586;
}
section#contact {
  background: #eef2f6;
  padding: 80px 0;
}
.contact-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 20px;
}
.contact-image {
  width: 100%;
  height: 420px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)), url(.jpg);
  border: 3px solid #FFFFFF;
  box-shadow: 0px 24px 48px -12px rgba(18, 25, 38, 0.18);
  border-radius: 16px;
  overflow: hidden;
}
.contact-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section-title3 {
  font-family: var(--firago-font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 46px;
}
.section-title3::after {
  content: '';
  width: 48px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  bottom: 0;
  margin-bottom: -20px;
  position: absolute;
  left: 0;
}
.single-contact-box {
  margin-bottom: 24px;
  padding: 20px;
  width: 100%;
  height: auto;
  background: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(18, 25, 38, 0.1), 0px 1px 2px rgba(18, 25, 38, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.single-contact-box:last-child {
  margin-bottom: 0px;
}
.single-contact-icon {
  padding: 0px;
  width: 48px;
  height: 48px;
  background: #EFF8FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-contact-icon i {
  color: var(--primary-blue-text);
}
.single-contact-text {
  margin-left: 16px;
}
.single-contact-text p {
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-grey);
  margin-bottom: 2px;
}
.single-contact-text a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-blue-text);
}
.working-hours-box {
  padding: 20px;
  width: 100%;
  height: 312px;
  background: #FCFCFD;
  border: 2px solid #E3E8EF;
  border-radius: 16px;
}
.working-hours-box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-grey);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.working-hours-box p:last-child {
  margin-bottom: 0px;
}
section#footer {
  padding: 24px 0px;
  height: auto;
  background: #1D2939;
}
.footer-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-left i {
  font-size: 26px;
  color: #fff;
}
.footer-left a {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #EEF2F6;
  padding-left: 40px;
}
.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-right p {
  font-size: 16px;
  line-height: 24px;
  color: #9AA4B2;
  margin-bottom: 0px;
}
section#terms {
  padding: 32px 0px;
  height: auto;
  background: #E3E8EF;
}
.terms-text h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 32px;
}
.terms-text h5 {
  font-size: 18px;
  line-height: 24px;
}
.terms-text p {
  font-size: 15px;
  line-height: 22px;
}
.flight-modal {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgb(37 37 37 / 80%);
  backdrop-filter: blur(4px);
  transition-duration: 0.3s;
}
.flight-modal.opened {
  visibility: visible;
  transition-duration: 0.3s;
}
.flight-modal .main-flights-box {
  transform: translateX(100%);
  transition-duration: 0.3s;
}
.flight-modal.opened .main-flights-box {
  transform: translateX(0);
  transition-duration: 0.3s;
}
.main-flights-box {
  padding: 0px;
  position: fixed;
  top: 0;
  right: 0;
  max-width: 500px;
  width: 100%;
  z-index: 1;
  height: 100%;
  background: #EEF2F6;
  box-shadow: 0px 24px 48px -12px rgba(18, 25, 38, 0.18);
  border-radius: 0px;
}
.flights-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: #FFFFFF;
  border-bottom: 1px solid #E3E8EF;
}
.flights-box-head h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #121926;
  margin-bottom: 0px;
}
.flights-close {
  width: 40px;
  height: 40px;
  background: #FEF3F2;
  border: 1px solid #FEF3F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.flights-close i {
  color: #F04438;
}
.flights-box-body {
  padding: 32px;
  overflow-y: scroll;
  height: 100%;
}
.single-flight {
  margin-bottom: 24px;
  padding: 24px;
  width: 100%;
  height: auto;
  background: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(18, 25, 38, 0.1), 0px 1px 2px rgba(18, 25, 38, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.single-flight:last-child {
  margin-bottom: 80px;
}
.single-flight-image {
  width: 56px;
  height: 56px;
  background: #EFF8FF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-flight-image i {
  color: var(--primary-blue-text);
}
.single-flight-text {
  margin-left: 20px;
}
.single-flight-text p {
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: var(--primary-grey);
  margin-bottom: 4px;
}
.single-flight-text span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-blue-text);
  margin-left: 8px;
}
.single-flight-text strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
  margin-left: 8px;
}
.single-flight-text p:last-child {
  margin-bottom: 0px;
}
.alert li {
  list-style: none;
}
.recover-lgs {
  display: none;
}
.recover-pass-btn, .login-ong {
  cursor: pointer;
}
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgb(227 232 239 / 80%);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition-duration: 0.3s;
}
.video-modal iframe {
  transform: translateY(100vh);
  transition-duration: 0.3s;
}
.video-modal.opened {
  visibility: visible;
  transition-duration: 0.3s;
}


.video-modal.opened iframe {
  transform: translateY(0);
  transition-duration: 0.3s;
}
.close-video-modal {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccc;
  margin-top: 20px;
  margin-right: 20px;
  border-radius: 50%;
  cursor: pointer;
}

.stepwizard-row {
  
}

.stepwizard {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: #194185;
  backdrop-filter: blur(20px);
}

.stepwizard-step button[disabled] {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}

.stepwizard-step:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 52px;
  margin-left: 14px;
  height: 40px;
  width: 2px;
  background-color: #D1E9FF;
}
.stepwizard-step:last-child::before {
  display: none;
}

.stepwizard-step {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 48px;
}

.stepwizard-step:last-child {
  margin-bottom: 0px;
}

.stepwizard-step .btn-primary {
  background: #2E90FA;
  border: 6px solid #fff;
  outline: 4px solid rgba(255, 255, 255, 0.12);
}
.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 12px;
  padding: 0;
  line-height: 1.428571429;
  border-radius: 50%;
  color: #fff;
  background: #2E90FA;
  border: 10px solid #fff;
}

section#register {
  padding: 80px;
  background-color: #EEF2F6;
  height: calc(100vh - 147px);
}

.register_box {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(18, 25, 38, 0.06), 0px 1px 3px 0px rgba(18, 25, 38, 0.10);
  padding: 24px 16px;
  position: relative;
}
.step_txt {
  margin-left: 16px;
}
.step_txt h4 {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 0px;
  cursor: default;
}
.step_txt p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0px;
  cursor: default;
}
.back_btn {
  border-radius: 12px;
  border: 1px solid #CDD5DF;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(18, 25, 38, 0.05);
  margin-bottom: 60px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back_btn i {
  font-size: 20px;
}
.setup-content .has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
.setup-content .has-error .help-block, .setup-content .has-error .control-label, .setup-content .has-error .radio, .setup-content .has-error .checkbox, .setup-content .has-error .radio-inline, .setup-content .has-error .checkbox-inline {
  color: #a94442;
}
.register_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E3E8EF;
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.register_header h4 {
  color: #121926;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 0px;
}
.register_header p {
  color: var(--gray-modern-600, #4B5565);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0px;
}
.register_header a {
  color: var(--primary-600, #1570EF);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 0px;
}
/* custom radio buttons */
.radio_steps input[type="radio"] {
  display: none;
  &:not(:disabled) ~ label {
    cursor: pointer;
    border-radius: 16px;
    border: 2px solid var(--gray-modern-200, #E3E8EF);
    background: var(--gray-modern-50, #F8FAFC);
  }
  &:disabled ~ label {
    color: hsla(150, 5%, 75%, 1);
    border-color: hsla(150, 5%, 75%, 1);
    box-shadow: none;
    cursor: not-allowed;
  }
}
.radio_steps label {
  height: 100%;
  width: 100%;
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
}
.radio_steps input[type="radio"]:checked + label {
  border-radius: 16px;
  outline: 4px solid rgba(46, 144, 250, 0.12);
  background: #FFF;
  box-shadow: 0px 8px 8px -4px rgba(18, 25, 38, 0.03), 0px 20px 24px -4px rgba(18, 25, 38, 0.08);
}
.radio_steps input[type="radio"]:checked + label .user_reg_arrow i {
  color: #1570EF;
}
.radio_steps input[type="radio"]#control_05:checked + label {
  background: red;
  border-color: red;
}
.radio_steps p {
  font-weight: 900;
}
@media only screen and (max-width: 700px) {
  .radio_steps section {
    flex-direction: column;
  }
}
.image_and_txts {
  display: flex;
  align-items: center;
  justify-content: center;
}
.label_steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user_reg_txts {
  margin-left: 16px;
}
.user_reg_txts h4 {
  color: #202939;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0px;
}
.user_reg_txts p {
  color: var(--gray-modern-600, #4B5565);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; 
  margin-bottom: 0px;
}
.user_flag {
  height: 48px;
  width: 48px;
  padding: 4px;
  border-radius: 50px;
  background: #EEF2F6;
  overflow: hidden;
}
.user_flag img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.user_icon {
  height: 48px;
  width: 48px;
  padding: 10px;
  border-radius: 50px;
  background: #EEF2F6;
  overflow: hidden;
}
.user_icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.btn_next {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 16px;
  margin-right: 28px;
  border-radius: 12px;
  border: 1px solid #2E90FA;
  background: #2E90FA;
  box-shadow: 0px 1px 2px 0px rgba(18, 25, 38, 0.05);
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 24px;
}
.btn_next:hover {
  color: #fff;
  background-color: #2E90FA;
  border-color: #2E90FA;
}
.btn_finish {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 16px;
  margin-right: 28px;
  border-radius: 12px;
  border: 1px solid #16B364;
  background: #16B364;
  box-shadow: 0px 1px 2px 0px rgba(18, 25, 38, 0.05);
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 24px;
}
.btn_finish:hover {
  color: #fff;
  background-color: #16B364;
  border-color: #16B364;
}
.new_form {
  margin-bottom: 24px;
  position: relative;
}
.new_form label {
  color: #364152;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 6px;
}
.new_form i {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 43px;
  margin-left: 14px;
  font-size: 16px;
  color: #697586;
}
.new_form input, .new_form select {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--gray-modern-300, #CDD5DF);
  background: var(--base-white, #FFF);
  box-shadow: 0px 1px 2px 0px rgba(18, 25, 38, 0.05);
  padding-left: 40px;
}
.new_form .form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #2e90fa7a;
  outline: 0;
  box-shadow: none;
}
.checkbox_agree {
  position: relative;
}
.checkbox_agree input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 7px;
}
.checkbox_agree span {
  margin-left: 24px;
  color: #4B5565;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.checkbox_agree a {
  color: #1570EF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.toggle_password_reg {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 44px;
  margin-right: 12px;
}
.legal {
  display: none;
}

/*faq*/
section#fAq {
  background: #E3E8EF;
  padding: 80px 0;
}

.single-faq-box {
  padding: 0;
  width: 100%;
  height: auto;
  background: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(18, 25, 38, 0.1), 0px 1px 2px rgba(18, 25, 38, 0.06);
  border-radius: 16px !important;
  margin-bottom: 16px;
}

.single-faq-box .accordion-button {
  padding: 20px 24px;
  border-radius: 16px !important;
  font-size: 18px;
  line-height: 28px;
  color: #364152;
}

.single-faq-box .accordion-button::after {
  background-image: url(/panels/assets/img/down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-faq-box .accordion-button:focus {
  border-color: transparent;
  outline: 0 !important;
  box-shadow: none;
}

.single-faq-box .accordion-button:not(.collapsed) {
  color: #364152;
  background-color: #fff;
  box-shadow: none;
}

.single-faq-box .accordion-body {
  padding: 0px 24px;
}