/* Global Styles - Loads on every page */

.sb_row {
    padding: 50px 200px;
}

strong, b {
    font-weight: bold;
}

@media screen and (max-width: 1250px) {
    .sb_row {
        padding: 50px 100px;
    }
}

@media screen and (max-width: 1100px) {
    .sb_row {
        padding: 50px 60px;
    }
}

@media screen and (max-width: 992px) {
    .sb_row {
        padding: 50px 48px;
    }
}

@media screen and (max-width: 768px) {
    .sb_row {
        padding: 24px 24px;
    }
}

/* Breadcrumb */
section.sb_breadcrumb {
    padding: 12px 200px;
    background: #D6E1E4;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

section.sb_breadcrumb span {
    color: #608C98;
    text-align: center;
    font-family: 'Jura', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: 0.4px;
}

span.sb_breadcrumb_separator {
    color: #46454B !important;
}

section.sb_breadcrumb a {
    color: #46454B;
    text-align: center;
    font-family: 'Jura', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: 0.4px;
    text-decoration: none;
}

@media screen and (max-width: 1250px) {
    section.sb_breadcrumb {
        padding: 12px 100px;
    }
}

@media screen and (max-width: 1100px) {
    section.sb_breadcrumb {
        padding: 12px 60px;
    }
}

@media screen and (max-width: 992px) {
    section.sb_breadcrumb {
        padding: 12px 48px;
        gap: 12px;
    }
    section.sb_breadcrumb a {
        font-size: 18px;
    }
}

/* CTA Κλείστε Ραντεβού */
section.sb_cta_kleiste_rantevou.sb_row {
    background: #D6E1E4;
}

section.sb_cta_kleiste_rantevou.sb_row .sb_container {
    display: flex;
    width: 1520px;
    padding: 50px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 32px;
    border-radius: 20px;
    background: #d0dadd;
    width: 100%;
}

section.sb_cta_kleiste_rantevou.sb_row h2 {
    color: #46454B;
    font-family: 'Jura', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    max-width: 430px;
}

.sb_cta_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sb_cta_links a {
    display: flex;
    padding: 12px 24px;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
    border-radius: 30px;
    border: 1px solid #0B2241;
    background: #FFF;
    width: fit-content;
    color: #46454B;
    font-family: 'Jura', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: ease-in-out 0.3s all;
}

.sb_cta_links a:hover {
    background: #1E2A5E;
    color: #fff;
    transition: ease-in-out 0.3s all;
}

.sb_cta_links a:hover svg path {
    fill: #fff;
    transition: ease-in-out 0.3s all;
}

@media screen and (max-width: 992px) {
    section.sb_cta_kleiste_rantevou.sb_row h2 {
        font-size: 22px;
        line-height: 24px;
        max-width: 100%;
    }

    .sb_cta_links a {
        padding: 8px 16px;
        font-size: 18px;
        line-height: 22px;
    }

    section.sb_cta_kleiste_rantevou.sb_row .sb_container {
        padding: 24px;
    }
}