/* Global */
/* Variables */
/* Colors */
/* Fonts */
/* Container */
/* Date Dropper Style */
div.datedropper {
  --dd-color1: #2490eb !important;
}

/* Custom Container */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1300px;
  }
}

/* Global */
::-moz-selection {
  /* Code for Firefox */
  background-color: #ebfaff;
  color: #2490eb;
}

::selection {
  background-color: #ebfaff;
  color: #2490eb;
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2490eb #ebfaff;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #ebfaff;
}

*::-webkit-scrollbar-thumb {
  background: #2490eb;
}

*,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  outline: 0 !important;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a {
  color: #121212;
  text-decoration: none;
}

a:hover {
  color: #2490eb;
}

.section_heading {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 35px;
  color: #121212;
  max-width: 35%;
  margin-bottom: 50px;
}

.secondary_heading {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 23px;
  color: #121212;
  margin: 30px 0;
}

.global_btn {
  background-color: #2490eb;
  border-color: #2490eb;
  border-radius: 10px;
  color: #fff;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 40px;
}

.global_btn:hover {
  color: #fff;
}

.form-check label {
  vertical-align: sub;
  padding-left: 10px;
  font-weight: 400;
  font-size: 12px;
  color: #404040;
}

.form-check .form-check-input {
  border-color: #6c6c6c;
  width: 24px;
  height: 24px;
  border-radius: 0 !important;
  background-color: transparent;
}

.form-check .form-check-input:checked {
  background-color: #2490eb;
  border-color: #2490eb;
}

.form-check .form-check-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom_badge {
  background-color: #3ac8a5;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
}

/* Back To Top Button */
#back_to_top_btn {
  display: inline-block;
  background-color: #2490eb;
  width: 44px;
  height: 44px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  right: 78px;
  bottom: 30px;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#back_to_top_btn::after {
  font: var(--fa-font-solid);
  content: "\f062";
  font-size: 22px;
  color: #fff;
}

#back_to_top_btn:hover {
  cursor: pointer;
  background-color: #ebfaff;
}

#back_to_top_btn:hover::after {
  color: #2490eb;
}

#back_to_top_btn:active {
  background-color: #ebfaff;
  color: #2490eb;
}

#back_to_top_btn.show {
  opacity: 1;
  visibility: visible;
}

/* Feature Card */
.feature_card {
  text-align: center;
  border: none;
  background-color: #fff;
  border-radius: 4px;
  padding: 50px;
  margin-bottom: 25px;
  min-height: 270px;
}

.feature_card .feature_card_img {
  width: 74px;
  height: 74px;
  overflow: hidden;
  margin-bottom: 20px;
}

.feature_card h5 {
  font-weight: 500;
  font-size: 16px;
  color: #121212;
  margin-bottom: 15px;
}

.feature_card p {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  color: #7a7e83;
  margin-bottom: 0;
}

/* Airline Card */
.airline_card {
  border: 1px solid #e5e5e5;
  padding: 10px;
  height: 81px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.airline_card img {
  -webkit-filter: opacity(30%) grayscale(100%);
  filter: opacity(30%) grayscale(100%);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.airline_card:hover img {
  -webkit-filter: opacity(100%) grayscale(0%);
  filter: opacity(100%) grayscale(0%);
}

/* Basic Feature Card */
.basic_feature_card {
  border-radius: 0;
  border: none;
  margin-bottom: 25px;
}

.basic_feature_card .card-body {
  padding: 10px;
}

.basic_feature_card .card-body h5 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 20px;
  color: #121212;
}

.basic_feature_card .card-body p {
  font-weight: 400;
  font-size: 16px;
  color: #7a7e83;
  margin-bottom: 0;
}

/* Recent Flight Card */
.recent_flight_card {
  border: none;
  border-radius: 0;
}

.recent_flight_card .recent_flight_card_img {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
}

.recent_flight_card .recent_flight_card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.recent_flight_card .recent_flight_card_img .overlay_text {
  background-color: #fff;
  border-radius: 90px;
  padding: 12px;
  position: absolute;
  bottom: 20px;
  left: 20%;
  right: 20%;
  text-align: center;
}

.recent_flight_card .recent_flight_card_img .overlay_text h4 {
  font-weight: 500;
  font-size: 14px;
  color: #414141;
  margin-bottom: 0;
}

.recent_flight_card .card-body {
  text-align: center;
  padding: 20px 0;
}

.recent_flight_card .card-body h5 {
  font-weight: 500;
  font-size: 14px;
  color: #23272b;
  margin-bottom: 0;
}

.recent_flight_card .card-body h5 .old_price {
  font-weight: 400;
  color: #7a7e83;
  text-decoration: line-through;
}

.recent_flight_card .card-body h5 .sale {
  font-weight: 400;
  color: #2490eb;
}

/* Swiper */
.swiper.airlines_swiper {
  padding-bottom: 70px;
}

.swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: transparent;
  opacity: 1;
  border: 1px solid #2490eb;
}

.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2490eb;
  width: 27px;
  border-radius: 90px;
}

.recent_flights_swiper_parent {
  position: relative;
}

.recent_flights_swiper_parent .swiper-button-next,
.recent_flights_swiper_parent .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
  background-color: #414141;
  color: #fff;
}

.recent_flights_swiper_parent .swiper-button-next::after,
.recent_flights_swiper_parent .swiper-button-prev::after {
  font-size: 20px;
}

.recent_flights_swiper_parent .swiper-button-next.swiper-button-disabled,
.recent_flights_swiper_parent .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.recent_flights_swiper_parent .swiper-button-next:hover,
.recent_flights_swiper_parent .swiper-button-prev:hover {
  background-color: #ebfaff;
  color: #2490eb;
}

.recent_flights_swiper_parent .swiper-button-next {
  right: -25px;
}

.recent_flights_swiper_parent .swiper-button-prev {
  left: -25px;
}

/* Banner Form */
.banner_form {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  -webkit-filter: drop-shadow(0 13px 26px rgba(0, 0, 0, 0.11));
  filter: drop-shadow(0 13px 26px rgba(0, 0, 0, 0.11));
  margin-top: 25px;
}

.banner_form .form-floating {
  margin-bottom: 25px;
}

.banner_form .form-floating .form-control,
.banner_form .form-floating .form-select {
  border-color: #cbcbcb;
  font-weight: 500;
  font-size: 14px;
  color: #5d5d5d;
}

.banner_form .form-floating label {
  font-weight: 400;
  font-size: 14px;
  color: #5d5d5d;
  opacity: 1;
}

.banner_form .btn {
  border-radius: 10px;
  width: 100%;
  background-color: #2490eb;
  border-color: #2490eb;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  padding: 10px;
}

.banner_form .directions_box {
  border-radius: 10px;
  padding: 15px;
  background-color: #f7f7f7;
  margin-bottom: 25px;
}

.banner_form .directions_box .form-control {
  border: none;
  border-bottom: 1px solid #cbcbcb;
  font-weight: 400;
  font-size: 14px;
  color: #5d5d5d;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
  padding-bottom: 15px;
}

.banner_form .directions_box .btn {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 12px 0;
  border-radius: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.banner_form .directions_box .btn:hover {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Custom Switch */
.custom_switch {
  height: 48px;
  margin-bottom: 25px;
}

.custom_switch input.status {
  display: none;
}

.custom_switch input.status + label {
  height: 100%;
  width: 100%;
}

.custom_switch input.status + label > .status-switch {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #f7f7f7;
  color: #414141;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0;
  border-radius: 90px;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}

.custom_switch input.status + label > .status-switch::before,
.custom_switch input.status + label > .status-switch::after {
  border-radius: 90px;
  height: 100%;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_switch input.status + label > .status-switch::before {
  background-color: #2490eb;
  color: #fff;
  left: 0px;
  z-index: 10;
  content: attr(data-unchecked);
}

.custom_switch input.status + label > .status-switch::after {
  right: 0;
  content: attr(data-checked);
}

.custom_switch input.status:checked + label > .status-switch {
  background-color: #f7f7f7;
}

.custom_switch input.status:checked + label > .status-switch::after {
  left: 0;
  content: attr(data-unchecked);
}

.custom_switch input.status:checked + label > .status-switch::before {
  color: #fff;
  left: 50%;
  content: attr(data-checked);
}

/* Custom Modal */
.custom_modal .modal-content {
  background-color: transparent;
  background-image: url("../images/modal_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.custom_modal .modal-content .modal-header {
  padding: 30px 0;
  border: none;
}

.custom_modal .modal-content .modal-header .btn-close {
  background: #f8f9fa
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23363636'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  opacity: 1;
}

.custom_modal .modal-content .modal-body {
  padding: 60px 0;
  overflow-x: hidden;
}

.custom_modal .modal-content .modal-body h1 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 55px;
  color: #121212;
  margin-bottom: 30px;
}

.custom_modal .modal-content .modal-body .form-check {
  margin-bottom: 30px;
}

.custom_modal .modal-content .modal-body .form-floating {
  margin-bottom: 20px;
}

.custom_modal .modal-content .modal-body .form-floating .form-control {
  font-weight: 500;
  font-size: 14px;
  color: #5d5d5d;
  border: none;
}

.custom_modal .modal-content .modal-body .form-floating label {
  font-weight: 400;
  font-size: 14px;
  color: #5d5d5d;
}

.custom_modal .modal-content .modal-body .card-group {
  padding-left: 30px;
}

.custom_modal .modal-content .modal-body .card-group .card {
  border-radius: 30px;
  padding: 20px 40px;
  border: none;
  -webkit-box-flex: unset;
  -ms-flex: unset;
  flex: unset;
}

.custom_modal .modal-content .modal-body .card-group .card:first-child {
  width: 70%;
}

.custom_modal .modal-content .modal-body .card-group .card:first-child::after {
  content: "";
  width: 1px;
  height: 84%;
  border: 2px dashed #8d8d8d;
  position: absolute;
  right: -2px;
  top: 25px;
  z-index: 2;
}

.custom_modal .modal-content .modal-body .card-group .card:last-child {
  width: 30%;
}

.custom_modal .modal-content .modal-body .card-group .card h6 {
  font-weight: 400;
  font-size: 13px;
  color: #5d5d5d;
  margin-bottom: 0;
}

.custom_modal .modal-content .modal-body .card-group .card h5 {
  font-weight: 500;
  font-size: 13px;
  color: #5d5d5d;
  margin-bottom: 0;
  margin-top: 5px;
}

.custom_modal .modal-content .modal-body .card-group .card h4 {
  font-weight: 500;
  font-size: 19px;
  color: #5d5d5d;
  margin-bottom: 0;
  margin-top: 5px;
}

.custom_modal .modal-content .modal-body .card-group .card .list-group-item {
  border: none;
  border-bottom: 1px solid #8d8d8d;
  padding: 20px 0;
}

.custom_modal
  .modal-content
  .modal-body
  .card-group
  .card
  .list-group-item:last-child {
  border-bottom: none;
}

.custom_modal2 .modal-content {
  background: none;
  background-color: #fff;
}

.custom_modal2 .modal-content .modal-body h1 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.custom_modal2 .modal-content .modal-body h5 {
  font-weight: 400;
  font-size: 20px;
  color: #414141;
  margin-bottom: 30px;
}

.custom_modal3 .modal-content {
  background-color: #f7f7f7;
}

.custom_modal3 .modal-content .modal-header {
  background-image: url("../images/mobile_modal_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  display: block;
  padding: 30px 1rem;
}

.custom_modal3 .modal-content .modal-header .btn-close {
  background-color: #fff;
  border-radius: 8px;
  opacity: 1;
  background-image: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.custom_modal3 .modal-content .modal-header h2 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 30px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 0;
}

.custom_modal3 .modal-content .modal-body {
  padding: 30px 1rem;
}

.custom_modal3 .modal-content .modal-body .form-floating {
  margin-bottom: 20px;
}

.custom_modal3 .modal-content .modal-body .form-floating .form-control {
  font-weight: 500;
  font-size: 14px;
  color: #7a7e83;
  border: none;
}

.custom_modal3 .modal-content .modal-body .form-floating label {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  opacity: 1;
}

.custom_modal3 .modal-content .modal-body .banner_form {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  -webkit-filter: none;
  filter: none;
}

.custom_modal3 .modal-content .modal-body .banner_form .col-sm-6 {
  width: 50%;
}

.custom_modal3
  .modal-content
  .modal-body
  .banner_form
  .form-floating
  .form-control,
.custom_modal3
  .modal-content
  .modal-body
  .banner_form
  .form-floating
  .form-select {
  border: none;
  color: #7a7e83;
}

.custom_modal3 .modal-content .modal-body .banner_form .form-floating label {
  opacity: 1;
}

.custom_modal3
  .modal-content
  .modal-body
  .banner_form
  .custom_switch
  input.status
  + label
  > .status-switch,
.custom_modal3
  .modal-content
  .modal-body
  .banner_form
  .custom_switch
  input.status:checked
  + label
  > .status-switch {
  background-color: #fff;
}

.custom_modal3 .modal-content .modal-footer {
  border: none;
}

.custom_modal3 .modal-content .modal-footer .btn {
  border-radius: 10px;
  width: 100%;
  background-color: #2490eb;
  border-color: #2490eb;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  padding: 10px;
}

.custom_modal3 .modal-content .modal-footer .btn:hover {
  background-color: #ebfaff;
  border-color: #ebfaff;
  color: #2490eb;
}

.custom_modal4 .modal-content {
  background-color: #fff;
}

.custom_modal4 .modal-content .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0;
}

.custom_modal4 .modal-content .modal-body h1 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 30px;
  color: #303030;
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: center;
  padding: 0 1rem;
}

.custom_modal4 .modal-content .modal-body h5 {
  font-weight: 400;
  font-size: 20px;
  color: #7a7e83;
  text-align: center;
  padding: 0 1rem;
}

.custom_modal5 .modal-content .modal-header {
  position: relative;
  padding-bottom: 120px;
}

.custom_modal5 .modal-content .modal-header .directions_box {
  -webkit-filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.04));
  background-color: #fff;
  border-radius: 4px;
  padding: 20px;
  position: absolute;
  bottom: -85px;
  left: 1rem;
  right: 1rem;
  z-index: 1056;
}

.custom_modal5 .modal-content .modal-header .directions_box::before,
.custom_modal5 .modal-content .modal-header .directions_box::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f7f7f7;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom_modal5 .modal-content .modal-header .directions_box::before {
  left: -10px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(50%, #f7f7f7),
    color-stop(50%, #4c9fe9)
  );
  background: linear-gradient(0deg, #f7f7f7 50%, #4c9fe9 50%);
}

.custom_modal5 .modal-content .modal-header .directions_box::after {
  right: -10px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(50%, #f7f7f7),
    color-stop(50%, #4ea4ec)
  );
  background: linear-gradient(0deg, #f7f7f7 50%, #4ea4ec 50%);
}

.custom_modal5 .modal-content .modal-header .directions_box .col-sm-2 {
  width: 16.66666667%;
}

.custom_modal5 .modal-content .modal-header .directions_box .col-sm-10 {
  width: 83.33333333%;
}

.custom_modal5 .modal-content .modal-header .directions_box .form-control {
  border: none;
  border-radius: 0;
}

.custom_modal5 .modal-content .modal-header .directions_box .btn {
  padding: 0;
  border-radius: 0;
}

.custom_modal5 .modal-content .modal-header .directions_box hr {
  background-color: transparent;
  border-top: 2px dashed #8d8d8d;
  height: auto;
  opacity: 1;
}

.custom_modal5 .modal-content .modal-body {
  padding-top: 120px;
}

/* Main Header */
#main_header {
  background-color: transparent;
  padding: 0;
}

#main_header .main_header_child {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  max-width: 1275px;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#main_header hr {
  background-color: #fff;
  width: 1px;
  height: 30px;
  opacity: 1;
  margin: 0;
  margin-left: 15px;
  margin-right: 5px;
}

#main_header .nav-item {
  margin-left: 10px;
}

#main_header .nav-item:first-child {
  margin-left: 0;
}

#main_header .nav-item .nav-link {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  padding: 0;
}

#main_header .nav-item .nav-link span {
  display: inline-block;
}

#main_header .nav-item .nav-link span i {
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #2490eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#main_header .nav-item .nav-link span .header_icons {
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #2490eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#main_header .nav-item .nav-link span .header_icons .inner_img {
  display: none;
}

#main_header.inner_header .main_header_child {
  max-width: 100%;
  position: inherit;
}

#main_header.inner_header hr {
  background-color: #2490eb;
}

#main_header.inner_header .nav-item .nav-link {
  color: #363636;
}

#main_header.inner_header .nav-item .nav-link span i {
  background-color: #2490eb;
  color: #fff;
}

#main_header.inner_header .nav-item .nav-link span .header_icons {
  background-color: #2490eb;
}

#main_header.inner_header .nav-item .nav-link span .header_icons .inner_img {
  display: initial;
}

#main_header.inner_header .nav-item .nav-link span .header_icons .home_img {
  display: none;
}

#main_header.add_shadow {
  background-color: #2490eb;
}

#main_header.add_shadow .main_header_child {
  position: relative;
  max-width: 100%;
  padding: 25px 0;
}

#main_header.add_shadow hr {
  background-color: #fff;
}

#main_header.add_shadow .nav-item .nav-link {
  color: #fff;
}

#main_header.add_shadow .nav-item .nav-link span i {
  background-color: #fff;
  color: #2490eb;
}

#main_header.add_shadow .nav-item .nav-link span .header_icons {
  background-color: #fff;
}

#main_header.add_shadow .nav-item .nav-link span .header_icons .inner_img {
  display: none;
}

#main_header.add_shadow .nav-item .nav-link span .header_icons .home_img {
  display: initial;
}

.mobile_header {
  display: none;
}

/* Main Banner */
#main_banner .carousel-item {
  height: 100vh;
}

#main_banner .carousel-item img {
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

#main_banner .carousel-item img.mobile_main_banner_img {
  display: none !important;
}

#main_banner .carousel-item .carousel-caption {
  top: 50%;
  left: auto;
  right: auto;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: left;
  width: 100%;
  max-width: 1275px;
}

#main_banner .carousel-item .carousel-caption h1 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 55px;
  color: #121212;
  margin-bottom: 20px;
}

#main_banner .carousel-item .carousel-caption p {
  font-weight: 400;
  font-size: 16px;
  color: #121212;
  margin-bottom: 0;
}

#main_banner .carousel-item .carousel-caption .mobile_banner_btn {
  display: none;
}

#main_banner .main_banner_pattern {
  background-image: url("../images/main_banner_pattern.png");
  background-repeat: repeat;
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

#main_banner .banner_form_parent {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  max-width: 1275px;
  z-index: 10;
}

/* Inner Banner */
.inner_banner .inner_banner_child {
  border-radius: 20px;
  overflow: hidden;
  background-image: url("../images/inner_banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 622px;
  padding: 30px;
}

.inner_banner .inner_banner_child .inner_banner_caption {
  position: relative;
  background-color: #fff;
  padding: 30px;
}

.inner_banner .inner_banner_child .inner_banner_caption h1 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 35px;
  color: #121212;
  margin-bottom: 0;
  text-transform: uppercase;
}

.inner_banner
  .inner_banner_child
  .inner_banner_caption
  .inner_banner_caption_img {
  background-color: #fff;
  border-radius: 50%;
  border: 5px solid #2490eb;
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: -20px;
  right: -20px;
}

.inner_banner_mobile {
  display: none;
}

.booking_modal_opener {
  display: none;
}

/* Basic Features */
.basic_features {
  padding-top: 100px;
  padding-bottom: 50px;
}

/* About */
.about {
  padding-bottom: 50px;
}

.about h2 {
  max-width: 40%;
}

.about p {
  font-weight: 400;
  font-size: 16px;
  color: #7a7e83;
}

.about .about_mobile_img {
  display: none;
}

/* Recent Flights */
.recent_flights {
  padding: 50px 0;
}

/* Features */
.features {
  background-color: #f7f7f7;
  padding: 60px 0;
}

/* Airlines */
.airlines {
  padding-top: 80px;
}

/* Flight Content */
.flight_content {
  padding-top: 50px;
  padding-bottom: 20px;
}

.flight_content .secondary_heading {
  text-transform: uppercase;
}

.flight_content h2 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 23px;
  color: #121212;
  margin: 30px 0;
  text-transform: uppercase;
}

.flight_content p {
  font-weight: 400;
  font-size: 16px;
  color: #7a7e83;
}

/* Newsletter Footer */
.newsletter_footer_parent {
  position: relative;
  margin-bottom: 50px;
  margin-top: 100px;
}

.newsletter_footer_parent .nf_bag {
  position: absolute;
  top: -88px;
  left: 80px;
  z-index: 2;
}

.newsletter_footer_parent .newsletter_footer {
  border-radius: 10px;
  background-color: #ebfaff;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.newsletter_footer_parent .newsletter_footer .nf_fire_img {
  display: none;
}

.newsletter_footer_parent .newsletter_footer .nf_circle_lg {
  width: 130px;
  height: 130px;
  border: 21px solid #2490eb;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  right: -50px;
}

.newsletter_footer_parent .newsletter_footer .nf_circle {
  width: 21px;
  height: 21px;
  background-color: #2490eb;
  border-radius: 50%;
  position: absolute;
  top: 155px;
  right: 80px;
}

.newsletter_footer_parent .newsletter_footer h2 {
  font-family: "Roboto Slab", serif;
  font-weight: 600;
  font-size: 30px;
  color: #121212;
  margin-bottom: 20px;
}

.newsletter_footer_parent .newsletter_footer h2 span {
  color: #2490eb;
}

.newsletter_footer_parent .newsletter_footer p {
  font-weight: 400;
  font-size: 16px;
  color: #121212;
  margin-bottom: 20px;
}

.newsletter_footer_parent .newsletter_footer .input-group {
  background-color: #fff;
  border-radius: 90px;
}

.newsletter_footer_parent .newsletter_footer .input-group .btn {
  border-radius: 90px !important;
  background-color: #2490eb;
  border-color: #2490eb;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  min-width: 144px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.newsletter_footer_parent .newsletter_footer .input-group .btn:hover {
  min-width: 154px;
}

.newsletter_footer_parent .newsletter_footer .input-group .btn .mob_txt {
  display: none;
}

.newsletter_footer_parent .newsletter_footer .input-group .form-control {
  border-top-left-radius: 90px !important;
  border-bottom-left-radius: 90px !important;
  background-color: #fff;
  border-color: #fff;
  font-weight: 400;
  font-size: 16px;
  padding: 15px 25px;
}

/* Main Footer */
.main_footer {
  padding: 50px 0;
}

.main_footer h4 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 20px;
  color: #121212;
  margin-bottom: 30px;
}

.main_footer p {
  font-weight: 400;
  font-size: 14px;
  color: #7a7e83;
  margin-top: 30px;
  margin-bottom: 40px;
}

.main_footer h6,
.main_footer a {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 14px;
  color: #363636;
  margin-bottom: 20px;
  word-break: break-all;
}

.main_footer a:hover {
  color: #2490eb;
}

.main_footer .footer_accredit_section {
  padding-left: 30px;
}

.main_footer .footer_instagram_gallery {
  --bs-gutter-x: 0.5rem;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.main_footer .footer_instagram_gallery .col-sm-4 {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.instagram_img {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px !important;
  width: 100%;
  height: 100px;
  cursor: pointer;
}

.instagram_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer_social_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer_social_icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid #363636;
  padding: 5px;
  color: #363636;
  background-color: transparent;
  margin: 5px;
  font-size: 18px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.footer_social_icons a:first-child {
  margin-left: 0;
}

.footer_social_icons a:last-child {
  margin-right: 0;
}

.footer_social_icons a:hover {
  color: #2490eb;
  background-color: #ebfaff;
  border-color: #ebfaff;
}

/* Copyright Footer */
.copyright_footer {
  background-color: #343a40;
  padding: 15px 0;
}

.copyright_footer p {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.copyright_footer a:hover {
  color: #2490eb !important;
}

.footer_social_icons2 {
  display: none;
}

.scrollable_content_modal {
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Responsive */
/* Small Device */
@media only screen and (max-width: 1199px) {
  #main_header .main_header_child {
    max-width: 938px;
  }
  #main_banner .carousel-item {
    height: 800px;
  }
  #main_banner .carousel-item img {
    height: 800px;
  }
  #main_banner .carousel-item .carousel-caption {
    max-width: 938px;
  }
  #main_banner .carousel-item .carousel-caption h1 {
    font-size: 45px;
  }
  #main_banner .carousel-item .carousel-caption .col-sm-4 {
    width: 41.66666667%;
  }
  #main_banner .banner_form_parent {
    max-width: 938px;
  }
  #main_banner .banner_form_parent .col-sm-4 {
    width: 41.66666667%;
  }
  #main_banner .banner_form_parent .col-sm-4.offset-sm-8 {
    margin-left: 58.33333333%;
  }
  .about h2 {
    max-width: 100%;
  }
  .section_heading {
    max-width: 100%;
  }
  .instagram_img {
    height: 80px;
  }
  .newsletter_footer_parent .nf_bag {
    left: 30px;
  }
  .inner_banner .inner_banner_child .col-sm-4 {
    width: 41.66666667%;
  }
  .inner_banner .inner_banner_child .col-sm-4.offset-sm-3 {
    margin-left: 16.66666667%;
  }
  .inner_banner .inner_banner_child .inner_banner_caption h1 {
    font-size: 30px;
  }
  .custom_modal .modal-content .modal-body h1 {
    font-size: 45px;
  }
}

@media only screen and (max-width: 992px) {
  #main_header .main_header_child {
    max-width: 935px;
  }
  #main_banner .carousel-item .carousel-caption {
    max-width: 935px;
  }
  #main_banner .carousel-item .carousel-caption h1 {
    font-size: 35px;
  }
  #main_banner .banner_form_parent {
    max-width: 935px;
  }
  .section_heading {
    font-size: 30px;
  }
}

@media only screen and (max-width: 912px) {
  #main_header .main_header_child {
    max-width: 695px;
  }
  #main_banner .carousel-item .carousel-caption {
    max-width: 695px;
  }
  #main_banner .carousel-item .carousel-caption h1 {
    font-size: 35px;
  }
  #main_banner .banner_form_parent {
    max-width: 695px;
  }
}

/* Tablet */
@media only screen and (max-width: 820px) {
  #main_header .main_header_child {
    max-width: 695px;
  }
  #main_banner .carousel-item .carousel-caption {
    max-width: 695px;
  }
  #main_banner .carousel-item .carousel-caption h1 {
    font-size: 25px;
  }
  #main_banner .carousel-item .carousel-caption .col-sm-4 {
    width: 50%;
  }
  #main_banner .banner_form_parent {
    max-width: 695px;
  }
  #main_banner .banner_form_parent .col-sm-4 {
    width: 50%;
  }
  #main_banner .banner_form_parent .col-sm-4.offset-sm-8 {
    margin-left: 50%;
  }
  .section_heading {
    font-size: 25px;
  }
  .basic_feature_card .card-body h5 {
    font-size: 18px;
  }
  .basic_feature_card .card-body p {
    font-size: 14px;
  }
  .features .col-sm-4 {
    width: 50%;
  }
  .newsletter_footer_parent .nf_bag {
    display: none;
  }
  .newsletter_footer_parent .row {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .newsletter_footer_parent .row .col-sm-6 {
    width: 66.66666667%;
  }
  .main_footer h4 {
    font-size: 18px;
  }
  .instagram_img {
    height: 60px;
  }
  .inner_banner .inner_banner_child .col-sm-4 {
    width: 50%;
  }
  .inner_banner .inner_banner_child .col-sm-4.offset-sm-3 {
    margin-left: 0%;
  }
  .inner_banner .inner_banner_child .col-sm-5 {
    width: 50%;
  }
  .inner_banner .inner_banner_child .inner_banner_caption h1 {
    font-size: 25px;
  }
  .custom_modal .modal-content .modal-body .col-sm-7 {
    width: 100%;
  }
  .custom_modal .modal-content .modal-body .col-sm-5 {
    width: 100%;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 720px) {
  #main_header .main_header_child {
    max-width: 520px;
  }
  #main_header.inner_header .main_header_child .offcanvas-end {
    width: auto;
  }
  #main_header.add_shadow .main_header_child .offcanvas-end {
    width: auto;
  }
  #main_banner .carousel-item .carousel-caption {
    max-width: 520px;
  }
  #main_banner .banner_form_parent {
    max-width: 520px;
  }
  .custom_switch input.status + label > .status-switch {
    font-size: 12px;
  }
}

/* Mobile */
@media only screen and (max-width: 540px) {
  .basic_feature_card .col-sm-2 {
    width: 16.66666667%;
  }
  .basic_feature_card .col-sm-10 {
    width: 83.33333333%;
  }
  .basic_feature_card .card-body h5 {
    font-size: 20px;
  }
  .basic_feature_card .card-body p {
    font-size: 16px;
  }
  .about .about_inner {
    text-align: center;
    border-radius: 30px;
    background-image: url("../images/about_bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 30px 20px;
  }
  .about h2 {
    margin-bottom: 20px;
  }
  .about p {
    color: #363636;
  }
  .about .about_mobile_img {
    display: initial;
  }
  .basic_features {
    padding: 0;
  }
  .recent_flights_swiper,
  .related_flights_swiper {
    padding-bottom: 10px;
  }
  .recent_flight_card {
    padding: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
  }
  .recent_flight_card .recent_flight_card_img {
    overflow: visible;
    height: 165px;
  }
  .recent_flight_card .recent_flight_card_img img {
    border-radius: 4px;
  }
  .recent_flight_card .recent_flight_card_img .overlay_text {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    text-align: left;
    margin-top: 15px;
  }
  .recent_flight_card .recent_flight_card_img .overlay_text h4 {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 16px;
    color: #121212;
  }
  .recent_flight_card .card-body {
    text-align: left;
    padding-top: 50px;
  }
  .recent_flight_card .card-body .sale {
    display: block;
  }
  .recent_flight_card .card-body .sale_line {
    display: none;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .features {
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 30px;
  }
  .features .col-sm-4 {
    width: 100%;
  }
  .feature_card {
    padding: 20px;
    min-height: auto;
    margin-bottom: 0;
  }
  .airline_card img {
    -webkit-filter: opacity(100%) grayscale(0%);
    filter: opacity(100%) grayscale(0%);
  }
  .mobile_d_none {
    display: none;
  }
  .footer_social_icons2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
  }
  .footer_social_icons2 a {
    border-color: #fff;
    color: #fff;
  }
  #back_to_top_btn {
    bottom: 87px;
    right: 20px;
  }
  .main_footer {
    padding-top: 0;
    text-align: center;
  }
  .main_footer h4 {
    font-size: 25px;
  }
  .main_footer .mb-5 {
    margin-bottom: 0 !important;
  }
  .main_footer .mb-5 .col-sm-4 {
    width: 50%;
    text-align: center;
  }
  .main_footer .footer_accredit_section {
    padding-left: 0;
  }
  .newsletter_footer_parent {
    margin-top: 50px;
  }
  .newsletter_footer_parent .newsletter_footer {
    border-radius: 30px;
    padding: 30px;
  }
  .newsletter_footer_parent .newsletter_footer .nf_circle_lg,
  .newsletter_footer_parent .newsletter_footer .nf_circle {
    display: none;
  }
  .newsletter_footer_parent .newsletter_footer p {
    display: none;
  }
  .newsletter_footer_parent .newsletter_footer h2 {
    font-size: 20px;
  }
  .newsletter_footer_parent .newsletter_footer .nf_fire_img {
    display: inline-block;
    margin-bottom: 20px;
  }
  .newsletter_footer_parent .newsletter_footer .input-group .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    text-transform: uppercase;
    min-width: 70px;
  }
  .newsletter_footer_parent .newsletter_footer .input-group .btn .web_txt {
    display: none;
  }
  .newsletter_footer_parent .newsletter_footer .input-group .btn .mob_txt {
    display: initial;
  }
  .newsletter_footer_parent .row .col-sm-6 {
    width: 100%;
    text-align: center;
  }
  #main_header {
    display: none;
  }
  .mobile_header {
    display: block;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
  }
  .mobile_header .mobile_header_inner {
    background-color: #fff;
    border-radius: 90px;
    padding: 5px 15px;
  }
  .mobile_header .mobile_header_inner .nav_link {
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    font-size: 13px;
    color: #343434;
  }
  .mobile_header .mobile_header_inner .nav_link span {
    display: inline-block;
  }
  .mobile_header .mobile_header_inner .nav_link span i {
    background-color: #2490eb;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
  }
  .mobile_header .mobile_header_inner .col-sm-6 {
    width: 50%;
  }
  .mobile_header.add_shadow2 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
  .mobile_header.add_shadow2 .mobile_header_inner {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
  .mobile_header.inner_page_mobile_header {
    display: none;
  }
  #main_banner .carousel-item {
    height: 100vh;
  }
  #main_banner .carousel-item img {
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #main_banner .carousel-item img.web_main_banner_img {
    display: none !important;
  }
  #main_banner .carousel-item img.mobile_main_banner_img {
    display: block !important;
  }
  #main_banner .carousel-item .carousel-caption {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 100%;
    padding: 1.25rem 25px;
  }
  #main_banner .carousel-item .carousel-caption .col-sm-4 {
    width: 100%;
  }
  #main_banner .carousel-item .carousel-caption h1 {
    font-size: 45px;
  }
  #main_banner .carousel-item .carousel-caption p {
    font-size: 14px;
  }
  #main_banner .carousel-item .carousel-caption .mobile_banner_btn {
    display: block;
  }
  #main_banner .carousel-item .carousel-caption .mobile_banner_btn .global_btn {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  #main_banner
    .carousel-item
    .carousel-caption
    .mobile_banner_btn
    .social_icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #main_banner
    .carousel-item
    .carousel-caption
    .mobile_banner_btn
    .social_icons
    a {
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background-color: #fff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    margin: 5px;
  }
  .flight_content {
    padding-top: 0;
  }
  .flight_content h2 {
    font-size: 18px;
  }
  .inner_banner_mobile {
    overflow: hidden;
    background-image: url("../images/mobile_inner_banner.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 406px;
    padding: 30px 12px;
    display: block;
  }
  .inner_banner_mobile .btn {
    background-color: #fff;
    border-radius: 8px;
    opacity: 1;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0.5rem;
  }
  .booking_modal_opener {
    background-color: #fff;
    padding-top: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
    top: -50px;
    display: block;
  }
  .booking_modal_opener h1 {
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    font-size: 25px;
    color: #121212;
    text-transform: uppercase;
  }
  .booking_modal_opener .btn {
    border-radius: 10px;
    width: 100%;
    background-color: #2490eb;
    border-color: #2490eb;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    padding: 10px;
  }
  .booking_modal_opener .btn:hover {
    background-color: #ebfaff;
    border-color: #ebfaff;
    color: #2490eb;
  }
  .booking_modal_opener .booking_info_box {
    background-color: #ebfaff;
    border-radius: 90px;
    margin: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 20px;
  }
  .booking_modal_opener .booking_info_box img {
    margin: 0 10px;
  }
  .booking_modal_opener .booking_info_box span {
    font-weight: 500;
    font-size: 14px;
    color: #2490eb;
  }
  .recent_flights {
    padding: 30px 0;
  }
  .airlines {
    padding-top: 20px;
  }
  .custom_switch input.status + label > .status-switch {
    font-size: 16px;
  }
}

@media only screen and (max-width: 325px) {
  #main_banner .carousel-item .carousel-caption h1 {
    font-size: 25px;
  }
}

/* Tablet Landscape Mode */
@media only screen and (min-device-width: 768px) and (max-device-width: 1280px) and (orientation: landscape) {
  #main_header .main_header_child {
    max-width: 935px;
  }
  #main_banner .carousel-item .carousel-caption {
    max-width: 935px;
  }
  #main_banner .carousel-item .carousel-caption h1 {
    font-size: 35px;
  }
  #main_banner .banner_form_parent {
    max-width: 935px;
  }
  .section_heading {
    font-size: 30px;
  }
}

/* Mobile Landscape Mode */
@media only screen and (min-device-width: 360px) and (max-device-width: 926px) and (orientation: landscape) {
  #main_header .main_header_child {
    max-width: 695px;
  }
  #main_header.inner_header .main_header_child .offcanvas-end {
    width: auto;
  }
  #main_banner .carousel-item {
    height: 800px;
  }
  #main_banner .carousel-item img {
    height: 800px;
  }
  #main_banner .carousel-item .carousel-caption {
    max-width: 695px;
  }
  #main_banner .carousel-item .carousel-caption h1 {
    font-size: 25px;
  }
  #main_banner .carousel-item .carousel-caption .col-sm-4 {
    width: 50%;
  }
  #main_banner .banner_form_parent {
    max-width: 695px;
  }
  #main_banner .banner_form_parent .col-sm-4 {
    width: 50%;
  }
  #main_banner .banner_form_parent .col-sm-4.offset-sm-8 {
    margin-left: 50%;
  }
  .section_heading {
    font-size: 25px;
  }
  .basic_feature_card .card-body h5 {
    font-size: 18px;
  }
  .basic_feature_card .card-body p {
    font-size: 14px;
  }
  .features .col-sm-4 {
    width: 50%;
  }
  .newsletter_footer_parent .nf_bag {
    display: none;
  }
  .newsletter_footer_parent .row {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .newsletter_footer_parent .row .col-sm-6 {
    width: 66.66666667%;
  }
  .main_footer h4 {
    font-size: 18px;
  }
  .instagram_img {
    height: 60px;
  }
  .inner_banner .inner_banner_child .col-sm-4 {
    width: 50%;
  }
  .inner_banner .inner_banner_child .col-sm-4.offset-sm-3 {
    margin-left: 0%;
  }
  .inner_banner .inner_banner_child .col-sm-5 {
    width: 50%;
  }
  .inner_banner .inner_banner_child .inner_banner_caption h1 {
    font-size: 25px;
  }
  .custom_modal .modal-content .modal-body .col-sm-7 {
    width: 100%;
  }
  .custom_modal .modal-content .modal-body .col-sm-5 {
    width: 100%;
    margin-bottom: 25px;
  }
}

@media only screen and (min-device-width: 280px) and (max-device-width: 655px) and (orientation: landscape) {
  #main_header .main_header_child {
    max-width: 515px;
  }
  #main_banner .carousel-item .carousel-caption {
    max-width: 515px;
  }
  #main_banner .banner_form_parent {
    max-width: 515px;
  }
}

@media only screen and (min-device-height: 360px) and (min-device-width: 667px) and (max-device-width: 760px) and (orientation: landscape) {
  #main_header .main_header_child {
    max-width: 515px;
  }
  #main_header.add_shadow .main_header_child .offcanvas-end {
    width: auto;
  }
  #main_banner .carousel-item .carousel-caption {
    display: none;
  }
  #main_banner .banner_form_parent {
    max-width: 515px;
  }
  #main_banner .banner_form_parent .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #main_banner .banner_form_parent .col-sm-4 {
    width: 75%;
  }
  #main_banner .banner_form_parent .col-sm-4.offset-sm-8 {
    margin-left: 0%;
  }
}
/*# sourceMappingURL=main.css.map */

/* Custom Loader */

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-bottom: 16px solid blue;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
