:root{
    --white: #ffffff;
    --lightgray: #F2F2F2;
    --gray: #DADADA;

    --blue: #C0BDFF;
    --orange: #EB9F77;
    --pink: #FFC7EA;
    --green: #E7EF8E;


    --dblue: #7972FE;
    --dorange: #DE5F1D;
    --dpink: #ED83C5;

    --black: #15294A;
    --turquoise: #1EDFD6;

    --lturquoise: #BCF5F3;

    font-size: clamp(6px,1vw,15px);
    --borderrad: 1.5rem;
}

body{
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--lightgray);
    font-family: Raleway;
    min-width: 500px;
    overflow-x: scroll;
    color: #15294A;
    flex-direction: column;
    margin: 0;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: var(--black);
}

.content1{
    width: min(90%,1400px);
    height: 100%;
}

.whoareweHandler{
    position: relative;
    margin-bottom: 14rem;
    padding-top: 6rem;
}

.whoarewephoto{
    width: 75%;
}

.whoareweBox{
    position: absolute;
    box-sizing: border-box;
    background-color: var(--white);
    top:25%;
    height: 60%;
    left: 55%;
    padding: calc(var(--borderrad) * 3);
    padding-top: calc(var(--borderrad) * 0.7);
    border-radius: var(--borderrad);
    font-size: 1.1rem;
}
.whoareweBox::before{
    content: '';
    position: absolute;
    bottom: 90%;
    right: 90%;
    background-color: var(--white);
    width: 20%;
    height: 20%;
    border-radius: var(--borderrad);
}

.whoareweBox h2{
    font-weight: 600;
    font-size: 3rem;
}

.whoareweFooter{
    position: absolute;
    top: 90%;
    right: 0;
    width: 50%;
    background: var(--white);
    padding: calc(var(--borderrad) * 2);
    border-radius: var(--borderrad);
}

.accordionHandler{
    box-sizing: border-box;
    position: relative;
    display: grid;
    width: 100%;
    background-color: var(--white);
    grid-template-columns: 1fr 1fr;

    border-radius: var(--borderrad);
    overflow: hidden;
    padding: var(--borderrad);
    gap: calc(var(--borderrad) + 0.5rem);
    z-index: 0;
    margin-bottom: 7rem;
    margin-top: 3rem;
}

.accordionHeader{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 3rem;
    font-weight: 500;
    padding-top: 2rem;
    margin-top: 3rem;
}

.accordionHdesc{
    position: absolute;
    font-size: 1.1rem;
    width: 65%;
    right: 0;
    font-weight: 400;

}

.accordionBoxes{
    z-index: 1;
    position: relative;
    display: grid;
    gap: var(--borderrad);
}

.accordionBox{
    position: relative;
    border-radius: var(--borderrad);
    padding: calc(var(--borderrad)*2);
    
}

.accordionBox::before{
    content: 'A';
    position: absolute;
    z-index: -1;

    background-color: inherit;
    border-radius: 0px calc(var(--borderrad) + 1rem) calc(var(--borderrad) + 1rem) 0px;
    color: #FFFFFF00;

    border: solid #fff var(--borderrad);
    transform: translate(calc(-2 * var(--borderrad)),calc(-1 * var(--borderrad)));

    width: 0%;
    top: 0;
    left: calc(95% - var(--borderrad) - 1.5ex);
    transition: width 0.6s ease;

    padding: calc(var(--borderrad)*2);
    font-size: 2em;
}

.accordionBoxes > :last-child::before{
    top: auto;
    bottom: 0;
    transform: translate(calc(-2 * var(--borderrad)),calc(1 * var(--borderrad)));
}

.accordionBox.active::before{
    position: absolute;
    background-color: inherit;
    
    z-index: -1;

    width: 40%;
    left: calc(95% - var(--borderrad) - 1.5ex);
}

.accordionDesc{
    margin-top: 0px;
    height: 0px;
    overflow:hidden;
    transition: 0.6s ease;
    font-size: 1.3rem;
}

.accordionBox.active .accordionDesc{
    margin-top: 2rem;
    height: 16rem;
}

.accordionBoxes > :nth-child(n+1){
    background-color: var(--blue);
}
.accordionBoxes > :nth-child(n+2){
    background-color: var(--orange);
}
.accordionBoxes > :nth-child(n+3){
    background-color: var(--pink);
}


.accordionBoxes > :nth-child(n+1) .accordionTitle, .accordionBoxes > :nth-child(n+1) a{
    color: var(--dblue);
}
.accordionBoxes > :nth-child(n+2) .accordionTitle, .accordionBoxes > :nth-child(n+2) a{
    color: var(--dorange);
}
.accordionBoxes > :nth-child(n+3) .accordionTitle, .accordionBoxes > :nth-child(n+3) a{
    color: var(--dpink);
}

.accordionBoxes > :nth-child(n+1) .accordionButton::after{
    background-color: var(--dblue);
}
.accordionBoxes > :nth-child(n+2) .accordionButton::after{
    background-color: var(--dorange);
}
.accordionBoxes > :nth-child(n+3) .accordionButton::after{
    background-color: var(--dpink);
}

.accordionTitle{
    position: relative;
    display: flex;
    font-size: 2em;
    height: 2em;
    align-items: center;
    font-weight: 500;
    height: min-content;
}

.accordionBox.active .accordionTitle{
    margin-top: 0.7rem;
}

.accordionButton{
    position: absolute;
    aspect-ratio: 1/1;
    width: 0.8em;
    right: 0px;
    cursor: pointer;
    transition: transform 0.3s ease;
}



.accordionButton:hover{
    transform: scale(1.2);
}


.accordionButton::after{
    position: absolute;
    content: "";
    clip-path: polygon(0 60%, 40% 60%, 40% 100%, 60% 100%, 60% 60%, 100% 60%, 100% 40%,60% 40%, 60% 0, 40% 0, 40% 40%, 0 40%);
    width: 100%;
    height: 100%;
}

.accordionBox.active .accordionButton::after{
    position: absolute;
    content: "";
    clip-path: polygon(0 60%, 100% 60%, 100% 40%, 0 40%);
    width: 100%;
    height: 100%;
}

.accordionPhoto{
    position: relative;
    overflow: hidden;
    border-radius: var(--borderrad);
}

.accordionPhoto img{
    position: absolute;
    object-fit:cover;
    width:100%;
    height: 100%;
    transition: opacity 0.3s linear;
}


.accordionPhoto[selecIdx="1"] :nth-child(1){opacity: 100%;}
.accordionPhoto[selecIdx="1"] :nth-child(2){opacity: 0%;}
.accordionPhoto[selecIdx="1"] :nth-child(3){opacity: 0%;}

.accordionPhoto[selecIdx="2"] :nth-child(1){opacity: 0%;}
.accordionPhoto[selecIdx="2"] :nth-child(2){opacity: 100%;}
.accordionPhoto[selecIdx="2"] :nth-child(3){opacity: 0%;}

.accordionPhoto[selecIdx="3"] :nth-child(1){opacity: 0%;}
.accordionPhoto[selecIdx="3"] :nth-child(2){opacity: 0%;}
.accordionPhoto[selecIdx="3"] :nth-child(3){opacity: 100%;}

.evoHandler{
    position: relative;
    margin-bottom: 10rem;
    margin-top: 10rem;
}


.evoHandler svg{
    width: 100%;
}

.evoHandler svg{
    path:nth-child(1){fill: var(--pink);}
    path:nth-child(2){fill: var(--orange);}
    path:nth-child(3){fill: var(--blue);}

    path:nth-child(1):hover{fill: var(--dpink);}
    path:nth-child(2):hover{fill: var(--dorange);}
    path:nth-child(3):hover{fill: var(--dblue);}
}

.evoTexts{
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    pointer-events: none;

    font-size: 2.7rem;
    font-weight: 500;
    :nth-child(1){
        color: var(--dpink);
        position: absolute;
        top: 75%;
        left: 19%;
        width: 20%;
    }
    :nth-child(2){
        color: var(--dorange);
        position: absolute;
        top: 28%;
        left: 42%;
        width: 20%;
    }
    :nth-child(3){
        color: var(--dblue);
        position: absolute;
        top: 5%;
        left: 78%;
        width: 20%;
    }
}

.evoOutTexts{
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    pointer-events: none;

    font-size: 1.1rem;
    :nth-child(1){
        position: absolute;
        left: 0;
        font-weight: 400;
        top: 0;
        margin: 0;
        width: 50%;
    }
    :nth-child(2){
        position: absolute;
        left: 53%;
        top: 55%;
        line-height: 2rem;
    }
    h2{
        font-size: 2.7rem;
    }
}

.evoHandler:has(svg path:nth-child(1):hover) .evoTexts :nth-child(1){color: var(--pink);}
.evoHandler:has(svg path:nth-child(2):hover) .evoTexts :nth-child(2){color: var(--orange);}
.evoHandler:has(svg path:nth-child(3):hover) .evoTexts :nth-child(3){color: var(--blue);}

nav.navbar{
    position: absolute;
    display: flex;
    box-sizing: border-box;
    background-color: var(--white);
    width: min(95%,1600px);
    height: 7rem;
    margin-top: 3rem;
    border-radius: calc(var(--borderrad) / 2);
    align-items: center;
    padding-left: 3rem;
}


.navLogoHandler{
    display: flex;
    height: 100%;
    align-items: center;
    width: 30%;
}
.navLinks{
    display: grid;
    height: 100%;
    width: 70%;
    grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
    font-size: 1.2rem;
}

.navLinks > .navLink{
    display: flex;
    align-items: center;
    justify-content: center;
}

.navLinks > .navLink > a:hover{
    font-weight: 700;
}

.specialistButton{
    font-weight: 700;
    background-color: var(--turquoise);
    padding: 1.3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: calc(var(--borderrad) / 2);
    cursor: pointer;
}

.specialistButton:hover{
    background-color: var(--black);
    color: var(--white);
}

.navLogo{
    width: 5rem;
    height: 50%;
    margin-right: 0.4rem;
}

.navLogoText{
    width: 5rem;
    height: 50%;
}

.fstScreenHandler{
    position: relative;
    width: 100%;
    margin-top: 15rem;
    height: 32rem;
    z-index: 1;
}

.fstScreenSelec{
    height: 100%;
}

.fstScreenSlide{
    font-size: 3.5rem;
}

.fstScreenImg{
    position: absolute;
    height: 100%;
    width: 55%;
    object-fit: cover;
    right: 0;
    top: 0;
    border-radius: var(--borderrad);
}

.fstScreenTitle{
    position: absolute;
    width: 40%;
    top: 2rem;
}

.fstScreenButton{
    position: absolute;
    width: fit-content;
    top: 70%;
    font-size: 1.3rem;
    background-color: var(--black);
    color: var(--white);
    padding: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
    border-radius: calc(var(--borderrad) / 2);
    cursor: pointer;
    z-index: 2;
}

.specialistHandler{
    position: relative;
    width: 100%;
    height: 40rem;
    margin-top: 13rem;
    margin-bottom: 13rem;
    z-index: 1;
    
}

.specialistSlide{
    font-size: 1.2rem;
}
.specialistCutoff{
    position: absolute;
    background-color: var(--lightgray);
    left: 0;
    top:0;
    width: 27%;
    height: 8%;
    border-radius: 0 0 var(--borderrad) 0;
}
.specialistCutoff::before{
    content: '';
    position: absolute;
    background-color: transparent;
    border-radius: 50%;
    width: calc(var(--borderrad) * 2);
    height: calc(var(--borderrad) * 2);
    left:100%;
    top:0;
    box-shadow: var(--lightgray) calc(-1 * var(--borderrad)) calc(-1 * var(--borderrad));
}
.specialistCutoff::after{
    content: '';
    position: absolute;
    background-color: transparent;
    border-radius: 50%;
    width: calc(var(--borderrad) * 2);
    height: calc(var(--borderrad) * 2);
    top: 100%;
    left:0;
    box-shadow: var(--lightgray) calc(-1 * var(--borderrad)) calc(-1 * var(--borderrad));
}

.specialistphoto{
    position: absolute;
    object-fit: cover;
    width: 39%;
    height: 100%;
    border-radius: var(--borderrad);
}

.specialistInfo{
    position: absolute;
    box-sizing: border-box;
    height: 100%;
    border-radius: var(--borderrad);
    padding: 5rem;
    right: 0;
    width: 59%;
}

.specialistInfo h2{
    font-size: 2.3rem;
    margin: 0;
    font-weight: 700;
}

.specialistInfo h3{
    font-size: 1.8rem;
    margin: 0;
    font-weight: 500;
    margin-bottom: 2.7rem;
}

.specialistSelec{
    height: 100%;
}

.specialistHeader{
    position: absolute;
    font-size: 2.6rem;
    font-weight: 600;
    z-index: 1;
    width: 200%;
    bottom: 60%;
}

.selecHandler{
    position: relative;
    z-index: -999;
}
.selecSlide{
    position: absolute;
    opacity: 0;
    transition: opacity linear 0.2s;
    width: 100%;
    height: 100%;
}

.selecSlide.active{
    opacity: 100%;
}

.selecButton{
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    background-color: var(--lightgray);
    border-radius: var(--borderrad) 0 0 0;
    width: 14rem;
    height: 6rem;
    justify-content: center;
    align-items:end;
    gap: 1rem;
}

:has(.selecHandler){
    position: relative;
    z-index: -2;
}

.selecButton::before{
    content: '';
    position: absolute;
    background-color: transparent;
    border-radius: 50%;
    width: calc(var(--borderrad) * 2);
    height: calc(var(--borderrad) * 2);
    bottom: 100%;
    right: 0;
    box-shadow:  var(--borderrad) var(--borderrad) var(--lightgray) ;
    z-index: 0;
}

.selecButton::after{
    content: '';
    position: absolute;
    background-color:transparent;
    border-radius: 50%;
    width: calc(var(--borderrad) * 2);
    height: calc(var(--borderrad) * 2);
    bottom: 0;
    right: 100%;
    box-shadow: var(--borderrad) var(--borderrad) var(--lightgray) ;
    z-index: 0;
}


.selecButtonLeft, .selecButtonRight{
    background-image: url(media/arrow.svg);
    background-size: 1.5rem;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    cursor: pointer;
    background-color: var(--white);
    border-radius: calc(var(--borderrad) / 2);
    width: 40%;
    height: 80%;
    z-index: 2;
}

.selecButtonLeft:hover, .selecButtonRight:hover{
    filter: brightness(3000%) saturate(0);
}

.selecButtonRight{
    transform: scale(-1);
}

.talkwithspeci{
    position: relative;
    box-sizing: border-box;
    background-color: var(--gray);
    width: min(95%,1600px);
    margin-bottom: 14rem;
    padding: 4rem;
    padding-left: 6rem;
    font-size: 1.2rem;
    border-radius: var(--borderrad);
}

.talkwithspeci h2{
    font-size: 2.7rem;
    margin: 0;
    margin-bottom: 1rem;
    font-weight: 400;
}

.talkwithspecButton{
    position: absolute;
    box-sizing: border-box;
    padding: 1.5rem;
    background-color: var(--black);
    right: 7%;
    color: var(--white);
    font-weight: 600;
    width: 24%;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
    border-radius: calc(var(--borderrad) / 2);
}

.partnersBg{
    position: relative;
    display: flex;
    width: 100%;
    height: 70rem;
    background-color: #C0BDFF;
    border-radius: calc(var(--borderrad) * 2);
    z-index: -3;
    justify-content: center;
}

.partnersHandler{
    position: relative;
    display: grid;
    box-sizing: border-box;
    grid-template-columns: 1fr 1.3fr;
    width: min(90%,1400px);
    height: 35rem;
    background-color: var(--white);
    border-radius: var(--borderrad);
    margin: 10rem;
    padding: 3rem;
}

.partnersHeader{
    position: absolute;
}

.partnersImgs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
}
.partnerImg{
    position: relative;
}

.partnerImg img{
    position: absolute;
    object-fit: contain;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

.partnersText{
    display: flex;
    padding: 3rem;
    justify-content: center;
    flex-direction: column;
    font-size: 1.3rem;
    h2{
        font-weight: 500;
        font-size: 3.5rem;
        margin: 0;
        margin-bottom: 2rem;
    }
}

.partnersHandler::after{
    content: '';
    position: absolute;
    background-color: var(--white);
    top: -8%;
    left: -6%;
    width: 40%;
    height: 30%;
    border-radius: var(--borderrad);
    z-index: -1;
}

.partnersHeader{
    position: absolute;
    background-color: var(--blue);
    top: 0%;
    left: 0%;
    border-radius: calc(var(--borderrad) / 1.5);
    font-size: 1.8rem;
    color: var(--dblue);
    font-weight: 600;
    padding: 0.7rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.clientsHandler{
    position: relative;
    box-sizing: border-box;
    background-color: var(--dblue);
    display: grid;
    color: var(--white);
    width: min(85%,1400px);
    transform: translate(-3%,-20%);
    grid-template-rows: 1.4fr 1fr;
    height: 45rem;
    padding: 5rem;
    padding-bottom: 8rem;
    border-radius: var(--borderrad);
    margin-bottom: 3rem;
}

.clientsHandler::before{
    content: '';
    position: absolute;
    background-color: var(--dblue);
    bottom: -6%;
    left: -3%;
    width: 42%;
    height: 40%;
    border-radius: var(--borderrad);
    
}

.clientsHandler::after{
    content: '';
    position: absolute;
    background-color: var(--dblue);
    top: 0;
    right: -10%;
    width: 42%;
    height: 26%;
    border-radius: var(--borderrad);
    z-index: -1;
}

.clientsText{
    width: 50%;
    font-size: 1.2rem;
    padding-left: 2rem;
    h2{
        font-weight: 400;
        font-size: 3.5rem;
        margin: 0;
        margin-bottom: 3rem;
    }
}

.clientsHeader{
    position: absolute;
    background-color: var(--blue);
    top: 9%;
    right: -3%;
    border-radius: calc(var(--borderrad) / 1.5);
    font-size: 1.8rem;
    color: var(--dblue);
    font-weight: 600;
    padding: 0.7rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.clientsImgs{
    position: relative;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.8rem;
    
}
.clientImg{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: var(--borderrad);
}

.clientImg img{
    position: absolute;
    object-fit: contain;
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
}

.methodHandler{
    position: relative;
    width: min(90%,1400px);
    box-sizing: border-box;
    height: 40rem;
    background-color: var(--white);
    border-radius: var(--borderrad);
    font-size: 1.1rem;
    margin-bottom: 10rem;
    margin-top: 8rem;
    padding: 5rem;
}

.methodHeader{
    position: absolute;
    font-size: 2.2rem;
    width: 30%;
    color: var(--turquoise);
    font-weight: 500;
}
.methodText{
    position: absolute;
    width: calc(50% - 5rem);
    color: var(--black);
    left: 50%;
    font-size: 0.9rem;
    line-height: 1.4rem;
}

.methodSteps{
    position: absolute;
    box-sizing: border-box;
    background-color: var(--lturquoise);
    bottom: 5rem;
    right: 5rem;
    width: 75%;
    height: 30%;
    border-radius: var(--borderrad);
    z-index: 0;
    padding: 3.5rem;
}

.methodSteps::before{
    content: '';
    position: absolute;
    background-color: var(--lturquoise);
    width: 50%;
    height: 105%;
    top: -80%;
    left: -17%;
    border-radius: var(--borderrad);
    z-index: -1;
}

.methodLogo{
    position: absolute;
    bottom: 7rem;
    left: 7rem;
    width: 7%;
    use{
        fill: var(--turquoise);
    }
}

.methodStepsTitle{
    position: absolute;
    font-size: 2.4rem;
    width: 20%;
    font-weight: 600;
    color: var(--turquoise);
}

.methodStepsList{
    position: absolute;
    left: 40%;
    list-style: none;
    padding: 0;
    top: 2rem;
    font-weight: 600;
    li{
        margin-bottom: 1rem;
    }
}

.footerBar{
    position: relative;
    display: flex;
    box-sizing: border-box;
    background-color: var(--white);
    width: min(95%,1600px);
    height: 7rem;
    margin-top: 5rem;
    border-radius: calc(var(--borderrad) / 2);
    align-items: center;
    padding-left: 8rem;
}

.footerLinks{
    display: flex;
    position: absolute;
    right: 8rem;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.2rem;
}

.footerLinks a img{
    width: 60%;
    height: 60%;
}

.copyright{
    margin: 1rem;
    margin-bottom: 3rem;
}

.contactHandler{
    position: relative;
    width: min(90%,1400px);
    display: grid;
    background-color: var(--white);
    box-sizing: border-box;
    padding: 5rem;
    grid-template-columns: 1.4fr 1fr;
    font-size: 1.8rem;
    gap: 5rem;
    border-radius: var(--borderrad);
    margin-top: 8rem;
    margin-bottom: 4rem;
}

.contactTitleHandler h2{
    margin: 0;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 0.8em;
}

.contactCutoff{
    display: flex;
    position: absolute;
    justify-content: right;
    align-items: end;
    bottom: calc(100% - var(--borderrad));
    right: 0;
    background-color: var(--white);
    box-sizing: border-box;
    padding:  2.5rem;
    padding-right: 4rem;
    width: 55%;
    border-radius:  var(--borderrad) var(--borderrad) 0 0;

    svg{
        height: 3.7rem;
        width: 7rem;
    }
}

.contactTable{
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    font-size: 1.5rem;
}

.contactNum{
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
}

.contactNName{
    position: relative;
    font-weight: 600;
    background-color: var(--black);
    color: var(--white);
    padding: 0.4rem;
    padding-left: 1rem;
}

.contactNum:first-child .contactNName{
    border-radius: calc(var(--borderrad) / 2) calc(var(--borderrad) / 2) 0 0;
    padding-top: 0.8rem;
}
.contactNum:last-child .contactNName{
    border-radius: 0 0 calc(var(--borderrad) / 2) calc(var(--borderrad) / 2);
    padding-bottom: 0.8rem;
}

.contactNNum{
    display: flex;
    align-items: center;
}

.contactWhats{
    position: absolute;
    right: 1rem;
    img{
        height: 1em;
        width: 1em;
    }
}