/* @font-face {
  font-family: "Mollie glaston";
  src: url("../fonts/Mollieglaston.eot");
  src: url("../fonts/Mollieglaston.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Mollieglaston.woff2") format("woff2"),
    url("../fonts/Mollieglaston.woff") format("woff"),
    url("../fonts/Mollieglaston.ttf") format("truetype"),
    url("../fonts/Mollieglaston.svg#Mollieglaston") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
/* @font-face {
  font-family: "Mollie glaston";
  src: url("../fonts/font.woff") format("woff");
  src: url("../fonts/font.woff2") format("woff2"),
    url("../fonts/font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
@font-face {
    font-family: "Mollie glaston";
    /* src: url("../fonts/Mollieglaston.woff") format("woff"); */
    src: url("../fonts/Mollieglaston.woff2") format("woff2"),
        url("../fonts/Mollieglaston.woff") format("woff");
    /* font-weight: bold; */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

::-moz-selection {
    color: var(--white);
    background: var(--primaryColor);
}

::selection {
    color: var(--white);
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--white);
    background: var(--primaryColor);
}

html {
    height: 100%;
    box-sizing: border-box;
}

html,
body {
    scroll-padding-top: 65px;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

:root {
    --primaryColor: #1c1e1f;
    --secondaryColor: #fbf4e0;
    --white: rgba(255, 255, 255, 1);
    --black: rgba(0, 0, 0, 1);
    --transition500: all 500ms ease-in-out;
    --primaryFont: "Kumbh Sans", sans-serif;
    --secondaryFont: "Mollie glaston", "Kumbh Sans", sans-serif;
    --cream: #f2d37f;
    --secondaryLightColor: #fcf8ed;
    --sharkColor: #1c1e1f;
}

/* global css starts */
body {
    padding: 0;
    margin: 0;
    min-height: 100%;
    letter-spacing: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 400;
    font-family: var(--primaryFont);
    font-size: 16px;
    color: var(--secondaryColor);
    background: var(--sharkColor);
    word-break: break-word;
}

img {
    width: 100%;
    height: auto;
}

.btn-primary,
.btn-secondary {
    border-radius: 0px;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primaryColor);
    height: 42px;
    padding-left: 20px;
    padding-right: 20px;
    transition: var(--transition500);
    display: flex;
    align-items: center;
    min-width: 200px;
    justify-content: center;
    position: relative;
    border-color: var(--primaryColor);
    text-transform: uppercase;
}

/* .btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--primaryColor) !important;
  border-color: var(--primaryColor) !important;
  transition: var(--transition500);
  color: var(--white) !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background: var(--cream) !important;
  border-color: var(--cream) !important;
  transition: var(--transition500);
  color: var(--white) !important;
} */

.btn-secondary,
.btn-primary {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 42px;
    min-width: 250px;
    max-width: 320px;
    line-height: 2;
    border: 1px solid var(--cream);
    transition: var(--transition500);
}

.btn-primary {
    border-color: var(--primaryColor);
}

.btn-secondary {
    border-color: var(--cream);
    color: var(--cream);
}

.btn-primary:before,
.btn-secondary:before {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    border-right: 50px solid transparent;
    border-bottom: 80px solid var(--cream);
    transform: translateX(-100%);
    transition: var(--transition500);
}

.btn-primary:before {
    border-bottom: 80px solid var(--primaryColor);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-primary:focus {
    color: var(--white);
    transition: var(--transition500);
    background: transparent;
    border-color: var(--cream);
}

.btn-primary:hover {
    border-color: var(--primaryColor);
}

.btn-primary:hover:before,
.btn-secondary:hover:before {
    transform: translateX(0);
    transition: var(--transition500);
}

.btn-secondary span,
.btn-primary span {
    color: var(--cream);
    z-index: 1;
    position: relative;
    transition: var(--transition500);
}

.btn-primary span {
    color: var(--primaryColor);
}

.btn-secondary:hover span,
.btn-primary:hover span {
    color: var(--white);
    transition: var(--transition500);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-family: var(--secondaryFont);
    color: var(--primaryColor);
}

h1 {
    font-size: calc(4.7vw);
}

h2 {
    font-size: calc(2vw + 1rem);
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 14px;
}

h6,
p {
    font-size: 15px;
}

p {
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
}

a,
.btn-link {
    color: var(--primaryColor);
}

.container {
    max-width: 1330px;
    max-width: 1410px;
    width: 100%;
}

.modal {
    background: var(--primaryColor);
    z-index: 99999;
}

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

.modal-content .btn-close {
    background: url("../images/close.png") 50% 50% no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    top: -20px;
    right: 0;
    outline: none;
    box-shadow: none;
    z-index: 1;
    opacity: 1;
}

.modal-content {
    background: var(--black);
}

.form-check-input {
    background-color: var(--secondaryLightColor);
}

.form-check-input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.form-check {
    margin-bottom: 15px;
}

/* global css ends */
/* header starts */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 30px 0 0 0;
    transition: var(--transition500);
}

.main-header .container {
    position: relative;
}

.main-header .trigger {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 0px;
    z-index: 3;
    cursor: pointer;
    transition: top 0.1s ease-in-out;
}

.main-header .trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    margin: 0 0 5px 0;
    transition: all 0.2s ease-in-out;
    position: absolute;
}

.main-header .trigger span:first-child {
    top: 0;
    left: 0;
}

.main-header .trigger span:nth-child(2) {
    top: 10px;
    left: 0;
}

.main-header .trigger span:last-child {
    top: 20px;
    left: 0;
}

.main-header .trigger.on {
    top: 10px;
}

.main-header .trigger.on span:first-child {
    transform: rotate(45deg);
}

.main-header .trigger.on span:nth-child(2) {
    transform: rotate(-45deg);
    top: 0;
}

.main-header .trigger.on span:last-child {
    transform: rotate(45deg);
    top: 0;
}

.menu {
    background: var(--primaryColor);
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 2;
}

.bordered-content {
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/menu-border-outter.svg") 0 50% no-repeat;
    background-size: 100% 80% !important;
    height: 100%;
}

.bordered-block .circle {
    display: none;
}

.menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.menu-items li a {
    font-family: var(--secondaryFont);
    font-size: calc(2.5vw + 1rem);
    letter-spacing: -1px;
    color: var(--secondaryLightColor);
    text-transform: capitalize;
    text-decoration: none;
    transition: var(--transition500);
}

.menu-items li:hover a,
.menu-items li:focus a {
    color: var(--cream);
    transition: var(--transition500);
}

.organize a,
.logo {
    position: relative;
    z-index: 11;
    color: var(--cream);
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all linear 0.5s;
}

.organize a {
    word-break: break-word;
}

.logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 167px;
    transition: var(--transition500);
}

.logo img {
    width: 140px;
    transition: var(--transition500);
}

.main-header .colCount {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.main-header .colCount>.colSpan1 {
    grid-column: span 6;
    padding: 10%;
}

.main-header .colCount>.colSpan1:first-child {
    border-right: solid 1px var(--cream);
    padding-left: 25%;
}

.main-header .colSpan1 h3,
.main-header .colSpan1 p {
    color: var(--secondaryLightColor);
    margin-bottom: 30px;
}

.main-header .colSpan1 p {
    font-size: 18px;
    font-family: var(--primaryFont);
    word-break: break-word;
}

.main-header.fixed {
    min-height: 100px;
    transition: var(--transition500);
}

.main-header.fixed-black {
    background: var(--primaryColor);
    transition: var(--transition500);
}

.main-header.fixed .logo {
    top: -10px;
    width: 100px;
    transition: var(--transition500);
}

.main-header.fixed .logo-sm {
    display: block;
}

.main-header .logo-sm,
.main-header.fixed .logo-lg {
    display: none;
    width: 100%;
}

.main-header.fixed .logo-sm img {
    transition: var(--transition500);
}

.hamburger-menu {
    position: relative;
}

body.openMenu {
    overflow-y: hidden;
    height: 100vh;
}

/* header ends */
/* banner starts */
.banner {
    background: var(--sharkColor);
    background-position: 50% 50% !important;
    background-size: 100%;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    width: 100%;
    height: 140vh;
    min-height: 100vh;
    position: relative;
}

.banner .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 600px;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(28, 30, 31, 0.7) 0%, rgba(28, 30, 31, 0.1) 45.37%),
        linear-gradient(180deg, rgba(28, 30, 31, 0.1) 45.81%, rgba(28, 30, 31, 0.7)80%), rgba(28, 30, 31, 0.2);
}

.banner .h-full {
    height: 600px;
    min-height: 100vh;
}

.banner .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner h1 {
    letter-spacing: 0px;
    color: #fcf8ed;
    margin-bottom: 10%;
    text-align: center;
    /*margin-top: 25%;*/
    font-size: 120px;
    font-size: 6.45vw;
    letter-spacing: -2px;
    margin-left: -20px;
    margin-right: -20px;
}

.banner h1 span {
    display: block;
    font-family: var(--primaryFont);
    font-size: 19px;
    font-weight: 400;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 6.86px;
    text-align: center;
    margin-top: -15px;
    text-shadow: 0px 3px 9px rgba(0, 0, 0, 0.5);
}

.banner .text-underline {
    margin-top: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 12px;
    letter-spacing: 2.75px;
    /*border-bottom: 1px solid rgba(242, 211, 127, 0.5);*/
    color: var(--cream);
    padding-bottom: 5px;
    transition: var(--transition500);
}

/*.banner .text-underline:hover {*/
/*  text-decoration: none;*/
/*  color: var(--white);*/
/*  border-color: var(--white);*/
/*  transition: var(--transition500);*/
/*}*/
.link-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

.link-list li {
    margin-right: 20px;
}

.link-list li:last-child {
    margin-right: 0;
}

.link-list li a {
    font-size: 11px;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    color: var(--cream);
    padding: 0 0 10px 0;
    border-bottom: solid 1px transparent;
    transition: var(--transition500);
    text-decoration: none;
}

/*.link-list li:hover a,*/
/*.link-list li.active a {*/
/*  border-color: var(--cream);*/
/*  text-decoration: none;*/
/*  transition: var(--transition500);*/
/*}*/
.banner-image {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: all linear 0.5s;
}

/* banner ends */
.gradient-box {
    width: 100%;
    height: 150px;
    /* background: linear-gradient(180deg, #1c1e1f 0%, #fbf4e0 100%); */
}

/* about-section starts */
.about-section {
    padding: 160px 0 120px 0;
}

.about-section h2 {
    letter-spacing: 0px;
    margin-bottom: 30px;
}

.section-title {
    background: var(--cream);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    color: var(--primaryColor);
    letter-spacing: 2px;
}

.about-section h2 {
    color: var(--secondaryLightColor);
}

.about-section p {
    font-size: 18px;
    color: var(--secondaryLightColor);
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

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

.about-box {
    background: var(--secondaryLightColor);
    padding: 15px;
    margin-top: 120px;
}

.about-box-inner {
    border: solid 1px var(--cream);
    padding: 30px 0;
}

.about-box h3,
.about-box p {
    color: var(--primaryColor);
}

.about-box p {
    font-size: 14px;
}

.about-box .col-md-4 {
    padding: 0 3%;
    border-right: solid 1px var(--cream);
}

.about-box .col-md-4:last-child {
    border-right: none;
}

/* about-section ends */
/* events-section starts */
.events-section {
    background: var(--secondaryColor);
    padding: 60px 0;
}

.events-section .section-title {
    background: var(--primaryColor);
    color: var(--cream);
    margin-bottom: 70px;
}

.events-section h2,
.events-section p {
    color: var(--primaryColor);
    margin-bottom: 30px;
}

.events-section .sticky-md-top {
    top: 150px;
}

.event-image {
    position: relative;
    margin-bottom: 30px;
}

.event-image:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: solid 1px var(--cream);
    transition: var(--transition500);
}

.event-image:hover:before {
    transition: var(--transition500);
    border-width: 5px;
    left: 30px;
    top: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
}

.events-section ul {
    color: var(--primaryColor);
    padding-left: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5.34px;
    margin-bottom: 60px;
    /* list-style: none; */
}

.events-section ul li {
    margin-bottom: 15px;
    font-weight: 700;
    padding-left: 10px;
    /* list-style: disc; */
}

.events-section ul li:before {
    /* content: "��"; */
    font-size: 24px;
    vertical-align: middle;
    line-height: 18px;
    padding-right: 15px;
}

.events-section ul li:last-child {
    margin-bottom: 0px;
}

.event-info p {
    font-size: 14px;
    font-weight: 600;
}

/* events-section ends */
/* sales-section starts */
.sales-section {
    background: var(--secondaryLightColor);
    transition: var(--transition500);
}

.sales-section .section-title {
    background: var(--cream);
    position: absolute;
    top: 0;
    left: 0;
}

.sales-section .container {
    position: relative;
}

.panel {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    transition: var(--transition500);
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: cover !important;
}

.sales-section h5 {
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--primaryFont);
    margin-bottom: 30px;
    line-height: 2;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 5.34px;
}

.sales-section h5 b {
    letter-spacing: 6px;
}

.sales-section h5 span {
    display: block;
}

.sales-section p {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 400;
}

.vertical-carousel {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.vertical-carousel:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--cream);
}

.vertical-carousel li a {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding-left: 15px;
    font-weight: 300;
    border-left: solid 8px transparent;
    cursor: pointer;
    color: var(--cream);
    text-decoration: none;
}

.vertical-carousel li.active a {
    font-weight: 700;
    border-left-color: var(--cream);
}

.fixed-item {
    position: absolute;
    top: 50%;
    left: 0;
    height: 100vh;
    width: 50%;
    max-width: 375px;
    transform: translateY(-50%);
}

/* sales-section ends */
/* main-footer starts */
.main-footer {
    background: var(--primaryColor);
    padding: 30px 0;
}

.main-footer .link-list {
    padding: 0;
    margin: 0;
}

.main-footer p {
    color: var(--cream);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    margin: 0;
    text-align: right;
}

/* main-footer ends */
/* services-section starts */
.services-section {
    background: var(--primaryColor);
    padding: 120px 0 160px 0;
    overflow: hidden;
}

/* services-section ends */
/* contact-section starts */
.contact-section {
    background: var(--secondaryColor);
    padding: 60px 0 160px 0;
}

.contact-section .section-title {
    background: var(--primaryColor);
    color: var(--cream);
}

.contact-box {
    background: var(--secondaryLightColor);
    padding: 15px;
}

.contact-form {
    border: solid 1px var(--cream);
}

.contact-section .contact-title {
    background: var(--cream);
    color: var(--primaryColor);
    margin-left: 30px;
}

.contact-section hr.hr,
hr {
    background-color: var(--cream);
    margin-top: 60px;
    opacity: 1;
}

.quote {
    max-width: 84px;
    margin: 0 auto;
    background: var(--secondaryColor);
    padding: 0 15px;
    margin-top: -30px;
    display: block;
    position: relative;
    z-index: 10;
    -webkit-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

.contact-section h3 {
    text-align: center;
    margin: 30px auto 10px auto;
}

.contact-section h6 {
    text-align: center;
    font-family: var(--primaryFont);
    font-weight: 700;
    margin-bottom: 30px;
}

.companies {
    margin: 60px auto 120px;
}

.companies .companies-images {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 0.5rem;
}

.companies .companies-images img {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 1.5px;
    width: 218px;
    height: 90px;
    background: #e9c35b;
}

.c-box {
    padding: 60px 50px 0 50px;
}

.c-box.left-contact p span {
    font-weight: 500;
}

.left-contact h2 {
    padding-bottom: 20px;
}

.left-contact .contact-description {
    padding-bottom: 10px;
}

.contact-section input,
.contact-section textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(28, 30, 31, 0.25);
    height: 42px;
    padding: 0;
    color: var(--primaryColor);
    font-size: 14px;
    letter-spacing: 1.17px;
    border-radius: 0;
}

.contact-section textarea {
    height: 117px;
}

.form-group {
    margin-bottom: 30px;
}

/* contact-section ends */
/* services-section starts */
.services-box,
.modal-box {
    background: var(--secondaryLightColor);
    position: relative;
    padding: 15px;
}

.services-box-inner,
.modal-box-inner {
    border: solid 1px var(--cream);
    padding: 15px 50px 50px 15px;
    position: relative;
    z-index: 1;
}

.services-box-inner .mb-md-5 p {
    padding: 0 60px;
    font-size: 14px;
    font-weight: 700;
}

.services-box .section-title {
    top: -15px;
    position: relative;
    left: 50px;
}

.services-box .circle,
.modal-box .circle {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: var(--primaryColor);
    border-radius: 50%;
    z-index: 0;
    -webkit-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

.services-box .circle:nth-child(2),
.modal-box .circle:nth-child(2) {
    left: auto;
    right: -50px;
}

.services-box .circle:nth-child(3),
.modal-box .circle:nth-child(3) {
    left: auto;
    right: -50px;
    top: auto;
    bottom: -50px;
}

.services-box .circle:nth-child(4),
.modal-box .circle:nth-child(4) {
    top: auto;
    bottom: -50px;
}

.three-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.column {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 30px 45px;
    border-right: solid 1px var(--cream);
    text-align: center;
}

.column:last-child {
    border-right-color: transparent;
}

.column img {
    width: auto;
    margin: 0 auto 30px auto;
}

.column h3 {
    color: var(--primaryColor);
    padding-bottom: 20px;
}

.column p {
    font-weight: 700;
    letter-spacing: 1.17px;
    font-size: 14px;
}

.mw-80 {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.moda-box .section-title {
    position: relative;
    top: -15px;
    left: 50px;
}

.modal-box-inner {
    padding: 0 50px 50px 50px;
}

.modal-box-inner label {
    color: var(--primaryColor);
}

#select-me,
#select-me2 {
    display: none;
}

#select-me input,
#select-me2 input {
    border: none;
    border-bottom: 1px solid rgba(28, 30, 31, 0.25);
    width: 100%;
    max-width: 424px;
}

#select-me input::placeholder,
#select-me2 input::placeholder {
    display: none;
}

/* services-section ends */

/* New Change */

.events-section {
    background: var(--sharkColor);
    -webkit-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

.contact-section {
    background: var(--sharkColor);
    -webkit-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

.services-section {
    background: var(--sharkColor);
    -webkit-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

body {
    -webkit-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.carousel-item {
    margin-bottom: 50px;
}

.carousel-indicators {
    position: relative;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 8px;
    height: 8px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--cream);
    background-clip: padding-box;
    border: 0;
    /* border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; */
    opacity: 1;
    transition: opacity 0.6s ease;
    margin-top: 3px;
}

.carousel-indicators .active {
    border: 2px solid var(--cream);
    background: var(--secondaryColor);
    box-sizing: content-box;
    margin-top: 0px;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    border-radius: 50%;
    cursor: pointer;
}

/* .scroll-panel {
  scroll-snap-type: y proximity;
}
.scroll-panel .panel {
  scroll-snap-align: start;
} */

.sales-section {
    height: 150vh;
    position: relative;
}

.scroll-panel {
    position: absolute;
    /* bottom: 0; */
    width: 100%;
    z-index: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.scroll-panel.sticky-stop {
    position: absolute;
    bottom: 0;
    top: auto;
}

.sticky-section {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.vertical-carousel-tab {
    width: 8px;
    height: 22px;
    background-color: var(--cream);
    left: 0;
    position: absolute;
    top: 0;
}

.hidden {
    display: none;
}

#modal-form-3 .form-control {
    border: none;
    border-bottom: 1px solid #ced4da;
}

.event-info h3 a {
    text-decoration: none;
}

.flex-column input {
    background-color: var(--secondaryLightColor);
}

.form-control {
    background-color: var(--secondaryLightColor);
}

#modal-form-4 .form-control {
    border: none;
    border-bottom: 1px solid #ced4da;
    margin-bottom: 25px;
}

.modal-box h2 {
    font-size: 40px;
}

.form-control:focus {
    color: #212529;
    background-color: var(--secondaryLightColor);
}

.colSpan1-right {
    display: flex;
    align-items: center;
}

a.modal-form-back {
    text-decoration: none;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.modal-box h3 {
    margin-bottom: 15px;
}

.conformation-heading h1 {
    font-size: 115px;
    margin-top: 18%;
    margin-bottom: 5%;
}

.conformation-heading .conformation-text p {
    color: #fcf8ed;
    text-align: center;
    font-weight: 200;
}

h1.not-found-page {
    margin-top: 80%;
}

.main-footer p {
    text-transform: none;
}

.sticky-banner .overlay {
    position: fixed;
    bottom: 0;
}

.organize {
    letter-spacing: 2.75px;
}

.organize a::before,
.organize a::after {
    margin-top: 10px;
    top: 10px;
}

.event-info p,
.sales-section p,
.services-box-inner .mb-md-5 p {
    letter-spacing: 1.17px;
}


.text-underline,
.link-list li.active,
a.modal-form-back {
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.text-underline::before,
.text-underline::after,
a.modal-form-back::before,
a.modal-form-back::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -0.1rem;
    display: block;
    width: 100%;
    height: 1px;
    background: var(--cream);
    transition: 1.1s var(--ease-out-expo);
}

a.modal-form-back::before,
a.modal-form-back::after {
    background: var(--primaryColor);
}

a.modal-form-back:hover {
    color: var(--primaryColor);
}

.text-underline::before,
a.modal-form-back::before {
    transform: scaleX(0);
    transform-origin: left;
}

.text-underline::after,
a.modal-form-back::after {
    transform-origin: right;
    transition-delay: 0.25s;
}

.text-underline:hover::before,
a.modal-form-back:hover::before {
    transform: scaleX(1);
    transition-delay: 0.25s;
}

.text-underline:hover::after,
a.modal-form-back:hover::after {
    transform: scaleX(0);
    transition-delay: 0s;
}

.link-list li,
.organize a {
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.link-list li::before,
.link-list li::after,
.organize a::before,
.organize a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -0.1rem;
    display: block;
    width: 100%;
    height: 1px;
    background: var(--cream);
    transition: 1.1s var(--ease-out-expo);
    opacity: 0;
}

.link-list li:hover::before,
.link-list li:hover::after,
.link-list li.active::after,
.link-list li.active::before,
.organize a:hover::before,
.organize a:hover::after {
    opacity: 1;
}

.link-list li::before,
.organize a::before {
    transform: scaleX(0);
    transform-origin: left;
}

.link-list li::after,
.organize a::after {
    transform-origin: right;
    transition-delay: 0.25s;
}

.link-list li:hover::before,
.organize a:hover::before {
    transform: scaleX(1);
    transition-delay: 0.25s;
}

.link-list li:hover::after,
.organize a:hover::after {
    transform: scaleX(0);
    transition-delay: 0s;
}

.checkbox-error,
.radio-error {
    color: red;
}

.checkbox-error-budget {
    color: red;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgb(0 0 0 / 3%);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    color: red;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #000000;
    border: none;
}

.btn-secondary:before {
    z-index: -1;
}

body.page-template-page-confirmation .banner {
    height: 100vh;
}

.datepicker-dropdown {
    z-index: 99999999999999 !important;
}

.datepicker td,
.datepicker th {
    width: 30px;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    background-image: -moz-linear-gradient(top, #f2d37f, #f2d37f);
    background-image: -ms-linear-gradient(top, #f2d37f, #f2d37f);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2d37f), to(#f2d37f));
    background-image: -webkit-linear-gradient(top, #f2d37f, #f2d37f);
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(242 211 127);
}

.add-more-button,
.delete-button .form-label {
    cursor: pointer;
}

.ui-timepicker-container {
    z-index: 99999 !important;
}

.ui-timepicker-standard .ui-state-hover {
    background-color: #f2d37f;
    border: 1px solid #f2d37f;
}


ul.vertical-carousel li:last-child a {
    position: absolute;
    bottom: -2px;
}

input.form-control.wpcf7-not-valid::placeholder,
textarea.form-control.wpcf7-not-valid::placeholder {
    color: #ED3C5C;
}

.about-content {
    padding: 30px 0;
}

#custom-modal form.wpcf7-form.sent wpcf7-response-output {
    display: none;
}

.ui-timepicker-standard a {
    border: 1px solid transparent;
    color: #222;
    display: block;
    padding: 0.2em 0.4em;
    text-decoration: none;
    font-family: "Mollie glaston", "Kumbh Sans", sans-serif;
    font-size: 14px;
}

.bordered-block {
    width: 80%;
    margin: 0 auto;
}

.mspace {
    margin-top: 30px;
}

.date-form .add-date {
    margin-top: 20px;
}

.date-form .add-date.first-date {
    margin-top: 0px;
}

.prec-res {
    display: none;
}

p.ctl_form_3_add {
    padding-right: 10%;
}

h2.ctl_spec_title_form {
    margin-bottom: 40px; 
}