/* PAGE BACKGROUND */
body {
    background-color: #f0f4fa !important;
}

/* BUTTON */
#fsm-form-send-button {
    background-color: #1e3a5f !important;
    border: none !important;
    color: #ffffff !important;
}

#fsm-form-send-button:hover {
    background-color: #162d4a !important;
    transform: scale(1.05);
}

/* MAIN */
#fsm-main-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 1rem;
}

#fsm-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 1rem;
}

#fsm-contact-circuit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#fsm-main-div {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 1000px;
    min-height: 750px;
    background-color: #0a1628;
    border: none;
    border-radius: 15px;
    backdrop-filter: none;
    margin: 100px auto 50px auto;
    padding: 20px;
    background-image: url('/images/extras/shiny1.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#fsm-main-content {
    display: grid;
    grid-template-columns: 60% 40%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-grow: 1;
    z-index: 1;
}

.fsm-h1 {
    position: relative;
    z-index: 1;
}

#fsm-main-left {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#fsm-main-contact {
    width: 100%;
    height: fit-content;
    margin: 0;
    margin-top: auto;
}

#fsm-main-contact h5 {
    color: var(--bg-color);
    font-size: 1.5rem;
    margin: 0;
    padding: 10px 0;
    font-family: Inter-Medium;

}

#fsm-main-contact p a {
    color: inherit;
    text-decoration: none;
}

#fsm-main-contact p {
    color: var(--bg-color);
    font-size: 1rem;
    margin: 0;
    padding: 10px 0;
    opacity: .75;
    padding: 0;
}

#fsm-contact-map {
    width: 75%;
    margin-top: 16px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

#fsm-contact-map iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: 0;
}

#fsm-main-socials {
    width: 100%;
    display: flex;
    align-items: center;
    height: fit-content;
    gap: 10px;
    padding: 20px 0;
    box-sizing: border-box;
}

#fsm-main-socials img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

/*---------- RESPONSIVE --------*/

/* Mobile */
@media (max-width: 576px) {
    #fsm-main-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {
    #fsm-main-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }
}

/* Laptops */
@media (min-width: 769px) and (max-width: 992px) {

}

/* Desktop */
@media (min-width: 993px) and (max-width: 1200px) {

}

/* Extra Large Screens */
@media (min-width: 1201px) {

}