/* FONTS */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&family=Oswald:wght@300&display=swap');

/* COMMON STYLES */

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}

.page-content {
    margin-left: 2.5%;
    margin-right: 2.5%;
    color: black;
}

.action_btn_services {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    background-color: #fff;
    color: black;
    border: 1px solid #3F3F7F;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 10px;
    width: 200px;
    justify-content: center;
    text-align: center;
}

.action_btn_services:hover {
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    background-color: #FFF;
    color: #777b85;
}

.action_btn_ecosystem-bma,
.action_btn_jivado {
    display: flex;
    text-decoration: none;
    background-color: #fff;
    color: black;
    border: 1px solid #3F3F7F;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 10px;
    width: 250px;
    justify-content: center;
    margin-bottom: 5px;
}

.action_btn:active,
.action_btn_services:active,
.action_btn_ecosystem-bma:active,
.action_btn_podcast:active {
    scale: 0.95;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.links_a {
    color: #3F3F7F;
    text-decoration: underline;
}

.links_a:hover {
    color: #777b85;
}

/* NAV & HEADER */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Make sure it's above other content */
    font-family: 'Noto Sans JP', sans-serif;
}

header li {
    list-style: none;
}

header a {
    text-decoration: none;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logoimg {
    width: 100px;
    /* Adjust the width as needed */
    border-radius: 5%;
    margin-right: 10px;
}

.a_menulogotext {
    display: inline-block;
    /* Add this line to make it an inline element */
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    color: black;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1%;
    padding-right: 2.5%;
    padding-left: 2.5%;
    background-color: white;
}

.navbar .links {
    display: flex;
    gap: 5rem;
    font-weight: 400;
    margin-left: auto;
    align-items: center;
    /* Add this line to align menu items vertically */
    color: #3F3F3F;
}

.links a:hover {
    color: #777b85;
}

.navbar .toggle_btn {
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

.action_btn {
    display: flex;
    text-decoration: none;
    background-color: #fff;
    color: black;
    border: 1px solid #3F3F7F;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 10px 10px;
}

.action_btn:hover {
    color: black;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.menu-container a {
    text-decoration: none;
}

.a_menu:hover {
    text-decoration: none;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5rem;
}

.menu a {
    color: black;
}

.menu li a:link,
.menu li a:visited {
    display: block;
}

.sousmenu {
    position: absolute;
    /* Change position to absolute */
    display: none;
    padding: 0;
    width: max-content;
    background-color: white;
    /* Optionally, set background color */
    align-items: center;
}

.menu li:hover .sousmenu {
    display: inline;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
}

.sousmenu a {
    display: block;
    font-weight: 500;
    background-color: white;
}

.menu a:hover,
.flag-container a:hover {
    color: #777b85;
}

.menu-item {
    display: flex;
    align-items: center;
}

.flag-container {
    display: flex;
    align-items: center;
}

.language {
    margin-top: 3px;
}

.flag-fr,
.flag-uk,
.flag-france,
.flag-en {
    width: 25px;
    /* Set the desired width for the flag image */
    height: 15px;
    margin-right: 5px;
    /* Adjust margin as needed */
}

.flag-fr {
    margin-top: 9px;
}

.flag-uk {
    margin-top: 5px;
}

.flag-france {
    margin-top: 5px;
}

.flag-en {
    margin-top: 9px;
}

.flag-fr:hover,
.flag-uk:hover,
.flag-france:hover,
.flag-en:hover {
    opacity: 0.7;
}

/* DROPDOWN MENU */

.dropdown_menu {
    display: none;
    position: absolute;
    height: 0;
    width: 100%;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.dropdown_menu.open {
    height: 100vh;
    width: 100%;
    box-shadow: 0.5px 0.5px 0.1px rgba(0, 0, 0, 0.5);
    background-color: white;
}

.dropdown_menu li {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.dropdown_menu a {
    font-weight: 500;
}

/* HOME */

.stats {
    display: flex;
    justify-content: space-around;
}

.container-stats {
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.container-stats h3 {
    font-family: 'oswald';
    text-align: center;
    font-size: 1.8rem;
}

.page-content h3 {
    font-size: 1.8rem;
    font-family: 'oswald';
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 1.5rem;
    font-family: 'oswald';
    text-align: center;
}

.container-stats .stat p {
    text-align: center;
}

.borisnedeltchev_img_home {
    width: 150px;
    height: 150px;
    border-radius: 75px;
}

.image_testimonials {
    width: 100px;
    height: 100px;
    border-radius: 50px;
}

.testimonial_description {
    display: block;
}

.testimonial_description h4 {
    margin-bottom: -1.5%;
}

.testimonial_description h5 {
    margin-bottom: -1%;
    font-weight: bold;
}

.testimonial_description p {
    margin-bottom: 2%;
}

.partner-logos {
    display: block;
}

.partner-logos img {
    width: 150px;
    height: 150px;
    border-radius: 75px;
    margin-bottom: 20px;
    margin-top: 20px;
    border: 2px solid #f2f2f2;
    margin-right: 20px;
}

.partner-logos img:hover {
    opacity: 80%;
}

.partner {
    display: inline-block;
    vertical-align: top;
}

.events-container,
.content-creation-section {
    background-color: #fff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    margin-top: 2%;
    margin-bottom: 2%;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.events-container h3,
.content-creation-section h3 {
    padding-top: 20px;
    margin-bottom: 20px;
}

.event {
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.event h3 {
    margin-bottom: 10px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
}

.services-list li {
    padding: 10px 0 14px;
    border-bottom: 1px solid #eee;
}

.services-list li strong {
    display: block;
    font-size: 1.05rem;
}

.service-desc {
    display: block;
    margin-top: 4px;
    color: #555;
    line-height: 1.45;
    font-size: 0.95rem;
}

/* FOOTER */

footer {
    max-width: 100%;
    bottom: 0;
    left: 0;
    padding-bottom: 1px;
    background-color: #000;
    color: white;
    z-index: 100;
    /* Make sure the footer stays on top of other content */
    text-align: center;
}

footer .colonne {
    width: 100%;
    padding-bottom: 20px;
}

footer .colonne a {
    font-size: 16px;
    color: #ccc;
    cursor: pointer;
    text-decoration: none;
}

footer .colonne a:hover {
    color: #fff;
}

.social-icon {
    font-size: 20px;
    /* Adjust the font size as needed */
    padding-left: 20px;
    padding-right: 20px;
}

.social-icon:hover {
    color: white;
    transform: scale(1.1);
}

.footer-divider {
    align-items: center;
    border-top: 1px solid #ccc;
}

footer p {
    font-size: 16px;
    color: #ccc;
    text-decoration: none;
}

.footer-credit {
    font-size: 12px;
}

/* EXPERIENCES */

.logo-project {
    width: 50px;
    border: 1px solid black;
    margin-bottom: 15px;
}

.page-content .projects-section .projects {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

.page-content .projects-section .project {
    max-width: 250px;
    margin-right: 50px;
    margin-bottom: 20px;
}

.page-content .projects-section .project h3 {
    margin-bottom: 0;
}

.page-content .projects-section .project h4 {
    margin-top: -10px;
}

.page-content .projects-section .project .dates {
    margin-bottom: 2%;
    margin-left: 0;
    margin-top: -10px;
    max-width: 100%;
}

/* Contat */

#mce-MMERGE9 {
    height: 150px;
}

/* Content creation */

.content-creation-links {
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.content-creation-line {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding-bottom: 1.33em;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-creation-links a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.content-creation-links a {
    text-decoration: none;
}

.content-creation-links a.youtube-logo img {
    width: 40px;
}

.content-creation-links a.zencastr-logo img {
    width: 20px;
}

.content-creation-links a.sorareinfo-logo img {
    width: 40px;
    height: 40px;
}

.content-creation-links a img:hover {
    transform: scale(1.1);
    color: #777b85;
    opacity: 0.7;
}

/* Contact */

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin: 0 auto;
}


/* For mobile phones (up to 767px) */
@media screen and (max-width: 767px) {
    /* My mobile-specific styles here */

    .links-menu,
    .action_btn,
    .menu-container {
        display: none;
    }

    .navbar .toggle_btn {
        position: sticky;
        display: block;
        padding-top: 1%;
        text-align: center;
        font-size: 1.5rem;
    }

    .dropdown_menu {
        display: block;
        position: sticky;
        height: 0;
        width: 350px;
        background: white;
        transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
    }

    .dropdown_menu.open {
        height: 90vh;
        width: 100vw;
        padding-top: 5px;
        padding-bottom: 15px;
    }

    .dropdown_menu li {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown_menu .action_btn {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .dropdown_menu a {
        color: black;
        text-decoration: none;
        font-size: 1.1rem;
    }

    .action_btn,
    .action_btn_ecosystem-bma {
        display: block;
        margin-left: auto;
        margin-right: auto;
        color: black;
    }

    .logotext {
        color: black;
    }

    /* HOME */

    .stats {
        display: flex;
        flex-direction: column;
    }

    .img_build {
        width: 200px;
        height: 200px;
    }

    .event iframe {
        width: 200px;
        height: 200px;
    }

    .iframe_substack {
        height: 100vh;
        width: 95vw;
    }

    .partners-section {
        text-align: center;
    }

    .partners-section img {
        margin-left: auto;
        margin-right: auto;
    }

    /* ECOSYSTEM BMA */

    .image-deg {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    /* Content creation */

    .content-creation-links {
        display: block;
    }

    .content-creation-links a img {
        margin-right: 10px;
    }

    .iframe {
        width: 220px;
    }

    .services-list {
        column-count: 2;
        column-gap: 40px;
    }

    .services-list li {
        break-inside: avoid;
    }
}

/* For tablets (768px to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    /* My tablet-specific styles here */

    .links-menu,
    .action_btn,
    .menu-container {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
        padding-top: 1%;
        text-align: center;
        font-size: 1.5rem;
    }

    .dropdown_menu {
        display: block;
        position: absolute;
        height: 0;
        width: 350px;
        background: white;
        border-radius: 10px;
        transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
    }

    .dropdown_menu.open {
        height: 90vh;
        width: 100vw;
    }

    .dropdown_menu li {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown_menu .action_btn {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .dropdown_menu a {
        color: black;
        text-decoration: none;
        font-size: 1.1rem;
    }

    .action_btn {
        margin-left: 25%;
        margin-right: 25%;
    }

    /* Content creation */

    .content-creation-links {
        display: flex;
    }

    .iframe {
        width: 560px;
        height: 315px;
    }
}

/* For desktops (992px to 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    /* My desktop-specific styles here */

    .dropdown_menu {
        display: none;
    }

    .action_btn {
        padding: 10px 10px;
    }

    .logotext {
        display: none;
    }

    /* Content creation */

    .content-creation-links {
        display: flex;
    }

    .iframe {
        width: 560px;
        height: 315px;
    }
}

/* For larger screens (1200px and above) */
@media screen and (min-width: 1200px) {
    /* My larger screen-specific styles here */

    .dropdown_menu {
        display: none;
    }

    .action_btn {
        padding: 10px 10px;
    }

    /* Content creation */

    .content-creation-links {
        display: flex;
    }

    .iframe {
        width: 560px;
        height: 315px;
    }
}