body {
	margin: 0;
}

/* Tilda Replacement Styles */
            .tilda-replacement {
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            }

            .header-section {
                text-align: center;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 60px 40px;
                border-radius: 20px;
                margin-bottom: 60px;
            }

            .header-section h1 {
                font-size: 2.5rem;
                margin-bottom: 15px;
                font-weight: 600;
            }

            .header-section p {
                font-size: 1.2rem;
                opacity: 0.9;
            }

            .articles-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 20px;
            }

            .articles-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
                font-family: "Unbounded", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            .article-card {
/*                background: white;*/
                border-radius: 30px;
                padding: 30px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                cursor: pointer;
                transition: all 0.3s ease;
                border: 1px solid #f0f0f0;
                font-family: "Unbounded", Roboto, "Helvetica Neue", Arial, sans-serif !important;
				background-color: rgba(255, 255, 255, 0.8) !important;
				backdrop-filter: blur(8px);
            }

			

            .article-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            }

            .article-title {
                font-size: 1.25rem !important;
                font-weight: 600 !important;
                color: #333 !important;
                line-height: 1.4 !important;
                margin-bottom: 15px !important;
                font-family: "Unbounded", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            .article-description {
                color: #666;
                font-size: 0.95rem;
                line-height: 1.5;
                margin-bottom: 20px;
                font-family: "Unbounded", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            .article-date {
                color: #999 !important;
                font-size: 10px;
                font-weight: 500 !important;
                font-family: "Unbounded", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            /* Скрываем js-feed-error-msg */
            .js-feed-error-msg,
            [class*="js-feed-error"],
            [class*="feed-error"],
            .t-feed__error {
                display: none !important;
                visibility: hidden !important;
            }

            /* Модальное окно */
            .modal-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.7);
                backdrop-filter: blur(5px);
                z-index: 99999;
                display: none;
                align-items: center;
                justify-content: center;
                padding: 20px;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .modal-overlay.active {
                display: flex;
                opacity: 1;
            }

            .modal-content {
                background: white;
                border-radius: 20px;
                max-width: 800px;
                width: 100%;
                max-height: 90vh;
                overflow: hidden;
                position: relative;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
                transform: scale(0.9);
                transition: transform 0.3s ease;
            }

            .modal-overlay.active .modal-content {
                transform: scale(1);
            }

            .modal-header {
                padding: 40px 40px 30px;
                border-bottom: 1px solid #eee;
                position: relative;
            }

            .modal-title {
                font-size: 1.8rem !important;
                font-weight: 600 !important;
                color: #333 !important;
                line-height: 1.3 !important;
                padding-right: 50px !important;
                margin: 0 !important;
                font-family: "Unbounded", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            .modal-close {
                position: absolute;
                top: 20px;
                right: 20px;
                background: #f8f9fa;
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                cursor: pointer;
                font-size: 18px;
                color: #666;
                transition: all 0.2s ease;
				padding: 0;
            }

            .modal-close:hover {
                background: #e9ecef;
                color: #333;
            }

            .modal-date {
                color: #666 !important;
                font-size: 10px;
                margin-top: 15px !important;
                font-weight: 500 !important;
				font-family: "Unbounded", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            .modal-body {
                padding: 30px 40px 40px;
                overflow-y: auto;
                max-height: 60vh;
                font-size: 1rem !important;
                line-height: 1.7 !important;
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            .modal-body p {
                margin-bottom: 20px;
                color: #444 !important;
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            .modal-body ul {
                margin: 20px 0;
                padding-left: 25px;
            }

            .modal-body li {
                margin-bottom: 10px;
                color: #555 !important;
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            .modal-body strong {
                font-weight: 600 !important;
                color: #333 !important;
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            }

            @media (max-width: 768px) {
                .header-section h1 {
                    font-size: 2rem;
                }
                .articles-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                .article-card {
                    padding: 25px;
                }
                .modal-header,
                .modal-body {
                    padding: 25px 30px;
                }
                .modal-title {
                    font-size: 1.5rem;
                    padding-right: 40px;
                }
            }

 #rec826910155 .t396__artboard {
                        height: 80px;
                    }
                    #rec826910155 .t396__filter {
                        height: 80px;
                    }
                    #rec826910155 .t396__carrier {
                        height: 80px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .t396__artboard,
                        #rec826910155 .t396__filter,
                        #rec826910155 .t396__carrier {
                        }
                        #rec826910155 .t396__filter {
                        }
                        #rec826910155 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec826910155 .t396__artboard,
                        #rec826910155 .t396__filter,
                        #rec826910155 .t396__carrier {
                        }
                        #rec826910155 .t396__filter {
                        }
                        #rec826910155 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec826910155 .t396__artboard,
                        #rec826910155 .t396__filter,
                        #rec826910155 .t396__carrier {
                        }
                        #rec826910155 .t396__filter {
                        }
                        #rec826910155 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910155 .t396__artboard,
                        #rec826910155 .t396__filter,
                        #rec826910155 .t396__carrier {
                        }
                        #rec826910155 .t396__filter {
                        }
                        #rec826910155 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
#rec826910155 {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}
                    #rec826910155 .tn-elem[data-elem-id="1732285898101"] {
                        z-index: 3;
                        top: 0px;
                        left: 0px;
                        width: 100%;
                        height: 100%;
                        -webkit-backdrop-filter: blur(8px);
                        backdrop-filter: blur(8px);
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732285898101"] .tn-atom {
                        opacity: 0.9;
                        background-color: #ffffff;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732285898101"] {
                            left: 0px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec826910155 .tn-elem[data-elem-id="1732285898101"] {
                            left: 0px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910155 .tn-elem[data-elem-id="1732285898101"] {
                            left: 0px;
                        }
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286091606"] {
                        z-index: 5;
                        top: 10px;
                        left: calc(50% - 600px + 20px);
                        width: 60px;
                        height: auto;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286091606"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286091606"] .tn-atom__img {
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732286091606"] {
                            top: 10px;
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910155 .tn-elem[data-elem-id="1732286091606"] {
                            top: 10px;
                            left: calc(50% - 160px + 10px);
                            height: auto;
                        }
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286112705"] {
                        color: #005051;
                        z-index: 6;
                        top: 25px;
                        left: calc(50% - 600px + 98px);
                        width: 142px;
                        height: auto;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286112705"] .tn-atom {
                        color: #005051;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732286112705"] {
                            top: 25px;
                            left: calc(50% - 480px + 88px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910155 .tn-elem[data-elem-id="1732286112705"] {
                            top: 25px;
                            left: calc(50% - 160px + 88px);
                            height: auto;
                        }
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732287464249"] {
                        color: #ffffff;
                        text-align: center;
                        z-index: 7;
                        top: 13px;
                        left: calc(50% - 600px + 1020px);
                        width: 160px;
                        height: 55px;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732287464249"] .tn-atom {
                        color: #ffffff;
                        font-size: 14px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732287464249"] .tn-atom::before,
                    #rec826910155 .tn-elem[data-elem-id="1732287464249"] .tn-atom::after {
                        content: "";
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        left: 0;
                        top: 0;
                        box-sizing: content-box;
                        pointer-events: none;
                        border-radius: 20px;
                        transition: opacity 0.2s ease-in-out;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732287464249"] .tn-atom::before {
                        z-index: -2;
                        opacity: 1;
                        background-color: transparent;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732287464249"] .tn-atom::after {
                        z-index: -1;
                        opacity: 0;
                        background-color: transparent;
                        background-image: linear-gradient(0.252turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732287464249"] .tn-atom {
                        position: relative;
                        z-index: 1;
                        background-color: transparent;
                        background-image: none;
                        border: none;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        height: 100%;
                        height: inherit;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec826910155 .tn-elem[data-elem-id="1732287464249"] .tn-atom:hover::after {
                            opacity: 1;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732287464249"] {
                            top: -147px;
                            left: calc(50% - 480px + 1010px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec826910155 .tn-group[data-group-id="173228676029616430"] {
                        z-index: 8;
                        position: absolute;
                        top: 0px;
                        left: calc(50% - 600px + 310px);
                        width: 477px;
                        height: 80px;
                        margin: 0 0 0 0;
                    }
                    #rec826910155 .tn-group[data-group-id="173228676029616430"] #molecule-173228676029616430 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 30px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-group[data-group-id="173228676029616430"] {
                            top: -150px;
                            left: calc(50% - 480px + 300px);
                            width: 477px;
                            height: 80px;
                        }
                        #rec826910155 .tn-group[data-group-id="173228676029616430"] #molecule-173228676029616430 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec826910155 .tn-group[data-group-id="173228676029616430"] {
                            width: 477px;
                            height: 80px;
                        }
                        #rec826910155 .tn-group[data-group-id="173228676029616430"] #molecule-173228676029616430 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec826910155 .tn-group[data-group-id="173228676029616430"] {
                            width: 477px;
                            height: 80px;
                        }
                        #rec826910155 .tn-group[data-group-id="173228676029616430"] #molecule-173228676029616430 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910155 .tn-group[data-group-id="173228676029616430"] {
                            width: 477px;
                            height: 80px;
                        }
                        #rec826910155 .tn-group[data-group-id="173228676029616430"] #molecule-173228676029616430 {
                            display: flex;
                        }
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286770672"] {
                        color: #005051;
                        text-align: center;
                        z-index: 9;
                        top: 0px;
                        left: 443px;
                        width: 11px;
                        flex-shrink: 0;
                        height: 80px;
                        margin: 0 0 0 0;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286770672"] .tn-atom {
                        color: #005051;
                        font-size: 14px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 30px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec826910155 .tn-elem[data-elem-id="1732286770672"] .tn-atom:hover {
                        }
                        #rec826910155 .tn-elem[data-elem-id="1732286770672"] .tn-atom:hover {
                            color: #008486;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732286770672"] {
                            top: 0px;
                            left: 443px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286715473"] {
                        color: #005051;
                        text-align: center;
                        z-index: 10;
                        top: 0px;
                        left: 318px;
                        width: 64px;
                        flex-shrink: 0;
                        height: 80px;
                        margin: 0 0 0 0;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286715473"] .tn-atom {
                        color: #005051;
                        font-size: 14px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 30px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec826910155 .tn-elem[data-elem-id="1732286715473"] .tn-atom:hover {
                        }
                        #rec826910155 .tn-elem[data-elem-id="1732286715473"] .tn-atom:hover {
                            color: #008486;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732286715473"] {
                            top: 0px;
                            left: 318px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286604277"] {
                        color: #005051;
                        text-align: center;
                        z-index: 11;
                        top: 0px;
                        left: 187px;
                        width: 11px;
                        flex-shrink: 0;
                        height: 80px;
                        margin: 0 0 0 0;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286604277"] .tn-atom {
                        color: #005051;
                        font-size: 14px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 30px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec826910155 .tn-elem[data-elem-id="1732286604277"] .tn-atom:hover {
                        }
                        #rec826910155 .tn-elem[data-elem-id="1732286604277"] .tn-atom:hover {
                            color: #008486;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732286604277"] {
                            top: 0px;
                            left: 187px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286785023"] {
                        color: #005051;
                        text-align: center;
                        z-index: 12;
                        top: 0px;
                        left: 0px;
                        width: 157px;
                        flex-shrink: 0;
                        height: 80px;
                        margin: 0 0 0 0;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732286785023"] .tn-atom {
                        color: #005051;
                        font-size: 14px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 30px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec826910155 .tn-elem[data-elem-id="1732286785023"] .tn-atom:hover {
                        }
                        #rec826910155 .tn-elem[data-elem-id="1732286785023"] .tn-atom:hover {
                            color: #008486;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732286785023"] {
                            top: 0px;
                            left: 0px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732291334519"] {
                        z-index: 13;
                        top: 25px;
                        left: calc(50% - 600px + 843px);
                        width: 30px;
                        height: auto;
                    }
                    @media (min-width: 1200px) {
                        #rec826910155 .tn-elem.t396__elem--anim-hidden[data-elem-id="1732291334519"] {
                            opacity: 0;
                        }
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732291334519"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732291334519"] .tn-atom__img {
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732291334519"] {
                            top: -135px;
                            left: calc(50% - 480px + 833px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732291382979"] {
                        z-index: 14;
                        top: 24px;
                        left: calc(50% - 600px + 889px);
                        width: 32px;
                        height: auto;
                    }
                    @media (min-width: 1200px) {
                        #rec826910155 .tn-elem.t396__elem--anim-hidden[data-elem-id="1732291382979"] {
                            opacity: 0;
                        }
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732291382979"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732291382979"] .tn-atom__img {
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732291382979"] {
                            top: -136px;
                            left: calc(50% - 480px + 879px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732291442110"] {
                        z-index: 15;
                        top: 25px;
                        left: calc(50% - 600px + 937px);
                        width: 30px;
                        height: auto;
                    }
                    @media (min-width: 1200px) {
                        #rec826910155 .tn-elem.t396__elem--anim-hidden[data-elem-id="1732291442110"] {
                            opacity: 0;
                        }
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732291442110"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec826910155 .tn-elem[data-elem-id="1732291442110"] .tn-atom__img {
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910155 .tn-elem[data-elem-id="1732291442110"] {
                            top: -135px;
                            left: calc(50% - 480px + 927px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }

.t-menuburger {
                                position: relative;
                                flex-shrink: 0;
                                width: 28px;
                                height: 20px;
                                padding: 0;
                                border: none;
                                background-color: transparent;
                                outline: none;
                                -webkit-transform: rotate(0deg);
                                transform: rotate(0deg);
                                transition: transform 0.5s ease-in-out;
                                cursor: pointer;
                                z-index: 999;
                            }
                            .t-menuburger span {
                                display: block;
                                position: absolute;
                                width: 100%;
                                opacity: 1;
                                left: 0;
                                -webkit-transform: rotate(0deg);
                                transform: rotate(0deg);
                                transition: 0.25s ease-in-out;
                                height: 3px;
                                background-color: #000;
                            }
                            .t-menuburger span:nth-child(1) {
                                top: 0px;
                            }
                            .t-menuburger span:nth-child(2),
                            .t-menuburger span:nth-child(3) {
                                top: 8px;
                            }
                            .t-menuburger span:nth-child(4) {
                                top: 16px;
                            }
                            .t-menuburger__big {
                                width: 42px;
                                height: 32px;
                            }
                            .t-menuburger__big span {
                                height: 5px;
                            }
                            .t-menuburger__big span:nth-child(2),
                            .t-menuburger__big span:nth-child(3) {
                                top: 13px;
                            }
                            .t-menuburger__big span:nth-child(4) {
                                top: 26px;
                            }
                            .t-menuburger__small {
                                width: 22px;
                                height: 14px;
                            }
                            .t-menuburger__small span {
                                height: 2px;
                            }
                            .t-menuburger__small span:nth-child(2),
                            .t-menuburger__small span:nth-child(3) {
                                top: 6px;
                            }
                            .t-menuburger__small span:nth-child(4) {
                                top: 12px;
                            }
                            .t-menuburger-opened span:nth-child(1) {
                                top: 8px;
                                width: 0%;
                                left: 50%;
                            }
                            .t-menuburger-opened span:nth-child(2) {
                                -webkit-transform: rotate(45deg);
                                transform: rotate(45deg);
                            }
                            .t-menuburger-opened span:nth-child(3) {
                                -webkit-transform: rotate(-45deg);
                                transform: rotate(-45deg);
                            }
                            .t-menuburger-opened span:nth-child(4) {
                                top: 8px;
                                width: 0%;
                                left: 50%;
                            }
                            .t-menuburger-opened.t-menuburger__big span:nth-child(1) {
                                top: 6px;
                            }
                            .t-menuburger-opened.t-menuburger__big span:nth-child(4) {
                                top: 18px;
                            }
                            .t-menuburger-opened.t-menuburger__small span:nth-child(1),
                            .t-menuburger-opened.t-menuburger__small span:nth-child(4) {
                                top: 6px;
                            }
                            @media (hover), (min-width: 0\0) {
                                .t-menuburger_first:hover span:nth-child(1) {
                                    transform: translateY(1px);
                                }
                                .t-menuburger_first:hover span:nth-child(4) {
                                    transform: translateY(-1px);
                                }
                                .t-menuburger_first.t-menuburger__big:hover span:nth-child(1) {
                                    transform: translateY(3px);
                                }
                                .t-menuburger_first.t-menuburger__big:hover span:nth-child(4) {
                                    transform: translateY(-3px);
                                }
                            }
                            .t-menuburger_second span:nth-child(2),
                            .t-menuburger_second span:nth-child(3) {
                                width: 80%;
                                left: 20%;
                                right: 0;
                            }
                            @media (hover), (min-width: 0\0) {
                                .t-menuburger_second.t-menuburger-hovered span:nth-child(2),
                                .t-menuburger_second.t-menuburger-hovered span:nth-child(3) {
                                    animation: t-menuburger-anim 0.3s ease-out normal forwards;
                                }
                                .t-menuburger_second.t-menuburger-unhovered span:nth-child(2),
                                .t-menuburger_second.t-menuburger-unhovered span:nth-child(3) {
                                    animation: t-menuburger-anim2 0.3s ease-out normal forwards;
                                }
                            }
                            .t-menuburger_second.t-menuburger-opened span:nth-child(2),
                            .t-menuburger_second.t-menuburger-opened span:nth-child(3) {
                                left: 0;
                                right: 0;
                                width: 100% !important;
                            }
                            .t-menuburger_third span:nth-child(4) {
                                width: 70%;
                                left: unset;
                                right: 0;
                            }
                            @media (hover), (min-width: 0\0) {
                                .t-menuburger_third:not(.t-menuburger-opened):hover span:nth-child(4) {
                                    width: 100%;
                                }
                            }
                            .t-menuburger_third.t-menuburger-opened span:nth-child(4) {
                                width: 0 !important;
                                right: 50%;
                            }
                            .t-menuburger_fourth {
                                height: 12px;
                            }
                            .t-menuburger_fourth.t-menuburger__small {
                                height: 8px;
                            }
                            .t-menuburger_fourth.t-menuburger__big {
                                height: 18px;
                            }
                            .t-menuburger_fourth span:nth-child(2),
                            .t-menuburger_fourth span:nth-child(3) {
                                top: 4px;
                                opacity: 0;
                            }
                            .t-menuburger_fourth span:nth-child(4) {
                                top: 8px;
                            }
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(2),
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(3) {
                                top: 3px;
                            }
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(4) {
                                top: 6px;
                            }
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(2),
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(3) {
                                top: 3px;
                            }
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(4) {
                                top: 6px;
                            }
                            .t-menuburger_fourth.t-menuburger__big span:nth-child(2),
                            .t-menuburger_fourth.t-menuburger__big span:nth-child(3) {
                                top: 6px;
                            }
                            .t-menuburger_fourth.t-menuburger__big span:nth-child(4) {
                                top: 12px;
                            }
                            @media (hover), (min-width: 0\0) {
                                .t-menuburger_fourth:not(.t-menuburger-opened):hover span:nth-child(1) {
                                    transform: translateY(1px);
                                }
                                .t-menuburger_fourth:not(.t-menuburger-opened):hover span:nth-child(4) {
                                    transform: translateY(-1px);
                                }
                                .t-menuburger_fourth.t-menuburger__big:not(.t-menuburger-opened):hover span:nth-child(1) {
                                    transform: translateY(3px);
                                }
                                .t-menuburger_fourth.t-menuburger__big:not(.t-menuburger-opened):hover span:nth-child(4) {
                                    transform: translateY(-3px);
                                }
                            }
                            .t-menuburger_fourth.t-menuburger-opened span:nth-child(1),
                            .t-menuburger_fourth.t-menuburger-opened span:nth-child(4) {
                                top: 4px;
                            }
                            .t-menuburger_fourth.t-menuburger-opened span:nth-child(2),
                            .t-menuburger_fourth.t-menuburger-opened span:nth-child(3) {
                                opacity: 1;
                            }
                            @keyframes t-menuburger-anim {
                                0% {
                                    width: 80%;
                                    left: 20%;
                                    right: 0;
                                }
                                50% {
                                    width: 100%;
                                    left: 0;
                                    right: 0;
                                }
                                100% {
                                    width: 80%;
                                    left: 0;
                                    right: 20%;
                                }
                            }
                            @keyframes t-menuburger-anim2 {
                                0% {
                                    width: 80%;
                                    left: 0;
                                }
                                50% {
                                    width: 100%;
                                    right: 0;
                                    left: 0;
                                }
                                100% {
                                    width: 80%;
                                    left: 20%;
                                    right: 0;
                                }
                            }

#rec835161666 .t-menu__link-item {
                    }
                    @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
                        #rec835161666 .t-menu__link-item,
                        #rec835161666 .t-menu__link-item.t-active {
                            opacity: 1 !important;
                        }
                    }

#rec835161666 a.t-menu__link-item {
                        font-size: 20px;
                        color: #005051;
                    }

#rec829845049 .t396__artboard {
                        min-height: 550px;
                        height: 100vh;
                    }
                    #rec829845049 .t396__filter {
                        min-height: 550px;
                        height: 100vh;
                    }
                    #rec829845049 .t396__carrier {
                        min-height: 550px;
                        height: 100vh;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829845049 .t396__artboard,
                        #rec829845049 .t396__filter,
                        #rec829845049 .t396__carrier {
                        }
                        #rec829845049 .t396__filter {
                        }
                        #rec829845049 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829845049 .t396__artboard,
                        #rec829845049 .t396__filter,
                        #rec829845049 .t396__carrier {
                        }
                        #rec829845049 .t396__filter {
                        }
                        #rec829845049 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829845049 .t396__artboard,
                        #rec829845049 .t396__filter,
                        #rec829845049 .t396__carrier {
                        }
                        #rec829845049 .t396__filter {
                        }
                        #rec829845049 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829845049 .t396__artboard,
                        #rec829845049 .t396__filter,
                        #rec829845049 .t396__carrier {
                        }
                        #rec829845049 .t396__filter {
                        }
                        #rec829845049 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec829845049 .tn-elem[data-elem-id="1732285690437"] {
                        z-index: 3;
                        top: 0px;
                        left: 0px;
                        width: 100%;
                        height: 100%;
                    }
                    #rec829845049 .tn-elem[data-elem-id="1732285690437"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }

/* Укажи id блока, который нужно зафиксировать */
                                #rec829845049 {
                                    position: fixed;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    z-index: -1;
                                }

#rec826910329 .t396__artboard {
                        height: 750px;
                    }
                    #rec826910329 .t396__filter {
                        height: 750px;
                    }
                    #rec826910329 .t396__carrier {
                        height: 750px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .t396__artboard,
                        #rec826910329 .t396__filter,
                        #rec826910329 .t396__carrier {
                        }
                        #rec826910329 .t396__filter {
                        }
                        #rec826910329 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec826910329 .t396__artboard,
                        #rec826910329 .t396__filter,
                        #rec826910329 .t396__carrier {
                        }
                        #rec826910329 .t396__filter {
                        }
                        #rec826910329 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec826910329 .t396__artboard,
                        #rec826910329 .t396__filter,
                        #rec826910329 .t396__carrier {
                        }
                        #rec826910329 .t396__filter {
                        }
                        #rec826910329 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .t396__artboard,
                        #rec826910329 .t396__filter,
                        #rec826910329 .t396__carrier {
                            height: 980px;
                        }
                        #rec826910329 .t396__filter {
                        }
                        #rec826910329 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec826910329 .tn-group[data-group-id="173229077420225440"] {
                        z-index: 3;
                        position: absolute;
                        top: 395px;
                        left: calc(50% - 600px + 367px);
                        width: 320px;
                        height: 40px;
                        margin: 0 0 0 0;
                    }
                    #rec826910329 .tn-group[data-group-id="173229077420225440"] #molecule-173229077420225440 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-group[data-group-id="173229077420225440"] {
                            left: calc(50% - 480px + 357px);
                        }
                        #rec826910329 .tn-group[data-group-id="173229077420225440"] #molecule-173229077420225440 {
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec826910329 .tn-group[data-group-id="173229077420225440"] #molecule-173229077420225440 {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec826910329 .tn-group[data-group-id="173229077420225440"] #molecule-173229077420225440 {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-group[data-group-id="173229077420225440"] {
                            top: 840px;
                            left: calc(50% - 160px + 10px);
                            width: 320px;
                            height: 40px;
                        }
                        #rec826910329 .tn-group[data-group-id="173229077420225440"] #molecule-173229077420225440 {
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732284727413"] {
                        color: #ffffff;
                        z-index: 4;
                        top: 6px;
                        left: 60px;
                        width: 260px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732284727413"] .tn-atom {
                        color: #ffffff;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732284727413"] {
                            left: 60px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732284727413"] {
                            top: 6px;
                            left: 60px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289099921"] {
                        z-index: 5;
                        top: 0px;
                        left: 0px;
                        width: 40px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289099921"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289099921"] .tn-atom__img {
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289099921"] {
                            left: 0px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289099921"] {
                            top: 0px;
                            left: 0px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732285047677"] {
                        z-index: 7;
                        top: -42px;
                        left: calc(50% - 600px + 538px);
                        width: 879px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732285047677"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732285047677"] .tn-atom__img {
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732285047677"] {
                            left: calc(50% - 480px + 528px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732285047677"] {
                            top: 151px;
                            left: calc(50% - 160px + -29px);
                            width: 400px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732287266511"] {
                        color: #ffffff;
                        z-index: 8;
                        top: 150px;
                        left: calc(50% - 600px + 20px);
                        width: 874px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732287266511"] .tn-atom {
                        color: #ffffff;
                        font-size: 117px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732287266511"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732287266511"] {
                            top: 110px;
                            width: 310px;
                            height: auto;
                        }
                        #rec826910329 .tn-elem[data-elem-id="1732287266511"] .tn-atom {
                            font-size: 44px;
                            background-size: cover;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288582374"] {
                        color: #ffffff;
                        text-align: center;
                        z-index: 9;
                        top: 601px;
                        left: calc(50% - 600px + 20px);
                        width: 360px;
                        height: 69px;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288582374"] .tn-atom {
                        color: #ffffff;
                        font-size: 18px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288582374"] .tn-atom::before,
                    #rec826910329 .tn-elem[data-elem-id="1732288582374"] .tn-atom::after {
                        content: "";
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        left: 0;
                        top: 0;
                        box-sizing: content-box;
                        pointer-events: none;
                        border-radius: 20px;
                        transition: opacity 0.2s ease-in-out;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288582374"] .tn-atom::before {
                        z-index: -2;
                        opacity: 1;
                        background-color: transparent;
                        background-image: linear-gradient(0turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288582374"] .tn-atom::after {
                        z-index: -1;
                        opacity: 0;
                        background-color: transparent;
                        background-image: linear-gradient(0.258turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288582374"] .tn-atom {
                        position: relative;
                        z-index: 1;
                        background-color: transparent;
                        background-image: none;
                        border: none;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        height: 100%;
                        height: inherit;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec826910329 .tn-elem[data-elem-id="1732288582374"] .tn-atom:hover::after {
                            opacity: 1;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288582374"] {
                            left: calc(50% - 480px + 10px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288582374"] {
                            top: 631px;
                            width: 300px;
                        }
                        #rec826910329 .tn-elem[data-elem-id="1732288582374"] .tn-atom {
                            font-size: 17px;
                            background-size: cover;
                        }
                    }
                    #rec826910329 .tn-group[data-group-id="173229077028118600"] {
                        z-index: 10;
                        position: absolute;
                        top: 395px;
                        left: calc(50% - 600px + 20px);
                        width: 307px;
                        height: 40px;
                        margin: 0 0 0 0;
                    }
                    #rec826910329 .tn-group[data-group-id="173229077028118600"] #molecule-173229077028118600 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-group[data-group-id="173229077028118600"] {
                            left: calc(50% - 480px + 10px);
                        }
                        #rec826910329 .tn-group[data-group-id="173229077028118600"] #molecule-173229077028118600 {
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec826910329 .tn-group[data-group-id="173229077028118600"] #molecule-173229077028118600 {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec826910329 .tn-group[data-group-id="173229077028118600"] #molecule-173229077028118600 {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-group[data-group-id="173229077028118600"] {
                            top: 740px;
                            left: calc(50% - 160px + 10px);
                            width: 307px;
                            height: 40px;
                        }
                        #rec826910329 .tn-group[data-group-id="173229077028118600"] #molecule-173229077028118600 {
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288925032"] {
                        color: #ffffff;
                        z-index: 11;
                        top: 6px;
                        left: 60px;
                        width: 247px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288925032"] .tn-atom {
                        color: #ffffff;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288925032"] {
                            left: 60px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288925032"] {
                            top: 6px;
                            left: 60px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289138087"] {
                        z-index: 12;
                        top: 0px;
                        left: 0px;
                        width: 40px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289138087"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289138087"] .tn-atom__img {
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289138087"] {
                            left: 0px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289138087"] {
                            top: 0px;
                            left: 0px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-group[data-group-id="173229077207986490"] {
                        z-index: 13;
                        position: absolute;
                        top: 455px;
                        left: calc(50% - 600px + 20px);
                        width: 302px;
                        height: 40px;
                        margin: 0 0 0 0;
                    }
                    #rec826910329 .tn-group[data-group-id="173229077207986490"] #molecule-173229077207986490 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-group[data-group-id="173229077207986490"] {
                            left: calc(50% - 480px + 10px);
                        }
                        #rec826910329 .tn-group[data-group-id="173229077207986490"] #molecule-173229077207986490 {
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec826910329 .tn-group[data-group-id="173229077207986490"] #molecule-173229077207986490 {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec826910329 .tn-group[data-group-id="173229077207986490"] #molecule-173229077207986490 {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-group[data-group-id="173229077207986490"] {
                            top: 790px;
                            left: calc(50% - 160px + 10px);
                            width: 302px;
                            height: 40px;
                        }
                        #rec826910329 .tn-group[data-group-id="173229077207986490"] #molecule-173229077207986490 {
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288934993"] {
                        color: #ffffff;
                        z-index: 14;
                        top: 6px;
                        left: 60px;
                        width: 242px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288934993"] .tn-atom {
                        color: #ffffff;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288934993"] {
                            left: 60px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288934993"] {
                            top: 6px;
                            left: 60px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289138076"] {
                        z-index: 15;
                        top: 0px;
                        left: 0px;
                        width: 40px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289138076"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289138076"] .tn-atom__img {
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289138076"] {
                            left: 0px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289138076"] {
                            top: 0px;
                            left: 0px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-group[data-group-id="173229077595739460"] {
                        z-index: 16;
                        position: absolute;
                        top: 455px;
                        left: calc(50% - 600px + 367px);
                        width: 320px;
                        height: 40px;
                        margin: 0 0 0 0;
                    }
                    #rec826910329 .tn-group[data-group-id="173229077595739460"] #molecule-173229077595739460 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-group[data-group-id="173229077595739460"] {
                            left: calc(50% - 480px + 357px);
                        }
                        #rec826910329 .tn-group[data-group-id="173229077595739460"] #molecule-173229077595739460 {
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec826910329 .tn-group[data-group-id="173229077595739460"] #molecule-173229077595739460 {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec826910329 .tn-group[data-group-id="173229077595739460"] #molecule-173229077595739460 {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-group[data-group-id="173229077595739460"] {
                            top: 890px;
                            left: calc(50% - 160px + 10px);
                            width: 320px;
                            height: 40px;
                        }
                        #rec826910329 .tn-group[data-group-id="173229077595739460"] #molecule-173229077595739460 {
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288945898"] {
                        color: #ffffff;
                        z-index: 17;
                        top: 6px;
                        left: 60px;
                        width: 260px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288945898"] .tn-atom {
                        color: #ffffff;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288945898"] {
                            left: 60px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288945898"] {
                            top: 6px;
                            left: 60px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289068335"] {
                        z-index: 18;
                        top: 0px;
                        left: 0px;
                        width: 40px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289068335"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289068335"] .tn-atom__img {
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289068335"] {
                            left: 0px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289068335"] {
                            top: 0px;
                            left: 0px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288905338"] {
                        color: #005051;
                        z-index: 19;
                        top: 313px;
                        left: calc(50% - 600px + 20px);
                        width: 560px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732288905338"] .tn-atom {
                        color: #005051;
                        font-size: 25px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288905338"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732288905338"] {
                            top: 178px;
                            width: 300px;
                            height: auto;
                        }
                        #rec826910329 .tn-elem[data-elem-id="1732288905338"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289226865"] {
                        z-index: 21;
                        top: 535px;
                        left: calc(50% - 600px + 511px);
                        width: 387px;
                        height: 135px;
                        -webkit-backdrop-filter: blur(8px);
                        backdrop-filter: blur(8px);
                        border-radius: 20px;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289226865"] .tn-atom {
                        border-radius: 20px;
                        opacity: 0.9;
                        background-color: #ffffff;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289226865"] {
                            left: calc(50% - 480px + 501px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289226865"] {
                            top: 497px;
                            left: calc(50% - 160px + -10px);
                            width: 340px;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289277302"] {
                        color: #005051;
                        z-index: 22;
                        top: 565px;
                        left: calc(50% - 600px + 541px);
                        width: 311px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289277302"] .tn-atom {
                        color: #005051;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289277302"] {
                            left: calc(50% - 480px + 531px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289277302"] {
                            top: 527px;
                            left: calc(50% - 160px + 20px);
                            width: 280px;
                            height: auto;
                        }
                        #rec826910329 .tn-elem[data-elem-id="1732289277302"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289337055"] {
                        color: #008486;
                        z-index: 23;
                        top: 603px;
                        left: calc(50% - 600px + 540px);
                        width: 358px;
                        height: auto;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1732289337055"] .tn-atom {
                        color: #008486;
                        font-size: 17px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289337055"] {
                            left: calc(50% - 480px + 530px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1732289337055"] {
                            top: 565px;
                            left: calc(50% - 160px + 20px);
                            width: 280px;
                            height: auto;
                        }
                    }
                    #rec826910329 .tn-elem[data-elem-id="1733269019771"] {
                        z-index: 24;
                        top: 670px;
                        left: calc(50% - 600px + 320px);
                        width: 560px;
                        height: 80px;
                    }
                    #rec826910329 .tn-elem[data-elem-id="1733269019771"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec826910329 .tn-elem[data-elem-id="1733269019771"] {
                            left: calc(50% - 480px + 310px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec826910329 .tn-elem[data-elem-id="1733269019771"] {
                            top: 900px;
                            left: calc(50% - 160px + -83px);
                        }
                    }

#rec829867228 .t396__artboard {
                        height: 690px;
                    }
                    #rec829867228 .t396__filter {
                        height: 690px;
                    }
                    #rec829867228 .t396__carrier {
                        height: 690px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829867228 .t396__artboard,
                        #rec829867228 .t396__filter,
                        #rec829867228 .t396__carrier {
                        }
                        #rec829867228 .t396__filter {
                        }
                        #rec829867228 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829867228 .t396__artboard,
                        #rec829867228 .t396__filter,
                        #rec829867228 .t396__carrier {
                        }
                        #rec829867228 .t396__filter {
                        }
                        #rec829867228 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829867228 .t396__artboard,
                        #rec829867228 .t396__filter,
                        #rec829867228 .t396__carrier {
                        }
                        #rec829867228 .t396__filter {
                        }
                        #rec829867228 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829867228 .t396__artboard,
                        #rec829867228 .t396__filter,
                        #rec829867228 .t396__carrier {
                            height: 1450px;
                        }
                        #rec829867228 .t396__filter {
                        }
                        #rec829867228 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec829867228 .tn-elem[data-elem-id="1732288290214"] {
                        z-index: 3;
                        top: 0px;
                        left: calc(50% - 600px + -100px);
                        width: 1400px;
                        height: 690px;
                        -webkit-backdrop-filter: blur(8px);
                        backdrop-filter: blur(8px);
                        border-radius: 50px;
                    }
                    #rec829867228 .tn-elem[data-elem-id="1732288290214"] .tn-atom {
                        border-radius: 50px;
                        opacity: 0.8;
                        background-color: #ffffff;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec829867228 .tn-elem[data-elem-id="1732288290214"] {
                            left: calc(50% - 160px + -540px);
                            height: 1450px;
                        }
                    }
                    #rec829867228 .tn-elem[data-elem-id="1732805490591"] {
                        z-index: 4;
                        top: 70px;
                        left: calc(50% - 600px + 20px);
                        width: 360px;
                        height: 550px;
                    }
                    #rec829867228 .tn-elem[data-elem-id="1732805490591"] .tn-atom {
                        border-radius: 20px;
                        background-position: 45.538% 73.789%;
                        background-size: 129.885%;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec829867228 .tn-elem[data-elem-id="1732805490591"] {
                            top: 50px;
                            left: calc(50% - 160px + 10px);
                            width: 300px;
                            height: 458px;
                        }
                    }
                    #rec829867228 .tn-elem[data-elem-id="1732805530195"] {
                        color: #005051;
                        z-index: 5;
                        top: 70px;
                        left: calc(50% - 600px + 481px);
                        width: 697px;
                        height: auto;
                    }
                    #rec829867228 .tn-elem[data-elem-id="1732805530195"] .tn-atom {
                        color: #005051;
                        font-size: 40px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec829867228 .tn-elem[data-elem-id="1732805530195"] {
                            top: 538px;
                            left: calc(50% - 160px + 10px);
                            width: 300px;
                            height: auto;
                        }
                        #rec829867228 .tn-elem[data-elem-id="1732805530195"] .tn-atom {
                            font-size: 22px;
                            background-size: cover;
                        }
                    }
                    #rec829867228 .tn-elem[data-elem-id="1732805530200"] {
                        color: #008486;
                        z-index: 6;
                        top: 152px;
                        left: calc(50% - 600px + 480px);
                        width: 758px;
                        height: auto;
                    }
                    #rec829867228 .tn-elem[data-elem-id="1732805530200"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec829867228 .tn-elem[data-elem-id="1732805530200"] {
                            top: 582px;
                            left: calc(50% - 160px + 10px);
                            width: 300px;
                            height: auto;
                        }
                        #rec829867228 .tn-elem[data-elem-id="1732805530200"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }

#rec829894635 .t396__artboard {
                        height: 290px;
                    }
                    #rec829894635 .t396__filter {
                        height: 290px;
                    }
                    #rec829894635 .t396__carrier {
                        height: 290px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894635 .t396__artboard,
                        #rec829894635 .t396__filter,
                        #rec829894635 .t396__carrier {
                        }
                        #rec829894635 .t396__filter {
                        }
                        #rec829894635 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894635 .t396__artboard,
                        #rec829894635 .t396__filter,
                        #rec829894635 .t396__carrier {
                        }
                        #rec829894635 .t396__filter {
                        }
                        #rec829894635 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829894635 .t396__artboard,
                        #rec829894635 .t396__filter,
                        #rec829894635 .t396__carrier {
                        }
                        #rec829894635 .t396__filter {
                        }
                        #rec829894635 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894635 .t396__artboard,
                        #rec829894635 .t396__filter,
                        #rec829894635 .t396__carrier {
                            height: 288px;
                        }
                        #rec829894635 .t396__filter {
                        }
                        #rec829894635 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec829894635 .tn-elem[data-elem-id="1733268654950"] {
                        color: #ffffff;
                        z-index: 3;
/*                         top: 0 !important; */
/*                         left: 0 !important; */
                        width: 874px;
                        height: auto;
                    }
                    #rec829894635 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                        color: #ffffff;
                        font-size: 60px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894635 .tn-elem[data-elem-id="1733268654950"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894635 .tn-elem[data-elem-id="1733268654950"] {
                            top: 90px;
                            width: 300px;
                            height: auto;
                        }
                        #rec829894635 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                            font-size: 30px;
                            background-size: cover;
                        }
                    }
                    #rec829894635 .tn-elem[data-elem-id="1733268654955"] {
                        color: #005051;
                        z-index: 4;
                        top: 233px;
                        left: calc(50% - 600px + 20px);
                        width: 838px;
                        height: auto;
                    }
                    #rec829894635 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                        color: #005051;
                        font-size: 25px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894635 .tn-elem[data-elem-id="1733268654955"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894635 .tn-elem[data-elem-id="1733268654955"] {
                            top: 194px;
                            width: 300px;
                            height: auto;
                        }
                        #rec829894635 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                            font-size: 20px;
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }

#rec835146968 .t396__artboard {
                        height: 380px;
                    }
                    #rec835146968 .t396__filter {
                        height: 380px;
                    }
                    #rec835146968 .t396__carrier {
                        height: 380px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835146968 .t396__artboard,
                        #rec835146968 .t396__filter,
                        #rec835146968 .t396__carrier {
                            height: 470px;
                        }
                        #rec835146968 .t396__filter {
                        }
                        #rec835146968 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835146968 .t396__artboard,
                        #rec835146968 .t396__filter,
                        #rec835146968 .t396__carrier {
                            height: 631px;
                        }
                        #rec835146968 .t396__filter {
                        }
                        #rec835146968 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835146968 .t396__artboard,
                        #rec835146968 .t396__filter,
                        #rec835146968 .t396__carrier {
                            height: 702px;
                        }
                        #rec835146968 .t396__filter {
                        }
                        #rec835146968 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835146968 .t396__artboard,
                        #rec835146968 .t396__filter,
                        #rec835146968 .t396__carrier {
                            height: 693px;
                        }
                        #rec835146968 .t396__filter {
                        }
                        #rec835146968 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835146968 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835146968 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835146968 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835146968 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835146968 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835146968 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835146968 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835146968 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835146968 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835146968 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835146968 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835146968 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835146968 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835146968 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835146968 .tn-elem[data-elem-id="1733269533721"] {
                            top: 385px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835146968 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835146968 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835146968 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835146968 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835146968 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835146968 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835146968 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835146968 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835146968 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835146968 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835146968 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835146968 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835146968 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835146968 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835146968 .tn-elem[data-elem-id="1733268626953"] {
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835146968 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835146968 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835146968 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835146968 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835146968 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835146968 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835146968 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835146968 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835146968 .tn-elem[data-elem-id="1733269452172"] {
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835146968 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835146968 .tn-elem[data-elem-id="1733269452172"] {
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835146968 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835146968 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835146968 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835146968 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 130px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835146968 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835146968 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 130px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835146968 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

#rec835151299 .t396__artboard {
                        height: 380px;
                    }
                    #rec835151299 .t396__filter {
                        height: 380px;
                    }
                    #rec835151299 .t396__carrier {
                        height: 380px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151299 .t396__artboard,
                        #rec835151299 .t396__filter,
                        #rec835151299 .t396__carrier {
                            height: auto;
                        }
                        #rec835151299 .t396__filter {
                        }
                        #rec835151299 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151299 .t396__artboard,
                        #rec835151299 .t396__filter,
                        #rec835151299 .t396__carrier {
                            height: 569px;
                        }
                        #rec835151299 .t396__filter {
                        }
                        #rec835151299 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151299 .t396__artboard,
                        #rec835151299 .t396__filter,
                        #rec835151299 .t396__carrier {
                            height: 569px;
                        }
                        #rec835151299 .t396__filter {
                        }
                        #rec835151299 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151299 .t396__artboard,
                        #rec835151299 .t396__filter,
                        #rec835151299 .t396__carrier {
                            height: auto;
                        }
                        #rec835151299 .t396__filter {
                        }
                        #rec835151299 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835151299 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: 381px;
                        margin: 0 0 0 0;
                    }
                    #rec835151299 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151299 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835151299 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151299 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835151299 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151299 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835151299 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151299 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835151299 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835151299 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151299 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151299 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151299 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151299 .tn-elem[data-elem-id="1733269533721"] {
                            top: 329px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835151299 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151299 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151299 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835151299 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151299 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835151299 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151299 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151299 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151299 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151299 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151299 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151299 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835151299 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835151299 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151299 .tn-elem[data-elem-id="1733268626953"] {
                            top: 0px;
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151299 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151299 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151299 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151299 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151299 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151299 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151299 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835151299 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151299 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151299 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151299 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151299 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151299 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151299 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151299 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 160px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151299 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151299 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 167px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151299 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

#rec835151551 .t396__artboard {
                        height: 312px;
                    }
                    #rec835151551 .t396__filter {
                        height: 312px;
                    }
                    #rec835151551 .t396__carrier {
                        height: 312px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151551 .t396__artboard,
                        #rec835151551 .t396__filter,
                        #rec835151551 .t396__carrier {
                            height: 377px;
                        }
                        #rec835151551 .t396__filter {
                        }
                        #rec835151551 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151551 .t396__artboard,
                        #rec835151551 .t396__filter,
                        #rec835151551 .t396__carrier {
                            height: 493px;
                        }
                        #rec835151551 .t396__filter {
                        }
                        #rec835151551 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151551 .t396__artboard,
                        #rec835151551 .t396__filter,
                        #rec835151551 .t396__carrier {
                            height: 506px;
                        }
                        #rec835151551 .t396__filter {
                        }
                        #rec835151551 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151551 .t396__artboard,
                        #rec835151551 .t396__filter,
                        #rec835151551 .t396__carrier {
                            height: auto;
                        }
                        #rec835151551 .t396__filter {
                        }
                        #rec835151551 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835151551 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: 312px;
                        margin: 0 0 0 0;
                    }
                    #rec835151551 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151551 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835151551 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151551 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835151551 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151551 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835151551 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151551 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835151551 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835151551 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151551 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151551 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151551 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151551 .tn-elem[data-elem-id="1733269533721"] {
                            top: 413px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835151551 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151551 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151551 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835151551 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151551 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835151551 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151551 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151551 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151551 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151551 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151551 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151551 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835151551 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835151551 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151551 .tn-elem[data-elem-id="1733268626953"] {
                            top: 0px;
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151551 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151551 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151551 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151551 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151551 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151551 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151551 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835151551 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151551 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151551 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151551 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151551 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151551 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151551 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151551 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 160px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151551 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151551 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 167px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151551 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

#rec835151715 .t396__artboard {
                        height: auto;
                    }
                    #rec835151715 .t396__filter {
                        height: auto;
                    }
                    #rec835151715 .t396__carrier {
                        height: auto;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151715 .t396__artboard,
                        #rec835151715 .t396__filter,
                        #rec835151715 .t396__carrier {
                            height: auto;
                        }
                        #rec835151715 .t396__filter {
                        }
                        #rec835151715 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151715 .t396__artboard,
                        #rec835151715 .t396__filter,
                        #rec835151715 .t396__carrier {
                            height: auto;
                        }
                        #rec835151715 .t396__filter {
                        }
                        #rec835151715 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151715 .t396__artboard,
                        #rec835151715 .t396__filter,
                        #rec835151715 .t396__carrier {
                            height: auto;
                        }
                        #rec835151715 .t396__filter {
                        }
                        #rec835151715 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151715 .t396__artboard,
                        #rec835151715 .t396__filter,
                        #rec835151715 .t396__carrier {
                            height: auto;
                        }
                        #rec835151715 .t396__filter {
                        }
                        #rec835151715 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835151715 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151715 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151715 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835151715 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151715 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835151715 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151715 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835151715 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151715 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835151715 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835151715 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151715 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151715 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151715 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151715 .tn-elem[data-elem-id="1733269533721"] {
                            top: 357px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835151715 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151715 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151715 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835151715 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151715 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835151715 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151715 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151715 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151715 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151715 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151715 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151715 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835151715 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835151715 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151715 .tn-elem[data-elem-id="1733268626953"] {
                            top: 0px;
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151715 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151715 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151715 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151715 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151715 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151715 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151715 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835151715 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151715 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151715 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151715 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151715 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151715 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151715 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151715 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 160px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151715 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151715 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 167px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151715 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

#rec835152085 .t396__artboard {
                        height: auto;
                    }
                    #rec835152085 .t396__filter {
                        height: auto;
                    }
                    #rec835152085 .t396__carrier {
                        height: auto;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152085 .t396__artboard,
                        #rec835152085 .t396__filter,
                        #rec835152085 .t396__carrier {
                            height: auto;
                        }
                        #rec835152085 .t396__filter {
                        }
                        #rec835152085 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152085 .t396__artboard,
                        #rec835152085 .t396__filter,
                        #rec835152085 .t396__carrier {
                            height: auto;
                        }
                        #rec835152085 .t396__filter {
                        }
                        #rec835152085 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152085 .t396__artboard,
                        #rec835152085 .t396__filter,
                        #rec835152085 .t396__carrier {
                            height: auto;
                        }
                        #rec835152085 .t396__filter {
                        }
                        #rec835152085 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152085 .t396__artboard,
                        #rec835152085 .t396__filter,
                        #rec835152085 .t396__carrier {
                            height: auto;
                        }
                        #rec835152085 .t396__filter {
                        }
                        #rec835152085 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835152085 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152085 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152085 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835152085 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152085 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835152085 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152085 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835152085 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152085 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835152085 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835152085 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152085 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152085 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152085 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152085 .tn-elem[data-elem-id="1733269533721"] {
                            top: 329px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835152085 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152085 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152085 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835152085 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152085 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835152085 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152085 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152085 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152085 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152085 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152085 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152085 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835152085 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835152085 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152085 .tn-elem[data-elem-id="1733268626953"] {
                            top: 0px;
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152085 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152085 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152085 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152085 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152085 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152085 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152085 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835152085 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: 0% 56.894%;
                        background-size: 100%;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152085 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152085 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152085 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152085 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152085 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152085 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152085 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 160px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152085 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152085 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 167px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152085 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

#rec835151812 .t396__artboard {
                        height: auto;
                    }
                    #rec835151812 .t396__filter {
                        height: auto;
                    }
                    #rec835151812 .t396__carrier {
                        height: auto;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151812 .t396__artboard,
                        #rec835151812 .t396__filter,
                        #rec835151812 .t396__carrier {
                            height: auto;
                        }
                        #rec835151812 .t396__filter {
                        }
                        #rec835151812 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151812 .t396__artboard,
                        #rec835151812 .t396__filter,
                        #rec835151812 .t396__carrier {
                            height: auto;
                        }
                        #rec835151812 .t396__filter {
                        }
                        #rec835151812 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151812 .t396__artboard,
                        #rec835151812 .t396__filter,
                        #rec835151812 .t396__carrier {
                            height: auto;
                        }
                        #rec835151812 .t396__filter {
                        }
                        #rec835151812 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151812 .t396__artboard,
                        #rec835151812 .t396__filter,
                        #rec835151812 .t396__carrier {
                            height: auto;
                        }
                        #rec835151812 .t396__filter {
                        }
                        #rec835151812 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835151812 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151812 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151812 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835151812 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151812 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835151812 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151812 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835151812 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151812 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835151812 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835151812 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151812 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151812 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151812 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151812 .tn-elem[data-elem-id="1733269533721"] {
                            top: 413px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835151812 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151812 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151812 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835151812 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151812 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835151812 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151812 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151812 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151812 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151812 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151812 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151812 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835151812 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835151812 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151812 .tn-elem[data-elem-id="1733268626953"] {
                            top: 0px;
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151812 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151812 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151812 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151812 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151812 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151812 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151812 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835151812 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: 0% 73.974%;
                        background-size: 100%;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151812 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151812 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151812 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151812 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151812 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151812 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151812 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 160px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151812 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151812 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 167px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151812 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

#rec835151904 .t396__artboard {
                        height: auto;
                    }
                    #rec835151904 .t396__filter {
                        height: auto;
                    }
                    #rec835151904 .t396__carrier {
                        height: auto;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151904 .t396__artboard,
                        #rec835151904 .t396__filter,
                        #rec835151904 .t396__carrier {
                            height: auto;
                        }
                        #rec835151904 .t396__filter {
                        }
                        #rec835151904 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151904 .t396__artboard,
                        #rec835151904 .t396__filter,
                        #rec835151904 .t396__carrier {
                            height: auto;
                        }
                        #rec835151904 .t396__filter {
                        }
                        #rec835151904 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151904 .t396__artboard,
                        #rec835151904 .t396__filter,
                        #rec835151904 .t396__carrier {
                            height: auto;
                        }
                        #rec835151904 .t396__filter {
                        }
                        #rec835151904 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151904 .t396__artboard,
                        #rec835151904 .t396__filter,
                        #rec835151904 .t396__carrier {
                            height: auto;
                        }
                        #rec835151904 .t396__filter {
                        }
                        #rec835151904 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835151904 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151904 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151904 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835151904 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151904 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835151904 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151904 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835151904 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151904 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835151904 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835151904 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151904 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151904 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151904 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151904 .tn-elem[data-elem-id="1733269533721"] {
                            top: 413px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835151904 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151904 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151904 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835151904 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151904 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835151904 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151904 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151904 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151904 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151904 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151904 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835151904 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835151904 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835151904 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151904 .tn-elem[data-elem-id="1733268626953"] {
                            top: 0px;
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151904 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151904 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151904 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151904 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835151904 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151904 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151904 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835151904 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: 0% 18.936%;
                        background-size: 100%;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151904 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151904 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151904 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151904 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835151904 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835151904 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835151904 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 160px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835151904 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835151904 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 167px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835151904 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

#rec835152023 .t396__artboard {
                        height: auto;
                    }
                    #rec835152023 .t396__filter {
                        height: auto;
                    }
                    #rec835152023 .t396__carrier {
                        height: auto;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152023 .t396__artboard,
                        #rec835152023 .t396__filter,
                        #rec835152023 .t396__carrier {
                            height: auto;
                        }
                        #rec835152023 .t396__filter {
                        }
                        #rec835152023 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152023 .t396__artboard,
                        #rec835152023 .t396__filter,
                        #rec835152023 .t396__carrier {
                            height: auto;
                        }
                        #rec835152023 .t396__filter {
                        }
                        #rec835152023 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152023 .t396__artboard,
                        #rec835152023 .t396__filter,
                        #rec835152023 .t396__carrier {
                            height: auto;
                        }
                        #rec835152023 .t396__filter {
                        }
                        #rec835152023 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152023 .t396__artboard,
                        #rec835152023 .t396__filter,
                        #rec835152023 .t396__carrier {
                            height: auto;
                        }
                        #rec835152023 .t396__filter {
                        }
                        #rec835152023 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835152023 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152023 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152023 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835152023 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152023 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835152023 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152023 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835152023 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152023 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835152023 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835152023 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152023 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152023 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152023 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152023 .tn-elem[data-elem-id="1733269533721"] {
                            top: 329px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835152023 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152023 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152023 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835152023 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152023 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835152023 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152023 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152023 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152023 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152023 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152023 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152023 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835152023 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835152023 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152023 .tn-elem[data-elem-id="1733268626953"] {
                            top: 0px;
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152023 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152023 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152023 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152023 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152023 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152023 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152023 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835152023 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: 0% 57.756%;
                        background-size: 100%;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152023 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152023 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152023 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152023 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152023 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152023 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152023 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 160px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152023 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152023 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 167px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152023 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

#rec835152154 .t396__artboard {
                        height: auto;
                    }
                    #rec835152154 .t396__filter {
                        height: auto;
                    }
                    #rec835152154 .t396__carrier {
                        height: auto;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152154 .t396__artboard,
                        #rec835152154 .t396__filter,
                        #rec835152154 .t396__carrier {
                            height: auto;
                        }
                        #rec835152154 .t396__filter {
                        }
                        #rec835152154 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152154 .t396__artboard,
                        #rec835152154 .t396__filter,
                        #rec835152154 .t396__carrier {
                            height: auto;
                        }
                        #rec835152154 .t396__filter {
                        }
                        #rec835152154 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152154 .t396__artboard,
                        #rec835152154 .t396__filter,
                        #rec835152154 .t396__carrier {
                            height: auto;
                        }
                        #rec835152154 .t396__filter {
                        }
                        #rec835152154 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152154 .t396__artboard,
                        #rec835152154 .t396__filter,
                        #rec835152154 .t396__carrier {
                            height: auto;
                        }
                        #rec835152154 .t396__filter {
                        }
                        #rec835152154 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835152154 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152154 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152154 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835152154 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152154 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835152154 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152154 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835152154 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152154 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835152154 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835152154 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152154 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152154 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152154 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152154 .tn-elem[data-elem-id="1733269533721"] {
                            top: 441px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835152154 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152154 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152154 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835152154 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152154 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835152154 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152154 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152154 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152154 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152154 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152154 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152154 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835152154 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835152154 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152154 .tn-elem[data-elem-id="1733268626953"] {
                            top: 0px;
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152154 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152154 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152154 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152154 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152154 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152154 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152154 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835152154 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152154 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152154 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152154 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152154 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152154 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152154 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152154 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 160px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152154 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152154 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 167px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152154 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

#rec835152283 .t396__artboard {
                        height: auto;
                    }
                    #rec835152283 .t396__filter {
                        height: auto;
                    }
                    #rec835152283 .t396__carrier {
                        height: auto;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152283 .t396__artboard,
                        #rec835152283 .t396__filter,
                        #rec835152283 .t396__carrier {
                            height: auto;
                        }
                        #rec835152283 .t396__filter {
                        }
                        #rec835152283 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152283 .t396__artboard,
                        #rec835152283 .t396__filter,
                        #rec835152283 .t396__carrier {
                            height: auto;
                        }
                        #rec835152283 .t396__filter {
                        }
                        #rec835152283 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152283 .t396__artboard,
                        #rec835152283 .t396__filter,
                        #rec835152283 .t396__carrier {
                            height: auto;
                        }
                        #rec835152283 .t396__filter {
                        }
                        #rec835152283 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152283 .t396__artboard,
                        #rec835152283 .t396__filter,
                        #rec835152283 .t396__carrier {
                            height: auto;
                        }
                        #rec835152283 .t396__filter {
                        }
                        #rec835152283 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835152283 .tn-group[data-group-id="173327009118134950"] {
                        z-index: 3;
                        position: relative;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1161px;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152283 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        row-gap: 20px;
                        align-items: flex-start;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 40px 40px 40px 40px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 50px;
                        opacity: 1;
                        background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
                        background-origin: border-box;
                        background-clip: border-box;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152283 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 480px + 10px);
                            width: 940px;
                            height: auto;
                        }
                        #rec835152283 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152283 .tn-group[data-group-id="173327009118134950"] {
                            width: 620px;
                            height: auto;
                        }
                        #rec835152283 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                            padding: 30px 30px 30px 30px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152283 .tn-group[data-group-id="173327009118134950"] {
                            top: 0px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec835152283 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152283 .tn-group[data-group-id="173327009118134950"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: auto;
                        }
                        #rec835152283 .tn-group[data-group-id="173327009118134950"] #molecule-173327009118134950 {
                            display: flex;
                        }
                    }
                    #rec835152283 .tn-elem[data-elem-id="1733269533721"] {
                        color: #008486;
                        z-index: 4;
                        top: 226px;
                        left: 40px;
                        width: 1080px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152283 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152283 .tn-elem[data-elem-id="1733269533721"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152283 .tn-elem[data-elem-id="1733269533721"] {
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152283 .tn-elem[data-elem-id="1733269533721"] {
                            top: 329px;
                            left: 30px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                        #rec835152283 .tn-elem[data-elem-id="1733269533721"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152283 .tn-elem[data-elem-id="1733269533721"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152283 .tn-group[data-group-id="173327006812982550"] {
                        z-index: 5;
                        position: absolute;
                        top: 86px;
                        left: 40px;
                        width: auto;
                        height: auto;
                        flex-shrink: 0;
                        margin: 0 0 0 0;
                    }
                    #rec835152283 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        column-gap: 40px;
                        align-items: center;
                        justify-content: flex-start;
                        align-content: flex-start;
                        padding: 0px 0px 0px 0px;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152283 .tn-group[data-group-id="173327006812982550"] {
                            left: 40px;
                            width: 860px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                        }
                        #rec835152283 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            align-items: flex-start;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152283 .tn-group[data-group-id="173327006812982550"] {
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152283 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 20px;
                            row-gap: 20px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152283 .tn-group[data-group-id="173327006812982550"] {
                            top: 76px;
                            left: 30px;
                            width: auto;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152283 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152283 .tn-group[data-group-id="173327006812982550"] {
                            left: 30px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                            align-self: auto;
                            margin: 0 0 0 0;
                        }
                        #rec835152283 .tn-group[data-group-id="173327006812982550"] #molecule-173327006812982550 {
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: unset;
                            column-gap: 40px;
                            align-items: center;
                            justify-content: flex-start;
                            align-content: flex-start;
                            padding: 0px 0px 0px 0px;
                            background-position: center center;
                            opacity: 1;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    #rec835152283 .tn-elem[data-elem-id="1733268626953"] {
                        color: #005051;
                        z-index: 6;
                        top: 0px;
                        left: 360px;
                        width: 721px;
                        flex-shrink: 0;
                        height: auto;
                        align-self: flex-start;
                        margin: 0 0 0 0;
                    }
                    #rec835152283 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152283 .tn-elem[data-elem-id="1733268626953"] {
                            top: 0px;
                            left: 299px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152283 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 24px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152283 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 560px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152283 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152283 .tn-elem[data-elem-id="1733268626953"] {
                            top: 205px;
                            left: 0px;
                            width: 420px;
                            height: auto;
                            flex-shrink: 0;
                        }
                        #rec835152283 .tn-elem[data-elem-id="1733268626953"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152283 .tn-elem[data-elem-id="1733268626953"] {
                            top: 140px;
                            left: 0px;
                            width: 300px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152283 .tn-elem[data-elem-id="1733269452172"] {
                        z-index: 7;
                        top: 0px;
                        left: 0px;
                        width: 320px;
                        flex-shrink: 0;
                        height: 120px;
                        margin: 0 0 0 0;
                    }
                    #rec835152283 .tn-elem[data-elem-id="1733269452172"] .tn-atom {
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 132, 134, 1) 0%, rgba(0, 188, 191, 1) 100%);
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152283 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 259px;
                            height: 185px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152283 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 560px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152283 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 420px;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152283 .tn-elem[data-elem-id="1733269452172"] {
                            top: 0px;
                            left: 0px;
                            width: 300px;
                            height: 120px;
                            flex-shrink: 0;
                        }
                    }
                    #rec835152283 .tn-elem[data-elem-id="1733268626960"] {
                        color: #008486;
                        z-index: 8;
                        top: 40px;
                        left: 40px;
                        width: 160px;
                        flex-shrink: 0;
                        height: auto;
                        margin: 0 0 0 0;
                    }
                    #rec835152283 .tn-elem[data-elem-id="1733268626960"] .tn-atom {
                        color: #008486;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152283 .tn-elem[data-elem-id="1733268626960"] {
                            left: 40px;
                            width: 160px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152283 .tn-elem[data-elem-id="1733268626960"] {
                            height: auto;
                            flex-shrink: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152283 .tn-elem[data-elem-id="1733268626960"] {
                            top: 30px;
                            left: 30px;
                            width: 167px;
                            height: auto;
                            flex-shrink: 0;
                            margin: 0 0 0 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152283 .tn-elem[data-elem-id="1733268626960"] {
                            left: 30px;
                            height: auto;
                            flex-shrink: 0;
                        }
                    }

.modul-bg {
                                    backdrop-filter: blur(8px);
                                }

                                .t668__wrapper {
                                    background-color: rgba(255, 255, 255, 0.8) !important;
                                    backdrop-filter: blur(8px);
                                }

                                .t-feed__col-grid__post-wrapper {
                                    background-color: rgba(255, 255, 255, 0.8) !important;
                                    backdrop-filter: blur(8px);
                                }

                                .t958__card {
                                    background-color: rgba(255, 255, 255, 0.8) !important;
                                    backdrop-filter: blur(8px);
                                }

                                .t958 .t-slds__container {
                                    margin-left: 0px;
                                }

#rec835155256 .t396__artboard {
                        height: 120px;
                    }
                    #rec835155256 .t396__filter {
                        height: 120px;
                    }
                    #rec835155256 .t396__carrier {
                        height: 120px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835155256 .t396__artboard,
                        #rec835155256 .t396__filter,
                        #rec835155256 .t396__carrier {
                        }
                        #rec835155256 .t396__filter {
                        }
                        #rec835155256 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835155256 .t396__artboard,
                        #rec835155256 .t396__filter,
                        #rec835155256 .t396__carrier {
                        }
                        #rec835155256 .t396__filter {
                        }
                        #rec835155256 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835155256 .t396__artboard,
                        #rec835155256 .t396__filter,
                        #rec835155256 .t396__carrier {
                        }
                        #rec835155256 .t396__filter {
                        }
                        #rec835155256 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835155256 .t396__artboard,
                        #rec835155256 .t396__filter,
                        #rec835155256 .t396__carrier {
                            height: 160px;
                        }
                        #rec835155256 .t396__filter {
                        }
                        #rec835155256 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835155256 .tn-elem[data-elem-id="1733274400269"] {
                        color: #ffffff;
                        text-align: center;
                        z-index: 3;
                        top: 30px;
                        left: calc(50% - 600px + 420px);
                        width: 360px;
                        height: 69px;
                    }
                    #rec835155256 .tn-elem[data-elem-id="1733274400269"] .tn-atom {
                        color: #ffffff;
                        font-size: 18px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    #rec835155256 .tn-elem[data-elem-id="1733274400269"] .tn-atom::before,
                    #rec835155256 .tn-elem[data-elem-id="1733274400269"] .tn-atom::after {
                        content: "";
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        left: 0;
                        top: 0;
                        box-sizing: content-box;
                        pointer-events: none;
                        border-radius: 20px;
                        transition: opacity 0.2s ease-in-out;
                    }
                    #rec835155256 .tn-elem[data-elem-id="1733274400269"] .tn-atom::before {
                        z-index: -2;
                        opacity: 1;
                        background-color: transparent;
                        background-image: linear-gradient(0turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                    }
                    #rec835155256 .tn-elem[data-elem-id="1733274400269"] .tn-atom::after {
                        z-index: -1;
                        opacity: 0;
                        background-color: transparent;
                        background-image: linear-gradient(0.258turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                    }
                    #rec835155256 .tn-elem[data-elem-id="1733274400269"] .tn-atom {
                        position: relative;
                        z-index: 1;
                        background-color: transparent;
                        background-image: none;
                        border: none;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        height: 100%;
                        height: inherit;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec835155256 .tn-elem[data-elem-id="1733274400269"] .tn-atom:hover::after {
                            opacity: 1;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835155256 .tn-elem[data-elem-id="1733274400269"] {
                            left: calc(50% - 480px + 300px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835155256 .tn-elem[data-elem-id="1733274400269"] {
                            left: calc(50% - 320px + 140px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835155256 .tn-elem[data-elem-id="1733274400269"] {
                            left: calc(50% - 240px + 60px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835155256 .tn-elem[data-elem-id="1733274400269"] {
                            top: 30px;
                            left: calc(50% - 160px + 10px);
                            width: 300px;
                        }
                    }

#rec835157560 .t396__artboard {
                        height: 290px;
                    }
                    #rec835157560 .t396__filter {
                        height: 290px;
                    }
                    #rec835157560 .t396__carrier {
                        height: 290px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835157560 .t396__artboard,
                        #rec835157560 .t396__filter,
                        #rec835157560 .t396__carrier {
                        }
                        #rec835157560 .t396__filter {
                        }
                        #rec835157560 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835157560 .t396__artboard,
                        #rec835157560 .t396__filter,
                        #rec835157560 .t396__carrier {
                        }
                        #rec835157560 .t396__filter {
                        }
                        #rec835157560 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835157560 .t396__artboard,
                        #rec835157560 .t396__filter,
                        #rec835157560 .t396__carrier {
                        }
                        #rec835157560 .t396__filter {
                        }
                        #rec835157560 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835157560 .t396__artboard,
                        #rec835157560 .t396__filter,
                        #rec835157560 .t396__carrier {
                            height: 220px;
                        }
                        #rec835157560 .t396__filter {
                        }
                        #rec835157560 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835157560 .tn-elem[data-elem-id="1733268654950"] {
                        color: #ffffff;
                        z-index: 3;
                        top: 140px;
                        left: calc(50% - 600px + 20px);
                        width: 874px;
                        height: auto;
                    }
                    #rec835157560 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                        color: #ffffff;
                        font-size: 60px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835157560 .tn-elem[data-elem-id="1733268654950"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835157560 .tn-elem[data-elem-id="1733268654950"] {
                            top: 90px;
                            width: 300px;
                            height: auto;
                        }
                        #rec835157560 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                            font-size: 30px;
                            background-size: cover;
                        }
                    }
                    #rec835157560 .tn-elem[data-elem-id="1733268654955"] {
                        color: #005051;
                        z-index: 4;
                        top: 233px;
                        left: calc(50% - 600px + 20px);
                        width: 838px;
                        height: auto;
                    }
                    #rec835157560 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                        color: #005051;
                        font-size: 25px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835157560 .tn-elem[data-elem-id="1733268654955"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835157560 .tn-elem[data-elem-id="1733268654955"] {
                            top: 147px;
                            width: 300px;
                            height: auto;
                        }
                        #rec835157560 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                            font-size: 20px;
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }

#rec835158907 .t396__artboard {
                        height: 550px;
                    }
                    #rec835158907 .t396__filter {
                        height: 550px;
                    }
                    #rec835158907 .t396__carrier {
                        height: 550px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .t396__artboard,
                        #rec835158907 .t396__filter,
                        #rec835158907 .t396__carrier {
                        }
                        #rec835158907 .t396__filter {
                        }
                        #rec835158907 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835158907 .t396__artboard,
                        #rec835158907 .t396__filter,
                        #rec835158907 .t396__carrier {
                        }
                        #rec835158907 .t396__filter {
                        }
                        #rec835158907 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835158907 .t396__artboard,
                        #rec835158907 .t396__filter,
                        #rec835158907 .t396__carrier {
                        }
                        #rec835158907 .t396__filter {
                        }
                        #rec835158907 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .t396__artboard,
                        #rec835158907 .t396__filter,
                        #rec835158907 .t396__carrier {
                            height: 910px;
                        }
                        #rec835158907 .t396__filter {
                        }
                        #rec835158907 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835158907 .tn-group[data-group-id="173327890700534200"] {
                        z-index: 3;
                        position: absolute;
                        top: 250px;
                        left: calc(50% - 600px + 620px);
                        width: 560px;
                        height: 300px;
                        margin: 0 0 0 0;
                    }
                    #rec835158907 .tn-group[data-group-id="173327890700534200"] #molecule-173327890700534200 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 0px 0px 0px 0px;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-group[data-group-id="173327890700534200"] {
                            top: 250px;
                            left: calc(50% - 480px + 610px);
                            width: 560px;
                            height: 300px;
                        }
                        #rec835158907 .tn-group[data-group-id="173327890700534200"] #molecule-173327890700534200 {
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835158907 .tn-group[data-group-id="173327890700534200"] #molecule-173327890700534200 {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835158907 .tn-group[data-group-id="173327890700534200"] #molecule-173327890700534200 {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-group[data-group-id="173327890700534200"] {
                            top: 647px;
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: 260px;
                        }
                        #rec835158907 .tn-group[data-group-id="173327890700534200"] #molecule-173327890700534200 {
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278478885"] {
                        z-index: 4;
                        top: 0px;
                        left: 0px;
                        width: 560px;
                        height: 100%;
                        -webkit-backdrop-filter: blur(8px);
                        backdrop-filter: blur(8px);
                        border-radius: 50px 50px 50px 50px;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278478885"] .tn-atom {
                        border-radius: 50px 50px 50px 50px;
                        opacity: 0.8;
                        background-color: #ffffff;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278478885"] {
                            top: 0px;
                            left: 0px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278478885"] {
                            top: 0px;
                            left: 0px;
                            width: 360px;
                            height: 260px;
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278591391"] {
                        color: #005051;
                        z-index: 5;
                        top: 30px;
                        left: 60px;
                        width: 400px;
                        height: auto;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278591391"] .tn-atom {
                        vertical-align: middle;
                        color: #005051;
                        font-size: 22px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278591391"] {
                            top: 30px;
                            left: 60px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278591391"] {
                            top: 30px;
                            left: 30px;
                            width: 300px;
                            height: auto;
                        }
                        #rec835158907 .tn-elem[data-elem-id="1733278591391"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278674686"] {
                        color: #008486;
                        z-index: 6;
                        top: 84px;
                        left: 60px;
                        width: 448px;
                        height: auto;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278674686"] .tn-atom {
                        vertical-align: middle;
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.7;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278674686"] {
                            top: 84px;
                            left: 60px;
                            height: 100%;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278674686"] {
                            top: 68px;
                            left: 30px;
                            width: 300px;
                            height: 100%;
                        }
                        #rec835158907 .tn-elem[data-elem-id="1733278674686"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    #rec835158907 .tn-group[data-group-id="173327890261888180"] {
                        z-index: 7;
                        position: absolute;
                        top: 250px;
                        left: calc(50% - 600px + 20px);
                        width: 560px;
                        height: 55%;
                        margin: 0 0 0 0;
                    }
                    #rec835158907 .tn-group[data-group-id="173327890261888180"] #molecule-173327890261888180 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 0px 0px 0px 0px;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-group[data-group-id="173327890261888180"] {
                            top: 250px;
                            left: calc(50% - 480px + 10px);
                            width: 560px;
                            height: 300px;
                        }
                        #rec835158907 .tn-group[data-group-id="173327890261888180"] #molecule-173327890261888180 {
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835158907 .tn-group[data-group-id="173327890261888180"] #molecule-173327890261888180 {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835158907 .tn-group[data-group-id="173327890261888180"] #molecule-173327890261888180 {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-group[data-group-id="173327890261888180"] {
                            top: 340px;
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: 287px;
                        }
                        #rec835158907 .tn-group[data-group-id="173327890261888180"] #molecule-173327890261888180 {
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278465824"] {
                        z-index: 8;
                        top: 0px;
                        left: 0px;
                        width: 560px;
                        height: 100%;
                        -webkit-backdrop-filter: blur(8px);
                        backdrop-filter: blur(8px);
                        border-radius: 50px 50px 50px 50px;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278465824"] .tn-atom {
                        border-radius: 50px 50px 50px 50px;
                        opacity: 0.8;
                        background-color: #ffffff;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278465824"] {
                            top: 0px;
                            left: 0px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278465824"] {
                            top: 0px;
                            left: 0px;
                            width: 360px;
                            height: auto;
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278616256"] {
                        color: #008486;
                        z-index: 9;
                        top: 84px;
                        left: 60px;
                        width: 448px;
                        height: auto;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278616256"] .tn-atom {
                        vertical-align: middle;
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.7;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278616256"] {
                            top: 84px;
                            left: 60px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278616256"] {
                            top: 68px;
                            left: 30px;
                            width: 300px;
                            height: auto;
                        }
                        #rec835158907 .tn-elem[data-elem-id="1733278616256"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278552891"] {
                        color: #005051;
                        z-index: 10;
                        top: 30px;
                        left: 60px;
                        width: 400px;
                        height: auto;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278552891"] .tn-atom {
                        vertical-align: middle;
                        color: #005051;
                        font-size: 22px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278552891"] {
                            top: 30px;
                            left: 60px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278552891"] {
                            top: 30px;
                            left: 30px;
                            width: 300px;
                            height: auto;
                        }
                        #rec835158907 .tn-elem[data-elem-id="1733278552891"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733277759746"] {
                        z-index: 11;
                        top: 0px;
                        left: calc(50% - 600px + 20px);
                        width: 1160px;
                        height: 210px;
                        -webkit-backdrop-filter: blur(8px);
                        backdrop-filter: blur(8px);
                        border-radius: 50px 50px 50px 50px;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733277759746"] .tn-atom {
                        border-radius: 50px 50px 50px 50px;
                        opacity: 0.8;
                        background-color: #ffffff;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733277759746"] {
                            left: calc(50% - 480px + 10px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733277759746"] {
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: 320px;
                        }
                    }
                    #rec835158907 .tn-group[data-group-id="173327789632952180"] {
                        z-index: 12;
                        position: absolute;
                        top: 96px;
                        left: calc(50% - 600px + 500px);
                        width: 362px;
                        height: 50px;
                        margin: 0 0 0 0;
                    }
                    #rec835158907 .tn-group[data-group-id="173327789632952180"] #molecule-173327789632952180 {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        border-color: transparent;
                        border-style: solid;
                        box-sizing: border-box;
                        border-radius: 0px 0px 0px 0px;
                        opacity: 1;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-group[data-group-id="173327789632952180"] {
                            top: 96px;
                            left: calc(50% - 480px + 480px);
                            width: 369px;
                            height: 50px;
                        }
                        #rec835158907 .tn-group[data-group-id="173327789632952180"] #molecule-173327789632952180 {
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835158907 .tn-group[data-group-id="173327789632952180"] {
                            top: 96px;
                            left: calc(50% - 320px + 480px);
                            width: 369px;
                            height: 50px;
                        }
                        #rec835158907 .tn-group[data-group-id="173327789632952180"] #molecule-173327789632952180 {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835158907 .tn-group[data-group-id="173327789632952180"] #molecule-173327789632952180 {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-group[data-group-id="173327789632952180"] {
                            top: 108px;
                            left: calc(50% - 160px + 10px);
                            width: 299px;
                            height: 79px;
                        }
                        #rec835158907 .tn-group[data-group-id="173327789632952180"] #molecule-173327789632952180 {
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733277759754"] {
                        color: #005051;
                        z-index: 13;
                        top: 0px;
                        left: 0px;
                        width: auto;
                        height: auto;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733277759754"] .tn-atom {
                        vertical-align: middle;
                        white-space: nowrap;
                        color: #005051;
                        font-size: 32px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733277759754"] {
                            top: 0px;
                            left: 0px;
                            width: 281px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835158907 .tn-elem[data-elem-id="1733277759754"] {
                            top: 0px;
                            left: 0px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733277759754"] {
                            top: 0px;
                            left: 0px;
                            width: 299px;
                            height: auto;
                        }
                        #rec835158907 .tn-elem[data-elem-id="1733277759754"] .tn-atom {
                            font-size: 34px;
                            background-size: cover;
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733277759762"] {
                        color: #008486;
                        z-index: 14;
                        top: 15px;
                        left: 294px;
                        width: auto;
                        height: auto;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733277759762"] .tn-atom {
                        vertical-align: middle;
                        white-space: nowrap;
                        color: #008486;
                        font-size: 20px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733277759762"] {
                            top: 15px;
                            left: 289px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835158907 .tn-elem[data-elem-id="1733277759762"] {
                            top: 15px;
                            left: 289px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733277759762"] {
                            top: 53px;
                            left: 231px;
                            width: auto;
                            height: auto;
                        }
                        #rec835158907 .tn-elem[data-elem-id="1733277759762"] .tn-atom {
                            vertical-align: middle;
                            white-space: nowrap;
                            background-size: cover;
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278064502"] {
                        color: #008486;
                        z-index: 16;
                        top: 65px;
                        left: calc(50% - 600px + 80px);
                        width: 400px;
                        height: auto;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278064502"] .tn-atom {
                        vertical-align: middle;
                        color: #008486;
                        font-size: 18px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278064502"] {
                            top: 65px;
                            left: calc(50% - 480px + 70px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278064502"] {
                            top: 30px;
                            left: calc(50% - 160px + 10px);
                            height: auto;
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278064486"] {
                        color: #005051;
                        z-index: 17;
                        top: 104px;
                        left: calc(50% - 600px + 80px);
                        width: 400px;
                        height: auto;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278064486"] .tn-atom {
                        vertical-align: middle;
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278064486"] {
                            top: 104px;
                            left: calc(50% - 480px + 70px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278064486"] {
                            top: 69px;
                            left: calc(50% - 160px + 10px);
                            height: auto;
                        }
                        #rec835158907 .tn-elem[data-elem-id="1733278064486"] .tn-atom {
                            font-size: 21px;
                            background-size: cover;
                        }
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278321274"] {
                        color: #ffffff;
                        text-align: center;
                        z-index: 18;
                        top: 70px;
                        left: calc(50% - 600px + 880px);
                        width: 240px;
                        height: 69px;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278321274"] .tn-atom {
                        color: #ffffff;
                        font-size: 18px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 20px 20px 20px 20px;
                        background-image: linear-gradient(0turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278321274"] .tn-atom::before,
                    #rec835158907 .tn-elem[data-elem-id="1733278321274"] .tn-atom::after {
                        content: "";
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        left: 0;
                        top: 0;
                        box-sizing: content-box;
                        pointer-events: none;
                        border-radius: 20px 20px 20px 20px;
                        transition: opacity 0.2s ease-in-out;
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278321274"] .tn-atom::before {
                        z-index: -2;
                        opacity: 1;
                        background-color: transparent;
                        background-image: linear-gradient(0turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278321274"] .tn-atom::after {
                        z-index: -1;
                        opacity: 0;
                        background-color: transparent;
                        background-image: linear-gradient(0.258turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                    }
                    #rec835158907 .tn-elem[data-elem-id="1733278321274"] .tn-atom {
                        position: relative;
                        z-index: 1;
                        background-color: transparent;
                        background-image: none;
                        border: none;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        height: 100%;
                        height: inherit;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec835158907 .tn-elem[data-elem-id="1733278321274"] .tn-atom:hover::after {
                            opacity: 1;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278321274"] {
                            left: calc(50% - 480px + 870px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835158907 .tn-elem[data-elem-id="1733278321274"] {
                            top: 220px;
                            left: calc(50% - 160px + 10px);
                            width: 300px;
                        }
                    }

.container,
#rec835524301 .t396__artboard {
	max-width: 1160px;
	margin: 0 auto;
}

#rec835524301 .t396__artboard {
                        height: auto;
						margin-top: 100px;
						margin-bottom: 20px;
                    }
                    #rec835524301 .t396__filter {
                        height: auto;
                    }
                    #rec835524301 .t396__carrier {
                        height: auto;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
						#rec835524301 {
							margin-top: 50px;
							padding-left: 41px;
						}
                        #rec835524301 .t396__artboard,
                        #rec835524301 .t396__filter,
                        #rec835524301 .t396__carrier {
                        }
                        #rec835524301 .t396__filter {
                        }
                        #rec835524301 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835524301 .t396__artboard,
                        #rec835524301 .t396__filter,
                        #rec835524301 .t396__carrier {
                        }
                        #rec835524301 .t396__filter {
                        }
                        #rec835524301 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835524301 .t396__artboard,
                        #rec835524301 .t396__filter,
                        #rec835524301 .t396__carrier {
                        }
                        #rec835524301 .t396__filter {
                        }
                        #rec835524301 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835524301 .t396__artboard,
                        #rec835524301 .t396__filter,
                        #rec835524301 .t396__carrier {
                            height: auto;
                        }
                        #rec835524301 .t396__filter {
                        }
                        #rec835524301 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835524301 .tn-elem[data-elem-id="1733268654950"] {
                        color: #ffffff;
                        z-index: 3;
                        top: 0 !important;
                        left: 0 !important;
                        width: 874px;
                        height: auto;
						position: relative;
                    }
                    #rec835524301 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                        color: #ffffff;
                        font-size: 60px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835524301 .tn-elem[data-elem-id="1733268654950"] {
                            left: 0 !important;
                            height: auto;
							position: relative;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835524301 .tn-elem[data-elem-id="1733268654950"] {
                            top: 90px;
                            width: 300px;
                            height: auto;
                        }
                        #rec835524301 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                            font-size: 30px;
                            background-size: cover;
                        }
                    }
                    #rec835524301 .tn-elem[data-elem-id="1733268654955"] {
                        color: #005051;
                        z-index: 4;
                         top: 0 !important;
                        left: 0 !important;
                        width: 838px;
                        height: auto;
 						position: relative; 
                    }
                    #rec835524301 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                        color: #005051;
                        font-size: 25px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835524301 .tn-elem[data-elem-id="1733268654955"] {
                            left: 0 !important;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835524301 .tn-elem[data-elem-id="1733268654955"] {
                            top: 0 !important;
                            width: 300px;
                            height: auto;
                        }
                        #rec835524301 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }

 #rec835526199 .t958__author-name {
                        color: #005051;
                    }
                    #rec835526199 .t958__author-descr {
                        color: #005051;
                    }

#rec835526199 .t958__card-wrapper {
                        border-radius: 50px;
                    }

#rec835152993 .t396__artboard {
                        height: 290px;
                    }
                    #rec835152993 .t396__filter {
                        height: 290px;
                    }
                    #rec835152993 .t396__carrier {
                        height: 290px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152993 .t396__artboard,
                        #rec835152993 .t396__filter,
                        #rec835152993 .t396__carrier {
                        }
                        #rec835152993 .t396__filter {
                        }
                        #rec835152993 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835152993 .t396__artboard,
                        #rec835152993 .t396__filter,
                        #rec835152993 .t396__carrier {
                        }
                        #rec835152993 .t396__filter {
                        }
                        #rec835152993 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835152993 .t396__artboard,
                        #rec835152993 .t396__filter,
                        #rec835152993 .t396__carrier {
                        }
                        #rec835152993 .t396__filter {
                        }
                        #rec835152993 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152993 .t396__artboard,
                        #rec835152993 .t396__filter,
                        #rec835152993 .t396__carrier {
                            height: 190px;
                        }
                        #rec835152993 .t396__filter {
                        }
                        #rec835152993 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835152993 .tn-elem[data-elem-id="1733268654950"] {
                        color: #ffffff;
                        z-index: 3;
                        top: 140px;
                        left: calc(50% - 600px + 20px);
                        width: 874px;
                        height: auto;
                    }
                    #rec835152993 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                        color: #ffffff;
                        font-size: 60px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152993 .tn-elem[data-elem-id="1733268654950"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152993 .tn-elem[data-elem-id="1733268654950"] {
                            top: 90px;
                            width: 300px;
                            height: auto;
                        }
                        #rec835152993 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                            font-size: 30px;
                            background-size: cover;
                        }
                    }
                    #rec835152993 .tn-elem[data-elem-id="1733268654955"] {
                        color: #005051;
                        z-index: 4;
                        top: 233px;
                        left: calc(50% - 600px + 20px);
                        width: 838px;
                        height: auto;
                    }
                    #rec835152993 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                        color: #005051;
                        font-size: 25px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835152993 .tn-elem[data-elem-id="1733268654955"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835152993 .tn-elem[data-elem-id="1733268654955"] {
                            top: 147px;
                            width: 300px;
                            height: auto;
                        }
                        #rec835152993 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }

#rec835154096 .t-feed__parts-switch-btn {
                        border: 1px solid #000000;
                        border-radius: 40px;
                    }
                    #rec835154096 .t-feed__parts-switch-btn span,
                    #rec835154096 .t-feed__parts-switch-btn a {
                        color: #000000;
                        padding: 6px 18px 6px;
                        border-radius: 40px;
                    }
                    #rec835154096 .t-feed__parts-switch-btn.t-active {
                        background-color: #000000;
                    }
                    #rec835154096 .t-feed__parts-switch-btn.t-active span,
                    #rec835154096 .t-feed__parts-switch-btn.t-active a {
                        color: #ffffff !important;
                    }

#rec835154096 .t-feed__post-popup__cover-wrapper .t-slds__arrow {
                        background-color: rgba(255, 255, 255, 1);
                    }

 #rec835154096 .t-feed__post-popup__cover-wrapper .t-slds__bullet_active .t-slds__bullet_body,
                    #rec835154096 .t-feed__post-popup__cover-wrapper .t-slds__bullet:hover .t-slds__bullet_body {
                        background-color: #222 !important;
                    }

 #rec835154096 .t-feed__parts-switch-btn {
                        color: #000000;
                        font-weight: 400;
                    }

#rec835154080 .t396__artboard {
                        height: 290px;
                    }
                    #rec835154080 .t396__filter {
                        height: 290px;
                    }
                    #rec835154080 .t396__carrier {
                        height: 290px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835154080 .t396__artboard,
                        #rec835154080 .t396__filter,
                        #rec835154080 .t396__carrier {
                        }
                        #rec835154080 .t396__filter {
                        }
                        #rec835154080 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835154080 .t396__artboard,
                        #rec835154080 .t396__filter,
                        #rec835154080 .t396__carrier {
                        }
                        #rec835154080 .t396__filter {
                        }
                        #rec835154080 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835154080 .t396__artboard,
                        #rec835154080 .t396__filter,
                        #rec835154080 .t396__carrier {
                        }
                        #rec835154080 .t396__filter {
                        }
                        #rec835154080 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835154080 .t396__artboard,
                        #rec835154080 .t396__filter,
                        #rec835154080 .t396__carrier {
                            height: 208px;
                        }
                        #rec835154080 .t396__filter {
                        }
                        #rec835154080 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835154080 .tn-elem[data-elem-id="1733268654950"] {
                        color: #ffffff;
                        z-index: 3;
                        top: 140px;
                        left: calc(50% - 600px + 20px);
                        width: 874px;
                        height: auto;
                    }
                    #rec835154080 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                        color: #ffffff;
                        font-size: 60px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835154080 .tn-elem[data-elem-id="1733268654950"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835154080 .tn-elem[data-elem-id="1733268654950"] {
                            top: 90px;
                            height: auto;
                        }
                        #rec835154080 .tn-elem[data-elem-id="1733268654950"] .tn-atom {
                            font-size: 29px;
                            background-size: cover;
                        }
                    }
                    #rec835154080 .tn-elem[data-elem-id="1733268654955"] {
                        color: #005051;
                        z-index: 4;
                        top: 233px;
                        left: calc(50% - 600px + 20px);
                        width: 838px;
                        height: auto;
                    }
                    #rec835154080 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                        color: #005051;
                        font-size: 25px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835154080 .tn-elem[data-elem-id="1733268654955"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835154080 .tn-elem[data-elem-id="1733268654955"] {
                            top: 145px;
                            width: 300px;
                            height: auto;
                        }
                        #rec835154080 .tn-elem[data-elem-id="1733268654955"] .tn-atom {
                            font-size: 20px;
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }

#rec835153142 .t668__title {
                        color: #005051;
                    }
                    #rec835153142 .t668__text {
                        font-size: 20px;
                        color: #008486;
                        font-family: "Roboto";
                    }

#rec835153142 .t668__wrapper {
                        border-radius: 30px;
                    }

#rec835155640 .t396__artboard {
                        height: 200px;
                    }
                    #rec835155640 .t396__filter {
                        height: 200px;
                    }
                    #rec835155640 .t396__carrier {
                        height: 200px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835155640 .t396__artboard,
                        #rec835155640 .t396__filter,
                        #rec835155640 .t396__carrier {
                        }
                        #rec835155640 .t396__filter {
                        }
                        #rec835155640 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835155640 .t396__artboard,
                        #rec835155640 .t396__filter,
                        #rec835155640 .t396__carrier {
                        }
                        #rec835155640 .t396__filter {
                        }
                        #rec835155640 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835155640 .t396__artboard,
                        #rec835155640 .t396__filter,
                        #rec835155640 .t396__carrier {
                        }
                        #rec835155640 .t396__filter {
                        }
                        #rec835155640 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835155640 .t396__artboard,
                        #rec835155640 .t396__filter,
                        #rec835155640 .t396__carrier {
                            height: 160px;
                        }
                        #rec835155640 .t396__filter {
                        }
                        #rec835155640 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835155640 .tn-elem[data-elem-id="1733274400269"] {
                        color: #ffffff;
                        text-align: center;
                        z-index: 3;
                        top: 30px;
                        left: calc(50% - 600px + 420px);
                        width: 360px;
                        height: 69px;
                    }
                    #rec835155640 .tn-elem[data-elem-id="1733274400269"] .tn-atom {
                        color: #ffffff;
                        font-size: 18px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 20px;
                        background-image: linear-gradient(0turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    #rec835155640 .tn-elem[data-elem-id="1733274400269"] .tn-atom::before,
                    #rec835155640 .tn-elem[data-elem-id="1733274400269"] .tn-atom::after {
                        content: "";
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        left: 0;
                        top: 0;
                        box-sizing: content-box;
                        pointer-events: none;
                        border-radius: 20px;
                        transition: opacity 0.2s ease-in-out;
                    }
                    #rec835155640 .tn-elem[data-elem-id="1733274400269"] .tn-atom::before {
                        z-index: -2;
                        opacity: 1;
                        background-color: transparent;
                        background-image: linear-gradient(0turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                    }
                    #rec835155640 .tn-elem[data-elem-id="1733274400269"] .tn-atom::after {
                        z-index: -1;
                        opacity: 0;
                        background-color: transparent;
                        background-image: linear-gradient(0.258turn, rgba(0, 80, 81, 1) 0%, rgba(0, 132, 134, 1) 100%);
                    }
                    #rec835155640 .tn-elem[data-elem-id="1733274400269"] .tn-atom {
                        position: relative;
                        z-index: 1;
                        background-color: transparent;
                        background-image: none;
                        border: none;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        height: 100%;
                        height: inherit;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec835155640 .tn-elem[data-elem-id="1733274400269"] .tn-atom:hover::after {
                            opacity: 1;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835155640 .tn-elem[data-elem-id="1733274400269"] {
                            left: calc(50% - 480px + 300px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835155640 .tn-elem[data-elem-id="1733274400269"] {
                            left: calc(50% - 320px + 140px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835155640 .tn-elem[data-elem-id="1733274400269"] {
                            left: calc(50% - 240px + 60px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835155640 .tn-elem[data-elem-id="1733274400269"] {
                            top: 30px;
                            left: calc(50% - 160px + 10px);
                            width: 300px;
                        }
                    }

#rec829894718 .t396__artboard {
                        height: 250px;
                        background-color: #000000;
                    }
                    #rec829894718 .t396__filter {
                        height: 250px;
                    }
                    #rec829894718 .t396__carrier {
                        height: 250px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .t396__artboard,
                        #rec829894718 .t396__filter,
                        #rec829894718 .t396__carrier {
                        }
                        #rec829894718 .t396__filter {
                        }
                        #rec829894718 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .t396__artboard,
                        #rec829894718 .t396__filter,
                        #rec829894718 .t396__carrier {
                            height: 440px;
                        }
                        #rec829894718 .t396__filter {
                        }
                        #rec829894718 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829894718 .t396__artboard,
                        #rec829894718 .t396__filter,
                        #rec829894718 .t396__carrier {
                        }
                        #rec829894718 .t396__filter {
                        }
                        #rec829894718 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894718 .t396__artboard,
                        #rec829894718 .t396__filter,
                        #rec829894718 .t396__carrier {
                        }
                        #rec829894718 .t396__filter {
                        }
                        #rec829894718 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275375947"] {
                        color: #ffffff;
                        text-align: left;
                        z-index: 3;
                        top: 67px;
                        left: calc(50% - 600px + 1003px);
                        width: 179px;
                        height: 26px;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275375947"] .tn-atom {
                        color: #ffffff;
                        font-size: 17px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 30px 30px 30px 30px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec829894718 .tn-elem[data-elem-id="1733275375947"] .tn-atom:hover {
                        }
                        #rec829894718 .tn-elem[data-elem-id="1733275375947"] .tn-atom:hover {
                            color: #008486;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275375947"] {
                            left: calc(50% - 480px + 771px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275375947"] {
                            top: 227px;
                            left: calc(50% - 320px + 46px);
                            width: 179px;
                            height: 26px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499419"] {
                        z-index: 4;
                        top: 65px;
                        left: calc(50% - 600px + 538px);
                        width: 30px;
                        height: auto;
                    }
                    @media (min-width: 1200px) {
                        #rec829894718 .tn-elem.t396__elem--anim-hidden[data-elem-id="1733274499419"] {
                            opacity: 0;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499419"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499419"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499419"] {
                            left: calc(50% - 480px + 418px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499419"] {
                            top: 151px;
                            left: calc(50% - 320px + 8px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499419"] {
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499419"] {
                            height: auto;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499426"] {
                        z-index: 5;
                        top: 64px;
                        left: calc(50% - 600px + 584px);
                        width: 32px;
                        height: auto;
                    }
                    @media (min-width: 1200px) {
                        #rec829894718 .tn-elem.t396__elem--anim-hidden[data-elem-id="1733274499426"] {
                            opacity: 0;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499426"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499426"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499426"] {
                            left: calc(50% - 480px + 464px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499426"] {
                            top: 150px;
                            left: calc(50% - 320px + 54px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499426"] {
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499426"] {
                            height: auto;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499433"] {
                        z-index: 6;
                        top: 65px;
                        left: calc(50% - 600px + 632px);
                        width: 30px;
                        height: auto;
                    }
                    @media (min-width: 1200px) {
                        #rec829894718 .tn-elem.t396__elem--anim-hidden[data-elem-id="1733274499433"] {
                            opacity: 0;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499433"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499433"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499433"] {
                            left: calc(50% - 480px + 512px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499433"] {
                            top: 151px;
                            left: calc(50% - 320px + 102px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499433"] {
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499433"] {
                            height: auto;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499361"] {
                        z-index: 8;
                        top: 50px;
                        left: calc(50% - 600px + 20px);
                        width: 60px;
                        height: auto;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499361"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499361"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499361"] {
                            top: 50px;
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499361"] {
                            top: 50px;
                            left: calc(50% - 320px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499361"] {
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499361"] {
                            height: auto;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499371"] {
                        color: #ffffff;
                        z-index: 9;
                        top: 65px;
                        left: calc(50% - 600px + 98px);
                        width: 142px;
                        height: auto;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733274499371"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 20px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 900;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499371"] {
                            top: 65px;
                            left: calc(50% - 480px + 88px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733274499371"] {
                            top: 65px;
                            left: calc(50% - 320px + 88px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275332837"] {
                        z-index: 10;
                        top: 68px;
                        left: calc(50% - 600px + 967px);
                        width: 24px;
                        height: auto;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275332837"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275332837"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275332837"] {
                            left: calc(50% - 480px + 735px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275332837"] {
                            top: 228px;
                            left: calc(50% - 320px + 10px);
                            width: 24px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275332837"] {
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275332837"] {
                            height: auto;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275351652"] {
                        z-index: 11;
                        top: 113px;
                        left: calc(50% - 600px + 967px);
                        width: 24px;
                        height: auto;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275351652"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275351652"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275351652"] {
                            left: calc(50% - 480px + 735px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275351652"] {
                            top: 273px;
                            left: calc(50% - 320px + 10px);
                            width: 24px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275351652"] {
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275351652"] {
                            height: auto;
                        }
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275499863"] {
                        color: #ffffff;
                        text-align: left;
                        z-index: 12;
                        top: 112px;
                        left: calc(50% - 600px + 1003px);
                        width: 179px;
                        height: 26px;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275499863"] .tn-atom {
                        color: #ffffff;
                        font-size: 17px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 30px 30px 30px 30px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec829894718 .tn-elem[data-elem-id="1733275499863"] .tn-atom:hover {
                        }
                        #rec829894718 .tn-elem[data-elem-id="1733275499863"] .tn-atom:hover {
                            color: #008486;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275499863"] {
                            left: calc(50% - 480px + 771px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275499863"] {
                            top: 272px;
                            left: calc(50% - 320px + 46px);
                            width: 179px;
                            height: 26px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275593040"] {
                        color: #ffffff;
                        z-index: 13;
                        top: 178px;
                        left: calc(50% - 600px + 20px);
                        width: auto;
                        height: auto;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1733275593040"] .tn-atom {
                        vertical-align: middle;
                        white-space: nowrap;
                        color: #ffffff;
                        font-size: 14px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.3;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275593040"] {
                            left: calc(50% - 480px + 10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1733275593040"] {
                            top: 338px;
                            left: calc(50% - 320px + 10px);
                            width: 211px;
                            height: auto;
                        }
                        #rec829894718 .tn-elem[data-elem-id="1733275593040"] {
                            text-align: left;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec829894718 .tn-elem[data-elem-id="1748558744648"] {
                        color: #ffffff;
                        text-align: right;
                        z-index: 14;
                        top: 178px;
                        left: calc(50% - 600px + 878px);
                        width: auto;
                        height: auto;
                    }
                    #rec829894718 .tn-elem[data-elem-id="1748558744648"] .tn-atom {
                        vertical-align: middle;
                        white-space: nowrap;
                        color: #ffffff;
                        font-size: 14px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.3;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec829894718 .tn-elem[data-elem-id="1748558744648"] {
                            left: calc(50% - 480px + 646px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec829894718 .tn-elem[data-elem-id="1748558744648"] {
                            top: 368px;
                            left: calc(50% - 320px + 10px);
                            width: 304px;
                            height: auto;
                        }
                        #rec829894718 .tn-elem[data-elem-id="1748558744648"] {
                            text-align: left;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }

#rec835166575 .t396__artboard {
                        height: 670px;
                    }
                    #rec835166575 .t396__filter {
                        height: 670px;
                    }
                    #rec835166575 .t396__carrier {
                        height: 670px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .t396__artboard,
                        #rec835166575 .t396__filter,
                        #rec835166575 .t396__carrier {
                        }
                        #rec835166575 .t396__filter {
                        }
                        #rec835166575 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .t396__artboard,
                        #rec835166575 .t396__filter,
                        #rec835166575 .t396__carrier {
                        }
                        #rec835166575 .t396__filter {
                        }
                        #rec835166575 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .t396__artboard,
                        #rec835166575 .t396__filter,
                        #rec835166575 .t396__carrier {
                        }
                        #rec835166575 .t396__filter {
                        }
                        #rec835166575 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .t396__artboard,
                        #rec835166575 .t396__filter,
                        #rec835166575 .t396__carrier {
                        }
                        #rec835166575 .t396__filter {
                        }
                        #rec835166575 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283440050"] {
                        z-index: 4;
                        top: 0px;
                        left: calc(50% - 600px + 400px);
                        width: 400px;
                        height: 640px;
                        -webkit-backdrop-filter: blur(8px);
                        backdrop-filter: blur(8px);
                        border-radius: 50px 50px 50px 50px;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283440050"] .tn-atom {
                        border-radius: 50px 50px 50px 50px;
                        background-color: #ffffff;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283440050"] {
                            left: calc(50% - 480px + 280px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283440050"] {
                            top: 0px;
                            left: calc(50% - 320px + 120px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283440050"] {
                            top: 0px;
                            left: calc(50% - 240px + 40px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283440050"] {
                            top: 0px;
                            left: calc(50% - 160px + -40px);
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283923953"] {
                        z-index: 5;
                        top: 454px;
                        left: calc(50% - 600px + 450px);
                        width: 300px;
                        height: 1px;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283923953"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        opacity: 0.1;
                        background-color: #008486;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283923953"] {
                            top: 454px;
                            left: calc(50% - 160px + 450px);
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733282926353"] {
                        z-index: 6;
                        top: 100px;
                        left: calc(50% - 600px + 450px);
                        width: 300px;
                        height: auto;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733282926353"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .tn-elem[data-elem-id="1733282926353"] {
                            left: calc(50% - 480px + 330px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .tn-elem[data-elem-id="1733282926353"] {
                            top: 110px;
                            left: calc(50% - 320px + 170px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .tn-elem[data-elem-id="1733282926353"] {
                            top: 110px;
                            left: calc(50% - 240px + 90px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733282926353"] {
                            top: 110px;
                            left: calc(50% - 160px + 10px);
                            height: auto;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283128125"] {
                        color: #005051;
                        text-align: center;
                        z-index: 7;
                        top: 40px;
                        left: calc(50% - 600px + 450px);
                        width: 300px;
                        height: auto;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283128125"] .tn-atom {
                        vertical-align: middle;
                        color: #005051;
                        font-size: 26px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 600;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283128125"] {
                            left: calc(50% - 480px + 330px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283128125"] {
                            top: 40px;
                            left: calc(50% - 320px + 170px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283128125"] {
                            top: 40px;
                            left: calc(50% - 240px + 90px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283128125"] {
                            top: 40px;
                            left: calc(50% - 160px + 10px);
                            height: auto;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283365418"] {
                        color: #008486;
                        text-align: center;
                        z-index: 8;
                        top: 469px;
                        left: calc(50% - 600px + 450px);
                        width: 300px;
                        height: auto;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283365418"] .tn-atom {
                        vertical-align: middle;
                        color: #008486;
                        font-size: 16px;
                        font-family: "Roboto", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283365418"] {
                            left: calc(50% - 480px + 330px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283365418"] {
                            top: 458px;
                            left: calc(50% - 320px + 170px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283365418"] {
                            top: 458px;
                            left: calc(50% - 240px + 90px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283365418"] {
                            top: 458px;
                            left: calc(50% - 160px + 10px);
                            height: auto;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283540574"] {
                        z-index: 9;
                        top: 531px;
                        left: calc(50% - 600px + 538px);
                        width: 30px;
                        height: auto;
                    }
                    @media (min-width: 1200px) {
                        #rec835166575 .tn-elem.t396__elem--anim-hidden[data-elem-id="1733283540574"] {
                            opacity: 0;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283540574"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283540574"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540574"] {
                            left: calc(50% - 480px + 418px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540574"] {
                            top: 521px;
                            left: calc(50% - 320px + 258px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540574"] {
                            top: 521px;
                            left: calc(50% - 240px + 178px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540574"] {
                            top: 521px;
                            left: calc(50% - 160px + 98px);
                            height: auto;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283540585"] {
                        z-index: 10;
                        top: 530px;
                        left: calc(50% - 600px + 584px);
                        width: 32px;
                        height: auto;
                    }
                    @media (min-width: 1200px) {
                        #rec835166575 .tn-elem.t396__elem--anim-hidden[data-elem-id="1733283540585"] {
                            opacity: 0;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283540585"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283540585"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540585"] {
                            left: calc(50% - 480px + 464px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540585"] {
                            top: 520px;
                            left: calc(50% - 320px + 304px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540585"] {
                            top: 520px;
                            left: calc(50% - 240px + 224px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540585"] {
                            top: 520px;
                            left: calc(50% - 160px + 144px);
                            height: auto;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283540592"] {
                        z-index: 11;
                        top: 531px;
                        left: calc(50% - 600px + 632px);
                        width: 30px;
                        height: auto;
                    }
                    @media (min-width: 1200px) {
                        #rec835166575 .tn-elem.t396__elem--anim-hidden[data-elem-id="1733283540592"] {
                            opacity: 0;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283540592"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283540592"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540592"] {
                            left: calc(50% - 480px + 512px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540592"] {
                            top: 521px;
                            left: calc(50% - 320px + 352px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540592"] {
                            top: 521px;
                            left: calc(50% - 240px + 272px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283540592"] {
                            top: 521px;
                            left: calc(50% - 160px + 192px);
                            height: auto;
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283582758"] {
                        color: #005051;
                        text-align: center;
                        z-index: 12;
                        top: 578px;
                        left: calc(50% - 600px + 507px);
                        width: 187px;
                        height: 26px;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283582758"] .tn-atom {
                        color: #005051;
                        font-size: 17px;
                        font-family: "Unbounded", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 500;
                        border-radius: 30px 30px 30px 30px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media (hover), (min-width: 0\0) {
                        #rec835166575 .tn-elem[data-elem-id="1733283582758"] .tn-atom:hover {
                        }
                        #rec835166575 .tn-elem[data-elem-id="1733283582758"] .tn-atom:hover {
                            color: #008486;
                        }
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283582758"] {
                            left: calc(50% - 480px + 387px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283582758"] {
                            top: 578px;
                            left: calc(50% - 320px + 227px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283582758"] {
                            top: 578px;
                            left: calc(50% - 240px + 147px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283582758"] {
                            top: 578px;
                            left: calc(50% - 160px + 67px);
                        }
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283699770"] {
                        z-index: 13;
                        top: 25px;
                        left: calc(50% - 600px + 765px);
                        width: 10px;
                        height: auto;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283699770"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec835166575 .tn-elem[data-elem-id="1733283699770"] .tn-atom__img {
                        border-radius: 0px 0px 0px 0px;
                        object-position: center center;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283699770"] {
                            left: calc(50% - 480px + 645px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283699770"] {
                            top: 25px;
                            left: calc(50% - 320px + 485px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283699770"] {
                            top: 25px;
                            left: calc(50% - 240px + 405px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec835166575 .tn-elem[data-elem-id="1733283699770"] {
                            top: 25px;
                            left: calc(50% - 160px + 325px);
                            height: auto;
                        }
                    }

#rec835166575[data-record-type="396"] {
                        display: none;
                    }
                    .t1093 .t-popup #rec835166575[data-record-type="396"] {
                        display: block;
                    }

#rec835166592 .t1093 .t-popup__bg {
                        background-color: rgba(0, 0, 0, 0.7);
                        -webkit-backdrop-filter: blur(4px);
                        backdrop-filter: blur(4px);
                    }

#rec835166592 .t1093 .t-popup.t-popup-anim-fadein .t-popup__container {
                        transition-timing-function: ease-in-out;
                    }

@media screen and (max-width: 960px) {
                        #rec835168713 .t898 .t898__btn {
                            bottom: 80px !important;
                        }
                        #rec835168713 .t898__btn-text::after {
                        }
                    }

@media screen and (min-width: 981px) {
                        #rec835156709 .t890__arrow:hover svg path {
                            stroke: #ffffff;
                            stroke-width: 1;
                        }
                        #rec835156709 .t890__arrow:focus-visible svg path {
                            stroke: #ffffff;
                            stroke-width: 1;
                        }
                        #rec835156709 .t890__arrow:hover svg rect {
                            fill: #008486;
                            fill-opacity: 1;
                        }
                        #rec835156709 .t890__arrow:focus-visible svg rect {
                            fill: #008486;
                            fill-opacity: 1;
                        }
                    }
                    #rec835156709 .t890__arrow {
                        border-radius: 53px;
                    }

		#rec835157093 .t-text {
                        color: #005051;
			display: -webkit-flex;
			display: -moz-flex;
			display: -ms-flex;
			display: -o-flex;
			display: flex;
			-webkit-flex-direction: column;
			-moz-flex-direction: column;
			-ms-flex-direction: column;
			-o-flex-direction: column;
			flex-direction: column;
			gap: 20px;
                    }

#rec835157093 .t-text a {
	color: #005051;
}

#rec835157093 .t-text a:hover {
	text-decoration: none;
}

.modal-loader {
    text-align: center;
    padding: 60px 20px;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(231, 76, 60, 0.3);
    border-top: 3px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-error {
    text-align: center;
    padding: 40px 20px;
}

.modal-error h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.modal-error p {
    color: #b8b8d4;
    margin-bottom: 30px;
}

.modal-article {
    color: #ffffff;
}

.modal-article-image {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.modal-article-image img {
    width: 100%;
    height: auto;
}

.modal-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #b8b8d4;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-article-meta > div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-article-meta:empty {
	margin: 0;
	padding: 0;
}

.modal-article-meta svg {
    opacity: 0.7;
}

.reading-time {
    color: #e74c3c !important;
    font-weight: 500;
}

.modal-article-tags .tag {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.modal-article-content {
    line-height: 1.8;
    margin-bottom: 40px;
}

.modal-article-content h2,
.modal-article-content h3,
.modal-article-content h4 {
    color: #ffffff;
    margin: 30px 0 20px 0;
}

.modal-article-content p {
    margin-bottom: 20px;
    color: #b8b8d4;
}

.modal-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.modal-article-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0;
	padding-bottom: 25px;
}

.article-share h4 {
    color: #000;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn.vk { 
    background: #4a76a8 !important; 
}

.share-btn.telegram { 
    background: #0088cc !important; 
}

.share-btn.whatsapp { 
    background: #25d366 !important; 
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    color: white !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .modal-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}