@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400&display=swap");
@font-face {
  font-family: 'Gotham Rounded';
  src: url("../fonts/GothamRounded-Light.otf");
  font-weight: 100;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url("../fonts/GothamRounded-Book.otf");
  font-weight: 400;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url("../fonts/GothamRounded-Medium.otf");
  font-weight: 600;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url("../fonts/GothamRounded-Bold.otf");
  font-weight: 900;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-size: 4rem;
  letter-spacing: -.01em;
  font-style: normal;
}

h2 {
  font-size: 3rem;
  line-height: 1em;
}

h3 {
  font-size: calc(19.6px + (28 - 19.6) * ((100vw - 320px) / (1920 - 320))) !important;
}

h4 {
  font-size: calc(15.4px + (22 - 15.4) * ((100vw - 320px) / (1920 - 320))) !important;
}

h5 {
  font-size: calc(12.6px + (18 - 12.6) * ((100vw - 320px) / (1920 - 320))) !important;
}

h6 {
  font-size: calc(11.2px + (16 - 11.2) * ((100vw - 320px) / (1920 - 320))) !important;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

.bg-dark {
  background-color: #282828;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
}

header {
  z-index: 999;
}

header .top-header {
  color: #ccc;
  background-color: #212a42;
  padding: 10px 0;
  font-size: 13px;
}

header .top-header .top-info {
  padding: 0 15px;
  text-align:center;
}

header .top-header .top-info li a {
  color: inherit;
  text-decoration: none;
}

header .top-header .top-info li a:hover {
  color: #fff;
  transition: all .3s ease;
}

header .top-header .top-info li:last-child {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width:640px){
  
header .top-header .top-info li:last-child {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}  
}

header .top-header .social-links {
  padding: 0 15px;
}

header .top-header .social-links li:first-child {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

header .top-header .social-links li:first-child a {
  width: auto;
  height: auto;
}

header .top-header .social-links li a {
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  text-decoration: none;
}

header .top-header .social-links li a:hover {
  color: #fff;
  transition: all .3s ease;
}

nav {
  width: 100%;
  display: flex;
  z-index: 999;
  background-color: #fff;
}

nav .nav-content {
  height: 110px;
  transition: all .3s ease;
}

nav .navbar-brand {
  padding: 1vh 1vw;
  text-align: center;
}

/*Styling Links*/
.nav-links {
  display: flex;
  list-style: none;
  padding: 0 0.7vw;
  justify-content: space-evenly;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
  padding: .2rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #212a42;
}

.nav-links li a:hover {
  color: #f8ae3e;
}

.nav-links li.active a {
  color: #f8ae3e;
}

.nav-links li.active a:hover {
  color: #f8ae3e;
}

.hamburger {
  display: none;
  z-index: 999;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background: #212a42;
  margin: 5px;
  transition: all 0.3s ease;
}

/*Stying for small screens*/
@media screen and (max-width: 992px) {
  nav .nav-links {
    position: fixed;
    background: #212a42;
    height: 100vh;
    width: 100% !important;
    left: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    clip-path: circle(40px at 90% -20%);
    transition: all 1s ease-out;
    pointer-events: none;
    z-index: 998;
  }
  nav .nav-links.open {
    clip-path: circle(1000px at 50% -10%);
    pointer-events: all;
  }
  nav .nav-links li {
    opacity: 0;
  }
  nav .nav-links li a {
    color: #ccc;
    padding: 1rem;
  }
  nav .nav-links li.fade {
    opacity: 1;
  }
  nav .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }
  nav .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }
  nav .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }
  nav .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }
  nav .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }
  nav .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
  }
  nav .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
  }
  nav .nav-links li:nth-child(8) {
    transition: all 0.5s ease 1.1s;
  }
  .hamburger {
    display: block;
    cursor: pointer;
    transition: all 0.7s ease;
  }
}

/*Animating Hamburger Icon on Click*/
.toggle {
  position: absolute;
  right: 1em;
  top: 2em;
}

.toggle > div {
  background-color: #fff;
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 520px) {
  .top-header .top-header-content {
    flex-direction: column;
  }
}

#nav.scroll-to-fixed-fixed {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) !important;
}

#nav.scroll-to-fixed-fixed .nav-content {
  height: 90px;
}

.btn-custom {
  border-radius: 50px;
  background-color: #f8ae3e;
  border: 2px solid #f8ae3e;
  color: #fff;
  transition: all .3s ease;
}

.btn-custom:hover {
  color: #f8ae3e;
  background-color: transparent;
}

.btn-primary {
  border-radius: 50px;
  background-color: #212a42;
  border: 2px solid #212a42;
  color: #fff;
  transition: all .3s ease;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  color: #212a42;
  background-color: transparent;
  border-color: #212a42;
  outline: unset;
  box-shadow: none;
}

.btn-outline-light {
  border-radius: 50px;
  border: 2px solid #f8f9fa;
  transition: all .3s ease;
}

.btn-outline-light:hover {
  color: #212a42;
}

.-link.btn-primary {
  margin-right: 20px;
}

.-link.btn-primary:hover, .-link.btn-primary:focus {
  background-color: #fff;
  border-color: #fff;
}

.scroll-top {
  opacity: 0.5;
  position: fixed;
  bottom: -40px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #415161;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s;
}

.scroll-top:hover {
  opacity: 1;
  box-shadow: -2px 2px 23px -6px black;
}

.scroll-top i {
  color: #ffffff;
  margin-bottom: 3px;
}

.scroll-top__showing {
  z-index: 2;
  bottom: 40px;
}

.button1 {
  width: 180px;
  padding-right: 30px;
}

.button1 a {
  font-weight: 600;
  background-color: #f8ae3e;
}

@media screen and (max-width: 992px) {
  .button1 {
    width: 190px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .button1 a {
    font-size: 12px;
  }
}

.book-link {
  margin-right: 20px;
  font-size: 14px;
  color: #212a42;
}

.inner-block,
.section-block {
  padding: 90px 0;
}

.main-heading {
  font-weight: 700;
  color: #212a42;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .main-heading {
    margin-bottom: 20px;
  }
}

.text-description {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: justify;
}

.info-block {
  background: linear-gradient(#0f0c29, #302b63, #24243e);
  color: #fff;
  border-radius: 10px;
  padding: 40px 20px;
}

.info-block ul {
  background-color: #fff;
  color: #212a42;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6) !important;
}

.info-block ul li {
  border-bottom: 1px solid #ccc;
}

.info-block ul li:last-child {
  border-bottom: none;
}

.contact-info {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  line-height: 2;
  letter-spacing: 1px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 10px 17.321px 30px 0px rgba(206, 206, 206, 0.4);
}

.contact-info ul li {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}

.contact-info ul li i {
  color: #2d3691;
}

.contact-info ul li p {
  color: #717171;
  line-height: 35px;
  margin-bottom: 0;
}

.contact-info .social-contact li {
  margin-bottom: 0;
}

.contact-info .social-contact li a {
  font-size: 40px;
  margin-right: 30px;
  transition: all .3s ease;
}

.contact-info .social-contact li a:hover {
  color: #f8ae3e;
}

.contact-info .social-contact li:first-child a i {
  color: #665CAC;
}

.contact-info .social-contact li:last-child a i {
  color: #25D366;
}

@media screen and (min-width: 992px) {
  .contact-info {
    padding: 50px;
  }
}

.section-book {
  background: url("../images/banner.jpg") no-repeat center;
  background-size: cover;
  color: #fff;
  position: relative;
}

.section-book h1 {
  font-weight: 700;
}

.bg-service {
  background: url("../images/7.png") no-repeat center;
  background-size: cover;
}

.pagination {
  position: absolute !important;
  width: 100%;
  text-align: center;
  right: 0;
  padding: 0 !important;
  bottom: 30px;
  z-index: 990;
}

.pagination__item {
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  font-size: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  margin: 0 5px;
  transition: .2s ease-in-out;
}

.pagination__item.is-current, .pagination__item:hover {
  background-color: #fff;
}

.background-absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-size: cover;
}

.slideshow {
  position: relative;
  color: #ffffff;
  background-color: #1e1e22;
  overflow: hidden;
  height: 79vh;
}

.slideshow__slide {
  visibility: hidden;
  transition: visibility 0s 1.7s;
}

.slideshow__slide.is-current {
  visibility: visible;
  transition-delay: 0s;
}

@media (max-width: 699px) {
  .slideshow .slideshow__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 700px) {
  .slideshow .slideshow__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.slideshow__slide-background-load-wrap {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
  overflow: hidden;
}

.is-loaded .slideshow__slide-background-load-wrap {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.slideshow__slide.is-prev .slideshow__slide-background-parallax,
.slideshow__slide.is-next .slideshow__slide-background-parallax {
  transform: none !important;
}

.slideshow__slide.is-prev-section .slideshow__slide-background-parallax,
.slideshow__slide.is-next-section .slideshow__slide-background-parallax {
  transform: none !important;
}

.slideshow__slide-background-load {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, -50%, 0);
}

.is-loaded .slideshow__slide-background-load {
  transform: translate3d(0, 0, 0);
}

.slideshow__slide-background-wrap {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-background-wrap {
  transform: translate3d(0, -100%, 0);
}

.slideshow__slide.is-next .slideshow__slide-background-wrap {
  transform: translate3d(0, 100%, 0);
}

.slideshow__slide.is-prev-section .slideshow__slide-background-wrap {
  transform: translate3d(0, -100%, 0);
  transition: none;
}

.slideshow__slide.is-next-section .slideshow__slide-background-wrap {
  transform: translate3d(0, 100%, 0);
  transition: none;
}

.slideshow__slide-background {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transform: scale(1);
  overflow: hidden;
}

.slideshow__slide.is-prev .slideshow__slide-background,
.slideshow__slide.is-next .slideshow__slide-background {
  transform: scale(0.5);
  transition-delay: 0s;
}

.slideshow__slide.is-prev-section .slideshow__slide-background,
.slideshow__slide.is-next-section .slideshow__slide-background {
  transform: scale(0.5);
  transition-delay: 0s;
  transition: none;
}

.slideshow__slide-image-wrap {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-image-wrap {
  transform: translate3d(0, 50%, 0);
}

.slideshow__slide-image {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transform: scale(1);
}

.slideshow__slide.is-prev .slideshow__slide-image,
.slideshow__slide.is-next .slideshow__slide-image {
  transform: scale(1.25);
  transition-delay: 0s;
}

.slideshow__slide.is-prev-section .slideshow__slide-image,
.slideshow__slide.is-next-section .slideshow__slide-image {
  transform: scale(1.25);
  transition-delay: 0s;
  transition: none;
}

.slideshow__slide-image::before,
.slideshow__slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.35;
}

.slideshow__slide-image::before {
  background-color: #1e1e22;
}

.slideshow__slide-image::after {
  background: linear-gradient(to bottom, transparent 0%, #1e1e22 100%);
}

.slideshow__slide.is-prev .slideshow_container,
.slideshow__slide.is-next .slideshow_container {
  transform: none !important;
}

.slideshow__slide.is-prev-section .slideshow_container,
.slideshow__slide.is-next-section .slideshow_container {
  transform: none !important;
}

.slideshow__slide-caption-text {
  position: relative;
  height: 100%;
  padding-top: 10vh;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-caption-text {
  transform: translate3d(0, -100%, 0);
}

.slideshow__slide.is-next .slideshow__slide-caption-text {
  transform: translate3d(0, 100%, 0);
}

.slideshow__slide.is-prev-section .slideshow__slide-caption-text {
  transform: translate3d(0, -100%, 0);
  transition: none;
}

.slideshow__slide.is-next-section .slideshow__slide-caption-text {
  transform: translate3d(0, 100%, 0);
  transition: none;
}

.slideshow__slide-caption {
  position: relative;
  height: 100%;
  transform: translate3d(0, 100%, 0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.is-loaded .slideshow__slide-caption {
  transform: translate3d(0, 0, 0);
}
.slideshow__slide-caption-subtitle1{
    font-size: 1.6em;
}
@media (max-width: 699px) {
  .slideshow__slide-caption-title {
    font-size: 40px !important;
    margin-bottom: 20px;
  }
  .slideshow.-full .slideshow__slide-caption-title {
    margin-bottom: 30px;
  }
  .c-header-home_footer {
    display: none;
  }
}

@media (min-width: 700px) {
  .slideshow__slide-caption-title {
    font-size: 4.9rem !important;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 700px) and (max-width: 749px) {
  .slideshow__slide-caption-title {
    font-size: 4.375rem !important;
  }
}

@media (min-width: 1600px) {
  .slideshow__slide-caption-title {
    font-size: 6.25rem !important;
  }
}

.slideshow__slide-caption-title.-full {
  width: 100%;
}

body[data-route-option="prev-section"] .slideshow__slide-caption-subtitle.-load,
body[data-route-option="next-section"] .slideshow__slide-caption-subtitle.-load {
  transform: translate3d(0, 0, 0);
}

/* OLD */
.c-header-home_heading {
  line-height: 1;
}

@media (max-height: 500px) {
  .c-header-home_heading {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 699px) {
  .c-header-home_heading {
    font-size: 40px;
    margin-bottom: 150px;
  }
  .c-header-home.-full .c-header-home_heading {
    margin-bottom: 30px;
  }
}

@media (min-width: 700px) {
  .c-header-home_heading {
    font-size: 5.625rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 700px) and (max-width: 749px) {
  .c-header-home_heading {
    font-size: 4.375rem;
  }
}

@media (min-width: 1600px) {
  .c-header-home_heading {
    font-size: 6.25rem;
  }
}

.c-header-home_heading.-full {
  width: 100%;
}

.c-header-home_subheading {
  display: inline-block;
  padding: 1.875rem 0;
}

.c-header-home_subheading.-load {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: translate3d(0, 3.75rem, 0);
}

.is-loaded .c-header-home_subheading.-load {
  transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .c-header-home_subheading.-load,
body[data-route-option="next-section"] .c-header-home_subheading.-load {
  transform: translate3d(0, 0, 0);
}

.c-header-home_controls,
.c-header-home_buttons {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
}

@media (max-width: 699px) {
  .c-header-home_controls,
  .c-header-home_buttons {
    padding-bottom: 40px;
  }
}

@media (min-width: 700px) {
  .c-header-home_controls,
  .c-header-home_buttons {
    padding-bottom: 5.625rem;
  }
}

@media (min-width: 700px) and (max-width: 749px) {
  .c-header-home_controls,
  .c-header-home_buttons {
    padding-bottom: 3.75rem;
  }
}

.is-loaded .c-header-home_controls,
.is-loaded .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .c-header-home_controls,
body[data-route-option="prev-section"] .c-header-home_buttons,
body[data-route-option="next-section"] .c-header-home_controls,
body[data-route-option="next-section"] .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
  transition-delay: 0.65s;
}

@media (min-width: 700px) {
  .c-header-home_controls {
    float: left;
  }
}

.c-header-home_buttons {
  transition-delay: 0.75s;
}

@media (max-width: 699px) {
  .c-header-home_buttons {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 1000px) {
  .c-header-home_buttons {
    float: right;
  }
}

@media (max-width: 699px) {
  .c-header-home_button {
    width: 50% !important;
  }
}

@media (min-width: 700px) {
  .c-header-home_button {
    width: 15.625rem;
  }
}

.c-header-filters_button,
.o-button {
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: none;
  color: inherit;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font: inherit;
  line-height: normal;
  cursor: pointer;
  user-select: none;
}

.c-header-filters_button:hover,
.o-button:hover {
  text-decoration: none;
}

@media (min-width: 1200px) {
  .o-scroll {
    height: 100%;
  }
}

::selection {
  background: #0084c0;
  color: #ffffff;
}

img,
svg {
  max-width: 100%;
}

.o-link {
  color: #1a0dab;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover,
.o-link:hover {
  color: #13097c;
}

a.-normal,
.o-link.-normal {
  color: currentColor;
  text-decoration: none;
}

a.-normal:hover,
.o-link.-normal:hover {
  text-decoration: underline;
}

a.-blue:hover,
.o-link.-blue:hover {
  text-decoration: none;
  color: #0084c0;
}

a.-hover,
.o-link.-hover {
  position: relative;
  text-decoration: none;
  color: #ffffff;
}

a.-hover::after,
.o-link.-hover::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  border-bottom: 1px solid;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center left;
}

a.-hover:hover::after,
.o-link.-hover:hover::after {
  transform: scaleX(1);
}

.o-wrap {
  overflow: hidden;
}

.o-page.-anim {
  transform: translate3d(0, 9.375rem, 0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-loaded .o-page.-anim {
  transform: translate3d(0, 0, 0);
}

.o-barba,
.o-barba_container {
  height: 100%;
}

.js-parallax {
  transform: translateZ(0);
  will-change: transform;
}

.scroll-content {
  overflow: hidden;
}

.o-blockquote.-nomargin {
  margin: 0;
}

.o-action-link {
  display: block;
  padding-top: 12.8125rem;
  padding-bottom: 7.5rem;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 699px) {
  .o-action-link {
    font-size: 40px;
    padding-top: 120px;
  }
}

@media (max-width: 1199px) {
  .o-action-link {
    color: #1e1e22;
  }
}

@media (min-width: 700px) {
  .o-action-link {
    font-size: 5.625rem;
  }
}

@media (min-width: 1200px) {
  .o-action-link {
    color: #ffffff;
  }
}

.o-action-link:hover {
  color: #ffffff;
}

.o-action-link_label {
  display: inline-block;
  position: relative;
}

.o-action-link_label::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 0.1875rem solid;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-action-link:hover .o-action-link_label::after {
  transform: scaleX(1);
}

.o-h,
.o-h1,
.o-h2,
.o-h3,
.o-h4,
.o-h5,
.o-h6 {
  font-weight: 700;
  margin-top: 0;
  line-height: 1.1;
}

@media (max-width: 699px) {
  .o-h1 {
    font-size: 26px;
  }
}

@media (min-width: 700px) {
  .o-h1 {
    font-size: 60px;
  }
}

@media (min-width: 1600px) {
  .o-h1 {
    font-size: 4.375rem;
  }
}

@media (max-width: 1599px) {
  .o-h2 {
    font-size: 1.5625rem;
  }
}

@media (min-width: 1600px) {
  .o-h2 {
    font-size: 2.25rem;
  }
}

.o-h3 {
  font-size: 1.5625rem;
}

.o-h4 {
  font-size: 1rem;
}

.o-h5 {
  font-size: 0.8125rem;
}

.o-h6 {
  font-size: 0.6875rem;
}

.o-hsub {
  font-size: 1rem;
  padding: .5rem 1rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-top: 10px;
}

.is-loaded .o-loader {
  visibility: hidden;
  transition-delay: 0.6s;
}

.o-container {
  position: relative;
  margin: 0 auto;
}

@media (max-width: 699px) {
  .o-container {
    padding-right: 40px;
    padding-left: 40px;
  }
  .o-container.-small {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (min-width: 700px) and (max-width: 1599px) {
  .o-container {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
    max-width: 140rem;
  }
}

@media (min-width: 1600px) {
  .o-container {
    padding-right: 9.5625rem;
    padding-left: 9.5625rem;
    max-width: 144.125rem;
  }
}

.o-section {
  position: relative;
}

.o-section.-offset {
  margin-top: -9.375rem;
  background-color: #f6f6f6;
}

.o-section.-padding {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.o-section.-padding-top {
  padding-top: 7.5rem;
}

@media (max-width: 699px) {
  .o-section.-bottom {
    padding-bottom: 60px;
  }
}

@media (min-width: 700px) {
  .o-section.-bottom {
    padding-bottom: 7.5rem;
  }
}

.o-section.-left {
  margin-right: 15rem;
}

.o-section.-right {
  margin-left: 15rem;
}

.o-section.-left-large {
  margin-right: 22.5rem;
}

.o-section.-right.-padding {
  padding-left: 9.5625rem;
}

.o-section_image {
  position: relative;
  overflow: hidden;
}

.o-section_image.-small {
  padding-bottom: 57.144%;
}

.o-section_image.-large {
  padding-bottom: 55%;
}

.o-section_image.-padding-left {
  margin-left: 7.5rem;
}

.o-section_image.-left {
  margin-right: 15rem;
}

@media (max-width: 1599px) {
  .o-section_image.-left {
    margin-left: -7.5rem;
  }
}

@media (min-width: 1600px) {
  .o-section_image.-left {
    margin-left: -9.5625rem;
  }
}

.o-section_image.-right {
  margin-left: 15rem;
}

@media (max-width: 1599px) {
  .o-section_image.-right {
    margin-right: -7.5rem;
  }
}

@media (min-width: 1600px) {
  .o-section_image.-right {
    margin-right: -9.5625rem;
  }
}

.o-section_image img {
  width: 100%;
}

.o-grid {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
}

.o-grid.-margin {
  margin-left: -3.75rem;
}

.o-grid_item {
  display: inline-block;
  padding-left: 0;
  width: 100%;
  vertical-align: top;
  font-size: 1rem;
}

@media (max-width: 699px) {
  .o-grid_item.-button {
    width: 100%;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .o-grid_item.-button {
    margin-bottom: 60px;
  }
}

@media (min-width: 1000px) {
  .o-grid_item.-button {
    width: 18.75rem;
  }
}

@media (max-width: 699px) {
  .o-grid_item.-button-content {
    margin-bottom: 30px;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .o-grid_item.-button-content {
    margin-bottom: 60px;
  }
}

@media (min-width: 1000px) {
  .o-grid_item.-button-content {
    width: calc(100% - 18.75rem);
  }
}

.o-grid.-margin .o-grid_item {
  padding-left: 3.75rem;
}

@media (min-width: 700px) {
  .o-grid_item.-half {
    width: 50%;
  }
}

@media (min-width: 700px) and (max-width: 1199px) {
  .o-grid_item.-half.-large {
    width: 100%;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .o-grid_item.-half.-medium {
    width: 100%;
  }
}

@media (min-width: 700px) and (max-width: 1199px) {
  .o-grid_item.-third {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .o-grid_item.-third {
    width: 33.3333333333%;
  }
}

.o-form {
  padding-bottom: 11.25rem;
}

@media (max-width: 699px) {
  .o-form_item {
    margin-bottom: 35px;
  }
}

@media (min-width: 700px) {
  .o-form_item {
    margin-bottom: 2.9375rem;
  }
}

.o-form_fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

@media (max-width: 699px) {
  .o-form_fieldset {
    margin-bottom: 20px;
  }
}

@media (min-width: 700px) {
  .o-form_fieldset {
    margin-bottom: 3.75rem;
  }
}

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

.o-label {
  display: block;
  height: 100%;
  color: #b3b3b3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-label {
    font-size: 9px;
  }
}

@media (min-width: 700px) {
  .o-label {
    font-size: 0.5625rem;
  }
}

.o-input-wrap .o-label {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input:focus ~ .o-label,
.o-select:focus ~ .o-label,
.o-textarea:focus ~ .o-label,
.o-label.is-active {
  transform: translateY(-1.875rem);
}

.o-input.has-error ~ .o-label,
.has-error.o-select ~ .o-label,
.has-error.o-textarea ~ .o-label {
  color: #cc3d3d;
}

.o-input-wrap {
  position: relative;
}

.o-input,
.o-select,
.o-textarea {
  padding: 0.875rem;
  background-color: transparent;
  border-bottom: 1px solid #b3b3b3;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-input,
  .o-select,
  .o-textarea {
    font-size: 14px;
  }
}

@media (min-width: 700px) {
  .o-input,
  .o-select,
  .o-textarea {
    font-size: 0.875rem;
  }
}

.o-input::placeholder,
.o-select::placeholder,
.o-textarea::placeholder {
  color: #b3b3b3;
}

.o-input.-search,
.-search.o-select,
.-search.o-textarea {
  background-color: transparent;
  color: #ffffff;
  font-weight: 700;
  border-bottom: none;
}

@media (max-width: 699px) {
  .o-input.-search,
  .-search.o-select,
  .-search.o-textarea {
    font-size: 26px;
  }
}

@media (min-width: 700px) {
  .o-input.-search,
  .-search.o-select,
  .-search.o-textarea {
    font-size: 3.75rem;
  }
}

.o-input.-search::placeholder,
.-search.o-select::placeholder,
.-search.o-textarea::placeholder {
  color: #000000;
}

.-mobile .o-input.-search,
.-mobile .-search.o-select,
.-mobile .-search.o-textarea {
  font-size: 26px;
  padding: 0;
}

.o-input.-search.-light,
.-search.-light.o-select,
.-search.-light.o-textarea {
  color: #1e1e22;
}

.o-input.-search.-light::placeholder,
.-search.-light.o-select::placeholder,
.-search.-light.o-textarea::placeholder {
  color: #b3b3b3;
}

.o-input.has-error,
.has-error.o-select,
.has-error.o-textarea {
  border-color: #cc3d3d;
}

.o-input:focus,
.o-select:focus,
.o-textarea:focus {
  outline: none;
}

.o-input-line {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #1e1e22;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center left;
}

.o-input:focus ~ .o-input-line,
.o-select:focus ~ .o-input-line,
.o-textarea:focus ~ .o-input-line {
  transform: scaleX(1);
}

.o-input-lines::before,
.o-input-lines::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-right: 1px solid #b3b3b3;
  height: 0.375rem;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input.has-error ~ .o-input-lines::before,
.has-error.o-select ~ .o-input-lines::before,
.has-error.o-textarea ~ .o-input-lines::before,
.o-input.has-error ~ .o-input-lines::after,
.has-error.o-select ~ .o-input-lines::after,
.has-error.o-textarea ~ .o-input-lines::after {
  border-color: #cc3d3d;
}

.o-input-lines::before {
  left: 0;
  transition-delay: 0.3s;
}

.o-input-lines::after {
  right: 0;
}

.o-input:focus ~ .o-input-lines::before,
.o-select:focus ~ .o-input-lines::before,
.o-textarea:focus ~ .o-input-lines::before,
.o-input:focus ~ .o-input-lines::after,
.o-select:focus ~ .o-input-lines::after,
.o-textarea:focus ~ .o-input-lines::after {
  border-color: #1e1e22;
}

.o-input:focus ~ .o-input-lines::before,
.o-select:focus ~ .o-input-lines::before,
.o-textarea:focus ~ .o-input-lines::before {
  transition-delay: 0s;
}

.o-input:focus ~ .o-input-lines::after,
.o-select:focus ~ .o-input-lines::after,
.o-textarea:focus ~ .o-input-lines::after {
  transition-delay: 0.3s;
}

.o-checkbox,
.o-radio {
  position: absolute;
  width: 0;
  opacity: 0;
}

.o-checkbox:checked + .o-checkbox-label::after,
.o-radio:checked + .o-checkbox-label::after,
.o-checkbox:checked + .o-radio-label::after,
.o-radio:checked + .o-radio-label::after {
  transform: scale(1);
}

.o-checkbox-label,
.o-radio-label {
  position: relative;
  display: inline-block;
  margin-right: 0.5em;
  line-height: 1.4;
  margin-right: 4.0625rem;
  cursor: pointer;
  padding-top: 0.125rem;
}

@media (max-width: 699px) {
  .o-checkbox-label,
  .o-radio-label {
    font-size: 12px;
    padding-left: 27px;
  }
}

@media (min-width: 700px) {
  .o-checkbox-label,
  .o-radio-label {
    font-size: 0.875rem;
    padding-left: 1.1875rem;
  }
}

.o-checkbox-label.-uppsercase,
.-uppsercase.o-radio-label {
  text-transform: uppercase;
}

.o-checkbox-label::before,
.o-radio-label::before,
.o-checkbox-label::after,
.o-radio-label::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  padding: 0;
  content: "";
  border: 1px solid;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-checkbox-label::before,
  .o-radio-label::before,
  .o-checkbox-label::after,
  .o-radio-label::after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
}

@media (min-width: 700px) {
  .o-checkbox-label::before,
  .o-radio-label::before,
  .o-checkbox-label::after,
  .o-radio-label::after {
    margin-top: -0.28125rem;
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.o-checkbox-label::after,
.o-radio-label::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #1e1e22 transparent transparent transparent;
  transform: scale(0);
  transform-origin: top left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-checkbox-label::after,
  .o-radio-label::after {
    border-width: 12px 12px 0 0;
  }
}

@media (min-width: 700px) {
  .o-checkbox-label::after,
  .o-radio-label::after {
    border-width: 0.5625rem 0.5625rem 0 0;
  }
}

.o-checkbox-label.has-error::before,
.has-error.o-radio-label::before {
  border-color: #cc3d3d;
}

.o-checkbox-label_text {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.o-checkbox-label:hover .o-checkbox-label_text,
.o-radio-label:hover .o-checkbox-label_text {
  transform: translateX(0.3125rem);
}

.o-radio-label::before,
.o-radio-label::after {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.o-radio-label::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E");
  background-size: 6px;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.o-radio:checked + .o-radio-label::after {
  transform: scale(1);
}

.o-select {
  position: relative;
  z-index: 1;
  padding-right: 2.5rem;
}

.o-select:focus {
  border-bottom-color: #1e1e22;
}

.o-select-wrap {
  position: relative;
}

.o-select-wrap::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23b3b3b3%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.o-textarea-wrap {
  position: relative;
}

.o-textarea {
  min-height: 9.375rem;
}

.o-button {
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #1e1e22;
  white-space: nowrap;
  font-size: 0;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button:before {
  display: inline-block;
  height: 100%;
  content: "";
  vertical-align: middle;
}

.o-button > * {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  font-size: 1rem;
}

@media (max-width: 699px) {
  .o-button {
    height: 60px;
    padding: 0 20px;
  }
}

@media (min-width: 700px) {
  .o-button {
    height: 3.75rem;
    padding: 0 1.875rem;
  }
}

.o-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #1e1e22;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button:hover {
  color: #ffffff;
  transition-delay: 0s;
}

.o-button:hover::after {
  transform: scaleX(1);
  transition-delay: 0s;
}

@media (min-width: 1200px) {
  .o-button.-anim {
    border-color: transparent;
  }
}

.o-button.-left::after {
  transform-origin: center right;
}

.o-button.-white {
  border-color: #ffffff;
}

.o-button.-white::after {
  background-color: #ffffff;
}

.o-button.-white:hover {
  color: #000000;
}

@media (max-width: 699px) {
  .o-button.-width {
    width: 100%;
  }
}

@media (min-width: 700px) {
  .o-button.-width {
    width: 15rem;
  }
}

.o-button.-form {
  width: 11.25rem;
}

.o-button.-form:focus {
  color: #ffffff;
  transition-delay: 0s;
}

.o-button.-form:focus::after {
  transform: scaleX(1);
  transition-delay: 0s;
}

.o-button.-square {
  padding: 0;
}

@media (max-width: 699px) {
  .o-button.-square {
    width: 60px;
  }
}

@media (min-width: 700px) {
  .o-button.-square {
    width: 3.75rem;
  }
}

.o-button-group .o-button + .o-button {
  border-left: none;
}

@media (max-width: 699px) {
  .o-button.-padding {
    padding: 1.25rem;
  }
}

@media (min-width: 700px) {
  .o-button.-padding {
    padding: 1.25rem 2.5rem;
  }
}

.o-button_label {
  display: inline-block;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
  line-height: 1.4;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.75rem;
}

.o-button:hover .o-button_label {
  transform: translateX(0.5rem);
  transition-delay: 0.075s;
}

.o-button.-left:hover .o-button_label {
  transform: translateX(-0.5rem);
}

.o-button.-square:hover .o-button_label {
  transform: translateX(0.375rem);
}

.o-button.-left.-square:hover .o-button_label {
  transform: translateX(-0.375rem);
}

.o-button-group {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
}

.o-button_icon {
  position: relative;
  width: 1.1875rem;
  height: 1.1875rem;
  fill: #1e1e22;
  transition: fill 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button.-white .o-button_icon {
  fill: #ffffff;
}

.o-button:hover .o-button_icon {
  fill: #f6f6f6;
  transition-delay: 0s;
}

.o-button.-white:hover .o-button_icon {
  fill: #1e1e22;
}

.o-button_line::before,
.o-button_line::after {
  content: "";
  position: absolute;
  background-color: #1e1e22;
}

.is-mobile .o-button_line::before,
.is-mobile .o-button_line::after {
  display: none;
}

.o-button_line::before {
  width: 1px;
  top: 0;
  bottom: 0;
  transform: scaleY(0);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-button_line::after {
  height: 1px;
  right: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-button_line:first-of-type::before {
  left: 0;
  transform-origin: center bottom;
}

.o-button_line:first-of-type::after {
  top: 0;
  transform-origin: center left;
}

.o-button_line:last-of-type::before {
  right: 0;
  transform-origin: center top;
}

.o-button_line:last-of-type::after {
  bottom: 0;
  transform-origin: center right;
}

.o-button.is-inview .o-button_line::before {
  transform: scaleY(1);
}

.o-button.is-inview .o-button_line::after {
  transform: scaleX(1);
}

.o-button.is-inview .o-button_line:first-of-type::before {
  transition-delay: 1.15s;
}

.o-button.is-inview .o-button_line:first-of-type::after {
  transition-delay: 0.1s;
}

.o-button.is-inview .o-button_line:last-of-type::before {
  transition-delay: 0.55s;
}

.o-button.is-inview .o-button_line:last-of-type::after {
  transition-delay: 0.7s;
}

.c-header-home_footer {
  z-index: 3;
  position: absolute;
  right: 0;
  bottom: 10%;
  left: 0;
}

.c-header-home_controls,
.c-header-home_buttons {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
}

@media (max-width: 699px) {
  .c-header-home_controls,
  .c-header-home_buttons {
    padding-bottom: 40px;
  }
}

@media (min-width: 700px) {
  .c-header-home_controls,
  .c-header-home_buttons {
    padding-bottom: 3.625rem;
  }
  .c-header-home_footer {
    bottom: 0;
  }
}

@media (min-width: 700px) and (max-width: 749px) {
  .c-header-home_controls,
  .c-header-home_buttons {
    padding-bottom: 3.75rem;
  }
}

.is-loaded .c-header-home_controls,
.is-loaded .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .c-header-home_controls,
body[data-route-option="prev-section"] .c-header-home_buttons,
body[data-route-option="next-section"] .c-header-home_controls,
body[data-route-option="next-section"] .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
  transition-delay: 0.65s;
}

@media (min-width: 700px) {
  .c-header-home_controls {
    float: left;
  }
}

.c-header-home_buttons {
  transition-delay: 0.75s;
}

@media (max-width: 699px) {
  .c-header-home_buttons {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 1000px) {
  .c-header-home_buttons {
    float: right;
  }
}

@media (max-width: 699px) {
  .c-header-home_button {
    width: 50% !important;
  }
}

@media (min-width: 700px) {
  .c-header-home_button {
    width: 15.625rem;
  }
}

.steps li {
  display: flex;
  align-items: stretch;
  margin-bottom: 25px;
  position: relative;
  background-color: #fff;
  box-shadow: 10px 17.321px 30px 0px rgba(206, 206, 206, 0.4);
  border-radius: 20px 50px 50px 20px;
}

.steps li .num {
  position: relative;
  width: 50px;
  color: #ccc;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.steps li .num:before {
  content: '';
  background-color: #212a42;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
}

.steps li .steps-text {
  display: block;
  padding: 10px 10px 10px 20px;
  width: 100%;
}

.point-list li {
  position: relative;
  padding: 0 0 10px 40px;
}

.point-list li:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  top: 12px;
  left: 10px;
  font-weight: 600;
  transform: translate(-50%, -50%);
  color: #f8ae3e;
}

.custom-table {
  border-radius: 10px;
  box-shadow: 10px 17.321px 30px 0px rgba(206, 206, 206, 0.4);
  padding: 20px;
}

@media screen and (min-width: 1200px) {
  .custom-table {
    padding: 25px;
  }
}

@media screen and (min-width: 1400px) {
  .custom-table {
    padding: 48px;
  }
}

.cost-table {
  width: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10px 17.321px 30px 0px rgba(206, 206, 206, 0.4);
}

.cost-table th,
.cost-table td {
  padding: 1rem;
}

.single-choice .service-box {
  padding: 70px 60px;
  background-color: white;
  border-radius: 20px;
  height: 100%;
  box-shadow: 10px 17.321px 30px 0px #cecece;
  transition: all 0.5s ease;
}

.single-choice .service-box .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: rgba(239, 63, 62, 0.05);
  border-radius: 100%;
  margin-bottom: 40px;
  transition: all 0.5s ease;
}

.single-choice .service-box h4 {
  color: #212a42;
  font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320))) !important;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.single-choice .service-box i {
  font-size: 3em;
  color: #01b9b7;
}

.single-choice .service-box:hover {
  transform: translateY(-3px);
}

.single-choice .service-box:hover .service-icon {
  transform: scale(1.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease;
}

@media screen and (max-width: 1200px) {
  .single-choice .service-box {
    padding: 50px 40px;
  }
}

@media screen and (max-width: 520px) {
  .single-choice .service-box {
    padding: 40px 20px;
  }
}

.single-fare h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.single-fare .currency {
  font-size: 2rem;
  font-weight: bold;
  color: #717171;
}

.single-fare .currency span {
  font-size: 1rem;
  color: #f44336;
}

.single-fare .currency b {
  font-size: .8rem;
}

.flight-book {
  display: flex;
  align-items: stretch;
  text-align: center;
  margin-bottom: 15px;
}

.flight-book > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 15px;
}

.flight-book > div:first-child {
  border-radius: 10px 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flight-book > div:first-child .img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 10px;
  overflow: hidden;
}

.flight-book > div:first-child .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flight-book > div:first-child .img.tara {
  background-color: #1a9930;
}

.flight-book > div:first-child .img.sita {
  background-color: #fff;
}

.flight-book > div:first-child .img.summit {
  background-color: #fff;
}

.flight-book > div:nth-child(4) {
  border-radius: 0 10px 10px 0;
}

.flight-book > div:last-child {
  border-radius: 10px;
  border-left: 2px dashed #ccc;
}

.flight-book p {
  margin-bottom: 0;
}

.flight-book .flight-num {
  font-weight: bold;
  color: #717171;
}

.flight-book small {
  font-weight: bold;
  color: #ccc;
}

.flight-book .dest,
.flight-book .price {
  font-weight: bold;
  text-transform: uppercase;
  color: #232526;
}

.flight-book .duration .c {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
}

.flight-book .duration .l {
  height: 2px;
  width: 100%;
  background-color: #ccc;
}

@media screen and (max-width: 992px) {
  .flight-book > div:first-child {
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #ccc;
  }
  .flight-book > div:nth-child(2) {
    border-radius: 0 0 0 10px;
  }
  .flight-book > div:nth-child(4) {
    border-radius: 0 0 10px 0;
  }
  .flight-book > div:last-child {
    border-radius: 10px;
    border-top: 2px dashed #ccc;
    border-left: none;
  }
}

.airlines-cards .card {
  padding: 30px 20px;
  background-color: white;
  border-radius: 20px;
  border: none;
  text-align: center;
  align-items: center;
  box-shadow: 10px 17.321px 30px 0px rgba(206, 206, 206, 0.4);
}

.airlines-cards .card .img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 10px;
  overflow: hidden;
}

.airlines-cards .card .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.airlines-cards .card .card-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
}

.airlines-cards .card .card-body {
  padding-left: 0;
  padding-right: 0;
}

.airlines-cards .card .card-text {
  color: #4b4b4b;
  line-height: 1.7;
  font-size: 14px;
}

.airlines-cards .card.card1 .img {
  box-shadow: 0 1px 3px rgba(0, 145, 124, 0.5);
  background-color: #1a9930;
}

.airlines-cards .card.card2 .img {
  box-shadow: 0 1px 3px rgba(137, 137, 137, 0.5);
  background-color: #fff;
}

.airlines-cards .card.card3 .img {
  box-shadow: 0 1px 3px rgba(137, 137, 137, 0.5);
  background-color: #fff;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .airlines-cards .card {
    align-items: unset;
    flex-direction: row;
    text-align: left;
  }
  .airlines-cards .card .img {
    width: 200px;
    height: 200px;
  }
  .airlines-cards .card .card-body {
    width: calc(100% - 200px);
    padding-left: 20px;
  }
}

#reviews {
  background: url("../images/back.png") no-repeat bottom;
  padding-bottom: 210px;
  background-size: 100% 180px;
}

.review-block {
  position: relative;
}

.review-block .single-review {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}

.review-block .single-review .top-content {
  color: #fff;
}

.review-block .single-review .top-content i {
  font-size: 5.7rem;
  margin-bottom: .43em;
  color: #fff;
  display: block;
  line-height: 1.1em;
}

.review-block .single-review .top-content p {
  line-height: 2;
}

.review-block .single-review .bottom-content {
  margin: .7em auto 0;
  padding: 1.5em 0 0;
  align-items: center;
  justify-content: center;
}

.review-block .single-review .bottom-content .author {
  width: 4.86rem;
  height: 4.86rem;
  margin: 0 .95em 0 0;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

.review-block .single-review .bottom-content .author-details {
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .review-block .single-review {
    width: 80%;
  }
  .review-block .single-review .top-content i {
    font-size: 4rem;
  }
  .review-block .single-review .bottom-content {
    flex-direction: column;
  }
}

.review-block .owl-nav {
  color: #fff;
  top: 50%;
  position: absolute;
  left: 5%;
  right: 5%;
}

.review-block .owl-nav button.owl-next, .review-block .owl-nav button.owl-prev {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  transition: all .3s ease;
}

.review-block .owl-nav button.owl-next:hover, .review-block .owl-nav button.owl-prev:hover {
  color: #f8ae3e;
}

.review-block .owl-nav button.owl-next {
  right: 0;
}

.nav-pills {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 30px;
}

.nav-pills .nav-item {
  border-radius: 50px;
  overflow: hidden;
}

.nav-pills .nav-item .nav-link.active,
.nav-pills .nav-item .show > .nav-link {
  background-color: #f8ae3e;
  border-radius: 50px;
}

.nav-pills .nav-item .nav-link:hover:not(.active) {
  background-color: #ececec;
  border-radius: 50px;
}

#airlines .accordion-item,
#faq .accordion-item {
  margin-bottom: 20px;
}

#airlines .accordion-item .accordion-header .accordion-button,
#faq .accordion-item .accordion-header .accordion-button {
  padding: 0 0 0 25px;
  border-radius: 30px 30px 0 0 !important;
  background-color: #212a42;
  color: #fff;
  border: none;
}

#airlines .accordion-item .accordion-header .accordion-button:after,
#faq .accordion-item .accordion-header .accordion-button:after {
  width: 3.25rem;
  height: 3.25rem;
  background-position: center;
  background-color: #fff;
  border-radius: 50%;
}

#airlines .accordion-item .accordion-header .accordion-button:focus,
#faq .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

#airlines .accordion-item .accordion-header .accordion-button.collapsed,
#faq .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: #393e46;
  border-radius: 50px !important;
}

#airlines .accordion-item .accordion-header .accordion-button.collapsed:after,
#faq .accordion-item .accordion-header .accordion-button.collapsed:after {
  border-radius: 50%;
}

#airlines .accordion-item .accordion-collapse,
#faq .accordion-item .accordion-collapse {
  border-width: 0 1px 1px;
  border-radius: 0 0 30px 30px;
}

.contact-form .form-control {
  border: 2px solid #ddd;
  background-color: #f5f4fa;
  border-radius: 5px;
  font-size: 14px;
  padding: .939em 1.05em;
}

.contact-form label {
  font-weight: 600;
}

.input-daterange input:first-child {
  border-radius: 5px !important;
}

.input-daterange input:last-child {
  border-radius: 5px !important;
}

.input-daterange > div:first-child {
  padding-right: 12px;
}

.input-daterange > div:last-child {
  padding-left: 12px;
}

@media screen and (max-width: 768px){
   .input-daterange > div:first-child {
  padding-right: 0;
}

.input-daterange > div:last-child {
  padding-left: 0;
} 
}

.input-daterange input:last-child {
  border-radius: 0 5px 5px 0 !important;
}

#heli .input-daterange {
  width: 66.6666666667%;
}

@media screen and (max-width: 992px) {
  #heli .input-daterange {
    width: 100%;
  }
}

.modal .modal-dialog {
  border-radius: 20px;
  overflow: hidden;
}

.modal .modal-header {
  background-color: #212a42;
  color: #fff;
}

.modal .modal-header button {
  background-color: #fff;
  border-radius: 50%;
}

footer {
  padding: 50px 0;
  color: #fff;
  font-size: 14px;
}

footer a {
  color: #f8ae3e;
  transition: all .3s ease;
}

footer a:hover {
  color: #ccc;
}

footer .social-links {
  font-size: 15px;
}

footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

footer .social-links a:hover {
  background-color: #ccc;
  color: #212a42;
}

footer .social-links .facebook {
  background-color: #3b5999;
}

footer .social-links .twitter {
  background-color: #55acee;
}

footer .social-links .instagram {
  background-color: #e4405f;
}

footer .social-links .pinterest {
  background-color: #bd081c;
}

footer .social-links .linkedin {
  background-color: #0077B5;
}

.fullpage {
  height: 100vh;
  width: 100%;
  position: fixed;
  background: url("../images/back.jpg") no-repeat;
  background-size: cover;
}

.fullpage .thankyou {
  width: 80%;
  height: 80%;
  background-color: #fff;
  padding: 50px;
  box-shadow: 10px 17.321px 30px 0px #cecece;
  border-radius: 20px;
  text-align: center;
  margin: 5% auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.fullpage .thankyou img {
  width: 150px;
}

.fullpage .thankyou h2 {
  color: #212a42;
  margin-bottom: 30px;
}

@media screen and (max-width: 520px) {
  .fullpage {
    overflow-y: scroll;
  }
  .fullpage .thankyou {
    padding: 20px;
    height: auto;
  }
  .fullpage .thankyou img {
    width: 100px;
  }
  .fullpage .thankyou h2 {
    font-size: 24px;
  }
}
