* {
    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: Playfair Display, sans-serif;
    color: #000000;
}
.grid-containerstyle {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(191,205,179);
}
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;
    }
}.grid-containerstyle .course_summarystyle {
    padding: 80px 0;
    background: rgb(132,172,163);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}
.grid-containerstyle .course_summarystyle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(132,172,163,0.5), rgb(73,139,146,0.5));
    z-index: 0;
    opacity: 0.1;
}
.grid-containerstyle .course_summarystyle .container {
    position: relative;
    z-index: 2;
}
.grid-containerstyle .course_summarystyle .items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.grid-containerstyle .course_summarystyle .items .course {
    width: 100%;
    max-width: 1000px;
    margin: 20px;
    position: relative;
    background: rgb(191,205,179);
    border: 1px solid rgb(132,172,163);
    box-shadow: 0 0 20px rgb(132,172,163,0.5);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grid-containerstyle .course_summarystyle .items .course .content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
}
.grid-containerstyle .course_summarystyle .items .course .photo {
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease;
}

.grid-containerstyle .course_summarystyle .text_holder {
    padding: 30px;
    background-color: rgb(73,139,146,0.5);
    text-align: left;
    color: #ffffff;
}
.grid-containerstyle .course_summarystyle .text_holder h3 {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgb(132,172,163);
}
.grid-containerstyle .course_summarystyle .text_holder p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.6;
}
.grid-containerstyle .course_summarystyle .button {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(132,172,163);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgb(132,172,163,0.5);
}
.grid-containerstyle .course_summarystyle .button:hover {
    background: rgb(73,139,146);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgb(73,139,146,0.5);
}

@media only screen and (max-width: 800px) {
    .grid-containerstyle .course_summarystyle {
        padding: 40px 0;
    }
    .grid-containerstyle .course_summarystyle .items .course {
        flex-direction: column;
        margin: 0;
    }
    .grid-containerstyle .course_summarystyle .items .course .content {
        flex-direction: column;
        padding: 0;
    }
    .grid-containerstyle .course_summarystyle .photo {
        height: 200px;
    }
    .grid-containerstyle .course_summarystyle .text_holder {
        padding: 20px;
        text-align: center;
    }
    .grid-containerstyle .course_summarystyle .text_holder h3 {
        font-size: 18px;
    }
    .grid-containerstyle .course_summarystyle .text_holder p {
        font-size: 18px;
    }
    .grid-containerstyle .course_summarystyle .button {
        font-size: 16px;
    }
}.gratSectionstyle {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(132,172,163), rgb(73,139,146));
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.gratSectionstyle .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 900px;
    padding: 60px;
    background: linear-gradient(145deg, rgb(191,205,179), rgb(191,205,179));
    border: 2px solid rgb(132,172,163);
    border-radius: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
}
.gratSectionstyle h2 {
    margin-bottom: 20px;
    font-size: 47px;
    font-weight: 700;
    color: rgb(132,172,163);
    border-bottom: 2px solid rgb(132,172,163);
    padding-bottom: 10px;
    width: 100%;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 1px 1px #ffffff;
}
.gratSectionstyle h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 40%;
    height: 3px;
    background: rgb(73,139,146);
    transform: translateX(-50%);
}
.gratSectionstyle p {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px #ffffff;
}
.gratSectionstyle p + p {
    margin-top: 20px;
}
@media only screen and (max-width: 800px) {
    .gratSectionstyle {
        padding: 10px;
    }
    .gratSectionstyle .container {
        padding: 30px;
        width: 100%;
    }
    .gratSectionstyle h2 {
        font-size: 33px;
    }
    .gratSectionstyle p {
        font-size: 14px;
    }
}
.training_specialiststyle {
    position: relative;
    background: linear-gradient(to right, rgb(132,172,163), rgb(73,139,146));
    color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.training_specialiststyle .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.training_specialiststyle .review {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.training_specialiststyle .photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 40px;
    border: 10px solid rgb(132,172,163);
}

.training_specialiststyle .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training_specialiststyle .worker_description {
    flex: 1;
}

.training_specialiststyle .review .name {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.training_specialiststyle .review span {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
}

.training_specialiststyle .review .quote {
    font-size: 18px;
    font-style: italic;
    color: #000000;
    margin-top: 20px;
    line-height: 1.6;
}

@media only screen and (max-width: 1200px) {
    .training_specialiststyle .review {
        width: 95%;
    }
}

@media only screen and (max-width: 992px) {
    .training_specialiststyle .review {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 40px;
    }

    .training_specialiststyle .photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}.pricing_optionstyle {
    background-color: rgb(191,205,179);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.pricing_optionstyle::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 0, 0, 0.5) 49%, transparent 51%),
        linear-gradient(-45deg, transparent 48%, rgb(132,172,163,0.5) 49%, transparent 51%);
    background-size: 60px 60px;
    opacity: 0.03;
    animation: gridMove 30s linear infinite;
    z-index: 1;
}

.pricing_optionstyle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgb(132,172,163,0.5) 0%, transparent 20%),
        linear-gradient(-90deg, rgb(73,139,146,0.5) 0%, transparent 20%),
        radial-gradient(circle at 30% 30%, rgb(132,172,163,0.5) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgb(73,139,146,0.5) 0%, transparent 50%);
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
    animation: gradientPulse 15s ease-in-out infinite;
}

@keyframes gridMove {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes gradientPulse {
    0% { 
        opacity: 0.4;
        filter: blur(80px);
    }
    50% { 
        opacity: 0.6;
        filter: blur(100px);
    }
    100% { 
        opacity: 0.4;
        filter: blur(80px);
    }
}

.pricing_optionstyle .pricing_holder {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.pricing_optionstyle .price_info {
    text-align: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
}

.pricing_optionstyle .price_info::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgb(132,172,163);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
    opacity: 0.1;
    z-index: -1;
}

.pricing_optionstyle .price_info h2 {
    font-size: calc(29px * 1.2);
    color: #000000;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.pricing_optionstyle .price_info h2::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        rgb(132,172,163),
        rgb(73,139,146),
        transparent
    );
    bottom: -15px;
    left: -20%;
}

.pricing_optionstyle .section_description {
    font-size: 16px;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.pricing_optionstyle .price_types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px 40px;
    max-width: 1800px;
    margin: 0 auto;
    perspective: 2000px;
}

.pricing_optionstyle .price_type {
    flex: 1 1 400px;
    max-width: 500px;
    min-width: 400px;
    position: relative;
    text-decoration: none;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pricing_optionstyle .price_type:nth-child(odd) {
    transform: translateY(30px) translateZ(20px);
}

.pricing_optionstyle .price_type:hover {
    transform: translateZ(50px);
    z-index: 2;
}

.pricing_optionstyle .price_type:nth-child(odd):hover {
    transform: translateY(30px) translateZ(50px);
}

.pricing_optionstyle .price_type_holder {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 20px rgba(0, 0, 0, 0.05) inset;
    height: 100%;
    backdrop-filter: blur(10px);
}

.pricing_optionstyle .price_type_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing_optionstyle .price_type:hover .price_type_holder::before {
    opacity: 1;
}

.pricing_optionstyle .photo {
    height: 280px;
    position: relative;
    overflow: hidden;
    transform: scale(1.01);
}

.pricing_optionstyle .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgb(132,172,163,0.5), 
        rgb(73,139,146,0.5)
    );
    mix-blend-mode: overlay;
    opacity: 0.7;
}

.pricing_optionstyle .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(0, 0, 0, 0.5)
    );
}

.pricing_optionstyle .price_type_text {
    padding: 35px;
    position: relative;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.98)
    );
}

.pricing_optionstyle .price_type_text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, 
        rgb(132,172,163,0.5),
        rgb(73,139,146,0.5)
    );
    filter: blur(40px);
    opacity: 0.1;
    transform: translate(30%, -30%);
    transition: transform 0.5s ease;
}

.pricing_optionstyle .price_type:hover .price_type_text::before {
    transform: translate(20%, -20%) scale(1.2);
}

.pricing_optionstyle .price_type_text h3 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.pricing_optionstyle .price_type_text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgb(132,172,163);
    transition: width 0.3s ease;
}

.pricing_optionstyle .price_type:hover .price_type_text h3::after {
    width: 60px;
}

.pricing_optionstyle .price_amount {
    font-size: calc(20px * 1.2);
    font-weight: 700;
    color: rgb(132,172,163);
    display: inline-block;
    margin: 15px 0 25px;
    padding: 10px 25px;
    background: linear-gradient(
        to right,
        rgb(132,172,163,0.5),
        rgb(73,139,146,0.5)
    );
    border-radius: 30px;
}

.pricing_optionstyle .price_type_text p {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 1600px) {
    .pricing_optionstyle .price_types {
        max-width: 1400px;
    }
    .pricing_optionstyle .price_type {
        flex: 1 1 380px;
        min-width: 380px;
    }
}

@media (max-width: 1200px) {
    .pricing_optionstyle .price_types {
        padding: 20px;
        gap: 30px;
    }
    .pricing_optionstyle .price_type {
        flex: 1 1 360px;
        min-width: 360px;
    }
}

@media (max-width: 991px) {
    .pricing_optionstyle {
        padding: 80px 0;
    }
    .pricing_optionstyle .price_info {
        margin-bottom: 60px;
    }
    .pricing_optionstyle .price_type,
    .pricing_optionstyle .price_type:nth-child(odd) {
        transform: none;
    }
    .pricing_optionstyle .price_type:hover,
    .pricing_optionstyle .price_type:nth-child(odd):hover {
        transform: translateZ(30px);
    }
}

@media (max-width: 767px) {
    .pricing_optionstyle .price_types {
        padding: 15px;
    }
    .pricing_optionstyle .price_type {
        flex: 1 1 300px;
        min-width: 300px;
    }
    .pricing_optionstyle .photo {
        height: 240px;
    }
    .pricing_optionstyle .price_type_text {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .pricing_optionstyle .price_type {
        flex: 1 1 100%;
        min-width: 280px;
    }
}.benefits_outlinestyle {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000 0%, rgb(73,139,146) 100%);
  position: relative;
  overflow: hidden;
}

.benefits_outlinestyle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgb(132,172,163,0.5) 10%, transparent 70%);
  opacity: 0.1;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.benefits_outlinestyle .container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits_outlinestyle .advantages_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(#ffffff, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(#ffffff, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(#000000, 0.1);
  transition: all 0.3s ease;
}

.benefits_outlinestyle .advantages_content:hover {
  box-shadow: 0 12px 48px rgba(#000000, 0.2);
}

.benefits_outlinestyle .advantages_photo_holder {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  margin-top: 40px;
}

.benefits_outlinestyle .advantages_photo_holder .photo {
  flex: 1;
  height: 400px;
  border: 2px solid rgb(132,172,163);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.benefits_outlinestyle .advantages_photo_holder .photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgb(132,172,163,0.5) 0%, transparent 100%);
  opacity: 0.6;
}

.benefits_outlinestyle .advantages_holder {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
}

.benefits_outlinestyle .advantages_holder .advantage_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(#ffffff, 0.1) 0%, rgba(#ffffff, 0.05) 100%);
  border: 1px solid rgba(#ffffff, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefits_outlinestyle .advantages_holder .advantage_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(#000000, 0.1);
}

.benefits_outlinestyle .advantages_holder .advantage_item .advantage_image {
  margin-bottom: 15px;
}

.benefits_outlinestyle .advantages_holder .advantage_item svg, .benefits_outlinestyle .advantages_holder .advantage_item svg path {
  width: 50px;
  height: 50px;
  fill: rgb(132,172,163);
  transition: all 0.3s ease;
}

.benefits_outlinestyle .advantages_holder .advantage_item:hover svg {
  transform: scale(1.1);
  fill: rgb(73,139,146);
}

.benefits_outlinestyle .advantages_holder .advantage_item h4 {
  font-size: 21px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  font-weight: 600;
}

.benefits_outlinestyle .advantages_content h2 {
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.benefits_outlinestyle .advantages_content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: rgb(132,172,163);
  border-radius: 3px;
}

@media only screen and (max-width: 1024px) {
  .benefits_outlinestyle .advantages_photo_holder .photo {
    flex: auto;
  }
  .benefits_outlinestyle .advantages_photo_holder {
    flex-direction: column;
  }
  
  .benefits_outlinestyle .advantages_holder {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .benefits_outlinestyle {
    padding: 60px 0;
  }
  
  .benefits_outlinestyle .advantages_content {
    padding: 30px;
  }
  
  .benefits_outlinestyle .advantages_content h2 {
    font-size: calc(32px * 0.9);
  }
}

@media only screen and (max-width: 480px) {
  .benefits_outlinestyle {
    padding: 40px 0;
  }
  
  .benefits_outlinestyle .advantages_content {
    padding: 20px;
  }
  
  .benefits_outlinestyle .advantages_content h2 {
    font-size: calc(32px * 0.8);
  }
  
  .benefits_outlinestyle .advantages_holder {
    grid-template-columns: 1fr;
  }
}.contact_form_sectionstyle {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(73,139,146), rgba(0, 0, 0, 0.5));
    font-family: Playfair Display, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgb(132,172,163,0.5);
    color: #ffffff;
}
.contact_form_sectionstyle h3 {
    color: rgb(132,172,163);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(132,172,163);
}
.contact_form_sectionstyle .form {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 20px rgb(73,139,146,0.5);
    flex: 1;
    color: #ffffff;
}
.contact_form_sectionstyle .info {
    flex: 1;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: inset 0 0 10px rgb(73,139,146,0.5);
}
.contact_form_sectionstyle .info h5 {
    color: rgb(73,139,146);
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgb(73,139,146);
}
.contact_form_sectionstyle .info svg, .contact_form_sectionstyle .info svg path {
    fill: rgb(132,172,163);
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgb(132,172,163));
}
.contact_form_sectionstyle .info span {
    color: #ffffff;
    font-size: 17px;
}
.contact_form_sectionstyle .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 17px;
}
.contact_form_sectionstyle .info .contact_info > div svg {
    margin-right: 10px;
}
.contact_form_sectionstyle form {
    display: flex;
    flex-direction: column;
}
.contact_form_sectionstyle form input {
    color: #ffffff;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(132,172,163,0.5);
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 5px rgb(132,172,163,0.5);
}
.contact_form_sectionstyle form input:focus {
    border-color: rgb(132,172,163);
    box-shadow: 0 0 10px rgb(132,172,163);
}
.contact_form_sectionstyle form .button {
    background: rgb(132,172,163);
    color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgb(132,172,163);
    text-transform: uppercase;
}
.contact_form_sectionstyle form .button:hover {
    background: rgb(73,139,146);
    box-shadow: 0 0 15px rgb(73,139,146);
}
.contact_form_sectionstyle .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex-direction: row-reverse;
}
.contact_form_sectionstyle .logo_holder {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.contact_form_sectionstyle .logo_holder svg, .contact_form_sectionstyle .logo_holder img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgb(132,172,163));
}
.contact_form_sectionstyle .name_holder {
    display: flex;
    gap: 20px;
}
.contact_form_sectionstyle .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #ffffff;
}
.contact_form_sectionstyle .agree input[type=checkbox] {
    margin-right: 10px;
    width: auto;
    margin-bottom: 0;
}
.contact_form_sectionstyle .agree label {
    font-size: 17px;
}
.contact_form_sectionstyle .agree a {
    color: rgb(132,172,163);
    text-decoration: underline;
    margin-left: 5px;
}
@media only screen and (max-width: 800px) {
    .contact_form_sectionstyle {
        padding: 40px 10px;
    }
    .contact_form_sectionstyle .holder {
        flex-direction: column;
    }
    .contact_form_sectionstyle .info {
        padding: 20px;
        border-radius: 10px;
        box-shadow: none;
    }
    .contact_form_sectionstyle .form {
        padding: 20px;
        border-radius: 10px;
        box-shadow: none;
    }
}
@media only screen and (max-width: 600px) {
    .contact_form_sectionstyle h3 {
        font-size: 24px;
    }
    .contact_form_sectionstyle .info h5 {
        font-size: 19px;
    }
    .contact_form_sectionstyle .info svg {
        width: 20px;
        height: 20px;
    }
    .contact_form_sectionstyle .info .contact_info > div {
        margin-bottom: 12px;
    }
}
.secure_guardstyle {
    padding: 40px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;

}
.secure_guardstyle h1 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 42px;
    font-family: Playfair Display, sans-serif;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.secure_guardstyle h2 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 31px;
    font-family: Playfair Display, sans-serif;
    font-weight: 600;
    text-align: left;
    color: #ffffff;
}
.secure_guardstyle h4,.secure_guardstyle h3, .secure_guardstyle h5 {
    color: #ffffff;
}
.secure_guardstyle ul {
    list-style-type: none;
    padding-left: 0;
}
.secure_guardstyle li {
    margin-bottom: 15px;
    font-size: 15px;
    font-family: Playfair Display, sans-serif;
    color: #000000;
    line-height: 1.6;
    padding: 10px;
    background: rgb(132,172,163,0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
}
.secure_guardstyle li:hover {
    background: rgb(132,172,163);
    color: #ffffff;
}
.secure_guardstyle div {
    margin-bottom: 20px;
    padding: 15px;
    background: rgb(191,205,179);
    border-radius: 25px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    font-size: 15px;
    font-family: Playfair Display, sans-serif;
    color: #000000;
}
.secure_guardstyle p, .secure_guardstyle span {
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--white-color_opacity);
}
@media only screen and (max-width: 800px) {
    .secure_guardstyle {
        padding: 20px;
    }
    .secure_guardstyle h1 {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: calc(18px - 4px);
    }
    .secure_guardstyle h2 {
        margin-top: 25px;
        margin-bottom: 15px;
        font-size: calc(18px - 4px);
    }
    .secure_guardstyle li {
        margin-bottom: 10px;
        padding: 8px;
    }
    .secure_guardstyle div {
        padding: 10px;
    }
}footer {
    background: rgb(73,139,146);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 3px solid rgb(132,172,163);
    position: relative;
    z-index: 1;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}
footer .footer {
    padding-top: 60px;
    padding-bottom: 60px;
}
footer .footer_info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: center;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 100px;
    width: auto;
    margin-right: 10px;
    filter: grayscale(100%);
}
footer .menu_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
footer .menu a {
    text-decoration: none;
    font-size: 16px;
    color: rgb(132,172,163);
    padding: 10px 20px;
    border: 2px solid rgb(132,172,163);
    border-radius: 10px;
    background-color: rgb(73,139,146);
    box-shadow: 0 0 10px rgb(132,172,163,0.5);
}
footer .menu a:hover {
    background-color: rgb(132,172,163);
    color: #000000;
}
footer .copyright {
    background: rgb(73,139,146);
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    border-top: 1px solid rgb(132,172,163);
}
footer .copyright_info a {
    color: rgb(132,172,163);
    text-decoration: none;
}
footer .copyright_info a:hover {
    color: #ffffff;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    footer .menu_holder {
        justify-content: center;
    }
    footer .menu a {
        margin: 5px 0;
    }
}
.grid-containerstyle footer {
    padding-top: 50px;
    padding-bottom: 30px;
    border-top: 3px solid rgb(132,172,163);
}
.grid-containerstyle footer .footer {
    padding: 0;
}
.grid-containerstyle footer .footer_info {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 20px;
}
.grid-containerstyle footer .menu {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgb(132,172,163);
}
.grid-containerstyle footer .menu_holder {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 20px;
}
.grid-containerstyle footer .menu a {
    font-weight: 700;
}
.grid-containerstyle footer .menu a:last-child {
    margin-right: 0;
}
.grid-containerstyle footer .copyright {
    background: rgb(73,139,146);
    padding: 20px 0;
    font-size: 12px;
}
.grid-containerstyle footer .copyright_info {
    text-align: center;
    color: #ffffff;
}
@media only screen and (max-width: 800px) {
    .grid-containerstyle footer .footer_info {
        padding: 0;
        align-items: center;
    }
    .grid-containerstyle footer .menu_holder {
        justify-content: center;
    }
    .grid-containerstyle footer .copyright_info {
        text-align: center;
    }
}.aspiring_learnersstyle {
    padding-bottom: 80px;
    padding-top: 80px;
}

.aspiring_learnersstyle .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aspiring_learnersstyle ul {
    list-style: none;
}

.aspiring_learnersstyle ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.aspiring_learnersstyle ul svg, .aspiring_learnersstyle ul svg path {
    fill: rgb(132,172,163);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.aspiring_learnersstyle h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

.grid-containerstyle .aspiring_learnersstyle .holder {
    background: #ffffff;
    width: 100%;
    padding: 60px 100px;
    border-radius: 19px;
    border: 1px solid rgb(132,172,163,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.grid-containerstyle .aspiring_learnersstyle .holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(132,172,163), rgb(73,139,146));
    opacity: 0.05;
    z-index: 0;
}

.grid-containerstyle .aspiring_learnersstyle ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    z-index: 1;
    position: relative;
}

.grid-containerstyle .aspiring_learnersstyle ul li {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgb(132,172,163,0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.grid-containerstyle .aspiring_learnersstyle ul svg, .grid-containerstyle .aspiring_learnersstyle ul svg path {
    width: 24px;
    height: 24px;
    fill: rgb(132,172,163);
    flex-shrink: 0;
    position: static;
    margin-right: 10px;
}

.grid-containerstyle .aspiring_learnersstyle h2 {
    font-size: 33px;
    font-family: Playfair Display, sans-serif;
    color: #000000;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
    position: relative;
}

@media only screen and (max-width: 800px) {
    .grid-containerstyle .aspiring_learnersstyle .holder {
        padding: 50px 20px;
    }

    .grid-containerstyle .aspiring_learnersstyle ul li {
        padding: 15px;
        font-size: 18px;
    }

    .grid-containerstyle .aspiring_learnersstyle h2 {
        font-size: 23px;
        margin-bottom: 30px;
    }
}.landing_pagestyle {
    width: 100%;
    position: relative;
}
.landing_pagestyle .title_page_holder {
    width: 100%;
    min-height: 700px;
    height: auto;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease-in-out;
}
.landing_pagestyle .style_element {
    background: rgb(132,172,163,0.5);
    padding: 40px 60px;
    border-radius: 11px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 80%;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.landing_pagestyle .style_element:hover {
    transform: scale(1.05);
    background: rgb(132,172,163);
}
.landing_pagestyle .style_element h1 {
    font-family: Playfair Display, sans-serif;
    font-size: 41px;
    font-weight: 700;
    color: rgb(73,139,146);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.landing_pagestyle .style_element h3 {
    font-family: Playfair Display, sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: rgb(73,139,146);
    margin-bottom: 15px;
}
.landing_pagestyle .style_element p {
    font-family: Playfair Display, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 20px;
}
.landing_pagestyle .style_element::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    mix-blend-mode: multiply;
    border-radius: inherit;
    z-index: -1;
}
@media only screen and (max-width: 800px) {
    .landing_pagestyle .title_page_holder {
        min-height: 400px;
    }
    .landing_pagestyle .style_element {
        padding: 30px 40px;
        max-width: 90%;
    }
    .landing_pagestyle .style_element h1 {
        font-size: 36px;
    }
    .landing_pagestyle .style_element h3 {
        font-size: 22px;
    }
    .landing_pagestyle .style_element p {
        font-size: 21px;
    }
}
.grid-containerstyle .landing_pagestyle {
    position: relative;
    padding: 0;
}
.grid-containerstyle .landing_pagestyle .style_element {
    background: rgb(132,172,163,0.5);
    border-radius: 11px;
    padding: 60px;
    max-width: 80%;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.grid-containerstyle .landing_pagestyle .style_element h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}
.grid-containerstyle .landing_pagestyle .style_element h3 {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}
.grid-containerstyle .landing_pagestyle .style_element p {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
}
@media only screen and (max-width: 800px) {
    .grid-containerstyle .landing_pagestyle .style_element {
        padding: 40px;
    }
    .grid-containerstyle .landing_pagestyle .style_element h1 {
        font-size: 28px;
    }
    .grid-containerstyle .landing_pagestyle .style_element h3 {
        font-size: 20px;
    }
    .grid-containerstyle .landing_pagestyle .style_element p {
        font-size: 16px;
    }
}header .main_header {
    background: rgb(191,205,179);
    color: #ffffff;
    border-bottom: 2px solid rgb(73,139,146);
    padding: 10px 0;
}

header .logo_holder {
    display: flex;
    align-items: center;
}
header .logo_holder svg, header .logo_holder img {
    height: 50px;
    width: 50px;
    fill: rgb(132,172,163);
}
header .logo_caption {
    display: flex;
    flex-direction: column;
}
header .logo_name {
    font-size: 24px;
    color: #ffffff;
}
header .logo_desc {
    font-size: 17px;
    color: rgb(73,139,146);
}

header .menu {
    display: flex;
    align-items: center;
    gap: 15px;
}
header .menu a {
    color: rgb(73,139,146);
    text-decoration: none;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}
header .menu a:hover {
    color: #ffffff;
    border-bottom: 2px solid rgb(132,172,163);
}
header .menu a.active {
    color: rgb(132,172,163);
    border-bottom: 2px solid rgb(132,172,163);
}

@media only screen and (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    header .menu a {
        width: 100%;
        text-align: left;
        padding: 10px 0;
    }
}

.grid-containerstyle header .header_content {
    flex-direction: column;
    align-items: flex-start;
}
.grid-containerstyle header .logo_holder {
    width: 100%;
    flex-direction: row;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(73,139,146);
}
.grid-containerstyle header .logo_name {
    font-size: 28px;
    line-height: 28px;
    color: #ffffff;
}
.grid-containerstyle header .menu {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 15px;
    border-top: 1px solid rgb(73,139,146);
}
.grid-containerstyle header .menu a {
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    padding: 10px 0;
}
.grid-containerstyle header .menu a:hover {
    color: rgb(132,172,163);
    border-bottom: 2px solid rgb(132,172,163);
}
.grid-containerstyle header .menu a.active {
    color: rgb(132,172,163);
    border-bottom: 2px solid rgb(132,172,163);
}

@media only screen and (max-width: 800px) {
    .grid-containerstyle header .logo_name {
        font-size: 20px;
        line-height: 20px;
    }
    .grid-containerstyle header .logo_holder .logotype svg, .grid-containerstyle header .logo_holder .logotype img {
        width: 40px;
        height: 40px;
    }
    .grid-containerstyle header .menu a {
        font-size: 12px;
        padding: 8px 0;
    }
}.grid-containerstyle .our_missionstyle .holder {
    height: auto;
}

.our_missionstyle {
    padding: 80px 0;
    background: rgb(132,172,163,0.5);
    position: relative;
    overflow: hidden;
}

.grid-containerstyle .our_missionstyle .holder .photo {
    display: block;
    width: 450px;
    height: 450px;
    border-radius: 18px;
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.grid-containerstyle .our_missionstyle .holder .photo:hover {
    transform: translateY(-50%) scale(1.05);
}

.grid-containerstyle .our_missionstyle .caption_holder {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 0 50px;
    background: linear-gradient(45deg, rgb(73,139,146), rgb(73,139,146,0.5));
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    padding-right: 0;
}

.grid-containerstyle .our_missionstyle .style_element {
    background: rgb(132,172,163);
    padding: 40px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-containerstyle .our_missionstyle h2 {
    color: #ffffff;
    margin-top: 20px;
    font-size: 37px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.grid-containerstyle .our_missionstyle p {
    color: #ffffff;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

@media only screen and (max-width: 1200px) {
    .grid-containerstyle .our_missionstyle .holder .photo {
        width: 350px;
        height: 350px;
        left: 30px;
        position: static;
        transform: translateY(0);
        margin-top: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .grid-containerstyle .our_missionstyle .style_element {
        width: 100%;
        padding: 30px;
        box-shadow: none;
        border-radius: 0;
    }
    .grid-containerstyle .our_missionstyle .holder .photo {
        width: 280px;
        height: 280px;
    }
    .grid-containerstyle .our_missionstyle .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
        padding: 20px;
        box-shadow: none;
    }
    .grid-containerstyle .our_missionstyle h2 {
        font-size: 21px;
    }
}