/*========== BASE ==========*/
* {
    font-family: 'Geometria', sans-serif;
}

/*===== VARIABLES CSS =====*/
:root {
    /*========== Colors ==========*/
    --first-color: #660033;
    --second-color: #9c255a;
    --text-dark: black;
    --text-white: #fff;

    /*========== Margenes ==========*/
    --mb-1: 0.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;

    /*========== Font and typography ==========*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 1.2rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;

    /*========== Font weight ==========*/
    --font-semi-bold: 600;
    --font-bold: 700;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--text-white);
}

.nav {
    width: 70%;
    display: flex;
    justify-content: flex-end;
}

h1 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--second-color);
}

.subtitle {
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--second-color);
}

.connect_button {
    border: 1px solid white;
    border-radius: 50px;
    background-color: #ffffff;
    color: var(--first-color);
}

.bd-container {
    max-width: 1920px;
    width: calc(100% - 3rem);
    margin-left: var(--mb-3);
    margin-right: var(--mb-3);
    font-size: 1.05rem;
}

.image_center {
    width: 85%;
    margin: auto;
    display: flex;
    margin-block: 2rem;
    justify-content: center;
    border: 1px solid gainsboro;
    padding: 2rem;
}

.image_center:hover{
    transition: .3s;
    scale: 1.1;
}

.section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 5rem;
    margin-block: 2rem;
}

.box-style {
    margin-top: 6rem;
}

.text-center {
    text-align: center;
}

.trust-subtitle {
    font-size: 1.8rem;
    color: var(--second-color);
    font-weight: 500;
}

.award_list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.award_list > li {
    margin-bottom: 1.8rem;
}

.partners, .offer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin-block: var(--mb-5);
}

.partners_item {
    width: 23%;
    border: 1px solid gainsboro;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners_item-title {
    text-align: center;
    margin-bottom: var(--mb-4);
}

.partners_image_container-row {
    display: flex;
    flex-direction: row;
}

.partners_image_container-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partners_image_container-y {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: var(--mb-2);
}

.offer_item {
    width: 40%;
    height: 350px;
    border: 1px solid gainsboro;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: var(--mb-2);
    padding-block: var(--mb-3);
}

.offer_item:hover, .partners_item:hover {
    scale: 1.006;
    transition: .3s;
    border: 1.5px solid rgb(203, 38, 112);
    z-index: 1;
    box-shadow: 0 2.6px 2px rgba(156, 37, 90, 0.034),
    0 6.5px 5.1px rgba(156, 37, 90, 0.048),
    0 10.5px 8px rgba(156, 37, 90, 0.06),
    0 20.3px 15.9px rgba(156, 37, 90, 0.072),
    0 19.8px 31.4px rgba(224, 224, 224, 0.86),
    0 28px 38px rgba(156, 37, 90, 0.12);
}

.offer_item-content {
    min-height: 80px;
}

.add-object {
    margin-block: 2rem;
    padding-inline: 2rem;
}

.button_style {
    border: 1px solid var(--second-color);
    border-radius: 50px;
    background-color: var(--second-color);
    color: var(--text-white);
    height: 3rem;
    width: 50%;
    cursor: pointer;
}

.button_style:hover {
    background-color: var(--first-color);
}