/*
Theme Name: ttheme
Author: Mateusz Dynda
Version: 1.0
*/

:root {
    --bright-font: #d1d1d1;
    --dark-font: #222;
    --main-color: #c8aa57;
    --bg-light: #fff;
    --bg-dark: #f7f7f7;
    /* --bg-dark: #121314; */
}

::selection {
    color: var(--bright-font);
    background: var(--main-color);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: none;
    overflow-x: hidden;
    font-size: calc(1em * .625);
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: var(--bg-dark);
    min-height: 100vh;
    text-rendering: geometricPrecision;
    font-smoothing: antialiased;
}

img {
    display: block;
    object-fit: cover;
    object-position: center;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

p.strong {
    font-weight: bold;
}

a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: inherit;
    text-decoration: none;
}

a::hover {
    font-weight: bold;
}

button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 0;
    text-decoration: none;
    text-align: center;
}

button a {
    width: 100%;
    height: 100%;
}

button a:hover {
    font-weight: inherit;
}

.btn-outline {
    padding: 14px 20px;
    border: 2px solid var(--dark-font);
    color: var(--dark-font);
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: none;
    position: relative;
    cursor: pointer;
    z-index: 1;
    width: max-content;
    background: none;
    border-radius: 0;
    min-width: 120px;
}

.btn-outline a {
    line-height: 0;
}

.btn-outline::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    bottom: 0;
    left: -100%;
    transition: left .3s ease-in-out;
}

.btn-outline:hover::after {
    left: 0;
}

.btn-outline.active {
    background-color: var(--main-color);
}

.btn-outline.cta {
    background-color: var(--main-color);
}

.btn-outline.cta::after {
    background-color: var(--dark-font);
}

@media screen and (min-width: 1023px) {
    .btn-outline {
        padding: 18px 20px;
    }
}


ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 6vw;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media screen and (min-width: 1023px) {
    h1 {
        font-size: 40px;
    }
}

h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 5vw;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media screen and (min-width: 1023px) {
    h2 {
        font-size: 40px;
    }
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 3vw;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media screen and (min-width: 1023px) {
    h3 {
        font-size: 20px;
    }
}

.navbar__container {
    position: fixed;
    z-index: 2;
    width: 100%;
}

.navbar__container .bar {
    width: 100%;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 15px;
    background-color: #ffffffc0;
    transition: background-color .3s ease-in-out;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.navbar__container .bar.active {
    background-color: #fff;
}

.navbar__container .logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.navbar__container .logo img {
    width: auto;
    height: 30px;
    display: block;
}

.navbar__container .hamburger {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar__container .hamburger .icon {
    width: 35px;
    cursor: pointer;
    transition: scale .3s ease-in-out;
}

.navbar__container .hamburger .icon:hover {
    scale: 1.2;
}

.navbar__container .hamburger .icon:before,
.navbar__container .hamburger .icon:after,
.navbar__container .hamburger .icon div {
    background: var(--dark-font);
    content: "";
    display: block;
    height: 3px;
    border-radius: 3px;
    margin: 7px 0;
    transition: transform .3s ease-in-out;
}

.navbar__container .hamburger .icon.active:before {
    transform: translateY(10px) rotate(135deg);
}

.navbar__container .hamburger .icon.active:after {
    transform: translateY(-10px) rotate(-135deg);
}

.navbar__container .hamburger .icon.active div {
    transform: scale(0);
}

.navbar__container .menu {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    top: 50px;
    height: 3px;
    visibility: hidden;
    flex-direction: column;
}

.navbar__container .menu .list {
    display: flex;
    flex-direction: column;
    list-style: none;
    transition: opacity .3s ease-in-out;
    gap: 15px 0;
}

.navbar__container .menu.active .list {
    opacity: 1;
}

.navbar__container .menu .list li a {
    text-transform: uppercase;
}

.navbar__container .menu .list li:not(.cta).active a {
    font-weight: bold;
}

.navbar__container .menu .list li {
    position: relative;
}

.navbar__container .menu .cta {
    display: none;
}

.navbar__container .menu .social {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 15px;
}

.navbar__container .menu .social a {
    display: flex;
    align-items: center;
}

.navbar__container .menu .social svg {
    height: 30px;
}

.navbar__container .sub-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    margin: 0 0 0 15px;
    white-space: nowrap;
    transition: all .3s ease-in-out;
}

.navbar__container .pll-parent-menu-item {
    display: flex;
    width: auto;
    margin: 25px 0 0 0;
}

.navbar__container .sub-menu.lang {
    display: flex;
    flex-direction: row;
    gap: 0 10px;
    margin: 0 0 0 10px;
}

.navbar__container .sub-menu.lang a:hover {
    font-weight: bold;
}

@media screen and (min-width: 1023px) {

    .navbar__container .bar {
        gap: 0 40px;
        padding: 0 50px;
        height: 90px;
    }

    .navbar__container:hover .bar {
        background-color: #fff;
    }

    .navbar__container .logo {
        flex: 1;
    }

    .navbar__container .logo img {
        height: 40px;
        width: auto;
        max-height: none;
    }

    .navbar__container .hamburger {
        display: none;
    }

    .navbar__container .menu {
        position: relative;
        top: 0;
        height: 100%;
        display: flex;
        flex: 5;
        justify-content: flex-end;
        visibility: visible;
        background: none;
        opacity: 1;
        flex-direction: row;
        gap: 0 50px;
    }

    .navbar__container .menu .list {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px 25px;
    }

    .navbar__container .menu .list li:not(.cta) a:hover {
        font-weight: bold;
    }

    .navbar__container .menu .cta {
        display: flex;
    }

    .navbar__container .menu .social svg {
        height: 20px;
    }

    .navbar__container .sub-menu {
        position: absolute;
        margin: 0;
        top: 20px;
        left: -10px;
        padding: 40px 0 0 0;
        opacity: 0;
        visibility: hidden;
    }

    .navbar__container .sub-menu li {
        padding: 10px 10px;
        background-color: #fff;
    }

    .navbar__container .menu .list li:hover .sub-menu {
        opacity: 1;
        visibility: visible;
    }

    .navbar__container .pll-parent-menu-item {
        position: relative;
        margin: 0;
    }

    .navbar__container .pll-parent-menu-item img {
        width: 20px;
        height: auto;
    }

    .navbar__container .pll-parent-menu-item .sub-menu.lang {
        gap: 0;
        width: 40px;
        display: flex;
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
        margin: 0;
    }

    .navbar__container .pll-parent-menu-item .sub-menu.lang li {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        transition: background-color .3s ease-in-out;
        height: 40px;
        padding: 0;
    }

    .navbar__container .pll-parent-menu-item a,
    .sub-menu.lang a {
        font-weight: bold;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar__container .pll-parent-menu-item:hover .sub-menu.lang {
        visibility: visible;
        opacity: 1;
    }

    .navbar__container .pll-parent-menu-item .sub-menu.lang li:hover {
        background-color: var(--main-color);
    }
}

/* INFO ICONS */
.info.icons {
    display: flex;
    gap: 25px;
}

.info.icons .icon {
    display: flex;
    gap: 10px;
}

.info.icons svg {
    height: 20px;
    fill: var(--main-color);
}

/* BANNER */

.banner__container {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background-size: cover;
}

.banner__container.space {
    margin: 25px auto 0;
}

.banner__container .outer {
    display: none;
}

@media screen and (min-width: 1023px) {

    .banner__container {
        aspect-ratio: auto;
        height: 80vh;
        max-height: 800px;
    }

    .banner__container.space {
        margin: 50px auto 0;
    }

    .banner__container .outer {
        width: min(100% - 30px, var(--maxWidth));
        margin-inline: auto;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .banner__container .wysiwyg {
        padding: 50px 50px;
        background-color: #fff;
    }
}

/* IMG TEXT 1 */

.textImg1__container {
    width: min(100% - 30px, var(--maxWidth));
    margin: 25px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--bg-light);
    padding: 15px;
    position: relative;
}

.textImg1__container .text {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.textImg1__container .text button {
    margin-left: auto;
}

.textImg1__container .img {
    order: 2;
}

.textImg1__container .img img {
    width: 100%;
}

@media screen and (min-width: 1023px) {
    .textImg1__container {
        padding: 80px;
        align-items: center;
        flex-direction: row;
        margin: 50px auto 0;
        gap: 50px;
        max-height: 800px;
    }

    .textImg1__container .text {
        flex: 1 0 400px;
        gap: 25px;
    }

    .textImg1__container .img {
        flex: 1 0 400px;
    }

    .textImg1__container.rev .text {
        order: 2;
    }

    .textImg1__container .text button {
        margin-left: 0;
    }

    .textImg1__container.rev .img {
        order: 1;
    }

    .textImg1__container.up {
        margin: -50px auto 0;
    }

    .textImg1__container .img img {
        height: 100%;
    }
}

/* TEXT IMG 2 */

.textImg2__container {
    width: 100%;
    background-size: cover;
    position: relative;
    margin: 25px 0 30px 0;
}

.textImg2__container .outer {
    height: 100%;
    width: min(100% - 30px, var(--maxWidth));
    margin-inline: auto;
    display: flex;
    justify-content: flex-end;
}

.textImg2__container .text {
    position: relative;
    bottom: -15px;
    max-width: none;
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    background-color: var(--bg-light);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.textImg2__container .text button {
    margin-left: auto;
}

@media screen and (min-width: 1023px) {
    .textImg2__container {
        height: 80vh;
        max-height: 800px;
        margin: 50px 0 100px 0;
    }

    .textImg2__container.rev .outer {
        justify-content: flex-start;
    }

    .textImg2__container .text {
        gap: 25px;
        position: absolute;
        bottom: -50px;
        max-width: 800px;
        padding: 80px;
    }

    .textImg2__container .text button {
        margin-left: 0;
    }
}

/* IMG TEXT 3 */

.textImg3__container {
    width: min(100% - 30px, var(--maxWidth));
    gap: 15px;
    max-height: 800px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    margin: 0 auto 25px;
}

.textImg3__container.space {
    margin: 25px auto 25px;
}

.textImg3__container .text {
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.textImg3__container .img img {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.textImg3__container .text button {
    margin-left: auto;
}

@media screen and (min-width: 1023px) {
    .textImg3__container {
        width: 100%;
        padding: 0;
        height: 80vh;
        position: relative;
        margin: 0 auto 100px;
    }

    .textImg3__container.space {
        margin: 50px auto 100px;
    }

    .textImg3__container .text {
        background-color: var(--bg-light);
        width: 100%;
        height: 100%;
        margin: 0 calc((100% - var(--maxWidth)) / 2);
        z-index: 1;
        max-width: 800px;
        position: absolute;
        right: 0;
        bottom: -50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px;
        gap: 25px;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    }

    .textImg3__container.rev .text {
        left: 0;
        right: auto;
    }

    .textImg3__container .img {
        position: absolute;
        height: 100%;
        width: 100%;
    }

    .textImg3__container .img img {
        height: 100%;
        aspect-ratio: unset;
    }

    .textImg3__container .text button {
        margin-left: 0;
    }
}

/* WYSIWYG */

.wysiwyg__container {
    width: min(100% - 30px, var(--maxWidth));
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 0 0 15px;
}

.wysiwyg__container.space {
    margin: 25px auto 0;
    padding: 15px;
}

.wysiwyg__container.single {
    margin: -25px auto 0;
    padding: 15px;
}

.wysiwyg__container button {
    margin-left: auto;
}

.wysiwyg {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.wysiwyg .column {
    flex: 1 0 200px;
}

.wysiwyg a {
    color: var(--main-color);
}

.wysiwyg a:hover {
    text-decoration: underline;
}

.wysiwyg ul {
    margin: 0 0 20px 0;
    line-height: 1.8;
}

.wysiwyg.arabic ul {
    margin: 0 0 0 0;
}

.wysiwyg ul li {
    position: relative;
    padding: 0 0 0 20px;
}

.wysiwyg.arabic ul li {
    padding: 0 20px 0 0;
}

.wysiwyg ul li::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
    top: 8px;
    left: 0;
}

.wysiwyg.arabic ul li::before {
    left: auto;
    right: 0;
}

.wysiwyg ol {
    margin: 0 0 20px 0;
    line-height: 1.8;
    list-style: decimal;
}

.wysiwyg ol li {
    margin: 0 0 0 20px;
}

.wysiwyg.arabic ol li {
    padding: 0 20px 0 0;
}

@media screen and (min-width: 1023px) {
    .wysiwyg__container {
        margin: 0 auto;
        padding: 0 50px 50px 50px;
        gap: 25px;
    }

    .wysiwyg__container.space {
        margin: 50px auto 0;
        padding: 80px;
    }

    .wysiwyg__container.single {
        margin: -50px auto 0;
        padding: 50px;
    }


    .wysiwyg__container button {
        margin-left: 0;
    }

    .wysiwyg {
        gap: 50px;
    }
}

/* IFRAME */

.iframe__container {
    width: 100%;
}

.iframe__container iframe {
    width: 100%;
    height: 40vh;
    display: block;
}

/* SNIPPET CONTAINER */

.snippet__container {
    width: min(100% - 30px, var(--maxWidth));
    margin: 25px auto 0;
}

.snippet__container .outer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.snippet__container .box {
    border: 1px solid #d3d3d3;
}

.snippet__container .box .content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--bg-light);
}

.snippet__container .box img {
    width: 100%;
    aspect-ratio: 16 / 9;
    transition: filter .3s ease-in-out;
}

.snippet__container a:hover img {
    filter: brightness(.8);
}

@media screen and (min-width: 1023px) {
    .snippet__container {
        margin: 50px auto 0;
    }
}

/* FOOTER */

.footer__container {
    background-color: #070707;
    color: var(--bright-font);
    margin: 25px 0 0 0;
    padding: 0 0 50px 0;
}

.footer__container .outer {
    width: min(100% - 30px, var(--maxWidth));
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.footer__container .logo {
    height: 50px;
    margin-bottom: 25px;
}

.footer__container .col {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 25px 0;
}

.footer__container .col span {
    display: flex;
    flex-direction: column;
}

.footer__container .jointsystem {
    height: 40px;
}

.footer__container .vcard {
    display: none;
}

.footer__container .social {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (min-width: 1023px) {

    .footer__container {
        margin: 50px 0 0 0;
        padding: 0;
    }

    .footer__container .outer {
        padding: 80px 0;
        flex-direction: row;
    }

    .footer__container .col {
        padding: 0;
    }

    .footer__container:first-child .col {
        justify-content: flex-end;
    }

    .footer__container .col:last-child {
        justify-content: flex-end;
    }

    .footer__container .vcard {
        display: block;
    }

    .footer__container .vcard img {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 10px 0 25px 0;
    }

    .footer__container .social {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

/* MD SLIDER */

.mdSlider {
    background-color: #000;
    user-select: none;
}

.mdSlider .mdSlider__container {
    position: relative;
    overflow: hidden;
    height: 70vh;
}

.imageSlider {
    position: relative;
    height: 100%;
}

.mdSlider .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* filter: brightness(0.6); */
}

.mdSlider .image.active {
    opacity: 1;
}

.mdSlider .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 15px;
    row-gap: 20px;
}

.mdSlider .mdSlider__container .datePicker {
    display: none;
}

.mdSlider .content .wysiwyg {
    display: flex;
    flex-direction: column;
    color: var(--bright-font);
}

.mdSlider .startStop {
    display: none;
}

.mdSlider .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: .1;
}

.mdSlider .arrow svg {
    height: 30px;
    fill: #f7f7f7;
}

.mdSlider .mdSlider__container:hover .arrow {
    opacity: 1;
}

.mdSlider .mdSlider__container .arrow.left {
    left: 10px;
}

.mdSlider .mdSlider__container .arrow.right {
    right: 10px;
}

.mdSlider .mdSlider__container .scroll {
    cursor: pointer;
}

.mdSlider .mdSlider__container .scroll img {
    height: 15px;
}

@media screen and (min-width: 1023px) {

    .mdSlider .mdSlider__container {
        height: 80vh;
        max-height: 800px;
    }

    .mdSlider .startStop {
        position: absolute;
        display: flex;
        bottom: 15px;
        right: 15px;
        border: none;
        cursor: pointer;
        background: #0000001c;
        padding: 5px;
    }

    .mdSlider .startStop img {
        height: 15px;
    }
}

.gallery__container {
    width: min(100% - 30px, 1920px);
    margin-inline: auto;
    padding: 25px 0 0 0;
}

.gallery__container .tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 0 25px 0;
}

.gallery__container .tabs button {
    width: 100%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    user-select: none;
}

.gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    transition: filter .3s ease-in-out, transform .3s ease-in-out;
}

.gallery a.hide {
    pointer-events: none;
    order: 2;
}

.gallery img.hide {
    filter: grayscale(100%) blur(5px);
    transform: scale(.8);
}

@media screen and (min-width: 1023px) {

    .gallery__container {
        padding: 50px 0 0 0;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 25px;
    }

    .gallery__container .tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery__container .tabs button {
        width: inherit
    }
}

/* MOBILE BAR */

.mobileBar__container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.mobileBar__container .outer {
    display: flex;
    justify-content: space-around;
    height: 50px;
    background-color: #222;
}

.mobileBar__container a {
    width: 100%;
    display: flex;
    line-height: inherit;
    gap: 5px;
}

.mobileBar__container svg {
    fill-rule: evenodd;
}

.mobileBar__container a:nth-child(1) {
    border-right: 1px solid rgb(19, 19, 19);
}

.mobileBar__container a:nth-child(-n+2) {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 2;
    color: var(--bright-font);
}

.mobileBar__container a:nth-child(-n+2) svg {
    height: 15px;
    fill: var(--bright-font);
}

.mobileBar__container a:nth-child(3) {
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    flex: 3;
    gap: 10px;
}

.mobileBar__container a:nth-child(3) svg {
    height: 30px;
}

@media screen and (min-width: 1023px) {
    .mobileBar__container {
        display: none;
    }
}


/* BE */

.be__container.space {
    margin: 25px auto 0;
}

@media screen and (min-width: 1023px) {

    .be__container.space {
        margin: 50px auto 0;
    }
}

.textSlider__container {
    position: relative;
    width: min(100% - 30px, var(--maxWidth));
    margin: 0 auto;
    overflow: hidden;
}

.textSlider__container.space {
    margin: 25px auto 0;
}

.textSlider__container .slide {
    padding: 15px;
    width: 100%;
}

.textSlider__container .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .3s ease-in-out;
    opacity: .1;
}

.textSlider__container .arrow svg {
    height: 30px;
    fill: var(--main-color);
}

.textSlider__container:hover .arrow {
    opacity: 1;
}

.textSlider__container .arrow.left {
    left: 10px;
}

.textSlider__container .arrow.right {
    right: 10px;
}

@media screen and (min-width: 1023px) {
    .textSlider__container.space {
        margin: 50px auto 0;
    }

    .textSlider__container .slide {
        padding: 80px;
    }

}

.webcam iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}