/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
    font-family: 'Helvetica Neue',Helvetica,Arial,Lucida,sans-serif;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
    font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
    isolation: isolate;
}

body{
    height: 100svh;
    align-content: center;
    position: relative;
    @media screen and (max-width: 980px){
        height: auto;
        padding: 50px 0 ;
    }
    &:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100svw;
        height: 100%;
        background: #007095;
        z-index: -1;
        opacity: 0.9;
    }
}
.container{
    width: 100%;
    position: relative;
    .wrapper{
        max-width: 1440px;
        margin: 0 auto;
        .row{
            padding: 0 80px;
            @media screen and (max-width: 980px){
                padding: 0 30px;
            }
        }
    }
}

.main-title{
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    @media screen and (max-width: 980px){
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    img{
        height: auto;
        width: 80%;
        max-width: 450px;
        object-fit: contain;
        display: block;
        vertical-align: middle;
        margin: 0 auto 30px;
        border: 1px solid #fff;
    }
}

.main-content{
    margin-bottom: 70px;
    color: #fff;
    p{
        margin-bottom: 15px;
        font-size: 18px;
    }
    a{
        color:#fff;
        font-weight: 600;
    }
}

.link-group{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    @media screen and (max-width: 980px){
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .link{
        width: 32%;
        border: 1px solid #000;
        background: #fff;
        @media screen and (max-width: 980px){
            width: 90%;
        }
        .title{
            background: #000;
            color: #fff;
            text-align: center;
            text-transform: uppercase;
            padding: 10px;
            font-size: 18px;
        }
        .logo{
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
            img{
                max-height: 100px;
                max-width: 80%;
                object-fit: contain;
                display: inline-block;
                vertical-align: middle;
            }
        }
        a{
            display: block;
            border-radius: 10px;
            color:#fff;
            text-align: center;
            margin: 0 15px 15px;
            text-decoration: none;
            padding: 5px 15px;
            text-transform: uppercase;
        }
        &:nth-child(1){
            a{
                background: #26AF8D;
            }
        }
        &:nth-child(2){
            a{
                background: #2B99AB;
            }
        }
        &:nth-child(3){
            .logo{
                img{
                    padding: 20px 0;
                }
            }
            a{
                background: #AB3C55;
            }
        }
    }
}