/*----------------------------------------------------*/ /*font Variables*/
/*Color Variables*/
/*=================== fonts ====================*/
@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:400,500,600,700|Lato");
.col-md-offset-right-1, .col-lg-offset-right-1 {
  margin-right: 8.33333333%;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

.row.m0 {
  margin: 0px;
}

.p0 {
  padding: 0px;
}

body {
  line-height: 28px;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #7a8292;
  height: 100%;
}

:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  color: #020e27;
}

i:before {
  margin-left: 0px !important;
}

button:focus {
  outline: none;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.section_title {
  margin-bottom: 60px;
}
.section_title h5 {
  font-size: 20px;
  line-height: 26px;
  color: #ffbb03;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.section_title h2 {
  font-size: 40px;
  line-height: 45px;
  color: #020e27;
  margin-bottom: 0;
}
.section_title .color_w {
  color: #fff;
}

.sec_pad {
  padding: 120px 0px;
}

.pt_200 {
  padding-top: 200px;
}

.bg_one {
  background: #fbfbfd;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*
 * Loading Dots
 * Can we use pseudo elements here instead :after?
 */
.sampleContainer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
}

.loading {
  position: relative;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  text-align: center;
}
.loading h2 span {
  display: inline-block;
  vertical-align: middle;
  width: 0.2em;
  height: 0.2em;
  margin: 0.15em;
  background: #020e27;
  border-radius: 0.6em;
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */
.loading span:nth-of-type(2) {
  background: #ffbb03;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loading span:nth-of-type(3) {
  background: #009B9E;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading span:nth-of-type(4) {
  background: #00A77D;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loading span:nth-of-type(5) {
  background: #00B247;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.loading span:nth-of-type(6) {
  background: #5AB027;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.loading span:nth-of-type(7) {
  background: #A0B61E;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */
@-webkit-keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*================== header_area css ===============*/
.header_area {
  background: #fff;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.header_area .container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}
.header_area + section, .header_area + div {
  margin-top: 99px;
}

.navbar {
  padding: 0px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.navbar:before {
  content: "";
  width: 2500px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: -1;
}

.menu {
  padding-left: 165px;
}
.menu > .nav-item {
  padding: 37px 0px;
}
.menu > .nav-item > .nav-link {
  font: 500 20px/25px "Barlow Condensed", sans-serif;
  color: #020e27;
  position: relative;
  padding: 0px;
  transition: color 0.3s linear;
}
.menu > .nav-item > .nav-link:after {
  display: none;
}
.menu > .nav-item > .nav-link:before {
  content: "";
  width: 0;
  height: 1px;
  background: #ffbb03;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: width 0.3s linear;
}
.menu > .nav-item:not(:last-child) {
  margin-right: 55px;
}
.menu > .nav-item.active .nav-link, .menu > .nav-item:hover .nav-link {
  color: #ffbb03;
}
.menu > .nav-item.active .nav-link:before, .menu > .nav-item:hover .nav-link:before {
  width: 100%;
  left: 0;
  right: auto;
}
.menu > .nav-item.submenu {
  position: relative;
}
.menu > .nav-item.submenu ul {
  border: none;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none;
  margin: 0px;
  background: transparent;
}
@media (min-width: 992px) {
  .menu > .nav-item.submenu ul {
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 220px;
    text-align: left;
    opacity: 0;
    transition: all 300ms ease-in;
    visibility: hidden;
    display: block;
    border: none;
    padding: 0px;
    box-shadow: 0px 15px 27px 0px rgba(14, 0, 40, 0.09);
    border-radius: 0px;
  }
}
.menu > .nav-item.submenu ul .nav-item {
  display: block;
  float: none;
  margin-right: 0px;
  border-bottom: 1px solid #ededed;
  margin-left: 0px;
  margin-top: 10px;
  background: #fff;
  transition: all 0.3s linear;
}
.menu > .nav-item.submenu ul .nav-item .nav-link {
  font: 500 18px/50px "Barlow Condensed", sans-serif;
  color: #020e27;
  padding: 0px 30px;
  text-transform: capitalize;
  transition: all 150ms linear;
  display: block;
}
.menu > .nav-item.submenu ul .nav-item:last-child {
  border-bottom: none;
}
.menu > .nav-item.submenu ul .nav-item:hover .nav-link, .menu > .nav-item.submenu ul .nav-item.active .nav-link {
  color: #ffbb03;
}
@media (min-width: 992px) {
  .menu > .nav-item.submenu:hover ul {
    visibility: visible;
    opacity: 1;
  }
}
.menu > .nav-item.submenu:hover ul .nav-item {
  margin-top: 0px;
}

.phone_btn a {
  font-size: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  color: #020e27;
}
.phone_btn a span {
  color: #ffbb03;
}

.menu_btn {
  width: 275px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.menu_btn .search_btn {
  font-size: 18px;
  color: #fff;
  transform: rotate(-90deg);
}
.menu_btn .book_btn {
  font: 500 16px/30px "Barlow Condensed", sans-serif;
  padding: 9px 36px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin-left: 48px;
  transition: all 0.2s linear;
  letter-spacing: 1.6px;
}
.menu_btn .book_btn:hover {
  background: #fff;
  color: #ffbb03;
}

.search_dropdown {
  transition: all 0.3s ease-in;
  position: relative;
}
.search_dropdown.open .search {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.search {
  background: #fff;
  height: 50px;
  padding: 5px;
  line-height: 35px;
  border-radius: 0px;
  width: 290px;
  position: absolute;
  top: 222%;
  right: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s ease-in;
}
.search .search-form {
  border: 1px solid #ededed;
}
.search .search-form .form-control {
  background: transparent;
  border: 0;
  font: 400 14px/31px "Lato", sans-serif;
  padding: 0px 0px 1px 20px;
  box-shadow: none;
  color: rgba(64, 64, 64, 0.7);
  font-style: italic;
  text-shadow: none;
  border-radius: 0px;
}
.search .search-form .form-control.placeholder {
  color: rgba(64, 64, 64, 0.7);
}
.search .search-form .form-control:-moz-placeholder {
  color: rgba(64, 64, 64, 0.7);
}
.search .search-form .form-control::-moz-placeholder {
  color: rgba(64, 64, 64, 0.7);
}
.search .search-form .form-control::-webkit-input-placeholder {
  color: rgba(64, 64, 64, 0.7);
}
.search .search-form .input-group-addon {
  background: transparent;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.search .search-form .input-group-addon button {
  background: transparent;
  border: 0px;
  color: rgba(64, 64, 64, 0.5);
}

/*========= hamburger menu css ========*/
.navbar-toggler {
  padding: 0px;
  margin-left: 20px;
  border: 0px;
}
.navbar-toggler:focus {
  outline: none;
}

.menu_toggle {
  width: 22px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: block;
}
.menu_toggle .hamburger span, .menu_toggle .hamburger-cross span {
  background: #020e27;
}
.menu_toggle .hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
}
.menu_toggle .hamburger span {
  width: 0%;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  margin: 4px 0;
  display: block;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
}
.menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0s;
}
.menu_toggle .hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
.menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.2s;
}
.menu_toggle .hamburger-cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
  display: block;
}
.menu_toggle .hamburger-cross span {
  display: block;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
}
.menu_toggle .hamburger-cross span:nth-child(1) {
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0;
  left: 10px;
  transition-delay: 0.3s;
}
.menu_toggle .hamburger-cross span:nth-child(2) {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 10px;
  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span {
  width: 100%;
}
.collapsed .menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0.3s;
}
.collapsed .menu_toggle .hamburger span:nth-child(2) {
  transition-delay: 0.4s;
}
.collapsed .menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.5s;
}
.collapsed .menu_toggle .hamburger-cross span:nth-child(1) {
  height: 0%;
  transition-delay: 0s;
}
.collapsed .menu_toggle .hamburger-cross span:nth-child(2) {
  width: 0%;
  transition-delay: 0.2s;
}

/*================== header_area css ===============*/
/*=============== header_transparent css ============*/
.header_transparent {
  background: transparent;
}
.header_transparent .navbar:before {
  display: none;
}
.logo {
  position: relative;
  font-weight: 700;
  font-family: "Barlow Condensed",sans-serif;
  color: #020e27;
  font-size:30px;
}
.header_transparent .navbar .logo img + img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.header_transparent .navbar .menu > .nav-item > .nav-link {
  color: #fff;
}
.header_transparent .navbar .menu > .nav-item:hover > .nav-link, .header_transparent .navbar .menu > .nav-item.active > .nav-link {
  color: #ffbb03;
}
.header_transparent .phone_btn a {
  color: #fff;
}
.header_transparent + section, .header_transparent + div {
  margin-top: 0px;
}
.header_transparent.navbar_fixed {
  background: #fff;
}
.header_transparent.navbar_fixed .navbar .logo {
  position: relative;
}
.header_transparent.navbar_fixed .navbar .logo img {
  opacity: 0;
}
.header_transparent.navbar_fixed .navbar .logo img + img {
  opacity: 1;
}
.header_transparent.navbar_fixed .navbar .menu > .nav-item > .nav-link {
  color: #020e27;
}
.header_transparent.navbar_fixed .navbar .menu > .nav-item:hover > .nav-link, .header_transparent.navbar_fixed .navbar .menu > .nav-item.active > .nav-link {
  color: #ffbb03;
}
.header_transparent.navbar_fixed .phone_btn a {
  color: #020e27;
}
.header_transparent.navbar_fixed .menu_btn .search_btn {
  color: #020e27;
}
.header_transparent.navbar_fixed .menu_btn .book_btn {
  border-color: #020e27;
  color: #020e27;
}
.header_transparent.navbar_fixed .menu_btn .book_btn:hover {
  background: #020e27;
  color: #fff;
}

/*=============== header_transparent css ============*/
/*============== menu fixed css ==============*/
.navbar_fixed {
  width: 100%;
  left: 0;
  top: -70px;
  position: fixed;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 0px;
  z-index: 400;
  transform: translateY(70px);
  transition: transform 500ms ease, background 100ms linear;
}

.navbar-collapse {
  overflow-y: hidden !important;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*================ Start slider_area css ================*/
.slider_area {
  height: 850px;
  position: relative;
  z-index: 0;
}

.background_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.background_slider .slick-list {
  height: 100%;
}
.background_slider .slick-list .slick-track {
  height: 100%;
}
.background_slider .slick-list .slick-track .bg_img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ovarlay {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #00081a;
  opacity: 0.7;
  z-index: -1;
}

.slider_text {
  color: #fff;
  max-width: 770px;
  margin: 0 auto;
}
.slider_text h1 {
  font-size: 80px;
  line-height: 86px;
  margin-bottom: 25px;
  color: #fff;
}
.slider_text p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 52px;
}

/*================ End slider_area css ================*/
/*================ Start breadcrumb_area css ================*/
.breadcrumb_area {
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: 50% !important;
  position: relative;
  padding: 142px 0px 152px;
  z-index: 0;
}
.breadcrumb_area .overlay_bg {
  background: #00081a;
  opacity: 0.7;
}

.breadcrumb_content h1 {
  color: #fff;
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 0px;
}

.breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0px;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 0px;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.breadcrumb .breadcrumb-item {
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  color: #ffbb03;
}
.breadcrumb .breadcrumb-item a {
  color: #fff;
}
.breadcrumb .breadcrumb-item a:after {
  content: "";
  width: 1px;
  height: 20px;
  background: #fff;
  display: inline-block;
  margin: 0px 10px 4px 14px;
  vertical-align: middle;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  display: none;
}

/*================ End breadcrumb_area css ================*/
/*---------------------------------------------------- */
/*----------------------------------------------------*/
.slider_btn {
  font: 500 18px/30px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  color: #fff;
  transform: perspective(1px) translateZ(0);
  transition-property: color;
  transition-duration: 0.3s;
  border-radius: 0px;
  border: 0px;
  overflow: hidden;
}
.slider_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleY(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.slider_btn:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 0;
}
.slider_btn:hover, .slider_btn:focus {
  color: #fff;
  outline: none;
  box-shadow: none;
}
.slider_btn:hover:before, .slider_btn:focus:before {
  transform: scaleY(0);
}
.slider_btn:hover:after, .slider_btn:focus:after {
  left: 120%;
  transition: all 1s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.yellow_hover {
  background: #020e27;
}
.yellow_hover:before {
  background: #ffbb03;
}

.dark_hover {
  background: #ffbb03;
}
.dark_hover:before {
  background: #020e27;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*=============== booking_form_area css ===============*/
.booking_slider {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 50px 100px 0px rgba(0, 10, 30, 0.1);
  margin-top: -120px;
  z-index: 1;
  position: relative;
}
.booking_slider .booking_form_info {
  height: 100%;
  position: relative;
  display: flex;
}
.booking_slider .booking_form_info .tab_img {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 65px;
}
.booking_slider .booking_form_info .tab_img .b_overlay_bg {
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 380px;
  background: #ffbb03;
  z-index: -1;
  opacity: 0;
  transform: translate(-150%);
}
.booking_slider .booking_form_info .tab_img img {
  opacity: 0;
  transition: opacity 0.2s linear;
}
.booking_slider .booking_form_info.two .b_overlay_bg {
  background: #f03f46;
}
.booking_slider .booking_form_info.three .b_overlay_bg {
  background: #149ddf;
}
.booking_slider .booking_form_info.slick-active .tab_img img {
  -webkit-animation: caranimationOne 1s linear;
          animation: caranimationOne 1s linear;
  opacity: 1;
}
.booking_slider .booking_form_info.slick-active .b_overlay_bg {
  transform: translate(0);
  opacity: 1;
  transition: all 0.7s 0.3s linear;
}
.booking_slider .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 36px;
  color: #7a8292;
  border: 1px solid #d9dee9;
  text-align: center;
  border-radius: 50%;
  top: 50px;
  z-index: 1;
  transition: all 0.3s linear;
  cursor: pointer;
}
.booking_slider .slick-arrow.left {
  right: 120px;
}
.booking_slider .slick-arrow.right {
  right: 70px;
}
.booking_slider .slick-arrow:hover {
  background: #ffbb03;
  color: #fff;
  border-color: #ffbb03;
}

.boking_content {
  padding: 80px 70px 90px 45px;
}
.boking_content h2 {
  font-size: 36px;
  color: #020e27;
  line-height: 48px;
  margin-bottom: 32px;
}

.booking_form .form-group.choose_item {
  margin-top: 0px;
  padding-bottom: 25px;
}
.booking_form .form-group.choose_item label span {
  position: relative;
  color: #7a8292;
  font: 700 16px/22px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  transition: color 0.3s linear;
}
.booking_form .form-group.choose_item label span:before {
  content: "";
  width: 0;
  height: 1px;
  background: #ffbb03;
  right: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.2s linear;
}
.booking_form .form-group.choose_item label input {
  width: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.booking_form .form-group.choose_item label input[type=radio]:checked + span {
  color: #ffbb03;
}
.booking_form .form-group.choose_item label input[type=radio]:checked + span:before {
  width: 100%;
  left: 0;
  right: auto;
}
.booking_form .form-group.choose_item label:not(:last-child) {
  margin-right: 50px;
}
.booking_form .form-group {
  position: relative;
  margin-bottom: 0px;
  margin-top: 40px;
}
.booking_form .form-group .form-control {
  font-weight: 400;
  line-height: 30px;
  font-size: 15px;
  color: #020e27;
  font-family: "Lato", "eleganticons", sans-serif;
  position: relative;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
  border-bottom: 2px solid #dfe4ea;
  background: transparent;
  box-shadow: none;
}
.booking_form .form-group .form-control.placeholder {
  color: #7a8292;
  transition: transform ease 0.7s, opacity ease 0.8s 0.9s;
}
.booking_form .form-group .form-control:-moz-placeholder {
  color: #7a8292;
  -moz-transition: transform ease 0.7s, opacity ease 0.8s 0.9s;
  transition: transform ease 0.7s, opacity ease 0.8s 0.9s;
}
.booking_form .form-group .form-control::-moz-placeholder {
  color: #7a8292;
  -moz-transition: transform ease 0.7s, opacity ease 0.8s 0.9s;
  transition: transform ease 0.7s, opacity ease 0.8s 0.9s;
}
.booking_form .form-group .form-control::-webkit-input-placeholder {
  color: #7a8292;
  -webkit-transition: transform ease 0.7s, opacity ease 0.8s 0.9s;
  transition: transform ease 0.7s, opacity ease 0.8s 0.9s;
}
.booking_form .form-group .form-control:focus {
  outline: none;
}
.booking_form .form-group .form-control:focus.placeholder {
  transition: transform ease 0.5s, opacity ease 0.5s 0.5s;
  transform: translateY(-10px);
  opacity: 0;
  font-size: 12px;
}
.booking_form .form-group .form-control:focus:-moz-placeholder {
  -moz-transition: transform ease 0.5s, opacity ease 0.5s 0.5s;
  transition: transform ease 0.5s, opacity ease 0.5s 0.5s;
  transform: translateY(-10px);
  opacity: 0;
  font-size: 12px;
}
.booking_form .form-group .form-control:focus::-moz-placeholder {
  -moz-transition: transform ease 0.5s, opacity ease 0.5s 0.5s;
  transition: transform ease 0.5s, opacity ease 0.5s 0.5s;
  transform: translateY(-10px);
  opacity: 0;
  font-size: 12px;
}
.booking_form .form-group .form-control:focus::-webkit-input-placeholder {
  -webkit-transition: transform ease 0.5s, opacity ease 0.5s 0.5s;
  transition: transform ease 0.5s, opacity ease 0.5s 0.5s;
  transform: translateY(-10px);
  opacity: 0;
  font-size: 12px;
}
.booking_form .form-group .form-control:focus + .border_line {
  width: 100%;
  z-index: 3;
}
.booking_form .form-group .border_line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background: #ffbb03;
  height: 2px;
  border: 0px;
  margin-bottom: 0px;
  transition: width 0.3s linear;
}
.booking_form .form-group .slider_btn {
  padding: 10px 39px;
  margin-top: 10px;
}

.booking_form_area_two .booking_slider {
  margin-top: 0;
}

/*=============== booking_form_area css ===============*/
/*=============== advantage_area css ===============*/
.advantage_area {
  padding-top: 155px;
}

.advantage_item {
  padding-right: 20px;
  padding-top: 30px;
}
.advantage_item i {
  color: #020e27;
  line-height: 50px;
  display: inline-block;
}
.advantage_item i:before {
  font-size: 50px;
}
.advantage_item h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  margin: 24px 0px 18px;
}
.advantage_item p {
  font-size: 17px;
}

.car_img {
  max-width: 570px;
  margin: 12px auto 0px auto;
  position: relative;
  text-align: right;
  z-index: 1;
}
.car_img .car_one {
  position: absolute;
  left: 0;
  top: 55px;
}
.car_img .light {
  position: absolute;
  left: -33px;
  bottom: -25px;
  opacity: 0;
  zoom: 1.05;
  -webkit-animation: light 4.5s normal 2s forwards infinite linear;
          animation: light 4.5s normal 2s forwards infinite linear;
}
.car_img .car_two {
  position: relative;
  margin-bottom: -92px;
  z-index: -1;
}
.car_img .light_two {
  position: absolute;
  right: 72px;
  bottom: 5px;
  opacity: 0;
  zoom: 1.05;
  -webkit-animation: light 5s normal 4s forwards infinite linear;
          animation: light 5s normal 4s forwards infinite linear;
}

.service_adventage_area {
  padding-top: 120px;
}

/*=============== advantage_area css ===============*/
/*=============== call_action_area css ===============*/
.call_action_area {
  padding: 125px 0;
  overflow: hidden;
}

.action_img {
  padding: 30px;
  padding-right: 0px;
  position: relative;
  z-index: 1;
}
.action_img .overlay_bg {
  position: absolute;
  -webkit-clip-path: polygon(0px 100%, 0px 0px, 32% 0px, 100% 231%);
          clip-path: polygon(0px 100%, 0px 0px, 32% 0px, 100% 231%);
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #ffbb03;
  z-index: -1;
}

.action_content h3 {
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 20px;
}
.action_content .call_btn {
  font-size: 60px;
  line-height: 85px;
  font-family: "Barlow Condensed", sans-serif;
  color: #ffbb03;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 46px;
}
.action_content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 50px;
}
.action_content .slider_btn {
  padding: 15px 46px;
}
.action_content .slider_btn i {
  padding-left: 6px;
}

/*=============== call_action_area css ===============*/
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*============= featured_area css =============*/
.featured_area {
  padding: 125px 0px 100px;
}
.featured_area .section_title {
  margin-bottom: 64px;
}

.featured_info .slick-slide {
  padding-top: 12px;
  padding-bottom: 65px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px;
  padding-bottom: 24px;
}

.slick-dots {
  bottom: 0px;
}
.slick-dots li {
  margin: 0px 2px;
  width: 16px;
  height: 16px;
}
.slick-dots li button {
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid #c2cbde;
  background: #c2cbde;
  border-radius: 50%;
  transform: scale(0.55);
  transition: all 0.3s linear;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active button {
  transform: scale(1);
  background: #fff;
  border-color: #ffbb03;
}

.featured_item {
  text-align: center;
  padding: 30px 50px 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 14px 0px rgba(0, 11, 40, 0.06);
  border-top: 4px solid transparent;
  transition: all 0.2s linear;
  margin-bottom: 30px;
}
.featured_item .icon {
  color: #ffbb03;
  text-shadow: 1px 17px 24px rgba(255, 187, 3, 0.39);
  line-height: 85px;
}
.featured_item .icon:before {
  font-size: 75px;
}
.featured_item h3 {
  font-size: 24px;
  line-height: 26px;
  color: #020e27;
  margin-bottom: 22px;
}
.featured_item p {
  font: 400 17px/28px "Lato", sans-serif;
  color: #7a8292;
  margin-bottom: 25px;
}
.featured_item:hover {
  border-color: #ffbb03;
  transform: translateY(-10px);
  box-shadow: 0px 30px 40px 0px rgba(0, 11, 40, 0.08);
}

.learn_btn {
  font: 600 18px/26px "Barlow Condensed", sans-serif;
  display: inline-block;
  color: #020e27;
  position: relative;
  transition: color 0.4s linear;
}
.learn_btn:before {
  width: 0;
  height: 1px;
  right: 0;
  content: "";
  position: absolute;
  background: #ffbb03;
  bottom: 0;
  transition: width 0.3s linear;
}
.learn_btn i {
  vertical-align: middle;
  font-size: 12px;
  padding-left: 5px;
}
.learn_btn:hover {
  color: #ffbb03;
}
.learn_btn:hover:before {
  right: auto;
  left: 0;
  width: 100%;
}

/*============= featured_area css =============*/
/*============= city_location_area css =============*/
.city_location_tab .location_inner_tab {
  justify-content: center;
  border: 0px;
}
.city_location_tab .location_inner_tab .nav-item {
  margin-bottom: 6px;
}
.city_location_tab .location_inner_tab .nav-item .nav-link {
  font-size: 26px;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 26px;
  border: 0px;
  border-radius: 0px;
  background: #f8f9fc;
  padding: 34px 75px;
  color: #020e27;
  transition: background 0.3s linear, color 0.3s linear;
}
.city_location_tab .location_inner_tab .nav-item .nav-link i {
  line-height: 45px;
  vertical-align: middle;
  display: inline-block;
  padding-right: 20px;
  color: #7a8292;
  transition: color 0.3s linear;
}
.city_location_tab .location_inner_tab .nav-item .nav-link i:before {
  font-size: 50px;
}
.city_location_tab .location_inner_tab .nav-item .nav-link.active, .city_location_tab .location_inner_tab .nav-item .nav-link:hover {
  background: #ffbb03;
  color: #fff;
}
.city_location_tab .location_inner_tab .nav-item .nav-link.active i, .city_location_tab .location_inner_tab .nav-item .nav-link:hover i {
  color: #fff;
}
.city_location_tab .location_inner_tab .nav-item:not(:last-child) {
  margin-right: 6px;
}

.booking_quality_tab {
  justify-content: center;
  padding: 20px 0px 20px;
}
.booking_quality_tab .nav-item {
  margin-bottom: 0;
}
.booking_quality_tab .nav-item:not(:last-child) {
  margin-right: 40px;
}
.booking_quality_tab .nav-item .nav-link {
  border: 0px;
  border-radius: 0px;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #7a8292;
  padding: 0px;
  position: relative;
  transition: color 0.2s linear;
}
.booking_quality_tab .nav-item .nav-link:before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #ffbb03;
  transition: width 0.3s linear;
}
.booking_quality_tab .nav-item .nav-link.active, .booking_quality_tab .nav-item .nav-link:hover {
  color: #ffbb03;
}
.booking_quality_tab .nav-item .nav-link.active:before, .booking_quality_tab .nav-item .nav-link:hover:before {
  left: 0;
  right: auto;
  width: 100%;
}

.boking_information {
  padding-top: 25px;
}
.boking_information .location-milage {
  padding: 36px 0px;
  border-bottom: 1px dotted #d9deeb;
  align-items: center;
}
.boking_information .location-milage .media-body h4 {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 5px;
}
.boking_information .location-milage .media-body p {
  margin-bottom: 0px;
}
.boking_information .location-milage .mile {
  font-size: 36px;
  color: #ffbb03;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  text-align: right;
}
.boking_information .location-milage .mile span {
  font-size: 20px;
  font-weight: 500;
}

/*============= city_location_area css =============*/
/*============= get_app_area css =============*/
.get_app_area {
  background: #ffbb03;
}

.get_app_content {
  color: #fff;
  padding-right: 110px;
}
.get_app_content .section_title {
  margin-bottom: 28px;
}
.get_app_content .section_title h5, .get_app_content .section_title h2 {
  color: #fff;
}
.get_app_content .section_title h2 {
  font-size: 50px;
  line-height: 55px;
}
.get_app_content p {
  font-size: 17px;
  margin-bottom: 42px;
}
.get_app_content ul {
  list-style: none;
  margin-bottom: 70px;
  padding-left: 0px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 70%;
}
.get_app_content ul li {
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  position: relative;
  padding-left: 28px;
  width: 50%;
}
.get_app_content ul li:before {
  content: "R";
  position: absolute;
  left: 0;
  top: 2px;
  font-family: eleganticons;
  font-size: 16px;
  font-weight: 400;
}
.get_app_content .slider_btn {
  font-size: 24px;
  border: 2px solid #fff;
  transition: all 0.4s linear;
}
.get_app_content .slider_btn img {
  vertical-align: bottom;
  margin-right: 12px;
}
.get_app_content .slider_btn.app_btn {
  color: #fff;
}
.get_app_content .slider_btn.app_btn img {
  filter: brightness(1000);
}
.get_app_content .slider_btn.app_btn:hover {
  background: #fff;
  color: #020e27;
}
.get_app_content .slider_btn.app_btn:hover img {
  filter: brightness(0);
}
.get_app_content .slider_btn.app_btn_two {
  color: #020e27;
  margin-left: 20px;
}
.get_app_content .slider_btn.app_btn_two:before {
  background: #fff;
}
.get_app_content .slider_btn.app_btn_two img {
  filter: brightness(0);
}
.get_app_content .slider_btn.app_btn_two:hover {
  background: transparent;
  color: #fff;
}
.get_app_content .slider_btn.app_btn_two:hover img {
  filter: brightness(1000);
}

.app_image {
  position: relative;
}
.app_image .shadow_bottom {
  content: "";
  position: absolute;
  width: 80%;
  height: 5px;
  border-radius: 50%/5px;
  left: 10%;
  bottom: 0px;
  box-shadow: 0px 35px 33px 0 rgba(0, 0, 0, 0.8);
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
          animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
}
.app_image .image_two {
  position: absolute;
  right: 0;
  top: 0;
}
.app_image .image_two img {
  -webkit-animation-name: jump;
          animation-name: jump;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 3.8s;
          animation-duration: 3.8s;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
          animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
}
.app_image .image_two .shadow_bottom {
  -webkit-animation: shadow 3.8s infinite linear;
          animation: shadow 3.8s infinite linear;
  bottom: 10px;
}
.app_image .image_first {
  position: absolute;
  left: 60px;
  top: 80px;
}
.app_image .image_first img {
  -webkit-animation-name: jump;
          animation-name: jump;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
          animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
}
.app_image .image_first .shadow_bottom {
  -webkit-animation: shadow 2.8s infinite linear;
          animation: shadow 2.8s infinite linear;
}

@-webkit-keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
    transition: transform 1.4s 0.6s linear;
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
    transition: transform 1.4s 0.6s linear;
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes shadow {
  0% {
    box-shadow: 0px 35px 33px 0 #000;
  }
  50% {
    box-shadow: 0px 35px 35px -2px #000;
    width: 60%;
    left: 20%;
  }
  100% {
    box-shadow: 0px 35px 33px 0 #000;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 35px 33px 0 #000;
  }
  50% {
    box-shadow: 0px 35px 35px -2px #000;
    width: 60%;
    left: 20%;
  }
  100% {
    box-shadow: 0px 35px 33px 0 #000;
  }
}
/*============= get_app_area css =============*/
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*============== footer_area css =================*/
.footer_area {
  background: #020e27;
  padding: 30px 0;
}

.f_widget .f_title {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
}
.f_widget.about_widget p {
  font-size: 14px;
  line-height: 35px;
  font-family: "Lato", sans-serif;
  color: #6e778b;
}
.f_widget.about_widget p a {
  color: #ffbb03;
}
.f_widget.about_widget .f_social_icon {
  padding: 42px 0px 40px;
}
.f_widget.link_widget {
  padding-left: 130px;
}
.f_widget.link_widget ul {
  margin-bottom: 0px;
  padding-top: 28px;
}
.f_widget.link_widget ul li a {
  font-family: "Lato", sans-serif;
  line-height: 26px;
  position: relative;
  transition: color 0.3s linear;
  display: inline-block;
  color: #a8b2c6;
}
.f_widget.link_widget ul li a:before {
  content: "";
  right: 0;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  background: #ffbb03;
  transition: width 0.3s linear;
  display: inline-block;
}
.f_widget.link_widget ul li a:hover {
  color: #ffbb03;
}
.f_widget.link_widget ul li a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.f_widget.link_widget ul li:not(:last-child) {
  margin-bottom: 10px;
}

.f_social_icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 12px;
  color: #818593;
  display: inline-block;
  border: 1px solid #4d576d;
  border-radius: 50%;
  margin-right: 5px;
  transition: all 0.2s linear;
}
.f_social_icon a:hover {
  background: #ffbb03;
  color: #fff;
  border-color: #ffbb03;
}

.logo img{
    height:65px;
}
.whatsapp{
  position: fixed;
  bottom:20px;
  right:20px;
  z-index: 9999;
  animation-name: stretch;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-play-state: running;
  background-color:#00B247;
  padding:10px;
  color:#fff;
  border-radius: 50px;
}
.whatsapp svg{
  height:60px;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease-in-out;
}
.whatsapp svg path{
  stroke:#fff;
}
.phone_btn{
  text-align: center;
}
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1); /* Zvětšení o 10% */
  }
  100% {
      transform: scale(1);
  }
}

@media (max-width: 840px) {
  .action_content .call_btn{
    font-size:42px;
  }
  .boking_information .location-milage .mile {
    font-size:22px;
  }
}