:root {
  --text1: #383838;
  --text2: #18244b;
  --text3: #f89c1c;
  --text4: #0a0a0a;
  --black: #000000;
  --white: #ffffff;
}

/* Font */
@font-face {
  font-family: "barlow-reg";
  src: url("../fonts/Barlow-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "barlow-med";
  src: url("../fonts/Barlow-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "barlow-semibold";
  src: url("../fonts/Barlow-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "barlow-bold";
  src: url("../fonts/Barlow-Bold.ttf") format("truetype");
}

/* Main stuff */
body {
  font-family: barlow-reg;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  overflow-x: hidden !important;
}
:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}
:focus {
  outline: 0px;
}

header {
  /* background-image: url(../img/Index_banner_Fullsize.jpg); */
  /* background-image: url("../img/Index_banner.png"); */
  background-color: #fff;
  /* height: 600px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%; */
  position: relative;
}

.nav {
  width: 100%;
  /* background-color: #4d4d4d; */
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 1vh 3vw;
  align-items: center;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  padding: 10px 10px 10px 10px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 18px;
}
.nav-title img {
  width: 200px;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 13px 0px 5px 0px;
  text-decoration: none;
  margin: 0px 10px 0px 10px;
  color: #fff;
  font-family: "barlow-semibold";
  font-size: 1.3vw;
  position: relative;
  text-transform: uppercase;
}

/* .nav > .nav-links > a:hover {
  background-color: rgba(0, 0, 0, 0.3);
} */
.nav .nav-links a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
}
.nav .nav-links a:hover:after {
  transform-origin: left;
  transform: scaleX(1);
}

.nav > #nav-check {
  display: none;
}
.navicn {
  color: #fff;
  font-size: 25px !important;
}

/* navbar regular css start */
.navbar-area {
  /* background: rgba(0,0,0,.6);
  border-bottom: 1px solid #000; */
  /* position: fixed;
  top: 0px;
  width: 100%;
  z-index: 9999999999; */
}
.narcontainer {
  padding: 18px 30px;
}
.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-navbar a img {
  width: 80%;
  height: 86px;
  position: relative;
  margin-left: 70px;
  margin-top: 50px;
  top: -20px;
}
.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.site-navbar ul li a {
  /* color: #fff;
  display: block;
  text-decoration: none;
  font-family: "barlow-semibold";
  font-size: 1.3vw;
  position: relative;
  text-transform: uppercase;
  margin-right: 20px !important;
  padding-bottom: 5px; */

  /* Layout Properties */
  margin-top: 75px;
  margin-right: 22px;
  text-align: left;
  letter-spacing: 0.34px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 23px;
  /* Animate */
  text-decoration: none;
  position: relative;
}
/* .site-navbar ul li a:last-child {
  margin-right: 0px;
}
.site-navbar ul li a:hover {
}
.site-navbar ul li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
}
.site-navbar ul li a:hover:after {
  transform-origin: left;
  transform: scaleX(1);
} */
.site-navbar ul li a::before {
  /* Animate */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #fff;
  transform-origin: bottom left;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}
.site-navbar ul li a:hover::before {
  /* Animate */
  transform-origin: bottom left;
  transform: scaleX(1);
}

/* navbar regular css end */
button:focus {
  outline: 0px dotted;
  outline: 0px auto #fff !important;
}

/* nav-toggler css start */
.nav-toggler {
  border: 0px solid #fff;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
}
.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: 0.3s;
}
.nav-toggler span:before {
  content: "";
  transform: translateY(-9px);
}
.nav-toggler span:after {
  content: "";
  transform: translateY(6px);
}
.nav-toggler.toggler-open span {
  background-color: transparent;
}
.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}
.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}

.headertxt {
  display: flex;
  align-items: center;
  /* height: 85%; */
  padding: 0% 3vw 30% 3vw;
  position: relative;
  top: 100px;
  margin-top: 0vh;
  margin-bottom: 0vh;
}

.headertxt img {
  width: 7vw;
  margin-right: 26px;
}
.headertxt h1 {
  font-family: "barlow-reg";
  font-size: 3vw;
  text-transform: uppercase;
  color: #fff;
  width: 45%;
}
.headerbg {
  position: absolute;
  top: 0px;
  width: 100%;
}

.introsec1 {
  margin-top: 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.wwrtxt1 {
  font-family: "barlow-reg";
  font-size: 30px;
  text-transform: uppercase;
  color: #202b5c;
  overflow: hidden;
}
.wwrtxt1:before {
  background-color: #202b5c;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 20%;
}
.wwrtxt1:before {
  right: 0.5em;
}
.wwrdiv1 h3 {
  font-family: "barlow-bold";
  font-size: 35px;
  color: #202b5c;
  margin-bottom: 30px;
}
.wwrdiv2 p {
  font-family: "barlow-reg";
  font-size: 1vw;
  line-height: 38px;
  color: #000000;
}

.hotlines {
  background: #f2f2f2 0% 0% no-repeat padding-box;
  box-shadow: 0px 18px 16px #314b8933;
  margin-top: 20px;
  padding: 20px;
}
.hotlinestop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hotlinestop h2 {
  font-family: "barlow-bold";
  font-size: 24px;
  color: #202b5c;
}
.siderigfhthl {
  display: flex;
}
.siderigfhthl img {
  width: 20px;
  cursor: pointer;
}
.siderigfhthl h2 {
  color: #4e5a67 !important;
  padding: 0px 10px;
}

.hotlinemain {
  margin-top: 20px;
  margin-bottom: 30px;
}
.hldivmain {
  margin-bottom: 1rem;
  border-bottom: 0.8098490834236145px solid #505b68a8;
}
.hldivmain p {
  color: #4e5a67;
  font-family: "barlow-reg";
  font-size: 20px;
  margin-bottom: 8px;
}
.hldivmain h2 {
  color: #000000;
  font-family: "barlow-reg";
  font-size: 16px;
  margin-bottom: 0.6rem;
}

.hldivmain a {
    color: #667a96;
    text-decoration: none;
}

.hldivmain a:hover {
    color: #000000;
}


.hotlinebottom {
  text-align: end;
  margin-bottom: 10px;
}
/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color: #ffffff !important;
  font-family: "barlow-reg";
  font-size: 16px;
  text-decoration: none;
  background-color: #112f64;
  text-transform: capitalize;
  padding: 10px 30px;
  cursor: pointer !important;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #eda132;
  text-decoration: none;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
  color: white !important;
  text-decoration: none;
}
.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  text-decoration: none;
}

.hotlinebottom .fa {
  margin-left: 25px;
  font-size: 18px;
  color: #fff;
}

.video-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 18px 16px #314b8933;
}
.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container video {
  width: 100%;
  height: 100%;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.play-button-wrapper #circle-play-b img {
  width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}

.sect2p1 {
  margin: 1rem 0px 5rem;
  z-index: 9;
  position: relative;
}
.movingbox1 {
  position: absolute;
  right: 90px;
  top: 40px;
  z-index: 9;
}
.movingbox1 a {
  cursor: pointer;
  text-align: left;
  letter-spacing: 0px;
  opacity: 1;
  color: #565656;
  font-family: "barlow-reg";
  font-size: 18px;
  border-left: 1px solid #565656;
  display: block;
  padding: 0px 20px;
  margin: 30px 0px;
  cursor: pointer;
}
.movingbox1 a:hover {
  color: #112f64;
}
.maindivsec2p1 {
  position: relative;
}

.maindivsec2p1 img {
  width: 67%;
  margin-top: 5rem;
  box-shadow: 0px 18px 16px #314b8933;
}
.maindivsec2p1 a {
  display: table;
  position: absolute;
  right: 780px;
}

.whiteconndiv {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 18px 16px #314b8933;
  padding: 5.5rem 2.5rem;
  padding: 5% 2%;
  width: 25vw;
  width: 480px;
  position: absolute;
  bottom: -44px;
  top: 220px;
  right: 300px;
}
.whiteconndiv span {
  color: #112f64;
  font-family: "barlow-reg";
  font-size: 16px;
  overflow: hidden;
}
.whiteconndiv span:before {
  background-color: #112f64;
  border: 1px solid #112f64;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 30px;
  right: 0em;
  margin-right: 19px;
}
.whiteconndiv h2 {
  color: #000;
  font-family: "barlow-bold";
  font-size: 24px;
  margin: 20px 0;
}
.whiteconndiv p {
  color: #000;
  font-family: "barlow-reg";
  font-size: 16px;
}

.learnmoresec {
  background: #f3f4fb 0% 0% no-repeat padding-box;
  width: 100%;
  padding: 20rem 0px 8rem;
  position: relative;
  top: -15rem;
}
.learnmorebg {
  background-image: url("../img/Learn_More.png");
  background-color: #fff;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
/* .learnmoresec img {
 width: 100%;
 position: relative;
} */

.flexdivlearnmo {
  display: flex;
  position: relative;
  align-items: center;
}
.copoform {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 20px 17px #314b8933;
  padding: 30px;
  width: 40%;
  position: relative;
  top: -31px;
  left: 70px;
  margin-bottom: -60px;
}
.copoform form .row {
  margin-bottom: 10px;
}
.copoform h2 {
  color: #112f64;
  font-family: "barlow-bold";
  font-size: 24px;
  margin-bottom: 20px;
}
.copoform form label {
  color: #000000;
  font-family: "barlow-reg";
  font-size: 17px;
  display: block;
}
.copoform form input {
  border: 0.7497650384902954px solid #333333;
  border-radius: 6px;
  color: #000000;
  font-family: "barlow-reg";
  font-size: 16px;
  width: 100%;
  padding: 5px;
}
.leranmotxt {
  position: absolute;
  width: 50%;
  right: 0px;
  text-align: center;
  align-items: center;
  padding: 3rem 0px;
}
.leranmotxt h2 {
  letter-spacing: 1.8px;
  color: #ffffff;
  font-family: "barlow-bold";
  font-size: 36px;
}
.leranmotxt p {
  color: #ffffff;
  font-family: "barlow-reg";
  font-size: 26px;
}

.submitbtn {
  margin-top: 20px;
  float: right;
}
.submitbtn button {
  border: 0px solid !important;
}

.footerp1 {
  background: #e8e8ea 0% 0% no-repeat padding-box;
  position: relative;
  margin-top: -15rem;
  bottom: 0px;
  padding: 0rem 0 2rem;
}
.footertop {
  text-align: center;
  position: relative;
  top: -2rem;
}
.footertop p {
  background: #eda132 0% 0% no-repeat padding-box;
  box-shadow: 0px 9px 18px #314b8933;
  border-radius: 16px;
  color: #ffffff;
  font-family: "barlow-med";
  font-size: 20px;
  padding: 20px;
  display: inline-block;
  text-align: center;
}
.footermenu {
  display: flex;
  justify-content: center;
  position: relative;
  top: -1rem;
  margin-bottom: 0.5rem;
}
.footermenu a {
  color: #667a96;
  font-family: "barlow-reg";
  font-size: 20px;
  text-decoration: none;
  margin-right: 30px;
}
.footermenu a:last-child {
  margin-right: 0px !important;
}
.footermenu a:hover {
  color: #082145;
}
.footerbottom {
}
.footerbottom p {
  color: #383838;
  font-family: "barlow-med";
  font-size: 20px;
  text-align: center;
}
.dismmfooter {
  display: none !important;
}
.dismmfooter2 {
  display: none;
}
.moving1deskmbl {
  display: none;
}
.disnonheaderbgmbl {
  display: none;
}

.breadcrumbsec {
  display: none;
}

.intropart {
  padding: 1rem 1rem;
}
.intropartmain {
  max-width: 960px;
  margin: auto;
}
.intropartmain hr {
  background-color: #314b8966;
  max-width: 60px;
  margin: 0 0 30px;
  height: 1.5px;
}
.intropartmain h2 {
  color: #202b5c;
  font-family: "barlow-bold";
  font-size: 1.5vw;
}
.intropartmain p {
  color: #000;
  font-family: "barlow-reg";
  font-size: 1.1vw;
  line-height: 1.8;
}

.imgp1abc {
  width: 100%;
}
.part1sec {
  padding: 1rem 8rem 0;
}

.part1head {
  background-image: url("../img/airline/Airline_banner.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 2rem 3.5rem;
  display: flex;
  align-items: center;
}
.part1headCruise {
  background-image: url("../img/cruise/Cruise_banner.png") !important;
}
.part1headHotel {
  background-image: url("../img/hotel/Hotel_banner.png") !important;
}
.part1headTech {
  background-image: url("../img/tech/Banner_Tech.png") !important;
}
.part1head p {
  color: #fff;
  font-family: "barlow-semibold";
  font-size: 30px;
  margin: 0;
  white-space: nowrap;
}
.part1head hr {
  background-color: #fff;
  height: 1px;
  width: 100%;
  margin: 7px 0 0 43px;
}
.part1logos {
  display: grid;
  padding: 0rem 3.5rem 0rem;
  grid-gap: 30px;
  grid-template-columns: repeat(5, 1fr);
  place-items: center;
  grid-template-rows: auto auto 1fr 1fr 1fr auto auto;
  width: auto;
  max-width: 100%;
}



.part1head2 {
    position: relative;
    /*padding: 3rem 3.5rem;*/
    padding: 0rem 1.5rem 2rem;
    display: flex;
    align-items: center;
}

.part1head2 img {
    max-width: 100%;
    height: auto;
    /*border-bottom: 1px solid black;*/ /* Add a 1px solid black horizontal line under the image */
}







.copoform form label::-ms-value {
  display: none;
}
.part1logos img,
.part2logos img,
.part3logos img {
  /* height: 100%; */
  /* padding: 16px; */
  padding: 10px;
  max-width: 80%;
  max-height: 150px;
  object-fit: contain;
}
.part2logos {
  grid-template-rows: 1fr 1fr 1fr !important;
}
.parthotellogos {
  grid-template-rows: 1fr 1fr 1fr !important;
}
.part3logos {
  grid-template-rows: 1fr 1fr !important;
  padding: 2rem 3.5rem !important;
}

/* .contrvlsol{
  display: none;
}
.contrvlpart{
  display: none;
} */
.contrvlsolmbl {
  display: none;
}
.contrvlpartmbl {
  display: none;
}
.hotitab2 {
  display: none;
}
.hotitab3 {
  display: none;
}
.activeme {
  display: block;
}
.headimgdiv {
  padding: 1rem 4rem 2rem;
  position: relative;
}
.headimgdiv img {
  width: 100%;
}

.headerp2txt {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 3rem;
}

.headerp2txt img {
  width: 7vw !important;
  margin-right: 2rem;
}

.headerp2txt h1 {
  font-family: "barlow-reg";
  font-size: 3vw;
  text-transform: uppercase;
  color: #fff;
  width: 51%;
}
.bgimgp2 {
  box-shadow: 0px 14px 14px #314b8933;
  border-radius: 65px;
}

.techtxtcontain {
  padding: 2rem 8rem;
}
.techtxtcontain .row .col-md-6 {
  padding: 0px;
}
.techtxtcontain .row {
  margin-bottom: 4rem;
}
.textdivcol {
  display: grid;
  place-items: center;
}
.texttech {
  position: relative;
}
.texttech h2 {
  color: #202b5c;
  font-family: "barlow-bold";
  font-size: 1.5vw;
  text-transform: capitalize;
  padding: 0px 30px 0px 20px;
}
.texttech p {
  color: #000;
  font-family: "barlow-reg";
  font-size: 1.2vw;
  padding: 0px 30px 0px 20px;
}
.hrbef {
  background-color: #202b5c;
  height: 1px;
  width: 2.5vw;
  margin: 0px 30px 14px 20px;
}
.hraft {
  background-color: #202b5c;
  margin: 0px 0px 0px 30px;
  height: 1.5px;
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.imgtech {
  position: relative;
}
.imgtech img {
  width: 100%;
  box-shadow: 0px 8px 20px #314b8933;
}
.imgtech hr {
  background-color: #fff;
  height: 1.5px;
  width: 60%;
  margin: 0px;
  z-index: 9999999999;
  position: absolute;
  bottom: 20px;
}
.right0p2 {
  right: 0px !important;
}
.linemr0 {
  margin: 0px !important;
}
.dnbannermbl {
  display: none;
}

.travelsolmain {
  padding: 2rem 0px 4rem;
}
.trsoldiv {
  padding: 1rem 10% 1rem 0;
  position: relative;
}
.trsoldiv img {
  width: 100%;
  background: #ffffff 0% 0% no-repeat padding-box;
}
.trsolboxtxt {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 10px 15px 19px #00000029;
  padding: 4rem 2rem 5rem;
  position: absolute;
  top: 15%;
  width: 45%;
  right: 4%;
}
.trsolboxtxt hr {
  background-color: #202b5c;
  height: 1px;
  width: 2.5vw;
  margin: 0 0 15px;
}
.trsolboxtxt h2 {
  font-family: "barlow-bold";
  font-size: 1.4vw;
  /*text-transform: uppercase;*/
  color: #202b5c;
  margin-bottom: 1rem;
}
.trsolboxtxt p {
  font-family: "barlow-med";
  font-size: 1vw;
  color: #000;
}
.trsolboxtxt a {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 14px 15px;
}

.trsolmoredet {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 20px 17px #314b8933;
  border-radius: 11px;
  position: absolute;
  top: 66%;
  width: 30%;
  right: 4%;

  z-index: 9;
}

.trsolmoredet hr {
  background: transparent linear-gradient(90deg, #036eb0 0%, #202f60 100%) 0% 0%
    no-repeat padding-box;
  margin: 0px;
  width: 100%;
  height: 10px;
  border-radius: 11px 11px 0 0;
}
.trsolmoredet form {
  padding: 0rem 1rem 3rem;
}
.btnformbso {
  margin: 1rem 0;
}
.btnformbso button {
  border: 0px solid !important;
  font-size: 1.2vw;
  padding: 8px 14px !important;
  float: right;
}
.trsolmoredet label {
  color: #000;
  font-family: "barlow-med";
  font-size: 1.1vw;
  margin-bottom: 4px;
}
.trsolmoredet input {
  border: 1px solid #000;
  color: #000;
  font-family: "barlow-reg";
  font-size: 1.1vw;
  border: 0.7497650384902954px solid #333333;
  border-radius: 6px;
  width: 100%;
  padding: 3px;
}
.trsolmoredet select {
  color: #000;
  font-family: "barlow-reg";
  font-size: 1.1vw;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 0.7497650384902954px solid #333333;
  border-radius: 6px;
  width: 100%;
  padding: 3px;
}
.boxf {
  margin: 0.5rem 0;
}
.button-label {
  display: inline-block;
  padding: 3px 18px 4px;
  margin: 0px 8px 0 0;
  cursor: pointer;
  border-radius: 6px;
  border-radius: 4px;
  background: #fff;
  color: #112f64;
  border: 1px solid #112f64;
}
.button-label h1 {
  font-family: "barlow-reg";
  font-size: 1.1vw;
  margin: 0;
}

#yes-button:checked + .button-label {
  background: #112f64;
  color: #fff;
  border: 1px solid #fff;
}
#yes-button:checked + .button-label:hover {
  background: #112f64;
  color: #fff;
  border: 1px solid #fff;
}
#no-button:checked + .button-label {
  background: #112f64;
  color: #fff;
  border: 1px solid #fff;
}
#no-button:checked + .button-label:hover {
  background: #112f64;
  color: #fff;
  border: 1px solid #fff;
}

.hidden {
  display: none;
}

.trasoldiv2 {
  padding: 1rem 0px 1rem 10% !important;
}
.trsolboxtxleft {
  left: 4% !important;
  top: 8% !important;
}
.btnleftbox {
  left: 0 !important;
  right: auto !important ;
}
.trsolboxtxleft2 {
  top: 5% !important;
  left: 4% !important;
}

.wantlearnmorebg {
  background-image: url("../img/Learn_More_2.png");
  background-color: #fff;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 4rem;
}
.wantlmodiv {
  width: 40%;
  margin: auto;
  text-align: center;
}
.wantlmodiv h2 {
  font-family: "barlow-bold";
  font-size: 1.5vw;
  color: #fff;
}
.wantlmodiv p {
  font-family: "barlow-reg";
  font-size: 1.2vw;
  color: #fff;
}
.wantlmodiv form {
}
.downform {
  border: 2px solid #ffffff;
  border-radius: 6px;
  display: flex;
  padding: 6px;
  margin: 1rem 1rem;
}
.downform input {
  border: 0px solid !important;
  background-color: unset !important;
  color: #fff;
  width: 100%;
  margin-right: 10px;
}
.downform input::placeholder {
  color: #f3f4fb;
}
.downform button {
  background-color: #fff;
  color: #202f60 !important;
  border: 0px solid !important;
  border-radius: 6px;
  padding: 6px 18px;
}
.downform button::before {
  border-radius: 6px !important;
}
@media screen and (max-width: 1440px) {
  .site-navbar a img {
    top:0px;
  }
  .learnmorebg {
    height: 400px;
  }
  .maindivsec2p1 img {
    width: 60%;
  }
  .whiteconndiv {
    padding: 2rem 2.5rem;
    width: 42vw;
    bottom: unset;
    right: 3vw;
  }
  .maindivsec2p1 a {
    right: 45vw;
  }
  .wwrdiv2 p {
    font-size: 18px;
  }
  .site-navbar ul li a {
    font-size: 20px;
  }
  .site-navbar a img {
    margin-left: 30px;
    margin-top: 0px;
  }
  .headimgdiv {
    padding: 1rem 2rem;
  }
  .part1sec {
    padding: 1rem 4rem;
  }
  .intropartmain {
    max-width: 700px;
  }
  .intropartmain h2 {
    font-size: 23px;
  }
  .intropartmain p {
    font-size: 18px;
  }
  .trsolmoredet {
    top: 76%;
  }
  .trsolboxtxt {
    padding: 2rem 2rem 3rem;
    top: 12%;
  }
  .trsolboxtxt a {
    font-size: 13px;
  }
  .wantlmodiv {
    width: 55%;
    margin: auto;
    text-align: center;
  }
  .wantlmodiv h2 {
    font-size: 26px;
  }
  .wantlmodiv p {
    font-size: 16px;
  }
  .downform input {
    font-size: 14px;
  }
  .sect2p1 {
    margin-top: 100px;
    margin-bottom: 140px;
  }
  .movingbox1 {
    top: -48px;
    right: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .learnmorebg {
    height: 350px;
  }
  .copoform {
    top: -61px;
  }
  .movingbox1 a {
    font-size: 15px;
  }
  .hraft {
    bottom: 10px;
  }
  .imgtech hr {
    bottom: 10px;
  }
  .nav {
    padding: 1vh 2vw;
  }
  .nav > .nav-links > a {
    font-size: 1.2vw;
  }
  .whiteconndiv {
    padding: 2rem 2.5rem;
    width: 52vw;
    top: 160px;
  }
  .maindivsec2p1 a {
    right: 55vw;
  }

  .site-navbar ul li a {
    font-size: 16px;
  }
  .headertxt {
    top: 80px;
  }
}

@media (max-width: 991px) {
  .nav {
    /* background-color: #293D7C; */
  }
  .nav > .nav-links > a {
    display: inline-block;
    padding: 2vh 3.5vw;
    text-decoration: none;
    margin: 0px;
    color: #fff;
    font-family: "barlow-semibold";
    font-size: 17px;
    position: relative;
    border-bottom: 1px solid #718eb7;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 20px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label:hover,
  .nav #nav-check:checked ~ .nav-btn > label {
    /* background-color: rgba(0, 0, 0, 0.3); */
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #293d7c;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 84px;
    left: 0px;
    overflow: hidden;
    z-index: 999;
  }

  .nav > .nav-links > a {
    display: block;
    width: 100%;
  }
  .nav > .nav-links > a::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #fff;
    position: absolute;
    right: 45px;
    border-radius: 50%;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .site-navbar ul li a {
    display: block;
    padding: 2vh 3.5vw;
    text-decoration: none;
    margin: 0px;
    color: #fff;
    font-family: "barlow-semibold";
    font-size: 17px !important;
    position: relative;
    border-bottom: 1px solid #718eb7;
    margin-right: 0px !important;
    padding-bottom: 0px;
  }

  .site-navbar ul li a::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #fff;
    position: absolute;
    right: 45px;
    border-radius: 50%;
  }
  /* navbar css for mobile start */
  .nav-toggler {
    display: block;
  }
  .site-navbar {
    min-height: 60px;
  }
  .site-navbar ul {
    position: absolute;
    width: 100%;
    height: calc(100vh - 76px);
    left: 0;
    top: 75px;
    flex-direction: column;
    align-items: center;
    /* border-top: 0px solid #444; */
    background-color: #293d7c;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    max-width: 100%;
    z-index: 9999999;
  }
  .site-navbar ul li {
    width: 100%;
  }
  .site-navbar ul li a {
    padding: 25px;
  }
  .site-navbar ul li a:hover {
  }
  .site-navbar ul.open {
    max-height: 100vh;
    overflow: visible;
  }
  .disnonheaderbgmbl {
    display: block;
  }
  .indexheader{
    height: 100vh;
  }
  .headerbg {
    height: 100vh;
    object-position: 80%;
    object-fit: cover;
  }
  .headertxt {
    flex-direction: column;
    align-items: baseline;
    padding: 0 5%;
    top: 54px;
    margin-top: 160px;
  }
  .headertxt img {
    width: 110px;
    margin-right: 0px;
    transform: rotate(269deg);
    margin-bottom: 24px;
  }
  .headertxt h1 {
    width: 100%;
    font-size: 50px;
  }
  .headerbottom {
    position: absolute;
    bottom: 0px;
    width: 100%;
  }
  .headerbottom a {
    text-decoration: none;
  }
  .headerbottom .fa {
    color: #fff;
    font-size: 20px !important;
    display: block;
    text-align: center;
    cursor: pointer;
  }
  .headerbottom p {
    color: #fff;
    font-family: "barlow-bold";
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
  }
  .introsec1 {
    margin-top: 3rem;
    padding: 0 28px;
  }
  .introsec1 .row .col-md-6 {
    max-width: 100%;
    flex: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 960px;
  }
}

@media screen and (max-width: 767px) {
  .learnmorebg {
    height: auto !important;
  }
  .copoform form label {
    display: block !important;
  }
  .flexdivlearnmo {
    display: flex;
    position: unset;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .headertxt {
    top: -60px !important;
  }
  .headertxt img {
    width: 60px;
  }
  .headertxt h1 {
    font-size: 36px;
  }
  .copoform {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 20px 17px #314b8933;
    padding: 30px 16px;
    width: 100%;
    position: relative;
    top: 0px;
    margin-bottom: -4rem;
    left: 0;
    order: 1;
  }

  .copoform form label {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .site-navbar a img {
    width: 50%;
    margin-left:0px;
    height: auto;
    margin-top: 20px;
  }
  .copoform form input {
    height: 20px;
  }
  .disnonheaderbgdesk {
    display: none;
  }

  .wwrtxt1:before {
    width: 62px;
  }
  .wwrtxt1 {
    font-size: 26px;
  }
  .wwrdiv1 h3 {
    font-size: 30px;
  }
  .wwrdiv2 p {
    font-size: 16px;
  }
  .videob1 {
    order: 1;
  }
  .hotlinebottom {
    text-align: center;
  }

  .leranmotxt {
    position: relative;
    width: 100%;
    right: 0px;
    text-align: center;
    align-items: center;
    padding: 3rem 0px 1rem;
  }
  .submitbtn {
    float: none;
    text-align: center;
  }
  .footerp1 .container {
    max-width: 100%;
    padding: 0px;
  }
  .footermenu {
    display: flex;
    justify-content: center;
    position: relative;
    top: -1rem;
    margin-bottom: 0.5rem;
    flex-direction: column;
    border-top: 1px solid #707070;
    /* border-bottom: 1px solid #707070; */
  }
  .footermenu a {
    color: #667a96;
    font-family: "barlow-reg";
    font-size: 20px;
    text-decoration: none;
    margin-right: 0px;
    border-bottom: 1px solid #707070;
    padding: 1rem 40px;
    display: flex;
    align-items: center;
  }
  .footermenu a::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #707070;
    position: absolute;
    right: 45px;
    border-radius: 50%;
  }
  .footerbottom p {
    font-size: 14px;
  }
  .disdeskfooter {
    display: none !important;
  }
  .dismmfooter {
    display: inline-block !important;
  }
  .footertop p {
    text-transform: capitalize;
    padding: 10px 20px !important;
  }
  .dismmfooter2 {
    display: block;
  }
  .learnmoresec {
    padding: 0rem 0px 10rem;

    top: 0px;
  }
  .footerp1 {
    margin-top: 0px;
  }
  .footertop h2 {
    color: #000;
    font-family: "barlow-reg";
    font-size: 20px;
    text-align: center;
  }
  .copoform .row .col-md-6 {
    max-width: 50% !important;
    flex: 50% !important;
  }
  .moving1disdesk {
    display: none;
  }
  .disheading1 {
    display: none;
  }
  .siderigfhthl a:first-child {
    margin-right: 20px;
  }
  .siderigfhthl a {
    cursor: pointer;
  }
  .moving1deskmbl {
    display: block;
    padding: 1rem 0;
  }
  .topmovingdiv {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
  }
  .topmovingdiv span {
    color: #202b5c;
    font-family: "barlow-reg";
    font-size: 16px;
  }
  .topmovingdiv span:before {
    background-color: #202b5c;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 40px;
    margin-right: 15px;
  }
  .movingbtns1 {
  }
  .movingbtns1 a:first-child {
    margin-right: 20px;
  }
  .movingbtns1 a img {
    cursor: pointer;
  }
  .movingbtns1 img {
    width: 20px;
  }
  .moving1deskmbl h2 {
    color: #202b5c;
    font-family: "barlow-bold";
    font-size: 24px;
    text-align: center;
    padding: 0 1rem 1rem;
  }
  .moving1deskmbl img {
    /* width: 100%; */
  }
  .movingbottomdiv {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 18px 16px #314b8933;
    position: relative;
    top: -60px;
    width: 90%;
    padding: 1.5rem;
    margin-left: auto;
  }
  .movingbottomdiv hr {
    background-color: #202b5c;
    width: 50px;
    height: 1px;
    /* position: absolute; */
    /* left: 0px; */
    margin: 1rem 0;
  }
  .movingbottomdiv p {
    color: #000;
    font-family: "barlow-reg";
    font-size: 16px;
  }
  .movingbottomdiv a {
    float: right;
  }
  .nav > .nav-links > a {
    font-size: 16px;
  }
  .dnbannerdesk {
    display: none;
  }
  .dnbannermbl {
    display: block;
  }
  .headimgdiv {
    padding: 0px;
  }
  .bgimgp2 {
    border-radius: 0px;
  }
  .techtxtcontain .row .col-md-6 {
    max-width: 100%;
    flex: 100%;
    padding: 0px 15px;
  }
  .makeme1 {
    order: 1;
  }
  .imgtech hr {
    display: none;
  }
  .texttech {
    padding: 2rem 20px;
  }
  .texttech h2 {
    font-size: 23px;

    padding: 0px 0px 0px 0px;
  }
  .texttech p {
    font-size: 18px;
    padding: 0px 0px 0px 0px;
  }

  .hrbef {
    width: 35px;
    margin: 0px 0px 18px 0px;
    background-color: #6f7070;
  }
  .hraft {
    background-color: #6f7070;
    margin: 0px 0px;
    position: relative;
  }
  .techtxtcontain {
    padding: 1rem 20px;
  }
  .techtxtcontain .row {
    margin-bottom: 2rem;
  }

  .headerp2txt {
    /* top: 40%;
    transform: translateY(0%); */
    flex-direction: column;
    align-items: baseline;
  }
  .headerp2txt img {
    width: 60px !important;
    margin-right: 2rem;
    transform: rotate(269deg);
    margin-bottom: 2rem;
  }
  .headerp2txt h1 {
    font-family: "barlow-reg";
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
    width: 265px;
  }
  .part1logos img {
    height: 80px;
  }
  .part1sec {
    padding: 1rem 1rem;
  }
  .part1logos {
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0rem 35px 1rem;
    grid-template-rows: repeat(10, 1fr);
  }
  .part2logos {
    grid-template-rows: repeat(5, 1fr) !important;
  }
  .parthotellogos {
    grid-template-rows: repeat(4, 1fr) !important;
  }
  .part3logos {
    grid-template-rows: repeat(2, 1fr) !important;
  }
  .wantlearnmorebg {
    padding: 4rem 1rem;
  }
  .part1head {
    padding: 1rem 1.5rem 2rem;
  }
}

/* mobile breakpoint end */

@media (max-width: 950px) {
  .site-navbar ul li a {
    font-size: 13px;
  }
  .headertxt {
    top: 20px;
  }
  .learnmorebg {
    height: 250px;
  }
  .leranmotxt {
    top: 10px;
  }
  .leranmotxt h2 {
    font-size: 26px;
  }
  .leranmotxt p {
    font-size: 16px;
  }
  .trsolmoredet {
    top: 82%;
    width: 92%;
  }
  .trsolmoredet form {
    padding: 0rem 2rem 1rem;
  }
  .trsolmoredet label {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .button-label h1 {
    font-size: 15px;
  }
  .trsolmoredet input {
    font-size: 13px;
  }
  .trsolmoredet select {
    font-size: 13px;
  }
  .btnformbso button {
    font-size: 16px;
    float: none;
    margin: auto;
    display: table;
  }
  .btnformbso {
    margin: 1rem 0 0;
  }
  .intropart {
    padding: 1rem 30px;
  }
  .intropartmain hr {
    max-width: 40px;
    margin: 0 0 20px;
  }
  .intropartmain h2 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .intropartmain p {
    font-size: 15px;
  }
  .travelsolmain {
    padding-top: 0px;
  }
  .breadcrumbsec {
    padding: 1rem 0 0;
    display: block;
    text-align: right;
  }
  .breadcrumbsec span {
    color: #6f7070;
    font-family: "barlow-reg";
    font-size: 13px;
    text-transform: uppercase;
  }
  .breadcrumbsec span a {
    color: #6f7070;
    font-family: "barlow-reg";
    font-size: 13px;
    text-transform: uppercase;
    margin-right: 10px;
    text-decoration: none;
  }
  .breadcrumbsec span:last-child {
    color: #202b5c !important;
  }
  .breadcrumbsec .fa {
    color: #6f7070 !important;
    margin-right: 10px;
  }
  .copoform h2 {
    font-size: 16px;
  }
  .copoform form label {
    display: none;
  }
  .trsoldiv {
    padding: 1rem 1rem !important;
  }
  .trsolboxtxt hr {
    width: 40px;
  }
  .trsolboxtxt {
    background: unset;
    box-shadow: unset;
    padding: 2rem 1rem !important;
    position: unset;
    width: 100%;
  }
  .trsolboxtxt a {
    position: unset;
    padding: 14px 15px;
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
  .trsolboxtxt a .fa {
    position: absolute;
    right: 28px;
    top: 18px;
  }
  .trsolboxtxt h2 {
    font-size: 18px;
  }
  .trsolboxtxt p {
    font-size: 15px;
  }
  .trasoldiv2 {
    padding: unset;
  }
  .wantlmodiv {
    width: 95%;
  }
  .narcontainer {
    padding: 8px 15px;
  }
}

@media (max-width: 600px) {
  .headerp2txt img {
    width: 45px !important;
    margin-bottom: 10px;
  }
  .headerp2txt {
    /* top: 14%; */
    margin-left: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .flexdivlearnmo {
    display: flex;
    position: unset;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .copoform {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 20px 17px #314b8933;
    padding: 30px 16px;
    width: 100%;
    position: relative;
    top: 0px;
    margin-bottom: -4rem;
    left: 0;
    order: 1;
  }
}
@media screen and (max-width: 375px){
  .site-navbar a img{
    margin: 0px;
  }
  .headertxt{
    top:-80px !important;
  }
  .headertxt h1{
    font-size:26px;
  }
}
@media (min-width: 950px) {
  .reshow2 {
    left: 4%;
  }
  .reshow4 {
    left: 4%;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 90% !important;
  }
  /* .site-navbar a img {
    margin-left:30px !important;
  } */
}