.image-text-container {
    display: flex;
    align-items: stretch;
}

.image-text-container .left {
    width: 300px;
    flex-shrink: 0;
}

.image-text-container .left .image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-text-container .left .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-text-container .right {
    flex: 1;
    padding-left: 40px;
}

@media (max-width: 1200px) {
    .image-text-container .left {
      display: none;
    }

    .image-text-container .right {
        padding-left: 0;
    }
}

.lang-switcher {
    display: flex;
    justify-content: center;
    margin: 15px auto 35px;
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #fff;
    background: white;
}

.lang-switcher .switch {
    display: inline-block;
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 9px 0;
    font-size: 1em;
    color: #ffffff;
}

.lang-switcher .switch.left {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    margin-right: 1px;
}
  
.lang-switcher .switch.right {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.lang-switcher .switch.active {
    background-color: #00ce7c;
}
  
.lang-switcher .switch:not(.active) {
    background-color: #b1b1b1;
}