@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,500;1,6..12,600;1,6..12,700&display=swap');

:root {
    --my-clr: #416f7f;
    --my-clr-2: #86afba;
    --gradient-bg: #86afba, #416f7f;
    --gradient-text: #7dbccd, #66a7bf, #126c83, #0f6c83, #0f6c83, #0f6c83, #0f6c83, #0f6c83, #416f7f, #416f7f, #416f7f, #416f7f;
    --green-clr: #3e574b;
    --bg-clr: #F5F7F8;
}

::selection {
    background-color: var(--my-clr-2);
    color: white;
}

* {
    font-family: 'Nunito', sans-serif;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    background-color: var(--bg-clr);
    position: relative;
}

body.lock {
    overflow-y: hidden;
}

.alertBox-bg {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);
    z-index: 99999999999;
    opacity: 0;
    transition: 0.35s;
    pointer-events: none;
}

.alertBox-bg.active {
    opacity: 1;
    pointer-events: all;
}

.alertBox-bg .alertBox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.alertBox {
    width: 500px;
    background-color: white;
    padding: 12px 12px 20px 12px;
    border-radius: 15px;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
    scale: 0;
    transition: 0.35s;
}

.alertBox-bg.active .alertBox {
    scale: 1;
}

.alertBox .top-side {
    display: flex;
    align-items: top;
    justify-content: space-between;
    margin-bottom: 15px;
}

.alertBox.active .top-side {
    animation: alertBoxAnim 1s forwards ease-in-out;
    animation-delay: 0.3s;
}

@keyframes alertBoxAnim {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.alertBox h4 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gradient-bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.alertBox.active .alertBox p {
    animation: alertBoxAnim 1s forwards ease-in-out;
    animation-delay: 0.6s;
}

.alertBox .close {
    border: 0;
    background-color: var(--my-clr-2);
    width: 30px;
    height: 30px;
    font-size: 1rem;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
}

.alertBox .close:hover {
    background-color: var(--my-clr);
}

.alertBox .close:active {
    scale: 0.9;
}

::-webkit-scrollbar {
    width: 0;
}

nav {
    width: 100%;
    height: 10vh;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    z-index: 100000;
}

nav.bg {
    background-color: var(--bg-clr);
}

nav .navBarBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(50px);
    z-index: -1;
    transition: 0.2s ease-in-out;
    opacity: 0;
}

nav.active .navBarBg {
    opacity: 0.9;
    background-color: var(--bg-clr);
}

nav.active .menus .menu {
    background: linear-gradient(135deg, black, var(--gradient-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 5000% 100%;
}

nav .side {
    gap: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.container {
    width: 1200px;
    margin: auto;
}

.logo {
    user-select: none;
    cursor: pointer;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--gradient-bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    transition: 0.4s ease-in-out;
}

.menus {
    transition: 0.35s opacity ease-in-out, 0.35s transform;
}

.btns,
.menus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
    user-select: none;
    cursor: pointer;
}

.menus .menu {
    text-decoration: none;
    background: linear-gradient(135deg, white, var(--gradient-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 5000% 100%;
    transition: 0.7s ease-in-out;
    position: relative;
    font-weight: bold;
}

.menus .menu:hover {
    transition: 0.3s ease-in-out;
    background-size: 100% 100%;
}

.menus .menu.clicked {
    background-size: 100% 100%;
    animation: menuAnim 1.5s forwards ease-in-out;
}

@keyframes menuAnim {
    0% {
        scale: 1;
    }

    5% {
        scale: 0.97;
    }

    20% {
        scale: 1.08;
    }

    80% {
        scale: 1.08;
    }

    100% {
        scale: 1;
    }
}

.menus .menu::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-bg));
    width: 0;
    height: 4px;
    opacity: 0;
    border-radius: 50px;
    transition: 0.4s;
}

.menus .menu.clicked::after {
    width: 100%;
    opacity: 1;
}

.header-container .text-link {
    position: relative;
    text-align: center;
    margin-top: 10px;
    width: fit-content;
    text-align: center;
}

.text-link .whatisBox {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    top: 140px;
    transition: 0.3s;
    z-index: 10;
}

.text-link.active .whatisBox {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.text-link .whatisBox .whatisBox-container {
    width: 280px;
    background: linear-gradient(135deg, var(--gradient-bg));
    padding: 15px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    text-align: start;
}

.text-link.active button {
    transition: 0.3s ease-in-out;
    background-size: 100% 100%;
}

.text-link button .icon {
    transition: 0.35s;
}

.text-link.active button .icon {
    margin-left: 30px;
}

.text-link button {
    text-decoration: none;
    background: linear-gradient(135deg, white, var(--gradient-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 5000% 100%;
    transition: 0.7s ease-in-out;
    position: relative;
    border: 0;
    outline: 0;
    font-size: 0.95rem;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 7px;
    cursor: pointer;
}

.text-link button:hover {
    transition: 0.3s ease-in-out;
    background-size: 100% 100%;
}

.goBtn {
    text-align: center;
    padding: 13px 25px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--gradient-bg));
    color: white;
    font-size: 0.95rem;
    transition: 0.3s ease-in-out;
    background-size: 100% 100%;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-weight: bold;
    user-select: none;
}

.goBtn:hover {
    background-size: 400% 350%;
}

.goBtn:active {
    background-size: 400% 350%;
    transition: 0.1s ease-in-out;
    scale: 0.96;
}

.header-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-links .goBtn {
    width: 280px;
    font-size: 1.1rem;
    opacity: 0;
    animation: titleTextAnim 1s forwards ease-in-out;
    animation-delay: 0.8s;
}

/** Header */
.header-container {
    height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 70px;
    display: flex;
}

.header-contact {
    height: 320px;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--gradient-bg));
}

.header-contact h1 {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.3rem;
    user-select: none;
}

.header-contact h1::selection {
    background-color: white;
    color: var(--my-clr-2);
}

.header-video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    z-index: -100;
}
.header-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.header-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.header-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact
{
    padding: 70px 0 0 0;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact .container
{
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.contact-img {
    width: 300px;
    padding: 10px;
    transition: 0.3s;
}

@media (min-width:800px) {
    .contact-img
    {
        animation: contactImgAnim 6s infinite ease-in-out;
        transform: translateY(-30px);
    }
    @keyframes contactImgAnim {
        0%
        {
            transform: translateY(-30px);
        }
        25%
        {
            transform: translateY(20px);
        }
        50%
        {
            transform: translateY(-30px);
        }
        75%
        {
            transform: translateY(20px);
        }
        100%
        {
            transform: translateY(-30px);
        }
    }
}

.contact-img img {
    height: 100%;
    width: 100%;
    user-select: none;
    object-fit: cover;
}

.contact-form {
    width: 400px;
}

.contact-form form {
    margin-top: 35px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form form input[type="submit"] {
    border: 0;
}

.contact-form form input,
.contact-form form textarea {
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.35s;
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
    opacity: 0.6;
}

.header-container .bg {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.header-container .bg .boxes {
    display: flex;
    align-items: end;
    justify-content: end;
}

.header-container .bg .boxes .box {
    width: 650px;
    height: 600px;
    background: var(--my-clr-2);
    border-radius: 50%;
    position: absolute;
    filter: blur(150px);
    opacity: 0;
    scale: 0;
    animation: headerBoxAnim 2s forwards ease-in-out;
    animation-delay: 0.6s;
    top: 13%;
    transition: 0.6s;
}

.header-container .bg .boxes .box:nth-child(1) {
    left: -400px;
    z-index: -1;
}

.header-container .bg .boxes .box:nth-child(2) {
    right: -400px;
    z-index: -2;
}

@keyframes headerBoxAnim {
    0% {
        opacity: 0;
        scale: 0;
    }

    100% {
        opacity: 1;
        scale: 1;
    }
}

.header-container .header-container,
.managers .managers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    height: 100%;
}

.manager-content {
    width: 285px;
    height: 285px;
    position: relative;
    margin-bottom: 80px;
    transition: 0.25s scale;
}

.social-links-border {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.manager-content:hover .social-links {
    transform: translate(0);
    opacity: 1;
}

.manager-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(0,0) scale(0);
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: 0.35s;
    z-index: 2;
    border-radius: 50% 50% 0 50%;
}

.manager-detail {
    text-align: right;
    padding-top: 15px;
}

.manager-detail h2 {
    color: #0057E7;
    margin-bottom: 0.5rem;
    font-size: 24px;
}

.manager-detail p {
    opacity: 0.5;
}

@media (hover: hover) {
    .manager-content:hover:after {
        transform: translate(-50%,-50%) scale(1);
        opacity: 1;
    }
}

.manager-img-container {
    width: 100%;
    height: 100%;
}

.manager-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50% 50% 0 50%;
}

.manager-content .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #0057E7;
    border-radius: 100px 100px 0 100px;
    padding: 3px;
    gap: 3px;
    transform: translate(50px,50px);
    opacity: 0;
    transition: 0.45s;
    z-index: 3;
}

.manager-content .social-links .social-link {
    font-size: 22px;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
    border: 2px solid transparent;
}

.manager-content .social-links .social-link:hover {
    background-color: #66a7bf;
    border: 2px solid #86afba;
}

.manager-content .social-links .social-link:active {
    scale: 0.95;
}

.header-container .container {
    display: flex;
    align-items: top;
    justify-content: center;
}

.header-content {
    text-align: center;
}

.header-title {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.header-title .titles {
    /* background: linear-gradient(135deg, var(--gradient-bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: fit-content;
}

.header-title .header-title-image
{
    width: 100%;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    animation: titleImageAnim 1s forwards ease-in-out;
    animation-delay: 0.3s;
    position: absolute;
    opacity: 0;
}

.header-title .titles img {
    height: 110px;
    user-select: none;
}

@keyframes titleImageAnim {
    0% {
        top: -150px;
        opacity: 0;
    }

    100% {
        top: -115px;
        opacity: 1;
    }
}

.header-title .titles h1 {
    font-size: calc(4vw + 4vh + 2vmin);
    font-weight: 500;
    user-select: none;
    transition: 0.3s;
}

.header-title .titles h1::selection,
.header-title .titles h2::selection {
    background-color: rgb(254,254,254);
    -webkit-text-fill-color: var(--my-clr);
    text-shadow: 0 0 0 transparent;
}

.whatisBox-container p::selection {
    background-color: white;
    color: var(--my-clr-2);
}

.titles.header-title-top {
    border-radius: 25px;
    margin-bottom: 10px;
    width: fit-content;
    opacity: 0;
    animation: titleTextAnim 1s forwards ease-in-out;
    animation-delay: 0.6s;
}

.titles.header-title-bottom {
    border-radius: 25px;
    opacity: 0;
    animation: titleTextAnim 1s forwards ease-in-out;
    animation-delay: 0.75s;
    width: 100%;
}

.titles.header-title-bottom h2
{
    transition: 0.35s;
}

@keyframes titleTextAnim {
    0% {
        transform: translateY(-25px);
        opacity: 0;
    }

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

.header-img {
    transform: translateY(20px);
}

.header-img img {
    width: 600px;
    height: 640px;
}

.header-links .menu {
    opacity: 0;
    animation: opacityAnim 1.5s forwards ease-in-out;
    animation-delay: 1.25s;
    scale: 0.9;
    font-weight: bold;
    font-size: 18px;
}

.text-link button:hover,
.header-links .text-link.active .menu {
    text-shadow: 0 0 3px white;
}

@keyframes opacityAnim {
    0% {
        opacity: 0;
        scale: 0.9;
    }

    100% {
        opacity: 1;
        scale: 1;
    }
}

.header-links .app-links {
    margin-top: 120px;
    user-select: none;
}

.header-links .app-links .side {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.app-links .app-link-border {
    width: 175px;
    height: 50px;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.35s;
}

.app-links .app-link-border:active {
    scale: 0.9;
}

.header-links .app-links img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.app-links .app-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    opacity: 0;
    scale: 0.3;
    animation: appLinkAnim 0.7s forwards ease-in-out;
    user-select: none;
    transition: 0.35s;
}

.app-links .appstore {
    background: #A2A2A3;
    animation-delay: 0.4s;
}

.app-links .playstore {
    background: linear-gradient(to right, #0057E7, #008744, #D62D20, #FFA700);
    animation-delay: 0.7s;
}

@keyframes appLinkAnim {
    0% {
        scale: 0.3;
        opacity: 0;
    }

    100% {
        scale: 1;
        opacity: 1;
    }
}

/** Managers */

.title {
    font-size: 32px;
    text-align: center;
    color: #86afba;
    position: relative;
    width: fit-content;
    margin-bottom: 5rem;
    transition: 0.2s font-size;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--gradient-text));
}

.title::selection {
    background-color: #86afba;
    color: white;
}

#Managers {
    height: 0;
}

.managers {
    min-height: 100svh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10svh 0;
}

.managers-container {
    flex-direction: column;
    gap: 45px;
    user-select: none;
}

.managers-container .side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 90px;
    border-radius: 30px;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.3);
    background-color: white;
    width: 1040px;
    height: 450px;
    transition: 0.4s;
    overflow: hidden;
}

.main-title h1 {
    font-size: 2.813rem;
    position: relative;
    transition: 0.35s;
}

.main-title h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 50px;
    height: 3px;
    border-radius: 1rem;
}

.main-title h1::selection {
    color: white;
}

.managers .main-title h1 {
    color: var(--green-clr);
}

.managers .main-title h1::after,
.managers .main-title h1::selection {
    background-color: var(--green-clr);
}

.contact .main-title h1 {
    color: var(--my-clr-2);
}

.contact .main-title h1::after,
.contact .main-title h1::selection {
    background-color: var(--my-clr-2);
}

.manager-name h1 {
    text-decoration: none;
    font-size: 1.875rem;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--gradient-bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
}

.manager-name h1::selection {
    background: var(--my-clr-2);
    -webkit-text-fill-color: white;
}

.manager-name h4 {
    font-size: 1.375rem;
    font-style: italic;
    font-weight: 100;
    color: var(--green-clr);
}

.manager-name h4::selection {
    background-color: var(--green-clr);
    color: white;
}

.manager-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    user-select: none;
}

.managers .bg {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.managers .bg .boxes {
    display: flex;
    align-items: end;
    justify-content: end;
}

.managers .bg .boxes .box {
    width: 765px;
    height: 765px;
    background: linear-gradient(135deg, var(--gradient-bg));
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
    scale: 1;
}

.managers .bg .boxes .box:nth-child(1) {
    top: -150px;
    left: -170px;
    z-index: -1;
    animation: circleBoxAnim1 9s infinite ease-in-out;
}

@keyframes circleBoxAnim1 {
    0% {
        top: -150px;
        left: -170px;
        scale: 1;
    }

    5% {
        scale: 0.6;
    }

    10% {
        top: 390px;
        left: 68%;
        scale: 1;
    }

    70% {
        top: 390px;
        left: 68%;
        scale: 1;
    }

    75% {
        scale: 0.6;
    }

    80% {
        top: -150px;
        left: -170px;
        scale: 1;
    }
}

.managers .bg .boxes .box:nth-child(2) {
    bottom: -150px;
    right: -85px;
    z-index: -2;
    width: 670px;
    height: 670px;
    animation: circleBoxAnim2 9s infinite ease-in-out;
}

@keyframes circleBoxAnim2 {
    0% {
        bottom: -150px;
        right: -85px;
        scale: 1;
    }

    5% {
        scale: 0.6;
    }

    10% {
        bottom: 390px;
        right: 70%;
        scale: 1;
    }

    70% {
        bottom: 390px;
        right: 70%;
        scale: 1;
    }

    75% {
        scale: 0.6;
    }

    80% {
        bottom: -150px;
        right: -85px;
        scale: 1;
    }
}

.managers-slider {
    width: 100%;
    height: 380px;
    display: flex;
    justify-content: center;
}

.managers-slider .container {
    width: 1040px;
}

/*  What is HealthCare?  */
#Whatis {
    height: 0;
}

.whatis-container {
    position: relative;
    background: linear-gradient(135deg, var(--gradient-bg));
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: 0;
}

.whatis-container.active {
    height: 600px;
    padding: 140px 0 140px;
}

@media (max-width: 907px) {
    .whatis-container.active {
        height: 650px;
    }
}

.whatis-container .side {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    position: relative;
}

.whatis-wave {
    width: 200%;
}

.whatis-wave .wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100px;
    /* background: url(img/extensions/wave.png); */
    background: url(img/extensions/cloud.png);
    background-size: 1300px 100px;
}

.whatis-wave-2 .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* background: url(img/extensions/wave-2.png); */
    background: url(img/extensions/cloud-2.png);
    background-size: 1300px 100px;
}

.contact-wave-2 .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* background: url(img/extensions/wave-2.png); */
    background: url(img/extensions/cloud-2.png);
    background-size: 1300px 100px;
}

.wave#wave1 {
    z-index: 800;
    opacity: 1;
    bottom: 0;
    animation: animateWave 12s linear infinite;
}

.wave#wave1-front {
    z-index: 800;
    opacity: 1;
    bottom: 0;
    animation: animateWave 11s linear infinite;
}

.wave#wave2 {
    z-index: 799;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_2 12s linear infinite;
    transform: scaleX(-1);
}

.wave#wave3 {
    z-index: 800;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 8s linear infinite;
}

.wave#wave4 {
    z-index: 799;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_2 8s linear infinite;
    transform: scaleX(-1);
}

@keyframes animateWave {
    0% {
        background-position-x: 1300px;
    }

    100% {
        background-position-x: 0;
    }
}

@keyframes animateWave_2 {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1300px;
    }
}

.whatis-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    color: white;
    width: 50%;
}

.whatis-content h1 {
    position: relative;
    font-size: 2.813rem;
    line-height: 1.6;
}

.whatis-content h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: white;
}

.whatis-content p {
    font-weight: 400;
    font-size: 1.063rem;
}

.main-footer-section h1::selection,
.main-footer-section i::selection,
.main-footer-section a::selection {
    color: var(--my-clr);
    background-color: white;
}

.whatis-content h1::selection,
.whatis-content p::selection,
.footer-section-under h1::selection,
.footer-section-under h2::selection {
    color: var(--my-clr-2);
    background-color: white;
}

.whatis-video {
    width: 50%;
    z-index: 1;
    position: relative;
}

.whatis-video iframe {
    width: 500px;
    border-radius: 20px;
    height: 280px;
}

/** Footer */

footer .footer-section {
    margin-top: 110px;
    padding: 20px 120px;
    display: flex;
    justify-content: center;
    background: linear-gradient(var(--gradient-bg));
    color: white;
    /* border-radius: 30px 30px 0 0; */
    box-shadow: 0 10px 20px black;
    transition: 0.4s;
}

footer .footer-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-section .footer-section-under {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    height: 140px;
}

footer .footer-section .footer-section-under h1 {
    font-size: 2.3rem;
    transition: 0.4s;
}

footer .footer-section .footer-section-under img {
    width: 80px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 3px;
    background-color: white;
    border-radius: 15px;
    user-select: none;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

footer .main-footer {
    display: flex;
    justify-content: center;
    background-color: var(--my-clr);
    padding: 100px 120px 50px 120px;
    transition: 0.4s;
}

footer .main-footer .container {
    display: flex;
    flex-direction: column;
}

footer .main-footer-sections {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
    width: 100%;
}

footer .footer-menus {
    display: flex;
    align-items: top;
    justify-content: space-between;
    width: 58%;
}

footer .main-footer .main-footer-section:first-child {
    display: flex !important;
    flex-direction: column !important;
    color: white !important;
    gap: 10px !important;
}

.italic {
    font-style: italic;
}

/* footer .main-footer .main-footer-section:first-child p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
footer .main-footer .main-footer-section:first-child h1 {
    font-weight: 750;
} */
footer .main-footer-links {
    display: flex;
    gap: 12px;
    width: max-content;
    border-top: 1px solid rgba(255, 255, 255, 0.348);
    padding: 20px 0;
}

footer .main-footer-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    width: max-content;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

footer .main-footer-links a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

footer .main-footer-links a:active {
    scale: 0.9;
}

footer .main-footer-links i {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 19px;
    border-radius: 50px;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    transition: 0.4s;
}

footer .main-footer .main-footer-section {
    color: white;
    display: flex;
    font-size: 0.9rem;
    flex-direction: column;
    gap: 10px;
}

footer .main-footer .main-footer-section .footer-section-title {
    font-weight: 700;
    margin-bottom: 20px;
    height: 16px;
    font-size: 1.2rem;
    user-select: none;
}

footer .main-footer .main-footer-section a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

footer .main-footer .main-footer-section a:hover {
    text-decoration: none;
}

footer .main-footer .main-footer-section a:hover {
    text-decoration: underline;
}

footer .main-footer .main-footer-section .main-footer-links a:hover {
    text-decoration: none;
}

footer .main-footer .download-app {
    margin-top: 70px;
}

footer .main-footer .download-app a {
    width: 175px;
    height: 50px;
    overflow: hidden;
    border-radius: 10px;
}

footer .download-app .appstore {
    background: #A2A2A3;
}

footer .download-app .playstore {
    background: linear-gradient(to right, #0057E7, #008744, #D62D20, #FFA700);
}

footer .download-app .app-links {
    width: 100%;
    display: flex;
    gap: 7px;
}

footer .download-app .app-links img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

nav .hamburgerBar {
    font-size: 1.4rem;
    display: none;
}

/*  SSS  */

.sss {
    padding: 70px 0 0 0;
    min-width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.sss-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: center;
    gap: 15px;
}

.sss-container h1 {
    display: flex;
    position: relative;
    align-items: center;
    gap: 6px;
    background-size: 200% 100%;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--gradient-bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 10px;
}

.sss-container h1::after {
    content: '';
    position: absolute;
    left: 0;
    background-color: var(--my-clr-2);
    bottom: -4px;
    height: 3px;
    width: 100px;
    border-radius: 1rem;
}

.sss-container .plus-icon {
    width: 1.2rem;
}

.sss-container p
{
    font-size: 1.1rem;
}



@media (max-width:1250px) {
    .managers-container {
        flex-wrap: wrap;
        width: 600px;
        margin: auto;
    }

    nav .menus {
        position: fixed;
        top: 0;
        left: 0;
        background-color: white;
        height: 100vh;
        width: 100vw;
        flex-direction: column;
        opacity: 0;
        transform: translateY(-100px);
        pointer-events: none;
        z-index: -1;
    }

    .btns {
        gap: 15px;
    }

    nav .menus.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    nav .hamburgerBar {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        width: 30px;
    }

    .whatis-container .side {
        width: 96%;
    }

    .whatis-video iframe {
        width: 100%;
    }

    nav .side {
        justify-content: space-between;
        width: 96%;
    }
}

@media (max-width:1080px) {
    .managers-container .side {
        width: 91.5%;
    }

    .managers .bg .boxes .box:nth-child(1),
    .managers .bg .boxes .box:nth-child(2) {
        width: 94%;
        height: 420px;
        border-radius: 38px;
        animation: none;
    }

    .managers .bg .boxes .box:nth-child(1) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -41.7%);
    }

    .managers .bg .boxes .box:nth-child(2) {
        top: 50%;
        right: 50%;
        transform: translate(50%, -41.7%);
    }

    footer .main-footer {
        padding: 100px 20px 50px 20px;
    }

    footer .footer-section {
        padding: 20px 20px;
    }
}

@media (max-width:800px) {
    .managers-container .side {
        width: 90.5%;
        height: 90%;
        padding: 0;
        padding-left: 20px;
    }

    .managers .bg .boxes .box:nth-child(1),
    .managers .bg .boxes .box:nth-child(2) {
        height: 820px;
        top: 42.8%;
    }

    .manager-img {
        width: 100%;
    }

    .manager-img img {
        width: 100%;
        height: 100%;
    }

    .whatis-container .side {
        flex-direction: column;
    }

    .whatis-content,
    .whatis-video {
        width: 95%;
    }

    .whatis-video iframe {
        height: 525px;
    }

    footer .main-footer-sections {
        flex-direction: column;
    }

    footer .footer-menus {
        width: 100%;
    }

    footer .main-footer .main-footer-section.left-side {
        width: 100%;
    }

    footer .main-footer-links {
        justify-content: space-between;
        width: 100%;
        padding: 20px 5px;
        gap: 5px;
    }

    footer .download-app .app-links {
        justify-content: center;
    }

    .whatis-container {
        padding: 140px 0 140px;
    }

    .whatis-container.active {
        height: 1100px;
    }

    .header-container .bg .boxes .box:nth-child(1) {
        left: -600px;
    }

    .header-container .bg .boxes .box:nth-child(2) {
        right: -600px;
    }
    
    .contact-img
    {
        display: none;
    }

    .contact .side
    {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width:650px) {
    .managers-container {
        width: 80%;
        margin: auto;
    }

    .managers-container .manager-content .social-links {
        transform: translate(0);
        opacity: 1;
    }

    .manager-content .social-links .social-link {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .managers-container .side {
        display: block;
        height: 75%;
    }

    .manager-img img {
        height: 80%;
    }

    .managers {
        height: max-content;
    }

    .managers .bg .boxes .box:nth-child(1),
    .managers .bg .boxes .box:nth-child(2) {
        height: 870px;
        top: 43.65%;
    }

    .managers-container .side {
        padding-top: 12px;
    }

    .managers-container .side {
        padding-left: 0;
    }

    nav .side {
        gap: 10px;
    }

    .whatis-video iframe {
        height: 440px;
    }

    .whatis-container.active {
        height: 1050px;
    }

    .managers-container
    {
        animation: none;
    }

    .managers .title {
        font-size: calc(1vw + 1vh + 2vmin);
    }
}

@media (max-width:620px) {
    footer .footer-section .footer-section-under img {
        display: none;
    }

    .app-links .app-link-border {
        width: 150px;
        height: 40px;
    }

    .whatis-video iframe {
        height: 420px;
    }
}

@media (max-width:500px) {
    .logo {
        font-size: 1.2rem;
    }

    .btns
    {
        gap: 5px;
    }

    .goBtn {
        padding: 10px 12px;
    }

    .header-title .titles h1 {
        text-align: center;
    }

    .header-container .side {
        width: 100%;
        flex-direction: column;
    }

    .whatis-video iframe {
        height: 340px;
    }

    .managers-container .side {
        width: 90.5%;
    }
}

@media (max-width:430px) {
    .contact-form
    {
        width: 100%;
    }

    footer .footer-section .footer-section-under h1 {
        font-size: 1.6rem;
    }

    .whatis-video iframe {
        height: 290px;
    }

    nav .goBtn {
        border-radius: 12px;
    }

    .header-title .titles h1 {
        font-size: calc(3vw + 2vh + 2vmin);
    }

    .titles.header-title-bottom h2
    {
        font-size: 18px;
    }

    .header-links .goBtn
    {
        width: 100px;
    }
}

@media (max-width:400px) {
    .app-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .whatis-video iframe {
        height: 270px;
    }
}

@media (max-width:375px) {
    .whatis-video iframe {
        height: 260px;
    }

    .managers-container .side {
        width: 89%;
    }

    .manager-content {
        width: 100%;
        height: 80svw;
    }
}

@media (max-width:330px) {
    footer .main-footer-links i {
        min-width: 38px;
        max-width: 38px;
        min-height: 38px;
        max-height: 38px;
    }

    footer .main-footer-links {
        padding: 20px 0;
    }

    .whatis-video iframe {
        height: 220px;
    }

    footer .main-footer {
        padding: 100px 10px 50px 10px;
    }

    footer .footer-section {
        padding: 20px 10px;
    }

    .whatis-container.active {
        height: 1050px;
    }

    .titles.header-title-top {
        margin-top: 0;
    }

    .main-title h1  
    {
        font-size: calc(3vw + 2vh + 2vmin);
    }
    .text-link .whatisBox .whatisBox-container
    {
        width: 85vw;
    }
    .text-link .whatisBox
    {
        top: 170px;
    }
    .managers .title {
        font-size: calc(1vw + 1vh + 0.5vmin);
    }
    .manager-content .social-links .social-link {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 300px) {
    .manager-content {
        scale: 0.9;
    }
}
@media (max-width: 256px) {
    .whatis-container.active {
        height: 1070px;
    }
    .managers .managers-container
    {
        height: 100%;
    }
    .managers .managers-container .manager-content
    {
        padding: 0;
    }
    .managers .bg
    {
        display: none;
    }
    .managers-container .side
    {
        box-shadow: none;
    }
    .managers-container
    {
        animation: none;
    }
}