* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Nunito, sans-serif;
    color: #000000;
}
.stat-content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(245,248,255);
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.stat-teaching-history {
    padding: 100px 0;
    background: #000000;
    color: #ffffff;
    font-family: Nunito, sans-serif;
}

.stat-teaching-history .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.stat-teaching-history .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgb(187,202,231,0.5);
    border-radius: 29px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.stat-teaching-history .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.stat-teaching-history .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: rgb(128,155,206,0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.stat-teaching-history .review:hover {
    transform: scale(1.05);
}

.stat-teaching-history .photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    margin-bottom: 20px;
    border: 5px solid rgb(187,202,231);
    transition: border 0.3s ease-in-out;
}

.stat-teaching-history .photo:hover {
    border: 5px solid rgb(128,155,206);
}

.stat-teaching-history .worker_description {
    width: 100%;
    max-width: 600px;
}

.stat-teaching-history .worker_description .name {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.stat-teaching-history .worker_description .name:hover {
    color: rgb(187,202,231);
}

.stat-teaching-history .worker_description span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.stat-teaching-history .worker_description .quote {
    font-size: 18px;
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.stat-teaching-history .worker_description .quote::before {
    content: "“";
    font-size: 40px;
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(128,155,206);
}

@media only screen and (max-width: 1200px) {
    .stat-teaching-history .review {
        max-width: 90%;
    }
}

@media only screen and (max-width: 800px) {
    .stat-teaching-history {
        padding: 60px 0;
    }

    .stat-teaching-history .holder {
        flex-direction: column;
        padding: 20px;
    }

    .stat-teaching-history .review {
        max-width: 100%;
        width: 100%;
        padding: 20px;
    }

    .stat-teaching-history .photo {
        width: 100px;
        height: 100px;
    }

    .stat-teaching-history .worker_description .quote::before {
        font-size: 30px;
    }
}

.stat-content-wrapper .stat-teaching-history {
    padding: 150px 0;
    background: rgb(245,248,255);
}

.stat-content-wrapper .stat-teaching-history .holder {
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: rgb(187,202,231,0.5);
    border-radius: 29px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.stat-content-wrapper .stat-teaching-history .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-content-wrapper .worker_description {
    background: rgb(128,155,206,0.5);
    border-radius: 29px;
    padding: 50px;
    width: 80%;
    position: relative;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.stat-content-wrapper .worker_description:hover {
    background: rgb(187,202,231,0.5);
}

.stat-content-wrapper .worker_description::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid rgb(187,202,231);
    border-radius: 29px;
    z-index: -1;
}

.stat-content-wrapper .stat-teaching-history .photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgb(187,202,231);
    margin-bottom: 20px;
    transition: border 0.3s ease-in-out;
}

.stat-content-wrapper .stat-teaching-history .photo:hover {
    border: 5px solid rgb(128,155,206);
}

@media only screen and (max-width: 800px) {
    .stat-content-wrapper .stat-teaching-history {
        padding: 80px 0;
    }

    .stat-content-wrapper .stat-teaching-history .holder {
        padding: 20px;
    }

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

    .stat-content-wrapper .stat-teaching-history .photo {
        width: 100px;
        height: 100px;
    }
}
.stat-privacy-refuge {
    background-color: rgb(245,248,255);
    padding: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    font-family: Nunito, sans-serif;
}
.stat-privacy-refuge h1 {
    font-size: 48px;
    color: #000000;
    font-weight: 700;
    margin: 20px 0;
}
.stat-privacy-refuge h2 {
    font-size: 35px;
    color: rgb(187,202,231);
    font-weight: 600;
    margin: 15px 0;
}
.stat-privacy-refuge h3, .stat-privacy-refuge h4, .stat-privacy-refuge h5, .stat-privacy-refuge h6 {
    margin: 1rem 0;
}
.stat-privacy-refuge ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}
.stat-privacy-refuge ul li {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 10px;
}
.stat-privacy-refuge div {
    margin-top: 30px;
}
@media only screen and (max-width: 800px) {
    .stat-privacy-refuge {
        padding: 30px;
    }
    .stat-privacy-refuge h1 {
        font-size: 35px;
    }
    .stat-privacy-refuge h2 {
        font-size: 21px;
    }
}.stat-our-background {
    padding: 100px 15px;
    background: linear-gradient(to right, rgb(187,202,231), rgb(128,155,206,0.5));
    color: #ffffff;
    font-family: Nunito, sans-serif;
    position: relative;
    overflow: hidden;
}

.stat-content-wrapper .stat-our-background .holder {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-content-wrapper .stat-our-background .caption_holder {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(187,202,231,0.5);
    border-radius: 27px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-content-wrapper .stat-our-background .caption_holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.stat-content-wrapper .stat-our-background .photo {
    flex: 1 1 300px;
    border-radius: 27px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5);
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
}

.stat-content-wrapper .stat-our-background .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.2);
    transition: filter 0.3s ease;
}

.stat-content-wrapper .stat-our-background .photo:hover img {
    filter: grayscale(0%) contrast(1);
}

.stat-content-wrapper .stat-our-background .style_element {
    flex: 1;
    text-align: center;
}

.stat-content-wrapper .stat-our-background h2 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(187,202,231);
    display: inline-block;
    padding-bottom: 10px;
    color: #000000;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.stat-content-wrapper .stat-our-background h2:hover {
    color: rgb(128,155,206);
    border-color: rgb(128,155,206);
}

.stat-content-wrapper .stat-our-background p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
    color: #000000;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

@media (max-width: 1200px) {
    .stat-content-wrapper .stat-our-background .holder {
        flex-direction: column;
        align-items: center;
    }

    .stat-content-wrapper .stat-our-background .caption_holder {
        margin-bottom: 30px;
    }
}

@media (max-width: 800px) {
    .stat-our-background {
        padding: 60px 10px;
    }

    .stat-content-wrapper .stat-our-background .caption_holder {
        padding: 30px;
    }

    .stat-content-wrapper .stat-our-background .photo {
        width: 100%;
    }

    .stat-content-wrapper .stat-our-background .style_element {
        padding: 10px;
    }
}
.stat-benefits-summary .advantages_content h2 {
    color: rgb(128,155,206);
}

.stat-benefits-summary .advantage_item svg, .stat-benefits-summary .advantage_item svg path {
    fill: rgb(187,202,231);
}

.stat-benefits-summary .advantage_item p {
    color: #000000;
}

.stat-benefits-summary .advantage_item b {
    color: rgb(187,202,231);
}

.stat-benefits-summary {
    padding-top: 80px;
    padding-bottom: 80px;
}

.stat-benefits-summary .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.stat-benefits-summary .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.stat-benefits-summary .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 32px;
    font-weight: 600;
}

.stat-benefits-summary .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.stat-benefits-summary .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.stat-benefits-summary .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.stat-benefits-summary .advantage_item svg, .stat-benefits-summary .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .stat-content-wrapper .stat-benefits-summary .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .stat-benefits-summary .advantages_content h2 {
        font-size: 30px;
    }

    .stat-benefits-summary .advantages_holder {
        flex-direction: column;
    }

    .stat-benefits-summary {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .stat-content-wrapper .stat-benefits-summary .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.stat-content-wrapper .stat-benefits-summary {
    background-color: rgb(245,248,255);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-content-wrapper .stat-benefits-summary .advantages_content h2 {
    color: rgb(187,202,231);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    border-bottom: 2px solid rgb(187,202,231);
    padding-bottom: 10px;
    width: 50%;
    align-self: center;
}

.stat-content-wrapper .stat-benefits-summary .advantages_description {
    color: #000000;
    font-size: 17px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
    width: 60%;
    align-self: center;
}

.stat-content-wrapper .stat-benefits-summary .advantages_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.stat-content-wrapper .stat-benefits-summary .advantage_item {
    background: #ffffff;
    padding: 30px;
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-content-wrapper .stat-benefits-summary .advantage_item:first-child {
    background: rgb(187,202,231);
    color: #ffffff;
    border: 1px solid rgb(187,202,231);
}

.stat-content-wrapper .stat-benefits-summary .advantage_item:nth-child(2) {
    background: rgb(187,202,231,0.5);
}

.stat-content-wrapper .stat-benefits-summary .advantage_item:nth-child(3) {
    background: rgb(128,155,206,0.5);
}

.stat-content-wrapper .stat-benefits-summary .advantage_item:nth-child(4) {
    background: rgb(128,155,206);
    color: #ffffff;
    border: 1px solid rgb(128,155,206);
}

.stat-content-wrapper .stat-benefits-summary .advantage_item svg, .stat-content-wrapper .stat-benefits-summary .advantage_item svg path {
    fill: #000000;
    height: 100px;
    width: 100px;
}

.stat-content-wrapper .stat-benefits-summary .advantage_item .advantage_image {
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.stat-content-wrapper .stat-benefits-summary .advantage_item h4 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    z-index: 2;
    position: relative;
}

@media only screen and (max-width: 1200px) {
    .stat-content-wrapper .stat-benefits-summary .advantage_item {
        width: 50%;
        margin-bottom: 20px;
    }

    .stat-content-wrapper .stat-benefits-summary .advantages_holder {
        justify-content: center;
    }
}

@media only screen and (max-width: 800px) {
    .stat-content-wrapper .stat-benefits-summary {
        padding: 50px 20px;
    }

    .stat-content-wrapper .stat-benefits-summary .advantages_content h2 {
        font-size: 30px;
        width: 100%;
    }

    .stat-content-wrapper .stat-benefits-summary .advantages_holder {
        flex-direction: column;
    }

    .stat-content-wrapper .stat-benefits-summary .advantage_item {
        width: 100%;
        margin-bottom: 20px;
    }
}.stat-thanks-id {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: rgb(245,248,255);
    padding: 80px 20px;
    border-top: 5px solid rgb(187,202,231);
    border-bottom: 5px solid rgb(187,202,231);
}
.stat-thanks-id .container {
    width: 100%;
    max-width: 800px;
    padding: 50px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 21px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.stat-thanks-id h2 {
    margin-bottom: 20px;
    font-size: 44px;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    color: #000000;
    border-bottom: 2px solid rgb(187,202,231);
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.stat-thanks-id p {
    font-size: 13px;
    font-family: Nunito, sans-serif;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    padding: 15px;
    background: rgb(245,248,255);
    border-radius: 10px;
    border: 1px solid #000000;
    margin-bottom: 30px;
}
@media only screen and (max-width: 800px) {
    .stat-thanks-id {
        padding: 40px 10px;
    }
    .stat-thanks-id .container {
        padding: 30px;
    }
    .stat-thanks-id h2 {
        font-size: 37px;
    }
    .stat-thanks-id p {
        font-size: 16px;
    }
}
.stat-program-offerings {
    padding: 100px 0;
    background: linear-gradient(to right, rgb(187,202,231,0.5), rgb(128,155,206,0.5));
    position: relative;
    overflow: hidden;
}

.stat-program-offerings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
    animation: float 10s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.stat-program-offerings h2 {
    color: #000000;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-program-offerings .content {
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.stat-program-offerings h3 {
    color: rgb(187,202,231);
    font-size: 33px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.stat-program-offerings p {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.stat-program-offerings .button {
    display: inline-block;
    background: rgb(128,155,206);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    text-decoration: none;
    margin-top: 20px;
}

.stat-program-offerings .button:hover {
    background: rgb(187,202,231);
    color: #ffffff;
    transform: scale(1.05);
}

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

.stat-program-offerings .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.stat-program-offerings .course {
    padding: 20px;
    max-width: 1000px;
    width: 100%;
}

.stat-program-offerings .photo {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: rgb(128,155,206,0.5);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.stat-program-offerings .photo:hover {
    transform: scale(1.1);
}

.stat-program-offerings .text_holder {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .stat-program-offerings {
        padding: 60px 0;
    }

    .stat-program-offerings h2 {
        font-size: 33px;
    }

    .stat-program-offerings .items {
        flex-direction: column;
    }
}

.stat-content-wrapper .stat-program-offerings .items {
    width: 100%;
}

.stat-content-wrapper .stat-program-offerings .items .course .content {
    border-radius: 21px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stat-content-wrapper .stat-program-offerings .photo {
    height: 300px;
    width: 100%;
    margin: 0;
    background-size: cover;
    background-position: center;
}

.stat-content-wrapper .stat-program-offerings .text_holder {
    border-radius: 21px;
    border: 5px solid rgb(128,155,206);
    width: 80%;
    margin-top: -150px;
    background: #ffffff;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.stat-content-wrapper .stat-program-offerings h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.stat-content-wrapper .stat-program-offerings .button {
    display: inline-block;
    width: fit-content;
    margin-top: 25px;
    padding: 15px 40px;
    border-radius: 10px;
    background: rgb(187,202,231);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.stat-content-wrapper .stat-program-offerings .button:hover {
    background: rgb(128,155,206);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .stat-content-wrapper .stat-program-offerings .photo {
        width: 100%;
        height: 200px;
    }

    .stat-content-wrapper .stat-program-offerings .text_holder {
        width: 90%;
        margin-top: -100px;
        padding: 20px;
    }

    .stat-content-wrapper .stat-program-offerings h3 {
        font-size: 22px;
    }
    .stat-program-offerings .course {
        padding: 0;
    }
}header {
    padding-bottom: 10px;
    background: linear-gradient(135deg, rgb(187,202,231), rgb(128,155,206));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.main_header {
    border-top: 20px solid rgb(187,202,231);
    border-bottom: 2px solid rgb(187,202,231);
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}
.main_header .header_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.main_header .header_holder .logo_holder {
    margin: 10px 0;
    position: relative;
    z-index: 1;
}
.main_header .header_holder .logo_holder svg, .main_header .header_holder .logo_holder img {
    width: 100px;
    height: 100px;
    fill: rgb(187,202,231);
    transition: transform 0.3s ease;
}
.main_header .header_holder .logo_holder:hover svg, .main_header .header_holder .logo_holder:hover img {
    transform: scale(1.1);
}
.main_header .header_description {
    width: 50%;
    font-size: 23px;
    text-align: center;
    color: rgb(128,155,206);
    font-weight: 600;
    margin-bottom: 20px;
}
.main_header .header_menu {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-bottom: -2px;
    margin-top: 20px;
    position: relative;
    z-index: 11;
}
.main_header .header_menu a {
    border: 2px solid transparent;
    border-bottom: 2px solid rgb(187,202,231);
    padding: 10px 16px;
    color: rgb(128,155,206);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}
.main_header .header_menu a:hover {
    background: rgb(187,202,231,0.5);
    color: #ffffff;
    border-radius: 10px;
}
@media only screen and (max-width: 800px) {
    .main_header .header_description {
        width: 100%;
    }
    .main_header .header_menu {
        flex-direction: column;
    }
    .main_header .header_menu a:first-child:after {
        display: none;
    }
    .main_header .header_menu a:first-child {
        border: 2px solid transparent;
        border-bottom: 2px solid rgb(187,202,231);
    }
}.stat-contact-form-box {
    padding: 80px 20px;
    background: rgb(245,248,255);
    font-family: Nunito, sans-serif;
    border-top: 5px solid rgb(187,202,231);
    border-bottom: 5px solid rgb(128,155,206);
    position: relative;
    overflow: hidden;
}
.stat-contact-form-box::before, .stat-contact-form-box::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgb(187,202,231,0.5);
    border-radius: 50%;
    z-index: 1;
}
.stat-contact-form-box::before {
    top: -50px;
    left: -50px;
}
.stat-contact-form-box::after {
    bottom: -50px;
    right: -50px;
}
.stat-contact-form-box .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.stat-contact-form-box .holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}
.stat-contact-form-box .holder::before, .stat-contact-form-box .holder::after {
    content: '';
    position: absolute;
    background: rgb(128,155,206,0.5);
    border-radius: 50%;
    z-index: 1;
}
.stat-contact-form-box .holder::before {
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
}
.stat-contact-form-box .holder::after {
    bottom: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
}
.stat-contact-form-box .info, .stat-contact-form-box .form {
    flex: 1 1 45%;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgb(187,202,231,0.5);
    position: relative;
    z-index: 2;
}
.stat-contact-form-box h3 {
    color: rgb(187,202,231);
    font-size: 39px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 3px solid rgb(128,155,206);
    padding-bottom: 10px;
}
.stat-contact-form-box .info h5 {
    color: rgb(128,155,206);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.stat-contact-form-box .info svg {
    width: 30px;
    height: 30px;
    fill: rgb(187,202,231);
    margin-right: 15px;
}
.stat-contact-form-box .info span {
    color: #000000;
    font-size: 14px;
    margin-left: 5px;
}
.stat-contact-form-box .logo_holder {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px dashed rgb(187,202,231,0.5);
    padding-bottom: 20px;
}
.stat-contact-form-box .logo_holder svg, .stat-contact-form-box .logo_holder img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 10px;
    border: 2px solid rgb(128,155,206);
    padding: 10px;
    background: #ffffff;
    flex-shrink: 0;
}
.stat-contact-form-box .form h3 {
    color: rgb(128,155,206);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 3px solid rgb(187,202,231);
    padding-bottom: 10px;
}
.stat-contact-form-box form {
    display: flex;
    flex-direction: column;
}
.stat-contact-form-box form input {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.stat-contact-form-box form input:focus {
    border-color: rgb(187,202,231);
    outline: none;
}
.stat-contact-form-box form .button {
    background: rgb(128,155,206);
    color: #ffffff;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
    border: none;
}
.stat-contact-form-box form .button:hover {
    background: rgb(187,202,231);
}
.stat-contact-form-box .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.stat-contact-form-box .agree input[type=checkbox] {
    margin-right: 10px;
    width: auto;
    background: rgb(128,155,206);
    margin-bottom: 0;
    border: 1px solid rgb(187,202,231);
    border-radius: 3px;
}
.stat-contact-form-box .agree label {
    font-size: 14px;
    color: #000000;
}
.stat-contact-form-box .agree a {
    color: rgb(187,202,231);
    text-decoration: underline;
    margin-left: 5px;
}
@media (max-width: 768px) {
    .stat-contact-form-box {
        padding: 40px 0;
    }
    .stat-contact-form-box .holder {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }
    .stat-contact-form-box .info, .stat-contact-form-box .form {
        width: 100%;
        margin-bottom: 20px;
    }
    .stat-contact-form-box .holder h3 {
        font-size: 22px;
    }
    .stat-contact-form-box .info h5 {
        font-size: 17px;
    }
    .stat-contact-form-box form input {
        font-size: 14px;
    }
    .stat-contact-form-box form .button {
        font-size: 18px;
    }
}
.stat-sign-up-for-updates {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.stat-sign-up-for-updates .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.stat-sign-up-for-updates input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(128,155,206,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.stat-sign-up-for-updates h2 {
    margin-bottom: 20px;
    text-align: center;
}

.stat-sign-up-for-updates .button {
    background: rgb(128,155,206);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.stat-sign-up-for-updates .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .stat-sign-up-for-updates .holder {
        flex-direction: column;
    }

    .stat-sign-up-for-updates {
        padding: 30px 20px;
    }

    .stat-sign-up-for-updates input {
        min-width: unset;
    }

    .stat-sign-up-for-updates .button {
        flex-shrink: unset;
    }

    .stat-sign-up-for-updates .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .stat-sign-up-for-updates input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .stat-content-wrapper .stat-sign-up-for-updates .holder h2 {
        font-size: 20px;
    }
}

.stat-content-wrapper .stat-sign-up-for-updates {
    padding: 60px 20px;
    background: rgb(245,248,255);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.stat-content-wrapper .stat-sign-up-for-updates h2 {
    font-size: 36px;
    color: #000000;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(187,202,231);
    padding-bottom: 10px;
    width: 80%;
}

.stat-content-wrapper .stat-sign-up-for-updates .input_holder {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-content-wrapper .stat-sign-up-for-updates input {
    padding: 15px;
    height: 50px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #000000;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    flex: 1;
    margin-right: 10px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.stat-content-wrapper .stat-sign-up-for-updates input:hover,
.stat-content-wrapper .stat-sign-up-for-updates input:focus {
    border-color: rgb(187,202,231);
    background-color: rgb(187,202,231,0.5);
}

.stat-content-wrapper .stat-sign-up-for-updates .button {
    padding: 15px 30px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid rgb(187,202,231);
    background: rgb(187,202,231);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content-wrapper .stat-sign-up-for-updates .button:hover {
    background: #000000;
    border-color: #000000;
}

@media only screen and (max-width: 800px) {
    .stat-content-wrapper .stat-sign-up-for-updates {
        padding: 40px 20px;
    }

    .stat-content-wrapper .stat-sign-up-for-updates h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .stat-content-wrapper .stat-sign-up-for-updates .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .stat-content-wrapper .stat-sign-up-for-updates input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .stat-content-wrapper .stat-sign-up-for-updates .button {
        width: 100%;
    }
}.stat-sign-up-now {
    padding: 60px 0;
    background: rgb(245,248,255);
}
.stat-sign-up-now .holder{
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.stat-sign-up-now .holder svg, .stat-sign-up-now .holder svg path {
    fill: rgb(187,202,231);
    width: 120px;
    height: 120px;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgb(187,202,231);
    flex-shrink: 0;
}
.stat-sign-up-now .holder h2 {
    font-size: 46px;
    text-align: center;
    margin: 30px 0;
    color: #000000;
}
.stat-sign-up-now .holder .button {
    padding: 20px 40px;
    background: rgb(187,202,231);
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    flex-shrink: 0;
}
.stat-sign-up-now .holder .button:hover {
    background: rgb(128,155,206);
}
@media only screen and (max-width: 800px) {
    .stat-sign-up-now .holder h2 {
        font-size: 24px;
    }
    .stat-sign-up-now .holder {
        flex-direction: column;
    }
}.stat-title-board .title_page_holder {
    background-size: cover;
    background-position: center !important;
}

.stat-title-board .style_element h1 {
    color: rgb(128,155,206);
}

.stat-title-board .style_element h3 {
    color: rgb(128,155,206);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.stat-title-board .style_element p {
    color: #000000;
    text-align: right;
}

.stat-title-board {
    width: 100%;
}

.stat-title-board .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.stat-title-board .style_element {
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: #ffffff;
    width: 65%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 50px 50px 50px 30%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 680px;
    border-radius: 0;
}

.stat-title-board .style_element h1 {
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.stat-title-board .style_element p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .stat-title-board .title_page_holder {
        min-height: 320px;
        height: auto;
    }

    .stat-title-board .style_element {
        min-width: unset;
        width: 100%;
        clip-path: polygon(100% 100%, 100% -175%, 0 100%);
        padding: 100px 30px 30px 35%;
        text-align: right;
        min-width: unset;
    }

    .stat-title-board .style_element h1 {
        font-size: 18px;
    }

    .stat-title-board .style_element h3 {
        font-size: 16px;
    }

    .stat-title-board .style_element p {
        font-size: 14px;
    }


}

.stat-content-wrapper .stat-title-board .title_page_holder {
    position: relative;

}

.stat-content-wrapper .stat-title-board .title_page_holder::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(187,202,231);
    z-index: 1;
    clip-path: polygon(35% 0%, 50% 50%, 35% 100%, 0% 100%, 0 50%, 0% 0%);
    top: 0;
    left: 0;
    opacity: 0.5;
}

.stat-content-wrapper .stat-title-board .title_page_holder::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    top: 0;
    left: 0;
}

.stat-content-wrapper .stat-title-board .style_element {
    position: relative;
    clip-path: none;
    height: auto;
    background: none;
    display: flex;
    padding: 100px 49px 50px;
    display: flex;
    flex-direction: column;
    min-height: 336px;
    justify-content: center;
    align-items: flex-start;
    background: none;
    width: 40%;
    min-width: unset;
    top: 0;
    z-index: 2;
    height: 100%;

}

.stat-content-wrapper .stat-title-board .title_page_holder {
    display: flex;
    height: 550px;
}

.stat-content-wrapper .stat-title-board .style_element h1 {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.stat-content-wrapper .stat-title-board .style_element h3 {
    color: #ffffff;
    text-align: left;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.stat-content-wrapper .stat-title-board .style_element p {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
    margin-top: 10px;
    font-size: 18px;
    line-height: 32px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 800px) {
    .stat-content-wrapper .stat-title-board .title_page_holder {
        padding: 0px;
        flex-direction: column;
        min-height: 400px;
        height: auto;
    }

    .stat-content-wrapper .stat-title-board .style_element h1 {
        font-size: 30px;
    }

    .stat-content-wrapper .stat-title-board .style_element {
        width: 100%;
        height: 50%;
        min-height: unset;
        padding-left: 20px;
    }

    .stat-content-wrapper .stat-title-board .title_page_holder::after {
        clip-path: polygon(0% 0%, 75% 0, 100% 50%, 75% 100%, 0% 100%);
    }
}footer {
    background: rgb(128,155,206);
    color: #ffffff;
    font-family: Nunito, sans-serif;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
footer .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 13px;
    background: rgba(0, 0, 0, 0.5);
}
footer .footer_info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 100%;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 120px;
    width: auto;
    fill: rgb(187,202,231);
    margin-bottom: 20px;
    border: 2px solid rgb(187,202,231);
    border-radius: 10px;
    padding: 10px;
    background: rgb(128,155,206);
}
footer h5 {
    color: rgb(187,202,231);
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(187,202,231);
    padding-bottom: 10px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgb(128,155,206,0.5);
}
footer .menu a:hover {
    color: rgb(187,202,231);
    text-decoration: underline;
}
footer .contact_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid rgb(187,202,231,0.5);
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}
footer .contact_info div svg, footer .contact_info div svg path {
    fill: rgb(187,202,231);
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
footer .contact_info div span {
    color: #ffffff;
    font-size: 12px;
}
footer .footer_agreement {
    text-align: center;
    color: #000000;
    font-size: 12px;
    margin: 20px 0;
    padding: 20px;
    background: rgb(128,155,206,0.5);
    border: 1px solid rgb(187,202,231,0.5);
    border-radius: 13px;
}
footer .copyright {
    background: rgb(128,155,206);
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}
footer .copyright_info {
    color: #ffffff;
    font-size: 12px;
}
footer .copyright_info a {
    color: rgb(187,202,231);
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .logo_holder {
        display: flex;
        justify-content: center;
    }
    footer .menu_holder {
        flex-direction: column;
        align-items: center;
    }
    footer .menu {
        width: 100%;
        text-align: center;
    }
    footer .contact_info {
        align-items: center;
        text-align: center;
    }
    footer h5 {
        margin-bottom: 15px;
        border-bottom: none;
    }
    footer .contact_info div {
        justify-content: center;
    }
}
.stat-instructional-approach {
    padding: 100px 0;
    background: rgb(187,202,231,0.5);
    color: #000000;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-instructional-approach .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-instructional-approach .holder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-instructional-approach h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 38px;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    color: rgb(187,202,231);
    position: relative;
    z-index: 2;
    letter-spacing: 1.5px;
}

.stat-instructional-approach p {
    text-align: center;
    font-size: 15px;
    font-family: Nunito, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    position: relative;
    z-index: 2;
    max-width: 700px;
}

@media only screen and (max-width: 800px) {
    .stat-instructional-approach {
        padding: 60px 0;
    }

    .stat-instructional-approach .holder {
        padding: 30px;
    }

    .stat-instructional-approach h2 {
        font-size: 22px;
    }

    .stat-instructional-approach p {
        font-size: 15px;
    }
}

.stat-content-wrapper .stat-instructional-approach {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background: linear-gradient(to bottom, rgb(187,202,231,0.5), rgb(128,155,206,0.5));
}

.stat-content-wrapper .stat-instructional-approach::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 60%;
    background: rgb(245,248,255);
    z-index: 0;
    opacity: 0.8;
}

.stat-content-wrapper .stat-instructional-approach .holder {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-content-wrapper .stat-instructional-approach h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: rgb(128,155,206);
}

.stat-content-wrapper .stat-instructional-approach p {
    width: 80%;
    font-size: 15px;
    text-align: left;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .stat-content-wrapper .stat-instructional-approach {
        padding: 60px 0;
    }

    .stat-content-wrapper .stat-instructional-approach .holder {
        padding: 30px;
    }

    .stat-content-wrapper .stat-instructional-approach h2 {
        font-size: 38px;
    }

    .stat-content-wrapper .stat-instructional-approach p {
        width: 100%;
        font-size: 15px;
    }
}