* {
    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-border {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(233,236,239);
}
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;
    }
}.educational_yield {
    position: relative;
    padding: 180px 0;
    background: rgb(233,236,239);
    perspective: 2000px;
    overflow: hidden;
}

.educational_yield::before,
.educational_yield::after {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(
        from 45deg at 50% 50%,
        rgb(173,181,189,0.5) 0deg,
        transparent 60deg,
        rgb(73,80,87,0.5) 120deg,
        transparent 180deg,
        rgb(173,181,189,0.5) 240deg,
        transparent 300deg,
        rgb(73,80,87,0.5) 360deg
    );
    animation: ambientRotate 30s linear infinite;
    opacity: 0.3;
    filter: blur(80px);
}

.educational_yield::after {
    animation-direction: reverse;
    animation-duration: 20s;
    opacity: 0.2;
    filter: blur(120px);
}

.educational_yield .container {
    position: relative;
    z-index: 2;
}

.educational_yield .holder {
    position: relative;
    transform-style: preserve-3d;
    border-radius: 25px;
}

.educational_yield .content_holder {
    position: relative;
    padding: 120px 80px;
    border-radius: 25px;
    background-blend-mode: luminosity;
    overflow: hidden;
    isolation: isolate;
}

.educational_yield .content_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        #000000 0%,
        transparent 30%,
        rgb(173,181,189,0.5) 70%,
        rgb(73,80,87,0.5) 100%
    );
    mask: linear-gradient(
        to bottom,
        transparent,
        black 30%,
        black 70%,
        transparent
    );
    z-index: 1;
}

.educational_yield .content_holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgb(173,181,189,0.5) 1px, transparent 1px),
        linear-gradient(0deg, rgb(173,181,189,0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center;
    opacity: 0.05;
    transform: perspective(1000px) rotateX(60deg) scale(2.5);
    transform-origin: 50% 0%;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

.educational_yield .content_holder h3 {
    position: relative;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    z-index: 2;
    background: linear-gradient(
        to right,
        #ffffff,
        rgb(173,181,189) 50%,
        #ffffff
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 8s linear infinite;
}

.educational_yield .content_holder div {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    z-index: 2;
}

.educational_yield .content_holder p {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;
    padding: 40px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 25px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px -15px #000000,
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: cardReveal 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: calc(0.15s * var(--i));
}

.educational_yield .content_holder p:nth-child(4n + 1) {
    grid-column: span 7;
    transform: translateZ(60px) rotate3d(1, -1, 0, 2deg);
}

.educational_yield .content_holder p:nth-child(4n + 2) {
    grid-column: span 5;
    transform: translateZ(40px) rotate3d(-1, 1, 0, -2deg);
}

.educational_yield .content_holder p:nth-child(4n + 3) {
    grid-column: span 6;
    transform: translateZ(50px) rotate3d(1, 1, 0, 1deg);
}

.educational_yield .content_holder p:nth-child(4n + 4) {
    grid-column: span 6;
    transform: translateZ(30px) rotate3d(-1, -1, 0, -1deg);
}

.educational_yield .content_holder p:hover {
    transform: translateZ(90px) scale(1.03);
    background: linear-gradient(
        135deg,
        rgb(173,181,189,0.5) 0%,
        rgb(73,80,87,0.5) 100%
    );
    box-shadow: 
        0 30px 60px -20px #000000,
        inset 0 0 0 2px rgb(173,181,189,0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes ambientRotate {
    from { transform: rotate(0deg) scale(1.5); }
    to { transform: rotate(360deg) scale(1.5); }
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 30px 30px; }
}

@keyframes shimmerText {
    to { background-position: -200% center; }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (max-width: 1400px) {
    .educational_yield .content_holder {
        padding: 100px 60px;
    }
    
    .educational_yield .content_holder p:nth-child(4n + 1),
    .educational_yield .content_holder p:nth-child(4n + 2) {
        grid-column: span 6;
    }
}

@media (max-width: 1200px) {
    .educational_yield {
        padding: 140px 0;
    }
    
    .educational_yield .content_holder div {
        gap: 25px;
    }
    
    .educational_yield .content_holder p {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .educational_yield {
        padding: 120px 0;
    }
    
    .educational_yield .content_holder {
        padding: 80px 40px;
    }
    
    .educational_yield .content_holder div {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .educational_yield .content_holder p {
        grid-column: span 3 !important;
    }
    
    .educational_yield .content_holder h3 {
        font-size: calc(48px * 0.8);
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .educational_yield {
        padding: 100px 0;
    }
    
    .educational_yield .content_holder {
        padding: 60px 30px;
    }
    
    .educational_yield .content_holder div {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .educational_yield .content_holder p {
        grid-column: span 1 !important;
        padding: 30px;
    }
    
    .educational_yield .content_holder h3 {
        font-size: calc(48px * 0.7);
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .educational_yield {
        padding: 80px 0;
    }
    
    .educational_yield .content_holder {
        padding: 40px 20px;
    }
    
    .educational_yield .content_holder p {
        padding: 25px;
        font-size: calc(15px * 0.9);
    }
    
    .educational_yield .content_holder h3 {
        font-size: calc(48px * 0.6);
        margin-bottom: 30px;
    }
}.course_highlights {
    padding: 120px 20px;
    background: rgb(173,181,189,0.5);
    font-family: Lato, sans-serif;
    position: relative;
    overflow: hidden;
}

.course_highlights::before, .course_highlights::after {
    content: '';
    position: absolute;
    border: 2px solid rgb(73,80,87);
    border-radius: 50%;
    height: 300px;
    width: 300px;
    top: -100px;
    right: -100px;
    opacity: 0.2;
}

.course_highlights::after {
    top: auto;
    bottom: -100px;
    left: -100px;
}

.course_highlights .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.course_highlights h2 {
    color: #000000;
    font-size: 43px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.course_highlights h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 5px;
    background: rgb(73,80,87);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.course_highlights .holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.course_highlights .course {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-bottom: 30px;
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    padding: 20px;
    border: 1px solid rgb(73,80,87);
    position: relative;
}

.course_highlights .course::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgb(73,80,87,0.5);
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.course_highlights .course .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course_highlights .photo {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border: 1px solid rgb(173,181,189);
    border-radius: 10px;
}

.course_highlights .text_holder {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgb(173,181,189,0.5);
}

.course_highlights h3 {
    font-size: 18px;
    font-weight: 700;
    color: rgb(173,181,189);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.course_highlights p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

.course_highlights .button {
    background: rgb(73,80,87);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    border: 1px solid rgb(173,181,189);
}

.course_highlights .button:hover {
    background: rgb(173,181,189);
}

@media only screen and (max-width: 768px) {
    .course_highlights {
        padding: 60px 10px;
    }

    .course_highlights h2 {
        font-size: 29px;
    }

    .course_highlights .holder {
        flex-direction: column;
    }

    .course_highlights .course {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .course_highlights h3 {
        font-size: 17px;
    }

    .course_highlights p {
        font-size: 16px;
    }

    .course_highlights .photo {
        height: 150px;
    }
}

.wrapper-border .course_highlights .items {
    width: 100%;
}

.wrapper-border .course_highlights .photo {
    border-radius: 11px;
    height: 300px;
    width: 100%;
    margin: 0 auto;
}

.wrapper-border .course_highlights .text_holder {
    border-radius: 11px;
    border: 2px solid rgb(73,80,87);
    width: 80%;
    margin-top: -150px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.wrapper-border .course_highlights h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.wrapper-border .course_highlights .button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    border-radius: 30px;
    background: rgb(173,181,189);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.wrapper-border .course_highlights .button:hover {
    background: rgb(73,80,87);
}

@media only screen and (max-width: 800px) {
    .wrapper-border .course_highlights .photo {
        width: 100%;
        height: 200px;
    }

    .wrapper-border .course_highlights .text_holder {
        width: 100%;
        margin-top: -100px;
        padding: 20px;
    }

    .wrapper-border .course_highlights h3 {
        font-size: 17px;
    }
    .course_highlights .course {
        padding: 10px;
    }
}
.info_hub {
    color: #000000;
    background-color: #ffffff;
    padding: 80px 0;
    font-family: Lato, sans-serif;
}
.info_hub .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #000000;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 90vw;
    min-width: 300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.info_hub .holder .info_holder div.our_work_hours {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.info_hub .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.info_hub .holder .info_holder > div > div {
    margin: 5px 0;
}
.info_hub .container:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-color: rgb(173,181,189);
}
.info_hub .holder .info_holder>div span {
    margin-left: 8px;
}
.info_hub .contact_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 3vw;
    position: relative;
}
.info_hub .contact_holder h2 {
    font-size: 28px;
    color: rgb(173,181,189);
    margin-bottom: 1.5vw;
    text-align: center;
    position: relative;
}
.info_hub .contact_holder h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: rgb(173,181,189);
    border-radius: 2px;
}
.info_hub .contact_holder .contact_description {
    font-size: 16px;
    color: #000000;
    text-align: center;
    margin: 2vw 0;
    padding: 1vw;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background: rgba(240, 240, 240, 0.9);
    max-width: 90vw;
    min-width: 280px;
}
.info_hub .contact_holder .photo {
    width: 100%;
    height: 40vh;
    border-radius: 20px;
    margin-bottom: 2vw;
    position: relative;
    transition: transform 0.3s ease, border 0.3s ease;
}
.info_hub .photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.info_hub .photo:hover {
    transform: scale(1.02);
    border: 1px solid rgb(173,181,189);
}
.info_hub .photo:hover::before {
    opacity: 0.4;
}
.info_hub .info_holder {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.5vw;
}
.info_hub .info_holder > div {
    display: flex;
    align-items: center;
    margin-bottom: 1.5vw;
    font-size: 16px;
    color: #000000;
    position: relative;
}
.info_hub .info_holder svg {
    width: 20px;
    height: 20px;
    fill: rgb(173,181,189,0.5);
    margin-right: 10px;
    transition: fill 0.3s ease;
}
.info_hub .info_holder svg:hover {
    fill: rgb(173,181,189);
}
.info_hub .info_holder a {
    color: rgb(173,181,189);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.info_hub .info_holder a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(173,181,189);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}
.info_hub .info_holder a:hover {
    color: rgb(73,80,87);
    text-shadow: 0 0 5px rgb(73,80,87);
}
.info_hub .info_holder a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.info_hub .contact_politics {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2vw;
    background: rgb(233,236,239);
    border-radius: 20px;
    border: 1px solid #000000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.info_hub .contact_politics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgb(173,181,189);
    border-radius: 20px 20px 0 0;
    z-index: -1;
}
.info_hub .contact_politics > div {
    margin-bottom: 1.5vw;
}
.info_hub .contact_politics > div h4 {
    font-weight: 600;
    font-size: 21px;
    color: rgb(173,181,189);
    margin-bottom: 1vw;
}
.info_hub .contact_politics > div p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}
@media only screen and (max-width: 768px) {
    .info_hub .container {
        max-width: 100vw;
        padding: 4vw;
    }
    .info_hub .contact_holder {
        padding: 5vw;
    }
    .info_hub .contact_holder .photo {
        height: 30vh;
    }
    .info_hub .contact_description {
        padding: 2vw;
    }
    
    .info_hub .contact_politics {
        padding: 3vw;
    }
}
.advantages_benefits {
    padding: 70px 0;
    background: rgb(233,236,239);
    position: relative;
    overflow: hidden;
}
.advantages_benefits:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(173,181,189,0.5) 0%, rgb(73,80,87,0.5) 100%);
    opacity: 0.2;
    z-index: 1;
}
.advantages_benefits .advantages_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    gap: 20px;
    z-index: 2;
    position: relative;
    flex-wrap: wrap;
}
.advantages_benefits .advantages_photo_holder {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
}
.advantages_benefits .advantages_photo_holder .photo {
    flex: 1;
    height: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantages_benefits .advantages_holder {
    display: flex;
    flex-direction: column;
    flex: 2;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.advantages_benefits .advantages_holder .advantage_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}
.advantages_benefits .advantages_holder .advantage_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.advantages_benefits .advantages_holder .advantage_item .advantage_image {
    margin-right: 15px;
}
.advantages_benefits .advantages_holder .advantage_item svg, .advantages_benefits .advantages_holder .advantage_item svg path {
    width: 50px;
    height: 50px;
    fill: rgb(173,181,189);
}
.advantages_benefits .advantages_holder .advantage_item h4 {
    font-size: 16px;
    color: rgb(173,181,189);
    font-weight: 600;
}
.advantages_benefits .advantages_content h2 {
    font-size: 28px;
    color: rgb(173,181,189);
    text-align: center;
    margin: 20px 0;
    width: 100%;
}
@media only screen and (max-width: 800px) {
    .advantages_benefits {
        padding: 50px 0;
    }
    .advantages_benefits .advantages_content {
        flex-direction: column;
        padding: 20px;
    }
    .advantages_benefits .advantages_photo_holder {
        flex-direction: column;
    }
    .advantages_benefits .advantages_photo_holder .photo {
        height: 250px;
        flex: auto;
    }
    .advantages_benefits .advantages_holder {
        flex-direction: column;
        gap: 10px;
    }
    .advantages_benefits .advantages_holder .advantage_item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .advantages_benefits .advantages_holder .advantage_item .advantage_image {
        margin: 0 0 15px 0;
    }
    .advantages_benefits .advantages_content h2 {
        font-size: 16px;
    }
}
.wrapper-border .our_story .holder {
    height: auto;
    position: relative;
    overflow: hidden;
}

.our_story {
    padding: 80px 0;
    background: rgb(73,80,87);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wrapper-border .our_story .holder .photo {
    display: block;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.9;
    overflow: hidden;
}

.wrapper-border .our_story .caption_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 20px;
    gap: 20px;
    border-left: 5px solid rgb(173,181,189);
}

.wrapper-border .our_story .style_element {
    background: rgb(173,181,189,0.5);
    padding: 50px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 368px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 2;
    transition: background 0.8s ease, transform 0.8s ease;
}

.wrapper-border .our_story .style_element:hover {
    background: rgb(173,181,189);
    transform: scale(1.02);
}

.wrapper-border .our_story h2 {
    color: #ffffff;
    margin-top: 20px;
    font-size: 29px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.8s ease;
}

.wrapper-border .our_story h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: rgb(73,80,87);
    bottom: -10px;
    left: 0;
    transition: width 0.8s ease;
}

.wrapper-border .our_story h2:hover::after {
    width: 100%;
}

.wrapper-border .our_story p {
    color: #ffffff;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
    transition: color 0.8s ease;
}

@media only screen and (max-width: 1200px) {
    .wrapper-border .our_story .holder .photo {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-border .our_story .style_element {
        width: 100%;
        padding: 30px;
    }
    .wrapper-border .our_story .holder .photo {
        width: 100%;
        height: 250px;
        margin-top: 10px;
    }
    .wrapper-border .our_story .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
    }
    .wrapper-border .our_story h2 {
        font-size: 29px;
    }
}

.wrapper-border .our_story .style_element::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: rgb(73,80,87,0.5);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(15px);
    transition: opacity 0.8s ease;
}

.wrapper-border .our_story .style_element:hover::before {
    opacity: 0.9;
}


.wrapper-border .our_story .style_element:hover::after {
    height: 110%;
}.access_now {
    padding-bottom: 80px;
    padding-top: 80px;
}

.access_now h2 {
    color: rgb(73,80,87);
}

.access_now .button {
    background: rgb(73,80,87);
    color: #ffffff;
    white-space: normal;
    text-align: center;
}

.access_now .button:hover {
    background: rgb(173,181,189);
}

.access_now .holder {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.access_now h2 {
    font-size: 30px;
    font-weight: 600;
    margin-right: 24px;
    width: 66%;
    text-align: center;
}

.access_now .button {
    padding: 15px 25px;
    border-radius: 100px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .access_now .holder {
        flex-direction: column;
    }

    .wrapper-border section.access_now h2 {
        font-size: 26px;
    }

    .access_now h2 {
        margin: 0;
        margin-bottom: 24px;
        width: 90%;
    }

    .access_now .button {
        font-size: 24px;
    }

    .access_now {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.wrapper-border .access_now {
    position: relative;
    overflow: hidden;
    background: rgb(173,181,189);
    color: #ffffff;
    padding: 80px 0;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.wrapper-border .access_now::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(173,181,189,0.5);
    mix-blend-mode: overlay;
    z-index: 1;
}

.wrapper-border .access_now .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.wrapper-border .access_now .holder {
    width: 90%;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-radius: 13px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.wrapper-border .access_now .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.wrapper-border .access_now h2 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(173,181,189);
    margin-bottom: 20px;
    position: relative;
}

.wrapper-border .access_now h2::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: rgb(73,80,87);
    transform: translateX(-50%);
}

.wrapper-border .access_now .button {
    padding: 15px 50px;
    background: rgb(73,80,87);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.wrapper-border .access_now .button:hover {
    background: rgb(173,181,189);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 800px) {
    .wrapper-border .access_now {
        clip-path: none;
        padding: 60px 0;
    }

    .wrapper-border .access_now .holder {
        width: 100%;
        padding: 30px;
    }

    .wrapper-border .access_now h2 {
        font-size: 21px;
    }

    .wrapper-border .access_now .button {
        width: 100%;
        padding: 15px;
    }
}.confidential_refuge {
    padding: 40px;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Lato, sans-serif;
    color: #000000;
}

.confidential_refuge h1 {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 47px;
    font-weight: 700;
    color: rgb(173,181,189);
    border-bottom: 3px solid rgb(173,181,189);
    padding-bottom: 15px;
}

.confidential_refuge h2 {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 36px;
    font-weight: 600;
    color: rgb(73,80,87);
    border-bottom: 2px solid rgb(73,80,87);
    padding-bottom: 10px;
}

.confidential_refuge ul, .confidential_refuge ol {
    list-style-type: none;
    padding-left: 0;
    margin: 25px 0;
}

.confidential_refuge ul li, .confidential_refuge ol li {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
}

.confidential_refuge ul li::before, .confidential_refuge ol li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: rgb(173,181,189);
    border-radius: 50%;
}

.confidential_refuge p, .confidential_refuge span, .confidential_refuge div {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 17px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .confidential_refuge {
        padding: 25px;
    }

    .confidential_refuge h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .confidential_refuge h2 {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .confidential_refuge ul li, .confidential_refuge ol li {
        font-size: 17px;
    }
}

.confidential_refuge h3, .confidential_refuge h4, .confidential_refuge h5, .confidential_refuge h6 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 5px;
}

.confidential_refuge section {
    background: rgb(233,236,239);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.confidential_refuge a {
    color: rgb(173,181,189);
    text-decoration: none;
    border-bottom: 2px solid rgb(173,181,189,0.5);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.confidential_refuge a:hover {
    color: rgb(73,80,87);
    border-bottom-color: rgb(73,80,87,0.5);
}footer {
    background: rgb(73,80,87);
    color: #ffffff;
    font-family: Lato, sans-serif;
}
footer .copyright {
    background: rgb(173,181,189);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    border-top: 2px solid rgb(73,80,87);
    font-size: 14px;
}
footer .logo_holder svg,
footer .logo_holder svg path,
footer .logo_holder img {
    height: 80px;
    width: 80px;
    fill: rgb(173,181,189);
    margin-right: 15px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    margin-right: 20px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
footer .menu a:hover {
    color: rgb(173,181,189);
}
footer .footer {
    padding-top: 60px;
    padding-bottom: 60px;
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .menu_holder {
    display: flex;
    flex-direction: column;
}
footer .copyright_info {
    color: #ffffff;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}
footer .copyright_info a:hover {
    color: rgb(73,80,87);
}
.wrapper-border footer .footer {
    padding: 0;
    background: rgb(73,80,87);
}
.wrapper-border footer .footer_info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wrapper-border footer .logo_holder {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 3px solid rgb(173,181,189);
    margin-bottom: 20px;
}
.wrapper-border footer .menu_holder {
    flex-direction: row;
    justify-content: center;
}
.wrapper-border footer .menu a {
    padding: 5px 20px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
    margin: 10px;
}
.wrapper-border footer .menu a:hover {
    background: rgb(173,181,189);
    color: #ffffff;
}
.wrapper-border footer .copyright {
    background: rgb(173,181,189,0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    border-radius: 22px;
}
.wrapper-border footer .copyright_info {
    text-align: center;
    font-weight: 400;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info,
    footer .menu_holder,
    .wrapper-border footer .footer_info,
    .wrapper-border footer .menu_holder {
        flex-direction: column;
        align-items: center;
    }
    footer .menu a,
    .wrapper-border footer .menu a {
        margin: 0 0 10px 0;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
    .wrapper-border footer .footer_info {
        padding: 10px;
    }
    .wrapper-border footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}.customer_comments {
    background: linear-gradient(135deg, #ffffff, rgb(233,236,239));
    padding: 60px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.customer_comments::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(rgb(173,181,189), 0.03) 0%, transparent 70%);
    animation: pulse 15s infinite linear;
}

@keyframes pulse {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-5%, -5%); }
    100% { transform: translate(0, 0); }
}

.customer_comments::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(173,181,189), rgb(73,80,87));
}

.customer_comments h3 {
    font-size: 2.5rem;
    font-family: Lato, sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
    color: rgb(173,181,189);
    text-align: center;
    position: relative;
    z-index: 1;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.customer_comments h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(173,181,189), rgb(73,80,87));
    border-radius: 2px;
}

.customer_comments .reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.customer_comments .reviews .review {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.customer_comments .reviews .review:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.customer_comments .reviews .review::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(173,181,189), rgb(73,80,87));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.customer_comments .reviews .review:hover::before {
    opacity: 1;
}

.customer_comments .reviews .review .photo {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.customer_comments .reviews .review .photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
}

.customer_comments .reviews .review .text {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
}

.customer_comments .reviews .text p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgb(173,181,189);
    transition: color 0.3s ease;
}

.customer_comments .reviews .text span {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
}

.customer_comments .reviews .review::after {
    content: "\201D";
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    color: rgb(73,80,87);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.customer_comments .reviews .review:hover::after {
    opacity: 0.2;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .customer_comments {
        padding: 50px 20px;
    }
    
    .customer_comments h3 {
        font-size: 2.2rem;
    }
    
    .customer_comments .reviews {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .customer_comments {
        padding: 40px 15px;
    }
    
    .customer_comments h3 {
        font-size: 2rem;
    }
    
    .customer_comments .reviews {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .customer_comments h3 {
        font-size: 1.8rem;
    }
    
    .customer_comments .reviews .review .photo {
        height: 180px;
    }
    
    .customer_comments .reviews .text p {
        font-size: 1rem;
    }
    
    .customer_comments .reviews .text span {
        font-size: 0.9rem;
    }
}.gratContent {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(233,236,239);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.gratContent .container {
    background-color: rgb(233,236,239);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gratContent h2 {
    font-size: 41px;
    color: rgb(173,181,189);
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    font-weight: 600;
    border-bottom: 4px solid rgb(173,181,189);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}
.gratContent p {
    font-size: 12px;
    color: #000000;
    font-family: Lato, sans-serif;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto 0;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border-left: 4px solid rgb(73,80,87);
}
@media only screen and (max-width: 800px) {
    .gratContent {
        padding: 20px;
    }
    .gratContent .container {
        padding: 20px;
    }
    .gratContent h2 {
        font-size: 29px;
        padding-bottom: 5px;
    }
    .gratContent p {
        font-size: 19px;
        padding: 15px;
    }
}
.mentorship_experience {
    padding: 100px 0;
    background: rgb(73,80,87);
    font-family: Lato, sans-serif;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mentorship_experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
}
.mentorship_experience::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 10%);
    background-size: 50px 50px;
    z-index: 1;
    animation: animateBackground 20s linear infinite;
}
@keyframes animateBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}
.mentorship_experience .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}
.mentorship_experience .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(73,80,87);
    padding: 3vw;
    border-radius: 29px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 -10px 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 800px;
    margin: 20px;
}
.mentorship_experience .review .photo {
    width: 50vw;
    height: 50vw;
    max-width: 300px;
    max-height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.mentorship_experience .worker_description {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    margin-top: 2vw;
    text-align: center;
    width: 80%;
}
.mentorship_experience .worker_description p {
    margin: 5px 0;
    font-size: 19px;
    font-weight: 600;
}
.mentorship_experience .worker_info {
    margin-top: 3vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mentorship_experience .worker_info p {
    margin: 10px 0;
    padding: 2vw;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: left;
    color: #ffffff;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    text-align: center;
}
@media only screen and (max-width: 800px) {
    .mentorship_experience .container {
        flex-direction: column;
    }
    .mentorship_experience .review {
        flex-direction: column;
        width: 100%;
        align-items: center;
        margin: auto;
    }
    .mentorship_experience .review .photo {
        width: 60vw;
        height: 60vw;
        max-width: 300px;
        max-height: 300px;
    }
    .mentorship_experience .worker_description {
        align-items: center;
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
    .mentorship_experience .worker_info p {
        width: 100%;
        text-align: center;
    }
}
header .main_header {
    background: rgb(173,181,189);
    color: #ffffff;
    padding: 20px 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
header .logo_holder {
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin-right: 24px;
}
header .logo_holder .logotype {
    display: flex;
    align-items: center;
    text-decoration: none;
}
header .logo_holder svg, header .logo_holder img {
    height: 60px;
    width: 60px;
    fill: rgb(173,181,189);
    transition: transform 0.3s ease-in-out;
}
header .logo_holder svg:hover, header .logo_holder img:hover {
    transform: scale(1.1);
}
header .menu {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}
header .menu a {
    color: rgb(173,181,189);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 10px;
}
header .menu a:hover {
    background: rgb(73,80,87);
    color: #ffffff;
}
header .menu a.active {
    background: #ffffff;
    color: rgb(173,181,189);
    border: 2px solid rgb(73,80,87);
}
header .menu a.active:hover {
    background: rgb(173,181,189);
    color: #ffffff;
    border: 2px solid rgb(173,181,189);
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header .header_content::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: 40px;
    background: rgb(173,181,189);
    border-radius: 20px;
    z-index: -1;
}
@media (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        flex-direction: column;
        align-items: flex-start;
        display: none;
        width: 100%;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        padding: 15px;
        width: 100%;
        text-align: center;
    }
    header .logo_holder {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        height: 40px;
        width: 40px;
    }
}

.wrapper-border header .main_header {
    background: rgb(173,181,189);
}
.wrapper-border header .header_content {
    border-radius: 11px;
    background: #ffffff;
    padding: 20px 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    position: relative;
}
.wrapper-border header .logo_holder .logotype svg, .wrapper-border header .logo_holder .logotype img {
    width: 65px;
    height: 65px;
}
.wrapper-border header .menu a {
    font-weight: 700;
    font-size: 14px;
}.training_structure {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.training_structure .work_holder {
    padding: 55px 0;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1500px;
}

.training_structure .work_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, 
            rgba(0,0,0,0.8) 0%,
            rgba(0, 0, 0, 0.5) 30%,
            transparent 70%
        );
    z-index: 1;
}

.training_structure .work_holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, 
            transparent 49.5%, 
            rgba(255,255,255,0.05) 50%, 
            transparent 50.5%
        ),
        linear-gradient(0deg, 
            transparent 49.5%, 
            rgba(255,255,255,0.05) 50%, 
            transparent 50.5%
        );
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    z-index: 2;
    opacity: 0.5;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 30px 30px; }
}

.training_structure .container {
    position: relative;
    z-index: 3;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.training_structure .text_holder {
    width: 75%;
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.98) 100%
    );
    border-radius: 20px;
    padding: 45px;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 25px 50px -12px rgba(0,0,0,0.25),
        0 0 0 1px rgba(255,255,255,0.1);
}

.training_structure .text_holder::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        rgb(173,181,189) 0%,
        rgb(73,80,87) 50%,
        rgb(173,181,189) 100%
    );
    border-radius: calc(20px + 2px);
    z-index: -1;
    animation: borderFlow 6s linear infinite;
    opacity: 0.7;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.training_structure .text_holder::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgb(73,80,87) 90deg,
        transparent 180deg,
        rgb(173,181,189) 270deg,
        transparent 360deg
    );
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.training_structure .text_holder h4 {
    color: #000000;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid rgb(73,80,87);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.training_structure .text_holder div {
    position: relative;
    padding: 25px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0) 100%
    );
    border-radius: 10px;
}

.training_structure .text_holder p {
    color: #000000;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    position: relative;
    padding-left: 25px;
}

.training_structure .text_holder p::before {
    content: '>';
    position: absolute;
    left: 0;
    color: rgb(73,80,87);
    font-weight: 700;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .training_structure .text_holder {
        width: 85%;
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .training_structure .text_holder {
        width: 100%;
        padding: 30px;
    }
    
    .training_structure .work_holder {
        padding: 40px 0;
    }
    
    .training_structure .text_holder h4 {
        font-size: calc(34px * 0.9);
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .training_structure .work_holder {
        padding: 30px 0;
    }
    
    .training_structure .text_holder {
        padding: 25px;
    }
    
    .training_structure .text_holder div {
        padding: 15px;
    }
    
    .training_structure .text_holder h4 {
        font-size: calc(34px * 0.8);
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .training_structure .text_holder p {
        font-size: calc(13px * 0.95);
        padding-left: 20px;
        line-height: 1.6;
    }
}header .top_plank {
    background: rgb(173,181,189);
    color:  #ffffff;
}
header .top_plank .top_plank_content div svg, header .top_plank .top_plank_content div svg path {
    fill: #ffffff;
}
header .top_plank .top_plank_content div span {
    color: #ffffff;
}
header .top_plank .top_plank_content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 10px 0;
    font-size: 13px;
    line-height: 21px;
    flex-wrap: wrap;
}
header .top_plank .top_plank_content div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
}
header .top_plank .top_plank_content div img, header .top_plank .top_plank_content div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.welcome_page {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.welcome_page .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
}
.welcome_page .style_element {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    width: 70%;
    max-width: 1200px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 21px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
}
.welcome_page .style_element h1 {
    font-size: 46px;
    font-weight: 700;
    color: rgb(173,181,189);
    margin-bottom: 20px;
    text-align: left;
}
.welcome_page .style_element h3 {
    font-size: 34px;
    font-weight: 600;
    color: rgb(73,80,87);
    margin-bottom: 16px;
    text-align: left;
}
.welcome_page .style_element p {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.6;
}
@media only screen and (max-width: 800px) {
    .welcome_page .title_page_holder {
        min-height: 400px;
    }
    .welcome_page .style_element {
        width: 90%;
        padding: 40px;
    }
    .welcome_page .style_element h1 {
        font-size: 24px;
    }
    .welcome_page .style_element h3 {
        font-size: 18px;
    }
    .welcome_page .style_element p {
        font-size: 16px;
    }
}
.wrapper-border .welcome_page {
    position: relative;
    padding: 0;
    background: rgb(233,236,239);
}
.wrapper-border .welcome_page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(173,181,189,0.5) 0%, rgb(73,80,87,0.5) 100%);
    opacity: 0.5;
    z-index: 0;
}
.wrapper-border .welcome_page .title_page_holder {
    min-height: unset;
    height: auto;
    padding: 70px;
}
.wrapper-border .welcome_page .style_element {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 60px;
    border-radius: 21px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.wrapper-border .welcome_page .style_element h1,
.wrapper-border .welcome_page .style_element h3,
.wrapper-border .welcome_page .style_element p {
    color: #000000;
}
.wrapper-border .welcome_page .style_element h1 {
    text-align: left;
    font-size: 48px;
    margin-bottom: 20px;
}
.wrapper-border .welcome_page .style_element h3 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 16px;
}
.wrapper-border .welcome_page .style_element p {
    text-align: left;
    font-size: 20px;
}
@media only screen and (max-width: 1200px) {
    .wrapper-border .welcome_page .style_element {
        padding: 40px;
    }
}
@media only screen and (max-width: 800px) {
    .wrapper-border .welcome_page .style_element {
        width: 100%;
        padding: 20px;
        height: auto;
    }
    .wrapper-border .welcome_page .title_page_holder {
        height: auto;
    }
    .wrapper-border .welcome_page .style_element h1 {
        font-size: 36px;
    }
    .wrapper-border .welcome_page .style_element h3 {
        font-size: 24px;
    }
    .wrapper-border .welcome_page .style_element p {
        font-size: 18px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}