/* root styles */

:root {
    --dark-color: #212124;
}

::selection {
    background: #212124;
    color: #5b015b;
}

body {
    background-color: #212124;
}

/* svg styles */

.st0{fill:#FFFFFF;stroke:#231F20;stroke-miterlimit:20;}
.st1{fill:#FFFFFF;stroke:#231F20;stroke-width:0.1;stroke-miterlimit:20;}
.st2{fill:#FFFFFF;}

/* containers */

.container {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}

.title-container {
    display: grid;
    justify-items: center;
    justify-content: center;
    padding-bottom: 1vh;
    padding-top: 1vh;
}

.solutions-container {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr;
}

/* fonts */

.subtitle {
    font-size: min(5vw, 36px);
}

.large {
    font-size: large;
}

.bold {
    font-weight: bold;
}

.dark {
    background-color: var(--dark-color);
}

.high-tower {
    font-family: "High Tower Text", serif;
}

/* grids */

.inquiries {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
}

.submit-inquiry {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    padding-top: 20px;
    grid-row-gap: 10px;
}

.info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 50px;
}

.solution {
    display: grid;
    grid-template-columns: 1fr;
}

/* logo */

.activeLogo {
    stroke: #5b015b;
    stroke-width: 0.2;
    transition: all 0.5s ease-in-out;
    filter: drop-shadow( 2px 2px 3px #5b015b);
}

.inactiveLogo {
    filter: drop-shadow( 2px 2px 3px #5b015b);
    transition: all 0.5s ease-in-out;
}

/* solution images */

.solution svg {
    width: max(10vh, 10vw);
}

.solution img {
    width: max(10vh, 10vw);
}

.submit-button {
    width: 200px;
    background-color: var(--dark-color);
    padding: 10px;
    border: 1px white solid;
    color: white;
}

.submit-button:hover {
    width: 200px;
    background-color: #5b015b;
    padding: 10px;
    border: 1px white solid;
    color: white;
    transition: all .1s ease-in-out;
    cursor: pointer;
}

.success {
    color: green;
}

.error {
    color: red;
}

/* inputs */

.email-input {
    width: 200px;
}


/* footer */

.footer div {
    font-size: small;
}

.footer container {
    grid-template-columns: 1fr;
}


.white {
    color: white;
}


/* media queries */

@media (width <= 500px) {
    .footer {
        padding-top: 6vh;
        padding-bottom: 1vh;
    }    
}

@media (width >= 500px) {
    .footer {
        padding-top: 15vh;
        padding-bottom: 1vh;
    }    
}

@media (width <= 500px) {
    .web-info {
        padding-top: 2vh;
        display: grid;
        grid-template-rows: 50px 50px;
    }
}

@media (width >= 500px) {
    .web-info {
        padding-top: 2vh;
        display: grid;
        grid-template-rows: 30px 30px;
    }
}


@media (width <= 1000px) {
    .inquiry {
        width: 60vw;
    }
}

@media (width >= 1000px) {
    .inquiry {
        width: 50vw;
    }
}

@media (width <= 1500px) {
    .subtitle-small {
        font-size: large;
    }
}

@media (width >= 1500px) {
    .subtitle-small {
        font-size: x-large;
    }
}

@media (width <= 1500px) {
    .title {
        font-size: 3vh;
        grid-area: 1 / 1 / 3 / 2;
    }
}

@media (width >= 1500px) {
    .title {
        font-size: 2vw;
        grid-area: 1 / 1 / 3 / 2;
    }
}

@media (width <= 1500px) {
    .logo {
        width: 35vh;
        grid-area: 1 / 1 / 4 / 2;
    }
}

@media (width >= 1500px) {
    .logo {
        width: 25vw;
        grid-area: 1 / 1 / 4 / 2;
    }
}
