/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --brown: #BA8E75;
  --gray: #666;
  --gray-light: #979797;
  --gray-light1: #949494;
  --black: #212121;
  --white: #fff;
  --orange: #EC694B;
  --orange-light: #e36846;
  --light-green: #9ABDAB;
  --maroon: #c5524f;
  --light-pink: #f2dcdc;
  --coral:#f3a18b;
  --font-80: 80px;
  --font-75: 75px;
  --font-70: 70px;
  --font-50: 50px;
  --font-45: 45px;
  --font-40: 40px;
  --font-36: 36px;
  --font-30: 30px;
  --font-28: 28px;
  --font-25: 25px;
  --font-24: 24px;
  --font-22: 22px;
  --font-20: 20px;
  --font-18: 18px;
  --font-16: 16px;
  --font-15: 15px;
  --font-14: 14px;
  --font-13: 13px;
  --font-12: 12px;
  --font-8: 8px;
  --fontweight-300: 300;
  --fontweight-400: 400;
  --fontweight-500: 500;
  --fontweight-600: 600;
  --fontweight-700: 700;
  --fontweight-900: 900;
  --font-family-body: "Nunito Sans", sans-serif;
}


body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-family-body);
  font-optical-sizing: auto;
  font-weight: var(--fontweight-400);
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
  overflow-x: hidden;
  font-size: var(--font-18);
}

a {
  color: #212121;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #212121;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {

  margin: 0 0 20px 0;
  padding: 0;
}

h2 {
  font-size: var(--font-40);
  font-weight: var(--fontweight-700);
  text-transform: none;
  margin-bottom: 20px;
}

h2 span {
  color: var(--orange);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(45deg, var(--gray), var(--brown));
  color: var(--white);
  padding: 2px 20px 8px 20px;
  font-size: var(--font-16);
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
}

.back-to-top:focus {
  background: linear-gradient(45deg, var(--gray), var(--brown));
  color: var(--white);
  outline: none;
}

.back-to-top:hover {
  background: var(--brown);
  color: var(--white);
}



@media (min-width: 1200px) {
  .container {
    max-width: 1580px;
  }
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 145px;
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: var(--black);
  display: flex;
  align-items: center;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: var(--font-36);
  margin: -4px 0 0 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
  font-weight: var(--fontweight-300);
  letter-spacing: 3px;
  text-transform: none;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: var(--white);
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: var();
    margin-top: 0;
  }

  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: var(--black);
  padding: 20px 0;
  height: 92px;
  transition: all 0.5s;
  position: fixed;
  box-shadow: 1px 1px 2px #ddd;
}

.top-quick-menu {
  background: #F5F5F5;
  display: flex;
  align-items: center;
  height: 70px;
}

.quick-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-text {
  font-size: var(--font-15);
}

.right-section ul {
  display: flex;
  align-items: center;
  font-size: var(--font-15);
  margin: 0;
  padding: 0;
}

.right-section ul li {
  list-style: none;
  padding: 0 20px;
  border-right: 1px solid var(--black);
}

.right-section ul li:last-child {
  border-right: 0;
  background: var(--black);
  border-radius: 5px;
  color: var(--white);
  padding: 5px 10px;
}

.br-0 {
  border-right: 0 !important;
}

.right-section ul li:first-child a {
  color: var(--black);
  text-decoration: underline;
}

.right-section ul li:first-child a:hover {
  text-decoration: none;
}

.right-section ul li:last-child a {
  color: var(--white);
  text-decoration: none;

}

.right-section ul li:last-child a:hover {
  color: #dddddd;
}

.right-section ul li a {
  color: var(--black);
}

.top-logo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-search-bar {
  display: flex;
}

.btn-brown {
  background: var(--brown);
  padding: 5px 15px;
  font-size: var(--font-15);
  font-weight: var(--fontweight-600);
  color: var(--white);
  border-radius: 5px;
  line-height: 30px;
}

.btn-black {
  background: var(--black);
  padding: 5px 15px;
  font-size: var(--font-15);
  font-weight: var(--fontweight-600);
  color: var(--white);
  border-radius: 5px;
  line-height: 30px;
}

.btn-brown:hover , .btn-black:hover{
  background: var(--white);
  color: var(--black);
}


.search-input {
  width: 540px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 50px;
  height: 40px;
}

.search-input input {
  width: 100%;
  font-size: var(--font-15);
  color: #7C7C7C;
  height: 100%;
  border-radius: 5px;
  background: var(--white) url(../img/img/icon-search.png) 30px center no-repeat;
  padding-left: 55px;
  border: 0;
  padding-right: 30px;

}

.menu-burger {
  margin-left: 50px;
  display: flex;
  align-items: center;
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu>li {
  float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
  display: block;
}

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

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
  display: none;
}



/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: var(--white);
  font-weight: var(--fontweight-400);
  font-size: var(--font-14);
  outline: none;
}

.nav-menu>li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: var(--white);
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: var(--font-13);
  text-transform: none;
}

.nav-menu ul li:hover>a {
  color: #1dc8cd;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
button#mobile-nav-toggle {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 9999 !important;
  background: none;
  border: 0;
}

#mobile-nav-toggle i {
  color: var(--white);
  font-size: 30px;
}



/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(186, 142, 117, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
  border-bottom: 1px solid #9e775d;
}

#mobile-nav ul li a {
  color: var(--white);
  font-size: var(--font-16);
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: var(--white);
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: var(--white);
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #391802;
}

#mobile-nav ul .menu-item-active {
  color: #391802;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(65, 49, 39, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: var(--white);
  z-index: 100;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: var(--font-40);
  color: var(--black);
  font-weight: var(--fontweight-700);
  text-transform: none;
  margin-bottom: 0;
}

.section-header .section-description {
  font-size: var(--font-25);
  color: var(--black);
  margin-bottom: 0;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #1dc8cd;
  background: linear-gradient(0deg, #1dc8cd 0%, #55fabe 100%);
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #eff5f5;
}


#search-bar {
  background: var(--black);
  padding: 100px 0;
  margin-top: 0;
  border-top: 1px solid #302828;
}

.location-meet-bar {
  background: var(--white);
  border-radius: 50px;
  display: flex;
  padding: 10px;
  justify-content: space-between;
  width: 1300px;
  margin: 0 auto;
}

.location,
.meeting-type {
  display: flex;
  width: 60%;
  align-items: center;
  padding-right: 50px;
}

.meeting-type {
  width: 40%;
  border-left: 1px solid #ddd;
  padding-left: 50px;
  padding-right: 50px;
}

.location span,
.meeting-type span {
  margin-right: 10px;

}

.location label,
.meeting-type label {
  display: block;
  margin-bottom: 0;
  font-size: var(--font-16);
  font-weight: var(--fontweight-700);
  color: #1A1A1A;
  line-height: 16px;
}

.location input,
.meeting-type select {
  color: #8C8C8C;
  font-size: var(--font-16);
  border: 0;
  width: 100%;
  padding: 0;
}

input:focus {
  outline: none;
}

.location div,
.meeting-type div {
  width: 100%;
}

.ui-menu-item-wrapper {
  display: flex;
  align-items: center;
  font-size: var(--font-15);
}

.ui-menu-item-wrapper img {
  margin-right: 10px;
}

.search-btn1 {
  background: var(--orange);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


#embed-video {
  padding: 100px 0;
}

.embed-youtube-video {
  height: 600px;
  width: 1120px;
  margin: 0 auto;
}

#CTA {
  padding: 60px 0 0;
  background: var(--black);
}

#CTA .call-img img {
  left: 60px;
}

#CTA .call-img:after {
  left: 0;
  background: var(--brown);
}

#CTA2 .cta-details h2 span {
  color: var(--orange);
}

.cta-details {
  margin-top: 30px;
}

.cta-details h2 {
  line-height: 50px;
  color: var(--white);
  margin-bottom: 30px;
}

.cta-details h2 span {
  color: var(--brown);
}

.cta-details p {
  font-size: var(--font-18);
  // color: var(--white);
}

.cta-info {
  margin-top: 40px;
}

.cta-info p {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.cta-info p span {
  margin-right: 10px;
}

.cta-info p a {
  color: var(--white);
  text-decoration: underline;
}

.cta-info p a:hover {
  text-decoration: none;
}

.cta-name {
  border-left: 5px solid var(--white);
  padding-left: 15px;
  font-size: var(--font-18);
  line-height: 20px;
  color: var(--white);
  margin: 50px 0 60px;
}

.cta-name span {
  font-size: var(--font-25);
  line-height: 30px;
  font-weight: var(--fontweight-700);
  display: block;
}

.cta-btn {
  background: var(--orange);
  padding: 14px 30px;
  border-radius: 5px;
  font-size: var(--font-22);
  font-weight: var(--fontweight-700);
  color: var(--white);
  text-transform: none;
  display: inline-flex;
  align-items: center;
  line-height: 20px;
  margin : 0 auto;
}

.cta-btn:hover {
  background: var(--brown);
  color: var(--white);
}

.cta-btn img {
  margin-left: 10px;
  margin-top: -2px;
}

.cta-btn svg{ transform: rotate(-45deg); margin-left: 5px;}

.cta-btn.black {
  background: var(--black);
}

#venue-slider {
  padding: 100px 0;
}

.venue-slider {
  margin-top: 40px;
}

.venue-slider .slick-slide {
  display: flex !important;
  justify-content: center;
}

.venue-item {padding: 0 20px}

.venue-item .img {
  margin-bottom: 20px;border-radius: 10px; overflow: hidden;
}

.venue-item .img img {
  max-width: 100%;
}

.venue-item .name {
  font-size: var(--font-22);
  font-weight: var(--fontweight-700);
  margin: 0;
  min-height:55px;
}

.venue-info {
  max-width: 350px;
}

.venue-item .address {
  font-size: var(--font-18);
  margin-bottom: 10px;
  margin-top: 5px;
}

.venue-item .rating {
  font-size: var(--font-15);
  margin-bottom: 10px;
}

.venue-item .rating .number {
  background: var(--black);
  font-size: var(--font-18);
  color: var(--white);
  padding: 5px;
  border-radius: 5px;
  margin-right: 5px;
  display: inline-block;

}

.venue-item .rating .number-review {
  color: #949494;
  margin-left: 10px;
}

.venue-item .price {
  margin-bottom: 10px;
  color: #949494;
  font-size: var(--font-15);
}

.venue-item .price span {
  font-size: var(--font-18);
  font-weight: var(--fontweight-600);
  color: var(--black);
}

.venue-item .book-btn {
  background: var(--orange);
  padding: 12px 20px;
  color: var(--white);
  font-size: var(--font-18);
  font-weight: var(--fontweight-400);
  border-radius: 5px;
  display: inline-block;
}

.venue-item .book-btn:hover {
  background: #fea190;
}


.venue-item .features {
  margin: 30px 0 0 0;
  padding: 0;
}

.venue-item .features li {
  margin: 5px 0;
  padding: 0 0 0 25px;
  list-style: none;
  color: #949494;
  font-size: var(--font-16);
  line-height: 20px;
  background: url(../img/img/dot.png) left top 3px no-repeat;
}

.venue-slider .slick-prev {
  background: url(../img/img/slider-arrow-left.png) left center no-repeat;
  width: 35px;
  height: 35px;
  left: -25px;
}

.venue-slider .slick-prev::before,
.venue-slider .slick-next:before {
  display: none;
}

.venue-slider .slick-next {
  background: url(../img/img/slider-arrow-right.png) left center no-repeat;
  width: 35px;
  height: 35px;
  right: -25px;
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0;
  overflow: hidden;
}

#about .about-img {
  height: 510px;
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content .h2 {
  color: #333;
  font-weight: var(--fontweight-300);
  font-size: var(--font-24);
}

#about .content h3 {
  color: #777;
  font-weight: var(--fontweight-300);
  font-size: var(--font-24);
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: var(--font-20);
  padding-right: 4px;
  color: #1dc8cd;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}



/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

#contact .contact-about h3 {
  margin-bottom: 50px;
}

#contact .contact-about p {
  font-size: var(--font-15);
  line-height: 24px;
  color: var(--white);
}

.call-us {
  font-size: var(--font-18) !important;
  font-weight: var(--fontweight-600);
}

.call-us a {
  color: var(--white);
  text-decoration: underline;
}

.call-us a:hover {
  color: var(--brown);
  text-decoration: none;
}

#contact .info {
  margin-bottom: 100px;
}

#contact .info div {
  display: flex;
  align-items: self-end;
  margin-bottom: 5px;
}



#contact .info p {
  margin: 0 0 0 20px;
  color: var(--white);
}

#contact h4 {
  font-size: var(--font-18);
  font-weight: var(--fontweight-600);
  margin-bottom: 10px;
}


.get-update {
  margin-bottom: 20px;
}

#contact ul {
  margin: 0 0 50px;
  padding: 0;
}

.get-update h3 {
  font-size: var(--font-20);
  font-weight: var(--fontweight-400);
  margin-bottom: 10px;
}

.get-update input {
  font-size: var(--font-15);
  height: 60px;
  background: var(--white);
  border-radius: 5px;
  border: 0;
  padding: 5px 30px;
  width: 100%;
  max-width: 450px;
}

.get-update button {
  background: var(--brown);
  color: var(--white);
  height: 60px;
  border-radius: 5px;
  border: 0;
  padding: 5px 40px;
  margin-left: 10px;

}

.get-update #contact ul {
  margin: 0 0 40px;
  padding: 0;
}

#contact ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#contact ul li a {
  color: var(--white);
  font-size: var(--font-15);
  font-weight: var(--fontweight-400);
}

#contact ul li a:hover {
  color: var(--brown);
  text-decoration: underline;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.cr-border {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px 0;
}

#footer {
  background: var(--black);
  padding: 0;
  color: var(--white);
  font-size: var(--font-12);
}

#footer .credits {
  font-size: var(--font-13);
  color: #888;
}

#footer .footer-links a {
  color: var(--white);
  padding: 0 10px;
  border-right: 1px solid var(--white);
}

#footer .footer-links a:last-child {
  border-right: 0;
  padding-right: 0;
}

#footer .footer-links a:hover {
  color: var(--brown);
}


.section-pad {
  padding: 90px 0;
}

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


/*--------------------------------------------------------------
# CTA RIGHT IMAGE Section
--------------------------------------------------------------*/

#cta-right-img .description h2 {
  color: var(--black);
  margin-bottom: 5px;
}

#cta-right-img .description h3 {
  font-size: var(--font-30);
  font-weight: var(--fontweight-600);
  margin-bottom: 60px;
}

#cta-right-img .description p {
  margin-bottom: 50px;
}

#cta-right-img .description p span {
  font-weight: var(--fontweight-700);
}

#cta-right-img .description .cta-btn {
  background: var(--light-green);
}

#cta-right-img .description .cta-btn:hover {
  background: #6C8E7D;
}


/*--------------------------------------------------------------
# BENEFITS Section
--------------------------------------------------------------*/

#benefits h2 {
  margin-bottom: 60px;
}

#benefits h2 span {
  color: var(--orange);
}

#benefits .p-last {
  margin-bottom: 10px;
}

.continue-read-link {
  font-size: var(--font-14);
  color: var(--black);
  text-decoration: underline;
}

.continue-read-link:hover {
  text-decoration: none;
  color: var(--orange);
}

#benefits .cta-btn {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# WE HELP YOU Section
--------------------------------------------------------------*/
#we-help-you h2 {
  text-align: center;
  margin-bottom: 10px;
}

#we-help-you h3 {
  text-align: center;
  font-size: var(--font-25);
}

#we-help-you .step-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 20px auto;
}

#we-help-you .step-diagram .icon-img-text,
#we-help-you .step-diagram .icon-arrow {
  width: 20%;
  text-align: center;
}

#we-help-you .step-diagram .icon-img-text span {
  display: block;
  font-size: var(--font-36);
  font-weight: var(--fontweight-600);
  margin-top: 20px;
}

.plan-online-call {
  margin-top: 20px;
  padding: 0;
  position: relative;
}

.plan-online-call::before {
  background: var(--light-green);
  position: absolute;
  bottom: 0;
  height: 75%;
  width: 100%;
  left: 0;
  content: '';
}

.plan-online-call .check-list {
  margin: 0;
  padding: 0;
}

.plan-online-call .check-list li {
  margin: 20px 0;
  padding: 0 0 0 40px;
  list-style: none;
  position: relative;
  color: var(--white);
}

.plan-online-call .check-list li:before {
  background: url(../img/img/dot-white.png) left top no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
}

.plan-online-call .description {
  position: absolute;
  bottom: 70px;
}

.plan-online-call .cta-btn {
  background: var(--white);
  color: var(--black);
}

.plan-online-call .cta-btn:hover {
  background: #ddd;
  color: var(--black);
}

.call-img {
  position: relative;
}

.call-img img {
  position: relative;
  z-index: 1;
}

.call-img:after {
  position: absolute;
  left: 27%;
  bottom: 94px;
  width: 444px;
  height: 422px;
  background: var(--white);
  border-radius: 50px 0 0 0;
  content: '';
}

#testimonial-slider {
  background: var(--black);
  color: var(--white);
  padding: 10px 0;
}

.feedback-status {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 90%;
}

.feedback-status li {
  margin: 0 0 80px;
  padding: 0;
  list-style: none;
  width: 33.33%;
}

.feedback-status li p {
  margin: 0 0 10px;
  font-size: var(--font-36);
  line-height: 35px;
  font-weight: var(--fontweight-700);
}

.feedback-status li span {}

.testimonial-item {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 45px 30px 30px;
  position: relative;
  transform: none;
  /* Reset transform for child elements */
  width: 100%;
  /* Ensure child elements are not affected */
}



.testimonial-item .details {
  padding-bottom: 20px;
  border-bottom: 1px solid #979797;
}

.quote {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 45px !important;
  height: 36px !important;
}

.testimonial-item .details p.title {
  font-size: var(--font-22);
  font-weight: var(--fontweight-700);
  color: var(--brown);
  margin: 0 0 10px;

}

.testimonial-item .details p.desc {
  font-size: var(--font-15);
  color: var(--black);
  margin-bottom: 0;
}

.user-info {
  display: flex;
  color: var(--black);
  padding-top: 20px;
}

.user-info .user-img {
  width: 80px;
  height: 80px;
  border-radius: 80px;
}

.user-info .user-name span {
  display: block;
  font-size: var(--font-16);
  font-weight: var(--fontweight-700);
}

.user-info .user-name {
  font-size: var(--font-12);
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 20px;
}







#testimonial-slider.white-bg {
  background: var(--white);
  color: var(--black);
}

#testimonial-slider.white-bg .testimonial-item {
  background: var(--black);
  color: var(--white);
}

#testimonial-slider.white-bg .testimonial-item .details p.title {
  color: var(--white);
}

#testimonial-slider.white-bg .testimonial-item .details p.desc {
  color: var(--white);
}

#testimonial-slider.white-bg .user-info {
  justify-content: space-between;
  color: var(--white);
}

#testimonial-slider.white-bg .user-info .user-img {
  width: auto;
  height: auto;
  border-radius: inherit;
}

#testimonial-slider.white-bg .allinone_carousel.charming .contentHolderUnit {
  background: var(--black);
}

#testimonial-slider.white-bg .allinone_carousel.charming .bottomNavButtonON {
  background: #E8E8E8;
}

#CTA2 {
  padding: 0;
  background: var(--black);
}

#CTA2 .cta-details h3 span {
  color: var(--orange);
}

#CTA2 .call-img:after {
  background: var(--brown);
}

#CTA2 .cta-details {
  margin-top: 0;
}

#CTA2 .call-img {
  margin-top: 30px;
}

#booking-in-fewclicks {
  padding: 60px 0;
  max-width: 1000px;
  margin: 0 auto;
}

#booking-in-fewclicks h2 {
  font-size: var(--font-40);
  line-height: 50px;
  font-weight: var(--fontweight-700);
  text-align: center;
  margin-bottom: 30px;
}

.cal-picker {
  display: flex;
  justify-content: space-between;
}

#booking-in-fewclicks .ui-datepicker {
  width: 54em;
  padding: 10px;
}

#booking-in-fewclicks .ui-datepicker td span,
#booking-in-fewclicks .ui-datepicker td a {
  padding: .5em .2em;
  text-align: center;
}

#booking-in-fewclicks .ui-state-active {
  background: #aaaaaa;
  border: 1px solid #aaaaaa;
}

#booking-in-fewclicks #time-slots {
  margin: 20px 0;
}

#booking-in-fewclicks #slots-container {
  display: flex;
  flex-wrap: wrap;
}

#booking-in-fewclicks #slots-container label {
  background: #e7e7e7;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: var(--font-16);
  margin: 0 9px 10px 0;
}

#book-meetings {
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 0;
  margin: 0;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
}

#book-meetings input {
  width: 100%;
  border-radius: 25px 0 0 25px;
  border: 0;
  background: var(--white);
  padding: 0 20px;
}

#book-meetings button,
#book-meetings button:focus {
  width: 20%;
  border-radius: 0 25px 25px 0;
  background: #ddd;
  border: 0;
  padding: 5px 20px;
  border: 0;
}

#benefits.type1 h2 {
  margin-bottom: 30px;
}

#benefits.type1 .whitepaper-title {
  font-size: var(--font-24);
  font-weight: var(--fontweight-700);
  border-bottom: 7px solid #F5F5F5;
  padding-bottom: 5px;
}

.benefits-list {
  margin: 0;
  padding: 0;
}

.benefits-list li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

#hero-banner {
  background: var(--black);
  text-align: right;
}

.hero-desc {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 55%;
  text-align: left;
  color: var(--white);
  transform: translateY(-50%);
}

.hero-desc h2 {
  line-height: 50px;
  color: var(--white);
  background: var(--black); padding: 20px 0;
}

.hero-desc h2 span {
  color: var(--orange);
}

.hero-desc p {
  width: 50%;
}

.hero-btn .cta-btn {
  margin-left: 10px;
}

.hero-btn .cta-btn-white {
  background: var(--white);
  color: var(--black);
  padding: 7px 30px;
  border-radius: 5px;
  font-size: var(--font-22);
  font-weight: var(--fontweight-700);
  text-transform: none;
  display: inline-flex;
  align-items: center;
  line-height: 20px;
}

.hero-btn .cta-btn-white img {
  margin-left: 10px;
  margin-top: -2px;
}

#how-you-meet {
  background: var(--black);
  color: var(--white);
}

#how-you-meet .description {
  padding-left: 100px;
}

#how-you-meet .description h2 {
  line-height: 50px;
  color: var(--white);
  margin-bottom: 10px;
}

#how-you-meet .description h4 {
  margin-bottom: 40px;
}

#how-you-meet .description h2 span {
  color: var(--brown);
}


#ask-us-anything {
  background: var(--white);
  color: var(--black);
  padding-top: 70px;
}

#ask-us-anything .call-img img {
  left: 111px; position: absolute; bottom: 0;
}

#ask-us-anything .call-img:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 555px;
  height: 528px;
  background: var(--brown);
  border-radius: 50px 0 0 0;
  content: '';
}

#ask-us-anything .cta-details h2 {
  color: var(--black);
}

#ask-us-anything .cta-details h2 span {
  color: var(--orange);
}

#ask-us-anything .cta-details p {
  color: var(--black);
}

#ask-us-anything .cta-name {
  border-left: 5px solid var(--black);
  color: var(--black);
}

#ask-us-anything .row {
  margin-bottom: 20px;
}

#ask-us-anything .contact-form {
  width: 100%;
}

#ask-us-anything .cta-details{ width: 100%;}
#ask-us-anything .contact-form iframe { height: 790px !important;}

.country {
  display: flex;
}

.country select {
  border-radius: .25rem 0 0 .25rem;
  width: 30%;
}

.country input {
  border-radius: 0 .25rem .25rem 0;
  border-left: 0;
}

#ask-us-anything .cta-btn {
  margin-top: 20px;
}

#book-your-venue {
  background: var(--black);
  padding: 60px 0;
  color: var(--white);
}

.book-your-venue-search {
  background: #fff;
  border-radius: 32px;
  padding: 30px;
  color: var(--black);
  max-width: 1120px;
  margin: 0 auto;
}

.book-your-venue-search h2 {
  color: var(--brown);
  text-transform: none;
}


.book-your-venue-search .select-date-time p {
  display: flex;
  font-size: var(--font-25);
}

.book-your-venue-search .select-date-time p input {
  width: 100%;
  font-size: var(--font-16);
  color: var(--gray);
}

.book-your-venue-search .select-date-time p span:nth-child(1) {
  width: 25%;
}

.book-your-venue-search .select-date-time p span:nth-child(2) {
  width: 20%;

}

.book-your-venue-search .select-date-time p span:nth-child(3) {
  width: 10%;
  text-align: center;
}

.book-your-venue-search .select-date-time p span:nth-child(4) {
  width: 10%;
}

.book-your-venue-search .select-date-time p span:nth-child(5) {
  width: 10%;
  text-align: center;
}

.book-your-venue-search .select-date-time p span:nth-child(6) {
  width: 10%;
  text-align: center;
}

.book-your-venue-search .select-date-time p span:nth-child(7) {
  width: 10%;
  text-align: center;
}

.book-your-venue-search .select-date-time p span:nth-child(8) {
  width: 10%;
  text-align: center;
}


.book-your-venue-search .select-date-time p input {
  border: 0;
  border-bottom: 1px solid #000;
  padding: 0 10px;
  text-align: center;
}

.inspiration-text {
  font-size: var(--font-40);
  font-weight: var(--fontweight-700);
  color: var(--brown);
  text-align: center;
  padding: 50px 0;
}

#book-your-venue .location-meet-bar {
  width: 1120px;
}

.venue-search-box {
  display: flex;
  justify-content: space-between;
  width: 1120px;
  margin: 60px auto;
}

.venue-search-box .book-box {
  width: 300px;
  height: 300px;
  border-radius: 32px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.venue-search-box .book-box.orange {
  background: var(--orange);
}

.venue-search-box .book-box.green {
  background: var(--light-green);
}

.venue-search-box .book-box.brown {
  background: var(--brown);
}

.venue-search-box .book-box:before {
  position: absolute;
  left: -50px;
  top: -70px;
  width: 255px;
  height: 255px;
  border-radius: 100%;
  content: '';
  background: rgba(255, 255, 255, 0.2);
}

.venue-search-box .book-box:after {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 118px;
  height: 118px;
  border-radius: 100%;
  content: '';
  background: rgba(255, 255, 255, 0.2);
}

.venue-search-box .book-box .book-details .number {
  font-size: var(--font-80);
  color: var(--white);
  font-weight: var(--fontweight-900);
  margin: 0;
  line-height: 80px;
}

.venue-search-box .book-box .book-details .desc {
  font-size: var(--font-25);
  color: var(--white);
  line-height: 30px;
}

#dream-destination {}

.dream-box {
  background: #000 url(../img/img/dream-destination-bg.png) right bottom no-repeat;
  width: 750px;
  height: 750px;
  border-radius: 10px;
  padding: 70px;
  color: var(--white);
  display: flex;
  align-items: center;
}


.dream-box p {
  font-size: var(--font-25);
}

.destinations-place {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  height: 100%;
}

.destinations-place .places {
  width: 350px;
  height: 350px;
  font-size: var(--font-45);
  color: var(--white);
  font-weight: var(--fontweight-700);
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-left: 30px;
  margin-bottom: 30px;
}

.destinations-place .places:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.destinations-place .places:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  content: '';
}

.destinations-place .places span {
  position: relative;
  z-index: 10;
}

.amsterdam {
  background: url(../img/img/amsterdam.png) left top no-repeat;
}

.utrecht {
  background: url(../img/img/utrecht.png) left top no-repeat;
}

.rotterdam {
  background: url(../img/img/rotterdam.png) left top no-repeat;
}

.sweden {
  background: url(../img/img/sweden.png) left top no-repeat;
}

#meeting-conference-event {
  background: var(--orange-light) url(../img/img/element1.png) left bottom no-repeat;
  height: 550px;
  padding-top: 80px;
  position: relative;
  margin-bottom: 240px;
}

#meeting-conference-event:after {
  position: absolute;
  right: 15%;
  bottom: -60px;
  background: url(../img/img/element2.png) left bottom no-repeat;
  content: '';
  width: 564px;
  height: 564px;
}

.meeting-title {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.meeting-title div {
  width: 60%;
}

.meeting-title h2 {
  color: var(--white);
}

.meeting-img-cnt {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.meeting-img-cnt .img-box {

  position: relative;
  padding: 0;


}

.meeting-img-cnt .img-box img {
  width: 100%;
  height: 100%;
}

.meeting-img-cnt .img-box span:first-child {
  width: 400px;
  height: 400px;
  overflow: hidden;
  display: block;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 0px;
  border-radius: 20px;
}

.meeting-img-cnt .img-box span:nth-child(2) {
  color: var(--white);
  font-size: var(--font-30);
  font-weight: var(--fontweight-700);
  text-align: center;
  position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;    text-shadow: 3px 1px #000;
}

#ready-to-book {
  background: var(--black);
  color: var(--white);
}

#ready-to-book .book-title {
  margin-bottom: 50px;
  text-align: center;
}

#ready-to-book .book-title h2 {
  margin-bottom: 10px;
}

#ready-to-book .book-title h5 {
  font-size: var(--font-25);
  font-weight: var(--fontweight-400);
}

#ready-to-book .book-title h2 span {
  color: var(--brown);
}

#ready-to-book .book-title h5 {}

.booking-steps {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}



.booking-steps .step-name span {
  display: block;
  color: var(--white);
  font-size: var(--font-30);
  font-weight: var(--fontweight-700);
  text-align: center;
  margin-top: 20px;
}

.booking-steps .step-desc {
  margin: 0;
  padding: 0;
  width: 210px;
}

.booking-steps .step-desc ul {
  margin: 0;
  padding: 0;
}

.booking-steps .step-desc ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: var(--font-25);
}

.booking-steps .step-desc ul li.list-title {
  color: var(--brown);
  font-size: var(--font-25);
  font-weight: var(--fontweight-600);
  margin-bottom: 10px;
}

#client-logos {
  max-width: 1320px;
  margin: 0 auto;
}

#client-logos h2 {
  margin-bottom: 30px;
  text-align: center;
}

.all-client-logo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.all-client-logo .logo-item {
  width: 25%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.all-client-logo .logo-item img {
  filter: grayscale(100);
  transition: all .5s;
}

.all-client-logo .logo-item:hover img {
  filter: grayscale(0);
}

#partners {
  background: #FAF6F1;
  padding: 60px;
  text-align: center;
}

#partners .container {
  max-width: 1420px;
}

#partners h2 {
  text-align: center;
}

#partners h2 span {
  color: var(--orange);
}

#partners p {
  font-size: var(--font-25);
}


#vision {
  background: var(--black);
  padding: 20px 0 0 0;
  color: var(--white);
}

#vision h2 {
  margin-bottom: 30px;
}

#vision p {
  margin-bottom: 50px;
}

#vision .call-img img {
  left: 130px;
}

#vision .call-img:after {
  left: auto;
  bottom: 0;
  width: 351px;
  height: 334px;
  background: var(--brown);
  border-radius: 0 100px 0 0;
  content: '';
  right: 15px;
}

.benefits-dot-list {
  margin: 0 0 0 20px;
  padding: 0;
}

.benefits-dot-list li {
  margin: 0;
  padding: 0;
  list-style: disc;
}

#benefits.section-pad.type2 {
  padding: 60px 0;
}

#about-us {
  background: var(--black) url(../img/img/about-o.png) 5% bottom no-repeat;
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 100px;
}

#about-us h2 {
  border-top: 4px solid var(--orange);
  display: inline-block;
  padding-top: 10px;
  margin-bottom: 50px;
}

.about-images {
  display: flex;
  justify-content: center;
}

#about-us .description {
  padding-right: 50px;
}

.about-img1,
.about-img2 {
  width: 301px;
  text-align: center;
  position: relative;
  margin: 0 30px;
}

.about-img1 img,
.about-img2 img {
  position: relative;
  z-index: 1;
}

.about-img1:after {
  width: 301px;
  height: 366px;
  border-radius: 100px 0 0 0;
  background: var(--brown);
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-img2:after {
  width: 272px;
  height: 375px;
  border-radius: 100px 0 0 0;
  background: var(--orange);
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
}

#steps-to-connect {
  background: var(--white);
}

#steps-to-connect .steps {
  display: flex;
  justify-content: space-between;
}

#steps-to-connect .steps .step {
  max-width: 480px;
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display:flex;
  flex-direction:column;
}

#steps-to-connect .steps .step h2 {
  font-size: var(--font-50);
  font-weight: var(--fontweight-700);
  text-transform: none;
}

#steps-to-connect .steps .step ul {
  margin: 0 0 30px;
  padding: 0;
}

#steps-to-connect .steps .step ul li {
  margin: 0;
  padding: 3px 10px 3px 25px;
  list-style: none;
  position: relative;
  font-size: var(--font-15);
  font-weight: var(--fontweight-300);
}

#steps-to-connect .steps .step ul li.title {
  font-size: var(--font-20);
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  padding-left: 0;
  margin-bottom: 30px;
}

#steps-to-connect .steps .step ul li.title:before {
  display: none;
}

#steps-to-connect .steps .step.list-black ul li:before {
  background: url(../img/img/dot-black.png) left top no-repeat;
  content: '';
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 7px;
}

#steps-to-connect .steps .step.business {
  background: #EAEAEA;
}

#steps-to-connect .steps .step.connected {
  background: var(--black);
  color: var(--white);
}

#steps-to-connect .steps .step.connected ul li.title {
  border-bottom: 1px solid #fff;
}


#steps-to-connect .steps .step.list-white ul li:before {
  background: url(../img/img/dot-white1.png) left top no-repeat;
}

#steps-to-connect .steps .step.list-white ul li:before {
  background: url(../img/img/dot-white1.png) left top no-repeat;
}


#steps-to-connect .steps .step.list-white ul li:before {
  background: url(../img/img/dot-white1.png) left top no-repeat;
  content: '';
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 7px;
}

#special-search {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

#special-search h2 span {
  color: var(--brown);
  display: block;
}

#special-search .search-box {
  max-width: 800px;
  margin: 50px auto 0 auto;
  height: 65px;
  line-height: 65px;
  border-radius: 10px;
  background: #fff url(../img/img/icon-search.png) left 20px center no-repeat;
}

#special-search .search-box input {
  width: 100%;
  font-size: var(--font-22);
  color: var(--gray);
  border: 0;
  padding: 0 20px 0 50px;
  border-radius: 10px;
  background: #fff url(../img/img/icon-search.png) left 20px center no-repeat;
}

.faq-accordion {
  max-width: 1200px;
  margin: 0 auto;
}

#faq h2 {
  text-transform: none;
  margin-bottom: 10px;
}

.faq-search {
  margin-top: 10px;
  margin-bottom: 50px;
}

.faq-search input {
  border-radius: 10px;
  width: 100%;
  padding: 10px 60px 10px 30px;
  border: 2px solid #f3f3f3;
  background: url(../img/img/icon-search-red.png) right 30px center no-repeat;
}

.faq-container .card {
  margin-bottom: 20px;
  border: 0;
}

.faq-container .card-header {
  border-bottom: 0;
  border-radius: 10px;
  margin-bottom: 0px;
  padding: 0;
}

.faq-container .card-header .card-link.accordion-title.collapsed {
  background: #f2f3f5;
  border-radius: 10px;
}

.faq-container .card-header a {
  color: var(--black);
  padding: 20px 30px;
  display: block;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  border-radius: 10px 10px 0 0;
}

.faq-container .card-header a.collapsed {
  color: var(--black);
  padding: 20px 30px;
  display: block;
  background: #f2f3f5;
  border-radius: 10px;
}



.faq-container .card-body {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  padding: 15px 30px;
  border-radius: 0px 0px 10px 10px;
}

.accordion-title:before {
  float: right !important;
  font-family: FontAwesome;
  content: "\f068";
  padding-right: 0px;
  background: var(--light-pink);
  color: var(--maroon);
  width: 30px;
  height: 30px;
  border-radius: 30px;
  text-align: center;
  line-height: 33px;
}

.accordion-title.collapsed:before {
  float: right !important;
  content: "\f067";
  background: var(--maroon);
  color: var(--white);
}


.testimonial-slider1 .slick-slide {
  transition: all 0.3s ease-in-out;
  transform: scale(0.6);
  opacity: 0.5;
  z-index: 1;
  box-sizing: border-box;
}

.testimonial-slider1 .slick-center {
  transform: scaleX(1.6);
  opacity: 1;
  z-index: 10;
  position: relative;
  transform-origin: center;
  top: 71px;
}

.testimonial-slider1 .slick-center .testimonial-item .quote,
.testimonial-slider1 .slick-center .testimonial-item .details,
.testimonial-slider1 .slick-center .testimonial-item .user-info {
  transform: scaleX(0.666);
  width: 130%;
  margin-left: -20%;
  right: 5px;
}

.testimonial-slider1 .slick-center .testimonial-item {
  padding: 20px 10px;
}

.no-scale {
  transform: scale(1);
  /* Prevent scaling on the inner element */
  position: relative;
}

.testimonial-slider1.white .slick-center .testimonial-item {
  padding: 30px 10px;
}


.solutions-slider-sec {
  margin: 0;
  padding: 0;
}

#solutions-slider .slick-slide {
  margin-right: 30px;
  padding: 20px 0;
}

.solutions-slider {
  padding: 0;
  display: flex;
}

#solutions-slider .slick-slide:nth-child(odd) .solution-desc {
  background: var(--brown) url(../img/img/solutions-element.png) right bottom no-repeat;
}

.solutions-items {
  display: flex !important;
  width: 100% !important;
}

.solutions-items .solution-img {
  max-width: 410px;
}

.solutions-items .solution-desc {
  border-radius: 0 50px 0 0;
  padding: 30px 50px;
  font-size: var(--font-15);
  display: flex;
  align-items: center;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  background: var(--white) url(../img/img/solutions-element-gray.png) right bottom no-repeat;
  border: 1px solid #f7f7f7;
}

.solutions-items .solution-desc h4 {
  font-size: var(--font-36);
  font-weight: var(--fontweight-700);
  line-height: 32px;
}

.solutions-items .solution-desc p {
  margin-bottom: 10px;
}

.solutions-items .solution-desc a {
  color: var(--black);
  text-decoration: underline;
  margin-top: 10px;
  display: inline-block;
}

.solutions-slider .slick-prev,
.solutions-slider .slick-next {
  width: 80px;
  height: 80px;
  background: #f5f5f5 url(../img/img/solution-slider-prev-arrow.png) center center no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  z-index: 11;
  top: -43px;
  right: 23%;
  left: auto;
}

.solutions-slider .slick-next {
  background: #f5f5f5 url(../img/img/solution-slider-next-arrow.png) center center no-repeat;
  right: 17%;
}

.solutions-slider .slick-prev:before,
.solutions-slider .slick-next:before {
  display: none;
}

.solutions-slider .slick-prev:hover {
  background: var(--brown) url(../img/img/solution-slider-prev-arrow-white.png) center center no-repeat;

}

.solutions-slider .slick-next:hover {
  background: var(--brown) url(../img/img/solution-slider-next-arrow-white.png) center center no-repeat;

}

/* DETAILS PAGE CSS */

#image-popup {
  padding-top: 30px;
}

#image-popup h2 {
  text-transform: none;
}

.details-share {
  display: flex;
}

.details-share p,
.details-share a {
  margin: 0 10px 15px 0;
  color: var(--black);
}

.details-share p img,
.details-share a img{ position: relative; top: -3px;}

#image-popup .desc {
  font-size: var(--font-25);
  line-height: 32px;
}

.hotel-room-price {
  margin: 50px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column; 
  height: 100%;
}

.hotel-room-price p {
  margin: 0;
  font-size: var(--font-20);
  color: var(--orange);
  font-weight: var(--fontweight-600);
}

.hotel-room-price p span {
  font-size: var(--font-40);
  font-weight: var(--fontweight-700);
  line-height: 40px; color: var(--black);
}

.mtb-30{ margin: 30px 0;}

.book-btn-small-red,
.book-btn-small-black,
.book-btn-small-coral,
.book-btn-small-reserve {
  background: var(--orange);
  border-radius: 5px;
  color: var(--white);
  font-size: var(--font-18);
  border-color: var(--orange);
  box-shadow: none;
  padding: 7px 15px;
 /* max-width: 160px;*/
  cursor: pointer; text-align: center; transition: .5s;
}

.price-per-person {
  margin: 50px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;  
  height: 100%;
}

.discounted-price {
  margin: 0;
  font-size: var(--font-36);
  color: var(--gray-light);
  text-decoration: line-through;
}

.price-after-discount {
  font-size: var(--font-15);
  margin-bottom: 0;
}

.price-after-discount span {
  font-size: var(--font-40);
  font-weight: var(--fontweight-700);
  line-height: 40px;
  color: #ec694b;
}

.meeting-pkg {
  font-size: var(--font-12) !important;
  margin-top: 5px !important;
  margin-bottom: 0; color: var(--black) !important;
}

.book-btn-small-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.book-btn-small-black:hover{
  background: #3a3a3a;
  border-color: #3a3a3a;;
  color: var(--white);
}

.book-btn-small-coral{
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.book-btn-small-coral:hover{
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.orange-btn:hover , .plan-video:hover{
	background:#fea190 !important;
	border-color:#fea190 !important;
}


.book-btn-small-reserve{
  background: #ec694b;
  color: var(--white);
  border-color: #ec694b;
}
.book-btn-small-reserve:hover{
  background: #fea190;
  border-color: #fea190;
  color: var(--white);
}

.pic-gallery-cnt {
  display: flex;
  justify-content: space-between;
  margin-top: 30px; max-width: 1550px;
  margin: 0 auto;
}

.pic-gallery-cnt .pic1 {
  width: 750px;
  height: 750px;
  position: relative; overflow: hidden;
}

.pic-gallery-cnt .pic1 img{ width: 100%; height: auto;}

.pic-gallery-cnt .pic2 {
  width: 375px;
  height: 750px;
  display: flex;
  flex-direction: column;
  margin-left: 25px;
  position: relative;
}



.pic-gallery-cnt .pic2 a {
  position: relative;
  margin-bottom: 25px;
  width: 375px;
  height: 375px;
  overflow: hidden;

}

.pic-gallery-cnt .pic2 a:last-child {
  margin-bottom: 0;
}

.icon-love-round {
  position: absolute;
  width: 38px !important;
  height: 38px;
  right: 20px;
  top: 20px;
  margin-bottom: 0 !important;
}

.icon-play-round {
  position: absolute;
  width: 38px;
  height: 38px;
  left: 50%;
  top: 50%;
  margin: -19px 0 0 -19px !important;
}

.group-txt {
  font-size: var(--font-18);
  color: var(--brown);
}

.show-all-photo {
  background: var(--white);
  border-radius: 5px;
  padding: 10px 20px;
  font-size: var(--font-15);
  color: var(--black);
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin: 0;
  
}

.show-all-photo span{text-decoration: underline;}

#details-page {
  padding: 40px 0 0;
}

#details-page .meeting-desc {
  padding-right: 100px;
  margin-top: 40px;
}

#details-page .meeting-desc a {
  display: inline-block;
  color: var(--black);
 /* text-decoration: underline;
  font-size: var(--font-12);*/
}

.meeting-list {
  margin: 50px 0;
  width: 80%;
}

.meeting-list h3 {
  font-size: var(--font-30);
  font-weight: var(--fontweight-700);
  margin-bottom: 30px;
}

.meeting-list ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.meeting-list ul li {
  margin: 0 2.5% 20px 0;
  padding: 0 0 0 60px;
  list-style-type: none;
  width: 45%;
  position: relative;
}

.meeting-list ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  background: url(../img/img/list-icon.webp) left top no-repeat;
  width: 40px;
  height: 40px;
  content: '';
  margin-top: -20px;
}

.meeting-desc h3 {
  font-size: var(--font-30);
  font-weight: var(--fontweight-700);
  margin-bottom: 10px;
}

.meeting-desc p {
  margin-bottom: 20px;
}

.meeting-desc.facility {
  margin: 40px 0;
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
  padding: 0;
}

.facility-list li {
  width: 33.33%;
  list-style-type: none;
  margin: 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.facility-list li span {
  background: #212121;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

a.show-all-btn {
  font-size: var(--font-15) !important;
  color: var(--black);
  text-decoration: none !important;
  padding: 7px 15px;
  border: 1px solid #000;
  border-radius: 5px;
}

a.show-all-btn:hover {
  background: var(--black);
  color: var(--white) !important;
}


.view-capacity {
  background: var(--black);
  border-radius: 5px;
  padding: 30px 20px;
}

.view-capacity h3 {
  color: var(--white);
  margin-bottom: 40px;
}

.location-matrix {
  position: relative;
  background-color: var(--black);
  border-radius: 4px;
  font-size: var(--font-15);
  color: var(--white);
  width: 100%;
}

.location-matrix td {
  text-align: center;
  padding: 15px 10px; width: 95px;
}

.location-matrix tr {
  background: #212121;
  color: #fff;
  border-bottom: 1px solid #D9D9D9;
}

.location-matrix thead tr th {
  border-radius: 0;
  font-weight: 400;
  text-align: center;
}

.location-matrix .room-setup-img {
  display: block;
  margin: 15px auto;
  height: 28px;
}

.location-matrix td:nth-child(1){ width: 120px;}
.location-matrix td:nth-child(2){ width: 140px;}


.matrix-info {
  color: var(--white);
  font-size: var(--font-15);
  margin-top: 15px;
  display: block;
}

#popup-youtube-video {
  background: var(--black);
  padding: 50px 0;
}

#popup-youtube-video a {
  display: block;
  position: relative;
}

.icon-play-big {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -100px 0 0 -100px;
}

.terms-conditions {
  border: 1px solid #D8D8D8;
  border-radius: 5px;
  padding: 20px;
}

.terms-conditions h4 {
  font-size: var(--font-22);
  font-weight: var(--fontweight-700);
  margin-bottom: 15px;
}

.terms-conditions p {  
  margin-bottom: 0;
}

.terms-conditions a {
 /* font-size: var(--font-12);
  text-decoration: underline;*/
  color: var(--black);
}

.show-map {
  background: var(--black);
  padding: 20px;
  border-radius: 5px;
  margin-top: 50px;

}

.show-map .map {
  height: 200px;
}

.show-map-btn,
.show-map-btn:hover {
  background: var(--white);
  color: var(--black);
  font-size: var(--font-15);
  padding: 10px 25px;
  border-radius: 5px;
  margin-top: 50px;
  display: inline-block;
}

.map-details {
  margin-top: 30px;
}

.map-details p {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: var(--font-14);
  margin: 10px 0;
}

.map-details p span {
  margin-right: 10px;
  display: inline-block;
  width: 15px;
}

.distance-details {
  margin-top: 30px;
}

.distance-details h5 {
  font-size: var(--font-16);
  font-weight: var(--fontweight-700);
  color: var(--brown);
  margin-bottom: 10px;
}

.distance-details p {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  font-size: var(--font-14);
  color: var(--white);
}

.meeting-experts {
  border: 1px solid #D8D8D8;
  border-radius: 5px;
  padding: 20px 30px;
  margin-top: 50px;
}

.expert-img {
  text-align: center;
}

.expert-details {
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

.expert-details h4 {
  margin: 0;
  padding: 0;
  font-size: var(--font-22);
  font-weight: var(--fontweight-700);
}

.expert-details p {
  margin: 0;
  padding: 0;
  font-size: var(--font-14);
}

.expert-contact {
  padding: 15px 0;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}

.expert-contact p {
  margin: 5px 0;
}

.expert-contact p.font15 {
  font-size: var(--font-15);
}

.expert-contact p.e-phone {
  font-size: var(--font-25);
  font-weight: var(--fontweight-600);
}

.expert-contact p.e-phone span:first-child,
.expert-contact p.e-email span:first-child {
  width: 23px;
  display: inline-block;
}

.expert-contact .e-free {
  font-size: var(--font-12) !important;
  font-weight: var(--fontweight-400);
}

.expert-contact p.e-email a {
  color: var(--black);
}

.expert-rating p {
  margin: 5px 0;
}

.expert-rating p.font14 {
  font-size: var(--font-14);
}

.meeting-experts .cta-btn {
  padding: 15px 25px;
  font-size: var(--font-18);
  margin-top: 20px;
}

.tour-360 {
  background: var(--black);
  padding: 30px 20px 30px;
  border-radius: 5px;
  color: var(--white);
  margin-top: 50px;
}

.tour-360 .font22 {
  font-size: var(--font-22);
  font-weight: var(--fontweight-700);
  margin-bottom: 15px;
}

.p-relative {
  position: relative;
  margin: 0;
  text-align: center;
}

.play-btn-360 {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -51px 0 0 -51px;
}

.review-block {
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.review-block .review {
  display: flex;
  width: 50%;
}

.review-block .review p {
  margin: 0;
}

.review-block .review .number {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: var(--font-18);
  font-weight: 600;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: 10px;
}

.review-block .review .exceptional {
  font-size: var(--font-15);
}

.review-block .review .exceptional span {
  display: block;
  color: var(--gray-light1);
}

.review-block .starting-price {
  font-size: var(--font-15);
  color: var(--gray-light1);
}

.review-block .starting-price span {
  font-size: var(--font-18);
  color: var(--black);
  font-weight: var(--fontweight-600);
}

.date-time-cnt {
  background: var(--black);
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 50px;
}

.date-time-cnt h4 {
  font-size: var(--font-18);
  color: var(--white);
  margin-bottom: 10px;
}

.date-time-cnt .date-time {
  margin-bottom: 30px;
}

.date-time-cnt input {
  font-size: var(--font-12);
  color: var(--gray-light);
  height: 35px;
  border-radius: 5px;
  border: 0;
  width: 100%;
  padding: 0 10px 0 35px;
}

.date-time-cnt .attendees {
  margin-bottom: 40px;
}

.date-time-cnt .input-cnt {
  display: flex;
  justify-content: space-between;
}

.date-time-cnt .input-cnt input {
  width: 45%;
  padding: 0 15px;
}

.icon-date {
  background: #fff url(../img/img/icon-calander.png) 15px center no-repeat;
}

.icon-member {
  background: #fff url(../img/img/icon-member.png) 15px center no-repeat;
}

.dt-btns {
  display: flex;
  justify-content: space-between;
}

.dt-btns .orange-btn,
.dt-btns .white-btn {
  font-size: var(--font-14);
  color: var(--white);
  font-weight: var(--fontweight-700);
  background: var(--orange);
  border: 0;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
}

.dt-btns .white-btn {
  background: var(--white);
  color: var(--black);
}



.members-profile {
  margin-top: 80px;
}

.member-profiles-flipboxes {
  display: flex;
  justify-content: stretch;
  flex-wrap: wrap;
}

.flipbox-wrapper {
  background: #faf6f1;
  width: 19%;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  transform-style: preserve-3d;
  perspective: 2000px;
  position: relative;
  margin-right: 1%;
  margin-bottom: 1%;

}

.flipbox-wrapper img {
  max-width: 100%;
}

.flipbox-front {
  position: absolute;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  transition: transform 1s;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flipbox-front h2 {
  font-size: var(--font-24);
}


.flipbox-back {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #faf6f1;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  transition: transform 1s;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 30px;
  text-align: center;
}

.flipbox-back-inner .name {
  font-size: var(--font-22);
  font-weight: var(--fontweight-600);
}

.flipbox-back-inner .designation {
  font-size: var(--font-18);
  margin-bottom: 0;
}

.flipbox-back-inner .social-network {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

.flipbox-back-inner .social-network a {
  background: var(--black);
  width: 36px;
  height: 36px;
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 0 10px;
}

.flipbox-wrapper:hover .flipbox-front {
  transform: rotateY(-180deg);
}

.flipbox-wrapper:hover .flipbox-back {
  transform: rotateY(0deg);
}



#ask-us-anything .row {
  margin-bottom: 20px;
}

#ask-us-anything .cta-details p {
  position: relative;
  margin-bottom: 0;
}

#ask-us-anything .country p {
  display: flex;
}

#ask-us-anything .country p select {
  width: 80px;
}

.form-textarea {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#ask-us-anything .contact-buuton-icon {
  position: relative;
  width: 230px;
}

#ask-us-anything .cta-btn {
  padding: 17px 54px 17px 30px;
  cursor: pointer;
  border: 0;
}

#ask-us-anything .contact-buuton-icon:after {
  position: absolute;
  right: 6px;
  top: 38px;
  background: url(../img/img/icon-arrow-nav-white.png) left center no-repeat;
  width: 15px;
  height: 15px;
  content: '';
}

.hidden {
    display: none !important;
}

.ic i, .ic svg {   
    color: #FFF;
	font-size:25px;
}

/* 12-03-2025 - Awards Section */
.awards-cnt{ display: grid; grid-template-columns: auto auto auto auto auto; gap: 10px; width: 1043px; justify-content: center; margin: 0 auto;}
.awards-cnt .partner-logo{ width: 195px; height: 195px; border-radius: 10px; overflow: hidden;}
.awards-cnt .partner-logo img{ max-width: 100%; filter: grayscale(100); transition: .3s;}
.awards-cnt .partner-logo:hover img{ filter: grayscale(0);}

/* Custom Menu - 08-04-2025 */ 
.custom-nav { position: fixed; top: 0; left: 0; width: 100%;  height: 100%; background-color: var(--black);  display: flex; flex-direction: column;  padding: 2% 3%; visibility: hidden; opacity: 0; z-index: -1; transition: opacity 0.4s ease, visibility 0.4s ease, z-index 0s linear 0.4s;}

.custom-nav.open { visibility: visible; opacity: 1; z-index: 9999; transition: opacity 0.4s ease, visibility 0.4s ease;}
.custom-nav-header .close{ font-size: 4rem; font-weight: 400; color: var(--orange); text-shadow: none; opacity: 1; outline: none;}
.custom-nav-body{ margin-top: 0; margin-left: 0; height: 100%; /*padding-left: 435px; background: url(../img/img/menu-curve.png) left top no-repeat; background-size: contain;*/ display: flex; align-self: flex-end;}

.accordion{ min-width: 500px; margin-left: 3%;}
.accordion h3 { cursor: pointer; padding: 10px; color: white; margin: 0; text-transform: none;}
.accordion h3 i{transition: .3s; font-weight: 400;}
.accordion h3:hover, .accordion h3.active{ color: var(--orange) ; text-decoration: underline;}
.accordion h3.active i{ transform: rotate(90deg); transition: .5s;}
.accordion .content { display: none; padding:20px 10px; border-top: none;}

.accordion .content ul{ /*display: flex;*/ margin: 0; padding: 0;}
.accordion .content ul li{ margin-right: 30px; list-style: none;}
.accordion .content ul li a{ color: var(--white);}
.accordion .content ul li a:hover{ color: var(--orange);}

.overflow-hidden{ overflow: hidden;}

/*.prop-details-sec{ margin-top: 80px;}*/
.prop-details-box{ display: flex; justify-content: flex-start; gap:15px;}
.prop-detail{ background: var(--white); padding: 0; border-radius: 10px; box-shadow: 2px 2px 5px #ddd; width: 24%; border: 1px solid #ddd;}
.prop-detail .prop-img{ height: 300px; overflow: hidden; border-radius: 10px 10px 0 0;}
.prop-detail .prop-img img{ width: 100%;height:100%}

.prop-desc{padding:20px; text-align: center;}
.prop-detail .prop-title{ font-size: var(--font-22); text-align: left; font-weight: var(--fontweight-700); min-height: 55px;}
.prop-detail p{ margin: 0; text-align: left;}
.prop-detail ul{ margin-top: 10px; text-align: left;}
.prop-detail ul li{ list-style: none;}

.prop-details-sec.venue-item .features{ margin-top: 15px; margin-bottom: 25px; min-height: 170px;}
.prop-details-sec.venue-item .features li { color: var(--black); background: url(../img/img/arrow.jpg) left top 3px no-repeat; margin: 10px 0;}
.prop-detail .cta-btn{ padding: 10px 20px; font-size: var(--font-18); text-transform: none;}
.prop-detail .cta-btn svg{ margin-right: 7px;}

/* 16/04/2025 */
.hero-banner-with-text{ background: url(../img/img/office-people.jpg) center center no-repeat; background-size: cover; min-height: 750px; margin-top: 80px; display: flex; align-items: center; text-align: center; position: relative;}

.hero-text-cnt{ margin: 0 auto 0px; max-width: 1000px; font-size: var(--font-28); color: var(--white); position: relative; z-index: 1; padding: 0 30px;}
.hero-text-cnt .title{ font-weight: var(--fontweight-700); text-decoration: underline;}
.hero-btn{ text-align: left; }
.hero-btn .cta-btn{ border-radius: 5px;}
.hero-btn .cta-btn i{ margin-right: 8px;}
.hero-btn .cta-btn img { margin-right: 10px; margin-left: 0px;}


/* 18-04-2025 */
.members-profile-new{ margin-top: 80px;}

.member-profiles-flipboxes-new {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.flipbox-wrapper-cnt {
  width: 24%;
}

.flipbox-wrapper-new {
  background: transparent;
  transform-style: preserve-3d;
  perspective: 2000px;
  position: relative;
  margin-right: 0;
  margin-bottom: 0; height: 425px; 
}

.member-details-new{ display: flex; justify-content: space-between;}

.flipbox-wrapper-new img {
  max-width: 100%;
}

.flipbox-front-new {
  position: absolute;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  transition: transform 1s;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center; flex-direction: column;
}

.flipbox-front-new h2 { font-size: var(--font-24);}

.flipbox-front-new-img{ width: 100%; height: 100%;  overflow: hidden;}



.flipbox-back-new {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #faf6f1;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  transition: transform 1s;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0px;
  text-align: center; overflow: hidden;
}
.flipbox-back-new img{ height: 100%; max-width: inherit;}


.flipbox-back-inner-new{ width: 100%; margin-top: 0px; padding: 20px; border-top: 2px solid var(--brown);}
.flipbox-back-inner-new .name {
  font-size: var(--font-20);
  font-weight: var(--fontweight-600);
}

.flipbox-back-inner-new .designation {
  font-size: var(--font-16);
  margin-top: 20px;
}

.flipbox-back-inner-new .social-network {
  display: flex;
  margin-top: 0px;
  justify-content: space-between;
}

.flipbox-back-inner-new .social-network a {
  background: var(--black);
  width: 36px;
  height: 36px;
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-left:5px;
}

.flipbox-wrapper-new:hover .flipbox-front-new {
  transform: rotateY(-180deg);
}

.flipbox-wrapper-new:hover .flipbox-back-new {
  transform: rotateY(0deg);
}

.flipbox-back-inner-new .social-network a {
  background: var(--black);
  width: 36px;
  height: 36px;
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-left:5px;
}

.flipbox-wrapper-new:hover .flipbox-front-new {
  transform: rotateY(-180deg);
}

.flipbox-wrapper-new:hover .flipbox-back-new {
  transform: rotateY(0deg);
}

/* 16/04/2025 */
.hero-banner-with-text-new{ min-height: 750px; display: flex; align-items: flex-end; text-align: center; position: relative;}
.hero-banner-with-text-new:before{  position: absolute; left: 0; top: 0; width: 100%; height: 100%; content: ''; display}
.hero-banner-with-text-new .banner-img{width: 100%; height: 100%; left: 0; top: 0;}
.hero-banner-with-text-new .hero-text-cnt {
    margin: 0 auto 50px;
    max-width: 1000px;
    font-size: var(--font-28);
    color: var(--white);
    position: absolute;
    z-index: 1;
    padding: 0 30px;   
    left: 50%;
    margin-left: -500px;
}
.hero-banner-with-text-new .hero-text-cnt .title{ font-weight: var(--fontweight-700); text-decoration: underline;}
.hero-banner-with-text-new .hero-btn{ text-align: center; }
.hero-banner-with-text-new .hero-btn .cta-btn{ font-weight: var(--fontweight-500);}
.hero-banner-with-text-new .hero-btn .cta-btn i{ margin-right: 8px;}


.star-ratings-sprite {background: url("../img/img/star-rating-sprite.webp") repeat-x;font-size: 0;height: 17px;line-height: 0;overflow: hidden;text-indent: -999em;width: 89px;margin: 4px auto;float: left;}
.star-ratings-sprite-rating {background: url("../img/img/star-rating-sprite-green2.webp") repeat-x;background-position: 0 100%;float: left;height: 17px;display: block;}

#ask-us-anything .contact-form {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


@media (max-width: 767px) {
  .location-matrix tr {   display: flex;}
  .location-matrix td:nth-child(1), .location-matrix th:nth-child(1) {
	  width: 120px;
  }
  location-matrix td:nth-child(2), .location-matrix th:nth-child(2) {
	 width: 140px; 
  }
  .location-matrix td, .location-matrix th {
	  width: 95px;
  }
  
}

.content-container {
    max-width: 1200px;   
    margin: 0 auto;     
    padding: 0 20px;    
}


