/* Importa a font family */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

/* Define a fonte BIG FONT SICE AND BOLD */

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5em;
    color: #000;
}

.sliderCaption {
    font-family: 'Montserrat', sans-serif;
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the last value (0.5) for the desired opacity */
    pointer-events: none;
    /* Allows clicks to go through the overlay to the underlying content */
}

.logoCaption {
    max-width: 160px !important;
    margin-bottom: 10px;
    text-shadow: 0 0 3px #000;
}


/* Define all p tag to be montserrat font regular */

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.2em;
}

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

.img-container img {
    max-width: 100%;
    height: auto;
}

#textContainer {
    margin-bottom: 20px;
}

.section-text {
    color: #000;
    line-height: normal;
}

h1 {
    font-size: 4.5em !important;
    font-weight: bold;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5em !important;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.jumbo {
    background-color: #c2c2c2;
    padding: 70px;
    margin-bottom: 50px;
    width: 100% !important;
}

.language {
    margin-top: 30px !important;
    flex: row;
    justify-content: flex-end;
}

.main-nav.dark .inner-nav ul>li>span {
    color: rgba(255, 255, 255, .7);
}

.whatsappBtn {
    width: 122px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    padding: 7px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.whatsappBtn:hover {
    background-color: #128C7E;
}


/* Style for the language dropdown */

.custom-dropdown {
    background-color: #2c3e50;
    color: #fff;
    font-size: inherit;
    padding: .5em;
    padding-right: 2.5em;
    border: 0;
    margin: 30px;
    border-radius: 3px;
    text-indent: 0.01px;
}

.language {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 5px;
}

.custom-dropdown {
    margin-left: 10px;
    /* Adjust the margin as needed */
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    padding: 1.85rem;
    text-align: center;
}

.card-img-top {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #6c757d;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}


/* Force video to be visible on mobile */

@media (max-width: 790px) {
    .jarallax-video video {
        display: block !important;
    }
    .inner-nav {
        flex-wrap: wrap;
    }
    .language {
        order: 2;
        margin-top: 10px;
        padding: 10px !important;
    }
    .custom-dropdown {
        margin-left: 0;
        margin-top: 30px;
        /* Adjust the margin as needed */
    }
    .whatsappBtn {
        width: 70px;
        bottom: 20px;
        right: 20px;
    }
    h1 {
        font-size: 3.5em !important;
        font-weight: bold;
        margin-bottom: 0.5em;
    }
    .card {
        margin: 0 auto;
        /* Added */
        float: none;
        /* Added */
        margin-bottom: 10px;
        /* Added */
    }
}