/* 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 */

#hero {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-height: 800px;
    overflow: hidden;
    position: relative;
}

#hero .octane-background img {
    object-position: 0% 25%;
}


/* services */

.services {
    display: flex;
}

.service {
    width: 33.3%;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-title {
    background: var(--style-main);
    margin: 0px;
    padding: 25px 10px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: #fff;
    font-size: 36px;
    z-index: 10;
}

.service:nth-of-type(2) .service-title {
    background: #f15a0d;
}

.service-hover {
    flex-grow: 1;
}

.service-content {
    padding: 15px;
    text-align: center;
    background: rgba(242, 105, 35, 80%);
    backdrop-filter: blur(5px);
    color: #fff;
    height: 100%;
    transform: translatey(-100%);
    opacity: 0;
    transition: .5s;
}

.service:hover .service-content {
    opacity: 1;
    transform: translatey(0%);
}

.service-content h3 {
    color: #fff;
}

.service-content li {
    text-align: left;
    list-style-type: disc;
    list-style-position: inside;
}

.service-content ul {
    margin-bottom: 20px;
}

.service-link {
    background: #fff;
    color: var(--style-main);
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 20px;
    display:block;
    width: fit-content;
    margin-inline: auto;
}

.service-link:hover {
    transform: scale(.95);
    color: var(--style-main);
    background: #fff;
}

.service .octane-background img {
    opacity: .4;
}



/* about */

.pad {
    padding: 75px 0px;
}

.regen-title {
    color: var(--style-main);
    font-size: 45px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight:bold;
}

.p-text {
    font-size: 18px;
    line-height: 1.8;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 200px;
}

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

.about-left, .about-right {
    width: 50%;
}

.about-left {
    text-align: center;
}

.about-right img {
    max-width: 500px;
    width: 100%;
    object-fit: contain;
}

/* cta */

.cta {
    background: var(--style-main);
}

.cta-flex {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

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

.cta-title {
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0px;
}

.cta-link {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    padding: 5px 30px;
    border: 3px solid #fff;
    text-align: center;
}

.cta-link:hover {
    color: #fff;
    transform: scale(.95);
}

/* textarea */
#text-area {
    background: var(--style-tri);
}

#text-area li {
    list-style-type: disc;
}

#text-area ul, #text-area ol {
    padding-left: 30px;
    margin-bnottom: 20px;
}

#text-area ol li {
    list-style-type: decimal;
}


/* tabs clinical */

#tabs .regen-title {
    text-align: center;
    display: block;
    font-weight: bold;
} 

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

.tabcontent {
  display: none;
}

.tabcontent:first-child {
    display: block;
}

.ui-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-link {
    background: var(--style-sec);
    color: #fff!important;
    font-size: 30px;
    text-align: center;
    width: 400px;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 20px;
    line-height: 1.2;
}

.tab-link:hover {
    background: rgba(242, 105, 35, .7);
    color: #fff;
}

.tab-link:active, .tablink:focus, .tablink:focus-within {
    color: #fff;
}

.ui-tabs-active .tab-link {
    background: var(--style-main);
}

.tab-title {
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    display: block;
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ui-tabs-panel {
    max-width: 660px;
    margin: auto;
    text-align: center;
}

.tab-content-link {
    background: var(--style-sec);
    color: #fff;
    padding: 5px 20px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.tab-content-link:hover {
    color: #fff;
    background: var(--style-main);
}


/* reviews */

#reviews {
    background: var(--style-tri);
}

#reviews .regen-title {
    text-align: center;
    display: block;
    font-weight:bold;
}


/* contact */

.contact-info {
    display: flex;
    gap: 40px;
    justify-content: space-around;
}

.contact-link {
    font-size: 24px;
    color: black;
    text-align: center;
    font-weight: 600;
}

.contact-link i {
    font-size: 100px;
    color: var(--style-main);
    margin-bottom: 30px;
    height: 100px;
    width: 100px;
    position: relative;
    z-index: 50;
    transition: .4s;
}

.contact-link i::after {
    content: "";
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: var(--style-sec);
    border-radius: 100%;
    transform: scale(.5);
    opacity: 0;
    z-index: -1;
    transition: .4s;
}

.contact-link:hover i::after {
    transform: scale(1.5);
    opacity: 1;
}

.contact-link:hover i {
    color: #fff;
}

.contact-link p {
    margin: 0px;
}


#map {
    height: 550px;
    position: relative;
}

#map p {
    height: 100%;
    width: 100%;
    margin: 0px;
}

#map iframe {
    height: 100%;
    width: 100%;
}








@media(max-width: 2000px) {
    .service-title {
        font-size: 25px;
    }
}


@media(max-width: 1450px) {
    .services {
        flex-wrap: wrap;
    }

    .service {
        width: 50%;
    }

    /* about */

    .about-left {
        width: 70%;
    }

    .about-right {
        width: 30%;
    }

    .about-flex {
        gap: 100px;
    }
    
}

@media(max-width: 1250px) {
    .cta-flex {
        flex-direction: column;
        justify-content: center;
    }

    #map {
        height: 400px;
    }
}

@media(max-width: 1150px) {
    .contact-link {
        font-size: 20px;
    }

    .contact-link i {
        font-size: 70px;
        height: 80px;
        width: 80px;
    }
}

@media(max-width: 1024px) {
    .service-title {
        font-size: 20px;
    }

    .pad {
        padding: 40px 0px;
    }

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

    /* about */

    .about-flex {
        flex-direction: column-reverse;
        gap: 30px;
    }

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

    .about-right img {
        margin-inline: auto;
        display:block;
        max-width: 250px;
    }

    /* cta */

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

    .cta-link {
        font-size: 20px;
    }

    /* tabs */

    .tabs-flex {
        flex-direction: column;
    }

    .ui-tabs-nav {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
    }

    .ui-tabs-tab {
        width: 48%;
        flex-grow: 1;
    }

    .tab-link {
        font-size: 16px;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

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

    /* contact */

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .contact-link i {
        font-size: 50px;
        height: 50px;
        width: 50px;
    }
    
}

@media(max-width: 768px) {
    .service {
        width: 100%;
    }

    .service-content {
        font-size: 16px;
        line-height: 1.2;
        opacity: 1;
        transform: translatey(0%);
        backdrop-filter: none;
    }

    .service .octane-background {
        position: relative;
        height: 200px;
    }

    .service .octane-background img {
        opacity: 1;
    }

    .service-content h3 {
        font-size: 18px;
    }

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

    .regen-title {
        font-size: 28px;
    }

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

    /* about */

    .about-right img {
        max-height: 150px;
    }

    /* cta */

    .cta-title {
        font-size: 28px;
    }

    /* contact */

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

    #map {
        height: 300px;
    }
    
}



#telehealth {
	background: white;
    padding: 50px 0;
}

.tele-flex {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.tele-title {
    color: var(--style-main);
}

.tele-link {
    color: var(--style-main);
    border-color: currentColor;
}

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

@media(max-width: 768px) {
    #telehealth {
        padding-block: 30px;
    }

    .tele-flex {
        gap: 15px;
    }
}