@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;
    --servicii-green: #EDF5F3;
    --servicii-text-gray: #B0B0C3;
    --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 .nav-logo a {
    cursor: pointer;
}

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-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;
    overflow-y: auto;
    position: fixed;
    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
}

.servicii-info {
    position: relative;
    width: 80%;
    right: 0;
    left: 0;
    top: 150px;
    margin: auto;
    margin-bottom: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicii-info h1 {
    font-family: "Poppins", sans-serif;
    color: var(--dark-blue);
    font-size: 48px;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.servicii-info .info-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.servicii-info .info-list .item {
    height: 50px;
    padding: 10px 20px;
    background-color: var(--servicii-green);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: start;
    cursor: default;
}


.servicii-info .info-list .item p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    color: #72727e;
}

.servicii-info .info-list .item p span {
    font-weight: 600;
    color: var(--dark-blue);
    margin-left: 5px;
}

.list {
    position: relative;
    width: 100%;
    height: auto;
}

.list .list-info {
    width: 50%;
    left: 0;
    right: 0;
    margin: auto;
}

.list .list-info .list-item {
    padding: 1.5rem 2rem;
    border-radius: 30px;
    background-color: var(--day);
    box-shadow: 0px 10px 50px 0px #0000001a;
    margin-bottom: 3rem;
}

.list .list-info .list-item h1 {
    font-family: "Poppins", sans-serif;
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.list .list-info .list-item ul li {
    position: relative;
    padding: 10px 0;
}

.list .list-info .list-item ul li::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.5px;
    background-color: #DEE2E6;
}

.list .list-info .list-item ul li p {
    font-family: "Poppins", sans-serif;
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 400;
}

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: 1475px){
    .servicii-info .info-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 950px) {
    nav .nav-right #burger {
         display: block;
        }
    nav .nav-left .nav-list {
        display: none;
        }
     nav .nav-right button {
        display: none;
    }
}

@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;
    }
    footer .info {
        grid-template-columns: repeat(2, 1fr);
    }

    footer .info .right {
        margin-top: 30px;
    }
}

@media screen and (max-width: 1024px){
    footer .info {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px
    }
    .servicii-info .info-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px){
    .servicii-info .info-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .list {
        padding: 0 5em
    }
    .list .list-info {
        width: 100%;
    }
}

@media screen and (max-width: 640px){
    .servicii-info h1 {
        font-size: 2.5em;
    }
    .list {
        padding: 0 3em;
    }
}

@media screen and (max-width: 475px){
    .servicii-info h1 {
        font-size: 2em;
    }
    .list {
        padding: 0 1.5em;
    }
}