/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
}

* {
    scroll-behavior: smooth;
}

button,
input {
    font-family: 'Montserrat';
}

button {
    cursor: pointer;
    width: fit-content;
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 14px;
    outline: 0;
    border: 0;
    transition: all ease .3s;
}

button:hover {
    transform: scale(1.08);
}

.container {
    width: 1140px;
    margin: auto;
}
.showTablet{
    display: none!important;
}

@media (max-width: 1000px) {
    .container {
        width: 656px;
    }
    .hideTablet{
        display: none!important;
    }
    .showTablet{
        display: block!important;
    }
}
@media (max-width: 675px) {
    .container {
        width: 75%!important;
    }
    .hideMobile{
        display: none!important;
    }
}