@import url('./color-palette.css');
@import url('./normalize.min.css');
@import url('./fonts.css');

*,
*:after,
*:before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none !important;
}

::-moz-selection {
    background: var(--secondary);
    color: var(--primary);
    text-shadow: none;
}

::selection {
    background: var(--secondary);
    color: var(--primary);
    text-shadow: none;
}

body {
    font-size: 1rem;
    line-height: 1.2;
    color: #0A2117;
    font-family: ProximaNova, sans-serif;
}


p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}


p:last-child {
margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

h1, .h1 {
    font-size: 4.375rem;
    line-height: 1.1;
    font-weight: 800;
}

h2, .h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

a {
    color: #fff;
    text-decoration: none;
}

b,strong {
    font-weight: 700;
}


a:focus,
a:hover {
    text-decoration: none;
}


img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}



/* ==========================================================================
	Header
========================================================================== */

.site-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0.66rem 0;
    z-index: 9;
}

.logo img {
    width: 100%;
    max-width: 10.4rem;
}


/* ==========================================================================
	Site Navigation
========================================================================== */

.main-navigation li {
    margin-right: 2.5rem;
}

.main-navigation li:last-child {
    margin-right: 0;
}

.main-navigation a {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.main-navigation a.active {
    color: var(--secondary);
}

.main-navigation__close {
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    cursor: pointer;
}

.main-navigation-trigger {
    margin-left: 1rem;
}

.main-navigation-trigger img {
    width: 2.5rem;
}


/* ==========================================================================
	Page Banner
========================================================================== */

.hero-banner {
    position: relative;
    margin-top: 5.3rem;
    min-height: calc(100vh - 5.3rem);
    padding: 4rem 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-banner__video, .hero-banner__video:before {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-banner__video:before {
content: "";
background-color: rgba(0,0,0,0.5);
}

.hero-banner__video video {
    width: auto;
    min-height: 100%;
    min-width: 100%;
}

.hero-banner__text {
    position: relative;
    z-index: 1;
}

.hero-banner__logo {
    max-width: 42rem;
    margin-bottom: 5rem;
}

.hero-banner__text h3 {
    margin-bottom: 30px;
}

/* ==========================================================================
	Form
========================================================================== */

#mc-embedded-subscribe.btn {
    border-radius: 2rem;
    border: 0;
}

#mc_embed_signup .mc-field-group input {
    font-size: 1.25rem;
    background: none;
    border: 0 !important;
    border-bottom: 1px solid var(--primary) !important;
    border-radius: 0;
    padding: 0.5rem 0;
    text-indent: 0;
}

#mc_embed_signup .mc-field-group input.mce_inline_error {
border-color: var(--error) !important;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 1rem;
    color: var(--error);
    margin-top: 0.6rem;
}

#mc_embed_signup .indicates-required {
    text-align: left;
    font-size: 1rem;
}

#mc_embed_signup form {
    margin: 0;
}

#mc_embed_signup .mc-field-group {
    width: 100%;
    display: block;
}

/* ==========================================================================
    Button
========================================================================== */

.btn {
    display: inline-block;
    padding: 0.763rem 1.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-radius: 2rem;
    border: 0;
    cursor: pointer;
    transition: 400ms ease-in-out;
}

.btn:hover {
    background-color: #c8db0f;
}

.btn-primary {
    background-color: var(--primary);
}

.btn-secondary {
    color: var(--primary);
    background-color: var(--secondary);
}

.btn-tertiary {
    background-color: var(--tertiary);
}

.btn-tertiary:hover {
    opacity: 1;
    background-color: var(--primary);
}


/* ==========================================================================
	Accordion
========================================================================== */

.accordion {
    margin: 4rem 0;
}

.accordion__block {
    border-bottom: 1px solid #fff;
    padding: 1.2rem 0;
}

.accordion__block:first-child {
    padding-top: 0;
}

.accordion__block-content {
    display: none;
    margin-top: 0.5rem;
}

.accordion__block-content a {
    color: #ecff33;
}

.accordion__block-header {
    margin-bottom: 0;
    cursor: pointer;
    padding-right: 2rem;
    background: url(../images/icons/plus.svg) no-repeat right center;
    transition: 350ms ease-in-out;
}

.accordion__block.is--active .accordion__block-header {
    background-image: url(../images/icons/minus.svg);
}

.faqs__item {
    display: none;
}

.faqs__item:nth-child(-n+6) {
    display: block;
}


/* ==========================================================================
	Box
========================================================================== */

.box {
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
}

.box__floating-btn {
    position: relative;
    bottom: -1rem;
}

.box__icon {
    height: 3.2rem;
 }
	
/* ==========================================================================
	Section
========================================================================== */

.section {
    padding: 5rem 0;
    position: relative;
}

.section__video {
    width: 100%;
    height: 38rem;
    border: 0;
}

.section__ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(6rem);
}

@keyframes glow {
    0% {
        transform: translate(0, 0);
        opacity: 0.8;
        box-shadow: 3rem 3rem 10rem rgba(216, 139, 46, 0.2);
    }
    50% {
        transform: translate(60%, 3%);
        opacity: 1;
        box-shadow: 4rem 4rem 15rem rgba(216, 139, 46, 0.5); /* Stronger shadow */
    }
    100% {
        transform: translate(0, 0);
        opacity: 0.8;
        box-shadow: 3rem 3rem 10rem rgba(216, 139, 46, 0.2); /* Original shadow */
    }
}

@keyframes glow2 {
    0% {
        transform: translate(0, 0);
        opacity: 0.8;
        box-shadow: 3rem 3rem 10rem rgba(149, 65, 216, 0.2);
    }
    50% {
        transform: translate(80%, -20%);
        opacity: 1;
        box-shadow: 4rem 4rem 15rem rgba(149, 65, 216, 0.5); /* Stronger shadow */
    }
    100% {
        transform: translate(0, 0);
        opacity: 0.8;
        box-shadow: 3rem 3rem 10rem rgba(149, 65, 216, 0.2); /* Original shadow */
    }
}

@keyframes glow3 {
    0% {
        transform: translate(0, 0);
        opacity: 0.8;
        box-shadow: 3rem 3rem 10rem rgba(236, 255, 516, 0.2);
    }
    50% {
        transform: translate(-40%, 5%);
        opacity: 1;
        box-shadow: 4rem 4rem 15rem rgba(236, 255, 51, 0.5); /* Stronger shadow */
    }
    100% {
        transform: translate(0, 0);
        opacity: 0.8;
        box-shadow: 3rem 3rem 10rem rgba(236, 255, 51, 0.2); /* Original shadow */
    }
}

.section__ball1 {
    width: 23rem;
    height: 23rem;
    background: rgba(216, 139, 46, 0.5);
    left: -12rem;
    top: 9rem;
    animation: glow 9s ease-in-out infinite;
}

.section__ball2 {
    width: 22rem;
    height: 22rem;
    background: rgba(149, 65, 216, 1);
    left: 14rem;
    bottom: 18rem;
    animation: glow2 10s ease-in-out infinite;
}

.section__ball3 {
    width: 33rem;
    height: 33rem;
    background: rgba(236, 255, 51, 0.3);
    right: -20rem;
    top: 4rem;
    animation: glow3 9s ease-in-out infinite;
}

.experience-section { 
    background: url(../images/experience-section-bg-solid.svg) no-repeat center;
    background-size: cover;
    padding: 27vh 0;
    min-height: 125vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    margin-bottom: -12rem;
    overflow: hidden;
}
.experience-section-container {
    padding: 8rem 0;
}
.map-section {
    z-index: 1;
    padding-top: 10rem !important;
}

.map-section .container {
    position: relative;
}

.map-section__icon {
    position: absolute;
}

.map-section__icon1 {
    top: -22rem;
    left: 0;
	max-width: 33rem;
}

.map-section__icon2 {
    right: 0;
    top: -19rem;
    max-width: 36rem;
}

.map-section__icon3 {
    left: -1rem;
    bottom: -15rem;
	max-width: 33rem;
}


/* ==========================================================================
	Map
========================================================================== */

.map-carousel-wrapper {
    margin-bottom: 3rem;
    padding: 0 4rem;
    background: url(../images/map.jpg) no-repeat;
    background-size: cover;
    position: relative;
	z-index: 1;
}

.map-carousel-wrapper .owl-nav {
    margin-bottom: 2rem;
}

.map-block__hotspot {
    background: url(../images/icons/plus-circle.svg) no-repeat;
    background-size: 100%;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.map-block__close {
    display: block;
    margin: 0 auto 0.5rem;
    text-align: center;
    background: url(../images/icons/close.svg) no-repeat;
    width: 0.875rem;
    height: 0.875rem;
    cursor: pointer;
}

.map-block-overstory {
    top: 16.2rem;
    left: 14rem;
}

.map-block-transportation-portal {
    top: 31rem;
    left: 13.2rem;
}

.map-block-night-storm {
    top: 28.5rem;
    left: 4.2rem;
}

.map-block-swamp-stories {
    top: 35rem;
    left: 13.5rem;
}

.map-block-nahlbows-sleep {
    top: 32.4rem;
    left: 23rem;
}

.map-block-weedy-butter {
    top: 38.4rem;
    left: 33rem;
}

.map-block-firespykles {
    top: 36.4rem;
    left: 40rem;
}

.map-block-tadcoy-ballet {
    bottom: -1rem;
    right: 13rem;
}

.map-block-light-forest {
    bottom: -7.2rem;
    right: 6rem;
}

.map-block-breathe-calm {
    bottom: 4.4rem;
    right: 6.2rem;
}

.map-block-coytrix {
    bottom: 6rem;
    right: 20rem;
}

.map-block-the-creek {
    top: 16rem;
    left: 26rem;
}

.map-block-woopee {
    top: 8rem;
    right: 23.5rem;
}

.map-block-reality-bites {
    top: 9.2rem;
    left: 19.5rem;
}


/* ==========================================================================
	Reviews Carousel
========================================================================== */

.owl-dots, .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.owl-carousel button.owl-dot {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin: 0 0.3rem;
    background-color: #D9D9D9;
}

.owl-carousel button.owl-dot.active {
    background-color: var(--primary);
}

.owl-nav button {
    margin: 0 0.5rem;
}

.owl-nav button.disabled {
    opacity: 0.2;
}

.reviews-carousel blockquote {
    margin: 0;
    padding: 1.5rem;
    border-radius: 1.5rem;
    opacity: 0.4;
    transition: 500ms ease-in-out;
    height: 100%;
}

.reviews-carousel .owl-stage-outer, .reviews-carousel .owl-stage {
    display: flex;
}

.reviews-carousel .owl-item {
    height: 100%;
}

.reviews-carousel .owl-item.active.center blockquote {
    opacity: 1;
}

.reviews-carousel blockquote em {
    margin: 0.25rem 0;
}


/* ==========================================================================
	Social Icons
========================================================================== */

.social-icons img {
    width: 1.8rem;
}

.social-icons a {
    display: block;
    margin-left: 1rem;
    transition: 400ms ease-in-out;
}

.social-icons a:hover {
    opacity: 0.7;
    transform: translate(0,-0.3rem);
}


/* ==========================================================================
	Footer
========================================================================== */

.site-footer {
    color: #fff;
    padding: 3rem 0 2rem;
}

.footer__item {
    margin: 2rem 0;
}

.footer__links, .footer__links a {
color: rgba(255,255,255,0.5);
transition: 400ms ease-in-out;
}

.footer__links a:hover {
    color: #fff;
}

.footer__links li {
    margin-right: 2.5rem;
}

.footer__links li:last-child {
    margin-right: 0;
}

.footer__nav li {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.125rem;
}

.footer__nav li:last-child {
    margin-bottom: 0;
}

.footer__logos {
    margin-bottom: 1.3rem;
}

.footer__logos-item {
    margin-right: 3rem;
}
.footer__logos-item:last-child {
    margin-right: 0;
}

.site-footer .logo {
    max-width: 100%;
}

.site-footer hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.5);
    margin: 2rem 0;
}


/* ==========================================================================
	Accessibility
========================================================================== */

.skip-link {
    position: absolute;
    visibility: hidden;
}

input:focus-visible, button:focus-visible, a:focus-visible {
    outline: 3px solid var(--primary);
}


/* ==========================================================================
	Reusable Generic Classes
========================================================================== */

.container {
    margin-right: auto;
    margin-left: auto;
    max-width: 75rem;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.container-sm {
    max-width: 53rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
  }
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  
  .col {
    flex: 1 0 0%;
  }

  .col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .position-relative {
    position: relative;
  }

  .z-1 {
    z-index: 1;
  }

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.align-self-end {
    align-self: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.d-block {
    display: block;
}

.list-unstyled {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.fw-semibold {
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-tertiary {
    color: var(--tertiary);
}

.text-warning {
    color: var(--warning);
}

.text-white {
    color: #fff;
}

.text-light {
    color: var(--light);
}

.text-white-50 {
    color: rgba(255,255,255,0.5);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-white {
    background-color: #fff;
}

.bg-light {
    background-color: var(--light);
}

.is--external-link {
    background: url(../images/icons/external-link.svg) no-repeat center right;
    padding-right: 1.5rem;
}

.lh-1 {
    line-height: 1;
}

.p-0 {
    padding: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-decoration-underline {
    text-decoration: underline;
}

.d-none {
    display: none !important;
}

/* ==========================================================================
	Media Queries
========================================================================== */

@media (min-width: 768px) {

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
      }

      .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
      }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
      }

      .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
      }
    
      .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
      }
    
      .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
      }

      .d-md-none {
        display: none !important;
      }

      .d-md-block {
        display: block !important;
      }

      .text-md-end {
        text-align: right;
      }

      .main-navigation__close, .main-navigation-trigger {
        display: none;
      }

      .map-carousel {
        display: block !important;
        position: static !important;
      }

      .map-block {
        position: absolute;
    }

    .map-block__content {
        background-color: #fff;
        font-size: 0.875rem;
        border-radius: 0.5rem;
        padding: 1rem;
        max-width: 16rem;
        margin-top: 1rem;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        position: relative;
        transition: 500ms ease-in-out;
    }

    .map-block__content.is--active {
        opacity: 1;
        visibility: visible;
        z-index: 3;
    }

    .map-block__content h6 {
        text-transform: none !important;
    }

    .map-block__content * {
        color: #000;
    }

      .footer__nav-wrapper {
        padding-left: 3rem;
      }

      .map-carousel-wrapper {
        width: 750px;
        height: 31rem;
    }

    .reviews-carousel {
        padding: 0 2rem;
    }
}

@media (min-width: 992px) {

    .map-carousel-wrapper {
        width: 980px;
        height: 38rem;
    }

}

@media (min-width: 1200px) {

    .row--col-xl-5 > * {
        width: 20% !important;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
      }

      .counter-wrapper li {
        border-right: 1px solid var(--light);
        margin-top: 3rem;
    }
    
    .counter-wrapper li:last-child {
        border-right: 0;
    }

      .site-footer .logo {
        max-width: 20rem;
    }

    .map-carousel-wrapper {
        width: 100%;
        height: 46rem;
    }
}

@media (min-width: 1900px) {

    html {
        font-size: 18px;
    }
    
    .hero-banner__logo {
        max-width: 52rem;
    }

    .section__ball2 {
        width: 28rem;
        height: 28rem;
    }
    
    .section__ball3 {
        width: 39rem;
        height: 39rem;
    }

	.experience-section {
		min-height: 135vh;
	}

}

@media (min-width: 2400px) {

	.experience-section {
		min-height: 150vh;
		margin-top: -5rem;
	}
}


@media (max-width: 1199px) {

    .hero-banner__video video {
        width: auto;
        height: 100%;
    }

    .map-section__icon {
        display: none;
    }

    .experience-section {
        min-height: 90vh;
    }

    .map-block-overstory {
        top: 13.3rem;
        left: 10.5rem;
    }
    
    .map-block-transportation-portal {
        top: 26rem;
        left: 10rem;
    }
    
    .map-block-night-storm {
        top: 24rem;
        left: 2.2rem;
    }
    
    .map-block-swamp-stories {
        top: 29.2rem;
        left: 10rem;
    }
    
    .map-block-nahlbows-sleep {
        top: 27.4rem;
        left: 18rem;
    }
    
    .map-block-weedy-butter {
        top: 32rem;
        left: 26.5rem;
    }
    
    .map-block-firespykles {
        top: 30.4rem;
        left: 32.5rem;
    }
    
    .map-block-tadcoy-ballet {
        bottom: -3rem;
        right: 9.5rem;
    }
    
    .map-block-light-forest {
        bottom: -8.2rem;
        right: 3.5rem;
    }
    
    .map-block-breathe-calm {
        bottom: 1.4rem;
        right: 4rem;
    }
    
    .map-block-coytrix {
        bottom: 3rem;
        right: 15rem;
    }
    
    .map-block-the-creek {
        top: 14.5rem;
        left: 20.5rem;
    }
    
    .map-block-woopee {
        top: 7rem;
        right: 18.2rem;
    }
    
    .map-block-reality-bites {
        top: 7.6rem;
        left: 14.7rem;
    }

    .section__ball1 {
        width: 15rem;
        height: 15rem;
        left: -12rem;
        top: 9rem;
    }
    
    .section__ball2 {
        width: 20rem;
        height: 20rem;
        left: 14rem;
        bottom: 15rem;
    }
    
    .section__ball3 {
        width: 28rem;
        height: 28rem;
        right: -20rem;
        top: 4rem;
    }
    
}


@media (max-width: 991px) {

    html {
        font-size: 15px;
    }

    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    h5 {
        font-size: 1.125rem;
    }

    .main-navigation li {
        margin-right: 1.5rem;
    }

    .hero-banner {
        min-height: 50rem;
    }

    .hero-banner__logo {
        max-width: 36rem;
    }

    .section__video {
        height: 25rem;
    }

    .map-block-overstory {
        top: 11.3rem;
        left: 6.5rem;
    }
    
    .map-block-transportation-portal {
        top: 21rem;
        left: 6.5rem;
    }
    
    .map-block-night-storm {
        top: 19rem;
        left: 0.5rem;
    }
    
    .map-block-swamp-stories {
        top: 23.8rem;
        left: 6.5rem;
    }
    
    .map-block-nahlbows-sleep {
        top: 22.4rem;
        left: 13rem;
    }
    
    .map-block-weedy-butter {
        top: 26rem;
        left: 20.5rem;
    }
    
    .map-block-firespykles {
        top: 24.5rem;
        left: 25rem;
    }
    
    .map-block-tadcoy-ballet {
        bottom: -4.2rem;
        right: 6.2rem;
    }
    
    .map-block-light-forest {
        bottom: -8.2rem;
        right: 1.5rem;
    }
    
    .map-block-breathe-calm {
        bottom: -0.6rem;
        right: 2rem;
    }
    
    .map-block-coytrix {
        bottom: 0.5rem;
        right: 10.5rem;
    }
    
    .map-block-the-creek {
        top: 10.5rem;
        left: 15.5rem;
    }
    
    .map-block-woopee {
        top: 5.5rem;
        right: 13.3rem;
    }
    
    .map-block-reality-bites {
        top: 6.2rem;
        left: 10.7rem;
    }
   
}


@media (max-width: 767px) {

    h1,h2 {
        font-size: 38px;
    }

    h1 br {
        display: none;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background-color: var(--primary);
        transition: 500ms ease-in-out;
    }

    .main-navigation--active {
        left: 0;
    }

    .main-navigation ul {
        display: block;
        padding: 3rem;
    }

    .main-navigation ul li {
        margin: 2rem 0;
    }

    .hero-banner {
        min-height: 620px;
    }

    .hero-banner__video video {
        width: 100%;
        height: auto;
    }

    .hero-banner__logo {
        max-width: 100%;
        margin-bottom: 4rem;
    }
	.hero-banner__text h3 {
		margin: 20px;
	}

    .box__item {
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section__video {
        height: 14rem;
    }

    .experience-section {
        min-height: 50rem;
        padding: 14rem 0 9rem;
        margin-top: -5rem;
    }
	
	.experience-section-container {
		padding: 4rem 1rem;
	}

    .section__map-wrapper, .map-block__hotspot {
        display: none !important;
    }

    .section__ball1 {
        display: none;
    }
    
    .section__ball2 {
        width: 16rem;
        height: 16rem;
        left: -5rem;
        bottom: 9rem;
    }
    
    .section__ball3 {
        width: 20rem;
        height: 20rem;
        right: -11rem;
        top: 15rem;
    }

    .map-carousel-wrapper {
        display: block;
        background: none;
    }

    .counter-wrapper li {
        margin-top: 2.5rem;
    }

    .accordion__block-header {
        background-size: 1.5rem;
    }

    .reviews-carousel blockquote {
        padding: 1rem;
    }

    .reviews-carousel .owl-item.active {
        min-width: 17rem;
    }

    .submit-btn-wrapper {
        display: block;
    }

    #mc_embed_signup .indicates-required {
        text-align: center;
        margin-top: 1rem;
    }

    #mc-embedded-subscribe.btn {
        margin: 1rem auto 0;
    }

    .footer__item {
        margin: 1.5rem 0;
    }

    .site-footer .social-icons {
        justify-content: center;
        margin-bottom: 3rem;
    }
    
    .footer__nav-wrapper {
        margin: 0;
        text-align: center;
    }

    .footer__links {
        display: block;
    }

    .footer__links-wrapper {
        margin-bottom: 0;
    }

    .footer__links li {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .footer__links li:last-child {
        margin-bottom: 0;
    }
   
}

.desktop{
	display:block;
}
.mobile{
	display:none;
}
@media (max-width: 767px) {
	
.desktop{
	display:none;
}
.mobile{
	display:block;
}
	
	
}