@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700;800;900&display=swap");
:root {
  --white: #ffffff;
  --green: #325266;
  --greenF: #254e65;
  --blue: #237bd2;
  --lightBrown: #e98b84;
  --darkBlue: #24315d;
  --navLinks: #00415a;
  --fontColor: #12475e;
  --icons: #001a54;
  --greenD: #8bb4b1;
  --textBrown: #dd8781;
  --black: #373737;
  --blue-gradient: linear-gradient(to right, #080b14, #242d53);
  --poppins-font: "Poppins", sans-serif;
}
/*General links color*/
a {
  color: #24315d;
  text-decoration: none;
  transition: all 0.2s ease;
  outline: none;
}
a:hover, a:focus {
  color: #237bd2;
  text-decoration: none;
  outline: none;
}
body {
  font-family: var(--poppins-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--fontColor);
  background: var(--white);
  line-height: 25px;
}
.container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}
.container {
  max-width: 95%;
}
.container.building {
  width: 95%;
  max-width: 1440px;
  min-width: 960px;
}
@media screen and (max-width: 769px) {
  .container.building {
    width: 98%;
  }
}
hr:not([size]) {
  height: 2px;
}
hr {
  background-color: var(--white);
}
.h-100 {
  height: 100%;
}
.relative {
  position: relative;
}
.btn-primary {
  color: var(--white);
  background-color: var(--icons);
  border-color: var(--icons);
  padding: 9px 25px;
  font-size: 15px;
}
.btn-primary:hover,
.btn-primary:focus {
  color: var(--white);
  background-color: var(--darkBlue);
  border-color: var(--darkBlue);
  outline: 0;
}
.btn-secondary {
  color: var(--white);
  background-color: var(--lightBrown);
  border-color: var(--lightBrown);
  padding: 15px 25px;
  font-size: 15px;
  border-radius: 25px;
  font-weight: 500;
}
.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--white);
  background-color: var(--darkBlue);
  border-color: var(--darkBlue);
  outline: 0;
}
.btn-nav {
  color: var(--greenD);
  background-color: transparent;
  border-color: var(--greenD);
  padding: 9px 18px;
  border-radius: 5px;
  font-weight: 500;
}
.btn-nav:hover,
.btn-nav:focus {
  color: var(--green);
  background-color: transparent;
  border-color: var(--green);
  outline: 0;
}
.navbar {
  padding-top: 12px;
  padding-bottom: 12px;
}
.navbar .navbar-nav .nav-link {
  color: var(--navLinks);
  font-weight: 500;
  font-size: 15px;
  padding-right: 20px;
  padding-left: 20px;
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--navLinks);
}
.dropdown-menu {
  font-size: 14px;
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--navLinks);
}
.top-strip {
  background: var(--green);
  height: 50px;
  color: #f5f5f6;
  padding-top: 10px;
  font-weight: 300;
}
.top-strip.building {
  background: #1f3864;
}
.top-strip a {
  color: var(--textBrown);
  text-decoration: none;
}
.banner-vacationFinder {
  /* background: url(/assets/img/destination/beach-banner-img.png) no-repeat right top; */
  background-size: cover !important;
  height: 625px;
}
.banner-vacationFinder h1 {
  font-size: 65px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0px;
  margin-top: 120px;
}
.banner-vacationFinder h2 {
  font-size: 45px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 90px;
  margin-top: 0px;
}
.search-div {
  background: var(--blue);
}
::-moz-placeholder {
  color: #797878;
  opacity: 1;
}
::placeholder {
  color: #797878;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #797878;
}
::-ms-input-placeholder {
  color: #797878;
}
input[type=text] {
  width: 100%;
  border: 0px solid #aaa;
  border-radius: 4px;
  margin: 8px 0;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
}
input[type=text]:focus {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
}
.inputWithIcon input[type=text] {
  padding-left: 40px;
}
.inputWithIcon {
  position: relative;
}
.inputWithIcon i {
  position: absolute;
  left: 5px;
  top: 20px;
  padding: 9px 8px;
  color: var(--icons);
  transition: 0.3s;
}
.inputWithIcon.whereTo i {
  top: 10px;
  z-index: 1;
}
.inputWithIcon input[type=text]:focus + i {
  color: var(--blue);
}
.inputWithIcon.inputIconBg i {
  background-color: #aaa;
  color: #fff;
  padding: 9px 4px;
  border-radius: 4px 0 0 4px;
}
.inputWithIcon.inputIconBg input[type=text]:focus + i {
  color: #fff;
  background-color: var(--blue);
}
.optgroup-header {
  color: #24315d !important;
  background: #d3e5f8 !important;
  font-size: 11px;
  display: block;
}
.selectize-input {
  padding-left: 40px !important;
}
.selectize-input > .item {
  position: relative !important;
  padding: 0 32px 0 16px !important;
  background: #f0f0f0 !important;
  border: 1px #e0e0e0 solid !important;
  border-radius: 22px !important;
}
#search_form .selectize-input .item {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  white-space: nowrap;
}
#where_to-selectized {
  width: 4px;
  opacity: 0;
  position: absolute;
  left: 0px;
  top: 1px;
  font-weight: 100;
  font-size: 16px;
}
.all-locations {
  margin-top: 40px;
  font-weight: 500;
  color: var(--greenD);
}
.all-locations a {
  color: var(--greenD);
  text-decoration: none;
}
.bg-property {
  background: var(--blue-gradient);
  height: 100px;
  border-radius: 25px 25px 0 0;
  margin-top: -25px;
}
.bg-property.bg-property-custom {
  background: #1f3864;
  height: 50px;
}
.bg-property.bg-property-custom h2 {
  padding-top: 11px;
}
.bg-property h2 {
  font-size: 25px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0px;
  padding-top: 30px;
}
.property-details {
  margin-top: -20px;
  margin-bottom: 60px;
}
.property-details .card {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 0;
  border: 0;
  border-radius: 8px 8px;
}
.card-img {
  position: relative;
}
.card-text {
  position: absolute;
  bottom: -22px;
  color: var(--white);
  left: 40px;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
}
.card-text span {
  font-size: 50px;
  font-weight: 800;
}
.property-details .card-img img {
  border-radius: 8px 8px 0 0;
}
.property-details .card-body {
  padding: 45px 40px;
  min-height: 320px;
  position: relative;
}
.property-details .card-body h2 {
  color: var(--green);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}
.property-details .card-body .tags {
  border: 1px #ebebeb solid;
  border-radius: 20px;
  padding: 8px 15px;
  margin-bottom: 5px;
  clear: both;
  width: -moz-fit-content;
  width: fit-content;
}
.property-details .card-body h3 {
  color: var(--fontColor);
  font-size: 18px;
  font-weight: 400;
  margin-top: 18px;
  margin-bottom: 20px;
}
.property-details .card-body h4 {
  color: var(--fontColor);
  font-size: 14px;
  font-weight: 400;
}
.property-details .card-body h4 span {
  color: var(--greenD);
  font-size: 14px;
  font-weight: 600;
}
.property-details .card-body h5 {
  color: var(--greenF);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: 35px;
}
.property-details .card-body p span {
  color: var(--greenF);
  font-weight: 400;
  margin-right: 15px;
}
.feat_props_link {
  text-decoration: none;
}
.all-details {
  color: var(--greenD);
  position: absolute;
  bottom: 30px;
}
.all-details a {
  color: var(--greenD);
  text-decoration: none;
}
.map-wrapper {
  min-height: 425px;
}
.map-wrapper .mapboxgl-map {
  overflow: initial;
}
.upgrade {
  margin-bottom: 55px;
}
.upgrade h2 {
  color: var(--green);
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
}
.upgrade h3 {
  color: var(--green);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 60px;
}
.amenities-div h3 {
  margin-bottom: 12px;
}
.collection-item {
  position: relative;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px 8px;
  margin-bottom: 25px;
}
.collection-item img {
  border-radius: 8px 8px;
}
.text-c {
  position: absolute;
  z-index: 100;
  left: 30px;
  top: 50%;
  right: 15%;
  color: var(--white);
  font-size: 23px;
  font-weight: 500;
  line-height: 35px;
  transform: translate(5%, -50%);
}
.all-collections {
  margin-top: 0px;
  font-weight: 500;
  color: var(--greenD);
}
.all-collections a {
  color: var(--greenD);
  text-decoration: none;
}
.informations {
  background: url(/assets/img/destination/vacation-finder-guarantee.png) no-repeat center top;
  background-size: cover;
  min-height: 430px;
  padding: 60px 0;
}
.informations h3 {
  color: var(--white);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 40px;
  margin-top: 20px;
  line-height: 45px;
}
.trustpilot {
  padding: 65px 0;
  background: var(--greenD);
}
.trustpilot .card-body {
  padding: 35px;
}
.trustpilot h3 {
  color: var(--navLinks);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 20px;
}
.trustpilot h4 {
  color: var(--navLinks);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 20px;
}
.t-learn p a {
  color: var(--greenF);
  text-decoration: none;
}
.t-learn p a span {
  text-transform: uppercase;
  font-weight: 600;
}
.thingstodo {
  margin-bottom: 65px;
  text-align: center;
  background: url(/assets/img/destination/thingstodo-vacation-finder.png) no-repeat center top;
  background-size: cover;
  min-height: 600px;
  padding: 70px 0;
}
.thingstodo h2 {
  color: var(--white);
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}
.thingstodo h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
}
.thingstodo .tag {
  background: var(--green);
  color: var(--white);
  padding: 9px 19px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-vacationFinder {
  background: var(--white);
  line-height: 20px;
}
.footer-vacationFinder h3 {
  font-size: 17px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 45px;
  margin-top: 0;
}
.footer-vacationFinder a {
  color: var(--black);
  text-decoration: none;
}
.footer-below {
  margin-top: 80px;
  margin-bottom: 35px;
}
.footer-text {
  color: #555 !important;
}
.footer-text a {
  color: #24315d !important;
}
@media screen and (max-width: 991px) {
  .navbar-dark .navbar-toggler-icon {
    background-image: url(/assets/img/destination/menu.svg);
  }
  .text-c {
    font-size: 17px;
    line-height: 28px;
    right: 12%;
  }
  .informations h3 {
    font-size: 29px;
    line-height: 43px;
  }
  .banner-vacationFinder h1 {
    font-size: 55px;
  }
}
@media screen and (max-width: 767px) {
  .banner-vacationFinder .pe-0 {
    padding-right: 10px !important;
    padding-left: 10px;
  }
  .banner-vacationFinder .first-input {
    height: 41px !important;
    margin-top: 16px !important;
  }
  .banner-vacationFinder .second-input {
    margin-top: 5px !important;
  }
  .banner-vacationFinder {
    height: auto;
  }
  .property-details .card {
    margin-bottom: 20px;
  }
  .navbar-nav .dropdown-menu {
    border: 0px solid rgba(0, 0, 0, 0.15);
  }
  .top-strip .text-end {
    text-align: center !important;
  }
  .all-locations {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .search-div .col.pe-0 {
    flex: 0 0 auto;
    width: 100%;
  }
  .search-div .col.i-guest, .search-div .col-auto.i-btn {
    flex: 0 0 auto;
    width: 100%;
  }
  .i-btn .btn-primary {
    width: 100%;
    margin-bottom: 10px;
  }
  .footer-vacationFinder h3 {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .footer-below {
    margin-top: 35px;
    margin-bottom: 15px;
  }
  .thingstodo {
    margin-bottom: 30px;
  }
  .tp-img {
    text-align: center;
    margin-bottom: 20px;
  }
  .trustpilot .card {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 620px) {
  .banner-vacationFinder h1 {
    font-size: 45px;
  }
  .banner-vacationFinder h2 {
    font-size: 35px;
    margin-top: 14px;
  }
  .thingstodo .tag {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .upgrade h2 {
    font-size: 30px;
  }
  .banner-vacationFinder h1 {
    margin-top: 75px;
  }
  .text-c {
    font-size: 20px;
    right: 15%;
  }
}
@media screen and (max-width: 500px) {
  .banner-vacationFinder h1 {
    font-size: 40px;
  }
  .banner-vacationFinder h2 {
    font-size: 28px;
    margin-bottom: 61px;
  }
}
