* {
    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: Nunito, sans-serif;
    color: #000000;
}
.container-wrapb {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(77,183,138);
}
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;
    }
}
.benefits_overviewu .advantages_content h2 {
    color: rgb(34,81,61);
}

.benefits_overviewu .advantage_item svg, .benefits_overviewu .advantage_item svg path {
    fill: rgb(55,132,100);
}

.benefits_overviewu .advantage_item p {
    color: #000000;
}

.benefits_overviewu .advantage_item b {
    color: rgb(55,132,100);
}

.benefits_overviewu {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits_overviewu .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits_overviewu .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits_overviewu .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 600;
}

.benefits_overviewu .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits_overviewu .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits_overviewu .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits_overviewu .advantage_item svg, .benefits_overviewu .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .container-wrapb .benefits_overviewu .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits_overviewu .advantages_content h2 {
        font-size: 30px;
    }

    .benefits_overviewu .advantages_holder {
        flex-direction: column;
    }

    .benefits_overviewu {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .container-wrapb .benefits_overviewu .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.container-wrapb .benefits_overviewu {
    background: rgb(34,81,61,0.5);
    padding: 80px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.container-wrapb .benefits_overviewu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(55,132,100) 0%, rgb(34,81,61) 100%);
    opacity: 0.05;
    z-index: 0;
}

.container-wrapb .benefits_overviewu .advantages_content {
    position: relative;
    z-index: 1;
}

.container-wrapb .benefits_overviewu .advantages_content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.container-wrapb .benefits_overviewu .advantages_description {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgb(55,132,100,0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.container-wrapb .benefits_overviewu .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.container-wrapb .benefits_overviewu .advantage_item {
    background: #ffffff;
    padding: 30px;
    flex: 1 1 calc(33.333% - 20px);
    border-radius: 27px;
    border: 1px solid rgb(55,132,100,0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container-wrapb .benefits_overviewu .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.container-wrapb .benefits_overviewu .advantage_image img,
.container-wrapb .benefits_overviewu .advantage_image svg {
    width: 80px;
    height: 80px;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.container-wrapb .benefits_overviewu .advantage_item:hover .advantage_image img,
.container-wrapb .benefits_overviewu .advantage_item:hover .advantage_image svg {
    transform: scale(1.1);
}

.container-wrapb .benefits_overviewu .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: rgb(55,132,100);
    margin-top: 10px;
    transition: color 0.3s ease;
}

.container-wrapb .benefits_overviewu .advantage_item p {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-top: 10px;
    text-align: center;
    transition: color 0.3s ease;
}

.container-wrapb .benefits_overviewu .advantage_item p b {
    color: rgb(55,132,100);
}

@media only screen and (max-width: 1200px) {
    .container-wrapb .benefits_overviewu .advantages_holder .advantage_item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media only screen and (max-width: 800px) {
    .container-wrapb .benefits_overviewu .advantage_item {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .container-wrapb .benefits_overviewu .advantages_content h2 {
        font-size: 18px;
    }

    .container-wrapb .benefits_overviewu {
        padding: 40px 20px;
    }
}.tariff_gridX {
    position: relative;
    overflow: hidden;
    background: rgb(77,183,138);
    padding: 120px 0;
}

.tariff_gridX .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
    opacity: 0.7;
}

.tariff_gridX .container {
    position: relative;
    z-index: 2;
}

.tariff_gridX .price_holder {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.tariff_gridX .price_holder h2 {
    font-size: calc(47px * 1.2);
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, rgb(55,132,100), rgb(34,81,61));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.tariff_gridX .price_section_description {
    font-size: calc(17px * 1.1);
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tariff_gridX .price_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.tariff_gridX .price_card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tariff_gridX .price_card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tariff_gridX .price_card h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
}

.tariff_gridX .price_card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(55,132,100);
    transition: width 0.3s ease;
}

.tariff_gridX .price_card:hover h3::after {
    width: 100%;
}

.tariff_gridX .price_amount {
    font-size: 36px;
    color: rgb(55,132,100);
    font-weight: 700;
    margin: 30px 0;
    position: relative;
    display: inline-block;
}

.tariff_gridX .price_amount::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 2px solid rgb(55,132,100,0.5);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.tariff_gridX .price_card:hover .price_amount::before {
    opacity: 1;
    transform: scale(1.05);
}

.tariff_gridX .price_card p {
    font-size: 17px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
}

.tariff_gridX .price_card .button {
    display: inline-block;
    padding: 12px 30px;
    background: rgb(55,132,100);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tariff_gridX .price_card .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

.tariff_gridX .price_card .button:hover::before {
    left: 100%;
}

.tariff_gridX .price_card .button:hover {
    background: rgb(34,81,61);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .tariff_gridX {
        padding: 60px 0;
    }

    .tariff_gridX .photo {
        height: 200px;
    }

    .tariff_gridX .price_holder {
        padding: 30px;
        margin-top: 150px;
    }

    .tariff_gridX .price_holder h2 {
        font-size: calc(47px * 0.9);
    }

    .tariff_gridX .price_section_description {
        font-size: 17px;
    }

    .tariff_gridX .price_card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .tariff_gridX {
        padding: 40px 0;
    }

    .tariff_gridX .photo {
        height: 150px;
    }

    .tariff_gridX .price_holder {
        padding: 20px;
        margin-top: 100px;
    }

    .tariff_gridX .price_holder h2 {
        font-size: calc(47px * 0.8);
    }

    .tariff_gridX .price_section_description {
        font-size: calc(17px * 0.9);
    }

    .tariff_gridX .price_card {
        padding: 20px;
    }

    .tariff_gridX .price_amount {
        font-size: calc(36px * 0.8);
    }
}.course_highlightsy {
    padding-top: 80px;
    padding-bottom: 80px;
    background: rgb(55,132,100);
    font-family: Nunito, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course_highlightsy h2 {
    color: rgb(34,81,61);
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 3px solid rgb(34,81,61);
    display: inline-block;
    padding-bottom: 10px;
}

.course_highlightsy .container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.course_highlightsy .holder {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.course_highlightsy .items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.course_highlightsy .course {
    flex: 1 1 45%;
    margin: 20px;
    overflow: hidden;
}

.course_highlightsy .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.course_highlightsy .photo {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid rgb(34,81,61);
}

.course_highlightsy .text_holder {
    padding: 30px;
    text-align: left;
}

.course_highlightsy h3 {
    color: rgb(55,132,100);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    border-left: 5px solid rgb(34,81,61);
    padding-left: 10px;
}

.course_highlightsy p {
    color: #000000;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course_highlightsy .button {
    background: rgb(55,132,100);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 24px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
}

@media only screen and (max-width: 800px) {
    .course_highlightsy {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .course_highlightsy h2 {
        font-size: 28px;
    }
    .course_highlightsy h3 {
        font-size: 24px;
    }
    .course_highlightsy .photo {
        height: 200px;
    }
    .course_highlightsy .text_holder {
        padding: 20px;
    }
    .course_highlightsy .course {
        flex: 1 1 100%;
        margin: 0;
    }
}

.container-wrapb .course_highlightsy {
    position: relative;
    padding: 60px 0;
    border-top: 5px solid rgb(34,81,61);
    border-bottom: 5px solid rgb(34,81,61);
}

.container-wrapb .course_highlightsy .items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-wrapb .course_highlightsy .photo {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}

.container-wrapb .course_highlightsy .text_holder {
    border-radius: 10px;
    border: 2px solid rgb(34,81,61);
    background: #ffffff;
    padding: 30px;
    width: 100%;
    max-width: 800px;
}

.container-wrapb .course_highlightsy h3 {
    font-size: 24px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 20px;
}

.container-wrapb .course_highlightsy .button {
    background: rgb(34,81,61);
    color: #ffffff;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 10px;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
}

@media only screen and (max-width: 800px) {
    .container-wrapb .course_highlightsy .photo {
        width: 100%;
        height: 200px;
    }
    .container-wrapb .course_highlightsy .text_holder {
        padding: 20px;
    }
    .container-wrapb .course_highlightsy h3 {
        font-size: 22px;
    }
}
.secure_wrapZ {
    padding: 50px;
    width: 100%;
    overflow: hidden;
    height: 100%;
    background: #ffffff;
    border: 2px solid rgb(55,132,100);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.secure_wrapZ h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 38px;
    color: rgb(55,132,100);
    font-weight: 700;
    border-bottom: 3px solid rgb(34,81,61);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}

.secure_wrapZ h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 29px;
    color: rgb(34,81,61);
    font-weight: 600;
    border-bottom: 2px solid rgb(55,132,100);
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
}

.secure_wrapZ ul, .secure_wrapZ ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
    text-align: left;
    font-family: Nunito, sans-serif;
    font-size: 13px;
    color: #000000;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
}

.secure_wrapZ li {
    padding: 10px 0;
    border-bottom: 1px solid rgb(34,81,61,0.5);
}

.secure_wrapZ section {
    background: none;
}

.secure_wrapZ p, .secure_wrapZ span, .secure_wrapZ div {
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: Nunito, sans-serif;
    color: #000000;
    font-size: 13px;
    text-align: left;
    width: 100%;
}

@media only screen and (max-width: 800px) {
    .secure_wrapZ {
        padding: 30px;
        border-radius: 10px;
    }

    .secure_wrapZ h1 {
        font-size: calc(24px - 5px);
    }

    .secure_wrapZ h2 {
        font-size: calc(24px - 3px);
    }

    .secure_wrapZ ul, .secure_wrapZ ol {
        margin: 15px 0;
    }

    .secure_wrapZ li {
        padding: 8px 0;
    }

    .secure_wrapZ p, .secure_wrapZ span, .secure_wrapZ div {
        margin-bottom: 15px;
    }
}header .main_header {
    background:  #ffffff;
    color:  #000000;
}
header .logo_holder svg,header .logo_holder svg path, header .logo_holder img {
    fill: rgb(55,132,100);
}
header .menu a {
    color: rgb(34,81,61);
}
header .menu a:hover {
    color: rgb(55,132,100);
}
header .menu a.active {
    border: 2px solid rgb(34,81,61);
    border-radius: 100px;
}
header .menu a.active:hover {
    color: #ffffff;
    background: rgb(55,132,100);
    border: 2px solid rgb(55,132,100);
}
header {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .175);
}
header .main_header {
    width: 100%;
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo_holder {
    padding: 5px 0;
    display: flex;
    align-items: center;
    text-decoration: none;

}
header .logo_caption {
    display: flex;
    flex-direction: column;
    height: 100%;

}
header .logo_desc {
    font-size: 16px;
    font-weight: 700;
}
header .logo_holder .logo_desc {
    text-transform: uppercase;
}
header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}
header .menu {
    display: flex;
}
header .menu a {
    text-decoration: none;
    padding: 12px 25px;
    font-size: 13px;
}
body .container-wrapb header .opened {
    display: flex;
}
@media only screen and (max-width: 1200px)  {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 30px;
        position: static;
        top:100%;
        left:0;
        z-index: 90;
        background: #ffffff;
        width: 100%;
    }
    header .menu a.active {
        border: none;
    }
    header .menu a.active:hover {
        color: rgb(55,132,100);
        background: none;
        border: none;
    }
    header .main_header {
        position: relative;
        z-index: 99;
    }
    header .logo_holder {
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    header .logo_holder .logotype {
        margin-right: 5px;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        margin: 0;
        width: 40px;
        height: 40px;
    }
    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.container-wrapb header .menu a.active {
    border: none;
    border-radius: 0;
}
.container-wrapb header .menu a.active:hover {
    border: none;
    background: none;
    color: rgb(55,132,100);
}
.container-wrapb header .logo_holder {
    margin-right: 0;

}
.container-wrapb header .logo_holder .logotype svg, .container-wrapb header .logo_holder .logotype img {
    margin-left: 20px;
}
.container-wrapb header .menu {
    width: 100%;
    justify-content: center;
}
.container-wrapb header .menu a {
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 800px)  {
    header .logo_holder .logotype {
        margin-right: 0;
    }
    .container-wrapb header .header_content .logo_holder {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    .container-wrapb header .logo_holder .logotype svg, .container-wrapb header .logo_holder .logotype img {
        margin-left: 0;
    }
    .container-wrapb header .menu {
        padding-top:30px;
        align-items: center;
    }
}.contact_sectiona {
    padding: 100px 0;
    background: rgb(55,132,100);
    position: relative;
    overflow: hidden;
}

.contact_sectiona::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.05) 75%, rgba(255,255,255,0.05)), linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.05) 75%, rgba(255,255,255,0.05));
    background-position: 0 0, 50px 50px;
    background-size: 100px 100px;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: grid-move 10s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(-50%, -50%);
    }
    100% {
        transform: translate(-55%, -55%);
    }
}

.contact_sectiona h3 {
    color: rgb(55,132,100);
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.contact_sectiona .form {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 50px;
    max-width: 700px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.contact_sectiona form input,
.contact_sectiona form textarea {
    color: #ffffff;
    background: rgba(50, 50, 50, 0.9);
    border-radius: 10px;
    border: 1px solid rgb(34,81,61,0.5);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: Nunito, sans-serif;
    transition: border-color 0.3s, background-color 0.3s;
}

.contact_sectiona form input:focus,
.contact_sectiona form textarea:focus {
    border-color: rgb(55,132,100);
    outline: none;
    background: rgba(60, 60, 60, 0.9);
}

.contact_sectiona form .button {
    background: rgb(55,132,100);
    color: #ffffff;
    border-radius: 13px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    padding: 15px 30px;
    text-transform: uppercase;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact_sectiona form .button:hover {
    background: rgb(34,81,61);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.contact_sectiona .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_sectiona .name_holder {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.contact_sectiona .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact_sectiona .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

.contact_sectiona .agree label {
    display: block;
    font-family: Nunito, sans-serif;
    color: #ffffff;
}

.contact_sectiona .agree a {
    margin-left: 5px;
    color: rgb(55,132,100);
    text-decoration: underline;
    transition: color 0.3s;
}

.contact_sectiona .agree a:hover {
    color: rgb(34,81,61);
}

.contact_sectiona .form_text {
    margin-bottom: 30px;
    font-size: 17px;
    color: #ffffff;
    text-align: center;
    z-index: 1;
    position: relative;
}

@media only screen and (max-width: 600px) {
    .contact_sectiona {
        padding: 60px 0;
    }
    .contact_sectiona h3 {
        font-size: 36px;
    }
    .contact_sectiona .form {
        padding: 30px;
    }
    .contact_sectiona .name_holder {
        flex-direction: column;
        gap: 10px;
    }
}

.container-wrapb .contact_sectiona .holder {
    flex-direction: column-reverse;
}

.container-wrapb .contact_sectiona .form {
    width: 100%;
    background: rgba(40, 40, 40, 0.95);
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.container-wrapb .contact_sectiona .info {
    width: 100%;
    text-align: center;
}

.container-wrapb .contact_sectiona .info span {
    font-weight: 400;
    color: #ffffff;
}

.container-wrapb .contact_sectiona form input {
    border-bottom: 1px solid rgb(34,81,61,0.5);
    border-radius: 10px;
    font-size: 17px;
    font-weight: 300;
}

.container-wrapb .contact_sectiona h3 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 40px;
}

.container-wrapb .contact_sectiona form .button {
    width: 100%;
    background: rgb(34,81,61);
    color: #ffffff;
    margin-top: 24px;
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
}

.contact_sectiona .info .contact_info svg,
.contact_sectiona .info .contact_info svg path {
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .container-wrapb .contact_sectiona .holder {
        flex-direction: column;
    }
    .container-wrapb .contact_sectiona .holder .form,
    .container-wrapb .contact_sectiona .holder .info {
        width: 100%;
    }
    .container-wrapb .contact_sectiona .name_holder {
        flex-direction: column;
    }
}.mentorship_profileE {
    background: rgb(77,183,138);
    padding: 60px 0;
    font-family: Nunito, sans-serif;
    color: #000000;
    min-width: 320px;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mentorship_profileE .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}
.mentorship_profileE .holder {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 17px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgb(55,132,100,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    padding: 40px;
    margin: 20px 0;
    background: linear-gradient(135deg, rgb(55,132,100,0.5), rgb(34,81,61,0.5));
    min-height: 300px;
}
.mentorship_profileE .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.mentorship_profileE .review {
    display: flex;
    flex-direction: column-reverse; 
    align-items: center;
    width: 100%;
    padding: 20px;
    gap: 20px;
}
.mentorship_profileE .review .photo {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: url('$variable_for_links$<?php echo $arData["img"];?>') no-repeat;
    background-size: cover;
    background-position: center;
    border: 4px solid rgb(55,132,100);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: border 0.3s, transform 0.3s;
    position: relative;
}
.mentorship_profileE .review .photo:hover {
    border-color: rgb(34,81,61);
    transform: scale(1.1);
}
.mentorship_profileE .worker_description {
    flex: 1;
    text-align: center;
}
.mentorship_profileE .worker_description p {
    margin: 0;
}
.mentorship_profileE .worker_description .name {
    font-size: 33px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.mentorship_profileE .worker_description .job {
    font-size: 18px;
    color: rgb(34,81,61);
    margin-bottom: 10px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.mentorship_profileE .worker_info {
    text-align: left;
    flex: 2;
    border-left: 2px solid rgb(55,132,100,0.5);
    padding: 10px;
    box-shadow: inset 2px 0 5px rgba(0, 0, 0, 0.1);
}
.mentorship_profileE .worker_info p {
    margin: 10px 0;
    font-size: 15px;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.mentorship_profileE .worker_info .quote {
    font-style: italic;
    font-size: 18px;
    color: rgb(34,81,61);
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
}
.mentorship_profileE .worker_info .story {
    line-height: 1.6;
    text-align: justify;
    background: linear-gradient(to right, #ffffff, rgb(55,132,100,0.5));
    padding: 16px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 992px) {
    .mentorship_profileE .holder {
        flex-direction: column;
    }
    .mentorship_profileE .review {
        flex-direction: column;
        align-items: center;
    }
    .mentorship_profileE .worker_description,
    .mentorship_profileE .worker_info {
        text-align: center;
        padding-left: 0;
        border-left: none;
    }
    .mentorship_profileE .worker_info {
        padding-top: 20px;
    }
}
@media only screen and (max-width: 576px) {
    .mentorship_profileE .review .photo {
        width: 100px;
        height: 100px;
    }
    .mentorship_profileE .worker_description .name {
        font-size: 18px;
    }
    .mentorship_profileE .worker_description .job {
        font-size: 15px;
    }
    .mentorship_profileE .worker_info .quote::before {
        font-size: 33px;
    }
}
.mentorship_profileE .holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgb(55,132,100,0.5), rgb(34,81,61,0.5));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.mentorship_profileE .holder:hover::before {
    opacity: 0.1;
}
.give_it_a_trya {
    padding: 60px 0;
    background: rgb(77,183,138);
    border-top: 3px solid rgb(55,132,100);
    border-bottom: 3px solid rgb(55,132,100);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.give_it_a_trya .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 80vw;
    max-width: 1000px;
    padding: 4vh 4vw;
    background: linear-gradient(145deg, #ffffff, rgb(77,183,138));
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.give_it_a_trya .container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(55,132,100,0.5) 10%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.give_it_a_trya .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 2px solid rgb(55,132,100);
    border-radius: 15px;
    padding: 3vh 4vw;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.give_it_a_trya .holder svg, .give_it_a_trya .holder svg path {
    fill: rgb(55,132,100);
    width: 50px;
    height: 50px;
}

.give_it_a_trya .holder h2 {
    font-size: 37px;
    margin: 20px 0;
    font-weight: 600;
    color: rgb(55,132,100);
    text-align: center;
}

.give_it_a_trya .holder .button {
    padding: 10px 20px;
    background: rgb(55,132,100);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid rgb(55,132,100);
    transition: background-color 0.3s, color 0.3s;
}

.give_it_a_trya .holder .button:hover {
    background-color: #ffffff;
    color: rgb(55,132,100);
}

.give_it_a_trya .holder .button:focus {
    outline: 2px solid rgb(55,132,100);
    outline-offset: 2px;
}

@media only screen and (max-width: 1024px) and (min-width: 801px) {
    .give_it_a_trya .container {
        width: 85vw;
        padding: 3.5vh 3.5vw;
    }

    .give_it_a_trya .holder {
        padding: 3.5vh 3.5vw;
    }

    .give_it_a_trya .holder h2 {
        font-size: calc(37px * 0.9);
    }

    .give_it_a_trya .holder .button {
        padding: 9px 18px;
    }
}

@media only screen and (max-width: 800px) {
    .give_it_a_trya {
        padding: 40px 0;
    }

    .give_it_a_trya .container {
        padding: 3vh 3vw;
        width: 90vw;
        max-width: none;
    }

    .give_it_a_trya .holder {
        padding: 4vh 3vw;
        width: 90vw;
    }

    .give_it_a_trya .holder h2 {
        font-size: 22px;
    }

    .give_it_a_trya .holder .button {
        padding: 8px 16px;
        font-size: 14px;
    }
}.appPageA {
    background-color: rgb(55,132,100,0.5);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.appPageA .container {
    background-color: rgb(55,132,100,0.5);
    border: 1px solid rgb(55,132,100);
    border-radius: 11px;
    padding: 40px 30px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: inset 0 0 10px rgb(34,81,61,0.5);
}
.appPageA .container h2 {
    font-family: Nunito, sans-serif;
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}
.appPageA .container p {
    font-family: Nunito, sans-serif;
    font-size: 17px;
    color: rgb(34,81,61);
    line-height: 1.8;
    margin-bottom: 20px;
    border-top: 1px solid rgb(34,81,61,0.5);
    border-bottom: 1px solid rgb(34,81,61,0.5);
    padding: 10px 0;
}
@media only screen and (max-width: 800px) {
    .appPageA {
        padding: 30px 10px;
    }
    .appPageA .container {
        padding: 30px 20px;
    }
    .appPageA .container h2 {
        font-size: calc(34px - 6px);
    }
    .appPageA .container p {
        font-size: calc(17px - 2px);
    }
}
footer {
    background: rgb(34,81,61);
    color: #ffffff;
}

footer .copyright {
    background: rgb(55,132,100);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(55,132,100);
}

footer h5 {
    color: rgb(55,132,100);
}

footer .menu a {
    color: #ffffff;
}

footer .copyright_info {
    color: #ffffff;
}

footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}

footer .contact_info div svg, footer .contact_info div svg path {
    fill: #ffffff;
}

footer .contact_info div span {
    color: #ffffff;
}

footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 20px;
    margin-bottom: 16px;

}

footer .contact_info {
    display: flex;
    flex-direction: column;
}

footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .contact_info div img, footer .contact_info div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .menu_holder {
    display: flex;
    flex-direction: column;
}

footer .menu a {
    text-decoration: none;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 13px;
}

@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
    }

    footer .contact_info {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

.container-wrapb footer {
    background: rgb(77,183,138);
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.container-wrapb footer .logo_holder {
    display: none;
}

.container-wrapb footer .footer {
    padding: 32px 0;
}

.container-wrapb footer .copyright {
    background: none;
}

.container-wrapb footer .menu a {
    color: rgba(0, 0, 0, 0.5);
    margin-right: 0;
}

.container-wrapb footer .footer_info {
    flex-direction: row;
}

.container-wrapb footer .menu_holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.container-wrapb footer .menu a:after {
    content: "/";
    margin-left: 5px;
    margin-right: 5px;
}

.container-wrapb footer .menu a:hover {
    color: rgb(55,132,100);
}

.container-wrapb footer .copyright {
    padding: 16px 0;
}

.container-wrapb footer .copyright_info {
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .container-wrapb footer .menu_holder {
        flex-direction: column;
    }
}.ideal_participantsl {
    background: linear-gradient(135deg, rgb(77,183,138) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.ideal_participantsl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgb(55,132,100,0.5) 0%, transparent 50%);
    pointer-events: none;
}

.ideal_participantsl .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.ideal_participantsl .who_needs_photo {
    aspect-ratio: 1;
    border-radius: 12px;
    position: relative;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.ideal_participantsl .who_needs_photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, rgb(55,132,100,0.5) 0%, transparent 100%);
    mix-blend-mode: overlay;
}

.ideal_participantsl .who_needs_photo:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.ideal_participantsl .who_needs_text {
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, rgb(77,183,138) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ideal_participantsl .who_needs_text h2 {
    font-size: 31px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.3;
}

.ideal_participantsl .who_needs_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ideal_participantsl .who_needs_list div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    color: #000000;
    transition: transform 0.3s ease;
}

.ideal_participantsl .who_needs_list div:hover {
    transform: translateX(5px);
}

.ideal_participantsl .who_needs_list svg {
    width: 24px;
    height: 24px;
    fill: rgb(55,132,100);
}

@media (max-width: 1024px) {
    .ideal_participantsl {
        padding: 80px 0;
    }

    .ideal_participantsl .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ideal_participantsl .who_needs_photo {
        max-width: 500px;
        margin: 0 auto;
        transform: none;
        height: 400px;
    }

    .ideal_participantsl .who_needs_text {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .ideal_participantsl {
        padding: 60px 0;
    }

    .ideal_participantsl .who_needs_list {
        grid-template-columns: 1fr;
    }

    .ideal_participantsl .who_needs_text {
        padding: 25px;
    }

    .ideal_participantsl .who_needs_text h2 {
        font-size: calc(31px * 0.9);
        margin-bottom: 25px;
    }
}.title_greetingj {
    width: 100%;
    padding: 0;
    position: relative;
    background: rgb(77,183,138);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.title_greetingj .title_page_holder {
    width: 100%;
    min-height: 600px;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}
.title_greetingj .title_page_holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.title_greetingj .style_element {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}
.title_greetingj .style_element h1 {
    font-size: 42px;
    font-weight: 700;
    color: rgb(55,132,100);
    margin-bottom: 16px;
}
.title_greetingj .style_element h3 {
    font-size: 38px;
    font-weight: 600;
    color: rgb(34,81,61);
    margin-bottom: 8px;
}
.title_greetingj .style_element p {
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
}
@media only screen and (max-width: 800px) {
    .title_greetingj {
        padding: 50px 0;
    }
    .title_greetingj .title_page_holder {
        min-height: 320px;
        padding: 10px;
    }
    .title_greetingj .style_element {
        padding: 20px;
        max-width: 100%;
    }
    .title_greetingj .style_element h1 {
        font-size: 38px;
    }
    .title_greetingj .style_element h3 {
        font-size: 21px;
    }
    .title_greetingj .style_element p {
        font-size: 13px;
    }
}
.title_greetingj .style_element::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    z-index: -1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}.our_storyu {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(55,132,100) 30%, rgb(34,81,61) 100%);
    color: #000000;
    font-family: Nunito, sans-serif;
}

.container-wrapb .our_storyu .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container-wrapb .our_storyu .caption_holder {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 23px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.container-wrapb .our_storyu .photo {
    display: block;
    width: 600px;
    height: auto;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

.container-wrapb .our_storyu .photo:hover {
    transform: scale(1.05);
}

.container-wrapb .our_storyu .style_element {
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    z-index: 2;
    transition: background 0.3s ease-in-out;
}

.container-wrapb .our_storyu .style_element:hover {
    background: rgb(55,132,100,0.5);
}

.container-wrapb .our_storyu h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.container-wrapb .our_storyu p {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.container-wrapb .our_storyu span {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .container-wrapb .our_storyu .photo {
        width: 400px;
        height: 400px;
    }

    .container-wrapb .our_storyu .style_element {
        padding: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .container-wrapb .our_storyu .caption_holder {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .container-wrapb .our_storyu .photo {
        width: 100%;
        height: 300px;
    }

    .container-wrapb .our_storyu .style_element {
        width: 100%;
        padding: 20px;
    }
}
.get_help_infoP {
    color: #000000;
    background: radial-gradient(circle, rgb(77,183,138) 0%, rgb(55,132,100,0.5) 100%);
    padding: 80px 20px;
    font-family: Nunito, sans-serif;
    overflow: hidden;
}
.get_help_infoP .contact_holder {
    position: relative;
    padding: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff 0%, rgb(55,132,100,0.5) 100%);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgb(55,132,100);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.get_help_infoP .contact_holder::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgb(55,132,100) 0%, rgb(34,81,61) 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    filter: blur(20px);
}
.get_help_infoP .holder {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}
.get_help_infoP .holder .contact_description {
    flex: 1;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    position: relative;
}
.get_help_infoP .holder .photo {
    flex: 0 0 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.get_help_infoP .holder .info_holder>div span {
    margin-left: 8px;
}
.get_help_infoP .holder .info_holder {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.get_help_infoP .holder .info_holder div.consulting_hoursa {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.get_help_infoP .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.get_help_infoP .holder .info_holder > div > div {
    margin: 5px 0;
}
.get_help_infoP .holder .info_holder>div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    position: relative;
}
.get_help_infoP .holder .info_holder>div::before {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    background: rgb(55,132,100);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}
.get_help_infoP .holder .info_holder>div a {
    color: rgb(55,132,100);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.get_help_infoP .holder .info_holder>div a:hover,
.get_help_infoP .holder .info_holder>div a:focus {
    color: rgb(34,81,61);
    text-shadow: 0 0 8px rgb(34,81,61,0.5);
}
.get_help_infoP .contact_politics {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}
.get_help_infoP .contact_politics>div {
    background: linear-gradient(135deg, #ffffff 0%, rgb(55,132,100,0.5) 100%);
    border-radius: 14px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border: 1px solid rgb(55,132,100);
    position: relative;
    overflow: hidden;
}
.get_help_infoP .contact_politics>div::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgb(34,81,61) 0%, rgb(55,132,100) 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    filter: blur(10px);
}
.get_help_infoP .contact_politics>div:hover {
    background: rgb(55,132,100,0.5);
}
.get_help_infoP .contact_politics>div h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgb(55,132,100);
}
.get_help_infoP .contact_politics>div p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}
.get_help_infoP .info_holder svg {
    width: 24px;
    height: 24px;
    fill: rgb(55,132,100);
    transition: fill 0.3s ease;
}
.get_help_infoP .info_holder svg:hover {
    fill: rgb(34,81,61);
}
.get_help_infoP h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding: 20px;
    color: #000000;
    border-bottom: 3px solid rgb(55,132,100);
    background: linear-gradient(135deg, #ffffff 70%, rgb(55,132,100,0.5) 100%);
    border-radius: 10px;
}
.get_help_infoP h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: rgb(55,132,100);
    left: 0;
    bottom: 0;
    border-radius: 10px;
    transition: width 0.3s ease;
}
.get_help_infoP h2:hover::before {
    width: 80px;
}
@media only screen and (max-width: 800px) {
    .get_help_infoP .holder {
        flex-direction: column;
        align-items: center;
    }
    .get_help_infoP .holder .photo {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
    .get_help_infoP .holder .info_holder {
        width: 100%;
    }
}
@media only screen and (max-width: 480px) {
    .get_help_infoP .contact_holder {
        padding: 20px;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    .get_help_infoP .holder {
        flex-direction: column;
        align-items: center;
    }
}
