/* Default styles */
*,
:before,
:after {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

*, html {
    scroll-behavior: smooth !important;
}

body {
    height: 100vh;
    color: var(--light-text);
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    background-color: #EFF0F4;

    line-height: normal;
}

a {
    text-decoration: none;
}

/* ICONS */
@font-face {
    font-family: 'ast-font';
    src:  url('fonts/ast-font.eot?v0c56r');
    src:  url('fonts/ast-font.eot?v0c56r#iefix') format('embedded-opentype'),
    url('fonts/ast-font.ttf?v0c56r') format('truetype'),
    url('fonts/ast-font.woff?v0c56r') format('woff'),
    url('fonts/ast-font.svg?v0c56r#ast-font') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="ast-"], [class*=" ast-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'ast-font' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ast-arrow-right:before {
    content: "\e900";
}
.ast-auction:before {
    content: "\e901";
}
.ast-circle-chevron-left:before {
    content: "\e902";
}
.ast-circle-chevron-right:before {
    content: "\e903";
}
.ast-circle-chevron-up:before {
    content: "\e904";
}
.ast-email:before {
    content: "\e905";
}
.ast-error-outline:before {
    content: "\e906";
}
.ast-family:before {
    content: "\e907";
}
.ast-groups:before {
    content: "\e908";
}
.ast-house:before {
    content: "\e909";
}
.ast-info-outline:before {
    content: "\e90a";
    color: #3b3b8b;
}
.ast-law:before {
    content: "\e90b";
}
.ast-location:before {
    content: "\e90c";
}
.ast-money:before {
    content: "\e90d";
}
.ast-phone:before {
    content: "\e90e";
}


/* SHARED */
.button {
    padding: 20px 30px;
    color: var(--light-text);
    background-color: var(--purple);
    border-radius: 40px;

    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

.button:hover {
    color: var(--grey-text);
    background-color: var(--grey-hover);
    cursor: pointer;
}

.button_secondary {
    background-color: var(--dark-brown);
    border: 1px solid var(--purple);
    width: fit-content;
}

@media(max-width: 500px) {
    .button {
        white-space: normal;
        font-size: 14px;
    }
}

@media(max-width: 428px) {
    body {
        font-size: 16px;
    }
}

.ast-circle-chevron-up {
    color: var(--light-text);
    font-size: 40px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.ast-circle-chevron-up:hover {
    cursor: pointer;
}

.ast-circle-chevron-up a {
    width: 40px;
    height: 40px;
    display: block;
    position: fixed;
    z-index: 999;
    bottom: 30px;
    right: 30px;
}

@media(max-width: 810px) {
    .ast-circle-chevron-up {
        bottom: 10px;
        right: 10px;
    }

    .ast-circle-chevron-up a {
        bottom: 10px;
        right: 10px;
    }
}































