/*
  @Author : akashnarayan
  @Project : Charter-x
  @Dev : DEV TEAM
  @Date : 22/4/2020;
*/
/* config */
/* Variables.scss */
/* colors */
/* breakpoints */
/* fonts */
/* font weights */
/* element */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

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

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

/* element.scss */
html {
  font-size: 10px; }

body {
  background: #000000;
  font-size: 0.9722222222vw;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #cccccc; }

@media only screen and (max-width: 1024px) {
  html {
    font-size: calc(11px + (16 - 11) * ((100vw - 320px)/ (1024 - 320))); }

  body {
    font-size: 1.4rem; } }
a,
a:hover,
a:focus,
a:active {
  color: #cccccc;
  text-decoration: none;
  outline: none; }

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0; }

button {
  border: none;
  box-shadow: none;
  background: transparent;
  font-family: "Source Sans Pro", sans-serif; }
  button:hover, button:focus {
    border: none;
    box-shadow: none;
    outline: none;
    background: transparent; }

strong {
  font-weight: 700; }

/* common */
.cm-not-in-page {
  position: absolute;
  top: -99999px;
  left: -99999px; }

.cm-line-break {
  display: block; }

.js-bg .img {
  display: none; }
.js-bg .addto {
  background-size: cover;
  background-position: center center; }

.cm-hidden {
  display: none !important; }

.container {
  width: 100%;
  padding: 0 9.7222222222vw;
  margin: 0 auto; }

.cm-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.4722222222vw;
  line-height: 3.75vw;
  color: #ffffff;
  text-transform: uppercase; }

.cm-cloud {
  background: url("../images/cloud.png") center center no-repeat;
  background-size: cover;
  position: absolute; }

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .bg-img img {
    display: none; }

.cm-loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
  z-index: 15; }
  .cm-loader.active {
    opacity: 1;
    visibility: visible; }
  .cm-loader:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 100%;
    transform: translate(-100%, -50%);
    height: 2px;
    background-color: #ffffff;
    animation: lineanime 1.6s ease forwards;
    animation-delay: 0.8s; }

.cm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-in; }
  .cm-overlay.active {
    opacity: 1;
    visibility: visible; }

@keyframes lineanime {
  0% {
    transform: translate(-100%, -50%); }
  100% {
    transform: translate(0%, -50%); } }
@media only screen and (max-width: 1024px) {
  .container {
    padding: 0 3rem; }

  .cm-title {
    font-size: 2.4rem;
    line-height: 2.8rem; } }
/* base */
.bs-header {
  padding: 0rem 5.5555555556vw;
  background: transparent;
  position: relative;
  height: 6.9444444444vw;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in; }
  .bs-header .logo-wrap {
    width: 12.5vw;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in; }
    .bs-header .logo-wrap img {
      width: 100%; }
  .bs-header .nav-wrap .nav-list .nav-item {
    margin-right: 5.5555555556vw;
    display: inline-block; }
    .bs-header .nav-wrap .nav-list .nav-item:last-of-type {
      margin-right: 0; }
    .bs-header .nav-wrap .nav-list .nav-item .nav-link {
      font-size: 0.9722222222vw;
      line-height: 1.25vw;
      color: #ffffff;
      font-family: "Montserrat", sans-serif;
      text-transform: uppercase; }
  .bs-header.sticky {
    height: 5.5555555556vw;
    background: #000000; }

.home .bs-header .logo-wrap {
  opacity: 0;
  visibility: hidden; }
.home .bs-header.sticky .logo-wrap {
  opacity: 1;
  visibility: visible; }

@media only screen and (max-width: 1024px) {
  .bs-header {
    height: 5.5rem;
    justify-content: center;
    background: transparent; }
    .bs-header .nav-wrap {
      display: none; }
    .bs-header .logo-wrap {
      width: 14rem;
      opacity: 1 !important;
      visibility: visible !important;
      transform: scale(1.5);
      padding-top: 2rem; }
    .bs-header.sticky {
      height: 5.5rem; }
      .bs-header.sticky .logo-wrap {
        padding-top: 1rem;
        transform: scale(1); } }
.bs-banner {
  position: relative;
  padding-top: 6.9444444444vw;
  height: 100vh;
  overflow: hidden; }
  .bs-banner .logo-wrap {
    position: absolute;
    width: 25vw;
    left: 6.9444444444vw;
    top: 12.1527777778vw;
    transition: all 0.4s ease-in;
    opacity: 1;
    visibility: visible; }
    .bs-banner .logo-wrap img {
      width: 100%; }
    .bs-banner .logo-wrap.hide {
      opacity: 0;
      visibility: hidden; }
  .bs-banner .cm-title {
    position: absolute;
    left: 6.9444444444vw;
    top: 20.1388888889vw;
    font-size: 6.25vw;
    line-height: 5.8333333333vw;
    z-index: 1; }
    .bs-banner .cm-title span:last-of-type {
      margin-left: 5.9027777778vw; }
  .bs-banner .infography-wrap {
    width: 46.875vw;
    position: absolute;
    top: 14.9305555556vw;
    right: 17.7083333333vw; }
    .bs-banner .infography-wrap img {
      width: 100%;
      z-index: 1;
      position: relative; }
    .bs-banner .infography-wrap .radar-wrap {
      position: absolute;
      z-index: 0;
      left: 54%;
      top: 42%;
      transform: translate(-50%, -50%); }
      .bs-banner .infography-wrap .radar-wrap .radar-circle {
        width: 6.9444444444vw;
        height: 6.9444444444vw;
        position: absolute;
        border-radius: 50%;
        background-color: transparent;
        border: 0.5px solid #83f887;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        animation: scaleIn 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32); }
        .bs-banner .infography-wrap .radar-wrap .radar-circle:nth-of-type(1) {
          animation-delay: 0s; }
        .bs-banner .infography-wrap .radar-wrap .radar-circle:nth-of-type(2) {
          animation-delay: 1s; }
        .bs-banner .infography-wrap .radar-wrap .radar-circle:nth-of-type(3) {
          animation-delay: 2s; }
        .bs-banner .infography-wrap .radar-wrap .radar-circle:nth-of-type(4) {
          animation-delay: 3s; }
  .bs-banner .cm-cloud {
    z-index: 10; }
    .bs-banner .cm-cloud.top {
      top: -17.3611111111vw;
      right: 8.3333333333vw;
      width: 52.0833333333vw;
      height: 33.3333333333vw; }
    .bs-banner .cm-cloud.right {
      top: 20.8333333333vw;
      width: 34.7222222222vw;
      right: -13.1944444444vw;
      height: 24.3055555556vw; }
    .bs-banner .cm-cloud.center {
      top: 27.7777777778vw;
      width: 27.7777777778vw;
      height: 17.3611111111vw;
      left: 30%; }
  .bs-banner .shape-infography {
    position: absolute;
    width: 55.5555555556vw;
    top: -3.4722222222vw;
    right: 0; }
    .bs-banner .shape-infography img {
      width: 100%;
      opacity: 0.7; }

@keyframes scaleIn {
  from {
    transform: translate(-50%, -50%) scale(1, 1);
    border-width: 0.5px;
    opacity: 0.5; }
  to {
    transform: translate(-50%, -50%) scale(6, 6);
    border-width: 0.5px;
    opacity: 0; } }
@media only screen and (max-width: 1024px) {
  .bs-banner {
    max-height: 60rem;
    padding-top: 5.5rem; }
    .bs-banner .logo-wrap {
      display: none; }
    .bs-banner .cm-title {
      left: 50%;
      top: 30%;
      transform: translate(-50%, -50%);
      font-size: 3.4rem;
      line-height: 3.2rem;
      width: fit-content; }
      .bs-banner .cm-title span:last-of-type {
        margin-left: 2.4rem; }
    .bs-banner .infography-wrap {
      width: 85%;
      left: 50%;
      transform: translate(-50%, -50%);
      top: 60%; }
      .bs-banner .infography-wrap .radar-wrap .radar-circle {
        width: 5.5rem;
        height: 5.5rem; }
    .bs-banner .shape-infography {
      width: 30rem;
      top: 25%;
      right: -4rem;
      display: none; } }
.btn {
  font-size: 1.1111111111vw;
  line-height: 1.3888888889vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  cursor: pointer; }
  .btn.btn-link {
    font-size: 0.8333333333vw;
    line-height: 1.1111111111vw;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.1388888889vw 0;
    position: relative;
    overflow: hidden; }
    .btn.btn-link:before {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      transform: translateX(-100%);
      transition: all 0.5s ease-in-out;
      background-color: #ffffff;
      height: 1px;
      bottom: 0; }
    .btn.btn-link:hover:before {
      transform: translateX(0%); }
  .btn.btn-default {
    color: #000000;
    padding: 1.0416666667vw 3.4722222222vw;
    background: #ffffff;
    transform: skewX(-12deg);
    transform-origin: top;
    border: 1px solid #ffffff;
    transition: all 0.5s ease-in; }
    .btn.btn-default:hover {
      background-color: transparent;
      color: #ffffff; }
    .btn.btn-default .text {
      display: block;
      transform: skewX(12deg); }

@media only screen and (max-width: 1024px) {
  .btn.btn-link {
    font-size: 1.2rem;
    line-height: 1.6rem;
    letter-spacing: 2.2px;
    padding: 0.2rem 0; }
  .btn.btn-default {
    font-size: 1.3rem;
    line-height: 1.7rem;
    padding: 0.8rem 2.2rem; } }
.bs-sec {
  position: relative; }
  .bs-sec.typ-about {
    padding: 12.5vw 0 10.4166666667vw; }
    .bs-sec.typ-about .container {
      display: flex; }
    .bs-sec.typ-about .sec-head {
      width: 30%; }
    .bs-sec.typ-about .sec-cont {
      width: 60%;
      padding-left: 6.25vw; }
      .bs-sec.typ-about .sec-cont strong {
        display: block;
        margin-bottom: 2.4305555556vw;
        font-size: 1.3888888889vw;
        line-height: 1.6666666667vw;
        text-transform: uppercase;
        font-weight: 400; }
      .bs-sec.typ-about .sec-cont .desc {
        font-size: 1.25vw;
        line-height: 1.8055555556vw;
        font-weight: 300;
        margin-bottom: 2.7777777778vw; }
        .bs-sec.typ-about .sec-cont .desc strong {
          font-size: 1.25vw;
          line-height: 1.8055555556vw;
          font-weight: 700;
          text-transform: initial;
          margin-bottom: 0;
          display: initial; }
      .bs-sec.typ-about .sec-cont .more-desc {
        display: none; }
  .bs-sec.typ-infography {
    overflow: hidden; }
    .bs-sec.typ-infography .infography-wrap {
      height: 41.6666666667vw;
      position: relative; }
      .bs-sec.typ-infography .infography-wrap .img-wrap {
        background-attachment: fixed;
        transform: scale(1.2);
        height: 100%; }
      .bs-sec.typ-infography .infography-wrap .content {
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 1.3888888889vw;
        line-height: 2.0833333333vw;
        text-transform: uppercase;
        font-weight: 700;
        font-family: "Montserrat", sans-serif;
        color: #ffffff;
        top: 50%;
        transform: translateY(-50%); }
      .bs-sec.typ-infography .infography-wrap:before {
        content: '';
        position: absolute;
        border-top: 4.8611111111vw solid #000000;
        border-left: 100vw solid transparent;
        top: -1px;
        right: 0;
        z-index: 1; }
      .bs-sec.typ-infography .infography-wrap:after {
        content: '';
        position: absolute;
        border-bottom: 4.8611111111vw solid #000000;
        border-right: 100vw solid transparent;
        bottom: -1px;
        left: 0;
        z-index: 1; }
  .bs-sec.typ-benefits {
    padding: 12.5vw 0 12.5vw;
    position: relative;
    overflow: hidden; }
    .bs-sec.typ-benefits .container {
      display: flex;
      justify-content: space-between; }
      .bs-sec.typ-benefits .container .sec-head {
        order: 2;
        width: 30%;
        position: relative; }
        .bs-sec.typ-benefits .container .sec-head .cm-cloud.top {
          width: 33.3333333333vw;
          height: 20.8333333333vw;
          top: -6.9444444444vw;
          left: -10.4166666667vw;
          z-index: 0; }
      .bs-sec.typ-benefits .container .sec-cont {
        order: 1;
        width: 60%; }
        .bs-sec.typ-benefits .container .sec-cont .benefits-list {
          display: flex;
          flex-wrap: wrap; }
          .bs-sec.typ-benefits .container .sec-cont .benefits-list .benefits {
            width: 50%;
            margin-bottom: 4.1666666667vw;
            padding-left: 1.7361111111vw;
            padding-right: 2.4305555556vw;
            position: relative; }
            .bs-sec.typ-benefits .container .sec-cont .benefits-list .benefits:before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 1.3888888889vw;
              height: 1.7361111111vw;
              background: url("../images/marker.svg") center center no-repeat;
              background-size: contain; }
            .bs-sec.typ-benefits .container .sec-cont .benefits-list .benefits .title {
              font-size: 1.25vw;
              line-height: 1.5277777778vw;
              margin-bottom: 0.8333333333vw;
              font-weight: 700;
              color: #ffffff;
              text-transform: uppercase; }
            .bs-sec.typ-benefits .container .sec-cont .benefits-list .benefits .desc {
              font-size: 1.1111111111vw;
              line-height: 1.3888888889vw; }
            .bs-sec.typ-benefits .container .sec-cont .benefits-list .benefits:nth-of-type(even) {
              padding-right: 0; }
    .bs-sec.typ-benefits .infography-wrap {
      position: absolute;
      right: -15.9722222222vw;
      width: 45.1388888889vw;
      top: 6.9444444444vw;
      z-index: -1; }
      .bs-sec.typ-benefits .infography-wrap img {
        width: 100%; }
    .bs-sec.typ-benefits .cm-cloud.bot {
      width: 33.3333333333vw;
      height: 19.4444444444vw;
      right: -19.4444444444vw;
      bottom: 1.3888888889vw;
      z-index: 1; }
  .bs-sec.typ-charters {
    position: relative; }
    .bs-sec.typ-charters .sec-head {
      position: absolute;
      text-align: center;
      left: 0;
      right: 0;
      top: 7.9861111111vw; }
      .bs-sec.typ-charters .sec-head .cm-title {
        font-size: 2.2222222222vw;
        line-height: 2.5vw; }
    .bs-sec.typ-charters .sec-cont .infography-wrap {
      background: url("../images/time-bg.png") center center no-repeat;
      background-size: cover;
      height: 34.7222222222vw; }
      .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap {
        display: flex;
        justify-content: space-between;
        width: 75vw;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); }
        .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap .flight-item {
          width: 26.0416666667vw;
          text-align: center;
          color: #ffffff; }
          .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap .flight-item .time {
            font-size: 3.4722222222vw;
            line-height: 3.75vw;
            display: block;
            margin-bottom: 1.3888888889vw;
            text-transform: uppercase;
            font-weight: 700;
            font-family: "Montserrat", sans-serif; }
          .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap .flight-item .name {
            display: block;
            font-size: 1.25vw;
            line-height: 1.5277777778vw;
            text-transform: uppercase; }
          .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap .flight-item.typ-comm .time {
            opacity: 0.76; }
        .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap:before {
          content: '';
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          width: 4.8611111111vw;
          height: 4.8611111111vw;
          background: url("../images/clock.svg") center center no-repeat;
          background-size: cover; }
  .bs-sec.typ-credential {
    padding: 10.4166666667vw 0; }
    .bs-sec.typ-credential .sec-head {
      margin-bottom: 5.5555555556vw; }
    .bs-sec.typ-credential .sec-cont .credential-list {
      display: flex; }
    .bs-sec.typ-credential .sec-cont .credential-item {
      width: 33%;
      padding-right: 3.4722222222vw;
      position: relative;
      padding-left: 2.0833333333vw; }
      .bs-sec.typ-credential .sec-cont .credential-item:before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #555555; }
      .bs-sec.typ-credential .sec-cont .credential-item:first-of-type {
        padding-left: 0; }
      .bs-sec.typ-credential .sec-cont .credential-item:last-of-type {
        padding-right: 0; }
        .bs-sec.typ-credential .sec-cont .credential-item:last-of-type:before {
          content: none; }
      .bs-sec.typ-credential .sec-cont .credential-item .mod-credential {
        width: 100%; }
    .bs-sec.typ-credential .sec-cont .credential-detail {
      margin-bottom: 4.5138888889vw; }
      .bs-sec.typ-credential .sec-cont .credential-detail .title {
        font-size: 6.25vw;
        line-height: 5.8333333333vw;
        margin-bottom: 5.5555555556vw;
        font-weight: 700;
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        color: #ffffff; }
      .bs-sec.typ-credential .sec-cont .credential-detail:last-of-type {
        margin-bottom: 0; }
  .bs-sec.typ-operations {
    padding: 5.5555555556vw 0 12.5vw;
    position: relative;
    overflow: hidden; }
    .bs-sec.typ-operations .sec-head {
      margin-bottom: 4.5138888889vw;
      padding: 0 9.7222222222vw;
      overflow: hidden; }
      .bs-sec.typ-operations .sec-head .cm-title {
        font-size: 6.25vw;
        line-height: 5.8333333333vw;
        float: right; }
    .bs-sec.typ-operations .sec-cont .infography-wrap {
      margin-bottom: 1.7361111111vw;
      position: relative;
      overflow: hidden; }
      .bs-sec.typ-operations .sec-cont .infography-wrap:before {
        content: '';
        height: 5px;
        position: absolute;
        top: 49%;
        left: 0;
        width: 200%;
        transform: translateY(-50%);
        background: url("../images/line.png") center center repeat;
        background-size: contain;
        animation: movingrunway 6s linear infinite; }
    .bs-sec.typ-operations .sec-cont .img-wrap {
      width: 18.4027777778vw;
      margin: 0 auto;
      z-index: 1;
      position: relative; }
      .bs-sec.typ-operations .sec-cont .img-wrap img {
        width: 100%; }
    .bs-sec.typ-operations .sec-cont .download-btn {
      margin-left: 9.7222222222vw;
      display: inline-block;
      padding-left: 3.8194444444vw;
      position: relative;
      color: #ffffff;
      font-weight: 700;
      font-family: "Montserrat", sans-serif;
      font-size: 1.1111111111vw;
      line-height: 1.3888888889vw; }
      .bs-sec.typ-operations .sec-cont .download-btn:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 2.0833333333vw;
        height: 2.4305555556vw;
        background: url("../images/pdf.svg") center center no-repeat;
        background-size: cover; }
    .bs-sec.typ-operations .cm-cloud.left {
      width: 38.1944444444vw;
      height: 22.2222222222vw;
      left: -11.1111111111vw;
      top: 2.7777777778vw; }
    .bs-sec.typ-operations .cm-cloud.right {
      width: 41.6666666667vw;
      height: 26.3888888889vw;
      right: -12.5vw;
      bottom: 8.3333333333vw;
      z-index: 2; }
  .bs-sec.typ-reach {
    display: flex;
    justify-content: space-between;
    background: url("../images/reach-us-bg.jpg") center bottom no-repeat;
    background-size: cover; }
    .bs-sec.typ-reach .sec-head {
      order: 2;
      width: 46.875vw;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      justify-content: center;
      padding-left: 10.4166666667vw;
      position: relative; }
      .bs-sec.typ-reach .sec-head .cm-title {
        margin-bottom: 1.3888888889vw;
        z-index: 2; }
      .bs-sec.typ-reach .sec-head .email-link,
      .bs-sec.typ-reach .sec-head .call-link {
        font-size: 1.25vw;
        line-height: 1.5277777778vw;
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif;
        color: #ffffff;
        z-index: 2;
        margin-bottom: 0.8333333333vw; }
      .bs-sec.typ-reach .sec-head:before {
        content: '';
        position: absolute;
        left: -1px;
        top: 0;
        bottom: 0;
        border-bottom: 29.5138888889vw solid #000000;
        border-right: 8.3333333333vw solid transparent; }
      .bs-sec.typ-reach .sec-head:after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1; }
      .bs-sec.typ-reach .sec-head .social-wrap {
        margin-top: 1.3888888889vw;
        z-index: 2;
        position: relative; }
        .bs-sec.typ-reach .sec-head .social-wrap .social-list {
          display: flex; }
        .bs-sec.typ-reach .sec-head .social-wrap .social-item {
          margin-right: 1.0416666667vw; }
          .bs-sec.typ-reach .sec-head .social-wrap .social-item .social-link {
            display: inline-block;
            width: 2.4305555556vw;
            height: 2.4305555556vw;
            border-radius: 50%;
            background-color: #ffffff;
            position: relative; }
          .bs-sec.typ-reach .sec-head .social-wrap .social-item img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: auto;
            height: 2.0833333333vw; }
          .bs-sec.typ-reach .sec-head .social-wrap .social-item:last-of-type {
            margin-right: 0; }
    .bs-sec.typ-reach .sec-cont {
      order: 1;
      background: #000000;
      padding: 0 2.7777777778vw 0 9.7222222222vw; }
      .bs-sec.typ-reach .sec-cont .bs-form {
        width: 40.625vw; }
  .bs-sec.typ-services {
    padding: 10.4166666667vw 0 6.9444444444vw; }
    .bs-sec.typ-services .sec-head {
      margin-bottom: 2.0833333333vw; }
      .bs-sec.typ-services .sec-head .container {
        display: flex;
        justify-content: space-between;
        align-items: center; }
    .bs-sec.typ-services .sec-cont {
      padding-left: 9.7222222222vw; }
      .bs-sec.typ-services .sec-cont .swiper-wrapper {
        height: auto; }
      .bs-sec.typ-services .sec-cont .swiper-slide {
        width: 25vw;
        margin-right: 3.4722222222vw !important;
        height: auto; }
      .bs-sec.typ-services .sec-cont .swiper-scrollbar {
        width: 62.5vw;
        background: transparent;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.3888888889vw;
        height: 2.0833333333vw;
        z-index: 1; }
        .bs-sec.typ-services .sec-cont .swiper-scrollbar:before {
          content: '';
          position: absolute;
          left: 0;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          height: 1px;
          background: #989898; }
        .bs-sec.typ-services .sec-cont .swiper-scrollbar .swiper-scrollbar-drag {
          height: 2.0833333333vw !important;
          border-radius: 50%;
          background: #484848; }
          .bs-sec.typ-services .sec-cont .swiper-scrollbar .swiper-scrollbar-drag:before {
            content: '';
            position: absolute;
            width: 0.9722222222vw;
            height: 0.9722222222vw;
            background: #ffffff;
            border-radius: 50%;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%); }
      .bs-sec.typ-services .sec-cont .swiper-navigation {
        width: 66.6666666667vw;
        background: transparent;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.3888888889vw;
        height: 2.0833333333vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 0; }
      .bs-sec.typ-services .sec-cont .swiper-button-next,
      .bs-sec.typ-services .sec-cont .swiper-button-prev {
        width: 12px;
        height: 24px;
        margin: 0;
        position: static; }
        .bs-sec.typ-services .sec-cont .swiper-button-next:after,
        .bs-sec.typ-services .sec-cont .swiper-button-prev:after {
          content: none; }
        .bs-sec.typ-services .sec-cont .swiper-button-next:hover, .bs-sec.typ-services .sec-cont .swiper-button-next:focus,
        .bs-sec.typ-services .sec-cont .swiper-button-prev:hover,
        .bs-sec.typ-services .sec-cont .swiper-button-prev:focus {
          outline: none; }
      .bs-sec.typ-services .sec-cont .swiper-button-next {
        background: url("../images/right-arrow.svg") center center no-repeat;
        background-size: cover; }
      .bs-sec.typ-services .sec-cont .swiper-button-prev {
        background: url("../images/left-arrow.svg") center center no-repeat;
        background-size: cover; }
  .bs-sec.services-inner {
    padding: 12.5vw 0 5.5555555556vw; }
    .bs-sec.services-inner .sec-head {
      margin-bottom: 4.8611111111vw;
      padding: 0 1.3888888889vw; }
      .bs-sec.services-inner .sec-head .cm-title {
        font-size: 4.8611111111vw;
        line-height: 5.5555555556vw;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        margin-bottom: 1.7361111111vw; }
      .bs-sec.services-inner .sec-head .desc {
        width: 52.0833333333vw;
        font-size: 1.25vw;
        line-height: 1.9444444444vw;
        color: #ffffff; }
    .bs-sec.services-inner .sec-cont .swiper-wrapper {
      height: auto; }
    .bs-sec.services-inner .sec-cont .img-slider {
      position: relative;
      margin-bottom: 5.5555555556vw; }
      .bs-sec.services-inner .sec-cont .img-slider .img-wrap {
        height: 41.6666666667vw;
        width: 100%; }
    .bs-sec.services-inner .sec-cont .thumbnail-wrap {
      position: absolute;
      bottom: 2.0833333333vw;
      right: 2.0833333333vw;
      z-index: 1; }
      .bs-sec.services-inner .sec-cont .thumbnail-wrap .thumbnail {
        cursor: pointer;
        border: 1px solid #979797;
        height: 5.9027777778vw;
        width: 9.0277777778vw;
        margin-right: 1.3888888889vw;
        display: inline-block; }
        .bs-sec.services-inner .sec-cont .thumbnail-wrap .thumbnail:last-of-type {
          margin-right: 0; }
    .bs-sec.services-inner .sec-cont .cont-wrap {
      padding: 0 13.1944444444vw; }
      .bs-sec.services-inner .sec-cont .cont-wrap .desc {
        font-size: 1.1111111111vw;
        line-height: 1.9444444444vw;
        margin-bottom: 1.7361111111vw; }
        .bs-sec.services-inner .sec-cont .cont-wrap .desc .desc-title {
          font-size: 1.25vw;
          line-height: 2.2222222222vw;
          margin-bottom: 0.6944444444vw;
          text-transform: uppercase;
          font-weight: 700; }
        .bs-sec.services-inner .sec-cont .cont-wrap .desc .list .item {
          position: relative;
          padding-left: 1.0416666667vw;
          font-size: 1.1111111111vw;
          line-height: 1.3888888889vw;
          margin-bottom: 0.3472222222vw;
          margin-top: 0.3472222222vw; }
          .bs-sec.services-inner .sec-cont .cont-wrap .desc .list .item:last-of-type {
            margin-bottom: 0; }
          .bs-sec.services-inner .sec-cont .cont-wrap .desc .list .item:before {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            width: 0.4166666667vw;
            height: 0.4166666667vw;
            border-radius: 50%;
            background-color: #cccccc; }

@keyframes movingrunway {
  0% {
    margin-left: 0%; }
  50% {
    margin-left: -50%; }
  100% {
    margin-left: -100%; } }
@media only screen and (max-width: 1024px) {
  .bs-sec.typ-about {
    padding: 2rem 0 8rem; }
    .bs-sec.typ-about .container {
      display: block; }
    .bs-sec.typ-about .sec-head,
    .bs-sec.typ-about .sec-cont {
      width: 100%; }
    .bs-sec.typ-about .sec-head {
      margin-bottom: 2rem; }
    .bs-sec.typ-about .sec-cont {
      padding: 0; }
      .bs-sec.typ-about .sec-cont strong {
        font-size: 1.4rem;
        line-height: 1.8rem; }
      .bs-sec.typ-about .sec-cont .desc {
        font-size: 1.3rem;
        line-height: 1.7rem;
        margin-bottom: 3rem; }
  .bs-sec.typ-infography .infography-wrap {
    height: 50rem; }
    .bs-sec.typ-infography .infography-wrap .img-wrap {
      background-attachment: unset;
      transform: scale(1);
      background-position: left center; }
    .bs-sec.typ-infography .infography-wrap .content {
      font-size: 1.3rem;
      line-height: 1.8rem;
      padding: 0 2rem; }
    .bs-sec.typ-infography .infography-wrap:before {
      border-top-width: 6rem; }
    .bs-sec.typ-infography .infography-wrap:after {
      border-bottom-width: 6rem; }
  .bs-sec.typ-services {
    padding: 8rem 0 5rem; }
    .bs-sec.typ-services .sec-head {
      margin-bottom: 2rem; }
    .bs-sec.typ-services .sec-cont {
      padding-left: 3rem; }
      .bs-sec.typ-services .sec-cont .swiper-slide {
        width: 24rem; }
      .bs-sec.typ-services .sec-cont .swiper-scrollbar {
        display: none; }
      .bs-sec.typ-services .sec-cont .swiper-navigation {
        display: none; }
  .bs-sec.typ-charters .sec-head {
    position: static;
    margin-bottom: 1.5rem; }
    .bs-sec.typ-charters .sec-head .cm-title {
      font-size: 1.3rem;
      line-height: 1.7rem; }
  .bs-sec.typ-charters .sec-cont .infography-wrap {
    background-image: url("../images/time-bg-mob.png");
    height: 40rem; }
    .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap {
      width: 100vw;
      flex-direction: column;
      align-items: center;
      height: 100%;
      justify-content: space-around;
      position: static;
      transform: none; }
      .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap .flight-item {
        width: auto; }
        .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap .flight-item .time {
          font-size: 2rem;
          line-height: 2.4rem;
          margin-bottom: 1rem; }
        .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap .flight-item .name {
          font-size: 1.3rem;
          line-height: 1.7rem; }
      .bs-sec.typ-charters .sec-cont .infography-wrap .flight-wrap:before {
        width: 5rem;
        height: 5rem;
        top: 54%; }
  .bs-sec.typ-benefits {
    padding: 2rem 0 5rem; }
    .bs-sec.typ-benefits .container {
      display: block; }
      .bs-sec.typ-benefits .container .sec-head {
        margin-bottom: 10rem;
        width: 100%; }
      .bs-sec.typ-benefits .container .sec-cont {
        display: block;
        width: 100%; }
        .bs-sec.typ-benefits .container .sec-cont .benefits-list {
          display: block; }
          .bs-sec.typ-benefits .container .sec-cont .benefits-list .benefits {
            width: 90%;
            margin-bottom: 2rem;
            padding-right: 0;
            padding-left: 2rem; }
            .bs-sec.typ-benefits .container .sec-cont .benefits-list .benefits .title {
              font-size: 1.4rem;
              line-height: 1.8rem;
              margin-bottom: 1rem; }
            .bs-sec.typ-benefits .container .sec-cont .benefits-list .benefits .desc {
              font-size: 1.2rem;
              line-height: 1.6rem; }
            .bs-sec.typ-benefits .container .sec-cont .benefits-list .benefits:before {
              width: 1.5rem;
              height: 2rem; }
    .bs-sec.typ-benefits .infography-wrap {
      width: 22rem;
      right: -6rem; }
  .bs-sec.typ-credential {
    padding: 5rem 0; }
    .bs-sec.typ-credential .sec-head {
      margin-bottom: 2rem; }
    .bs-sec.typ-credential .sec-cont .credential-list {
      display: block; }
    .bs-sec.typ-credential .sec-cont .credential-item {
      width: 100%;
      padding-right: 0;
      padding-left: 0;
      padding-bottom: 2rem;
      padding-top: 2rem;
      border-bottom: 1px solid #979797; }
      .bs-sec.typ-credential .sec-cont .credential-item:before {
        content: none; }
      .bs-sec.typ-credential .sec-cont .credential-item .mod-credential {
        width: 100%; }
      .bs-sec.typ-credential .sec-cont .credential-item:last-of-type {
        padding-bottom: 0;
        border-bottom: none; }
      .bs-sec.typ-credential .sec-cont .credential-item:first-of-type {
        padding-top: 0; }
    .bs-sec.typ-credential .sec-cont .credential-detail {
      margin-bottom: 3.2rem; }
      .bs-sec.typ-credential .sec-cont .credential-detail .title {
        font-size: 1.7rem;
        line-height: 2.2rem;
        margin-bottom: 2.5rem; }
  .bs-sec.typ-operations {
    padding: 2rem 0 7rem; }
    .bs-sec.typ-operations .sec-head {
      padding: 0 3rem;
      margin-bottom: 6rem; }
      .bs-sec.typ-operations .sec-head .cm-title {
        font-size: 3rem;
        line-height: 2.6rem;
        float: none; }
    .bs-sec.typ-operations .sec-cont .infography-wrap {
      margin-bottom: 2rem; }
      .bs-sec.typ-operations .sec-cont .infography-wrap .img-wrap {
        width: 15rem; }
    .bs-sec.typ-operations .sec-cont .download-btn {
      margin-left: 3rem;
      font-size: 1.2rem;
      line-height: 1.6rem;
      padding-left: 2.8rem; }
      .bs-sec.typ-operations .sec-cont .download-btn:before {
        width: 1.8rem;
        height: 2.3rem; }
  .bs-sec.typ-reach {
    display: block;
    background: transparent; }
    .bs-sec.typ-reach .sec-head,
    .bs-sec.typ-reach .sec-cont {
      width: 100%; }
    .bs-sec.typ-reach .sec-cont {
      padding: 3rem 3rem 0; }
      .bs-sec.typ-reach .sec-cont .bs-form {
        width: 100%; }
    .bs-sec.typ-reach .sec-head {
      height: 30rem;
      background: url("../images/reach-us-bg.jpg") center center no-repeat;
      background-size: cover;
      position: relative; }
      .bs-sec.typ-reach .sec-head .cm-title {
        margin-bottom: 4rem;
        position: absolute;
        left: 3rem;
        top: 35%;
        font-size: 3rem;
        line-height: 3rem; }
      .bs-sec.typ-reach .sec-head .email-link,
      .bs-sec.typ-reach .sec-head .call-link {
        font-size: 1.3rem;
        line-height: 1.7rem;
        position: absolute;
        left: 3rem;
        top: 60%; }
      .bs-sec.typ-reach .sec-head .call-link {
        top: 68%; }
      .bs-sec.typ-reach .sec-head:before {
        content: none; }
      .bs-sec.typ-reach .sec-head .social-wrap {
        position: absolute;
        top: 78%; }
        .bs-sec.typ-reach .sec-head .social-wrap .social-item {
          margin-right: 1.2rem; }
          .bs-sec.typ-reach .sec-head .social-wrap .social-item .social-link {
            width: 2.8rem;
            height: 2.8rem; }
          .bs-sec.typ-reach .sec-head .social-wrap .social-item img {
            height: 2rem; }
  .bs-sec.services-inner .sec-head {
    margin-bottom: 2rem;
    padding: 0; }
    .bs-sec.services-inner .sec-head .cm-title {
      margin-bottom: 2rem;
      font-size: 2.2rem;
      line-height: 2.6rem; }
    .bs-sec.services-inner .sec-head .desc {
      width: 100%;
      font-size: 1.4rem;
      line-height: 2rem; }
  .bs-sec.services-inner .sec-cont .img-slider {
    margin-bottom: 3rem; }
    .bs-sec.services-inner .sec-cont .img-slider .img-wrap {
      height: 18rem; }
    .bs-sec.services-inner .sec-cont .img-slider .swiper-container {
      margin-bottom: 1rem; }
  .bs-sec.services-inner .sec-cont .thumbnail-wrap {
    position: static;
    overflow-x: auto;
    display: flex; }
    .bs-sec.services-inner .sec-cont .thumbnail-wrap .thumbnail {
      min-width: 7.5rem;
      width: 7.5rem;
      height: 6.5rem;
      margin-right: 1.5rem; }
  .bs-sec.services-inner .sec-cont .cont-wrap {
    padding: 0; }
    .bs-sec.services-inner .sec-cont .cont-wrap .desc {
      font-size: 1.3rem;
      line-height: 2rem;
      margin-bottom: 2rem; }
      .bs-sec.services-inner .sec-cont .cont-wrap .desc .desc-title {
        font-size: 1.3rem;
        line-height: 1.7rem;
        margin-bottom: 1.2rem; }
      .bs-sec.services-inner .sec-cont .cont-wrap .desc .list .item {
        font-size: 1.2rem;
        line-height: 1.6rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding-left: 1rem; }
        .bs-sec.services-inner .sec-cont .cont-wrap .desc .list .item:before {
          width: 0.6rem;
          height: 0.6rem;
          transform: none;
          top: 0.4rem; } }
.bs-form {
  background-color: #000000; }
  .bs-form .form-group {
    margin-bottom: 3.8194444444vw; }
  .bs-form .form-control {
    border: none;
    border-bottom: 1px solid #979797;
    padding: 1.0416666667vw 1.7361111111vw;
    background: transparent;
    box-shadow: none;
    font-size: 0.8333333333vw;
    line-height: 1.1111111111vw;
    width: 100%;
    margin: 0;
    text-transform: uppercase;
    color: #ffffff;
    height: auto;
    box-sizing: border-box; }
    .bs-form .form-control:placeholder {
      color: #ffffff;
      text-transform: uppercase;
      opacity: 0.65; }
    .bs-form .form-control:focus {
      outline: none;
      box-shadow: none; }
  .bs-form textarea.form-control {
    resize: none;
    border: 1px solid #979797; }
  .bs-form .act-wrap {
    text-align: right;
    position: relative; }
    .bs-form .act-wrap .msg-showing {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      font-size: 1.1111111111vw;
      line-height: 1.3888888889vw;
      text-transform: uppercase;
      font-weight: 700;
      font-family: "Montserrat", sans-serif;
      color: #ffffff;
      padding: 0 1.7361111111vw; }

@media only screen and (max-width: 1024px) {
  .bs-form .form-control {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
    line-height: 1.7rem; }
  .bs-form .form-group {
    margin-bottom: 3.5rem; }
  .bs-form .act-wrap {
    text-align: center;
    padding-left: 0.8rem; } }
.bs-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 13;
  background: #000000;
  display: flex;
  flex-direction: column;
  width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-in; }
  .bs-modal .modal-header {
    padding: 5.5555555556vw 10.4166666667vw 2.7777777778vw;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .bs-modal .modal-header .title {
      font-size: 2.9166666667vw;
      line-height: 3.1944444444vw;
      color: #ffffff;
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      text-transform: uppercase; }
    .bs-modal .modal-header .close-btn {
      width: 2.0833333333vw;
      height: 2.0833333333vw;
      background: url("../images/close.svg") center center no-repeat;
      background-size: cover;
      cursor: pointer;
      padding: 0; }
  .bs-modal .modal-body {
    padding: 2.0833333333vw 10.4166666667vw;
    overflow-y: auto;
    flex-grow: 1; }
    .bs-modal .modal-body > strong {
      display: block;
      margin-bottom: 1.3888888889vw;
      font-size: 1.5277777778vw;
      line-height: 1.8055555556vw;
      text-transform: uppercase;
      font-weight: 400; }
    .bs-modal .modal-body .desc {
      font-size: 1.25vw;
      line-height: 1.8055555556vw;
      font-weight: 300;
      margin-bottom: 1.0416666667vw; }
      .bs-modal .modal-body .desc strong {
        font-size: 1.25vw;
        line-height: 1.8055555556vw;
        font-weight: 700;
        text-transform: initial;
        margin-bottom: 0; }
  .bs-modal.active {
    opacity: 1;
    visibility: visible; }

@media only screen and (max-width: 1024px) {
  .bs-modal .modal-header {
    padding: 1rem 1.5rem; }
    .bs-modal .modal-header .title {
      font-size: 1.8rem;
      line-height: 2.2rem; }
    .bs-modal .modal-header .close-btn {
      width: 1.4rem;
      height: 1.4rem; }
  .bs-modal .modal-body {
    padding: 1rem 1.5rem; }
    .bs-modal .modal-body > strong {
      margin-bottom: 1.2rem;
      font-size: 1.4rem;
      line-height: 1.8rem; }
    .bs-modal .modal-body .desc {
      font-size: 1.2rem;
      line-height: 1.6rem;
      margin-bottom: 1rem; }
      .bs-modal .modal-body .desc strong {
        font-size: 1.2rem;
        line-height: 1.6rem; } }
/* modules */
.mod-credential {
  color: #ffffff; }
  .mod-credential .name {
    display: block;
    font-size: 1.1111111111vw;
    line-height: 1.3888888889vw;
    margin-bottom: 0.6944444444vw;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif; }
  .mod-credential .desg {
    font-size: 0.9722222222vw;
    line-height: 1.25vw;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 400; }
  .mod-credential p {
    font-size: 1.1111111111vw;
    line-height: 1.7361111111vw;
    margin-bottom: 1.0416666667vw; }
    .mod-credential p:last-of-type {
      margin-bottom: 0; }
    .mod-credential p strong {
      display: inline-block;
      margin-left: 0.5555555556vw; }

@media only screen and (max-width: 1024px) {
  .mod-credential .name {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 1rem; }
  .mod-credential .desg {
    font-size: 1.2rem;
    line-height: 1.6rem; }
  .mod-credential p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-bottom: 1.5rem; }
    .mod-credential p strong {
      margin-left: 0.5rem; } }
.mod-service {
  position: relative; }
  .mod-service .img-wrap {
    position: relative;
    margin-bottom: 2.0833333333vw;
    overflow: hidden; }
    .mod-service .img-wrap:before {
      left: 0;
      right: 0;
      position: absolute;
      content: '';
      bottom: -3.4722222222vw;
      background-color: #000000;
      height: 3.4722222222vw;
      transform: skewY(0deg);
      transform-origin: left;
      transition: all 0.4s ease-out; }
    .mod-service .img-wrap img {
      transition: all 0.4s ease-out;
      width: 100%;
      display: block;
      transform: scale(1.01);
      position: relative;
      z-index: -1;
      opacity: 1; }
    .mod-service .img-wrap:after {
      right: 0.2083333333vw;
      bottom: 0;
      width: 1.3888888889vw;
      height: 1.3888888889vw;
      background: url("../images/link-arrow.svg") center center no-repeat;
      background-size: cover;
      position: absolute;
      content: '';
      transform: translateX(-5px);
      opacity: 0;
      z-index: 1;
      transition: opacity 0.3s ease-out, transform 0.4s ease-out; }
  .mod-service .cont-wrap {
    position: relative; }
    .mod-service .cont-wrap .service-name {
      z-index: 1;
      font-size: 1.25vw;
      line-height: 1.5277777778vw;
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      margin-bottom: 0.6944444444vw;
      text-transform: uppercase; }
    .mod-service .cont-wrap .desc {
      z-index: 1;
      padding-right: 2.7777777778vw;
      font-size: 0.9722222222vw;
      line-height: 1.3888888889vw; }
  .mod-service .link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .mod-service:hover .img-wrap:before {
    transform: skewY(-5deg); }
  .mod-service:hover .img-wrap img {
    opacity: 0.8;
    transform: scale(1); }
  .mod-service:hover .img-wrap:after {
    transform: translateX(0px);
    opacity: 1; }

@media only screen and (max-width: 1024px) {
  .mod-service .img-wrap {
    margin-bottom: 1.5rem; }
    .mod-service .img-wrap:before, .mod-service .img-wrap:after {
      content: none; }
  .mod-service .cont-wrap .service-name {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 1rem;
    padding-right: 2.5rem;
    position: relative; }
    .mod-service .cont-wrap .service-name:before {
      content: '';
      position: absolute;
      width: 1.5rem;
      height: 1.5rem;
      top: 0;
      right: 1rem;
      background: url("../images/link-arrow.svg") center center no-repeat;
      background-size: cover; }
  .mod-service .cont-wrap .desc {
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding-right: 2.5rem; } }
/* layout */
.lyt-main {
  padding-bottom: 9.7222222222vw; }
  .lyt-main.typ-services .services-sec {
    display: none; }
    .lyt-main.typ-services .services-sec.active {
      display: block; }

@media only screen and (max-width: 1024px) {
  .lyt-main.typ-services {
    padding-top: 7rem; } }
/* plugin */

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