/* General styling */

/* Elements i.e. buttons, etc... */
.button-mobile {
    border: 2px solid #4caeeb;
    width: 222px;
    text-align: center;
    padding: 8px;
}

.button-desktop {
    border: 1px solid white;
    padding: 12px;
    font-size: .8em;
    letter-spacing: 1.2px;
    font-weight: 600;
    transition: background-color 0.5s, color 0.5s;
}

.button-desktop:hover {
    background-color: white;
    /*color: black !important;*/
    color: black !important;
    text-decoration: none;
}

.button-desktop-adherez {
    padding: 10px 20px;
    border: 1px solid white;
    font-size: 1.5em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    /* Animation! YAY */
    transition: background-color 0.5s, border 0.5s;
}

.button-desktop-adherez:hover {
    background-color: #EB6379;
    /*color: black !important;*/
    border: 1px solid #EB6379;
    text-decoration: none;
}

.row {
    align-items: center;
}

.center {
    justify-content: center;
    text-align: center;
}

footer {
    background-color: rgb(51, 55, 69);
}

footer .smaller-text {
    color: rgb(170, 170, 170);
}

.footer_logo {
    width: 3%;
}

/* Shapes and such */
.lign {
    height: 2px;
    background-color: white;
    width: 35px;
    border-radius: 3px;
    margin: 0 auto !important;
}

/* Sections */
.top-section {
    background-image: url("../homeMedia/backgroundFinal-edited.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
}

.section_header {
    box-shadow: 0px -2px 10px 4px rgba(0, 0, 0, 0.17) !important;
}

.top_section_title {
    font-weight: 600;
}

.top_section_description {
    min-height: 92px;
}

.landing_section img {
    width: 60%;
}

.section4 img {
    width: 70%;
}

.logo {
    width: 130%;
}

.lineHeightDesktop {
    letter-spacing: 0.5px;
}

.langPanel {
    position: absolute;
    z-index: 9;
    left: 50%;
    height: 24px;
}

.boutique-desktop.block1 {
    background-color: #78CFBF;
    background-color: #81b29a;
}

.boutique-desktop.block2 {
    background-color: #3EC6E1;
    background-color: #cd6b72;
}

.boutique-desktop.block3 {
    background-color: #EB6379;
    background-color: #7d94b5;
}

#language:hover .language-dropdown-menu {
    display: block !important;
}

.language-dropdown-menu {
    list-style: none;
    padding-left: 0px;
    background-color: white;
    margin-top: 6px;
    border: 1px solid #8f8f8f;
    display: none;
    margin-left: -8px;
}

.language-dropdown-menu:before {
    content: "\25B2";
    position: absolute;
    left: 33%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 15px;
    color: #838383;
    font-size: 14px;
    z-index: 1;
    border: none;
}

.language-dropdown-menu li {
    cursor: pointer;
    /*padding: 8px;
    padding-bottom: 1px;
    padding-top: 1px;*/
}

.language-dropdown-menu li img {
    padding: 8px;
    padding-bottom: 1px;
    padding-top: 1px;
    box-sizing: content-box;
}

#language .dropdown-language-toggle {
    padding: 0 !important;
    margin: 0;
    border: none;
    background-color: #f3f3f3;
    height: 18px;
    outline: none;
}

#language .dropdown-language-toggle img {
    width: 20px;
    height: 20px;
    vertical-align: baseline;
}

/* Media queries */
/* Phone */
@media only screen and (max-width: 768px) {
    h3 {
        margin-top: 16px;
    }

    .logo {
        max-width: 60%;
    }

    .desktop {
        display: none;
    }

    .max-width-mobile {
        max-width: 70%;
    }

    .spacing-mobile-left {
        margin-left: 1rem !important;
    }

    .spacing-mobile-right {
        margin-right: 1rem !important;
    }

    .mobile-center {
        text-align: center !important;
    }

    .mobile-order-1 {
        order: 1;
    }

    .mobile-order-2 {
        order: 2;
    }

    .mobile-right-0 {
        margin-right: 0 !important;
    }

    .landing_section img {
        width: 80% !important;
    }
}

/* Tablet and larger screens */
@media only screen and (min-width: 769px) {

    .top-section {
        padding: 130px 15px 130px 15px;
    }

    .logo {
        min-width: 65%;
    }

    .mobile {
        display: none;
    }

    .boutique-desktop {
        padding: 15px;
        width: 31%;
        min-height: 236px;
    }

    .alignRight {
        justify-content: flex-end;
    }

    .spacing-desktop-left {
        margin-left: 3rem !important;
    }

    .spacing-desktop-right {
        margin-right: 3rem !important;
    }

    .lineHeightDesktop {
        line-height: 1.5;
    }
}

/* Debug */
.margin-fix {
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
}

