@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.hero-section {
    background-color: #9B4FE2;
    background-image: url("img/hero.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    color: #fff;
    border-radius: 0px 0px 48px 48px;
    padding: 40px 0;
}
.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 625px;
}
.hero-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 1.25em;
}
.hero-nav div{
    display: flex;
    align-items: center;
}
.hero-nav div img {
    margin-right: 1em;
}
.hero-nav div a {
    margin: 0 2em;
}
.hero-h1 {
    width: 45%;
}
.hero-btn {
    background: #fff;
    color: #000;
    padding: 1.1em 5em;
    border: none;
    border-radius: 16px;
    margin-bottom: 3.5em;
}
.adv {
    padding: 4em 0;
}
.adv-h1, .part-h1, .proj-h1  {
    font-size: 2em;
    text-align: center;
}
.adv-p {
    font-size: 1.25em;
    font-weight: 400;
    text-align: center;
}
.cards {
    padding: 1.5em 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 2em 2em;
    grid-template-areas:
    ". . .";
}
.card, .offer {
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 1.25em;
}
.card img {
    display: block;
    margin: 0 auto;
    width: 258px;
    height: 156px;
}
.card p:nth-of-type(2) {
    font-weight: 400;
}
.partners {
    overflow: hidden;
    display: flex;
    padding: 1.5em 0;
    justify-content: space-around;
}
.partner {
    width: 282px;
    height: 164px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 32px;
}
.proj {
    text-align: center;
    padding: 2.5em 0;
}
.offer {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    height: 125px;
    margin-top: 3em;
    margin-bottom: 6em;
}
footer {
    padding: 1em 0;
    border-top: 1px solid rgba(51, 51, 51, 0.3);
    font-weight: 400;
}

