@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/***** General CSS *****/

:root {
  --ct1: #3ca1e4;
  --wt: #fff;
  --bk: #000;
  --bkm: #212121;
  --mbk: #6b7280;
  --g1: linear-gradient(
    0deg,
    rgba(51, 132, 200, 1) 0%,
    rgba(60, 161, 228, 1) 100%
  );
  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font:
    15px/25px "Poppins",
    sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

.theme-txt {
  color: var(--ct1) !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "headlines-bold";
  src: url("../fonts/headlines-bold.otf");
}

@font-face {
  font-family: "bacalisties";
  src: url("../fonts/bacalisties.ttf");
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 100px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  background-color: var(--wt);
  padding: 5px 60px 5px 15px;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid var(--ct1);
  box-shadow: 0 0 20px 0 #3ca1e442;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  /* border: 2px solid #0000; */
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 12px;
  line-height: 1;
  color: var(--bk);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 100px;
  overflow: hidden;
  background: var(--g1);
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(-2%, -50%);
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
  width: 92%;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "headlines-bold";
  font-size: 120px;
  line-height: 1;
  color: var(--ct1);
  font-weight: 500;
  margin: 0;
  text-transform: capitalize;
}

h2 {
  font-family: "headlines-bold";
  font-size: 80px;
  line-height: 85px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
  letter-spacing: 3px;
  text-transform: capitalize;
}

h3 {
  font-family: "headlines-bold";
  font-size: 30px;
  line-height: 34px;
  color: var(--bk);
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "headlines-bold";
  font-size: 24px;
  line-height: 29px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "headlines-bold";
  font-size: 20px;
  line-height: 25px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "headlines-bold";
  font-size: 18px;
  line-height: 23px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

p {
  color: var(--bk);
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/* Header Starts */
header {
  padding: 30px 0 20px 0px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
}
.menuSec {
  padding: 0px 0;
}

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 25px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  color: var(--bk);
  font-weight: 600;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
  /* transition-delay: 0.5s; */
}

.menu-box ul li a:hover {
  color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  height: 100%;
  background-color: var(--ct1);
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::after {
  width: 100%;
  transition: ease-out;
  /* transition-delay: 0.5s; */
  transition-duration: 0.5s;
}

.menu-box ul li.active a {
  color: var(--wt);
}

.menu-box ul li.active a::after {
  width: 100%;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
}

.menu-box li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menu-box ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}

/*Header  Ends */

/* Main Banner  Starts */

section.banner-sec {
  position: relative;
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 110vh;
  padding: 170px 0;
}

section.banner-sec .container,
section.banner-sec .row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

section.banner-sec img.ban-ex1 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

section.banner-sec img.ban-ex2 {
  position: absolute;
  top: 0;
  left: 0;
}

section.banner-sec img.ban-ex3 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  /* gap: 10px; */
}

.banner-txt p {
  width: 90%;
}
.banner-heading h6 {
  font-family: "bacalisties";
  font-size: 74px;
  line-height: 1;
  margin: 0 0 -40px 0;
  position: relative;
}

.banner-heading h5 {
  color: var(--bkm);
  font-size: 109px;
  line-height: 1;
  margin: -10px 0 0 0;
}

.banner-img-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.banner-img {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  border: 10px solid var(--wt);
  box-shadow: 0 0 20px 0 #0000001c;
}

.ban1 {
  height: 575px;
  width: 675px;
  align-items: start;
  justify-content: center;
  margin: 0 auto 0 20px;
  rotate: -10deg;
}

.ban2 {
  height: 285px;
  width: 355px;
  align-items: center;
  justify-content: end;
  margin: 0 0 0 0;
  position: absolute;
  bottom: 0;
  right: -60px;
  rotate: 10deg;
}

.banner-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/*Main Banner Ends */

/*About Us Sec Css Starts */

section.about-sec {
  padding: 150px 40px 120px;
}

.about-txt p {
  width: 95%;
}

.about-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  width: 80%;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: -100px;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 10px solid var(--wt);
  box-shadow: 0 0 20px 0 #00000042;
  overflow: hidden;
  height: 280px;
  width: 30%;
  margin-top: 80px;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.about-wrap .abt1 {
  rotate: -10deg;
}

.about-wrap .abt2 {
  rotate: 10deg;
}

/*About Us Sec Css Ends */

/* What We Offer Starts */

section.offer-sec {
  background-image: url(../images/what-we-offer-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: 100% 100%;
}

.offer-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 680px;
  width: 100%;
}

.offer-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.offer-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.offer-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
  width: 90%;
  gap: 20px;
  margin: 0 auto 0 40px;
}

.offer-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.offer-card-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  overflow: hidden;
  border-radius: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.offer-card-main:hover {
  padding: 20px;
  background-color: var(--wt);
  box-shadow: 0 0 20px 0 #00000017;
  transition: ease-out;
  transition-duration: 0.5s;
}

.offer-card-num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--wt);
  box-shadow: 0 0 20px 0 #00000017;
}

.offer-card-num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 100px;
  background: var(--g1);
  transition: ease-in;
  transition-duration: 0.5s;
}

.offer-card-main:hover .offer-card-num::before {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.offer-card-num h3 {
  position: relative;
  font-size: 29px;
  line-height: 35px;
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Montserrat";
  transition: ease-in;
  transition-duration: 0.5s;
}

.offer-card-main:hover .offer-card-num h3 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #fff !important;
  transition: ease-out;
  transition-duration: 0.5s;
}

.offer-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.offer-heading h2 {
  margin-bottom: 10px;
}

.offer-card-txt h4 {
  font-family: "Montserrat";
  font-weight: 700;
}

/* What We Offer Ends */

/* Featured Destinations Start  */

.featured-destinations-sec {
  padding: 100px 0;
}
.featured-destinations-heading {
  text-align: center;
}
.featured-destinations-heading h2 {
  color: #141414;
  letter-spacing: 3px;
  font-size: 70px;
}
.featured-destinations-silder-items {
  margin-top: 30px;
}
.featured-destinations-silder-items {
  margin-top: 0px;
  border: 1px solid #c1dedc;
  padding: 20px 20px;

  border-radius: 30px;
  background: #f0f2f4;
}
.featured-destinations-silder .slick-slide {
  margin: 150px 0px;
}
.featured-destinations-silder .slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 1.2;
}
.featured-destinations-silder-items-img img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid #c1dedc;
  object-position: 100% 30%;
}
ul.featured-destinations-number li h2 {
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #141414;
  margin-bottom: 0;
  line-height: 30px;
}
.slick-active {
  opacity: 1.5;
}
.featured-destinations-silder-items-text {
  margin: 25px 12px 0;
}
ul.featured-destinations-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
ul.featured-destinations-button li p {
  color: #262626;
  font-weight: 700;
  font-size: 9px !important;
}
ul.featured-destinations-button li strong {
  color: transparent;
  background: var(--g1);
  -webkit-background-clip: text;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-decoration: underline;
  font-size: 14px;
}
.featured-destinations-sec .container-fluid {
  padding: 0 3%;
}
ul.featured-destinations-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.featured-destinations-hover-text {
  display: none;
}

ul.featured-destinations-number li span {
  background: var(--g1);
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 500;
  padding: 2px 15px;
  border-radius: 50px;
  font-size: 11px;
  display: none;
}

ul.featured-destinations-number li {
  display: flex;
  align-items: center;
  gap: 12px;
}
ul.featured-destinations-number li strong {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  color: #262626;
  border-bottom: 1.8px solid #656566;
  line-height: 15px;
}
.featured-destinations-silder-items-text p {
  color: #303031;
  font-size: 12px;
  line-height: 20px;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .featured-destinations-silder-items {
  transform: scale(1.5);
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .featured-destinations-silder-items {
  padding: 10px 10px 20px;
}
.featured-destinations-silder .slick-prev {
  top: inherit;
  bottom: 40px;
  z-index: 999999;
}

.featured-destinations-silder .slick-next {
  right: 235px;
}

.featured-destinations-silder .slick-next:before {
  content: "";
  background-image: url(../images/featured-destinations-arrow.png);
  width: 19px;
  height: 9px;
  background-size: cover;
  position: absolute;
  transform: rotate(180deg);
}

.featured-destinations-silder button.slick-next.slick-arrow {
  border: 1px solid #a3a3a3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 5px 0 #00000054;
  ransition: 0.5s;
}

.featured-destinations-silder .slick-next {
  top: inherit;
  bottom: 40px;
  z-index: 999999;
}
.featured-destinations-silder .slick-prev:before {
  content: "";
  background-image: url(../images/featured-destinations-arrow.png);
  width: 19px;
  height: 9px;
  background-size: cover;
  position: absolute;
}
.featured-destinations-silder button.slick-prev.slick-arrow {
  border: 1px solid #a3a3a3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 5px 0 #00000054;
  ransition: 0.5s;
}
.featured-destinations-silder .slick-prev {
  left: 235px;
}
.featured-destinations-silder button.slick-next.slick-arrow:hover:before {
}
.featured-destinations-silder button.slick-prev.slick-arrow:hover:before {
  filter: invert(44);
}
.featured-destinations-silder button.slick-next.slick-arrow:hover:before {
  filter: invert(44);
}
.featured-destinations-silder button.slick-prev.slick-arrow:hover {
  background: var(--g1);
  transition: 0.5s;
}

.featured-destinations-silder button.slick-next.slick-arrow:hover {
  background: var(--g1);
  transition: 0.5s;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .featured-destinations-silder-items-img
  img {
  border-radius: 18px;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .featured-destinations-silder-items {
  border-radius: 20px;
  box-shadow: 0 0 20px 0 #00000066;
}

.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .featured-destinations-silder-items-text {
  margin: 12px 12px 0;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  ul.featured-destinations-number
  li
  span {
  display: block;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .featured-destinations-silder-items-text
  p {
  font-size: 10px;
  line-height: 15px;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  ul.featured-destinations-number
  li
  strong {
  font-size: 9px;

  border-bottom: 1.5px solid #656566;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  ul.featured-destinations-number
  li
  h2 {
  text-transform: capitalize;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .featured-destinations-hover-text {
  display: block;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .theme1
  span.theme1-txt {
  font-size: 8px;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  a.theme1
  span.theme1-icon
  img {
  width: 10px;
  height: 10px;
  object-fit: contain;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .theme1
  span.theme1-icon {
  height: 28px;
  width: 28px;
}
.featured-destinations-silder
  .slick-slide.slick-current.slick-active.slick-center
  .theme1 {
  height: 35px;
  background-color: var(--wt);
  padding: 3px 39px 3px 12px;
}
/* Featured Destinations Ends */

/* Get a Quote Ends */

section.contact-form-sec {
  background-image: url(../images/contact-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  position: relative;
  margin: 40px 0 0 0;
}

.contact-form-sec-heading h3 {
  color: #141414;
  /* text-transform: uppercase; */
  font-weight: 600;
}

.contact-form-sec-input input,
.contact-form-sec-input textarea {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 15px 20px;
  background-color: #0000;
  color: #000;
  font-family: "Montserrat";
  font-weight: 400;
  border: 1.8px solid #9a9a9a;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
}

.contact-form-sec-input input::placeholder,
.contact-form-sec-input textarea::placeholder {
  color: #000;
}

.contact-form-sec-input textarea {
  resize: none;
  height: 200px;
}

/* section.contact-form-sec .contact-space {
        padding: 50px 20px;
        background-color: #fff;
        border-radius: 30px;
    } */

.contact-form-sec-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

/* .contact-form-sec-img img {
        border-radius: 30px;
    } */

.contact-form-sec-heading h3 {
  font-size: 80px;
  line-height: 80px;
  letter-spacing: 3px;
}

.contact-form-sec-heading p {
  color: #4f4f50;
  line-height: 22px;
}

.contact-form-sec-heading {
  position: relative;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  margin: 0 0 20px 0;
}

.contact-form-sec-txt-main {
  position: relative;
  z-index: 9;
}

.contact-form-sec-img img {
  height: 100%;
  width: 56%;
}

.contact-form-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  width: 600px;
  border-radius: 400px;
  overflow: hidden;
  object-position: 0 0;
  border: 2px solid #ffffff;
  padding: 20px;
}

.contact-form-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  object-fit: cover;
  border-radius: 400px;
  overflow: hidden;
}

/* Get a Quote Ends */

/* How It Works Starts*/

.works-heding {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.works-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0 0 0;
  position: relative;
}

.works-main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 220px;
  height: 90px;
  background-image: url("../images/worksba1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.works-main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 25%;
  width: 220px;
  height: 90px;
  background-image: url("../images/worksba1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  rotate: 180deg;
  z-index: -1;
}

.works-card-main {
  width: 33.3333%;
}

.works-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  height: 350px;
  width: 350px;
  margin: 0 auto;
  border-radius: 300px;
  /* overflow: hidden; */
  background-color: #fff;
  box-shadow: 0 0 7px 0 #00000026;
  transition: ease-in;
  transition-duration: 0.5s;
}

.works-card:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.works-card::before {
  content: "";
  position: absolute;
  top: 2%;
  left: 2%;
  border-radius: 300px;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: ease-in;
  transition-duration: 0.5s;
  background: linear-gradient(45deg, #4a4a4a, #5f5f5f);
}
.works-card:hover::before {
  top: 0;
  left: 0;
  height: 105%;
  width: 105%;
  transition: ease-out;
  transition-duration: 0.5s;
  background: linear-gradient(45deg, #2f7bb9, #3b9cde);
}

.works-card-num h5 {
  font-size: 57px;
  line-height: 1;
  font-weight: 600;
  -webkit-text-fill-color: transparent;
  background-position: 0 0;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-name: gradients;
  color: transparent;
  background: var(--g1);
  -webkit-background-clip: text;
}

.works-card-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 90%;
}

.works-card-num h6 {
  font-family: "Montserrat";
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.works-card-txt {
  width: 70%;
  margin: 0 auto;
}

.works-card-txt p {
  text-align: center;
}

/* How It Works  Ends*/

/* What People Say Ends  start  */

section.testimonials .headtext {
  text-align: center;
  width: 74%;
  margin: 0px auto;
}

section.testimonials .headtext h2 span {
  color: #003a37;
}

section.testimonials .headtext p {
  color: #003a37;
  font-weight: 500;
}

section.testimonials .item {
  /* opacity: 1; */
}

section.testimonials .item .box {
  display: flex;
  box-shadow: 6px 8px 20px 0px #44444417;
  box-sizing: border-box;
  border-radius: 0px;
  padding: 40px 30px 30px 30px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--ct1);
  overflow: hidden;
}

section.testimonials .item .box .author {
  padding: 0px 10px;
  position: relative;
  flex-shrink: 0;
}

section.testimonials .item .box .author-text {
  position: relative;
  padding-top: 18px;
  padding-bottom: 20px;
  transition: 2s;
  margin-bottom: 10px;
}

section.testimonials .item .box .author-text h4 {
  color: #000;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 18px;
  margin-bottom: 0px;
  transition: 2s;
  font-weight: 500;
}

section.testimonials .item .box .author-text span {
  color: #000;
  font-size: 14px;
  line-height: 28px;
  transition: 2s;
}

section.testimonials .item .box p {
  font-style: italic;
  line-height: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  transition: 2s;
  display: inline;
  color: #9c9c9c;
  font-style: unset;
}

section.testimonials .item .box .des {
  padding-left: 10px;
  padding-bottom: 30px;
}

section.testimonials .item .box p:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 14px;
  left: -23px;
  top: 10px;
  background-image: url(../images/topQuote.png);
  background-size: 100% 100%;
  transition: 2s;
  filter: brightness(0) saturate(100%) invert(80%) sepia(49%) saturate(6154%)
    hue-rotate(177deg) brightness(92%) contrast(95%);
}

section.testimonials .item .box p:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 14px;
  right: -20px;
  bottom: 10px;
  background-image: url(../images/btm-quote.png);
  background-size: 100% 100%;
  transition: 2s;
  filter: brightness(0) saturate(100%) invert(80%) sepia(49%) saturate(6154%)
    hue-rotate(177deg) brightness(92%) contrast(95%);
}

section.testimonials .item .box:hover p::before {
  filter: brightness(0) invert(1);
}

section.testimonials .item .box:before {
  position: absolute;
  content: "";
  width: 12%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--ct1);
  border-radius: 0px;
  transition: 1s;
  border-radius: 20px;
}

section.testimonials .item .box:hover p {
  color: #fff;
}

section.testimonials .item .box .author img {
  transition: 2s;
  border-radius: 100px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 20px 0 #0000002e;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 65px;
  object-fit: cover;
}

section.testimonials .item .box:hover .author-text {
  color: #fff;
}

section.testimonials .item .box:hover .author-text span {
  color: #fff;
}

section.testimonials .item .box:hover .author-text h4 {
  color: #fff;
}

section.testimonials .item .box:hover:before {
  width: 100%;
}

section.testimonials .slick-list {
  margin-right: 69px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-left: 40px;
}
section.testimonials {
  position: relative;
  padding-top: 50px;
}

.clientsslid .slick-active {
  opacity: 1.5;
}

section.testimonials .item .box:hover p:after {
  filter: brightness(0) invert(1);
}

.heading-services {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 60%;
  margin: 0 auto;
}

.testimonials_sldier .slick-slide {
  margin: 0px 10px;
}

.testimonials_sldier .slick-active {
  opacity: 1;
}

/* What People Say Ends   */

/* Footer Start*/
footer .container-fluid {
  padding: 0 3%;
}
.fot-top {
  padding: 0px 0px 0px;
}

footer {
  background-color: #151515;
}
.fot-top h3 {
  font-size: 30px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: "headlines-bold";
  text-transform: capitalize;
  letter-spacing: 2px;
}
.fot-logo p {
  font-size: 15px;
  color: #fff;
}
.quick-links {
  margin-left: 14%;
}
.quick-links {
  margin-left: 8%;
  border-left: 1px solid #434343;
  padding-left: 15%;
  padding-top: 80px;
  height: 106.4%;
}
.fot-logo p {
  font-size: 13px;
  color: #a1a1a1;
  margin-top: 15px;
}

.fot-logo {
  padding-top: 80px;
}
.cont-info {
  padding-top: 80px;
}

.fot-logo {
  padding-top: 80px;
  padding-bottom: 70px;
}
.cont-info {
  border-left: 1px solid #434343;
  padding-left: 10%;
  height: 106.4%;
}
.quick-links ul li a {
  font-size: 14px;
  line-height: 34px;
  font-weight: 500;
  color: #908f8f;
  font-family: "Montserrat", sans-serif;
}
.fot-logo img {
  margin-bottom: 13px;
}
.fot-bot ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.fot-bot ul li a i:hover {
  background-color: #3ca1e4;
  transition: 1s;
  color: #fff;
  border: unset;
}
.fot-bot ul li a i {
  font-size: 16px;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9e9e9e;
}
.fot-bot p {
  text-align: end;
  font-size: 12px;
  color: #a0a0a0;
  margin: 0;
}
.fot-bot img {
  text-align: end;
  margin: 0 0 0 auto;
  width: fit-content;
  display: block;
}
.fot-bot {
  padding: 20px;
}

.fot-bot .container {
  border: 1px solid #434343;
  padding: 15px 25px;
  border-radius: 10px;
}

.fot-bot .row {
  align-items: center;
}
ul.foot-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #c1c1c3;
  text-transform: capitalize;
  padding-bottom: 17px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
ul.foot-list i.fas.fa-phone-alt {
  transform: rotate(95deg);
}
ul.foot-list {
  margin-top: 25px;
}

ul.foot-list li a i {
  color: #3ca1e4;
  font-size: 18px;
}
/* Footer Ends */

/* Inner About Us Start */

.inner-banner-sec {
  background-image: url(../images/inner-banner-back.jpg);
  width: 100%;
  height: 540px;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
}
.inner-banner-text h2 {
  font-size: 90px;
  margin-bottom: 15px;
  color: #212121;
}
.inner-banner-text p {
  color: #000000;
  width: 62%;
  margin: 0 auto;
}
section.offer-sec.inner {
  margin: 80px 0;
}
.inner-about-us-sec {
  padding: 120px 0 50px;
}
.inner-about-us-text {
  width: 85%;
  background: #fff;
  padding: 60px 25px 0px 0px;
  border-top-right-radius: 30px;
}

.inner-about-us-images img {
  box-shadow: 0 0 20px 0 #00000038;
  border: 8px solid #fff;
  border-radius: 30px;
  width: 100%;
  height: 770px;
  object-fit: cover;
}

.inner-about-us-sec .row.background {
  position: relative;
}
.inner-about-us-sec .row.background:before {
  content: "";
  position: absolute;
  background: #368dd0;
  width: 80%;
  height: 75%;
  z-index: -1;
  left: 150px;
  top: 95px;
  border-top-left-radius: 30px;
}
.inner-about-us-row {
  margin-top: 20px;
}

.inner-about-us-text h2 {
  font-size: 65px;
  margin-bottom: 30px;
  line-height: 60px;
}
.inner-about-us-text p {
  margin-top: 20px;
  color: #333333;
  font-weight: 600;
}

.inner-about-us-text h2 span {
  display: block;
}
.inner-about-us-row p {
  color: #333333;
  font-weight: 600;
  margin-top: 30px;
}

/* Inner About Us Ends */

/* Inner Destinations Start */

.all-section {
  padding: 100px 0;
}
.inner-destinations-heading {
  text-align: center;
}
.inner-destinations-heading h2 {
  color: #141414;
  margin-bottom: 0;
}
.inner-destinations-boxs {
  margin-top: 35px;
  border: 1px solid #c1dedc;
  padding: 20px 20px;
  border-radius: 30px;
  background: #f0f2f4;
}
.inner-destinations-boxs-img img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  object-position: 100% 30%;
}
section.works-sec.sec.inner {
  padding: 30px 0 120px;
}

ul.inner-destinations-number li h2 {
  font-size: 40px;
  line-height: 30px;
}

.inner-destinations-silder-items-text {
  margin: 30px 20px 0;
}

ul.inner-destinations-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
ul.inner-destinations-number li strong {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #262626;
  border-bottom: 1.8px solid #262626;
  line-height: 20px;
}
ul.inner-destinations-number li {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
ul.inner-destinations-number li span {
  background: var(--g1);
  font-family: "Montserrat", sans-serif;
  color: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}
.inner-destinations-silder-items-text p {
  color: #303031;
}
ul.inner-destinations-button {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
ul.inner-destinations-button li p {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 2px;
}
ul.inner-destinations-button li strong {
  color: transparent;
  background: var(--g1);
  -webkit-background-clip: text;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-decoration: underline;
  font-size: 18px;
}

/* Inenr Destinations Ends */

/*Inner Contact Us Start*/

.contact_detail_box figure img {
  margin: auto;
  height: 60px;
  width: 60px;
  object-fit: contain;
}

section.contact_form input::placeholder {
  font-family: "Montserrat", sans-serif;
}

section.contact_form textarea::placeholder {
  font-family: "Montserrat", sans-serif;
}

.contact_detail_box h2 {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 700;
  margin: 30px 0 10px 0;
}

.contact_detail_box p {
  font-size: 15px;
  line-height: 25px;
  color: #636363;
  display: block;
  width: 80%;
  margin: 0 auto;
  margin-top: 2px;
}

.contact_detail_box {
  padding: 40px 40px;
  transition: 0.5s;
  height: 262px;
  border: 1.8px solid #3790d3;
  border-radius: 20px;
}
.contact_form {
  padding-bottom: 80px;
  position: relative;
}

.contact_form label {
  font-size: 15px;
  color: #5d5d5d;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.contact_page {
  padding: 100px 0 70px;
  position: relative;
}

.contact_form input {
  height: 55px;
  width: 100%;
  margin-bottom: 25px;
  border-radius: 15px;
  padding: 0 15px;
  border: 2px solid #cacaca;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.contact_form textarea {
  height: 200px;
  margin-bottom: 30px;
  width: 100%;
  padding: 20px 20px;
  resize: none;
  color: #000;
  border: 2px solid #cacaca;
  border-radius: 10px;
}

.section_head {
  margin-bottom: 40px;
}

.section_head p {
  width: 60%;
  margin: 0 auto;
}

.section_head h3 {
  color: #000;
  margin-bottom: 5px;
  line-height: 70px;
  font-weight: 500;
  font-size: 60px;
}

.br_gradient {
  padding: 2px;
  border-radius: 12px;
}

.contact_detail_box p span {
  display: block;
}

section.contact_page.chg2 {
  padding-bottom: 50px;
}

.contact_page h4 {
  font-size: 30px;
  letter-spacing: 0;
  margin: 20px 0 10px;
  color: #000;
  text-transform: capitalize;
}

.section_head.chg h3 {
  color: #0883ec;
}

.contact-us.btn_wrap {
  text-align: center;
}

.contact-us.btn_wrap button {
  margin: 0 auto;
}

.contact_detail_box a {
  display: block;
  font-size: 16px !important;
}
.contact-us.btn_wrap button {
  padding: 5px 65px 5px 20px;
}

/*Inner Contact Us End */

/* Inner Packages Start */

.inner-packages-heading {
  text-align: center;
}
.inner-packages-heading p {
  width: 65%;
  margin: 0 auto;
  margin-top: 15px;
}
.inner-packages-boxs {
  border: 2px solid #c1dedc;
  background: #fff;
  box-shadow: 0 0 20px 0 #00000033;
  border-radius: 30px;
  padding: 30px 30px;
  margin-top: 28px;
}

ul.disneyland li h2 {
  font-size: 25px;
  letter-spacing: 0;
  line-height: 30px;
}

ul.disneyland li p {
  color: #4c4c4c;
  font-size: 14px;
}

ul.disneyland {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
ul.disneyland li span {
  color: transparent;
  background: var(--g1);
  -webkit-background-clip: text;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-decoration: underline;
  font-size: 18px;
}
ul.disneyland li span i {
  font-size: 14px;
}

p.category-ocean {
  margin: 15px 0;
  color: #9c9c9c;
}
ul.average-temperature li p {
  color: #4c4c4c;
}

ul.average-temperature li h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 20px;
  font-weight: 600;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
ul.average-temperature li h2:before {
  content: "";
  position: absolute;
  background: #368dd1;
  width: 60px;
  height: 2px;
  top: -14px;
}
.inner-packages-boxs-images {
  margin-top: 20px;
}
.inner-packages-boxs-images img {
  width: 100%;
  height: 234px;
  object-fit: cover;
  border-radius: 12px;
}
ul.average-temperature li h2 i {
  font-size: 22px !important;
  color: #fcd563;
  font-size: 22px;
}
ul.total-price li h2 {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: transparent;
  background: var(--g1);
  -webkit-background-clip: text;
  line-height: 40px;
  letter-spacing: 0;
}
ul.total-price li strong {
  color: #888888;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}
ul.total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

ul.total-price li a {
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 25px;
  color: transparent;
  background: var(--g1);
  -webkit-background-clip: text;
  transition: 0.5s;
}
ul.total-price li a:hover {
  background: #368dd1;
  transition: 0.5s;
  color: #fff;
}
.enjoy-summer-deals-sec {
  /* background-image: url(../images/enjoy-summer-deals-img.png); */
  /* width: 100%; */
  /* height: 645px; */
  display: flex;
  padding: 100px 0;
  background-size: cover;
  position: relative;
  height: 850px;
}
.enjoy-summer-deals-sec > img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: bottom;
}
.enjoy-summer-deals-text h2 span {
  display: block;
}
.enjoy-summer-deals-text h2 {
  margin-bottom: 25px;
  font-size: 50px;
  line-height: 80px;
}
.enjoy-summer-deals-text h2 label {
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  font-size: 80px;
}
.inner-basic-packages-sec {
  padding: 20px 0 80px;
}
.enjoy-summer-deals-text h2 span {
  font-size: 100px;
  color: #3896d9;
}

/* Inner Packages Ends*/

/* Get A Quote Start */

.plan-your-perfect-trip-heading p {
  width: 60%;
  margin: 0 auto;
  margin-top: 15px;
}
.plan-your-perfect-trip-heading {
  text-align: center;
}
.plan-your-perfect-trip-input input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 2px solid #b7b7b7;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  color: #2b2b2b;
  font-weight: 600;
}
.plan-your-perfect-trip-input input::placeholder {
  color: #2b2b2b;
  font-weight: 600;
}
.plan-your-perfect-trip-input select {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 2px solid #b7b7b7;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  color: #2b2b2b;
  font-weight: 600;
}
.plan-your-perfect-trip-input {
  margin-top: 25px;
  position: relative;
  display: flex;
  align-items: center;
}
.plan-your-perfect-trip-input-icon {
  position: absolute;
  right: 0;
  width: 70px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: -webkit-linear-gradient(
    88deg,
    rgb(41, 102, 170) 0%,
    rgb(60, 161, 228) 100%
  );
  font-size: 25px;
  color: #fff;
  border-radius: 5px;
  pointer-events: none;
}
.tabs-content-map iframe {
  width: 100%;
  height: 500px;
  border-radius: 20px;
}

.tabs-content-photos-main-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
}
.tabs-content-photos-main-box {
  margin-bottom: 20px;
}
.plan-your-perfect-trip-input textarea {
  width: 100%;
  height: 160px;
  padding: 20px 20px;
  border: 2px solid #b7b7b7;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  color: #2b2b2b;
  font-weight: 600;
  resize: none;
}
.plan-your-perfect-trip-button {
  text-align: center;
  margin-top: 30px;
}
.plan-your-perfect-trip-input textarea::placeholder {
  color: #2b2b2b;
  font-weight: 600;
}

/* Get A Quote Ends */

/* Inner Packages Detail Ends */

.inner-packages-detail-disneyland-img {
  margin-top: 20px;
  position: relative;
}
.inner-packages-detail-disneyland-img-text {
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.inner-packages-detail-disneyland-img-text h2 {
  background: #ffffffc9;
  padding: 10px 10px;
  border-radius: 5px;
}
.inner-packages-detail-disneyland-img img {
  width: 100%;
}
.inner-packages-detail-disneyland-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}
.inner-packages-detail-disneyland ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-packages-detail-disneyland ul li h2 {
  font-size: 60px;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 80px;
}
.inner-packages-detail-disneyland p {
  color: #4c4c4c;
}
.inner-packages-detail-disneyland ul li span {
  display: block;
}
.inner-packages-detail-disneyland ul li span {
  display: block;
  color: transparent;
  background: var(--g1);
  -webkit-background-clip: text;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: end;
}
.inner-packages-detail-disneyland ul li strong {
  color: #4c4c4c;
  font-family: "Montserrat", sans-serif;
  margin-top: 0px;
  display: block;
}
.inner-packages-detail-disneyland-img-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 30px;
}
.inner-packages-detail-sec .custom-tabs .nav-link {
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  border: 1.8px solid #e0e0e0 !important;
  border-radius: 5px !important;
}
.inner-packages-detail-sec .custom-tabs .nav-link.active {
  border-bottom: inherit;
  color: #000;
  background: transparent;
}
.inner-packages-detail-sec .custom-tabs .nav-link.active {
  border-bottom: 3px solid #0d6efd;
  color: #000;
  background: transparent;
}
.inner-packages-detail-sec .tab-content {
  padding-top: 20px;
}
.feature-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ececec;
  padding: 15px 0;
}
.feature-row span {
  color: #0d6efd;
  font-weight: 500;
}
.included i {
  color: green;
  margin-right: 8px;
}
.not-included i {
  color: red;
  margin-right: 8px;
}
.feature-row span {
  color: #0a549b;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.inner-packages-detail-disneyland-tabs {
  margin-top: 30px;
}
.inner-packages-detail-sec .nav-tabs {
  border-bottom: none !important;
  gap: 25px;
  margin-bottom: 25px;
}

.inner-packages-detail-disneyland-tabs p {
  color: #575757;
  margin-top: 25px;
}

.inner-packages-detail-disneyland-tabs h2 {
  font-size: 35px;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 30px;
}
.feature-row div {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #191919;
}

.included p {
  color: #0a549b;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
}
.included ul li p img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.included ul li {
  margin-bottom: 15px;
}
.included ul li:last-child {
  margin-bottom: 0 !important;
}

.inner-packages-detail-sec .tabs-contenet-points {
  margin-top: 40px;
}

.inner-packages-detail-right-side {
  margin-left: 20px;
}
.total-price-form-heading strong {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  display: block;
}
.total-price-form-heading h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
}
.tour-mai-map iframe {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-bottom: -10px;
}
.total-price-form-heading {
  background-image: -webkit-linear-gradient(
    88deg,
    rgb(41, 102, 170) 0%,
    rgb(60, 161, 228) 100%
  );
  border-radius: 8px;
  text-align: center;
  padding: 20px 0;
}
.total-price-form-heading h2 {
  color: #fff;
}
.total-price-form-heading strong {
  color: #fff;
}

.total-price-form-box {
  box-shadow: 0 0 10px 0 #00000026;
  border-radius: 8px;
}

.total-price-form {
  padding: 20px 20px;
}
.total-price-form input {
  width: 100%;
  height: 50px;
  border: 2px solid #e1e1e1;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 0 10px;
  font-family: "Montserrat", sans-serif;
  color: #333333;
  font-weight: 500;
  font-size: 14px;
}
.total-price-form textarea {
  width: 100%;
  height: 170px;
  border: 2px solid #e1e1e1;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 10px 10px;
  font-family: "Montserrat", sans-serif;
  color: #333333;
  font-weight: 500;
  font-size: 14px;
  resize: none;
}
.total-price-form button {
  background-image: -webkit-linear-gradient(
    88deg,
    rgb(41, 102, 170) 0%,
    rgb(60, 161, 228) 100%
  );
  width: 100%;
  height: 50px;
  border-radius: 5px;
  color: #fff;
  border: none;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
.tour-map {
  margin-top: 50px;
  box-shadow: 0 0 10px 0 #00000026;
  border-radius: 8px;
}
.inner-packages-detail-gallery-box {
  margin-top: 20px;
}
.inner-packages-detail-gallery-box h2 {
  font-size: 30px;
  letter-spacing: 0;
  line-height: 50px;
}
.inner-packages-detail-gallery-box img {
  width: 100%;
  height: 115px;
  object-fit: cover;
  border-radius: 8px;
  margin: 10px 0;
}
.inner-packages-detail-gallery-box .col-xl-4.col-lg-4.col-md-4.col-12 {
  padding: 0px 5px;
}

/* Inner Packages Detail Ends */
