@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100;300;400;500;700;900&display=swap');

html,
body {
    padding: 0;
    margin: 0;
    font-size: calc(15px + 0.2vw);
    font-family: 'Catamaran', sans-serif;
    color: #333;
    background-color: #efefef;
}

* {
    box-sizing: border-box;
}
.container {
    max-width: 1140px!important;
}
header {
 background-color: dimgrey;
 background-color: #4267B2;
}
.navbar {
    width: 100%;
    max-width: 1140px;
}
.navbar * {
    text-transform: uppercase;
    color: white!important;
    font-size: .875rem;
    font-weight: 300;
}
.navbar .dropdown-menu {
    border-radius: 0%!important;
}
.navbar .dropdown-menu .dropdown-item {
    color: #333!important;
    font-weight: 500;
}
.navbar-collapse {
    background-color: dimgrey;
    background-color: #4267B2;
    padding: 0rem;
}
strong {
    font-size: larger;
}

.hero-image {
    position: relative;
    height: 65vh;
    overflow: hidden;
}
.bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.5s ease-in-out;
}
.bg-image:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0, 0, 0, .5);
    z-index: 0;
}
.hero-image h1 {
    z-index: 1;
    color: white;
    text-align: center;
    position: absolute;
    width: 100%;
    max-width: 540px;
}

.text-wrap {
    background-color: white;
}

footer {
    background-color: dimgrey;
    background-color: #4267B2;
    position: relative;
}

footer:after {
    content: "";
    background: url('img/pile-576572.png');
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: right;
}


.top-tav {
    height: 1rem;
}
.main-text h1 {
    font-weight: 900;
    font-weight: 400;
    color: var(--bs-gray-400);
    color: #4267B2;
    border-bottom: 2px solid;
}


.logokSlide {
    flex-wrap: wrap;
    column-count: 3;
    text-align: center;
}
.logokSlide img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

footer .h6 {
    font-weight: 900;
    color: #efefef;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list-item {
    margin-bottom: 5px;
    color: #fff;
    font-weight: 300;
}








/********************************************/
/***************MEDIA QUERY*******************/

@media (min-width: 1200px) {
    .navbar * {
        font-size: 16px;
    }
    .main-text h1 {
        font-size: 56px;
    }
}