
/* Video */
.grid-list-video {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 30px;
}

.grid-list-video .item-video {
    display: block;
    background-color: var(--light-grey);
    padding: 20px 30px;
    border-radius: 8px;
}

.grid-list-video .item-video .thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.grid-list-video .item-video .thumb img {
    display: block;
    width: 100%;
    border-radius: 8px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.grid-list-video .item-video .thumb:hover img {
    transform: scale(1.08, 1.08);
}

.grid-list-video .item-video .thumb .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    background: url(../images/icon-play-white.png) no-repeat center;
    background-size: 3rem;
}

.grid-list-video .item-video .thumb-title {
    margin-top: 20px;
}

.grid-list-video .item-video .thumb-title .title {
    background: url(../images/icon-video.png) no-repeat left center/1.25rem;
    font-size: 1.2rem;
    color: var(--dark-black);
    margin-bottom: 10px;
    padding-left: 2rem;
}

.grid-list-video .item-video:hover .thumb-title .title {
    color: var(--dark-yellow);
}

.grid-list-video .item-video .thumb-title .date {
    font-size: 0.875rem;
    color: var(--grey);
    padding-left: 2rem;
}

.layer-list-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.layer-list-video .layer-video-close {
    position: absolute;
    right: 20%;
    top: calc(12.5% - 35px);
    background: url(../images/icon-close.png) no-repeat center center;
    background-size: 50px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.layer-list-video .layer-video {
    position: absolute;
    left: 50%;
    top: calc(50% + 20px);
    transform: translate(-50%, -50%);
    background-color: var(--dark-black);
    width: 60%;
    height: 75%;
}

.layer-list-video .layer-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    outline: none;
}

/* News */
.grid-list-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 30px;
}

.grid-list-news .item-news {
    display: block;
    color: var(--dark-black);
}

.grid-list-news .item-news:hover {
    color: var(--white);
}

.grid-list-news .item-news .thumb {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.grid-list-news .item-news .thumb img {
    display: block;
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.grid-list-news .item-news:hover .thumb img {
    transform: scale(1.08, 1.08);
}

.grid-list-news .item-news .thumb-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-color: #efefef;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.grid-list-news .item-news:hover .thumb-detail {
    background-color: var(--yellow);
}

.grid-list-news .item-news .thumb-detail .detail {
    width: calc(100% - 40px);
}

.grid-list-news .item-news .thumb-detail .detail .title,
.grid-list-news .item-news .thumb-detail .detail .desc {
    margin-bottom: 15px;
}

.grid-list-news .item-news .thumb-detail .detail .title {
    font-size: 1.2rem;
}

.grid-list-news .item-news .thumb-detail .arrow {
    display: block;
    background: url(../images/icon-line-black.png) no-repeat center/20px;
    width: 40px;
    height: 30px;
}

.grid-list-news .item-news:hover .thumb-detail .arrow {
    background-image: url(../images/icon-line-white.png);
}

.show-news-body .title {
    font-size: 1.875rem;
    color: var(--dark-black);
}

.show-news-body .message {
    display: flex;
    padding: 30px 0;
}

.show-news-body .message span {
    display: block;
    padding-left: 30px;
}

.show-news-body .message span.date {
    background: url(../images/icon-date.png) no-repeat left center/20px;
}

.show-news-body .message span.hits {
    background: url(../images/icon-hits.png) no-repeat left center/20px;
}

.show-news-body .message span:not(:last-child) {
    margin-right: 30px;
}

.show-news-body .message span[class^='dr_show_hits_']{
    padding-left: 0 ;
}

.show-news-body .news-body {
    color: #5d5d5d;
    line-height: 1.5rem;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding: 50px;
}

.show-news-body .news-body img {
    display: block;
    max-width: 100%;
}

.show-news-body .news-body strong {
    font-family: 'century-bold';
}

.show-news-body .related-links {
    padding: 50px;
}

.show-news-body .related-links .item {
    display: flex;
    align-items: baseline;
    font-size: 1.25rem;
    color: var(--dark-black);
}

.show-news-body .related-links .item:not(:last-child) {
    margin-bottom: 20px;
}


.show-news-body .related-links a {
    display: block;
    color: var(--dark-black);
}

.show-news-body .related-links a:hover {
    color: var(--yellow);
}

/* Product */
.grid-list-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px 30px;
}

.grid-list-products .item-product {
    background-color: var(--light-grey);
    padding: 20px;
    border-radius: 8px;
}

.grid-list-products .item-product .thumb {
    margin-bottom: 10px;
}

.grid-list-products .item-product .thumb img {
    display: block;
    width: 100%;
}

.grid-list-products .item-product .name {
    font-size: 1.25rem;
    color: var(--dark-black);
    text-align: center;
    margin-bottom: 20px;
}

.grid-list-products .item-product .more-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.grid-list-products .item-product .more-btn::before {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background-color: var(--white);
    border-radius: 50px;
    transition: all 0.5s;
    z-index: 0;
}

.grid-list-products .item-product:hover .more-btn::before {
    width: 100%;
    background-color: var(--yellow);
}

.grid-list-products .item-product .more-btn span {
    position: relative;
    font-size: 0.875rem;
    color: var(--dark-black);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.grid-list-products .item-product:hover .more-btn span {
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
}

.grid-list-products .item-product .more-btn::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--dark-black);
    width: 40px;
    height: 100%;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid var(--dark-yellow);
    box-sizing: border-box;
}

.grid-list-products .item-product:hover .more-btn::after {
    background-color: var(--white);
    border-color: var(--white);
}

.product-params {
    display: flex;
    margin-bottom: 80px;
}

.product-params .product-thumbs,
.product-params .product-parameter {
    display: block;
    width: 50%;
}

.product-color-thumbs {
    position: sticky;
    top: 0;
}

.product-color-thumbs .swiper-slide {
    background-color: #efefef;
}

.scroll-product-gallery img {
    display: block;
    width: 100%;
}

.scroll-product-color .swiper-button-prev,
.scroll-product-color .swiper-button-next {
    opacity: 0.2;
}

.scroll-product-color:hover .swiper-button-prev,
.scroll-product-color:hover .swiper-button-next {
    opacity: 1;
}

.scroll-product-color .swiper-button-prev::after,
.scroll-product-color .swiper-button-next::after {
    font-size: 2rem;
    color: var(--dark-black);
}

.tab-colors {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.tab-colors .item-color {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 3px solid transparent;
    border-radius: 100%;
    z-index: 1;
    cursor: pointer;
}

.tab-colors .item-color:not(:last-child) {
    margin-right: 20px;
}

.tab-colors .item-color .inner-circle {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    z-index: 1;
}

.product-parameter {
    padding-left: 5rem;
}

.product-parameter .name {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-parameter .tag-desc {
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.product-parameter .tag-desc span:not(:last-child) {
    margin-bottom: 10px;
}

.product-parameter .parameter-table {
    color: var(--dark-black);
    border-top: 1px solid #d2d2d2;
}

.product-parameter .parameter-table .line {
    display: flex;
    flex-direction: column;
    border: 1px solid #d2d2d2;
    border-top: 0;
    padding: 10px 20px;
}

.product-parameter .parameter-table .line:nth-child(even) {
    background-color: #f7f6f6;
}

.product-detail .title {
    display: flex;
    align-items: flex-end;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.product-detail .title span {
    white-space: nowrap;
    margin-right: 20px;
}

.product-detail .title::after {
    content: "";
    display: block;
    width: 100%;
    border-top: 3px solid var(--yellow);
}

.product-detail .detail-wrapper img {
    display: block;
    max-width: 100%;
}

/* Service */
.service-title {
    font-size: 2.5rem;
    color: var(--dark-black);
    margin-bottom: 50px;
}

.grid-row-service {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 80px;
}

.grid-row-service .item {
    background-color: #eeeeee;
    color: var(--dark-black);
    text-align: center;
    padding: 8rem 20px;
}

.grid-row-service .item .title {
    font-size: 1.25rem;
    font-weight: bold;
    min-height: 3.75rem;
}

.grid-row-service .item .content {
    line-height: 1.5rem;
    margin-top: 2rem;
}

.grid-row-service .item:nth-child(even) {
    background-color: var(--yellow);
    color: var(--white);
}

.flex-row-service {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 80px;
}

.tab-title,
.tab-layer-content {
    width: 50%;
}

.tab-title li {
    font-size: 1.5rem;
    color: var(--dark-black);
    padding: 10px 50px;
    cursor: pointer;
}

.tab-title li:not(:last-child) {
    margin-bottom: 30px;
}

.tab-title li.active {
    background-color: var(--yellow);
    color: var(--white);
}

.tab-layer-content {
    position: relative;
}

.tab-layer-content img {
    display: block;
    width: 100%;
}

.tab-layer-content .tab-layer-ul {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    width: calc(100% - 160px);
}

.tab-layer-content .tab-layer-ul li {
    display: none;
    color: var(--white);
    padding: 50px;
}

.tab-layer-content .tab-layer-ul li.active {
    display: block;
    line-height: 1.5rem;
}

.grid-download-manuals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.grid-download-manuals .item-download {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #eeeeee 0 88%, #ffffff 88% 100%);
    padding: 50px 50px 0;
    transition: all 0.5s;
}

.grid-download-manuals .item-download:hover {
    transform: translateY(-10px);
}

.grid-download-manuals .item-download .name {
    display: block;
    width: 100%;
    color: var(--dark-black);
    border-left: 3px solid var(--yellow);
    padding: 2px 0 2px 10px;
    margin-bottom: 30px;
}

.grid-download-manuals .item-download .btn {
    display: block;
    width: 50%;
    background-color: var(--yellow);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
}

.grid-download-manuals .item-download:hover .btn {
    color: var(--dark-black);
}

/* Contact */
.contact-title {
    font-size: 2.5rem;
    color: var(--dark-black);
    text-align: center;
}

.contact-list-card {
    margin-bottom: 80px;
}

.contact-list-card .contact-title,
.contact-online-form .contact-title {
    margin-bottom: 50px;
}

.contact-list-card .grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.contact-list-card .grid-cards .item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s;
}

.contact-list-card .grid-cards .item-card:hover {
    transform: translateY(-20px);
}

.contact-list-card .grid-cards .item-card img {
    display: block;
    max-width: 40px;
    margin-bottom: 10px;
}

.contact-list-card .grid-cards .item-card .title {
    font-size: 1.2rem;
    color: #5d5d5d;
    margin-bottom: 10px;
}

.contact-list-card .grid-cards .item-card .content {
    text-align: center;
}

.grid-contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}

.grid-contact-form .item-bg-thumb img {
    display: block;
    width: 100%;
}

.grid-contact-form .item-contact-form form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-contact-form .item-contact-form .form-line {
    display: flex;
    flex-direction: column;
}

.grid-contact-form .item-contact-form .form-line:not(:last-child) {
    margin-bottom: 30px;
}

.grid-contact-form .item-contact-form .form-line .form-line-title {
    display: flex;
    align-items: center;
    color: #5d5d5d;
    margin-bottom: 10px;
}

.grid-contact-form .item-contact-form .form-line .form-line-title.require::after {
    content: '*';
    display: block;
    color: red;
    padding-top: 8px;
    padding-left: 5px;
}

.grid-contact-form .item-contact-form .form-line .form-line-input input,
.grid-contact-form .item-contact-form .form-line .form-line-input textarea {
    display: block;
    width: 100%;
    background-color: #e8e8e8;
    padding: 15px 30px;
    border-radius: 5px;
}

.grid-contact-form .item-contact-form .form-line button {
    display: inline-block;
    width: max-content;
    background-color: var(--yellow);
    color: var(--dark-black);
    text-transform: uppercase;
    padding: 15px 50px;
    border-radius: 5px;
    cursor: pointer;
}

/* About */
.about-paragh-wrapper {
    position: relative;
}

.about-paragh-wrapper .bg-yellow {
    position: absolute;
    left: 0;
    background: var(--yellow);
    display: flex;
    align-items: flex-end;
    width: 35%;
    height: 100%;
    padding: 20px;
    border-radius: 20px;
    z-index: 0;
}

.about-paragh-wrapper .bg-yellow img {
    display: block;
    max-width: 80px;
    transform: rotate(180deg);
    opacity: 0.3;
}

.about-paragh-wrapper .circle-thumb {
    position: absolute;
    left: 8rem;
    bottom: 50px;
    width: 350px;
    height: 350px;
    z-index: 3;
}

.about-paragh-wrapper .circle-thumb .dashed-circle {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px dashed #c4c4c4;
    border-radius: 50%;
}

.about-paragh-wrapper .circle-thumb .solid-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: var(--white);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
}

.about-paragh-wrapper .about-content {
    position: relative;
    z-index: 2;
}

.about-paragh-wrapper .about-content .topic-title {
    margin-bottom: 0;
}

.about-paragh-wrapper .about-content .topic-title .title {
    width: 55%;
    font-size: 2rem;
    margin-left: auto;
    padding: 30px 0;
}

.about-paragh-wrapper .about-content .about-content-container {
    width: 55%;
    line-height: 1.5rem;
    border-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-left-radius: 0;
    margin-left: auto;
}

.tab-advantages {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 80px;
    border-radius: 10px;
}

.tab-advantages .grid-tab-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.tab-advantages .grid-tab-content .tab-about-title {
    width: 25%;
}

.tab-advantages .grid-tab-content .tab-about-title li {
    font-size: 1.25rem;
    color: var(--white);
    white-space: nowrap;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

.tab-advantages .grid-tab-content .tab-about-title li.active,
.tab-advantages .grid-tab-content .tab-about-title li:hover {
    background-color: var(--yellow);
}

.tab-advantages .grid-tab-content .tab-about-title li:not(:last-child) {
    margin-bottom: 20px;
}

.tab-advantages .grid-tab-content .tab-about-content {
    width: 65%;
}

.tab-advantages .grid-tab-content .tab-about-content .item {
    display: none;
    line-height: 1.5rem;
}

.tab-advantages .grid-tab-content .tab-about-content .item.active {
    display: block;
}

.about-certificate-wrapper .container {
    background: var(--yellow) url(../images/certificate-bg.jpg) no-repeat left/70%;
    padding: 50px 50px 50px 30px;
}

.about-certificate-wrapper .topic-title {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 50px;
    padding-right: 90px;
}

.about-certificate-wrapper .topic-title .title {
    font-size: 2.5rem;
    color: var(--white);
}

.about-certificate-wrapper .certificate-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-certificate-wrapper .scroll-certificate-swiper {
    width: 70%;
    margin: 0;
}

.about-certificate-wrapper .scroll-certificate-swiper img {
    display: block;
    width: 100%;
}

.about-certificate-wrapper .scroll-certificate-swiper .swiper-slide {
    transform: scale(0.8);
}

.about-certificate-wrapper .scroll-certificate-swiper .swiper-slide-active,
.about-certificate-wrapper .scroll-certificate-swiper .swiper-slide-duplicate-active {
    transform: scale(1);
}

.about-certificate-wrapper .scroll-certificate-title {
    width: 25%;
    margin: 0;
}

.about-certificate-wrapper .scroll-certificate-title .swiper-slide {
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    font-size: 1.25rem;
    color: var(--white);
    text-align: center;
    padding: 20px 10px;
}

.about-certificate-wrapper .scroll-certificate-btns {
    display: flex;
    justify-content: flex-end;
}

.about-certificate-wrapper .scroll-certificate-btns .swiper-button-prev,
.about-certificate-wrapper .scroll-certificate-btns .swiper-button-next {
    position: initial;
    width: 35px;
    height: 35px;
    border: 2px solid var(--white);
    border-radius: 50%;
    margin-top: 0;
}

.about-certificate-wrapper .scroll-certificate-btns .swiper-button-prev {
    margin-right: 20px;
}

.about-certificate-wrapper .scroll-certificate-btns .swiper-button-prev::after,
.about-certificate-wrapper .scroll-certificate-btns .swiper-button-next::after {
    font-size: 1rem;
    color: var(--white);
}

.about-topic-title {
    position: relative;
    display: flex;
    font-size: 2.5rem;
    line-height: 2.5rem;
    text-transform: uppercase;
    padding-left: 20px;
    margin-bottom: 50px;
}

.about-topic-title::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 5px;
    height: 100%;
    border-left: 5px solid var(--yellow);
}

.about-topic-title::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% - 5px);
    width: 100%;
    border-top: 5px solid var(--yellow);
}

.scroll-factory-swiper .thumb {
    position: relative;
    overflow: hidden;
}

.scroll-factory-swiper .thumb img {
    display: block;
    width: 100% ;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.scroll-factory-swiper .thumb:hover img {
    transform: scale(1.08, 1.08);
}

.scroll-factory-swiper .thumb .thumb-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    text-align: center;
}

.scroll-factory-pagination {
    margin-top: 50px;
}

.scroll-factory-pagination .swiper-pagination {
    position: initial;
}

.scroll-factory-pagination .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--dark-black);
    width: 10px;
    height: 10px;
    opacity: 1;
}

.scroll-factory-pagination .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--yellow);
}

.partners-wrapper {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.partners-wrapper .partners-table {
    padding: 0 50px;
}

.partners-wrapper .partners-table .icon-logo-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--white);
    border-radius: 8px;
}

.partners-wrapper .partners-table .icon-logo-list .item {
    border-right: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 30px;
}

.partners-wrapper .partners-table .icon-logo-list .item img {
    display: block;
    width: 100%;
}

.layer-full-screen {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.layer-visible {
    visibility: visible;
    opacity: 1;
}

.search-form {
    width: 80%;
}

.search-form-close {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.search-form-close .close-btn {
    display: block;
    background: url(../images/icon-close.png) no-repeat center/30px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
}

.search-form form {
    display: flex;
    align-content: center;
}

.search-form input {
    width: 80%;
    padding: 20px 30px;
}

.search-form button[type="submit"] {
    display: block;
    background-color: var(--yellow);
    width: 20%;
    font-size: 1.25rem;
    color: var(--dark-black);
    cursor: pointer;
}

.layer-lang {
    position: fixed;
    top: 0;
    right: -100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*align-items: center;*/
    width: 0;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    transition: all 0.5s;
}

.layer-lang-visible {
    right: 0;
    width: 20%;
    padding: 0 3rem;
    visibility: visible;
    opacity: 1;
}

.layer-lang .layer-lang-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    background: url(../images/icon-close.png) no-repeat center/30px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
}

.layer-lang a {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
}

.layer-lang a:not(:last-child){
    margin-bottom: 20px ;
}

.layer-lang a img {
    display: block;
    max-width: 30px;
    margin-right: 10px;
}