body{
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

 /*** HEADER ***/

header {
    background-color: #5b8d9c;
    height: 60px;
}
.head-content {
    max-width: 1000px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
}
header .logo {
    height: 20px;
    margin: 20px 0px;
}
header .lang-select {
    float: right;
    margin-top: 23px;
}
header .lang-select a {
    margin-right:16px;
}
header .lang-select a:nth-child(4) {
    margin-right:0px;
}

/*** a:nth-child(1) ***/

 /*** HERO ***/

.hero {
    height: 240px;
    background-image: url(/img/office_3.jpg);
    background-size: cover;
    background-position-x: center;
}

 /*** ABOUT ***/

.about {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 56px;
    padding-bottom: 56px;
}
.intro{
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6em;
    margin: 0;
    padding: 0 0 24px;
}

 /*** BULLET POINTS ***/

.bullet-points{
    margin: 0 80px;
}
.flex-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
}
.flex-item {
    width: 280px;
    margin-top: 48px;
    font-size: 1em;
    text-align: center;
    /*background: #eee;*/
}
.flex-item p {
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 500;
}
.flex-container li:nth-child(4) {
    padding-left: 120px;
}
.flex-container li:nth-child(5) {
    padding-right: 120px;
}

/*** ABOUT PART 2 ***/

.about-2 {
    background: #eee;
    padding-top: 56px;
    padding-bottom: 56px;
}
.about-2 .wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 1.1em;
    line-height: 1.4em;
}
.about-2 .wrapper li {
    margin-bottom: 8px;
}

/*** FOOTER ***/

footer {
    background-color: #5b8d9c;
    height: 60px;
}
footer .wrapper {
    max-width: 1000px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
}
footer .mail {
    float: left;
    padding: 20px 0;
}
footer .mail img {
    float: left;
    padding-top: 1px;
}
footer .mail a {
    float: left;
    color: #fff;
    margin: 0;
    line-height: 20px;
    padding-left: 16px;
    text-decoration: none;
}
footer .cr {
    float: right;
    margin: 0;
    height: 20px;
    padding: 20px 0;
    color: #fff;
    line-height: 20px;
}

@media screen and (max-width: 999px) {
    .flex-container li:nth-child(4) {
        padding-left: 0px;
    }
    .flex-container li:nth-child(5) {
        padding-right: 0px;
    }
    .bullet-points{
        margin: 0 140px;
    }
    .intro{
        font-size: 1.1em;
        line-height: 1.6em;
        padding: 0 32px 24px;
    }
    .about-2 .wrapper {
        padding: 0 32px;
        font-size: 1em;
        line-height: 1.4em;
    }
    footer {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 840px) {
    .bullet-points{
        margin: 0 100px;
    }
}
@media screen and (max-width: 760px) {
    .bullet-points{
        margin: 0 60px;
    }
    .about, .about-2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .intro{
        font-size: 1.1em;
        line-height: 1.6em;
        padding: 0 16px 24px;
    }
    .about-2 .wrapper {
        padding: 0 24px;
        font-size: 0.9em;
        line-height: 1.4em;
    }
    footer {
        font-size: 0.9em;
    }
    footer .mail a {
        padding-left: 8px;
    }
    footer .mail img {
        padding-top: 3px;
        height: 12px;
    }
    .hide-mobile {
        display: none;
    }
}

 .language-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .language-dropdown button {
    background: white;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
select {
    appearance: none; /* Hide default browser styling */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px; /* Rounded corners */
    padding: 4px 8px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    outline: none;
    width: 110px; /* Adjust width as needed */
    font-weight: normal;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path fill="%23333" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    /*background-size: 16px;*/
  }

  /* When hovering over the dropdown */
  select:hover {
    border-color: #888;
  }

  /* When the dropdown is focused */
  select:focus {
    border-color: #555;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  }