/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: "montserrat", sans-serif;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* end of global */

@media(min-width: 1366px) {
    .full-screen {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .picture-modal {
        position: relative;
        background-color: #fff;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 5px;
        padding: 50px;
        width: 50%;
        min-width: 600px;
        height: auto;
        min-height: 600px;
    }
    .close-modal {
        position: absolute;
        top: 2.5px;
        right: 15px;
        font-size: 45px;
        color: #000;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        cursor: pointer;
    }
    .close-modal:hover {
        color: #231F20 !important;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .full-screen {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .picture-modal {
        position: relative;
        background-color: #fff;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 5px;
        padding: 50px;
        width: 60%;
        min-width: 500px;
        height: auto;
        min-height: 500px;
    }
    .close-modal {
        position: absolute;
        top: 2.5px;
        right: 15px;
        font-size: 45px;
        color: #000;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        cursor: pointer;
    }
    .close-modal:hover {
        color: #231F20 !important;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .full-screen {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .picture-modal {
        position: relative;
        background-color: #fff;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 5px;
        padding: 50px;
        width: 70%;
        min-width: 500px;
        height: auto;
        min-height: 500px;
    }
    .close-modal {
        position: absolute;
        top: 2.5px;
        right: 15px;
        font-size: 45px;
        color: #000;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        cursor: pointer;
    }
    .close-modal:hover {
        color: #231F20 !important;
    }
}

@media(max-width: 769px) {
    .full-screen {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .picture-modal {
        position: relative;
        background-color: #fff;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 5px;
        padding: 25px;
        width: 90%;
        min-width: 90vw;
        height: 400px;
        min-height: auto;
    }
    .close-modal {
        position: absolute;
        top: 2.5px;
        right: 15px;
        font-size: 35px;
        color: #000;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        cursor: pointer;
    }
    .close-modal:hover {
        color: #231F20 !important;
    }
}
