body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color:#EAEAEA;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.main-wrapper {
    min-height: calc(100dvh - 3.125rem);
}
.container {
    max-width: 1440px;
    margin-inline: auto;
}
img {
    max-width: 100%;
    height: auto;
}
.hero {
    height: 23.75rem;
    width: 100%;
    background-image: url('../images/hero-lp-min.webp');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
}
h1 {
    color:#fff;
    font-weight: 700;
    line-height: 2.5rem;
    max-width: 26.25rem;
    text-align: center;
    margin-bottom: 6rem;
    margin-top: 3.5rem;
    padding-inline: 1rem;
    font-size:1.5rem;
}
@media (min-width: 576px) {
    h1 {
        font-size: 1.875rem;
    }
}
.btn {
    color: #000;
    font-weight: 700;
    line-height: 1.25;
    padding-block: 1.25rem;
    border: 1px solid #000;
    text-decoration: none;
    cursor: pointer;
    max-width: 15.5rem;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 1.875rem;
    transition: 0.3s;
}
.btn:hover {
    background-color: #000;
    color: #fff;
}
main {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
    justify-content: center;
    margin-top: 7rem;
    padding-inline: 1rem;
    padding-bottom: 7.5rem;
}
@media (min-width: 992px) {
    main {
        flex-direction: row;
        gap:0.375rem;
    }
}
@media (min-width: 1200px) {
    main {
        padding-inline: 0;
    }
}
.tile {
    flex: 1;
}
@media (min-width: 992px) {
    .tile {
        flex: 0 1 19.25rem;
    }
}
@media (min-width: 992px) {
    .tile:nth-child(2) {
        flex: 0 1 30rem;
    }
}
.tile-title {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
}
.tile-logo {
    background-color: #F7F7F7;
    height: 10rem;
    position: relative;
    margin-top: 3.875rem;
    opacity: 0;
    transform: translateY(-100vh);
    animation: fall 1s ease-out forwards;
}
@media (max-width: 992px) {
    .tile-logo {
        transform: translateX(-100vw);
        animation: slide-in 1s ease-out forwards;
    }
}
.image-hover, .image-active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 5rem;
    transition: opacity 0.3s;
}
.image-active {
    transition: opacity 0.3s;
    z-index: 1;
}
.tile-logo:hover .image-hover {
    opacity: 1;
}
.tile-logo:hover .image-active {
    opacity: 0;
}

.tile:nth-child(2) .tile-logo {
    animation-delay: 0.2s;
}
.tile:nth-child(3) .tile-logo {
    animation-delay: 0.4s;
}
.footer {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: end;
}
.footer-wrap {
    background: #fff;
    padding: 1rem;
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.bold {
    font-weight: 700;
}
@keyframes fall {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}