@import '../includes/_imports.css';
main {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(-60deg, #002d5c, #003f81);
    overflow-x: hidden;
    position: relative;
}


/* Effects */

.effect-1 {
    position: absolute;
    top: 100px;
    right: 0px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(300px);
}

.effect-2 {
    position: absolute;
    top: 800px;
    left: 0px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(300px);
}


/* Shapes */

.shape-1 {
    position: absolute;
    width: 200px;
    top: 500px;
    right: -100px;
}


/* Hero Section */

.hero {
    width: 100%;
    padding: 200px 0px;
    display: flex;
    justify-content: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .container h1 {
    font-size: 65px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero .container h1 span {
    color: var(--primary-color);
}

.hero .container h4 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 100px;
}

.hero .container .box {
    width: 900px;
    padding: 20px 0px;
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    border-radius: 20px;
}

.hero .container .box a {
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.hero .container .box a:last-child {
    border-right: none;
}

.hero .container .box a img {
    width: 50%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.hero .container .box a h3 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s ease;
}

.hero .container .box a:hover h3 {
    color: var(--primary-color);
}


/* Responsive */


/* Hero Section (Responsive) */

@media only screen and (max-width: 1024px) {
    .hero {
        padding: 100px 0px;
    }
    .hero .container h1 {
        font-size: 45px;
        margin-bottom: 10px;
    }
    .hero .container h4 {
        font-size: 16px;
    }
    .hero .container .box {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    .hero .container .box a:nth-child(2) {
        border-right: none;
    }
}

@media only screen and (max-width: 480px) {
    .hero .container .box {
        grid-template-columns: 1fr;
    }
    .hero .container .box a {
        border-right: none;
    }
}