@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px;
    font-family: "Stack Sans Text", sans-serif;
    list-style: none;
    text-decoration: none;
    font-weight: normal;
}

:root{
    --color-1: #737372;
    --color-2: #A69258;
    --color-3: #D9C484;
    --color-4: #D9BF8F;
    --color-5: #F2F2F2;

    --body: #F2F2F2;
    --header: #FFFFFF;
    --footer: #212121;

    --black-0: #000000;
    --gray-5: #555555;

    --white: #FFFFFF;

    --text: #444444;

    --content-mx-width: 1200px;

    --t-200ms-linear: all 200ms linear;
}

html{
    scroll-behavior: smooth;
    scroll-padding: 110px;
}

body{
    background: var(--body);
    color: var(--text);
}

body::selection{
    background: var(--color-2);
    color: var(--white);
}

body::-webkit-scrollbar{
    display: none;
}

.block-container{
    width: 100%;
    height: auto;
    display: flex;
    padding: 0 20px;
}

main{
    width: 100vw;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main{
    padding: 20px 0;
}

.block-content{
    margin: auto;
    width: 100%;
    height: auto;
    max-width: var(--content-mx-width);
}

.block-title{
    width: 100%;
    grid-column: 1/-1;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    text-transform: uppercase;
    /* margin-bottom: 20px; */
    color: var(--color-2);
}

.w-100{
    width: 100% !important;
}

.h-100{
    height: 100% !important;
}

.d-flex{
    display: flex;
}

.d-flex-center-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-flex-center-between{
    display: flex;
    align-items: center;
    justify-content: space-between !important;
}

.d-flex-center-left{
    display: flex;
    align-items: center;
    justify-content: left;
}

.d-flex-column{
    display: flex;
    flex-direction: column;
}

.gap-5{
    gap: 5px;
}

.gap-10{
    gap: 10px;
}

.gap-20{
    gap: 20px;
}

.padding-0{
    padding: 0 !important;
}

.margin-left{
    margin-left: auto !important;
}

.margin-right{
    margin-right: auto !important;
}

.margin-top{
    margin-top: auto !important;
}

.margin-top-15{
    margin-top: 15px;
}

button{
    cursor: pointer;
    background: none;
    border: 0;
    outline: 0;
}

.button-link{
    width: auto;
    height: 40px;
    padding: 0 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.button-link::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    width: 50px;
    height: 50px;
    display: flex;
    background: rgba(0 0 0 / 0.1);
    border-radius: 100%;
    transition: var(--t-200ms-linear);
    scale: 0;
    z-index: 0;
}

.button-link:hover::before{
    scale: 3.5;
}

.button-link span,
.button-link p{
    z-index: 1 !important;
}

.button-link-1{
    background: var(--color-2);
}

.button-link-1 span,
.button-link-1 p{
    color: var(--white);
}

.button-link-2{
    background: var(--white);
}

.button-link-2 span,
.button-link-2 p{
    color: var(--color-2) !important;
}

.banner-img{
    display: flex;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
}

.sub-title{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}

.title{
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
}

.text-center{
    text-align: center;
}

.text{
    color: var(--text);
}

.bold{
    font-weight: bold;
}

.uppercase{
    text-transform: uppercase !important;
}

.color-white{
    color: var(--white);
}

@media screen and (max-width: 600px){
    .banner-img{
        height: 180px;
    }

    .block-title{
        font-size: 22px;
    }
}