* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Lato, sans-serif;
    color: #000000;
}
.wrapper-padding-4702 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(161,227,216);
}
a {
    color: inherit;
    text-decoration: none;
}
svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.offer-board-8521 {
    background: rgb(161,227,216);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.offer-board-8521::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(6,154,142,0.5) 0%, transparent 100%);
    pointer-events: none;
}

.offer-board-8521 .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.pricing_holder {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.price_info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.price_info h2 {
    color: #000000;
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.price_info h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgb(6,154,142);
    border-radius: 10px;
}

.price_info .section_description {
    color: #000000;
    font-size: 13px;
    line-height: 1.6;
}

.price_types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 -30px;
}

.price_type {
    text-decoration: none;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    position: relative;
}

.price_type:nth-child(even) {
    transform: translateY(40px);
}

.price_type:hover {
    transform: scale(1.03) translateY(-5px);
    z-index: 2;
}

.price_type:nth-child(even):hover {
    transform: scale(1.03) translateY(35px);
}

.price_type_holder {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.4s ease;
}

.price_type_holder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(6,154,142,0.5) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price_type:hover .price_type_holder::after {
    opacity: 0.15;
}

.offer-board-8521 .photo {
    height: 300px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 95%);
}

.price_type_text {
    padding: 35px 40px;
    position: relative;
}

.price_type_text h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.price_type_text h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgb(5,80,73);
    transition: width 0.3s ease;
}

.price_type:hover .price_type_text h3::before {
    width: 80px;
}

.price_type_text .price_amount {
    display: inline-block;
    color: rgb(6,154,142);
    font-size: 37px;
    font-weight: 700;
    margin: 20px 0;
    padding: 5px 15px;
    position: relative;
    background: linear-gradient(90deg, rgb(6,154,142,0.5) 0%, transparent 100%);
    border-radius: 10px;
}

.price_type_text p {
    color: #000000;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 1200px) {
    .price_types {
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
        gap: 30px;
    }

    .price_type:nth-child(even) {
        transform: translateY(0);
    }

    .price_type:nth-child(even):hover {
        transform: scale(1.03) translateY(-5px);
    }

    .price_type_text {
        padding: 30px 35px;
    }

    .offer-board-8521 .photo {
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .offer-board-8521 {
        padding: 60px 0;
    }

    .pricing_holder {
        gap: 50px;
    }

    .price_info {
        padding: 0 20px;
    }

    .price_types {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 40px;
    }

    .offer-board-8521 .photo {
        height: 250px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 96%);
    }

    .price_type_text {
        padding: 25px 30px;
    }
}

@media screen and (max-width: 480px) {
    .offer-board-8521 {
        padding: 40px 0;
    }

    .pricing_holder {
        gap: 40px;
    }

    .price_types {
        gap: 30px;
    }

    .price_type_text {
        padding: 20px 25px;
    }

    .offer-board-8521 .photo {
        height: 220px;
    }

    .price_type_text .price_amount {
        font-size: calc(37px * 0.9);
    }
}
.advantages-overview-2934 .advantages_content h2 {
    color: rgb(5,80,73);
}

.advantages-overview-2934 .advantage_item svg, .advantages-overview-2934 .advantage_item svg path {
    fill: rgb(6,154,142);
}

.advantages-overview-2934 .advantage_item p {
    color: #000000;
}

.advantages-overview-2934 .advantage_item b {
    color: rgb(6,154,142);
}

.advantages-overview-2934 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.advantages-overview-2934 .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.advantages-overview-2934 .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.advantages-overview-2934 .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 33px;
    font-weight: 600;
}

.advantages-overview-2934 .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.advantages-overview-2934 .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.advantages-overview-2934 .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.advantages-overview-2934 .advantage_item svg, .advantages-overview-2934 .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-padding-4702 .advantages-overview-2934 .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .advantages-overview-2934 .advantages_content h2 {
        font-size: 30px;
    }

    .advantages-overview-2934 .advantages_holder {
        flex-direction: column;
    }

    .advantages-overview-2934 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-padding-4702 .advantages-overview-2934 .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-padding-4702 .advantages-overview-2934 {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgb(161,227,216);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.wrapper-padding-4702 .advantages-overview-2934 .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.wrapper-padding-4702 .advantages-overview-2934 .advantages_content h2 {
    font-size: 33px;
    font-weight: 700;
    color: rgb(6,154,142);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(6,154,142);
    padding-bottom: 8px;
}

.wrapper-padding-4702 .advantages-overview-2934 .advantages_description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 48px;
    max-width: 800px;
}

.wrapper-padding-4702 .advantages-overview-2934 .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.wrapper-padding-4702 .advantages-overview-2934 .advantage_item {
    background-color: #ffffff;
    padding: 20px;
    flex: 1 1 calc(25% - 24px);
    min-width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 29px;
}

.wrapper-padding-4702 .advantages-overview-2934 .advantage_image {
    margin-bottom: 16px;
}

.wrapper-padding-4702 .advantages-overview-2934 .advantage_item img,
.wrapper-padding-4702 .advantages-overview-2934 .advantage_item svg {
    width: 80px;
    height: 80px;
}

.wrapper-padding-4702 .advantages-overview-2934 .advantages_content h4 {
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    margin-top: 12px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-padding-4702 .advantages-overview-2934 .advantage_item {
        flex: 1 1 calc(50% - 24px);
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-padding-4702 .advantages-overview-2934 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .wrapper-padding-4702 .advantages-overview-2934 .advantages_content h2 {
        font-size: 45px;
    }

    .wrapper-padding-4702 .advantages-overview-2934 .advantages_holder {
        flex-direction: column;
        align-items: center;
    }

    .wrapper-padding-4702 .advantages-overview-2934 .advantage_item {
        width: 100%;
    }
}footer {
    background: rgb(5,80,73);
    color: #ffffff;
    font-family: Lato, sans-serif;
}
footer .footer {
    padding: 60px 20px;
    border-top: 2px solid rgb(6,154,142);
    border-bottom: 2px solid rgb(5,80,73);
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer .logo_holder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 20px;
    fill: rgb(6,154,142);
    border-radius: 10px;
}
footer .menu {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
footer .menu_holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
footer .menu a {
    text-decoration: none;
    font-size: 12px;
    margin: 5px 15px;
    padding: 10px 15px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(6,154,142);
    border-radius: 10px;
}
footer .menu a:hover {
    border-color: rgb(5,80,73);
}
footer .copyright {
    background: rgb(5,80,73);
    padding: 20px 10px;
    text-align: center;
    border-top: 1px solid rgb(6,154,142);
}
footer .copyright_info {
    font-size: 15px;
    color: #ffffff;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        flex-direction: column;
    }
    footer .menu_holder {
        flex-direction: column;
    }
    footer .menu a {
        margin: 10px 0;
        padding: 8px 20px;
        font-size: 16px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer {
        padding: 40px 10px;
    }
    footer .footer_info {
        padding: 0 10px;
    }
    footer .menu a {
        margin: 5px 0;
        padding: 10px 15px;
        font-size: 12px;
    }
    footer .logo_holder {
        margin-bottom: 10px;
    }
    footer .copyright {
        padding: 15px 5px;
    }
    footer .copyright_info {
        font-size: 12px;
    }
}header {
    background: rgb(6,154,142,0.5);
    padding-top: 35px;
}
.main_header .header_holder .logo_holder svg, header .header_holder .logo_holder img {
    width: 60px;
    height: 60px;
    fill: #ffffff;
    flex-shrink: 0;
    margin-right: 22px;
    margin-left: 12px;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_holder {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.main_header .header_description {
    padding-left: 22px;
    border-left: 2px solid #ffffff;
    width: calc(100% - 94px);
    font-size: 21px;
    color: #ffffff;
    font-weight: 700;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.main_header .header_menu {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}
.main_header .header_menu a {
    padding: 10px 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.main_header .header_menu a:hover {
    color: rgb(6,154,142);
}
@media only screen and (max-width: 1200px) {
    .main_header .header_holder {
        padding: 20px;
    }
}
@media only screen and (max-width: 800px) {
    .main_header .header_holder {
        padding: 0;
        height: auto;
        justify-content: center;
        align-items: center;
    }
    .main_header .header_description {
        text-align: center;
        width: 100%;
        border-left: none;
        border-bottom: 2px solid #ffffff;
        padding-bottom: 20px;
        padding-left: 0;
        height: auto;
        margin-top: 20px;
    }
    .main_header .header_menu {
        flex-direction: column;
    }
}.landing-page-2598 .title_page_holder {
    background-size: cover;
    background-position: center !important;
}

.landing-page-2598 .style_element h1 {
    color: rgb(5,80,73);
}

.landing-page-2598 .style_element h3 {
    color: rgb(5,80,73);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.landing-page-2598 .style_element p {
    color: #000000;
    text-align: right;
}

.landing-page-2598 {
    width: 100%;
}

.landing-page-2598 .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.landing-page-2598 .style_element {
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: #ffffff;
    width: 65%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 50px 50px 50px 30%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 680px;
    border-radius: 0;
}

.landing-page-2598 .style_element h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.landing-page-2598 .style_element p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .landing-page-2598 .title_page_holder {
        min-height: 320px;
        height: auto;
    }

    .landing-page-2598 .style_element {
        min-width: unset;
        width: 100%;
        clip-path: polygon(100% 100%, 100% -175%, 0 100%);
        padding: 100px 30px 30px 35%;
        text-align: right;
        min-width: unset;
    }

    .landing-page-2598 .style_element h1 {
        font-size: 18px;
    }

    .landing-page-2598 .style_element h3 {
        font-size: 16px;
    }

    .landing-page-2598 .style_element p {
        font-size: 14px;
    }


}

.wrapper-padding-4702 .landing-page-2598 .style_element {
    position: static;
    width: 100%;
    clip-path: none;
    height: 560px;
    background: linear-gradient(180deg, rgb(6,154,142,0.5) 0%, rgb(5,80,73,0.5) 100%);
    padding: 100px calc(50% - 600px);
    justify-content: flex-start;
    align-items: flex-start;
}

.wrapper-padding-4702 .landing-page-2598 {
    position: relative;
}

.wrapper-padding-4702 .landing-page-2598::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    z-index: 0;
}

.wrapper-padding-4702 .landing-page-2598 .title_page_holder {
    min-height: unset;
    height: auto;
}

.wrapper-padding-4702 .landing-page-2598 .style_element h1 {
    text-align: left;
    color: #ffffff;
    font-size: 60px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.wrapper-padding-4702 .landing-page-2598 .style_element h3 {
    text-align: left;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.wrapper-padding-4702 .landing-page-2598 .style_element p {
    text-align: left;
    color: #ffffff;
    font-size: 24px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1200px) {
    .wrapper-padding-4702 .landing-page-2598 .style_element {
        padding: 30px;
        height: 400px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-padding-4702 .landing-page-2598 .style_element {
        width: 100%;
        padding: 80px 30px;
        height: auto;
    }

    .wrapper-padding-4702 .landing-page-2598 .title_page_holder {
        height: auto;
    }
}.course-structure-8792 {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-family: Lato, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.course-structure-8792 h2 {
    color: rgb(6,154,142);
    font-size: 37px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.course-structure-8792 .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.course-structure-8792 .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.course-structure-8792 .course {
    background: rgb(161,227,216);
    border-radius: 11px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgb(6,154,142);
}

.course-structure-8792 .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.course-structure-8792 .photo {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgb(6,154,142);
}

.course-structure-8792 .text_holder {
    padding: 20px;
    text-align: left;
    width: 100%;
}

.course-structure-8792 h3 {
    font-size: 47px;
    font-weight: 700;
    color: rgb(5,80,73);
    margin-bottom: 10px;
}

.course-structure-8792 p {
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
}

.course-structure-8792 .button {
    background: rgb(6,154,142);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    display: inline-block;
    align-self: flex-start;
}

.course-structure-8792 .button:hover {
    background: rgb(5,80,73);
}

@media only screen and (max-width: 600px) {
    .course-structure-8792 {
        padding: 50px 0;
    }
    .course-structure-8792 h2 {
        font-size: 21px;
    }
    .course-structure-8792 .items {
        grid-template-columns: 1fr;
    }
    .course-structure-8792 h3 {
        font-size: 19px;
    }
    .course-structure-8792 .photo {
        height: 200px;
    }
    .course-structure-8792 p {
        font-size: 17px;
    }
    .course-structure-8792 .button {
        font-size: 18px;
    }
}

.wrapper-padding-4702 .course-structure-8792 {
    background: rgb(161,227,216);
    padding: 100px 0;
}

.wrapper-padding-4702 .course-structure-8792 .items .course .content {
    border-radius: 11px;
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

.wrapper-padding-4702 .course-structure-8792 .photo {
    border-bottom: none;
}

.wrapper-padding-4702 .course-structure-8792 .text_holder {
    background: rgb(161,227,216);
    padding: 30px;
    border-radius: 0 0  10px 10px;
    box-shadow: none;
    text-align: left;
}

.wrapper-padding-4702 .course-structure-8792 h3 {
    font-size: 47px;
    color: rgb(6,154,142);
    margin-bottom: 15px;
}

.wrapper-padding-4702 .course-structure-8792 p {
    font-size: 17px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.5;
}

.wrapper-padding-4702 .course-structure-8792 .button {
    background: rgb(5,80,73);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 11px;
    font-size: 18px;
    text-align: center;
}

.wrapper-padding-4702 .course-structure-8792 .button:hover {
    background: rgb(6,154,142);
}

@media only screen and (max-width: 800px) {
    .wrapper-padding-4702 .course-structure-8792 .items {
        grid-template-columns: 1fr;
    }
    .wrapper-padding-4702 .course-structure-8792 .text_holder {
        padding: 20px;
    }
    .wrapper-padding-4702 .course-structure-8792 h3 {
        font-size: 21px;
    }
    .wrapper-padding-4702 .course-structure-8792 p {
        font-size: 17px;
    }
    .wrapper-padding-4702 .course-structure-8792 .button {
        font-size: 18px;
        padding: 10px 20px;
    }
}
.company-overview-8726 {
    padding: 80px 0;
    background: rgb(5,80,73);
    color: #ffffff;
    font-family: Lato, sans-serif;
    position: relative;
    overflow: hidden;
}

.wrapper-padding-4702 .company-overview-8726 .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.wrapper-padding-4702 .company-overview-8726 .caption_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(6,154,142);
    padding: 40px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.wrapper-padding-4702 .company-overview-8726 .holder .photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid rgb(6,154,142);
    box-shadow: 0 0 15px rgb(6,154,142), 0 0 30px rgb(6,154,142,0.5);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.wrapper-padding-4702 .company-overview-8726 .holder .photo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgb(6,154,142), 0 0 50px rgb(6,154,142,0.5);
}

.wrapper-padding-4702 .company-overview-8726 .style_element {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    z-index: 2;
}

.wrapper-padding-4702 .company-overview-8726 .style_element:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgb(6,154,142), 0 0 50px rgb(6,154,142,0.5);
}

.wrapper-padding-4702 .company-overview-8726 h2 {
    font-size: 34px;
    font-weight: 700;
    margin-top: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.wrapper-padding-4702 .company-overview-8726 h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: rgb(6,154,142);
    display: block;
    margin: 10px auto 0;
    box-shadow: 0 0 10px rgb(6,154,142), 0 0 20px rgb(6,154,142,0.5);
}

.wrapper-padding-4702 .company-overview-8726 p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-top: 20px;
    position: relative;
}

.wrapper-padding-4702 .company-overview-8726 p::before {
    content: '';
    width: 5px;
    height: 100%;
    background: rgb(6,154,142);
    position: absolute;
    left: -20px;
    top: 0;
    box-shadow: 0 0 10px rgb(6,154,142), 0 0 20px rgb(6,154,142,0.5);
}

.wrapper-padding-4702 .company-overview-8726::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgb(6,154,142,0.5) 25%, transparent 25%, transparent 75%, rgb(6,154,142,0.5) 75%, rgb(6,154,142,0.5)), linear-gradient(45deg, rgb(6,154,142,0.5) 25%, transparent 25%, transparent 75%, rgb(6,154,142,0.5) 75%, rgb(6,154,142,0.5));
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.1;
}

@media only screen and (max-width: 1200px) {
    .wrapper-padding-4702 .company-overview-8726 .holder .photo {
        width: 250px;
        height: 250px;
    }
    .wrapper-padding-4702 .company-overview-8726 .style_element {
        padding: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-padding-4702 .company-overview-8726 .holder {
        padding: 0;
    }
    .wrapper-padding-4702 .company-overview-8726 .caption_holder {
        padding: 20px;
        border-radius: 10px;
    }

    .wrapper-padding-4702 .company-overview-8726 .style_element {
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .wrapper-padding-4702 .company-overview-8726 .holder .photo {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .wrapper-padding-4702 .company-overview-8726 .caption_holder {
        flex-direction: column;
    }
}header .top_plank {
    background: rgb(6,154,142);
    color:  #ffffff;
}
header .top_plank .top_plank_content div svg, header .top_plank .top_plank_content div svg path {
    fill: #ffffff;
}
header .top_plank .top_plank_content div span {
    color: #ffffff;
}
header .top_plank .top_plank_content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 10px 0;
    font-size: 16px;
    line-height: 21px;
    flex-wrap: wrap;
}
header .top_plank .top_plank_content div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
}
header .top_plank .top_plank_content div img, header .top_plank .top_plank_content div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.gratNote-0719 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(161,227,216);
    padding: 40px;
    border-radius: 13px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.gratNote-0719 .container {
    background-color: rgb(161,227,216);
    padding: 40px;
    border-radius: 13px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gratNote-0719 h2 {
    font-size: 46px;
    color: rgb(6,154,142);
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    font-weight: 600;
    border-bottom: 4px solid rgb(6,154,142);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}
.gratNote-0719 p {
    font-size: 12px;
    color: #000000;
    font-family: Lato, sans-serif;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto 0;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border-left: 4px solid rgb(5,80,73);
}
@media only screen and (max-width: 800px) {
    .gratNote-0719 {
        padding: 20px;
    }
    .gratNote-0719 .container {
        padding: 20px;
    }
    .gratNote-0719 h2 {
        font-size: 36px;
        padding-bottom: 5px;
    }
    .gratNote-0719 p {
        font-size: 14px;
        padding: 15px;
    }
}
.wrapper-padding-4702 .study-process-1927 {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.wrapper-padding-4702 .study-process-1927::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(6,154,142), rgb(5,80,73));
    z-index: -1;
}

.wrapper-padding-4702 .study-process-1927 .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wrapper-padding-4702 .study-process-1927 h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.wrapper-padding-4702 .study-process-1927 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgb(6,154,142);
}

.wrapper-padding-4702 .study-process-1927 p {
    font-size: 18px;
    color: #000000;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

@media only screen and (max-width: 800px) {
    .wrapper-padding-4702 .study-process-1927 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .wrapper-padding-4702 .study-process-1927 .holder {
        padding: 40px;
    }

    .wrapper-padding-4702 .study-process-1927 h2 {
        font-size: 36px;
    }
}
.find-support-2604 {
    color: #000000;
    background-color: rgb(161,227,216);
    padding: 80px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}
.find-support-2604 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.find-support-2604 .contact_holder {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.find-support-2604 .holder .info_holder div.open-for-clients-6408 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.find-support-2604 .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.find-support-2604 .holder .info_holder > div > div {
    margin: 5px 0;
}
.find-support-2604 h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: rgb(6,154,142);
    position: relative;
}
.find-support-2604 h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: rgb(6,154,142);
    left: calc(50% - 40px);
    bottom: -10px;
    border-radius: 10px;
}
.find-support-2604 .holder {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 20px;
}
.find-support-2604 .contact_description {
    flex: 1 1 100%;
    font-size: 13px;
    line-height: 1.6;
    color: #000000;
    border-left: 4px solid rgb(6,154,142);
    padding-left: 20px;
    position: relative;
}
.find-support-2604 .photo {
    flex: 1 1 320px;
    height: 320px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: center/cover no-repeat;
}
.find-support-2604 .info_holder {
    flex: 2 1 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
.find-support-2604 .info_holder > div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #000000;
}
.find-support-2604 .info_holder svg {
    width: 30px;
    height: 30px;
    fill: rgb(6,154,142);
}
.find-support-2604 .info_holder a {
    color: rgb(6,154,142);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.find-support-2604 .info_holder a:hover {
    color: rgb(5,80,73);
}
.find-support-2604 .holder .info_holder>div span {
    margin-left: 8px;
}
.find-support-2604 .contact_politics {
    padding: 20px;
    border-top: 2px solid rgb(6,154,142);
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.find-support-2604 .contact_politics > div {
    margin-bottom: 20px;
}
.find-support-2604 .contact_politics > div h4 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(6,154,142);
    margin-bottom: 10px;
}
.find-support-2604 .contact_politics > div p {
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
}
@media only screen and (max-width: 800px) {
    .find-support-2604 .holder {
        flex-direction: column;
    }
    
    .find-support-2604 .photo {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
    
    .find-support-2604 .info_holder {
        flex: 1 1 100%;
    }
    
    .find-support-2604 .contact_description {
        padding-left: 10px;
        border-left: none;
    }
}
.leadership-profile-9105 {
    padding: 100px 0;
    background: rgb(6,154,142,0.5);
    font-family: Lato, sans-serif;
}

.leadership-profile-9105 .holder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
}

.leadership-profile-9105 .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 19px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 100%;
    width: 100%;
}

.leadership-profile-9105 .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

.leadership-profile-9105 .photo {
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    border-radius: 19px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.leadership-profile-9105 .review:hover .photo {
    transform: scale(1.05);
}

.leadership-profile-9105 .worker_description {
    text-align: center;
}

.leadership-profile-9105 .review .name {
    font-size: 45px;
    color: rgb(5,80,73);
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.4s ease;
}

.leadership-profile-9105 .review:hover .name {
    color: rgb(6,154,142);
}

.leadership-profile-9105 .review span {
    font-size: 22px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 400;
}

.leadership-profile-9105 .review .quote {
    font-size: 14px;
    color: #000000;
    font-style: italic;
    line-height: 1.6;
    font-weight: 300;
}

@media only screen and (max-width: 1200px) {
    .leadership-profile-9105 .review {
        max-width: 90%;
    }
}

@media only screen and (max-width: 800px) {
    .leadership-profile-9105 {
        padding: 50px 20px;
    }

    .leadership-profile-9105 .holder {
        grid-template-columns: 1fr;
    }

    .leadership-profile-9105 .review {
        width: 100%;
    }

    .leadership-profile-9105 .photo {
        height: 300px;
    }
}

.wrapper-padding-4702 .leadership-profile-9105 {
    padding: 80px 0;
    background: rgb(5,80,73,0.5);
}

.wrapper-padding-4702 .leadership-profile-9105 .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 19px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.wrapper-padding-4702 .leadership-profile-9105 .review {
    flex-direction: row;
    width: 100%;
    max-width: none;
    box-shadow: none;
    border-radius: 19px;
}

.wrapper-padding-4702 .leadership-profile-9105 .photo {
    width: 40%;
    min-height: 300px;
    border-radius: 19px 0 0 19px;
    margin: 0;
}

.wrapper-padding-4702 .worker_description {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.wrapper-padding-4702 .leadership-profile-9105 .review .name {
    font-size: 29px;
    color: rgb(6,154,142);
    margin-bottom: 20px;
    font-weight: 700;
}

.wrapper-padding-4702 .leadership-profile-9105 .review span {
    font-size: 20px;
    color: rgb(5,80,73);
    margin-bottom: 20px;
}

.wrapper-padding-4702 .leadership-profile-9105 .review .quote {
    font-size: 14px;
    color: #000000;
    font-style: normal;
    text-align: left;
}

@media only screen and (max-width: 1000px) {
    .wrapper-padding-4702 .leadership-profile-9105 .review {
        flex-direction: column;
        padding: 10px;
    }

    .wrapper-padding-4702 .worker_description {
        width: 100%;
        text-align: center;
        padding: 10px;
        align-items: center;
    }

    .wrapper-padding-4702 .leadership-profile-9105 .photo {
        width: 100%;
        height: 300px;
        border-radius: 19px;
    }

    .wrapper-padding-4702 .leadership-profile-9105 .review .name,
    .wrapper-padding-4702 .leadership-profile-9105 .review span,
    .wrapper-padding-4702 .leadership-profile-9105 .review .quote {
        text-align: center;
    }
}
.contact-9376 {
    padding: 80px 20px;
    background: #ffffff;
    font-family: Lato, sans-serif;
    color: #000000;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-9376::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgb(6,154,142,0.5) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
}

.contact-9376::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(5,80,73,0.5),
        rgb(5,80,73,0.5) 10px,
        #ffffff 10px,
        #ffffff 20px
    );
    z-index: -2;
    opacity: 0.3;
}

.contact-9376 h3 {
    color: rgb(6,154,142);
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-9376 .form {
    background: #ffffff;
    border-radius: 17px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-9376 .form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-9376 form input,
.contact-9376 form textarea {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgb(5,80,73);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-9376 form input:focus,
.contact-9376 form textarea:focus {
    border-color: rgb(6,154,142);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-9376 form .button {
    background: rgb(6,154,142);
    color: #ffffff;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-9376 form .button:hover {
    background: rgb(5,80,73);
    transform: scale(1.05);
}

.contact-9376 .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-9376 .form form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-9376 .name_holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-9376 .form_text {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
    font-size: 13px;
}

.contact-9376 .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-9376 .agree label {
    display: block;
    font-size: 13px;
    color: #000000;
}

.contact-9376 .agree a {
    margin-left: 5px;
    color: rgb(6,154,142);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-9376 .agree a:hover {
    color: rgb(5,80,73);
}

.contact-9376 .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

@media only screen and (max-width: 600px) {
    .contact-9376 {
        padding: 50px 20px;
    }
    .contact-9376 h3 {
        font-size: 39px;
    }
    .contact-9376 .form {
        padding: 20px;
    }
    .contact-9376 .name_holder {
        flex-direction: column;
    }
}

.wrapper-padding-4702 .contact-9376 {
    background: rgb(5,80,73);
    color: #ffffff;
    padding: 80px 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.wrapper-padding-4702 .contact-9376::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgb(6,154,142) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
}

.wrapper-padding-4702 .contact-9376::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(5,80,73,0.5),
        rgb(5,80,73,0.5) 10px,
        #000000 10px,
        #000000 20px
    );
    z-index: -2;
    opacity: 0.3;
}

.wrapper-padding-4702 .contact-9376 h3 {
    color: #ffffff;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.wrapper-padding-4702 .contact-9376 .form_text {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 13px;
}

.wrapper-padding-4702 .contact-9376 .form {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding: 40px;
    border-radius: 17px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrapper-padding-4702 .contact-9376 .form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.wrapper-padding-4702 .contact-9376 form input,
.wrapper-padding-4702 .contact-9376 form textarea {
    color: #ffffff;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgb(6,154,142);
    box-shadow: inset 0px 2px 3px 1px rgba(0, 0, 0, 0.2);
}

.wrapper-padding-4702 .contact-9376 form input::placeholder,
.wrapper-padding-4702 .contact-9376 form textarea::placeholder {
    color: #ffffff;
    opacity: 0.8;
}

.wrapper-padding-4702 .contact-9376 .agree label {
    color: #ffffff;
}

.wrapper-padding-4702 .contact-9376 .agree a {
    color: rgb(6,154,142);
}

.wrapper-padding-4702 .contact-9376 form .button {
    background: rgb(6,154,142);
    padding: 15px 30px;
    border: none;
    box-shadow: none;
}

.wrapper-padding-4702 .contact-9376 form .button:hover {
    background: rgb(5,80,73);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .wrapper-padding-4702 .contact-9376 .form {
        padding: 20px;
    }
    .wrapper-padding-4702 .contact-9376 h3 {
        font-size: 39px;
    }
}.secure-chamber-9235 {
    padding: 40px;
    width: 100%;
    overflow: hidden;
    height: 100%;
    background-color: rgb(6,154,142,0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-family: Lato, sans-serif;
}

.secure-chamber-9235 h1 {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 38px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgb(5,80,73);
    padding-bottom: 10px;
}

.secure-chamber-9235 h2 {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 30px;
    color: rgb(5,80,73);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secure-chamber-9235 h3, .secure-chamber-9235 h4, .secure-chamber-9235 h5, .secure-chamber-9235 h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 19px;
    color: #000000;
    font-weight: 400;
}

.secure-chamber-9235 ul, .secure-chamber-9235 ol {
    list-style-position: inside;
    padding-left: 20px;
    padding: 15px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.secure-chamber-9235 li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    position: relative;
    padding-left: 20px;
}

.secure-chamber-9235 section {
    background: #ffffff;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.secure-chamber-9235 p, .secure-chamber-9235 span, .secure-chamber-9235 div {
    line-height: 1.8;
    margin-bottom: 10px;
    color: #000000;
    font-size: 17px;
    font-weight: 300;
    padding: 5px 10px;
    border-left: 3px solid rgb(6,154,142);
    background-color: rgb(6,154,142,0.5);
    border-radius: 10px;
}

@media only screen and (max-width: 800px) {
    .secure-chamber-9235 {
        padding: 20px;
    }
    .secure-chamber-9235 h1 {
        font-size: calc(19px - 10%);
    }
    .secure-chamber-9235 h2 {
        font-size: calc(19px - 10%);
    }
    .secure-chamber-9235 h3, .secure-chamber-9235 h4, .secure-chamber-9235 h5, .secure-chamber-9235 h6 {
        font-size: calc(19px - 10%);
    }
    .secure-chamber-9235 li {
        font-size: calc(17px - 10%);
    }
}