@charset "utf-8";
/* CSS Document */

/*********************** General ************************/
html {
    font-family: 'Roboto', sans-serif !important;
    -ms-text-size-adjust: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #F3F3F3;
    font-size: 16px;
    line-height: 1.6;
    color: #1f1f1f;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

:root {
    --light-grey: #f1f1f1;
    --grey: #7c7a78;
    --white: #FFFFFF;
    --black: #1f1f1f;
    --red: #D4413A;
    --pink: #F0E0E0;
    --orange: #C3AB2B;
    --green: #FF906A;
}

/*********************** Fonts ************************/
h1, h2, h3, h4 {
    font-style: normal;
    font-weight: 500;
}

h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-top: 0;
    font-weight: 500;
}

/* @media (max-width: 650px) {
    h1 {
        font-size: 52px;
    }
} */

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

p {
    font-size: 16px;
    font-weight: 400;
}

ul, li {
    list-style: none;
    padding-inline-start: 0px;
    font-size: 16px;
}

a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/*********************** Wrappers ************************/
.wrapper_large, .wrapper_small {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
}

.wrapper_large {
    width: 1500px;
}

.wrapper_small {
    max-width: 45%;
    width: 750px;
}

@media (max-width: 1200px) {
    .wrapper_large {
        max-width: 90%;
    }

    .wrapper_small {
        max-width: 60%;
    }
}

@media (max-width: 950px) {
    .wrapper_small {
        max-width: 75%;
    }
}

@media (max-width: 650px) {
    .wrapper_large,
    .wrapper_small {
        max-width: calc(100% - 40px);
    }
}

/* .wrapper_small h1 {
    text-align: center;
} */

.page {
    width: 100%;
}

/*********************** Buttons ************************/
.buttons_container {
    display: flex;
    align-items: stretch;
}

.actions_buttons {
    justify-content: flex-end;
}

.buttons_container a:first-of-type {
    margin-right: 20px;
}

.button,
.button_2,
.button_3,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 46px !important;
    background-color: var(--black);
    text-align: center;
    color: var(--white);
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
    text-transform: uppercase;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.1s all ease-in-out;
}

.button_2 {
    background-color: var(--red) !important;
    color: var(--white) !important;
}

.button_3 {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.square_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 3px 10px #0000000D;
    transition: 0.1s all ease-in-out;
}

.button i,
.button_2 i,
.button_3 i,
input[type="submit"] i,
input[type="reset"] i,
input[type="button"] i {
    margin-right: 8px;
}

.button:hover,
.button_2:hover,
.square_button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    opacity: 0.9;
    transition: 0.15s all ease-in-out;
}

.button_3:hover {
    background-color: var(--black);
    color: var(--white);
    transition: 0.15s all ease-in-out;
}

.button:active,
.button_2:active,
.button_3:active,
.square_button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    transform: scale(0.96);
    opacity: 1;
    background-position: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

@media (max-width: 500px) {
    .buttons_container {
        display: block;
    }
    
    .button,
    .button_2,
    .button_3,
    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        width: 100%;
        margin-left: 0;
    }

    .buttons_container a:first-of-type {
        margin-right: 0;
        margin-bottom: 20px;
    }
}