@charset "utf-8";
/* CSS Document */


@font-face {
    font-family: 'Panton', sans-serif;
    src: url('font/PantonDemo-Black.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Panton', sans-serif;
    src: url('font/PantonDemo-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}


:root {
    font-size: 15px;
    color: var(--color-content);
    font-family: var(--font);
}

:root, :after, :before {
    --font: 'Roboto', sans-serif;
    --font-panton: 'Panton', sans-serif;
    --size-54: 3.6rem;
    --size-36: 2.4rem;
    --size-16: 1.067rem;
    --size-13: 0.867rem;


    --color-dark: #191919;
    --color-accent: #FF1313;
    --color-content: #5B5B5B;
}

.page-subtitle {
    font-size: var(--size-36);
    color: var(--color-dark);
    font-weight: bold;
    line-height: 1.35;
}

.page-title {
    font-size: var(--size-54);
    color: var(--color-dark);
    font-weight: bold;
    line-height: 1.35;
}

html {
}

body {
    position: relative;
    line-height: 1.75;
}

body.home {
    min-height: 600px;
    position: relative;
    line-height: 1.75;
}

body.error404:not(.admin-bar) {
    min-height: 100vh;
}

body.error404.admin-bar {
    min-height: calc(100vh - 32px);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
}

strong {
    font-weight: bold;
    color: var(--color-dark);
}

em {
    font-style: italic;
}

.inner {
    box-sizing: border-box;
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

#header {
    width: 100%;
    padding-right: 100px;
    padding-left: 100px;
    padding: 72px 100px 110px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 400;
}

#logo {
}

#logo img {
    display: block;
    height: 23px;
    width: auto;
}

#main-menu {
}

#main-menu ul {
    display: flex;
    color: var(--color-dark);
    text-transform: uppercase;
    font-family: var(--font-panton);
    font-weight: 300;
}

#main-menu li + li {
    margin-left: 50px;
}

#main-menu li.current-menu-item a {
    font-weight: bold;
    text-decoration: underline;
    color: var(--color-accent);
}

#main-menu li:hover a, #lang a:hover {
    color: var(--color-accent);
}

#main-menu a, #lang a {
    transition-duration: 0.3s;
}

.home #header {
    position: absolute;
    top: 72px;
    padding-top: 0;
    padding-bottom: 0;
}


#home-rotator {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#home-rotator-list {
}

#home-rotator .slick-dots {
    right: 66px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
}

#home-rotator .slick-dots li + li:after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    background: #E6E6E6;
    width: 1px;
    height: 20px;
    z-index: -1;
    margin-left: -0.5px;
}

#home-rotator .slick-dots li + li {
    margin-top: 20px;
}

#home-rotator .slick-dots li {
    position: relative;
}

#home-rotator .slick-dots li button {
    border: 1px solid #E6E6E6;
    height: 18px;
    width: 18px;
    position: relative;
    padding: 0;
    font-size: 0;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    background: transparent;
}

#home-rotator .slick-dots li button:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -6px;
    background: #191919;
    opacity: 0;
    transition-duration: 0.3s;
}

#home-rotator .slick-dots li.slick-active {
}

#home-rotator .slick-dots li.slick-active button {
}

#home-rotator .slick-dots li.slick-active button:after {
    opacity: 1;
}

.home-rotator-item {
}

.home-rotator-item-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-dark);
    line-height: 1.3;
    font-weight: bold;
    background-repeat: no-repeat;
    background-position: center right;
}

.fade-in .home-rotator-item-wrapper .inner {
    transform: translate(0px, 0px);
    opacity: 1;
}

.fade-in.fade-out .home-rotator-item-wrapper .inner {
    transform: translate(100px, 100px);
    opacity: 0;
}

.home-rotator-item-wrapper .inner {
    max-width: 1224px;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    transform: translate(-100px, -100px);
    opacity: 0;
}

#footer {
    z-index: 500;
    position: relative;
    width: 100%;
    border-top: 1px solid #E6E6E6;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 60px 100px 70px;
}

.home #footer, .error404 #footer {
    position: absolute;
    bottom: 70px;
    padding-top: 0;
    border: none;
    margin: 0;
    padding-bottom: 0;
}

#footer-contact-info {
    color: var(--color-dark);
    font-size: var(--size-13);
    line-height: 1.35;
}

#footer-contact-info p {
}

#footer-contact-info a {
    text-decoration: underline;
    transition-duration: 0.3s;
}

#footer-contact-info a:hover {
    color: var(--color-accent);
}

#footer-social {
    display: flex;
    align-items: center;
}

.social-icon {
    margin-left: 15.5px;
}

.social-icon svg {
    width: 39px;
    height: 39px;
    display: block;
}

.social-blanket {
    margin-left: 5.5px;
}

.social-blanket img {
    display: block;
}

*:focus {
    outline: none;
}

#page-section {
}

#page-section .inner {
    max-width: 1224px;
}

#page-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 140px;
}

#page-section-header .title-box {
    width: 50%;
    box-sizing: border-box;
    padding-right: 60px;
}

#page-section-header .page-title {
}

#page-section-header .page-pre-title {
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    font-weight: 300;
    color: var(--color-dark);
    font-family: var(--font-panton);
}

#page-section-header .ov {
    width: 50%;
    text-align: center;
}

#page-section-header .ov img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.page-section-content {
}

.page-section-content.team-content {
    margin-bottom: 100px;
}

.page-section-content.team-content .content-text {
    position: relative;
    max-width: 967px;
}

#team-name-bg {
    color: #E6E6E6;
    font-size: 90px;
    font-weight: bold;
    line-height: 1;
    transform-origin: top left;
    transform: rotate(-90deg) translate(-100%);
    margin-top: -50%;
    white-space: nowrap;
}

.rotation-wrapper-outer {
    display: table;
    position: absolute;
    transform: scale(-1);
    right: -130px;
    pointer-events: none;
}

.rotation-wrapper-inner {
    padding: 50% 0;
    height: 0;
}

.content-section {
    display: flex;
    align-items: flex-start;
    max-width: 1060px;
}

.content-section + .content-section {
    margin-top: 64px;
}

.content-section.column {
    flex-direction: column;
}

.content-section.row {
    flex-direction: row;
    max-width: 1040px;
}

.content-section.row .page-subtitle {

    text-align: right;

    margin-right: 53px;

    width: 235px;
}

.content-section.column .page-subtitle {

    margin-bottom: 35px;
}

.content-section .page-subtitle {
}

.content-section .content-text {
    flex: 1;
}

.content-text a, .content-text a * {
    transition-duration: 0.3s;
}

.content-text a:hover, .content-text a:hover * {
    color: var(--color-accent) !important;
}

.content-text ul[style*="circle"] li:before {
    content: '';
    background: url(images/li-check.svg);
    width: 16px;
    height: 16px;
    background-size: cover;
    flex: 0 0 16px;
    margin-right: 8px;
    margin-top: 5px;
}

.content-text ul[style*="circle"] li {

    display: flex;
}

.content-text li {
    margin-bottom: 26px;
}

.content-section img.aligncenter {
    display: block;
    margin-bottom: 23px;
    max-width: 100%;
    width: auto;
    height: auto;
}

.buttons-wrapper {
    display: flex;
    margin-top: 40px;
}

.buttons-wrapper a {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--color-dark);
    border: 3px solid var(--color-dark);
    box-sizing: border-box;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 22px;
    transition-duration: 0.3s;
}

.buttons-wrapper a + a {
    margin-left: 22px;
}

.buttons-wrapper a:hover {
    color: white !important;
    background: var(--color-dark);
    border-color: var(--color-dark);
}

#page-section-header.project-archive {
}

#page-section-header.project-archive .title-box {
    padding: 0;
    width: 100%;
}

#page-section-header.project-archive .page-title {
}

#projects-wrapper {
    max-width: 1177px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(3, 30.587%);
    grid-column-gap: calc((100% - (3 * 30.587%)) / 2);
    grid-row-gap: 24px;
    align-items: flex-start;
}

.project-item {
    padding: 14px;
    background: white;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    border-radius: 10px;
}

.project-item .ov {
    margin-bottom: 25px;
}

.project-item .ov img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
}

.project-item .title {
    font-size: var(--size-16);
    font-weight: bold;
    line-height: 1.65;
    margin-bottom: 25px;
}

.project-item .title a {
    transition-duration: 0.3s;
}

.project-item .title a:hover {
    color: var(--color-accent);
}

.project-item .desc {
}

.project-item:hover {
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.ov-desc {
    text-align: left;
    margin-top: 13px;
    font-style: italic;
}

#page-section.project-single .buttons-wrapper {
    margin-top: 0;
    margin-bottom: 74px;
}

#page-section.project-single .content-text {
    max-width: 967px;
    margin-bottom: 70px;
}

#page-section.project-single #page-section-header {
    margin-bottom: 90px;
}

#page-section-header.in-header-title {
    align-items: flex-start;
}

#page-section-header.in-header-title .title-box {
    flex: 1;
    margin-top: 30px;
}

#page-section-header.in-header-title .desc {
    max-width: 660px;
}

#page-section-header.in-header-title .desc > p {
    margin-bottom: 1em;
}

#page-section-header.in-header-title .desc .buttons-wrapper {
    margin-top: 34px;
}

.contact #page-section-header.in-header-title .desc {
    max-width: 705px;
}


#team-members-section {
    width: calc(100% + 126px);
    margin-left: calc((-126px / 2));
    margin-bottom: 80px;
}

#team-members-section .page-subtitle {
    text-transform: uppercase;
    margin-bottom: 54px;
}

#team-members-wrapper {
    display: grid;
    grid-row-gap: 24px;
    grid-template-columns: repeat(4, 23.24%);
    grid-column-gap: calc((100% - (4 * 23.24%)) / 3);
}

.team-member {
}

.team-member .ov {
    position: relative;
    height: 220px;
    overflow: hidden;
    margin-bottom: 16px;
}

.team-member .ov img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 110%;
    height: auto;
    transform: translate(-50%, -50%);
}

.team-member .name {
    color: var(--color-dark);
    font-size: var(--size-16);
    font-weight: bold;
    line-height: 1.65;
}

.team-member .name a {
    transition-duration: 0.3s;
}

.team-member .name a:hover {
    color: var(--color-accent);
}

.team-member .position {
    text-transform: uppercase;
    font-size: 0.93rem;
}

.contact #page-section-header.in-header-title .title-box {
    margin-top: 102px;
}

iframe {
    display: block;
    width: 100%;
    height: 400px;
}

#wp-admin-bar-updates, #wp-admin-bar-comments {
    display: none !important;
}

#toolbar {
    display: flex;
    align-items: center;
}

#lang {
    margin-left: 50px;
}

#lang li {
    list-style: none;
}

#lang ul {
}

#lang li a {
    display: none;
}

#lang li li li a {
    display: block;
}

#lang li li li a .wpml-ls-display {
    display: none
}

@media screen and (min-width: 1051px) and (max-width: 1300px) {
    #header {
        padding-left: 30px;
        padding-right: 30px;
    }

    #logo img {
        height: 17px;
    }

    #footer {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (min-width: 681px) and (max-width: 1050px) {
    .page-subtitle {
        font-size: 30px;
    }

    .page-title {
        font-size: 40px;
    }

    html {
    }

    body {
    }

    body.home {
    }

    body.error404:not(.admin-bar) {
    }

    body.error404.admin-bar {
    }

    a {
    }

    a:hover {
    }

    strong {
    }

    em {
    }

    .inner {
    }

    #header {
        padding: 15px;
    }

    #logo {
    }

    #logo img {
        height: 15px;
    }

    #main-menu {
        flex: 1;
        margin-left: 30px;
    }

    #main-menu ul {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    #main-menu li {
        margin: 5px 0px 5px 20px !important;
    }

    #main-menu li.current-menu-item a {
    }

    #main-menu li:hover a {
    }

    #main-menu a {
    }

    .home #header {
        top: 15px;
    }


    #home-rotator {
    }

    #home-rotator-list {
    }

    #home-rotator .slick-dots {
        right: 25px;
    }

    #home-rotator .slick-dots li + li:after {
    }

    #home-rotator .slick-dots li + li {
    }

    #home-rotator .slick-dots li {
    }

    #home-rotator .slick-dots li button {
    }

    #home-rotator .slick-dots li button:after {
    }

    #home-rotator .slick-dots li.slick-active {
    }

    #home-rotator .slick-dots li.slick-active button {
    }

    #home-rotator .slick-dots li.slick-active button:after {
    }

    .home-rotator-item {
    }

    .home-rotator-item-wrapper {
    }

    .fade-in .home-rotator-item-wrapper .inner {
    }

    .fade-in.fade-out .home-rotator-item-wrapper .inner {
    }

    .home-rotator-item-wrapper .inner {
        zoom: 0.6;
    }

    #footer {
        padding: 15px;
    }

    .home #footer, .error404 #footer {
        bottom: 15px;
    }

    #footer-contact-info {
    }

    #footer-contact-info p {
    }

    #footer-contact-info a {
    }

    #footer-contact-info a:hover {
    }

    #footer-social {
    }

    .social-icon {
    }

    .social-icon svg {
    }

    .social-blanket {
    }

    .social-blanket img {
    }

    *:focus {
    }

    #page-section {
        margin-top: 50px;
    }

    #page-section .inner {
    }

    #page-section-header {
        margin-bottom: 70px;
    }

    #page-section-header .title-box {
        width: 60%;
    }

    #page-section-header .page-title {
    }

    #page-section-header .page-pre-title {
    }

    #page-section-header .ov {
        width: 40%;
    }

    #page-section-header .ov img {
    }

    .page-section-content {
    }

    .page-section-content.team-content {
    }

    .page-section-content.team-content .content-text {
    }

    #team-name-bg {
    }

    .rotation-wrapper-outer {
        display: none;
    }

    .rotation-wrapper-inner {
    }

    .content-section {
    }

    .content-section + .content-section {
    }

    .content-section.column {
    }

    .content-section.row {
        flex-direction: column;
    }

    .content-section.row .page-subtitle {
        width: 100%;
        margin-right: 0;
        text-align: left;
        margin-bottom: 10px;
    }

    .content-section.column .page-subtitle {
    }

    .content-section .page-subtitle {
    }

    .content-section .content-text {
        width: 100%;
    }

    .content-text a, .content-text a * {
    }

    .content-text a:hover, .content-text a:hover * {
    }

    .content-text ul[style*="circle"] li:before {
    }

    .content-text ul[style*="circle"] li {
    }

    .content-text li {
    }

    .content-section img.aligncenter {
    }

    .buttons-wrapper {
    }

    .buttons-wrapper a {
    }

    .buttons-wrapper a + a {
    }

    .buttons-wrapper a:hover {
    }

    #page-section-header.project-archive {
    }

    #page-section-header.project-archive .title-box {
    }

    #page-section-header.project-archive .page-title {
    }

    #projects-wrapper {
        grid-template-columns: repeat(2, 45.587%);
        grid-column-gap: calc((100% - (2 * 47.587%)) / 1);
        justify-content: center;
    }

    .project-item {
    }

    .project-item .ov {
    }

    .project-item .ov img {
    }

    .project-item .title {
    }

    .project-item .title a {
    }

    .project-item .title a:hover {
    }

    .project-item .desc {
    }

    .project-item:hover {
    }

    .ov-desc {
    }

    #page-section.project-single .buttons-wrapper {
    }

    #page-section.project-single .content-text {
    }

    #page-section.project-single #page-section-header {
        margin-bottom: 70px;
    }

    #page-section-header.in-header-title {
    }

    #page-section-header.in-header-title .title-box {
    }

    #page-section-header.in-header-title .desc {
    }

    #page-section-header.in-header-title .desc > p {
    }

    #page-section-header.in-header-title .desc .buttons-wrapper {
    }

    .contact #page-section-header.in-header-title .desc {
    }


    #team-members-section {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    #team-members-section .page-subtitle {
    }

    #team-members-wrapper {
        grid-template-columns: repeat(3, 31.24%);
        grid-column-gap: calc((100% - (3 * 31.24%)) / 2);
    }

    .team-member {
    }

    .team-member .ov {
        height: 180px;
    }

    .team-member .ov img {
        position: static;
        width: 100%;
        height: 100%;
        transform: none;
        object-fit: cover;
    }

    .team-member .name {
    }

    .team-member .name a {
    }

    .team-member .name a:hover {
    }

    .team-member .position {
    }

    .contact #page-section-header.in-header-title .title-box {
    }

    iframe {
    }

    #wp-admin-bar-updates, #wp-admin-bar-comments {
    }
}

@media screen and (max-width: 680px) {
    .page-subtitle {
        font-size: 24px;
    }

    .page-title {
        font-size: 30px;
    }

    html {
    }

    body {
    }

    body.home {
        min-height: 0;
    }

    body.error404:not(.admin-bar) {
    }

    body.error404.admin-bar {
    }

    a {
    }

    a:hover {
    }

    strong {
    }

    em {
    }

    .inner {
    }

    #header {
        padding: 15px;
        z-index: 9000;
        position: relative;
    }

    #logo {
        flex: 1;
    }

    #logo img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    #main-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 80%;
        background: white;
        box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.06);
        transform: translate(100%, 0);
        transition-duration: 0.3s;
        pointer-events: none;
    }

    #main-menu.open {
        transform: translate(0, 0);
        pointer-events: all;
    }

    #main-menu ul {
        margin-top: 70px;
        flex-direction: column;
        align-items: flex-end;
        padding: 0 21px;
    }

    #main-menu li {
        margin: 0 0 20px 0 !important;
        font-size: 1.1rem;
    }

    #main-menu li.current-menu-item a {
    }

    #main-menu li:hover a {
    }

    #main-menu a {
    }

    .home #header {
        top: 15px;
    }


    #home-rotator {
    }

    #home-rotator-list {
    }

    #home-rotator .slick-dots {
        right: 15px;
    }

    #home-rotator .slick-dots li + li:after {
    }

    #home-rotator .slick-dots li + li {
    }

    #home-rotator .slick-dots li {
    }

    #home-rotator .slick-dots li button {
    }

    #home-rotator .slick-dots li button:after {
    }

    #home-rotator .slick-dots li.slick-active {
    }

    #home-rotator .slick-dots li.slick-active button {
    }

    #home-rotator .slick-dots li.slick-active button:after {
    }

    .home-rotator-item {
    }

    .home-rotator-item-wrapper {
        padding-right: 40px;
        background: none !important;
    }

    .fade-in .home-rotator-item-wrapper .inner {
        margin-top: -90px;
    }

    .fade-in.fade-out .home-rotator-item-wrapper .inner {
    }

    .home-rotator-item-wrapper .inner * {
        font-size: 25px !important;
    }

    #footer {
        padding: 15px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .home #footer, .error404 #footer {
        bottom: 15px;
    }

    #footer-contact-info {
        margin-bottom: 15px;
    }

    #footer-contact-info p {
    }

    #footer-contact-info a {
    }

    #footer-contact-info a:hover {
    }

    #footer-social {
    }

    .social-icon {
        margin: 0 8px;
    }

    .social-icon svg {
        height: 30px;
        width: 30px;
    }

    .social-blanket {
        margin: 0;
    }

    .social-blanket img {
    }

    *:focus {
    }

    #page-section {
        margin-top: 40px;
    }

    #page-section .inner {
    }

    #page-section-header {
        margin-bottom: 40px;
        display: block;
    }

    #page-section-header .title-box {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    #page-section-header .page-title {
    }

    #page-section-header .page-pre-title {
    }

    #page-section-header .ov {
        width: auto;
        max-width: 100%;
    }

    #page-section-header .ov img {
    }

    .page-section-content {
    }

    .page-section-content.team-content {
    }

    .page-section-content.team-content .content-text {
    }

    #team-name-bg {
    }

    .rotation-wrapper-outer {
        display: none;
    }

    .rotation-wrapper-inner {
    }

    .content-section {
    }

    .content-section + .content-section {
        margin-top: 40px;
    }

    .content-section.column {
    }

    .content-section.row {
        flex-direction: column;
    }

    .content-section.row .page-subtitle {
        text-align: left;
        width: 100%;
        margin: 0 0 15px;
    }

    .content-section.column .page-subtitle {
        margin-bottom: 15px;
    }

    .content-section .page-subtitle {
    }

    .content-section .content-text {
    }

    .content-text a, .content-text a * {
    }

    .content-text a:hover, .content-text a:hover * {
    }

    .content-text ul[style*="circle"] li:before {
    }

    .content-text ul[style*="circle"] li {
    }

    .content-text li {
    }

    .content-section img.aligncenter {
    }

    .buttons-wrapper {
        flex-direction: column;
    }

    .buttons-wrapper a {
        text-align: center;
    }

    .buttons-wrapper a + a {
        margin: 15px 0 0 0;
    }

    .buttons-wrapper a:hover {
    }

    #page-section-header.project-archive {
    }

    #page-section-header.project-archive .title-box {
    }

    #page-section-header.project-archive .page-title {
    }

    #projects-wrapper {
        display: block;
    }

    .project-item {
        width: 100%;
        max-width: 420px;
        margin: 0 auto 30px;
        box-sizing: border-box;
    }

    .project-item .ov {
    }

    .project-item .ov img {
    }

    .project-item .title {
    }

    .project-item .title a {
    }

    .project-item .title a:hover {
    }

    .project-item .desc {
    }

    .project-item:hover {
    }

    .ov-desc {
    }

    #page-section.project-single .buttons-wrapper {
        margin-bottom: 40px;
    }

    #page-section.project-single .content-text {
    }

    .content-text img {
        display: block;
        max-width: 100%;
        width: auto;
        height: auto;
    }

    #page-section.project-single #page-section-header {
        margin-bottom: 40px;
    }

    #page-section-header.in-header-title {
    }

    #page-section-header.in-header-title .title-box {
        margin-top: 0;
    }

    #page-section-header.in-header-title .desc {
    }

    #page-section-header.in-header-title .desc > p {
        margin: 0;
    }

    #page-section-header.in-header-title .desc .buttons-wrapper {
    }

    .contact #page-section-header.in-header-title .desc {
    }


    #team-members-section {
        width: 100%;
        margin-left: 0;
    }

    #team-members-section .page-subtitle {
        margin-bottom: 20px;
    }

    #team-members-wrapper {
        grid-template-columns: repeat(2, 48.24%);
        grid-column-gap: calc((100% - (2 * 48.24%)));
    }

    .team-member {
    }

    .team-member .ov {
        height: 150px;
    }

    .team-member .ov img {
        position: static;
        transform: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-member .name {
    }

    .team-member .name a {
    }

    .team-member .name a:hover {
    }

    .team-member .position {
    }

    .contact #page-section-header.in-header-title .title-box {
        margin: 0;
    }

    iframe {
        height: auto;
    }

    #wp-admin-bar-updates, #wp-admin-bar-comments {
    }

    #menu-icon {
        display: block;
        width: 30px;
        height: 30px;
        margin-left: 15px;
        cursor: pointer;
        position: relative;
        z-index: 42;
    }

    #menu-icon span {
        background: #191919;
        position: absolute;
        height: 5px;
        border-radius: 5px;
        top: 50%;
        width: 100%;
        display: block;
        transform: translate(0, -50%) rotate(0deg);
        transition-duration: 0.3s;
        margin: -11px 0px 0px 0px;
        opacity: 1;
    }

    #menu-icon span + span {
        margin: 0;
    }

    #menu-icon span + span + span {
        margin-top: 11px;
    }

    #menu-icon.open {
    }

    #menu-icon.open span {
        margin: 0;
        transform: translate(0, -50%) rotate(45deg);
    }

    #menu-icon.open span + span {
        opacity: 0;
    }

    #menu-icon.open span + span + span {
        opacity: 1;
        transform: translate(0, -50%) rotate(-45deg);
    }
    #lang {
        margin-left: 20px;
        font-weight: bold;
    }
}
