* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'gotham-book';
    src: url('../fonts/GothamBookItalic.ttf');
}

@font-face {
    font-family: 'opensans-extrabold';
    src: url('../fonts/OpenSans_Condensed-ExtraBold.ttf');
}

@font-face {
    font-family: 'opensans-regular';
    src: url('../fonts/OpenSans-Regular.ttf');
}

.init {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgb(255, 255, 255, 0.7) 100%),
    url('../img/container-ship-is-sailing-ocean.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.init > h3 {
    margin-top: 40px;
    margin-bottom: 50px;
    font-family: 'gotham-book', sans-serif;
    font-size: 1.5rem;
}

.init > h1 {
    font-family: 'opensans-extrabold', sans-serif;
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.init-title {
    display: block;
    padding: 1px 3px;
    width: fit-content;
    font-size: 1rem;
    letter-spacing: 3px;
    font-family: 'opensans-regular', sans-serif;
    background-color: rgb(54, 165, 222);
    color: #012B5D;
    margin-bottom: 50px;
}

.init-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 100px;
    place-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.init-card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    gap: 10px;
    font-size: 1rem;
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-family: 'opensans-regular', sans-serif;
}


.init-card-item > h4:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background-color: rgb(54, 165, 222);
    transition: transform 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: center;
}

.init-card-item:hover h4:after {
    transform: scaleX(1);
}

@media screen and (max-width: 768px) {
    .init-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .init > h3 {
        font-size: 1.2rem;
    }
}