
* {
    box-sizing: border-box;
}

html {
    font-family: "Figtree", sans-serif;
}

body {
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    margin-bottom: 40px;
}

nav .actions {
    display: flex;
    gap: 48px;
}

nav .actions a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
}

footer {
    padding: 12px;
    display: flex;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6em;
    font-weight: 600;
    margin-left: 12px;
}

.logo img {
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjAwJyBoZWlnaHQ9JzIwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNMTAwIDBDMjAgMCAwIDIwIDAgMTAwczIwIDEwMCAxMDAgMTAwIDEwMC0yMCAxMDAtMTAwUzE4MCAwIDEwMCAwWicvPjwvc3ZnPg==);
  width: 35px;
  height: 36px;
}

.app-hero {
    display: flex;
    flex-direction: row;
    padding: 0 8% 0 8%;
    gap: 8%;
    justify-content: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .app-hero {
        flex-wrap: wrap;
    }

    .app-hero-text .open-app-btn {
        margin: 0 auto;
    }
}

.app-phone img {
    max-width: 22rem;
}

.app-hero-headline {
    font-size: clamp(2rem, calc(3.5vw + 1.5rem), 5rem);
    font-weight: 900;
}

.app-hero-text .lead {
    font-size: clamp(1.15rem, calc(1.4vw + 0.5rem), 1.6rem);
}

.open-app-btn:hover, .section-contact a:hover {
    background-color: #B4E5FD;
}

.open-app-btn, .section-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-decoration: none;
    border-radius: 16px;
    color: #000000;
    padding: 8px;
}

.section-contact a {
    border: 3px solid #22005D;
    color: #22005D;
    margin-top: 20px;
}

.app-hero-text .open-app-btn {
    width: 240px;
    height: 72px;
    font-size: 1.6em;
    border: 4px solid #000000;
    margin-top: 1em;
}

.app-hero-text .open-app-btn img, .section-contact img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    margin-left: 8px;
}

nav .open-app-btn {
    border: 2px solid #000000;
    font-size: 1.2em;
    margin-right: 16px;
}

nav .open-app-btn img {
    margin-right: 4px;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.section-main-promo {
    background-color: #0D47A1;
    padding-bottom: 0;
}

.section-main-promo img {
    max-width: 80%;
}

.section-slogan {
    background-color: #B4E5FD;
    font-size: 3em;
    font-weight: 900;
}

.section p {
    margin: 0;
    text-align: center;
}

.section-contact {
    display: flex;
    flex-direction: column;
}