
main .template-default .hero {
    background: linear-gradient(68.66deg, #672D89 19.28%, #9C2463 100%);
    width: 100%;
    display: flex;
    justify-content: center;

    .hero-content {
        position: relative;
        width: 100%;
        height: 67vw;
        max-height: 1000px;
        max-width: 1500px;
    }

    .hero-content > * {
        position: absolute;
    }

    .hero-content > img {
        height: 100%;
    }

    .hero-content > .title {
        color: white;
        top: 13%;
        right: 37%;
        width: 60%;

        .top {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            letter-spacing: 0.2em;
        }

        .middle-front, .middle-back {
            position: absolute;
            font-family: 'Yantramanav', sans-serif;
            font-weight: 900;
            transform: scale(1.7, 1.7);
            letter-spacing: 0.17em;
        }

        .middle-back {
            top: 0;
            left: 0;
            width: 100%;
            height: 97px;
        }

        .bottom {
            font-family: 'Palatino', sans-serif;
            letter-spacing: 0.15em;
        }

        .subtext {
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.13em;
        }
    }

    .hero-content > .title.adj-right {
        right: 39%;
    }

    .hero-content > .title {

        .middle-front.ai-adj {
            transform: scale(1.2, 1.2);
            letter-spacing: 0.04em;
        }

        .subtext.ai-adj {
            letter-spacing: 0.10em;
        }
    }

    .hero-content > .description {
        top: 73%;
        left: 4.75%;
        width: 35%;

        text {
            letter-spacing: 0.02em;
        }
    }
    
}

#intro-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    p {
        font-size: 18px;
    }
}

#intro-text > * {
    max-width: 1500px;
    padding: 0 30px;
}


#section-two-content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 24px;

    .slot {
        width: 100%;
        margin: 0;

        .slot-content {
            .te ul li::before {
                background-color: white;
            }

            .button, .button::before {
                background: #F47521;
                border-radius: 5px;
            }

            .button {
                padding-top: 15px;
                letter-spacing: 0.04em;
                box-shadow: 4px 4px 8px 4px rgba(0,0,0,0.3);
            }
        }

    }

    .slot:first-child {
        align-items: center;

        .slot-image {
            margin: 0;
            width: fit-content;
            height: fit-content;
    
            .image-container {
                background: radial-gradient(white 67%, transparent 70%);
                border-radius: 50%;
                max-width: 450px;
    
                img {
                    position: relative;
                    width: calc(100% - 16px);
                    margin: 8px;
                }
            }
    
        }
    }

    .slot:last-child .slot-content .te p:first-child {
        font-weight: 600;
        letter-spacing: 0.08em;
        font-size: 24px;
    }
} 

.masonry {
    display: grid;
    grid-template-columns: 100%;
    gap: 24px 24px;
    align-items: center;
    
    & > p {
        margin-bottom: 0 !important;
        vertical-align: center;
    }

    img {
        width: 100%;
        max-height: 15vh;
        object-fit: cover;   
    }

    @media (min-width: 1024px) {
        img {
            max-height: 30vh;
        }
    }

    @media (min-width: 1400px) {
        grid-template-columns: 40% 1fr 40%;

        img {
            max-height: none;
        }

        & > p:nth-child(2n) {
            grid-column: 2 / span 2;
        }

        & > p:nth-child(2n + 1) {
            grid-column: 1 / span 2;
        }
    }
}

@media (min-width: 768px) {
    #section-two-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;

        .slot {
            max-width: 45%;
        }

        .slot:first-child {
            .slot-image {
                .image-container {
                    max-width: 700px;
                }
        
            }
        }
    }  
}

@media (min-width: 1400px) {
    #section-two-content {
        .slot {
            max-width: 40%;
        }
    }
}

#section-three {
    a {
        color: #F47521;
        text-decoration: none;
        font-weight: 600;
    }
    
    .te {
        display: flex;
        flex-direction: column;
        gap: 40px;
        justify-content: space-between;
        align-items: center;
    }

    .te > * {
        width: 100%;
    }

    .te > .about-keynote {
        height: fit-content;
        color: white;
        padding: 30px;
        border-radius: 5px;
        background: linear-gradient(68.66deg, #672D89 19.28%, #9C2463 100%);

        &:has(img) {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            height: auto;
            align-self: stretch;

            & > img, & > .background > img {
                border-radius: 5px;
            }

            .background {
                width: fit-content;
            }

            .highlight {
                background: white;
                border-radius: 5px;
                box-shadow: 0 0 4px 2px rgba(255,255,255,0.5);
                
            }
        }

    }

    /* .form-title {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.03em;
    } */
    
    #section-three-form form  {
        border: 1px solid black;
        border-radius: 5px;
        padding: 20px;
        filter: drop-shadow(0, 0, 4px rgba(0,0,0,0.4));

        #ak-post-first p {
            font-size: 10px;
        }
    }
}

@media (min-width: 768px) {
    #section-three {
        .te {
            flex-direction: row;
        }

        .te > * {
            width: 45%;
        }
    }
}
