/* CSS Document */

/* Images as Background Images */

.octane-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.octane-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.octane-content {
    position: relative;
    height: 100%;
}

.octane-position {
    position: relative;
}

.hero-video {
  position: absolute;
  left: 0;
  top: 0;
  user-select: none;
  pointer-events: none;

  /*additional tweaks for positioning, read more in the link above*/
  height: 100%;
  width: 100%;
}

#hero video {
    width: 100% !important;
    height: 100%!important;
    object-fit:cover!important;
	pointer-events: none;
}

#hero .mejs-container, #hero .mejs-container .mejs-controls, #hero .mejs-embed, #hero .mejs-embed body {
	background: transparent !important;
}

.mejs-controls {
    display: none!important;
}

#hero .mejs-container,
#hero .wp-video-shortcode video, video.wp-video-shortcode {
	object-fit: cover;
    width: 100%!important;
    height: 100%!important;
}

#hero {
	position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;

    position: relative;
    overflow: hidden;
    max-height: 900px;
    margin: auto;
    aspect-ratio: 16 / 9;
}

.hero-flex {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 20px;
}

.hero-title {
    color: var(--style-main);
    color: #fff;
    font-weight: bold;
    font-size: 65px;
    margin: 0px;
    line-height: 1.1;
    text-wrap: balance;
    -webkit-text-shadow: 0px 1px 30px #000000;
    text-shadow: 0px 1px 30px #000000;
}

.hero-flex img {
    max-width: 375px;
    width: 100%;
    -webkit-filter: drop-shadow(0px 1px 6px #00000080);
    filter: drop-shadow(0px 1px 6px #00000080);
}

/* communities */

#communitites {
    background: rgba(163, 174, 108, .25);
}

.pad {
    padding: 150px 0px;
}

.l-title {
    color: var(--style-sec);
    font-weight: bold;
    text-wrap: balance;
    font-size: 45px;
}

.com-titles {
    display: flex;
    gap: 40px;
}

.com-titles .l-title, .com-titles p {
    width: 50%;
}

.com-titles p {
    color: var(--black);
    font-weight: 500;
    font-size: 20px;
}

/* communitites tabs */

.com-cards {
    display: flex;
    gap: 20px;
}

.com-card {
    width: calc((100% / 3) - 10px);
    background: var(--white);
    padding: 25px;
    box-shadow: var(--shadow);
}

.com-card div {
    color: var(--style-main);
    font-weight: 500;
}

.com-card ul {
    padding-left: 30px;
}

.com-card li {
    list-style-type: disc;
}

.tabs-flex {
    display: flex;
    gap: 20px;
    width: calc(66.6% - 10px);
    flex-grow: 1;
}

.tabs-flex::before, .tabs-flex::after {
    content: none;
}

.tabs-map {
    position: relative;
    aspect-ratio: 7 / 10;
    max-width: 400px;
    width: 50%;
    flex-grow: 1;
    box-shadow: var(--shadow);
}

.ui-tabs-panel {
    width: 50%;
    background: var(--white);
    flex-grow: 1;
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.ui-tabs-panel img {
     max-width: 400px;
    aspect-ratio: 6 / 3;
    object-fit: contain;
    width: 100%;
    
}

.ui-tabs-panel p {
    font-weight: 500;
    margin: 0px;
    color: black;
}

.tab-title {
    font-weight: bold;
    color: var(--black);
    font-size: 30px;
    line-height: 1.2;
}

.tab-content-link {
    background: var(--style-main);
    color: var(--white);
    padding: 5px 20px;
}

.tab-content-link:hover {
    box-shadow: var(--shadow);
    color: var(--white);
    background: var(--style-main);
    transform: scale(.95);
}

.tabs-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ui-tabs-tab {
    position: absolute;
    background: var(--white);
    border: 2px solid var(--style-main);
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    width: 7%;
    font-size: 70%;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.ui-tabs-active {
    background: var(--style-main);
    color: var(--white);
}

.ui-tabs-active a {
    color: var(--white);
}

.ui-tabs-tab:hover {
    transform: scale(1.5)
}

.ui-tabs-tab[aria-labelledby="ui-id-1"] {
    top: 43%;
    left: 40%;
}

.ui-tabs-tab[aria-labelledby="ui-id-2"] {
    top: 40%;
    left: 18%;
}

.ui-tabs-tab[aria-labelledby="ui-id-3"] {
    bottom: 40%;
    right: 37%;
}

.ui-tabs-tab[aria-labelledby="ui-id-4"] {
    bottom: 35%;
    right: 32%;
}

.mobile-tab-title {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    background: white;
    color: var(--style-main);
    font-weight: bold;
    text-align: center;
    padding: 5px;
    border: 1px solid var(--style-main);
    transform: translatex(-50%);
    width: 100px;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    line-height: 1.2;
    font-size: 10px;
}

.ui-tabs-tab:hover .mobile-tab-title {
    opacity: 1;
}


/* welcome */

.l-subtitle {
    font-size: 24px;
    color: var(--black);
    margin: 0px;
}

#welcome .l-subtitle, #welcome .l-title {
    text-align: center;
}

.welcome-flex {
    display: flex;
    gap: 40px;
}

.welcome-left {
    width: 60%;
}

.welcome-left p {
    font-size: 20px;
    font-weight: 500;
    color: black;
    line-height: 2;
}

.welcome-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.l-link {
    background: var(--style-main);
    color: var(--white);
    padding: 5px 20px;
    font-size: 20px;
    border: 3px solid var(--style-main);
    font-weight: 500;
}

.l-link:hover {
    background: var(--style-main);
    color: var(--white);
    transform: scale(.95);
    box-shadow: var(--shadow);
}

.l-link-white {
    background: var(--white);
    color: var(--style-main);
}

.l-link-white:hover {
    background: var(--white);
    color: var(--style-main);
}

.welcome-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    width: 40%;
}


/* faqs */

#faq {
    background: #c6cfdd;
}

#faq .l-title {
    margin: 0px;
}

#faq .l-subtitle {
    margin-bottom: 20px;
}

.faq-flex {
    display: flex;
    gap: 30px;
}

.faq-left {
    width: 30%;
}

.faq-right {
    width: 70%;
}

.faq-left iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

.accordion-list {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.accordion-list li {
    width: calc(50% - 10px);
}


/* plans */

#plans .l-subtitle, #plans .l-title {
    text-align: center;
}

#plans p {
    text-align: center;
    font-weight: 500;
    color: black;
    font-size: 20px;
}

.plans {
    display: flex;
    gap: 30px;
}

.plan {
    width: 25%;
    border: 3px solid var(--style-tri);
    border-radius: 20px;
    padding: 15px;
}

.plan-title {
    color: var(--style-tri);
    text-align: center;
    font-weight: 600;
}

.plan img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.plan img:nth-of-type(2) {
    border-radius: 0px;
    object-fit: contain;
}

.plan ul {
    margin: 15px 0px;
    padding: 15px 30px;
    border-block: 3px solid var(--style-tri);
    display: block;
}

.plan li {
    font-weight: 600;
    font-size: 20px;
}

.plan:hover li {
    color: var(--style-main);
}

.plan:hover {
    box-shadow: var(--shadow);
    transform: scale(.95)
}



/* blog */

#blog-section {
    background: #e8ebda;
}

#blog-section .l-title {
    text-align: center;
}

.blog-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.blog-post {
    background: #fff;
    max-width: 380px;
    box-shadow: var(--shadow);

    display: flex;
    flex-direction: column;
}

.blog-text {
    padding: 20px;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
}

.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-post-title {
    color: var(--style-sec);
    font-weight: 500;
    font-size: 20px;
}

.blog-excerpt {
    font-size: 18px;
    font-weight: 500;
    color: black;
    line-height: 1.3;
}

.blog-link {
    margin-top: auto;
    display: block;
    width: fit-content;
    color: var(--style-main);
    font-weight: 600;
    text-transform: uppercase;
}






@media(max-width: 1920px) {
    #hero {
        /* height: 800px; */
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-flex img {
        max-width: 250px;
    }

    /* communitites */
    .pad {
        padding: 100px 0px;
    }
    
}

@media(max-width: 1550px) {
    .com-titles {
        flex-direction: column;
        gap: 0px;
    }

    .com-titles .l-title, .com-titles p {
        width: 100%;
    }

    /* welcome */

    .welcome-left p {
        font-size: 18px;
        line-height: 1.5;
    }
    
}

@media(max-width: 1350px) {
    .plan-title {
        font-size: 18px;
    }

    .plan img {
        height: 150px;
    }

    .plan li {
        font-size: 16px;
    }
}


@media(max-width: 1250px) {

    .hero-title {
        font-size: 40px;
    }

    .hero-flex img {
        max-width: 200px;
    }

    /* communitites tabs */

    .com-cards {
        flex-direction: column;
    }

    .tabs-flex, .com-card {
        width: 100%;
    }

    /* plans */

    .plans {
        flex-wrap: wrap;
        gap: 10px;
    }

    .plan {
        width: calc(50% - 7px);
    }
    
}

@media(max-width: 1024px) {

    .hero-flex {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-title {
        font-size: 35px;
        text-align: center;
    }

    .hero-flex img {
        max-width: 100px;
    }

    /* communitites */

    .pad {
        padding: 75px 0px;
    }

    .l-title {
        font-size: 35px;
    }

    /* welcome */

    .welcome-flex {
        flex-direction: column-reverse;
    }

    .welcome-right, .welcome-left {
        width: 100%;
    }

    .welcome-right {
        flex-direction: row;
        gap: 10px;
    }

    .welcome-right img {
        width: 50%;
    }

    /* faq */

    .faq-flex {
        flex-direction: column;
        gap: 0px;
    }

    .faq-left {
        display: flex;
        gap: 20px;
        width: 100%;
    }

    .faq-left p {
        width: 50%;
    }

    .faq-right {
        width: 100%;
    }

    /* blog */

    .blog-container {
        flex-wrap: wrap;
    }

    
}

@media(max-width: 768px) {
    #hero {
        height: auto;
        aspect-ratio: initial;
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-flex {
        padding: 20px 0px;
    }

    #hero iframe {
        position: relative;
        aspect-ratio: 16 / 9;
    }

    .hero-title {
        font-size: 25px;
    }

    /* communitites */

    .pad {
        padding: 40px 0px;
    }

    .l-title {
        font-size: 30px;
    }

    .com-titles p {
        font-size: 16px;
        line-height: 1.3;
    }

    .tabs-flex {
        display: block;
    }

    .tabs-map img {
        display: none;
    }

    .tabs-map {
        aspect-ratio: auto;
        box-shadow: none;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
    }

    .ui-tabs-tab {
        position: relative!important;
        top: initial!important;
        left: initial!important;
        right: initial!important;
        bottom: initial!important;
        width: 50%;
        height: auto;
        aspect-ratio: initial;
        border-radius: 0px;
        flex-grow: 1;
    }

    .ui-tabs-tab:nth-child(odd) {
        border-left: 0px;
    }

    .ui-tabs-tab:nth-of-type(1), .ui-tabs-tab:nth-of-type(2) {
        border-bottom: 0px;
    }

    .tab-link {
        width: 100%;
        padding: 10px;
    }

    .ui-tabs-tab:hover {
        transform: none;
    }

    .mobile-tab-title {
        display: block;
        position: relative;
        opacity: 1;
        border: 0px;
        background: none;
        font-size: 16px;
        width: auto;
    }

    .ui-tabs-active .mobile-tab-title {
        color: #fff;
    }

    .ui-tabs-panel {
        width: 100%;
    }

    .tab-title {
        font-size: 20px;
    }

    .com-card {
        font-size: 16px;
        line-height: 1.3;
    }

    .com-card li {
        text-align: left;
    }

    /* welcome */

    .welcome-flex {
        gap: 20px;
    }

    .welcome-left p {
        font-size: 16px;
        line-height: 1.3;
    }

    .welcome-links {
        justify-content: center;
    }

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

    /* faq */

    .accordion-list {
        display: block;
    }

    .accordion-list li {
        width: 100%;
        text-align: left;
    }

    /* plans */

    .plan {
        width: 100%;
    }

    #plans p {
        font-size: 16px;
    }
    
}

@media(max-width: 550px) {
    .faq-left {
        display: block;;
    }

    .faq-left p {
        width: 100%;
    }
}