 html{
    font: 1.45rem;
 }
.lock{
  position: relative;
  height: 100%;
  overflow: hidden;
 }
h1,
h2,
h3,
h4,
h5,
p{
    font-family: 'Montserrat', sans-serif;
}

.ts-page-wrapper {
  height: 100%;
}
.ts-page-wrapper > .container {
  display: table;
  height: 100%;
}
#header, #footer {
  display: table-row;
}

#main-content {
  display: table;
  height: 100vh;
  width: 100%;
}

#main-content .ts-content-wrapper {
  display: table-cell;
  vertical-align: middle;
  padding-top: 5%;
}

.lang-bar{
  position: absolute;
  right: -7.5%;
  top: 50px;
}
.lang-bar ul{
  margin-bottom: 0;
  list-style: none;
  padding-left:0 ;
}
.lang-bar ul li{
  display: inline-block;
}
.lang-bar ul li a{
  padding: 0 10px;
  color: #e1e1e1;
  font-size: 14px;
}
.lang-eng{
  position: relative;
  padding-left: 4px;
}
.lang-eng::before{
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  border: 0.5px solid #e1e1e1;
  top: 0;
  left:0;
}
#footer {
  vertical-align: bottom;
  background-color:#c8373e;
  width: 100%;
  height: 50px;
 position: absolute;
 bottom: 0;
}

.ts-background {
  bottom: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.ts-background .ts-background {
  height: 100%;
  width: 100%;
}

.ts-background-image, .ts-img-into-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  height: 100%;
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ts-background-particles {
  height: 120%;
  left: 0;
  margin-left: -10%;
  margin-top: -10%;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 120%;
  z-index: 1;
}
 .logo-box{
     position: absolute;
     top: 1rem;
     left: 1rem;
 }

 
 .menu-navigation nav {
  background-image: linear-gradient(180deg, #134374 0%, #134374 100%);
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 0;
   visibility: hidden;
   -webkit-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
   z-index: 9999 !important;
 }
 .menu-navigation nav ul {
  text-align: center;
   list-style-type: none;
   padding: 0;
   margin: 0;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   list-style: none;
   width: 100%;
   overflow: hidden;
 }
 .menu-navigation nav ul li {
   -webkit-transform: translateY(50px);
           transform: translateY(50px);
   opacity: 0;
 }
 .menu-navigation nav ul li a {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
;
  text-decoration: none;
  text-transform: uppercase;
   -webkit-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
 }
 .menu-navigation nav ul li a:hover {
   color: #E84A5F;
 }
 
 .toggle-btn {
   display: block;
   position: absolute;
   right: 5rem;
   top: 2rem;
   cursor: pointer;
   z-index: 10000 !important;
 }
 .toggle-btn .bar {
   width: 30px;
   height: 2px;
   margin: 7px auto;
   background-color: #fff;
   -webkit-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
   box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
   z-index: 10000 !important;
 }
 .toggle-btn .bar:nth-child(2) {
   width: 20px;
   
 }
 
 #toggle:checked ~ nav {
   opacity: 1;
   visibility: visible;
 }

 #toggle:checked ~ nav ul li {
   -webkit-transform: translateY(0px);
           transform: translateY(0px);
   opacity: 1;
 }
 #toggle:checked ~ nav ul li:nth-child(1) {
   -webkit-transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
   transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
 }
 #toggle:checked ~ nav ul li:nth-child(2) {
   -webkit-transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
   transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
 }
 #toggle:checked ~ nav ul li:nth-child(3) {
   -webkit-transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
   transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
 }
 #toggle:checked ~ nav ul li:nth-child(4) {
   -webkit-transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
   transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
 }
 #toggle:checked + label.toggle-btn .bar {
   background-color: red;
 }
 #toggle:checked + label.toggle-btn .bar:nth-child(2) {
   -webkit-transform: translateX(50px);
           transform: translateX(50px);
   opacity: 0;
 }
 #toggle:checked + label.toggle-btn .bar:nth-child(1) {
   -webkit-transform: translateY(10px) rotate(45deg);
           transform: translateY(10px) rotate(45deg);
 }
 #toggle:checked + label.toggle-btn .bar:nth-child(3) {
   -webkit-transform: translateY(-8px) rotate(-45deg);
           transform: translateY(-8px) rotate(-45deg);
 }
 

.img-air{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -78px;
}
.vl{
    width: 1px;
    height: 341px;
    margin: 0 auto;
    border-left: 1px solid #ffffff;
    position: absolute;
    left: 50%;
  
}
.card-box-one{
    max-width: 371px;
    margin-top: 5rem;
}
.card-box-two{
    max-width: 371px;
    margin-top: 5rem;
    float: right;
}
.card-title{
    color: #ffffff;
    font-size: 2.187rem;
    font-weight: 600;
    margin-bottom: 1.5rem!important;
  
}
.card-text{
color: #ffffff;
font-size: 1.125rem;
font-weight: 300;
line-height: 31px;
margin-bottom: 1.5rem!important;
padding-right:35px ;
}
.card-text-fix{
  min-height: 124px;
}
.btn-air{
text-decoration: none;
display: block;
text-align: center;
padding: .375rem .75rem;
height: 55px;
background-color: #c8373e;
color: #134374;
font-size: 1rem!important;
font-weight: 600!important;
letter-spacing: 1.26px;
line-height: 38px!important;
text-transform: uppercase;
border-radius: 0!important;
transition: all .3s;
position: relative;
overflow: hidden;
z-index: 2;
-webkit-transform: translateZ(0);
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-moz-osx-font-smoothing: grayscale;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
}
.btn-air:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e1e1e1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .btn-air:hover, .btn-air:focus, .btn-air:active {
    color: white;
  }
  .btn-air:hover:before, .btn-air:focus:before, .btn-air:active:before {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
.btn-air:hover{
    text-decoration: none;
    }
 

    .dropbtn {
      background-color: transparent;
      color: white;
      padding: 0 16px 0 16px;
      font-size: 16px;
      border: none;
      cursor: pointer;
      font-size: 18px;
    }
    
    .dropbtn:hover, .dropbtn:focus {
      background-color: transparent;
        outline: 0;
        border: none;
        -moz-outline-style: none;
    }
    
    .dropdown {
      position: absolute !important;
      top: 34px;
      right:0;
      display: inline-block;
    }
    .dropdown::before {
      content: "";
      position: absolute;
      top: 8px;
      right:-3px;
      bottom: 21px;
      width: 11px;
      background: rgba(255, 255, 255, 0.75);
      -webkit-clip-path: polygon(50% 73%, 0 0, 100% 0);
      clip-path: polygon(50% 73%, 0 0, 100% 0);
      padding: 8px;
      box-sizing: border-box;
      transition: .3s all ease;
    }
    .dropdown-contenta:active, a:focus {
      outline: 0;
      border: none;
      -moz-outline-style: none;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #e1e1e1;
      min-width: 60px;
      overflow: auto;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 11000;
    }
    
    .dropdown-content a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      transition: all 400ms;
    }
    
    .dropdown a:hover {
      color: #c8373e;
    text-decoration:none;
    }
    
    .show {display: block;}

    label{
      margin-bottom: 0 !important;
    }   
@media only screen and (max-width: 991px) {
  .menu-navigation nav ul li a{
    font-size: 2rem;
  }
  .toggle-btn {
    right: 2rem;
  }
.card-text{
    padding: 0;
    min-height:124px ;
}
.card-text-fix{
  min-height: 155px;
}

#footer{
  bottom: -58px;
}
.dropdown {
  right:-7%;
}
}
@media only screen and (max-width: 767px) {
  #main-content .ts-content-wrapper{
    padding-top: 30%;
  }
 .card-box-one{
     margin: 0 auto;
 }
 .card-box-two{
     margin: 0 auto;
     float: none;
 }
 .card-text{
     min-height: 74px;
     margin:0;
 }
 .air-rotate{
     transform: rotate(90deg);
     margin: 54px 0;
 }
 .vl{
     height:391px;
 }
 .m-t-3{
     margin-top: 3rem;
 }
 
 #footer{
  display: inline-block;
  margin-top: 75px;
  position: unset;
  bottom: 0;
}
.dropdown {
  right:-10%;
}
}
@media only screen and (max-width: 683px){
  .toggle-btn {
    top:4.5rem;
  }
  .dropdown {
    top: 1.5rem;
    right:5.5%;
  }
  .logo-box{
    top: 2rem;
  }
}
@media only screen and (max-width: 590px) {
    .logo-box img{
        width: 130px!important;
        right: 1rem;
    }
    .dropdown {
      right:7.5%;
    }
    .menu-navigation nav ul li a {
      font-size: 1.5rem;
  }
}
@media only screen and (max-width: 480px){
  #main-content .ts-content-wrapper{
    padding-top: 35%;
  }
.ts-page-wrapper > .container{
  padding: 0 30px;
}
#main-content .ts-content-wrapper{
  padding-top: 50%;
}
.card-title{
  font-size: 1.9rem!important;
}
.card-text{
  font-size: 1rem!important;
}
}
@media only screen and (max-width: 375px){
    .card-box-one,
    .card-box-two{
        padding: 30px;
    }
  }

@media only screen 
and (min-device-width: 375px) 
and (max-device-width: 812px) 
and (-webkit-min-device-pixel-ratio: 3)
and (orientation: landscape) { 
  .logo-box img{
    width: 130px!important;
}
.card-title{
  font-size: 1.3rem;
}
.card-text{
font-size: .8rem;
min-height: auto;
}
.card-box-one,
.card-box-two{
margin-top: 1.5rem;
}
}
@media only screen 
and (min-device-width: 360px) 
and (max-device-width: 740px) 
and (-webkit-min-device-pixel-ratio: 3)
and (orientation: landscape) { 
  .air-rotate {
    position: relative;
    top: 0!important;
  }
  .air-rotate .vl {
    height: 391px!important;
  }

}

@media only screen 
and (min-device-width: 375px) 
and (max-device-width: 812px) 
and (-webkit-min-device-pixel-ratio: 3)
and (orientation: landscape) { 
  #main-content .ts-content-wrapper {
    padding-top:25%;
}
  .air-rotate {
    position: relative;
    top: 50px;
  }
  .air-rotate .vl {
    height: 180px;
  }
  .air-rotate .img-air {
    top: -60px;
  }
  #footer{
    display: inline-block;
    margin-top: 75px;
    position: unset;
    bottom: 0;
  }
 
}

.cookie-box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 1rem 2rem;
  background: #c8373e;
  color: #fff;
  -webkit-transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 9999 !important;
}
.cookie-box--hide {
  opacity: 0;
  bottom: -100%;
}

.cookie-button {
  display: inline-block;
  cursor: pointer;
  padding: 0.65rem 0.85rem;
  margin-left: 0.45rem;
  color: #c8373e;
  font-size: 0.75rem;
  letter-spacing: 1px;
 background-color: #e1e1e1;
}
