@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --light-blue:#5DA7E7;
    --dark-blue: #00158D;
    --grey: #51516F;
    --light-grey: #d1d1d1;
    --green: #1ED1BC;
    --light-green: #EDF5F3;
    --form-color: #37008D;
    --letter-form: #AEA9FF;
    --night: #000;
    --day: #fff;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0
}

* {
    padding: 0px;
    margin: 0px;
    outline: 0px;
    border: 0px;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.nav-logo img {
    width: 50px;
    height: 50px;
}

nav {
    position: fixed;
    width: 100%;
    height: 4rem;
    background-color: var(--day);
    box-shadow: 0 1px 100px 0px var(--light-grey);
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
    z-index: 100;
}

nav:hover {
    box-shadow: 0 5px 50px 0px var(--light-grey);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.nav-left .nav-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left:50px;
}

nav .nav-logo a {
    cursor: pointer;
}

.nav-left .nav-logo span {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: var(--light-blue)
}

.nav-left .nav-list {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav-left .nav-list li a {
    position: relative;
    font-family: "Poppins", sans-serif;
    color: var(--light-blue);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0
}

.nav-left .nav-list li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
}

.nav-left .nav-list li a:hover {
    color: var(--dark-blue)
}

.nav-left .nav-list li a:hover::after {
    width: 70%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 50px;
}

.nav-right > :first-child {
    background-color: var(--light-blue);
}

.nav-right button {
    position: relative;
    width: 120px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.75rem;
    font-family: "Poppins", sans-serif;
    background-color: var(--green);
    transition: all 0.3s ease;
    color: var(--day);
}   

nav .nav-right #burger{
    display: none;
    color: var(--light-blue);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

nav .nav-right #burger:hover {
    color: var(--dark-blue);
}

.sidebar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 250px;
    height: 100vh;
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    background-color: #ffffff4b;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sidebar .nav-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
}

.sidebar .nav-left i {
    font-size: 2rem;
    color: var(--light-blue);
    cursor: pointer;
    margin: 15px 0 0 25px;
    transition: all 0.3s ease;
}

.sidebar .nav-left i:hover {
    color: var(--dark-blue);
    transform: rotate(90deg);
}

.sidebar .nav-left .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.sidebar .nav-left .nav-list li {
    width: 100%;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.sidebar .nav-left .nav-list li a {
    color: var(--dark-blue)
}

.sidebar .nav-left .nav-list li:hover {
    cursor: pointer;
    background-color: var(--light-green);
}

.sidebar .nav-left .nav-list li:hover > a {
    margin-left: 10px;
}

.sidebar .nav-right {
    width: 100%;
    padding: 0 25px;
    position: absolute;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar .nav-right button {
    width: 100%;
    display: block;
}

.sidebar .nav-right p {
    font-family: "Poppins", sans-serif;
    color: var(--dark-blue);
    line-height: 20px;
    text-align: center;
    margin-top: 10px
}

.landing {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    padding: 10em 2em 0 4em;
    margin-bottom: 200px;
}

.landing .left h1 {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    color: var(--dark-blue);
    width: 50%;
    line-height: 2.75rem;
    margin-bottom: 3rem;
}

.landing .left h2 {
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.5rem;
    margin-bottom: 2rem;
}

.landing .left .abilities {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.landing .left .abilities .abilitie {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing .left .abilities .abilitie i {
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    color: var(--light-blue)
}

.landing .left .abilities .abilitie span {
    font-size: 1.25rem;
    font-family: "Poppins", sans-serif;
    color: var(--light-blue);
}

.landing .left button {
    width: 200px;
    height: 50px;
    border-radius: 50px;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: var(--day);
    background-color: var(--dark-blue);
}

.landing .right .images {
    width: 35%;
    max-width: 100%;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.landing .right img {
    width: 100%;
    max-width: 300px;
    z-index: 10;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin: 5px;
    box-sizing: border-box;
}

.landing .right .rectangle {
    position: absolute;
    top: -200px;
    width: 1100px;
    height: 400px;
    background: linear-gradient(var(--dark-blue), var(--light-blue));
    border-radius: 250px;
    rotate: -45deg;
    z-index: 1;
}

.separator {
    width: 100%;
    height: 800px;
    background-color: var(--day);
    z-index: -5;
}

.info-pacienti {
    width: 100%;
    height: auto;
    background-color: var(--light-green);
    padding: 2rem;
    margin-bottom: 200px;
}

.info-pacienti .bottom {
    width: 70%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.info-pacienti .top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-pacienti .top h1 {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    color: var(--light-blue);
}

.info-pacienti .info .bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
}

.info-pacienti .bottom .info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-pacienti .bottom .info-block i {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(var(--dark-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--day);
    margin-bottom: 5px;
}

.info-pacienti .bottom .info-block h2 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--light-blue);
    text-align: center;
    line-height: 20px;
    margin-bottom: 1rem
}

.info-pacienti .bottom .info-block p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.5rem;
    text-align: center;
}

.locatie {
    width: 70%;
    height: auto;
    left: 0;
    right: 0;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 300px;
}

.locatie .right {
    font-family: "Poppins", sans-serif;
    color: var(--day);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.locatie .right h2 {
    font-size: 48px;
    color: var(--light-blue);
    margin-bottom: 1rem;
}

.locatie .right p {
    font-size: 20px;
    color: var(--grey);
    margin-bottom: 1rem;
}

.locatie button {
    width: 150px;
    height: 50px;
    border-radius: 50px;
    font-size: 16px;
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.locatie button:hover {
    background-color: transparent;
    border-color: var(--dark-blue);
}

.locatie button:hover > a {
    color: var(--dark-blue);
}

.locatie button a {
    color: var(--day)
}

.locatie img {
    width: 450px;
    height: 450px;
    border-radius: 25px;
}

.echipa {
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.echipa .left h1 {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--light-blue);
    line-height: 50px;
    margin-bottom: 2rem;
}

.echipa .left p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.25rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.echipa .left button {
    width: 200px;
    height: 50px;
    border-radius: 50px;
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.echipa .left button a {
    font-size: 16px;
    color: var(--day)
}

.echipa .right img {
    width: 400px;
    height: 400px;

}

.echipa .right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.formular {
    max-width: 100%;
    height: 750px;
    background: linear-gradient( 135deg, var(--dark-blue) 0%, var(--light-blue) 80%, var(--dark-blue)) 100%;
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 50px;
    margin: 200px 0 150px;
}

.formular .center {
    width: 100%;
    height: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.formular .center h1 {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 3rem;
    color: var(--day);
    margin-bottom: 2rem;
}

.formular .center p {
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    color: var(--day);
    font-weight: 200;
    width: 50%;
    left: 0;
    right: 0;
    margin: auto;
}

.formular .center p span {
    font-weight: 600;
    margin-left: 10px;
}

.formular .center button {
    width: 240px;
    height: 50px;
    margin-top: 30px;
    border: 2px solid var(--green);
    border-radius: 50px;
    font-size: 1rem;
    background-color: var(--green);
    font-family: "Poppins",sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.formular .center button:hover {
    background: transparent;
}

.formular .center button a {
    color: var(--day);
}

.formular .center p {
    cursor: default;
}

.formular .center p a {
    text-decoration: underline;
    font-weight: 500;
    font-style: italic;
}

.echipament {
    width: 70%;
    left: 0;
    right: 0;
    margin: auto;
    margin-bottom: 300px;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.echipament .left {
    position: relative;
}

.echipament .left h2 {
    font-family: "Poppins", sans-serif;
    color: var(--light-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 100%;
}

.echipament .left p {
    font-family: "Poppins", sans-serif;
    color: var(--grey);
    font-size: 14px;
    line-height: 1.5rem;
    hyphens: auto;
    word-wrap:break-word;
}

.echipament .right {
    background: linear-gradient(to left, var(--dark-blue), var(--light-blue));
    border-radius: 50px;
    height: 100%;
}

.echipament .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    place-items: center;
}

.nota {
    width: 75%;
    left: 0;
    right: 0;
    margin: auto;
    margin-bottom: 300px;
    height: 450px;
}

.nota .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.nota .container img {
    width: 50%;
    height: 550px;
    border-radius: 50px 0 0 50px;
}

.nota .container h2 {
    width: 50%;
    height: 550px;
    background: linear-gradient( 135deg, var(--dark-blue) 0%, var(--light-blue) 80%, var(--dark-blue)) 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    color: var(--day);
    line-height: 3.5rem;
    text-align: center;
    border-radius: 0 50px 50px 0;
    cursor: default;
}

footer {
    width: 100%;
    background-color: var(--dark-blue);
    position: relative;
    padding: 40px 0 0;
}

footer .info {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    right: 0;
    margin: auto;
}

footer .info .left {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .info .left h2 {
    font-family: "Poppins", sans-serif;
    color: var(--day);
    font-size: 1rem;
    font-weight: 800;
}

footer .info .left .span-line {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .info .left .span-line span {
    width: 150px;
    height: 40px;
    background-color: var(--light-blue);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: "Poppins", sans-serif;
    color: var(--day);
    font-size: 12px;
    cursor: default;
}

footer .info .left .span-line span a {
    color: var(--day);
}

footer .info .left .span-line span a:checked {
    color: var(--day);
}

footer .info .left .span-line span a i {
    margin-right: 5px;
}

footer .info .left p {
    font-family: "Poppins", sans-serif;
    color: var(--light-blue);
    font-size: 1rem;
    margin-top: 2rem;
}

footer .info .left p span {
    font-weight: 800;
    margin-left: 10px;
}

footer .info .left .icons {
    width: 100%;
    padding: 0 1rem 0;;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

footer .info .left .icons i {
    width: 50px;
    height: 50px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--day);
    transition: all 0.3s ease;
}

footer .info .left .icons i:hover {
    background-color: var(--dark-blue);
    box-shadow: 0 1px 50px 1px var(--light-blue);
}

footer .info .center {
    display: flex;
    flex-direction: column;
    align-items: start;
}

footer .info .center h1 {
    font-family: "Poppins", sans-serif;
    color: var(--light-blue);
    font-size: 60px;
    line-height: 4.5rem;
    width: 75%;
    position: relative;
    margin-bottom: 1.5rem;
}

footer .info .center span {
    font-family: "Poppins", sans-serif;
    color: var(--day);
    font-weight: 600;
}

footer .info .center p {
    margin-top: 1rem;
    font-family: "Poppins", sans-serif;
    color: var(--light-blue);
}

footer .info .right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1rem 0;
}

footer .info .right span {
    font-family: "Poppins", sans-serif;
    color: var(--day);
    font-weight: 800;
}

footer .info .right a {
    width: 100%;
    font-family: "Poppins", sans-serif;
    color: var(--light-blue);
    text-decoration: underline;
}

footer .copyright {
    position: relative;
    margin: 50px 10px 0 0;
    font-family: "Poppins", sans-serif;
    color: var(--light-blue);
    font-size: 1rem;
    text-align: end;
}

@media screen and (max-width: 1536px){
    .landing .right {
        flex-wrap: wrap;
    }
    .landing .right img {
        width: 250px;
    }
}

@media screen and (max-width: 1280px) {
    nav .nav-right #burger {
        display: block;
    }
    nav .nav-left .nav-list {
        display: none;
    }
    nav .nav-right button {
        display: none;
    }
    .formular .center {
        height: auto;
    }
    .info-pacienti .info .bottom {
        grid-template-columns: repeat(2, 1fr);
    }
    footer .info {
        grid-template-columns: repeat(2, 1fr);
    }

    footer .info .right {
        margin-top: 30px;
    }
        .echipament {
        grid-template-columns: repeat(1, 1fr);
    }
    .echipament .right {
        height: auto;
    }
}

@media screen and (max-width: 1024px){
    .landing {
        grid-template-columns: 1fr;
        padding: 5em ;
        gap: 30px;
    }
    .landing .right .images{
        position: relative;
        width: 80%;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        left: 0;
        right: 0;
        margin: auto;
    }
    .landing .right .images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .rectangle {
        display: none;
    }
    .locatie {
        grid-template-columns: 1fr;
        margin-bottom: 150px;
    }
    .locatie .left {
        display: flex;
        justify-content: center;
    }
    .echipa {
        grid-template-columns: 1fr;
    }
    .echipa .right {
        grid-area: 1/1/2/2;
    }
    .nota {
        height: auto;
        margin-bottom: 300px;
    }
    .nota .container img {
        width: 100%;
        height: 600px;
        border-radius: 50px 50px 0 0;
    }
    .nota .container {
        flex-direction: column;
    }
    .nota .container h2 {
        width: 100%;
        border-radius: 0 0 50px 50px;
    }
    footer .info {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px
    }
}

@media screen and (max-width: 900px){
    .formular {
        padding: 0 20px 20px;
        height: 700px;
    }
    .formular .left {
        width: 100%;
        height: 50%;
    }
    .formular .right {
        width: 100%;
        height: auto;;
    }
    .formular .right button {
        position: relative;
        bottom: 0px;
        right: 0;
    }
    .formular .right form {
        width: 100%;
        height: 100%;
    }
    .formular .center {
        height: 90%;
    }
    .formular .center p {
        width: 60%;
    }
    .info-aditional {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    .nota .container img {
        width: 100%;
        height: 500px;
    }
    .nota .container h2 {
        width: 100%;
        height: 500px;
    }
    .formular .center h1 {
        font-size: 2rem;
    }
    .formular .center p {
        width: 70%;
    }
}

@media screen and (max-width: 640px){
    .landing {
        padding: 5em 1em  0;
    } 
    .landing .left h1 {
        font-size: 2.5rem;
        max-width: 100%;
    } 
    .info-pacienti .info .bottom {
        grid-template-columns: repeat(1, 1fr);
    }
    .nota .container img {
        height: 400px;
    }
    .nota .container h2 {
        height: 400px;
        font-size: 2em;
    }
    .echipament {
        width: 80%;
    }
    .echipament .left p {
        overflow-wrap: break-word;
        hyphens: auto;
        width: 100%;
    }
    .formular .center p {
        width: 90%;
    }
}

@media screen and (max-width: 525px) {
    .landing {
        padding: 5em 2.5em 0
    }
    .landing .right {
        width: 100%;
    }
    .landing .right .images {
        grid-template-columns: 1fr;
        justify-content: center;
        padding: 0;
        width: 100%;
    }
    .landing .right .images img {
        width: 100%;
    }
    .info-pacienti .info .top h1 {
        font-size: 1.75em;
    }
    .locatie .left img {
        width: 100%;
        height: 100%;
    }
    .locatie .right h2 {
        font-size: 2.5em;
        width: 110%;
    }
    .echipa {
        margin-bottom: 150px;
    }
    .echipa .right {
        width: 100%;
    }
    .echipa .right img {
        width: 100%;
        height: auto;
    }
    .echipa .left h1 {
        width: 100%;
        font-size: 2.5em
    }
    .echipament {
        margin-bottom: 150px;
    }
    .echipament .left h2 {
        font-size: 2rem;
        text-align: center;
    }
    .nota {
        margin-bottom: 150px;
    }
    .nota .container  img {
        width: 100%;
        height: 250px;
    }
    .nota .container h2 {
        width: 100%;
        height: 250px;
        font-size: 1.5em;
        line-height: 30px;
    }
    .formular {
        height: 700px;
    }
    .formular .center #confidentialitate {
        font-size: 0.8em;
    }
}
@media screen and (max-width: 475px){
    .landing {
        padding: 5em 0.75em 0;
    }
    .landing .right {
        width: 100%;
    }
    .landing .right .images {
        width: 100%;
    }
    .landing .right .images img {
        width: 90%;
        max-width: 100%;
    }
    .echipament {
        width: 100%;
        max-width: 100%;
        position: relative;
        justify-content: center;
        padding: 0 0.5em;
    }
    .echipament .left {
        width: 95%;
        max-width: 100%;
        padding: 0.5em;
    }
    .echipament .right {
        width: 100%;
    }
    .echipament .right img {
        width: 100%;
    }
}

@media  screen and (max-width: 360px){
    .landing .right img {
        width: 100%;
    }
}