/* 
COLORS
#5F6F52
#A9B388
#FEFAE0
#B99470

#EE7214
#527853
#F9E8D9
#F7B787

#0F4C75
#1B262C
#3282B8
#BBE1FA

#1B262C
#EE7214
#BBE1FA
*/

* {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Righteous', sans-serif;
    box-sizing: border-box;
}

a,
.dropdown-menu {
    /* font-size: 1.25rem; */
    color: #BBE1FA;
    text-decoration: none;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.4;
}

.video-header {
    height: 100vh;
}

.navbar,
.dropdown-menu,
.dropdown-item:hover {
    background-color: #1B262C;
    color: #EE7214;
}

.dropdown-item.active {
    background-color: #BBE1FA;
    color: #EE7214;
}

.nav-link,
.navbar-toggler,
.dropdown-item,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:first-child:active {
    color: #BBE1FA;
    border-color: #BBE1FA;
}

.navbar-toggler-icon {
    filter: invert(94%) sepia(100%) saturate(6077%) hue-rotate(173deg) brightness(91%) contrast(117%);
}

.nav-link:hover,
.navbar-nav .nav-link.show:hover {
    color: #EE7214;
}

.nav-link::after {
    margin: 0;
}

.dropdown-toggle::after {
    content: none;
}

.card-align-justify>p {
    text-align: justify;
}

.whatsapp:hover {
    color: rgb(0, 165, 0);
}

.facebook:hover {
    color: #1877F2;
}

.instagram:hover {
    color: #F56040;
}

.email:hover {
    color: dodgerblue;
}

footer p {
    color: #BBE1FA;
}

.colored-section {
    background-color: #1B262C;
    color: #EE7214;
    padding: 1em 1em 1em;
}

.white-section {
    background-color: #EE7214;
    color: #1B262C;
    padding: 1em 1em 1em
}

#carouselExampleSlidesOnly {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.6);
}

.carousel-item {
    height: 90vh;
}

.carousel-item>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bg-half-transparent {
    opacity: 0.9;
}

.main-cards img:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

.text-justify {
    text-align: justify;
}

.btn-lg {
    margin-bottom: 1rem;
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 3rem;
    /* font-family: Playfair Display; */
    color: #BBE1FA;
}

/* .link-inline-h3 {
    font-family: Playfair Display;
} */

.white-section h3 {
    color: #1B262C;
}

p {
    line-height: 2;
    /* font-family: Roboto; */
}

ul {
    list-style-image: url('/img/fire.gif');
}

.ul-ship {
    list-style-image: url("/img/ship.gif");
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;  
}
.ul-truck {
    list-style-image: url("/img/truck.gif");
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;  
}

input,
textarea{
    text-align: start;
}

@media (max-width: 992px) {
    .min-lg {
        display: none;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2rem;
    }

    .logo {
        height: 50px;
    }

    .logo-bottom {
        margin-bottom: 4rem;
    }
}

@media (max-width: 760px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }

    .dropdown-menu {
        min-width: auto;
        padding: 0;
        margin-top: 0.5em;
        left: 50% !important;
        right: auto !important;
        text-align: center !important;
        transform: translate(-50%, 0) !important;
    }
}