html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Sangira';
  src: url(../fonts/Sangira.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* latin */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/4iCv6KVjbNBYlgoC1CzjsGyN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/4iCs6KVjbNBYlgoKfw72.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/4iCv6KVjbNBYlgoCjC3jsGyN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/4iCv6KVjbNBYlgoCxCvjsGyN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Ubuntu';
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Ubuntu';
  font-weight: normal;
}

.error-msg1 {
  position: absolute;
  bottom: -12px;
  background: transparent;
  display: flex;
  line-height: 11px;
  background-color: #f00;
  color: #fff;
  font-size: 9px;
}

.overflow-visible {
  overflow: visible !important;
}

a {
  color: #fff;
}

a:hover {
  color: #d29e33;
}

a,
button {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

/*** Modal CSS ***/
.theme-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
}

.theme-modal.is-active {
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 9999;
}

.theme-modal-content {
  border: 0;
  border-radius: 0;
}

.theme-modal-card-head {
  background-color: transparent;
  border: 0;
  padding: 20px 30px;
  height: inherit;
  border-radius: 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 600px;
  width: 100%;
  padding: 30px;
  max-height: inherit;
  transition: all 0.3s linear;
  background-color: #1d57a3;
  border-radius: 10px;
  margin: 0 auto;
  transform: translateY(-50%);
}

.modal-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.theme-modal-card-body .columns {
  margin-bottom: -24px !important;
}

.theme-modal-card-body .columns .column {
  margin-bottom: 24px;
}

#home.is-active {
  overflow: hidden;
}

html:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
}

html.is-active:before {
  opacity: 0.6;
  visibility: visible;
}

.theme-modal.is-active .theme-modal-card {
  top: 50%;
}

.theme-modal-card-title {
  margin: 0;
  text-transform: uppercase;
}

.theme-modal-background {
  background-color: #000;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.theme-modal[style="visibility: visible;"] .theme-modal-card {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
}

.theme-modal[style="visibility: visible;"] .theme-modal-background {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal-card-body {
  border: 0;
  position: relative;
  overflow: visible;
  border-radius: 10px;
}

.theme-modal-card-body {
  padding: 30px;
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 20%);
}

.close1,
.close {
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 1;
  border: none;
  background-color: #1B1B1B;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #ffffff80;
  padding: 5px;
}

.close1:hover,
.close:hover {
  opacity: 0.5;
}

.theme-modal-card-body:before {
  left: 0;
}

.theme-modal-card-body:after {
  right: 0;
}

.theme-modal-card-title {
  color: #020203;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 5px;
}

.theme-modal-card-body img {
  margin: 0 auto;
  max-width: 350px;
}

.col-theme-modal .section-title {
  margin-bottom: 15px;
}

.theme-modal .section-title h2 {
  font-size: 26px;
  line-height: 30px;
  color: #fff;
}

/*** End Modal CSS ***/
.sticky-bottom-form .col-form .sm-form-control::-webkit-input-placeholder {
  color: rgb(255 255 255 / 0.3);
}

.sticky-bottom-form .col-form .sm-form-control:-ms-input-placeholder {
  color: rgb(255 255 255 / 0.3);
}

.sticky-bottom-form .col-form .sm-form-control::placeholder {
  color: rgb(255 255 255 / 0.3);
}

.theme-modal .col-form .sm-form-control::-webkit-input-placeholder {
  color: rgb(255 255 255 / 0.3);
}

.theme-modal .col-form .sm-form-control:-ms-input-placeholder {
  color: rgb(255 255 255 / 0.3);
}

.theme-modal .col-form .sm-form-control::placeholder {
  color: rgb(255 255 255 / 0.3);
}

.theme-scrollbar {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.theme-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
}

ul:last-child {
  margin-bottom: 0;
}

iframe {
  border: none;
}

a,
b,
div,
li,
ul {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

a:active,
a:focus,
input,
input:active,
input:focus,
input:hover,
textarea,
textarea:active,
textarea:focus,
textarea:hover {
  -moz-outline: none;
  outline: 0;
}

a {
  text-decoration: none;
  outline: 0;
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

.clear-both:after,
.clear-both:before {
  display: table;
  content: "";
  clear: both;
}

section,
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #f8f8f8;
}

.full-width {
  width: 100%;
}

.center {
  text-align: center;
}

.overflow-visible {
  overflow: visible !important;
}

.section-title h1,
.section-title h2 {
  font-size: 40px;
  line-height: 46px;
  color: #fff;
  margin: 0;
  position: relative;
  display: block !important;
  font-family: 'Sangira';
}

.section-title {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  color: #1d57a3;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
  color: #fff;
}

.dark p,
.dark span {
  color: #fff;
}

.title-white .title-tagline {
  color: #fff;
}

.columns,
.columns:last-child {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.column {
  padding-top: 0;
  padding-bottom: 0;
}

picture {
  display: block;
}

.container {
  position: relative;
  z-index: 1;
}

.theme-btn {
  position: relative;
  background: #d29e33;
  font-family: 'Ubuntu';
  border: 0;
  color: #fff;
  display: inline-block;
  padding: 8px 30px;
  font-size: 15px;
  text-align: center;
  line-height: 26px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  border-radius: 5px;
}

.theme-btn:hover {
  opacity: 0.8;
  color: #fff !important;
}

.theme-btn.white-btn {
  background: #fff;
  color: #1B1B1B;
}

.theme-btn.white-btn:hover {
  background: #e1dddd;
  /* color: #0076bc; */
}

.col-form {
  position: relative;
  margin-bottom: 20px;
}

.theme-input {
  position: relative;
}

.col-middle {
  display: table;
  width: 100%;
}

.col-middle-inner {
  display: table-cell;
  vertical-align: middle;
}

button:focus {
  outline: 0;
}

#back2top.active {
  bottom: 20px;
  visibility: visible;
  opacity: 1;
}

#back2top {
  position: fixed;
  bottom: 74px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 88;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

#back2top svg {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 7px;
  background-color: #1d57a3;
  color: #fff;
  border-radius: 100%;
}

#back2top .up-arrow {
  margin-top: 4px;
  border-width: 2px 0 0 2px;
}

.thankyou-msg {
  font-size: 16px !important;
  color: #fff !important;
  background: 0 0 !important;
}

.thankyou-logo img {
  max-width: 160px;
  margin: 30px auto 0;
}

.form-group,
.form-group-wrapper {
  position: relative;
}

label.error {
  color: #fff;
  background: red;
  font-size: 8px;
  position: absolute;
  left: 15px;
  bottom: -20px;
  line-height: 13px !important;
  top: auto;
  font-weight: bold;
}

.form-control.error {
  border-color: red;
}

.modal .form-control.error {
  margin-bottom: 30px;
}

.contact-form label.error {
  bottom: -16px;
  width: inherit;
}

.form-control {
  border-radius: 0;
}

.modal-content {
  border: 0;
  border-radius: 0;
}

.thankyou-block {
  background-color: #b0b4a5;
  height: 100vh;
}

.thankyou-block h1 {
  color: #d29e33;
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.list-point {
  padding: 0;
}

.list-point li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin-bottom: 5px;
}

.list-point li:last-child {
  margin-bottom: 0;
}

.list-point li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 100%;
  left: 0;
  top: 8px;
}

.splide__slide img {
  width: 100%;
}

.splide__arrow.splide__arrow--prev:disabled,
.splide__arrow.splide__arrow--next:disabled {
  display: none;
}

.splide__arrow {
  width: 60px;
  height: 60px;
  padding: 10px;
  color: #fff;
  background-color: rgb(29 87 163 / 40%);
  border: 1px solid #1d57a3;
  opacity: 1;
}

.splide__arrow:hover {
  background-color: #1d57a3;
  color: #fff;
  opacity: 1;
}

.splide__arrow svg {
  font-size: 24px;
}

.splide__arrow--prev {
  left: 60px;
}

.splide__arrow--next {
  right: 60px;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: #1d57a3;
  opacity: 0.5;
}

.splide__pagination__page.is-active {
  transform: none;
  background: #1d57a3;
  opacity: 1;
}

.splide__pagination {
  position: static;
  transform: none;
}

.pl-80 {
  padding-left: 80px !important;
}

.modal-card-body {
  padding: 30px;
}

.col-form label span {
  color: #ff0000;
}

.title-tagline {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 15px;
  display: block;
}

.close-button {
  top: 0;
  right: 0;
  padding: 5px;
  background-color: #065f9d;
  color: #ffffff;
  position: absolute;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

.close-button svg {
  display: block;
}

.close-button:hover {
  opacity: 0.8;
  cursor: pointer;
}

.form-title {
  text-align: left;
  margin-bottom: 0;
  font-size: 24px;
  width: 100%;
  margin-bottom: 10px;
  color: #fff;
}

header {
  position: fixed;
  z-index: 999;
  padding: 12px 140px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -moz-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
}

#header.sticky {
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 10%);
  box-shadow: 0 0 12px rgb(0 0 0 / 10%);
}

.header__menu-link {
  font-size: 16px;
}

.col-header:last-child {
  text-align: right;
  padding: 0;
}

.theme-logo img {
  max-width: initial;
  width: auto;
  display: block;
  height: 80px;
}

.theme-logo a {
  display: block;
}

.header-primary-menu-wrapper {
  display: inline-block;
  vertical-align: middle;
}

.col-header:first-child {
  max-width: 240px;
  padding: 0;
  flex: 0 0 240px;
}

.header__menu-item {
  display: inline-block;
  padding: 16px 10px;
}

header .columns {
  /* height: 80px !important; */
}

#section-banner,
.section-cms {
  margin-top: 94px;
}

.white-text {
  color: #fff !important;
}

.theme-padding {
  padding-left: 140px;
  padding-right: 140px;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.fade-in-left {
  animation: fade-in-left 1s ease-in-out both;
}

.scrolled.fade-in-right {
  animation: fade-in-right 1s ease-in-out both;
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.delay1 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.delay2 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.delay3 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.delay4 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

.sticky-btn-enquire {
  position: fixed !important;
  top: 282px;
  right: -71px;
  font-size: 18px !important;
  padding: 8px 15px !important;
  z-index: 999 !important;
  transform: rotate(-90deg);
  transition: all 0.3s linear;
  background-color: #1d57a3;
  color: #ffffff;
  border-radius: 5px 5px 0 0;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #fff;
}

.sticky-btn-enquire:hover {
  background-color: #0076bc;
  color: #fff;
}

#scontactform h3 {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0;
}

.sticky-bottom-form {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 0 0px 15px;
  width: 100%;
  z-index: 999;
  background: #1d57a3;
  max-width: 1344px;
  margin: 0 auto;
  right: 0;
  border-top: 1px solid rgb(181 222 234 / 40%);
}

.sticky-bottom-form .col-form {
  position: relative;
  width: 20%;
  float: left;
  padding: 0 15px;
  margin: 0 0 10px !important;
}

.col-form-title {
  display: none;
}

.sticky-bottom-form .col-form .sm-form-control {
  padding: 10px 10px 10px 0;
  border-bottom: 1px solid #b6dfeb;
  color: #fff;
  line-height: 19px;
}

.copyright-detail p {
  display: inline-block;
}

.captcha-query,
.captcha-sticky-query {
  position: absolute;
  color: white;
  top: 50%;
  letter-spacing: 10px;
  font-size: 14px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.listed-points li {
  color: #333;
  margin: 10px 0;
  position: relative;
  padding-left: 25px;
}

.listed-points li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 7px;
  left: 0;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #28438c;
}

#footer {
  padding: 20px 0;
  background-color: #202020;
}

#home #footer {
  padding: 20px 0 80px;
}

.copyright-bar .columns {
  margin-bottom: -5px;
}

.col-copyright {
  margin-bottom: 5px;
}

.copyright-detail span,
.copyright-detail p,
.copyright-detail a {
  font-size: 14px;
  color: #c5c5c5;
}

.footer-block h3 {
  color: #28438c;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-menu li a {
  color: #c5c5c5;
  font-size: 14px;
}

.col-copyright:last-child {
  text-align: right;
}

.footer-menu li a:hover,
.copyright-detail a:hover {
  color: #ffffff;
}

.contact b {
  color: #28438c;
}

.theme-block {
  position: relative;
}

.theme-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #28438c;
  z-index: 1;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-block .theme-block-icon {
  position: absolute;
  top: calc(50% + 15px);
  width: 40px;
  height: 40px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 9;
}

.theme-block .theme-block-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.theme-block:hover:before {
  opacity: 0.5;
}

.theme-block {
  border: 10px solid #28438c;
}

.theme-block:hover .theme-block-icon {
  opacity: 1;
}

.section-cms {
  min-height: calc(100vh - 161px);
}

.sticky-notice {
  background-color: #b50000;
  position: fixed;
  top: 94px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.sticky-notice span {
  font-size: 12px;
  line-height: 16px;
  display: block;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.section-home {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.home-bg-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-home {
  position: relative;
}

.section-home:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1B1B1B;
  z-index: 1;
  opacity: 0.7;
}

.section-home-wrapper {
  position: relative;
  z-index: 9;
  height: calc(100% - 100px);
}

.section-title.main-title {
  margin: 30px 0 60px;
  position: relative;
  display: block !important;
}

.the-grove-wrapper {
  padding-top: 60px;
  height: 100%;
  padding-bottom: 60px;
}

.section-title h4 {
  color: #d29e33;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 0.22em;
  font-weight: 200;
  font-family: 'Ubuntu';
  position: relative;
  display: inline-block;
  width: auto;
}

.key-icon img {
  position: relative;
  height: 70px;
  width: auto;
  filter: grayscale(1);
  margin: 0 auto;
}

.key-title span {
  color: #fff;
  margin-top: 15px;
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-family: 'Ubuntu';
}

.key-hghlight-feature {
  position: relative;
  display: flex;
  gap: 120px;
  flex-wrap: wrap;
}

.key-highlight-item {
  position: relative;
  text-align: center;
}

.key-highlight-item:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -60px;
  width: 1px;
  height: 50%;
  background-color: #fff;
}

.key-highlight-item:last-child::before {
  display: none;
}

.venue {
  position: relative;
  margin-top: 60px;
}

.venue-detail h5 {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 5px;
}

.venue .section-title {
  margin-bottom: 15px;
}

.the-grove-form-content {
  position: relative;
  /* height: 100%; */
  /* background-color: #00000080; */
  padding: 40px 80px;
}

.max-content {
  max-width: 820px;
}

.section-home-wrapper:before {
  position: absolute;
  content: "";
  top: -100%;
  right: 0;
  width: 33.33%;
  height: 400%;
  background-color: #000000;
  opacity: 0.5;
}

.theme-logo.dlf-logo img {
  margin-left: auto;
  height: 60px;
}

/*------------ Select Start ----------------*/


.select.large .list ul {
  /*overflow-x: hidden;
  overflow-y: auto;
  padding-right: 15px;*/
}

.select.large .list ul::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.select.large .list ul::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
}

.select.large .list ul::-webkit-scrollbar-thumb {
  background-color: #eee !important;
  border-radius: 25px;
}

.theme-input-group .select .value {
  border-bottom: 0;
  padding: 0 20px 0 10px;
}

.theme-input-group .select:after {
  width: 10px !important;
  height: 10px !important;
  margin-top: -7px !important;
  right: 1px !important;
}

.theme-input-group .select .filter {
  display: none;
}

.select {
  width: 100%;
  height: auto !important;
  display: block;
  max-width: 100%;
}

.select select,
.select .list ul li,
.select .list .filter input {}

.navbar-link:not(.is-arrowless)::after,
.select:not(.is-multiple):not(.is-loading)::after {}

.select:after {
  width: 15px !important;
  height: 15px !important;
  margin-top: -10px !important;
  border-color: rgba(0, 0, 0, 0.3) !important;
}

.select .value::before {
  display: none;
}

.select .list .filter input {
  padding-bottom: 10px;
}

.select .list {
  border-radius: 3px;
}

.select .value {
  color: #fff;
  border-bottom: unset !important;
  padding: 10px 15px;
}

/*------------ Select End ----------------*/

.form-label-title {
  color: #fff;
  padding: 5px 15px;
  height: 42px;
  display: flex;
  align-items: center;
  border-right: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  min-width: 105px;
}

.label-with-input {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 6px;
  /* height: 50px; */
}

.sm-form-control::-webkit-input-placeholder {
  color: #fff;
}

.sm-form-control:-ms-input-placeholder {
  color: #fff;
}

.sm-form-control::placeholder {
  color: #fff;
}

.sm-form-control,
.select .value {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 15px;
  background-color: transparent;
  border-radius: 0;
  resize: none;
  color: #fff;
  font-size: 14px;
}

.search-item {
  position: relative;
  width: 100%;
}

.select .list ul li:hover,
.select .list ul li.hovered {
  background: #eee;
  color: #000;
}

.col-form.col-form-btn {
  margin: 40px 0 0;
}

.navbar-link:not(.is-arrowless)::after,
.select:not(.is-multiple):not(.is-loading)::after {
  content: " ";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: center;
}

.navbar-link:not(.is-arrowless)::after,
.select:not(.is-multiple):not(.is-loading)::after {
  border: 2px solid transparent;
  border-radius: 2px;
  border-right: 0;
  border-top: 0;
}

.select:not(.is-multiple):not(.is-loading)::after {
  right: 1.125em;
  z-index: 4;
}

.select:after {
  width: 10px !important;
  height: 10px !important;
  margin-top: -7px !important;
  border-color: #fff !important;
}

.section-title.main-title:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 103%;
  width: 40%;
  height: 0.2px;
  background-color: #fff;
}

.section-title h4:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 110%;
  height: 0.1px;
  width: 1000%;
  background-color: #fff;
  opacity: 0.1;
}

.key-highlight-wrapper {
  position: relative;
  overflow: hidden;
}

.hidden-desktop {
  display: none;
}

.select .list .filter {
  display: none !important;
}

.sm-form-control,
.select .value {
  font-family: 'Ubuntu' !important;
}

.copyright-content {
  position: fixed;
  bottom: 0;
  color: #fff;
  z-index: 9;
}

.copyright-content span,
.copyright-content a {
  color: #fff !important;
  font-size: 12px;
}


.search-item select {
  background-color: transparent;
  color: #fff;
  border: unset;
  width: 100%;
  height: 100%;
  font-family: 'Ubuntu';
  padding: 10px 12px;
  font-size: 14px;
}

.search-item select:focus-visible {
  border: unset !important;
  outline: 0;
}

.search-item option {
  color: #2a2a2a !important;
  background-color: #eee;
}

.search-item {
  padding-right: 8px;
}

.the-grove-form-inner {
  position: relative;
  margin-bottom: 30px;
}

.the-grove-logos {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  padding: 10px 80px 10px 140px;
}

.venue-detail span {
  display: block;
}

.venue-detail .theme-btn {
  margin-top: 10px;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 500;
}

.home-bg-img.thank-you-bg:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1B1B1B;
  z-index: 1;
  opacity: 0.8;
}