@charset "utf-8";
/* CSS Document */

body {
  font-family: "roboto", sans-serif;
  color: #444444;
}

a {
  color: #e03a3c;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "roboto", sans-serif;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #52658c;
  opacity: 1; /* Firefox */
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #e03a3c;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #e35052;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
}

#header.header-scrolled {
  padding: 2px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #e03a3c;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #111111;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  font-family: "roboto", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #e03a3c;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #e03a3c;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #ef3f3e;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 41px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #111111;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #111111;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #e03a3c;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
	
.shadow{box-shadow:0 0 10px 2px #ccc; padding:10px;}

.bdr1 {
  border-bottom:1px solid #52658c;
  padding:0 0 10px;
}

.bdr2 {
  border-bottom:1px solid #eaeaea;
  padding:0 0 10px;
}
.bdr3 {
  border-bottom:1px dotted #ccc;
  width:100%;
  padding:0 0 10px;
}
.bdr-r3 {
  border-right:1px dotted #ccc;
  padding:0 10px 0;
}
.mt-10 {
  margin-top:100px;	
}

.bookbyphone {
  font-size:14px; color:#000; font-weight:600;
}	
.text-black{color:#222}
.text-12 {font-size:12px}
.text-14 {font-size:14px}
.text-14a {font-size:18px}
.head-viewall{float:right; text-transform:uppercase; color:#ef3f3e; font-size:12px; padding-top:6px; font-weight:700} 

/*--------------------------------------------------------------
# Main Search Panel
--------------------------------------------------------------*/

.search-bg {
  background:#011941;
  min-width:450px;
  width:auto;
  color:#FFF;
  /* position:fixed; */
  float:left;
  border-radius:3px;
  padding:20px;
  top: 96px;
  bottom:0px;
  display:block;
  max-height:600px;
}
.search-text {
  font-size:12px;
  color:#ffffff;	
}
.w-45{width:45%;
float:left}
.w-10{width:10%;
float:left}

.input_line {
  background:none;
  color:#FFF;
  font-size:13px;
  border:none;
  border-bottom:1px solid #999;
  outline:none;
  padding:10px;  
}

select.outbound, select.inbound {
  text-align-last: right;
}

.autocomplete {
	position: relative;
	display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #ccc;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  max-height: 380px !important;
  overflow-y: auto;
}
.autocomplete-items div {
  padding: 5px;
  cursor: pointer;
  font-size:13px;
  background-color: #fff; 
  color:#000;
  border-bottom: 1px solid #ccc; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #ef3f3e !important; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: #ef3f3e !important; 
  color: #fff !important; 
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 26px;
  float:left;
  margin-right:12px;
  margin-top:3px;
  height: 12px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #999;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: -1px;
  bottom: -2px;
  background-color:#F30;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #fff;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
select.input_line option{background:#036; padding:10px 5px; float:left; font-size: 14px; line-height:30px; height:30px; margin:10px; -webkit-appearance: menulist-button;}
select.input_line{width:100%;}

.input-container input {
    border: none;
    box-sizing: border-box;
    outline: 0;
    padding: .75rem;
    position: relative;
    width: 100%;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

@media (max-width: 768px){

/* .search-bg {
  position:relative;
  top:0px;
  min-width:auto !important;
} */
.mt-10{margin-top:70px}

}



/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.cards-wrapper {
  display: flex;
  justify-content: center;
}
.card img {
  max-width: 100%;
  max-height: 100%;
  object-fit:cover;
  transition: transform .4s;
}
.card img:hover {
   transform: scale(1.05);
}
.card {
  margin: 0.5em 0.5em;
  border: none;
  border-radius: 0;
}
.carousel-inner {
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #5f5f5f;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.top-dest-name {
  background:#C33;
  color:#FFF;
  border-radius:5px;
  padding:5px 10px;
  position:absolute;
  top:10px;
  left:10px;
  font-size:14px;	
}
.top-dest-prices {
  color:#FFF;
  position:absolute;
  top:200px;
  left:10px;
  font-size:24px;
  font-weight:600;
}
.top-dest-prices span {
  font-size:12px;	
}

.top-dest-viewdeals{color:#333; font-size:13px; font-weight:600}
@media (min-width: 768px) {
  .card img {
    height: 16em;
  }
}

/*--------------------------------------------------------------
# Top International Destination
--------------------------------------------------------------*/

.intern-dest {
  width: 100%;
    display: block;
    flex-wrap: nowrap;
    padding-left: 12px;
    border-left: 2px solid #dbe3ef;
    position: relative;
}
.intern-dest:before {
    content: " ";
    position: absolute;
    background-color: #dbe3ef;
    padding: 4px;
    border-radius: 50%;
    top: 0;
    left: -5px;
}
.intern-dest:after {
    content: " ";
    background-color: #dbe3ef;
    padding: 4px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: -5px;
}
.intern-dest img {
  height:auto; width:80%;
}

.wid-33{width:33%; display:block}
.intern_deals_text {
  color:#FFF;
  font-size:15px;
  margin:10px;	
}
.intern_deals_text12 {
  color:#FFF;
  font-size:12px;
  margin:10px;	
  margin-bottom:25px;
}
.intern-deals-prices {
  color:#FFF;
  margin-left:20px;
  font-size:24px;
  font-weight:600;
  margin-top:50px;
}
.intern-deals-prices span {
  font-size:12px;	
}
.bg-intern-deals-1 {
  background:#ef3f3e;
  height: 16em;
}
.bg-intern-deals-2 {
  background:#0e1e46;
  height: 16em;
}

.domestic_deals_text {
  color:#000;
  font-size:15px;
  margin:10px;	
}
.domestic_deals_text12 {
  color:#999;
  font-size:12px;
  margin:10px;	
  margin-bottom:25px;
}
.domestic-deals-prices {
  color:#ef3f3e;
  margin-left:20px;
  font-size:24px;
  font-weight:600;
  margin-top:50px;
}
.domestic-deals-prices span {
  font-size:12px;
  color:#999	
}

.why-usa .img-box{min-height:50px}
.why-usa p {min-height:80px;}
.ftr-usfl-link li a {
  color:#666; font-size:13px;	
}
.ftr-usfl-link li a:hover {
  color:#ef3f3e;	
}

/*--------------------------------------------------------------
# Upgrades Tabs
--------------------------------------------------------------*/

.upgrades_tabbing {
  margin:0px !important;
  overflow: auto;
  display: -webkit-box;
  flex-wrap:nowrap;
}
.upgrades_tabbing li a{
  font-weight:bold;
  color:#333 !important;
  border-radius:0px !important;
  border:1px solid #eaeaea !important;
}
.upgrades_tabbing .nav-item {
  margin-right:-1px;	
}
.upgrades_tabbing .nav-link {
  padding:1rem	
}
.upgrades_tabbing li a.active {
  border-top:3px solid #C00 !important;	
}
.bg-graey {
  background:#f6f5f5;
  float:left;
  width:95%;
}
.default_upgrade {
  padding-left:0px;
  margin-top:25px;
  list-style:none
}
.default_upgrade li {
  background:url(../images/check.png) 0px 8px no-repeat;
  font-size:13px;
  line-height:24px;
  text-align:left;
  padding-left:20px;
}

.get_upgrade {
  padding-left:0px;
  margin-top:25px;
  list-style:none
}
.get_upgrade li {
  background:url(../images/dollar.png) 0px 4px no-repeat;
  font-size:13px;
  line-height:24px;
  text-align:left;
  padding-left:20px;
}
.bg-upgrade {
  background:#fdf1f1;	
}
.btn-theme {
  color: #fff;
  background-color: #ef3f3e;
  border-color: #ef3f3e;
  padding-left:2rem;
  padding-right:2rem;
  font-weight:600
}


/*--------------------------------------------------------------
# Call Input type tel
--------------------------------------------------------------*/
.intl-tel-input {
  display: table-cell;
}
.intl-tel-input .selected-flag {
  z-index: 4;
}
.intl-tel-input .country-list {
  z-index: 5;
}
.input-group .intl-tel-input .form-control {
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
}


/*--------------------------------------------------------------
# Special Request
--------------------------------------------------------------*/
#faq .card {
  margin:0 auto;
  margin-bottom: 5px;
  border: 0;
}

#faq .card .card-header {
  border: 0;
  padding: 0;
  background:none !important;
  margin-bottom:10px;
}
#faq .card .card-header a {
  color:#021d4d;
  font-size:14px;
  font-weight:600;
}

#faq .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  text-align: left;
  background: #FFE472;
  color: #222;
  padding: 20px;
}

#faq .card .card-header .btn-header-link:after {
  content: "\f190";
  font-family: 'FontAwesome';
  font-weight: 900;
  float: right;
}

#faq .card .card-header .btn-header-link.collapsed {
  background: #A541BB;
  color: #fff;
}

#faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f190";
}

#faq .card .collapsing {
  background: #f7f8f8;
  line-height: 30px;
}

#faq .card .collapse {
  border: 0;
}

#faq .card .collapse.show {
  background: #f7f8f8;
  line-height: 30px;
  color: #222;
  border:1px solid #eaeaea;

}



/*--------------------------------------------------------------
# Sticky sidebar
--------------------------------------------------------------*/

.sidebar-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Position the items */
}

.make-me-sticky {
  position: sticky;
  top: 0;
  padding: 0px 15px 20px;
}

/*--------------------------------------------------------------
# Progress Steps 
--------------------------------------------------------------*/

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: #999;
	padding:0px;
}

#progressbar .active {
    color: #ef3f3e
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 33%;
    float: left;
    position: relative;
	text-align:center;
    font-weight: 400;
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f007";

}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f13e"
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f030"
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c";

}

#progressbar li:before {
    width: 30px;
    height: 30px;
    line-height: 25px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: #c1c1c1;
    border-radius: 10%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #c1c1c1;
    position: absolute;
    left: 0;
    top: 15px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #ef3f3e
}

/*--------------------------------------------------------------
# Right Sidebar Contact box
--------------------------------------------------------------*/
.contact_box_1 {
  width:100%;
  height:auto;
  object-fit:cover;
  padding:15px;
  color:#FFF !important;
}
.cont_box_heading {
  font-size:24px;
  padding-bottom:10px;
  border-bottom:1px solid #FFF;
  display:block;	
}
.cont_box_call {
  font-family:Arial, Helvetica, sans-serif;
  font-size:21px;
  color:#fff;
  display:block
}
.cont_box_mail {
  font-size:16px;
  margin-top:15px;
  color:#fff;
  display:block
}

/*--------------------------------------------------------------
# Right Sidebar Why book with us
--------------------------------------------------------------*/
.why_book_us {
  list-style:none;
  margin:0px;
  padding:10px 10px 0 15px;	
}
.why_book_us li {
  background:url(../images/dollar.png) 0px 11px no-repeat;
  padding-left:20px;
  padding-bottom:10px;
  border-bottom:1px dotted #ccc;
  padding-top:10px;
  font-size:12px;
  color:#666  
}











.list_booking_info {
  font-size:12px;
}
.list_booking_info tr {
  border-bottom:1px dotted #CCC;	
}
.list_booking_info td {
  line-height:28px;	
}

.passenger_alpha {
  background:#ef3f3e;
  color:#FFF;
  font-size:36px;
  font-weight:bold;
  width:60px;
  height:60px;
  text-align:center;
  border-radius:5px;
}
.bg-lightgreay {
  background:#f4f4f4;	
}
.text-black {
  color:#000;	
}
.social-links a {
    font-size: 18px;
    display: inline-block;
    background: #dc3545;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
.social-links a:hover {
  background: #b91727;
  color: #fff;
  text-decoration: none;
}

.web-dis-no{display:none}
.mob-dis{display:block}
.min-hgt-350{min-height:343px}
.imp_info_list{margin:0px; padding-left:20px}
.imp_info_list li {
  line-height:20px;
  margin-bottom:10px;
  font-size:13px;
}
.total_amount {
  color:#ef3f3e;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:bold;
  font-size:3rem
}
.payment_pay {
  position:absolute; bottom:20px; right:15px;
}















@media (max-width: 992px) {
  .wid100 {width:100%}
}


@media (max-width: 768px) {
.mob-dis-no{display:none}
.web-dis{display:block}
.card img{height:265px; width:100%;}
.card {margin:0 auto; width:100%;}
.intern-dest {padding-left:0px}
.intern-dest img{height:auto !important}
.p-3 {padding:.75rem !important}
.domestic-deals-prices{margin-left:0px}
.intern-deals-prices{margin-left:0px}
.wid100 {width:100%}
.get-started-btn {
    margin: 0 0px 0 48px;
    padding: 6px 18px;
}
.min-hgt-350{min-height:auto}
.payment_pay {
  position:relative; margin:15px;
}
.order-firstt{order:1}
.sidebar-item {position:relative}

}
.flights-title {
  margin-top: 30px;
  text-align: center;
}
.flights-subtitle {
  text-align: center;
  opacity: 0.5;
}
.flights-deals-w {
  min-width: 185px;
}
