:root {
    --magenta50: #ee5396;
    --blue60: #0f62fe;
    --blue70: #0043ce;
    --gray80: #393939;
}

@font-face {
    font-family: 'IBMPlexSans';
    src: url('IBMPlexSans-Light.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'IBMPlexSans';
    src: url('IBMPlexSans-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IBMPlexSans';
    src: url('IBMPlexSans-SemiBold.otf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'IBMPlexSans', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s;
    overflow-x: hidden;
    font-weight: 400;
    color: var(--dark);
}

.body-wrapper {
    overflow-x: hidden;
    width: 100vw;
    max-width: 2560px;
    margin: 0 auto;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 300;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--blue60);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--blue60);
    margin-bottom: 0;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p,
.article li {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

footer ul {
    margin-bottom: 0;
}

li {
    margin-left: 1rem;
}

section {
    margin: 40px auto;
    position: relative;
    max-width: 2560px;
}

.btn.btn-primary,
.btn.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn.btn-primary:focus-visible,
.btn.btn-primary:visited {
    line-height: 1;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    width: fit-content;
    border: none;
    outline: none;
    box-shadow: none;
    white-space: nowrap;
    color: white;
    border-radius: 0;
    background-color: var(--blue60);
    transition: all 0.3s;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn.btn-primary:focus-visible{
    background-color: var(--blue70);
}

::selection {
    background: var(--blue60);
    color: white;
}

::-moz-selection {
    background: var(--blue60);
    color: white;
}

a {
    transition: color 0.3s;
    text-decoration: none;
    cursor: pointer;
    color: var(--blue60);
}

a:hover,
a:focus-visible {
    text-decoration: none;
    color: var(--blue70);
}

button {
    transition: background-color 0.3s, color 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}


/* SIDEBAR OPEN */

.open-sidebar {
    width: 20px;
    height: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    display: none;
    transform: translateX(-14px);
}

.open-sidebar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    border: 1px solid var(--blue60);
    opacity: 0;
    transition: all 0.3s;
}

.open-sidebar.closed::before {
    opacity: 1;
}

.open-sidebar .hb {
    height: 1px;
    width: 100%;
    background-color: var(--gray80);
    border-radius: 99px;
    transition: all 0.45s;
}

.open-sidebar.closed .hb1 {
    transform: rotate(-45deg) translate(-5.25px, 5.25px);
}

.open-sidebar.closed .hb2,
.open-sidebar.closed .hb3 {
    margin-right: -100%;
    opacity: 0;
}

.open-sidebar.closed .hb4 {
    transform: rotate(45deg) translate(-5.25px, -5.25px);
}

/* SIDEBAR */

#sidebar {
    width: 100%;
    position: fixed;
    top: 78px;
    max-height: 0;
    z-index: 998;
    overflow: hidden;
    background: white;
    transition: all 0.45s;
}

@media (min-width: 768px) {
    #sidebar {
        display: none;
    }
}

#sidebar .content {
    padding: 10px 20px;
}

#sidebar .content a {
    display: block;
    padding: 12px 0;
    font-size: 1.125rem;
    border-bottom: 1px solid #e5e5e5;
    color: var(--gray80);
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgb(168, 168, 168);
    z-index: 999;
    height: 114px;
    background-color: white;
    display: block;
    width: 100vw;
}

.navbar .container {
    padding: 30px 30px 20px;
}

.navbar .logo {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 65px;
}

.navbar .logo img {
    width: 100%;
    height: 100%;
}

.navbar .links {
    display: flex;
    gap: 1.25rem;
    transform: translateY(19px);
}

.navbar .links .nav-item {
    display: block;
    font-size: 1.125rem;
    height: 2.375rem;
    padding: 0 0.625rem;
    transition: all 0.3s;
    border-bottom: 5px solid transparent;
    line-height: 1;
    color: var(--gray80);
}

.navbar .links .nav-item:hover {
    color: var(--blue60);
    border-color: var(--blue60);
}

.navbar .open-sidebar {
    display: none;
}

.hero {
    margin-top: 114px;
    padding: 0;
}

.hero .container {
    background: url('../images/mibb-hero@2x.jpg') no-repeat center / cover;
    height: 400px;
    padding: 30px;
}

.hero h1 {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, rgba(15,98,254,1) 0%, rgba(238,83,150,1) 100%);
    max-width: 32rem;
}

.hero .gradient {
    height: 5px;
    padding: 0;
    background: linear-gradient(90deg, rgba(15,98,254,1) 0%, rgba(238,83,150,1) 100%);
}

.col {
    padding-right: 30px;
    padding-left: 30px;
}

.informations h2 {
    max-width: 40rem;
}

footer {
    background-color: black;
}

footer .container {
    padding: 30px 15px;
}

footer .logo {
    width: 130px;
    height: 65px;
}

footer li {
    list-style: none;
    margin-left: 0;
}

footer a {
    color: #c6c6c6;
}

footer a:hover {
    color: white;
}

footer .links {
    margin: 20px -30px 0 -30px;
}

footer .separatorLine {
    width: 100%;
    height: 1px;
    background-color: #525252;
    margin: 40px 0 20px;
}

footer p {
    color: #c6c6c6;
    font-size: 1rem;
}

section.content {
    margin-top: 114px;
    padding-top: 40px;
    min-height: calc(100vh - 367px);
}

.informations {
    min-height: calc(100vh - 812px);
}

section.content img {
    width: 100px;
}

.locator p {
    max-width: 32rem;
}

.bg {
    padding: 30px;
    margin-left: -30px;
    background-color: #f4f4f4;
}

.locator .filter strong {
    display: block;
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.locator .select {
    position: relative;
    cursor: pointer;
}

.locator .select .current {
    padding: 10px;
    padding-right: 35px;
    white-space: nowrap;
    background-color: white;
    color: #8d8d8d;
    position: relative;
    font-size: 1.125rem;
    border: 1px solid transparent;
    transition: all 0.4s;
}

.locator .select .current::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 8px;
    background: url('../images/arngle-down-blue.png') no-repeat center / contain;
    filter: grayscale(1);
    transition: all 0.3s;
}

.locator .select.active .current {
    color: var(--gray80);
    border-color: var(--blue60);
}

.locator .select.active .current::after {
    transform: translateY(-50%) rotate(180deg);
    filter: grayscale(0);
}

.locator .select.selected .current {
    color: var(--gray80);
}

.locator .select .current > div {
    overflow: hidden;
}

.locator .select .list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 2;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.locator .select.active .list {
    max-height: 220px;
}

.locator .select .list .inner {
    height: 220px;
    padding: 10px;
    border: 1px solid #c6c6c6;
}

.locator .select .list .inner .scroll-container {
    height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #525252 #c6c6c6;
}

.locator .select .list .scroll-container div {
    padding: 5px 0;
}

.locator .select .list .scroll-container div:first-of-type {
    padding-top: 0;
}

.locator .select .list .scroll-container div:last-of-type {
    padding-bottom: 0;
}

.locator .select .list .scroll-container div:hover {
    color: var(--blue60);
}

.results {
    display: none;
    margin-top: 40px;
}

.results .border-bottom {
    border-bottom: 1px solid #a8a8a8;
    margin-bottom: 30px;
}

.results .no-results {
    display: none;
}

.results .items .item {
    margin-bottom: 30px;
}

.results .items .item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.results .items .item a {
    color: var(--gray80);
    font-weight: 600;
}

.results .items .item a:hover {
    color: var(--blue60);
}

.contact .bg {
    margin-top: 40px;
}

form {
    gap: 20px;
}

input,
textarea {
    padding: 10px;
    border: none;
    outline: none;
    resize: none;
    border: 1px solid transparent;
    transition: all 0.3s;
    border-radius: 0px;
}

input {
    width: calc(50% - 10px);
}

input:focus,
textarea:focus {
    border-color: var(--blue60);
}

input.error,
textarea.error {
    color: #da1e28;
    border-color: #da1e28;
}

form .btn.btn-primary {
    margin: 10px auto 0;
}

.content h1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--blue60);
}

.article h1 {
    margin: 0;
    padding-bottom: 0.625rem;
    line-height: 1.3;
}

.article h2 {
    font-size: 1.375rem;
    margin: 0;
    padding: 0.625rem 0;
    color: var(--blue60);
    font-weight: 300;
}

.article h3 {
    color: var(--gray80);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
    padding: 0.625rem 0;
}

.article p {
    margin-bottom: 0;
    padding-bottom: 0.625rem;
    line-height: 1.5;
}

.reset-filters {
    margin-top: 6px;
    text-decoration: underline;
}

@media (min-width: 0px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    /* .container {
        max-width: 768px;
    } */

    .content .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .navbar {
        height: 95px;
    }

    .navbar .logo {
        width: 92px;
        height: 48px;
    }

    .navbar .links {
        transform: translateY(17px);
    }

    .navbar .links .nav-item {
        font-size: 1rem;
        height: 2.125rem;
    }

    section {
        margin: 30px auto;
    }

    .hero {
        margin-top: 95px;
    }

    .hero .container {
        height: 270px;
    }

    .hero .gradient {
        height: 5px;
    }

    .hero h1 {
        max-width: 22rem;
    }

    .informations h2 {
        max-width: 36rem;
    }

    .informations p {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    footer .links {
        margin: 0;
    }

    footer .separatorLine {
        margin-top: 40px;
    }

    footer a,
    footer p {
        font-size: 0.875rem;
    }
    
    section.content {
        margin-top: 95px;
        padding-top: 30px;
    }

    .informations {
        min-height: calc(100vh - 692px);
    }

    .content .icon {
        display: none !important;
    }

    .bg {
        padding: 20px 20px 30px;
        margin-left: 0;
        margin-top: 30px;
    }

    .locator .searchButton {
        margin-top: 30px;
    }

    .content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.625rem;
    }

    .article p,
    .article li {
        font-size: 1rem;
    }

}

@media (max-width: 767px) {

    h1 {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    p {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    .navbar {
        height: 78px;
    }

    .navbar .container {
        padding: 20px 20px 10px;
        align-items: flex-start !important;
    }

    .navbar .logo {
        width: 92px;
        height: 48px;
    }

    .navbar .links {
        display: none;
    }

    .navbar .open-sidebar {
        display: flex;
        margin-top: 6px;
    }

    .col {
        padding-right: 20px;
        padding-left: 20px;
    }

    section {
        margin: 20px auto;
    }

    .hero {
        margin-top: 78px;
    }

    .hero .container {
        height: 168px;
        padding: 20px;
    }

    .hero h1 {
        max-width: 14rem;
    }

    .hero .gradient {
        height: 5px;
        padding: 0;
    }

    footer .links {
        margin: 20px -20px 0 -20px;
    }

    footer a,
    footer p {
        font-size: 0.875rem;
    }

    footer .separatorLine {
        margin-top: 20px;
    }

    section.content {
        margin-top: 78px;
        padding-top: 20px;
    }

    .content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .content .icon {
        display: none !important;
    }

    .bg {
        padding: 20px 20px 30px;
        margin-left: 0;
        margin-top: 20px;
    }

    .filter p {
        margin-bottom: 1.25rem;
    }

    .locator .filter strong {
        font-size: 1rem;
    }

    .locator .select .current {
        font-size: 1rem;
    }

    .country-select {
        margin-bottom: 20px;
    }

    .type-select {
        margin-bottom: 30px;
    }

    .results {
        padding: 0 5px;
        margin-top: 20px;
    }

    .results .border-bottom {
        margin-bottom: 20px;
    }

    .results .items .item {
        margin-bottom: 20px;
    }

    .contact .bg {
        margin-top: 20px;
    }

    input {
        width: 100%;
    }

    form .btn.btn-primary {
        width: 100%;
    }

    .content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.625rem;
    }

    .article * {
        margin-bottom: 0 !important;
    }

    .article h2 {
        font-size: 1.25rem;
        padding: 0.625rem 0;
        margin: 0;
    }

    .article p,
    .article li {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }
}

@media (max-width: 460px) {
    .hero .container {
        height: 55vw;
    }

    .hero h1 {
        font-size: 1.1875rem;
    }

    .hero .gradient {
        height: 5px;
    }

    footer p span {
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1139px) {
    .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-lg-3 {
        flex: 0 0 0%;
        max-width: 0%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .d-lg-block {
        display: none !important;
    }
}
