/* ---------------
 * GLOBAL
 * --------------- */

* {
  font-family: "Poppins", sans-serif;
}

body {
}

h1,h2,h3,h4,h5,h6 {
  text-transform: uppercase;
}

.h-xl {
  font-size: 2.3rem;
}

.bg-gray1 {
  background-color: #e8e8e8;
}

.text-pink1 {
  color: #ff23c3;
}

/* ---------------
 * BUTTONS
 * --------------- */

.btn {
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.5s;
}

.btn-pink1 {
  background-color: #ff23c3;
  border-color: #ff23c3;
  transition: all 0.5s;
}

.btn-pink1:hover {
  background-color: #c71998;
}

.btn-pink1.disabled, .btn-pink1:disabled {
  background-color: #7b7b7b;
  border-color: #7b7b7b;
}

.btn-gray1 {
  background-color: transparent;
  border-color: #ccc;
  color: #272727;
  font-weight:normal;
}

.btn-gray1:hover {
  background-color: #333333;
  color: #fff;
  font-weight:normal;
}

.btn-gray1.active {
  background-color: #272727;
  border-color: #272727;
  color: #fff;
  font-weight:bold;
}

/* ---------------
 * FORMS: GLOBAL
 * --------------- */

input[type="text"] {
  font-weight: bold;
}

::placeholder {
  font-weight: normal;
  color: #bbb !important;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  font-weight: normal;
  color: #bbb !important;
}

.btn-check:checked ~ label {
  color: #fff !important;
  font-weight: bold;
  background-color: #ff23c3 !important;
  border-color: #ff23c3 !important;
  box-shadow: var(--bs-box-shadow) !important;  
}

/* ---------------
 * CARDS
 * --------------- */

.card-outline {
  border-color: rgba(255,255,255,0.4);
  background-color: rgba(255,255,255,0.05);
  color: #fff;
  transition: all 0.5s;
}

.card-outline:hover {
  border-color: rgba(255,255,255,0.8);
  background-color: rgba(255,255,255,0.2);
}

.card-outline:hover .btn-outline-light {
  background-color: unset;
  color: #fff;
}

.card-outline .btn.rounded-circle {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 1.75rem;
  font-size: 1rem;
  text-align: center;
  padding-left: 0px;
  padding-right: 0px;
}

.card-destination {
  background-color: rgba(0,0,0,0);
}

.card-destination:hover {
  background-color: rgba(0,0,0,0);
}

.card-info .card-info-icon {
  font-size: 3rem;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  color: #ff23c3;
}

.card-info .card-info-title {
  font-size: 1rem;
  line-height: 1rem;
  font-weight:bold;
}

.card-info .card-info-desc {
  font-size: 0.9rem;
}

/* ---------------
 * NAVBAR
 * --------------- */

.navbar {
  background: rgba(0,0,0,0.35);
  transition: all 0.5s;
}

#nav-sub {
  background: rgb(9,89,131);
  background: -moz-linear-gradient(180deg, rgba(9,89,131,1) 0%, rgba(5,49,72,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(9,89,131,1) 0%, rgba(5,49,72,1) 100%);
  background: linear-gradient(180deg, rgba(9,89,131,1) 0%, rgba(5,49,72,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#095983",endColorstr="#053148",GradientType=1);
  height:50px;
  transition:all 0.3s;
  overflow: hidden;
}

#nav-sub a {
  color: #fff;
  font-size: 0.8rem;
}

#nav-sub #icon-passport > img {
  width: 80px;
  max-height: 50px;
  opacity: 0.5;
  transition: all 0.5s;
}

#nav-sub:hover #icon-passport > img {
  opacity: 1;
}

#nav-main {
  transition:all 0.3s
}

#nav-main .navbar-brand > img {
  max-height: 100px;
  transition:all 0.3s
}

#nav-main .nav-underline {
  gap: 0.5rem;
}

#nav-main .nav-underline .nav-item {
  width: 100%;
  border-bottom: solid 1px rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#nav-main .nav-underline .nav-item:last-child {
  border-bottom: none;
}

#nav-main .nav-link.active {
  border-bottom:none;
  color: #ff23c3 !important;
}

#nav-main .nav-link {
  padding: 0px;
  position:relative;
}

#nav-main .nav-link > i {
width: 1.5rem;
}

body.scrolled .navbar {
  background: rgba(0,0,0,0.5);
  padding-bottom: 0 !important;
}

body.scrolled #nav-sub {
  height:0px;
}

body.scrolled #nav-main {
  max-height: unset;
}

body.scrolled #nav-main .navbar-brand > img {
  padding-top: 0.1rem !important;
  padding-bottom: 0.1rem !important;
  max-height: 45px;
}

.navbar:has( .navbar-collapse.show) {
  background: rgba(0,0,0,1);
  box-shadow: 0px 0px 50px 30px rgba(0, 0, 0, 0.7) !important;
}

/* ---------------
 * FOOTER
 * --------------- */

#back-top {
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.5rem;
  background-color: #111;
  transition: all 0.5s;
  color: #fff;
  opacity:0;
}

#back-top.disabled {
  cursor: default;
}

#back-top:hover {
  background-color: #ff23c3;
}

footer {
  background-color: #000;
  color: #fff;
  font-size:0.9rem;
}

footer .copyright-text {
}

footer a.social-link {
  font-size: 1.4rem;
  margin-left: 1.5rem;
}

/* ---------------
 * CONTACT FORM: GLOBAL
 * --------------- */

#section-contactform #contactform-bg:after {
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  display:inline-block;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 90%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 90%);
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

#section-contactform .contactform-list > a {
  border-bottom:solid 1px rgba(255,255,255,0.3);
  padding: 0.5rem 0;
  width: 100%;
}

/* ---------------
 * HOME: HEADER
 * --------------- */

#header-bg:after {
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  display:inline-block;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

#header-container {
  padding-top: 180px;
}

#page-home #header-container #header-features {
  margin-top: 20%;
}

#page-home #header-container #header-features .card {
  height:40vw;
}

#page-home #header-container #header-features .card-title {
  font-size: 0.8rem;
  text-align:center;
}

#header-features .card a {
  text-decoration: none !important;
}

#header-features .card a * {
  font-size: 4rem;
  font-weight: 200;
  color: #fff;
}

/* ---------------
 * APPLY VISA: HEADER
 * --------------- */

#page-apply-visa #header-container #header-features {
  margin-top: 3rem;
}

#page-apply-visa #header-container #header-features .card {
  height:40vw;
}

#page-apply-visa #header-container #header-features .card-title {
  font-size: 0.8rem;
  /*text-align:center;*/
}

.visareq-content .card-visainfo-feature .visareq-icon {
  font-size: 2.5rem;
  padding: 1rem;
}

/* ---------------
 * ABOUT US : HEADER
 * --------------- */

#page-about-us #header-bg:after {
  background: rgb(0,0,0);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 90%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 90%);
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

#page-about-us .about-intro {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
}

#page-about-us .about-intro > span {
  border-bottom: solid 3px #ff23c3;
}


/* ---------------
 * CONTACT US : HEADER
 * --------------- */

#page-contact-us #header-bg:after {
  background: rgb(0,0,0);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 90%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 90%);
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.contact-icon-holder {
  width: 4rem;
  height: 4rem;
  line-height: 3.7rem;
  font-size: 1.2rem;
  text-align:center;
}

#page-contact-us .contact-info-box .contact-info-value:before {
  content: ":";
  display: inline-block;
  top:4px;
  left:-7px;
  position:absolute;
}

/* ---------------
 * SECTION: GLOBAL
 * --------------- */

.section-header-browsemore {
  text-decoration: none;
  text-align: left;
}

/* ---------------
 * SECTION: DESTINATION
 * --------------- */

#section-destination .card {
  height: 500px;
  cursor: pointer;
}

#section-destination .card .card-bg {
  transform: scale(1);
  transition: all 2s;
}

#section-destination .card:hover .card-bg {
  transform: scale(1.1);
}

#section-destination .card .card-bg:after {
  opacity:1;
  content:'';
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  display:inline-block;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

#section-destination .card .card-label {
  top: 2rem;
  right: 2rem;
}

#section-destination .card .card-details .browse-more {
  color: #ff23c3;
  text-decoration: none;
  font-size: 0.9rem;
  position:relative;
  text-align: right;
  transition: all 0.5s;
}

#section-destination .card .card-details .browse-more:before {
  position:absolute;
  top:50%;
  left: 0px;
  display:block;
  content:"";
  width: 75%;
  height: 1px;
  background-color: #ff23c3;
  transition: all 0.5s;
}

#section-destination .card:hover .card-details .browse-more {
  color: #fff;
}

#section-destination .card:hover .card-details .browse-more:before {
  background-color: #fff;
}

#section-destination .card-details .text-clamp {
  display:block;
  height: 20%;
  width: 100%;
  overflow: hidden;
  position:relative;
}

#section-destination .card-details .text-clamp:after {
  display: block;
  content: "";
  position:absolute;
  bottom: -1px;
  width: 100%;
  height: 1.5rem;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}



/* ---------------
 * SECTION: CRUISE
 * --------------- */

#section-cruise {
  background: rgb(0,0,0);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,1) 50%, rgba(15,101,134,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,1) 50%, rgba(15,101,134,1) 100%);
  background: linear-gradient(180deg, rgba(0,0,0,1) 50%, rgba(15,101,134,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#0f6586",GradientType=1);
}


/* ---------------
 * SECTION: VISA APPLY
 * --------------- */

#section-visaapply {
  background-color: #0f6586;
}

#section-visaapply-bg:after {
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%; 
  height:100%;
  display:inline-block;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.visaapply-card .dropdown-menu {
  width: 100%;
  box-shadow: var(--bs-box-shadow) !important;
}

.visaapply-card .dropdown-menu input.form-control {
  padding: 1rem;
}


/* ---------------
 * SECTION: TRANSPORTATION
 * --------------- */

#section-transportation .card-transportation small {
  color: #a1a1aa;
}

#section-transportation .card-transportation .card-img {
  height: 20vh;
}

#section-transportation .card-transportation .card-img > img {
  transition: all 0.5s;
  width: 100%;
}

#section-transportation .card-transportation:hover .card-img > img {
  width: 110%;
}

/* ---------------
 * SECTION: TOURS
 * --------------- */

#section-tours .card-holder {
  transition: all 0.5s;
}

#section-tours .card-tours .card-img {
  min-height: 25vh;
}

#section-tours .card-tours .card-img > img {
  transition: all 0.5s;
  width: 100%;
}

#section-tours .card-tours:hover .card-img > img {
  width: 110%;
}



