@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    font-family: "Roboto";
}

:root {
    --bg: #fff;
    --fg: #103178;
    --accent: #dd0000;
}

body {
    color: var(--fg);
}

::selection {
    background: #2ec4c6;
    color: #ffffff;
}



.page-container {
    margin: 0 auto;
    max-width: min(1280px, 98vw);
    width: 100%;
}

.adaptive-flex {
    display: flex;
    flex-direction: row;
}

@media (orientation: portrait) {
    .adaptive-flex {
        flex-direction: column;
    }
}

.section-py {
    padding: 52px 0;
}


/* GET IN TOUCH */
.get-in-touch input, .get-in-touch textarea {
    width: 50%;
    font-weight: 300;
    color: black;
    padding: 12px 20px;
    outline: 0;
    border: 1px solid var(--accent);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .get-in-touch input, .get-in-touch textarea {
        width: 92%;
    }
}

/* NAVSLIDER */
[data-open-navslider].active {
    background: var(--accent);
    color: var(--bg) !important;
}

section#main-contact-form input,
section#main-contact-form textarea {
    width: 100%;
}