@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

body * {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Roboto', sans-serif !important;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    text-transform: uppercase;
}

h3 a {
    text-decoration: none;
    color: #3a80b3;
}

.content h1 {
    font-size: 40px;
    font-weight: normal;
    color: #3a80b3;
    /* color: #e78701; */
    text-align: center;
    line-height: 1.3;
}
@media (max-width: 767.98px) {
    .content h1 {
        font-size: 30px;
    }
}
.content h2 {
    font-size: 30px;
    font-weight: lighter;
    color: #3a80b3;
    margin-bottom: 16px;
}
@media (max-width: 767.98px) {
    .content h2 {
        font-size: 20px;
    }
}
.content h3 {
    font-size: 30px;
    font-weight: normal;
    color: #3a80b3;
}
.content h3.small {
    font-size: 22px;
}
@media (max-width: 767.98px) {
    .content h3 {
        font-size: 20px;
    }
}
.link {
    opacity: 1;
    transition: all 0.25s ease-in-out;
}

.link:hover {
    opacity: 0.8 !important;
}

.link--orange {
    color: #e78701 !important;
}

.link--white {
    color: #fff !important;
    text-decoration: none;
}

.link--block {
    display: block;
    margin-top: 30px;
    font-size: 18px;
    font-weight: bolder;
}

.signature {
    margin-top: 30px;
}

.signature__image {
    width: 400px;
    max-width: 100%;
    height: auto;
}

.contact-form {
    width: 70%;
    margin: 30px auto;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    color: #3a80b3;
}

.contact-form input,
.contact-form select,
.contact-form textarea
{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    color: #3a80b3;
    border: 2px solid #3a80b3;
}

.contact-form button {
    cursor: pointer;
    max-width: 300px;
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 2px solid #3a80b3;
    color: #3a80b3;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    transition: 250ms;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-form button:hover {
    border: 2px solid #e78701;
    color: #e78701;
}

@media (max-width: 767.98px) {
    .contact-form {
        width: 85%;
    }
}

.uppercase {
    text-transform: uppercase;
}

.boxed {
    padding: 30px;
    border-radius: 20px;
}

.boxed--text-white h2 {
    color: #fff !important;
    text-transform: none !important;
}

.boxed--text-white p {
    color: #3a80b3 !important;
}

.boxed--bg-orange {
    background-color: rgba(231, 135, 1, 0.66);
}

.boxed--bg-black {
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}

@media (max-width: 767.98px) {
    .boxed {
        padding: 20px;
        border-radius: 10px;
    }
}

.banner {
    width: auto;
    height: auto;
    margin: 0 auto 30px auto;
    padding: 10px;
    border-radius: 5px;
    background-color: #e0edf4;
    border: 1px solid #cfebfe;
    transition: all 0.45s ease-out;
    transform: scale(0);
    font-size: 16px;
    color: #e78701;
}

.banner--error {
    color: #3a80b3;
    background-color: #e78701;
}

.banner.is-visible {
    transform: scale(1);
}

.text-orange {
    color: #e78701 !important;
}

.text-blue {
    color: #3a80b3 !important;
}
.carousel.carousel--testimonials {
    position: relative;
    height: fit-content;
    min-height: 500px;
    background-color: #e0edf4;
    border: 1px solid #cfebfe;
    margin-bottom: 60px;
}
.carousel.carousel--testimonials .carousel-inner {
    height: 100% !important;
}
.carousel.carousel--testimonials .carousel-item .carousel-item__inner {
    padding: 0 60px;
    height: 100% !important;
}
.carousel.carousel--testimonials cite {
    color: #e78701;
}
@media (max-width: 767.98px) {
    .carousel.carousel--testimonials p,
    .carousel.carousel--testimonials cite {
        font-size: 16px;
    }
}