* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: white;
}

/* Header */
header {
    width: 100%;
    height: 4em;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4em;
}

header img {
    height: 8em;
    width: auto;
}

header .header__a {
    background-color: #2563EB;
    color: white;
    width: 6.25em;
    height: 2.5em;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25em;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 0.375em 0.625em rgba(0, 0, 0, 0.1);
}

header a:hover {
    transform: scale(1.03);
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__align {
    max-width: 75em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5em;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

.hero__title {
    font-size: 1.875em;
    font-weight: 700;
    display: flex;
    flex-direction: column;
}

.hero__title h1 {
    display: flex;
    flex-direction: column;
}

.hero__title .blue {
    color: #2563EB;
}

.hero__text {
    color: #5E5E5E;
    font-weight: 500;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 2.5em;
}

.cta-button {
    background-color: #2563EB;
    color: white;
    width: 13.75em;
    height: 3.125em;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25em;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 0.375em 0.625em rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: scale(1.03);
}

.cta_info {
    width: 9.375em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.125em;
    padding-left: 1.25em;
    color: #5E5E5E;
    font-weight: 600;
    border-left: 2px solid #5E5E5E;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 80%;
    height: auto;
}

/* Media Queries */
@media (max-width: 69em) {

    .hero__align {
        flex-direction: column;
        text-align: center;
        padding-right: 0;
    }

    .hero__content {
        width: 100%;
        align-items: center;
    }

    .hero__text {
        width: 100%;
    }

    .hero__cta {
        flex-direction: column;
        gap: 1.25em;
    }

    .cta_info {
        border-left: none;
        padding-left: 0;
    }

    .hero-image {
        justify-content: center;
    }
}

@media (max-width: 50em) {

    header img {
        height: 6em;
    }

    header a {
        width: 5em;
        height: 2.5em;
        font-size: 1em;
    }

    .hero__title {
        font-size: 1.5em;
    }

    .hero__text {
        font-size: 1.125em;
    }

    .cta-button {
        width: 11.25em;
        height: 2.875em;
        font-size: 1.125em;
    }
}

@media (max-width: 35em) {

    header img {
        height: 5em;
    }

    header a {
        width: 4.375em;
        height: 2.125em;
    }

    .hero__title {
        font-size: 1.25em;
    }

    .hero__text {
        font-size: 1em;
        padding: 1em;
    }

    .cta-button {
        width: 10em;
        height: 2.5em;
        font-size: 1em;
    }

    .cta_info {
        font-size: 0.625em;
    }
}