/* Small screens */
@media only screen {

    .contact {
        display:none;
        box-sizing: border-box;
        padding: 4vw 0;
    }

    .contact-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 90%;
        max-width: 1000px;
        box-sizing: border-box;
        padding: 3vw;
        /*background-color: rgb(28 28 28);*/
    }
    .contact-container article{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .contact-container article h3{
        width:100%;
    }

    form {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    fieldset{
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
    }

    .fs-left{
        padding: .5vw;
    }
    .fs-right{
        justify-content: space-between;
        padding: 1vw .5vw;

        height:100%;
    }

    input[type=text] {
        font-family: 'Montserrat-SemiBold';
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
        margin: .5vw 0;
    }

    input[type=checkbox]{
        margin: 0;
        height: 3.5vw;
        width: 3.5vw;
        cursor:pointer;
    }

    textarea {
        font-family: 'Montserrat-SemiBold';
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        margin: 0 0 1vw 0;
        resize: none;
        padding: 5px;
    }

    .contact-container button{
        font-family: 'Montserrat-SemiBold';
        padding: 10px;
    }
    .send-mail {
        background: #b5e5ba;
    }

    .close-contacts{
        font-family: 'Montserrat-SemiBold';
        margin: 1vw 0 0 0;
        width: 100%;
        text-transform: uppercase;
        background: #ffb3b3;
    }

    .request-contacts, .contact-number-box {
        font-family: 'Montserrat-SemiBold';
        margin: 1vw 0 0 0;
        width: 100%;
        text-transform: uppercase;
        background: #b5e5ba;
    }

    .contact-number-box {
        display:none;
        justify-content: center;
        text-align: center;
        color: black;
        box-sizing: border-box;
        letter-spacing: .2em;
    }
    .contact-number-box a {
        width: 100%;
        padding: 12px;
        text-decoration: none;
        color:black;
    }

    .contact-logo {
        width: 100%
    }

    .checkbox-group{
        flex-direction: row;
        width: 100%;
        align-items: center;
        padding: 10px;
        justify-content: space-between;
        margin: 0.5vw 0;
    }

    .checkbox-group label{
        font-family: 'Montserrat-SemiBold';
        width: 100%;
        justify-content: center;
        display: flex;
        cursor:pointer;
    }
    .alert-container{
        position: absolute;
        top: 0;
        width: 100%;
        height: 2vw;
    }
    .contact-alert{
        position: relative;
        top: -100%;
        width: 100%;
        height: 100%;
        background: red;
        display: none;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        transition: top 0.3s linear;
    }

    #form-response-message, #form-response-loading {
        display:none;
    }

    #form-response-loading div{
        height: 15vmax;
        width: auto;
    }
    #form-response-loading svg{
        height: 100%;
    }

    #form-response-message h3 {
        text-align: center;
        margin: 4vh 0;
    }

    .form-notice-text {
        font-size: 11px;
        line-height: 11px;
    }
} /* Define mobile styles */

/*small screens in landscape orientation */
@media only screen and (orientation: landscape) {
    input[type=text], .checkbox-group {
        padding: 4px;
    }

    input[type=checkbox]{
        height: 2.2vw;
        width: 2.2vw;
    }
    .contact-logo {
        display:none;
    }
}

/* Medium screens */
@media only screen and (min-width: 40.063em) {
    .contact-container {
        height: unset;
    }
    .contact-logo {
        display:flex;
        width: 100%
    }
    form {
        flex-direction: row;
        height: unset;
    }
    fieldset{
        width: 50%;
    }
    input[type=text], .checkbox-group {
        padding: 10px;
    }
    input[type=checkbox]{
        height: 1.9vw;
        width: 1.9vw;
    }
    .fs-right{
        height: unset;
    }
} /* min-width 641px, medium screens */

/*Medium screens in landscape orientation */
@media only screen and (orientation: landscape) and (min-width: 40.063em) {
    .contact-logo {
        width: 30%
    }
    input[type=checkbox]{
        height: 1.8vw;
        width: 1.8vw;
    }
}

/* Large screens */
@media only screen and (min-width: 64.063em) {
    .contact-logo {
        width: 100%
    }
    input[type=checkbox]{
        height: 1.5vw;
        width: 1.5vw;
    }
} /* min-width 1025px, large screens */

/* XLarge screens*/
@media only screen and (min-width: 90.063em) {
    input[type=checkbox]{
        height: 1vw;
        width: 1vw;
    }
} /* min-width 1441px, xlarge screens */