* {
    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-template {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(83,182,188);
}
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;
    }
}header .main_header {
    background: rgb(55,120,124);
    color: #ffffff;
    padding: 20px 0;
    border-bottom: 2px solid rgb(27,59,61);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo_holder svg, header .logo_holder svg path, header .logo_holder img {
    fill: rgb(55,120,124);
    height: 60px;
    width: 60px;
}

header .menu a {
    color: #ffffff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid transparent;
    margin: 0 10px;
    transition: border-color 0.3s ease;
    border-radius: 18px;
}

header .menu a:hover {
    color: rgb(27,59,61);
    border-color: rgb(27,59,61);
}

header .menu a.active {
    color: #ffffff;
    border-color: rgb(55,120,124);
    background: rgb(55,120,124,0.5);
}

header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo_holder {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 20px;
}

header .menu {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .wrapper-template header .logo_holder {
        margin-right: 0;
    }
    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: 10px 0;
        position: static;
        width: 100%;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        padding: 12px;
        width: 100%;
        text-align: left;
        border-radius: 10px;
    }
    header .logo_holder {
        width: 100%;
        justify-content: space-between;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        height: 50px;
        width: 50px;
    }
}

.wrapper-template .logotype {
    background: rgb(27,59,61);
    padding: 10px;
    border-radius: 18px;
    border: 2px solid rgb(27,59,61);
}

.wrapper-template header .main_header {
    padding-bottom: 10px;
    position: relative;
    border-bottom: 2px solid rgb(27,59,61);
}

.wrapper-template header .main_header::before {
    position: absolute;
    content: "";
    top: 0;
    height: 10px;
    width: 100%;
    background: rgb(27,59,61);
    z-index: 0;
}

.wrapper-template header .logo_holder .logotype svg, .wrapper-template header .logo_holder .logotype img {
    margin: 0;
}

.wrapper-template header .menu a {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
}

.wrapper-template header .menu a:hover {
    color: rgb(27,59,61);
    border-color: rgb(27,59,61);
}

.wrapper-template header .header_content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

@media only screen and (max-width: 800px) {
    .wrapper-template header .menu {
        background: none;
        align-items: center;
    }
    .wrapper-template header .logo_holder .logotype svg, .wrapper-template header .logo_holder .logotype img {
        width: 50px;
        height: 50px;
    }
    .wrapper-template header .menu a {
        text-align: center;
    }
    .wrapper-template header .logo_holder {
        justify-content: center;
        align-items: center;
    }
    .wrapper-template header .menu {
        padding-bottom: 20px;
    }
}.greeting_page {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}
.greeting_page .title_page_holder {
    width: 100%;
    min-height: 800px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    border: 5px solid rgb(55,120,124);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
}
.greeting_page .style_element {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    width: 80%;
    max-width: 1000px;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1;
    border: 2px solid rgb(27,59,61);
    transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
}
.greeting_page .style_element h1 {
    font-size: 38px;
    font-weight: 700;
    color: rgb(55,120,124);
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(27,59,61);
    padding-bottom: 10px;
    transition: color 0.5s ease-in-out;
}
.greeting_page .style_element h3 {
    font-size: 30px;
    color: rgb(27,59,61);
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.5s ease-in-out;
}
.greeting_page .style_element p {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.5s ease-in-out;
}
.greeting_page .style_element::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px dashed rgb(55,120,124);
    border-radius: 15px;
    z-index: -1;
    transition: border-color 0.5s ease-in-out;
}
.greeting_page .style_element::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 1px dotted rgb(27,59,61);
    border-radius: 15px;
    z-index: -2;
    transition: border-color 0.5s ease-in-out;
}
.greeting_page .title_page_holder:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgb(27,59,61);
}
.greeting_page .style_element:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.9);
}
.greeting_page .style_element h1:hover,
.greeting_page .style_element h3:hover,
.greeting_page .style_element p:hover {
    color: rgb(55,120,124);
}
.greeting_page .style_element::before:hover,
.greeting_page .style_element::after:hover {
    border-color: rgb(55,120,124);
}
.wrapper-template .greeting_page {
    position: relative;
    padding: 0;
    background: rgb(83,182,188);
}
.wrapper-template .greeting_page::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-template .greeting_page .title_page_holder {
    border: 8px solid rgb(55,120,124);
    box-shadow: inset 0 0 10px rgb(27,59,61,0.5);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.wrapper-template .greeting_page .style_element {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgb(55,120,124,0.5) 0%, #ffffff 100%);
    padding: 60px;
    text-align: left;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
}
.wrapper-template .greeting_page .style_element h1 {
    text-align: left;
    color: #000000;
    font-size: 38px;
    margin-bottom: 20px;
    z-index: 1;
    border-bottom: 2px solid rgb(55,120,124);
    padding-bottom: 15px;
    transition: color 0.5s ease-in-out;
}
.wrapper-template .greeting_page .style_element h3 {
    text-align: left;
    font-size: 30px;
    color: #000000;
    margin-bottom: 15px;
    z-index: 1;
    transition: color 0.5s ease-in-out;
}
.wrapper-template .greeting_page .style_element p {
    text-align: left;
    color: #000000;
    font-size: 14px;
    line-height: 1.8;
    z-index: 1;
    transition: color 0.5s ease-in-out;
}
@media only screen and (max-width: 1200px) {
    .greeting_page .style_element {
        width: 95%;
        padding: 30px;
    }
    .wrapper-template .greeting_page .style_element {
        padding: 50px 30px;
    }
}
@media only screen and (max-width: 800px) {
    .greeting_page .style_element {
        width: 100%;
        padding: 20px;
    }
    .wrapper-template .greeting_page .style_element {
        padding: 40px 20px;
    }
    .greeting_page .style_element h1 {
        font-size: calc(38px - 10px);
    }
    .greeting_page .style_element h3 {
        font-size: calc(30px - 5px);
    }
    .greeting_page .style_element p {
        font-size: 14px;
    }
}.privacy_refuge {
    background-color: rgb(83,182,188);
    color: #000000;
    font-family: Lato, sans-serif;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.privacy_refuge h1 {
    font-size: 45px;
    font-weight: 700;
    color: rgb(55,120,124);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-bottom: 3px solid rgb(55,120,124);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.privacy_refuge h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgb(27,59,61);
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    border-left: 4px solid rgb(27,59,61);
    padding-left: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.privacy_refuge h3,.privacy_refuge h4,.privacy_refuge h5, .privacy_refuge h6 {
    font-size: 22px;
    margin: 1rem 0;
}
.privacy_refuge ul,
.privacy_refuge ol {
    padding-left: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-position: inside;
    list-style-type: none;
    border-left: 2px solid rgba(0, 0, 0, 0.5);
}
.privacy_refuge li {
    font-size: 16px;
    margin-bottom: 1rem;
    line-height: 1.8;
    position: relative;
}
.privacy_refuge li::before {
    content: "▹";
    color: rgb(55,120,124);
    margin-right: 0.5rem;
}
.privacy_refuge p {
    font-size: 16px;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #000000;
}
.privacy_refuge span {
    font-weight: 700;
    color: rgb(27,59,61);
}
.privacy_refuge > div {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 800px) {
    .privacy_refuge {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .privacy_refuge h1 {
        font-size: calc(22px - 0.5rem);
    }
    .privacy_refuge h2 {
        font-size: calc(22px - 0.5rem);
    }
    .privacy_refuge p,
    .privacy_refuge li {
        font-size: calc(16px - 0.2rem);
    }
    .privacy_refuge > div {
        padding: 0.5rem;
    }
}
.operation_process {
    position: relative;
    background: linear-gradient(
        120deg,
        #000000 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    padding: 160px 0;
    overflow: hidden;
}

.operation_process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle at 20% 20%,
            rgb(55,120,124,0.5) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgb(27,59,61,0.5) 0%,
            transparent 40%
        );
    filter: blur(60px);
    opacity: 0.4;
}

.operation_process::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: repeating-conic-gradient(
        from 0deg,
        #000000 0deg 10deg,
        transparent 10deg 20deg
    );
    opacity: 0.03;
    animation: rotateConic 60s linear infinite;
}

.operation_process .work_holder {
    position: relative;
    z-index: 2;
}

.operation_process .container {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
}

.operation_process .photo {
    position: relative;
    height: 700px;
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(2deg) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: morphing 15s ease-in-out infinite;
}

.operation_process .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        215deg,
        rgb(55,120,124,0.5) 0%,
        transparent 50%,
        rgb(27,59,61,0.5) 100%
    );
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.operation_process .photo::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        to right,
        transparent,
        #ffffff 50%,
        transparent
    );
    opacity: 0.1;
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.operation_process .holder {
    position: relative;
    margin-left: -50px;
    padding: 60px;
    background: #ffffff;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgb(55,120,124,0.5);
}

.operation_process .holder::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: linear-gradient(
        45deg,
        rgb(55,120,124,0.5),
        rgb(27,59,61,0.5)
    );
    z-index: -1;
    opacity: 0.5;
}

.operation_process .holder::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 2px solid rgb(55,120,124,0.5);
    border-radius: 20px;
    opacity: 0.2;
}

.operation_process .holder h3 {
    color: #000000;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(
        120deg,
        rgb(55,120,124),
        rgb(27,59,61)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.operation_process .holder span {
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
    display: block;
    position: relative;
    padding: 0 15px;
}

.operation_process .holder span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        rgb(55,120,124,0.5),
        transparent
    );
}

@keyframes morphing {
    0% {
        border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    }
    50% {
        border-radius: 40% 60% 30% 70% / 60% 40% 50% 40%;
    }
    100% {
        border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes rotateConic {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .operation_process {
        padding: 120px 0;
    }

    .operation_process .photo {
        height: 600px;
    }

    .operation_process .holder {
        padding: 50px;
        margin-left: -30px;
    }
}

@media (max-width: 991px) {
    .operation_process .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .operation_process .photo {
        height: 500px;
        width: 90%;
        margin: 0 auto;
        transform: perspective(1000px) rotateX(0) rotateY(0);
    }

    .operation_process .holder {
        margin: 0 auto;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .operation_process {
        padding: 90px 0;
    }

    .operation_process .photo {
        height: 400px;
        width: 100%;
    }

    .operation_process .holder {
        padding: 40px;
        max-width: 100%;
    }

    .operation_process .holder::after {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .operation_process {
        padding: 70px 0;
    }

    .operation_process .photo {
        height: 300px;
    }

    .operation_process .holder {
        padding: 30px;
    }

    .operation_process .holder span {
        padding: 0 10px;
    }
}.try_immediately {
    padding-bottom: 80px;
    padding-top: 80px;
}

.try_immediately h2 {
    color: rgb(27,59,61);
}

.try_immediately .button {
    background: rgb(27,59,61);
    color: #ffffff;
    white-space: normal;
    text-align: center;
}

.try_immediately .button:hover {
    background: rgb(55,120,124);
}

.try_immediately .holder {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.try_immediately h2 {
    font-size: 37px;
    font-weight: 600;
    margin-right: 24px;
    width: 66%;
    text-align: center;
}

.try_immediately .button {
    padding: 15px 25px;
    border-radius: 100px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .try_immediately .holder {
        flex-direction: column;
    }

    .wrapper-template section.try_immediately h2 {
        font-size: 26px;
    }

    .try_immediately h2 {
        margin: 0;
        margin-bottom: 24px;
        width: 90%;
    }

    .try_immediately .button {
        font-size: 24px;
    }

    .try_immediately {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.wrapper-template .try_immediately .holder {
    flex-direction: column;
    border-radius: 15px;
    padding: 60px 140px;
    background: linear-gradient(to bottom, rgb(55,120,124), rgb(55,120,124,0.5));
}

.wrapper-template .try_immediately h2 {
    margin: 0;
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 30px;
}

.wrapper-template .try_immediately .button {
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, .1);
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(27,59,61), rgb(27,59,61,0.5));
}

.wrapper-template .try_immediately .button:hover {
    background: linear-gradient(to left, rgb(27,59,61), rgb(27,59,61,0.5));
}

@media only screen and (max-width: 800px) {
    .wrapper-template .try_immediately .holder {
        padding: 40px 25px;
    }

    .wrapper-template .try_immediately {
        padding: 50px 0;
    }

    .wrapper-template .try_immediately h2 {
        font-size: 32px;
    }
}.thanksHub {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(83,182,188);
    padding: 80px 0;
}
.thanksHub .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #ffffff;
    color: #000000;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    width: 90%;
    border-left: 5px solid rgb(55,120,124);
}
.thanksHub h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    color: rgb(55,120,124);
    text-transform: uppercase;
    border-bottom: 2px solid rgb(55,120,124);
    padding-bottom: 10px;
    width: 100%;
    text-align: left;
}
.thanksHub p {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-top: 10px;
    width: 100%;
    text-align: left;
    padding-left: 10px;
    border-left: 2px solid rgb(27,59,61);
}
@media only screen and (max-width: 800px) {
    .thanksHub {
        padding: 20px;
    }
    .thanksHub .container {
        padding: 30px;
    }
    .thanksHub h2 {
        font-size: 19px;
        text-align: center;
        border-bottom: none;
        padding-bottom: 0;
    }
    .thanksHub p {
        font-size: 15px;
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
}
.program_offerings {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    background: rgb(83,182,188);
    color: #000000;
    font-family: Lato, sans-serif;
}

.program_offerings::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg, rgb(55,120,124), rgb(27,59,61), rgb(55,120,124));
    animation: rotate 10s linear infinite;
    z-index: -1;
    filter: blur(100px);
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.program_offerings h2 {
    color: #ffffff;
    font-size: 29px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.program_offerings .content {
    border-radius: 27px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}
.program_offerings .content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.program_offerings h3 {
    color: rgb(55,120,124);
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.program_offerings p {
    color: #000000;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.program_offerings .button {
    background: rgb(27,59,61);
    color: #ffffff;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.program_offerings .button:hover {
    background: rgb(55,120,124);
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.program_offerings .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.program_offerings .items {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.program_offerings .course {
    padding: 20px;
    max-width: 100%;
}

.program_offerings .photo {
    height: 500px;
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.program_offerings .photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.program_offerings .text_holder {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wrapper-template .program_offerings {
    padding: 100px 0;
}

.wrapper-template .program_offerings .items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.wrapper-template .program_offerings .photo {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
}

.wrapper-template .program_offerings .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 27px;
    width: 800px;
    padding: 40px;
}

.wrapper-template .program_offerings .text_holder {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
}

.wrapper-template .program_offerings h3 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 30px;
    color: rgb(55,120,124);
}

.wrapper-template .program_offerings p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.wrapper-template .program_offerings .button {
    margin-top: 30px;
    padding: 15px 30px;
    border: 2px solid rgb(55,120,124);
    background: rgb(27,59,61);
    border-radius: 10px;
    color: #ffffff;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.wrapper-template .program_offerings .button:hover {
    background: rgb(55,120,124);
    color: #ffffff;
    border: 2px solid rgb(27,59,61);
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 600px) {
    .program_offerings .items {
        flex-direction: column;
    }
    .program_offerings h2 {
        font-size: 24px;
    }
    .program_offerings h3 {
        font-size: 22px;
    }
    .program_offerings .course {
        width: 100%;
        padding: 10px;
    }
    .program_offerings {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .wrapper-template .program_offerings .photo {
        width: 300px;
        height: 300px;
    }
    .wrapper-template .program_offerings h3 {
        font-size: 28px;
        margin-top: 20px;
    }
    .wrapper-template .program_offerings .text_holder {
        padding: 20px;
    }
    .wrapper-template .program_offerings p {
        margin-top: 15px;
        font-size: 16px;
    }
    .wrapper-template .program_offerings .button {
        margin-top: 20px;
        padding: 10px 20px;
    }
    .wrapper-template .program_offerings .content {
        width: 100%;
        padding: 10px;
    }
}footer {
    background: rgb(27,59,61);
    color: #ffffff;
}

footer .copyright {
    background: rgb(55,120,124);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(55,120,124);
}

footer h5 {
    color: rgb(55,120,124);
}

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: 19px;
    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: 16px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 12px;
}

@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;
    }

}

.wrapper-template footer .footer {
    padding: 0;
}

.wrapper-template footer .footer_info {
    flex-direction: row-reverse;
    align-items: center;
    min-height: 100px;
}

.wrapper-template footer .menu_holder {
    flex-direction: column;
}

.wrapper-template footer .menu a {
    margin: 0;
    padding: 5px 10px;
    font-size: 20px;
    color: #ffffff;
}

.wrapper-template footer .copyright {
    background: rgb(55,120,124,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}

.wrapper-template footer .copyright_info {
    text-align: center;
}

.wrapper-template footer .logo_holder {
    width: calc(50% + 45px);
}

@media only screen and (max-width: 1200px) {
    .wrapper-template footer .logo_holder {
        width: auto;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-template footer .menu_holder {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .wrapper-template footer .menu a {
        padding-left: 0;
        margin-bottom: 5px;
        font-size: 18px
    }

    .wrapper-template footer .footer_info {
        padding: 20px 10px;
    }

    .wrapper-template footer .copyright_info {
        text-align: center;
    }

    .wrapper-template footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}
.wrapper-template .our_story {
    background: linear-gradient(135deg, rgb(55,120,124,0.5) 0%, rgb(27,59,61,0.5) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.wrapper-template .our_story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(55,120,124,0.5), transparent);
    animation: rotateBg 10s linear infinite;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
}

@keyframes rotateBg {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

.wrapper-template .our_story .holder {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
}

.wrapper-template .our_story .photo {
    display: block;
    width: 450px;
    height: 450px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 20px;
}

.wrapper-template .our_story .caption_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    padding: 40px;
    text-align: center;
}

.wrapper-template .our_story .style_element {
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wrapper-template .our_story h2 {
    color: #ffffff;
    font-size: 29px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.wrapper-template .our_story p {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {
    .wrapper-template .our_story .holder {
        flex-direction: column;
    }

    .wrapper-template .our_story .photo {
        width: 100%;
        height: 300px;
        border-radius: 0;
    }

    .wrapper-template .our_story .caption_holder {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-template .our_story .style_element {
        padding: 30px;
    }

    .wrapper-template .our_story h2 {
        font-size: 23px;
    }

    .wrapper-template .our_story p {
        font-size: 13px;
    }
}

@media only screen and (max-width: 600px) {
    .wrapper-template .our_story {
        padding: 40px 0;
    }

    .wrapper-template .our_story .style_element {
        padding: 20px;
    }

    .wrapper-template .our_story h2 {
        font-size: 17px;
    }

    .wrapper-template .our_story p {
        font-size: 16px;
    }
}.learning_impact {
    padding-bottom: 80px;
    padding-top: 80px;
}

.learning_impact .holder {
    display: flex;
    width: 100%;
}

.learning_impact h2 {
    text-align: left;
    margin-bottom: 20px;
}

.learning_impact .photo {
    width: 50%;
    flex-shrink: 0;
}

.learning_impact .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.learning_impact ul {
    list-style: none;
}

.learning_impact li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.learning_impact svg, .learning_impact path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(55,120,124);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .learning_impact {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .learning_impact .holder {
        flex-direction: column;
    }

    .learning_impact .text_holder {
        width: 100%;
    }

    .learning_impact .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.wrapper-template .learning_impact {
    background: rgb(27,59,61,0.5);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    border-radius: 21px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.wrapper-template .learning_impact::before {
    content: "";
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(55,120,124,0.5), transparent);
    position: absolute;
    top: -50%;
    left: -50%;
    z-index: 0;
    transform: rotate(45deg);
}

.wrapper-template .learning_impact .holder {
    flex-direction: row;
    align-items: normal;
    position: relative;
    z-index: 1;
}

.wrapper-template .learning_impact h2 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wrapper-template .learning_impact li {
    margin-bottom: 15px;
    font-size: 17px;
    color: #000000;
    display: flex;
    align-items: center;
}

.wrapper-template .learning_impact .photo {
    min-height: 450px;
    width: 45%;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.wrapper-template .learning_impact .photo:hover {
    transform: scale(1.01);
}

.wrapper-template .learning_impact .text_holder {
    padding: 60px;
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #ffffff;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.wrapper-template .learning_impact svg, .wrapper-template .learning_impact path {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    fill: rgb(55,120,124);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .wrapper-template .learning_impact {
        padding: 50px 0;
    }

    .wrapper-template .learning_impact::before {
        height: 100%;
    }

    .wrapper-template .learning_impact .holder {
        flex-direction: column;
    }

    .wrapper-template .learning_impact .photo {
        min-height: 250px;
        width: 100%;
        margin-bottom: 20px;
        border-radius: 0;
    }

    .wrapper-template .learning_impact .text_holder {
        padding: 40px;
        width: 100%;
        border-radius: 0;
    }

    .wrapper-template .learning_impact h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}.benefits_outline {
    padding: 80px 0;
    background: rgb(55,120,124);
}
.benefits_outline .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.benefits_outline .advantages_photo_holder {
    display: flex;
    align-items: stretch;
    width: 100%;
    justify-content: space-around;
}
.benefits_outline .advantages_photo_holder .photo {
    width: 30%;
    height: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    flex-shrink: 0;
    margin-left: 20px;
}
.benefits_outline .advantages_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    background: rgb(27,59,61);
    border-radius: 30px;
    overflow: hidden;
}
.benefits_outline .advantages_holder .advantage_item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: row-reverse;
    width: 100%;
    cursor: pointer;
}
.benefits_outline .advantages_holder .advantage_item:hover {
    background: rgba(0, 0, 0, 0.5);
}
.benefits_outline .advantages_holder .advantage_item svg, .benefits_outline .advantages_holder .advantage_item svg path {
    width: 25px;
    height: 25px;
    fill: #ffffff;
    margin-left: 10px;
}
.benefits_outline .advantages_content h2 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    margin: 20px 0;
    margin-bottom: 40px;
}
.benefits_outline .advantages_content h4{
    color: var(--white-color_opacity);
}
@media only screen and (max-width: 800px) {
    .benefits_outline .advantages_photo_holder {
        flex-direction: column;
    }
    .benefits_outline .advantages_photo_holder .photo {
        width: 100%;
        height: 200px;
        margin-left: 0;
    }
    .benefits_outline .advantages_content h2 {
        font-size: 23px;
    }
    .benefits_outline .advantages_holder {
        width: 100%;
        margin-bottom: 20px;
        align-items: center;
    }
}.location_details {
    color: #000000;
    background: linear-gradient(135deg, rgb(83,182,188) 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.location_details .contact_holder {
    padding: 30px;
    border-radius: 26px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    border-left: 4px solid rgb(55,120,124);
    display: flex;
    flex-direction: column;
}
.location_details .holder .info_holder div.our_work_hours {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.location_details .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.location_details .holder .info_holder > div > div {
    margin: 5px 0;
}
.location_details .contact_holder:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: -12px;
    top: 20px;
    background: #ffffff;
    border: 4px solid rgb(55,120,124);
}
.location_details h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: rgb(55,120,124);
}
.location_details h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: rgb(55,120,124);
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}
.location_details .holder {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.location_details .contact_description {
    width: 100%;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
}
.location_details .photo {
    width: 320px;
    height: 320px;
    margin-right: 30px;
    border-radius: 26px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.location_details .info_holder {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location_details .info_holder>div {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 16px;
}
.location_details .holder .info_holder>div span {
    margin-left: 8px;
}
.location_details .info_holder>div a {
    color: rgb(55,120,124);
    text-decoration: none;
    transition: color 0.3s;
}
.location_details .info_holder>div a:hover {
    color: rgb(27,59,61);
}
.location_details .info_holder svg {
    width: 28px;
    height: 28px;
    fill: rgb(55,120,124);
    margin-right: 15px;
}
.location_details .contact_politics {
    margin-top: 40px;
    padding: 20px;
    background: rgb(83,182,188);
    border-radius: 26px;
}
.location_details .contact_politics>div {
    margin-bottom: 20px;
}
.location_details .contact_politics>div h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgb(55,120,124);
}
.location_details .contact_politics>div p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}
@media only screen and (max-width: 900px) {
    .location_details .photo {
        width: 100%;
        height: 250px;
        margin-right: 0;
        margin-bottom: 20px;
        border-radius: 26px;
    }
    .location_details .info_holder {
        width: 100%;
    }
    .location_details h2 {
        font-size: 28px;
    }
}
.contact {
    padding: 100px 0;
    background: #000000;
    color: #ffffff;
    font-family: Lato, sans-serif;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(55,120,124,0.5), transparent);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact h3 {
    color: #ffffff;
    font-size: 33px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
    z-index: 2;
    grid-column: span 2;
}

.contact .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}
.contact .name_holder input {
    width: 100%;
}
.contact form input,
.contact form textarea {
    color: #000000;
    background: #ffffff;
    border: none;
    padding: 15px;
    font-size: 13px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.contact form input:focus,
.contact form textarea:focus {
    box-shadow: 0 0 10px rgb(27,59,61,0.5);
}

.contact form .button {
    grid-column: span 2;
    background: rgb(27,59,61);
    color: #ffffff;
    border-radius: 28px;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact form .button:hover {
    background: rgb(55,120,124);
}

.contact .name_holder {
    grid-column: span 2;
    display: flex;
    gap: 20px;
}

.contact .agree {
    grid-column: span 2;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.contact .agree label {
    font-size: 13px;
}

.contact .agree a {
    margin-left: 5px;
    color: rgb(55,120,124);
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}

.contact .agree a:hover {
    color: rgb(27,59,61);
}

.contact .form_text {
    grid-column: span 2;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.contact .agree input[type=checkbox] {
    width: auto;
    margin-right: 10px;
}

@media only screen and (max-width: 800px) {
    .contact form {
        display: flex;
        flex-direction: column;
    }
    .contact .name_holder {
        flex-direction: column;
    }
    .contact .button {
        grid-column: span 1;
    }
    .contact {
        padding: 50px 20px;
    }
    .contact h3 {
        font-size: 19px;
    }
    .contact .container {
        padding: 30px;
    }
}
.pricing_plan_card {
    background: rgb(83,182,188);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing_plan_card::before,
.pricing_plan_card::after {
    content: '';
    position: absolute;
    width: 150vmax;
    height: 150vmax;
    top: -50vmax;
    background: radial-gradient(circle, 
        rgb(55,120,124,0.5) 0%,
        rgb(27,59,61,0.5) 45%,
        transparent 70%
    );
    animation: backgroundFlow 20s linear infinite;
}

.pricing_plan_card::before {
    left: -50%;
    animation-delay: -5s;
}

.pricing_plan_card::after {
    right: -50%;
    animation-delay: -15s;
}

.pricing_plan_card .container {
    position: relative;
    z-index: 2;
}

.pricing_plan_card .price_info_holder {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.pricing_plan_card .photo {
    height: 400px;
    margin-bottom: 60px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.pricing_plan_card .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        transparent 0%,
        rgb(55,120,124,0.5) 100%
    );
    opacity: 0.7;
}

.pricing_plan_card h2 {
    font-size: 31px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing_plan_card h3 {
    font-size: 22px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.pricing_plan_card .price_items {
    display: grid;
    gap: 30px;
}

.pricing_plan_card .price_items:has(.price_item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.pricing_plan_card .price_items:has(.price_item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.pricing_plan_card .price_items:has(.price_item:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.pricing_plan_card .price_items:has(.price_item:nth-child(4):last-child) .price_item:nth-child(1),
.pricing_plan_card .price_items:has(.price_item:nth-child(4):last-child) .price_item:nth-child(2) {
    grid-column: span 1;
}

.pricing_plan_card .price_items:has(.price_item:nth-child(4):last-child) .price_item:nth-child(3),
.pricing_plan_card .price_items:has(.price_item:nth-child(4):last-child) .price_item:nth-child(4) {
    grid-column: span 1;
}

.pricing_plan_card .price_item {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.85)
    );
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing_plan_card .price_item h3 {
    font-size: 22px;
    color: rgb(55,120,124);
    margin: 0;
    text-align: left;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.pricing_plan_card .price_item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(55,120,124);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.pricing_plan_card .price_item .price_amount {
    font-size: 46px;
    color: #000000;
    font-weight: 700;
    margin: 0;
}

.pricing_plan_card .price_item span {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.pricing_plan_card .price_item .button {
    background: linear-gradient(135deg,
        rgb(55,120,124) 0%,
        rgb(27,59,61) 100%
    );
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing_plan_card .price_item .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: transform 0.6s ease;
}

.pricing_plan_card .price_item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px -15px rgba(0, 0, 0, 0.5),
        0 0 15px rgb(55,120,124,0.5);
}

.pricing_plan_card .price_item:hover h3::after {
    width: 100px;
}

.pricing_plan_card .price_item .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px -5px rgb(55,120,124);
}

.pricing_plan_card .price_item .button:hover::before {
    transform: translateX(200%);
}

@keyframes backgroundFlow {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

@media (max-width: 991px) {
    .pricing_plan_card {
        padding: 80px 0;
    }
    
    .pricing_plan_card .photo {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .pricing_plan_card .price_items {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .pricing_plan_card .price_item {
        padding: 30px;
    }
    
    .pricing_plan_card .price_items:has(.price_item:nth-child(4):last-child) .price_item {
        grid-column: span 1 !important;
    }
}

@media (max-width: 767px) {
    .pricing_plan_card {
        padding: 60px 0;
    }
    
    .pricing_plan_card .photo {
        height: 200px;
        margin-bottom: 30px;
    }
    
    .pricing_plan_card .price_items {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing_plan_card h2 {
        font-size: calc(31px * 0.9);
    }
    
    .pricing_plan_card h3 {
        font-size: calc(22px * 0.9);
        margin-bottom: 30px;
    }
    
    .pricing_plan_card .price_item {
        padding: 25px;
    }
}.leadership_experience {
    padding-top: 80px;
    padding-bottom: 80px;
}

.leadership_experience .review .name {
    color: rgb(27,59,61);
}

.leadership_experience .review span {
    color: rgb(55,120,124);
}

.leadership_experience .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.leadership_experience .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.leadership_experience .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.leadership_experience .review .name {
    font-size: 20px;
    margin-bottom: 8px;
}

.leadership_experience .review span {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 14px;
}

.leadership_experience .review .quote {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .leadership_experience .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .leadership_experience .holder {
        flex-direction: column;
    }

    .leadership_experience .review {
        max-width: unset;
        width: 100%;
    }

    .leadership_experience {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.wrapper-template .leadership_experience .review {
    flex-direction: row;
    max-width: unset;
    width: 100%;
    align-items: center;
    padding: 0;
    background: rgb(27,59,61,0.5);
}

.wrapper-template .leadership_experience .holder {
    width: 100%;
}

.wrapper-template .leadership_experience .photo {
    border-radius: 0 0 300px 0;
    margin-right: 48px;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.wrapper-template .worker_description {
    padding: 32px 32px 32px 0px;
    display: flex;
    flex-direction: column-reverse;
}

.wrapper-template .leadership_experience .review .name {
    color: #000000;
    order: 1;
    font-size: 14px;
    font-weight: 700;
}

.wrapper-template .leadership_experience .review span {
    color: rgba(0, 0, 0, 0.5);
    order: 0;
    font-size: 14px;
}

.wrapper-template .leadership_experience .review .quote {
    color: #000000;
    order: 2;
    margin-bottom: 16px;
    font-size: 18px;
}

@media only screen and (max-width: 800px) {
    .wrapper-template .leadership_experience .review {
        flex-direction: column;
    }

    .wrapper-template .leadership_experience .photo {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrapper-template .worker_description {
        width: 100%;
        padding: 20px;
    }
}