@font-face {
    font-family: 'Mont-Bold';
    src: url('fonts/Mont-Bold.ttf') format('ttf');
}

@font-face {
    font-family: 'Mont-Regular';
    src: url('fonts/Mont-Regular.ttf') format('ttf');
}

@font-face {
    font-family: 'MyriadPro-Regular';
    src: url('fonts/MyriadPro-Regular.ttf') format('ttf');
}

:root {
    --color-darkblue: #112538; 
    --color-blue: #174E7E; 
    --color-lightblue: #1B7EE8; 
    --color-green: #5EDD63; 
}

body {
    font-family: 'Mont-Regular';
}
.cid-sc50GshO84 .container-fluid {
    padding: 0!important;
}


.menu__contact {
    background-color: var(--color-blue);
    font-size: 1.5rem;
    color: white;
    display: flex;
    width: 100%;
    padding: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
.menu__contact span {
    color:var(--color-green);
}

@media (max-width:400px) {
    
}

.mbr-text {
    color:#333!important;
}

.category-title {
    background-color: var(--color-lightblue);
    color:white;
    padding: 20px;
}

.category-title h2 {
    font-size: 2.5rem;
    font-family: 'Mont-Bold';
}

.padding-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.form-title {
    font-size: 3rem;
    color:white;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}
.form-title span {
    color:var(--color-green);
    font-weight: bold;
}
.form-subtitle {
    font-size: 1.6rem;
    color: #ffffff90;
    margin-bottom: 30px;
}
.cid-sc5nBDhvKe form.mbr-form {
    background-color: var(--color-darkblue)!important;
}
.cid-sc5nBDhvKe {
    background-image: url('../../images/form-bg.png')!important;
}

.footer {
    background-color: var(--color-darkblue)!important;
    color:white;
    padding: 80px 0!important;
}

.footer address {
    font-size: 1.3rem;
}

.footer h2 {
    font-size: 2rem;
    font-weight: bold;
    color:white
}
.footer h2 span {
    font-weight: bold;
    color: var(--color-green);
}

.hero {
    width:100%;
    padding: 100px;
    background: url(../../images/background-hero.jpg) no-repeat center;
    background-size: cover;
}
.flex {
    display: flex;
    align-items: center;
    gap:100px;
    margin: auto;
    width:75%;
}

.hero__logo {
    width:100%;
    display: flex;
    justify-content: right;
}
.hero__logo img {
    max-width:350px;
}
.hero__text {
    width: 100%;
    text-align: right;
}
.hero__text h2 {
    color: var(--color-green);
    margin-bottom: 30px;
}
.hero__text p {
    color:white;
    padding-bottom: 20px;
    font-size: 1rem;
    line-height: 1.3;
}
@media (max-width:991px) {
    .flex {
        flex-direction: column;
        width: 100%;
        gap:50px;
    }
    .hero__text {
        text-align: center;
    }
    .hero {
        padding: 20px;
    }
}