* {
    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: Ubuntu, sans-serif;
    color: #000000;
}
.wrapper-template {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(116,168,155);
}
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;
    }
}.teaching_process {
    padding: 80px 0;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.teaching_process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, rgb(88,127,118,0.5) 0%, rgb(59,85,82,0.5) 100%);
    transform: translateX(-50%);
    z-index: 0;
    transition: transform 0.5s ease-in-out;
}

.teaching_process:hover::before {
    transform: translateX(-40%);
}

.teaching_process .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    z-index: 1;
    position: relative;
}

.teaching_process h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 29px;
    font-family: Ubuntu, sans-serif;
    font-weight: 600;
    color: rgb(88,127,118);
    background: linear-gradient(to right, rgb(88,127,118), rgb(59,85,82));
    -webkit-background-clip: text;
    color: transparent;
}

.teaching_process p {
    text-align: center;
    font-size: 12px;
    font-family: Ubuntu, sans-serif;
    font-weight: 400;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}


@media only screen and (max-width: 800px) {
    .teaching_process {
        padding: 30px 0;
    }

    .teaching_process h2 {
        font-size: 23px;
        margin-bottom: 28px;
    }

    .teaching_process p {
        font-size: 12px;
    }
}

.wrapper-template .teaching_process {
    position: relative;
    border-bottom: 4px solid rgb(88,127,118);
    border-radius: 14px;
    overflow: hidden;
    z-index: 1;
}

.wrapper-template .teaching_process::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 6px;
    background: rgb(59,85,82);
    bottom: -6px;
    left: 20%;
    z-index: 2;
    border-radius: 10px;
}

.wrapper-template .teaching_process .holder {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.teaching_process h2 {
    animation: fadeInUp 1s ease-in-out;
}

.teaching_process p {
    animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
footer {
    background: rgb(59,85,82);
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    padding: 40px 0;
    border-top: 3px solid rgb(88,127,118);
}
footer .footer {
    background: rgb(59,85,82);
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 26px;
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
footer .logo_holder {
    display: flex;
    align-items: center;
}
footer .logo_holder svg,
footer .logo_holder img {
    height: 50px;
    width: auto;
    margin-right: 20px;
    fill: #ffffff;
}
footer .menu {
    display: flex;
    gap: 30px;
}
footer .menu_holder {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}
footer .menu a:hover {
    border-bottom: 2px solid rgb(88,127,118);
}
footer .copyright {
    background: rgb(59,85,82);
    padding: 15px 20px;
    text-align: center;
    font-size: 13px;
    border-radius: 10px;
    margin-top: 20px;
    color: #ffffff;
}
footer .copyright_info {
    color: #ffffff;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}
@media only screen and (max-width: 1200px) {
    footer .footer {
        flex-direction: column;
        align-items: flex-start;
    }
    footer .footer_info {
        flex-direction: column;
        align-items: flex-start;
    }
    footer .logo_holder {
        margin-bottom: 20px;
    }
    footer .menu {
        justify-content: center;
        width: 100%;
    }
}
@media only screen and (max-width: 800px) {
    footer .menu,
    footer .menu_holder,
    footer .footer_info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .menu a {
        padding-bottom: 10px;
        margin-right: 0;
    }
}
.academic_expertise {
    padding: 100px 0;
    background: #000000;
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    position: relative;
    overflow: hidden;
}

.academic_expertise .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.academic_expertise .holder {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    background: rgb(59,85,82,0.5);
    border-radius: 27px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.academic_expertise .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(88,127,118,0.5);
    padding: 30px;
    border-radius: 27px;
    width: calc(33% - 40px);
    margin: 20px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.academic_expertise .review:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.academic_expertise .photo {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
    transition: transform 0.4s ease;
}

.academic_expertise .review:hover .photo {
    transform: scale(1.05);
}

.academic_expertise .worker_description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.academic_expertise .review .name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(88,127,118);
    margin-bottom: 10px;
}

.academic_expertise .review span {
    font-size: 17px;
    font-weight: 400;
    color: rgb(59,85,82);
    margin-bottom: 20px;
}

.academic_expertise .review .quote {
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: var(--white-color_opacity);
    border-left: 4px solid rgb(88,127,118);
    padding-left: 15px;
    transition: color 0.4s ease;
}

.academic_expertise .review:hover .quote {
    color: rgb(88,127,118);
}

@media only screen and (max-width: 1200px) {
    .academic_expertise .review {
        width: calc(50% - 40px);
    }

    .academic_expertise .photo {
        height: 200px;
    }
}

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

    .academic_expertise .holder {
        padding: 20px;
    }

    .academic_expertise .review {
        width: 100%;
        margin: 10px 0;
    }

    .academic_expertise .photo {
        height: 150px;
    }
}

.wrapper-template .academic_expertise {
    background: rgb(116,168,155);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.wrapper-template .academic_expertise .holder {
    background: rgb(59,85,82);
    border-radius: 27px;
    padding: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.wrapper-template .academic_expertise .review {
    background: rgb(88,127,118,0.5);
    padding: 30px;
    border-radius: 27px;
    position: relative;
}

.wrapper-template .academic_expertise .review .name,
.wrapper-template .academic_expertise .review .quote {
    color: #ffffff;
}

.wrapper-template .academic_expertise .review .quote {
    color: var(--white-color_opacity);
}

.wrapper-template .academic_expertise .review span {
    font-size: 22px;
    color: rgb(88,127,118);
}

@media only screen and (max-width: 800px) {
    .wrapper-template .academic_expertise .review {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }

    .wrapper-template .academic_expertise .photo {
        margin-bottom: 20px;
        width: 100%;
        height: 200px;
    }

    .wrapper-template .worker_description {
        text-align: center;
    }
    .wrapper-template .academic_expertise .holder {
        padding: 0;
    }
}
.prospective_students {
    position: relative;
    background-color: rgb(116,168,155);
    padding: 180px 0 120px;
}

.prospective_students::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgb(88,127,118,0.5) 0%,
        rgb(59,85,82,0.5) 100%
    );
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
}

.prospective_students .container {
    position: relative;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
}

.prospective_students .who_needs_photo {
    position: relative;
    width: 400px;
    aspect-ratio: 1;
    border-radius: 0;
    transform: rotate(-4deg);
}

.prospective_students .who_needs_photo::before,
.prospective_students .who_needs_photo::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgb(88,127,118,0.5);
    transform: rotate(8deg);
}

.prospective_students .who_needs_photo::after {
    transform: rotate(4deg);
}

.prospective_students .who_needs_text {
    padding: 40px 20px;
}

.prospective_students .who_needs_text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 80px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.prospective_students .who_needs_text h2::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 140%;
    height: 8px;
    background: rgb(88,127,118,0.5);
    z-index: -1;
}

.prospective_students .who_needs_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
}

.prospective_students .who_needs_list div {
    position: relative;
    padding: 40px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prospective_students .who_needs_list div:nth-child(odd) {
    transform: translateY(-30px);
}

.prospective_students .who_needs_list div:nth-child(even) {
    transform: translateY(30px);
}

.prospective_students .who_needs_list div svg {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgb(88,127,118);
    fill: #ffffff;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.prospective_students .who_needs_list div:hover {
    transform: translateY(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.prospective_students .who_needs_list div:hover svg {
    transform: rotate(90deg);
}

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

    .prospective_students .who_needs_photo {
        width: 350px;
    }
}

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

    .prospective_students::before {
        width: 55%;
    }

    .prospective_students .who_needs_list div {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .prospective_students {
        padding: 100px 0 60px;
    }

    .prospective_students::before {
        display: none;
    }

    .prospective_students .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .prospective_students .who_needs_photo {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        transform: none;
    }

    .prospective_students .who_needs_photo::before,
    .prospective_students .who_needs_photo::after {
        transform: none;
        inset: -10px;
    }

    .prospective_students .who_needs_text h2 {
        display: block;
        text-align: center;
        margin-bottom: 60px;
    }

    .prospective_students .who_needs_text h2::before {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .prospective_students {
        padding: 80px 0 40px;
    }

    .prospective_students .who_needs_text h2 {
        font-size: calc(40px * 0.8);
    }

    .prospective_students .who_needs_list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prospective_students .who_needs_list div {
        padding: 25px;
        transform: none !important;
    }

    .prospective_students .who_needs_list div svg {
        top: -12px;
        right: -12px;
        width: 32px;
        height: 32px;
        padding: 6px;
    }
}

@media (max-width: 576px) {
    .prospective_students {
        padding: 60px 0 30px;
    }

    .prospective_students .who_needs_photo {
        max-width: 280px;
    }

    .prospective_students .who_needs_text h2 {
        font-size: calc(40px * 0.7);
        margin-bottom: 40px;
    }

    .prospective_students .who_needs_list div {
        padding: 20px;
    }
}@keyframes backgroundAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.connect_with_us {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(270deg, rgb(88,127,118), rgb(59,85,82));
  background-size: 400% 400%;
  animation: backgroundAnimation 15s ease infinite;
  color: #ffffff;
  font-family: Ubuntu, sans-serif;
}
.connect_with_us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.connect_with_us .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.connect_with_us h3, .connect_with_us h5 {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.connect_with_us .info, .connect_with_us .form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 40px;
  margin-bottom: 30px;
}
.connect_with_us .info {
  text-align: center;
}
.connect_with_us .info svg, .connect_with_us .info svg path {
  fill: rgb(59,85,82);
}
.connect_with_us .info .contact_info h5 {
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 20px;
}
.connect_with_us .info span {
  color: #ffffff;
  font-weight: 400;
}
.connect_with_us .info .contact_info svg, .connect_with_us .info .contact_info svg path {
  fill: #ffffff;
  width: 24px;
  height: 24px;
}
.connect_with_us form input, .connect_with_us form textarea {
  color: #ffffff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  padding: 12px 15px;
  margin-bottom: 20px;
  width: 100%;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.connect_with_us form input:focus, .connect_with_us form textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgb(59,85,82);
}
.connect_with_us form .button {
  background: rgb(59,85,82);
  color: #ffffff;
  border-radius: 16px;
  padding: 12px 30px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
  width: 100%;
}
.connect_with_us form .button:hover {
  background: rgb(88,127,118);
  transform: translateY(-2px);
}
.connect_with_us .holder {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: row-reverse;
}
.connect_with_us .holder > div {
  flex: 1;
  min-width: 300px;
}
.connect_with_us .logo_holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.connect_with_us .logo_holder svg, .connect_with_us .logo_holder img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.connect_with_us .info .contact_info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
}
.connect_with_us .name_holder {
  display: flex;
  gap: 20px;
}
.connect_with_us .agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.connect_with_us .agree label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.connect_with_us .agree a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}
.connect_with_us .agree a:hover {
  color: rgb(88,127,118);
}
.connect_with_us .agree input[type="checkbox"] {
  width: auto;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  .connect_with_us .name_holder {
    display: flex;
    flex-wrap: wrap;
    gap: unset;
  }
  .connect_with_us {
    padding: 50px 0;
  }
  .connect_with_us h3, .connect_with_us h5 {
    font-size: 31px;
  }
  .connect_with_us .holder {
    flex-direction: column;
    gap: 20px;
  }
}
.privacy_shield {
    padding: 50px;
    width: 85%;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid rgb(88,127,118);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    font-family: Ubuntu, sans-serif;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.privacy_shield:before, .privacy_shield:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(88,127,118,0.5), rgb(59,85,82,0.5));
    top: 0;
    left: 0;
    opacity: 0.1;
    z-index: 0;
}

.privacy_shield h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 46px;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid rgb(88,127,118);
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.privacy_shield h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 35px;
    color: rgb(59,85,82);
    font-weight: 600;
    border-bottom: 2px solid rgb(59,85,82,0.5);
    padding-bottom: 5px;
    position: relative;
    z-index: 1;
}

.privacy_shield ul, .privacy_shield ol {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    list-style: none;
}

.privacy_shield li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
    position: relative;
}

.privacy_shield li:before {
    content: "•";
    position: absolute;
    left: -20px;
    color: rgb(88,127,118);
    font-size: 1.2em;
    line-height: 1;
}

.privacy_shield div {
    margin-bottom: 30px;
    line-height: 1.8;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.privacy_shield .container {
    position: relative;
    z-index: 1;
}

.privacy_shield h3, .privacy_shield h4, .privacy_shield h5, .privacy_shield h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    color: rgb(88,127,118);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.privacy_shield p, .privacy_shield span {
    margin-bottom: 15px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.privacy_shield a {
    color: rgb(59,85,82);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgb(59,85,82);
    position: relative;
    z-index: 1;
}

.privacy_shield a:hover {
    color: rgb(88,127,118);
    border-bottom: 1px solid rgb(88,127,118);
}

.privacy_shield button {
    background: rgb(59,85,82);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.privacy_shield button:hover {
    background: rgb(88,127,118);
}

@media only screen and (max-width: 800px) {
    .privacy_shield {
        padding: 30px;
        width: 90%;
    }

    .privacy_shield h1 {
        font-size: calc(18px - 5px);
    }

    .privacy_shield h2 {
        font-size: calc(18px - 3px);
    }

    .privacy_shield ul, .privacy_shield ol {
        padding-left: 10px;
    }

    .privacy_shield li:before {
        left: -10px;
    }

    .privacy_shield button {
        padding: 10px 20px;
    }
}.program_information {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.program_information h2 {
    color: rgb(88,127,118);
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}
.program_information .holder {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    align-items: center;
    justify-items: center;
}
.program_information .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
}
.program_information .course {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 17px;
    box-shadow: none;
    transition: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.program_information .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}
.program_information .photo {
    height: 250px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
}
.program_information .text_holder {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.program_information h3 {
    color: rgb(88,127,118);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}
.program_information p {
    color: #000000;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}
.program_information .button {
    background: rgb(88,127,118);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 20px;
}

@media only screen and (max-width: 800px) {
    .program_information {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .program_information h2 {
        font-size: 28px;
    }
    .program_information .items {
        flex-direction: column;
        align-items: center;
    }
    .program_information .course {
        max-width: 100%;
    }
    .program_information .photo {
        height: 200px;
    }
}

.wrapper-template .program_information .items .course {
    background: none;
}
.wrapper-template .program_information .items .course .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: none;
    border-radius: 0;
    align-items: stretch;
}
.wrapper-template .program_information .photo {
    width: 100%;
    border: none;
    height: 350px;
    margin: 0;
}
.wrapper-template .program_information .text_holder {
    width: 100%;
    background: rgb(116,168,155);
    border: none;
    justify-content: center;
}
.wrapper-template .program_information h3 {
    text-align: left;
    margin-bottom: 20px;
}
.wrapper-template .program_information .button {
    margin-top: 20px;
}
.wrapper-template .program_information p, .wrapper-template .program_information h3 {
    text-align: left;
}
@media only screen and (max-width: 800px) {
    .wrapper-template .program_information .items .course .content {
        flex-direction: column;
    }
    .wrapper-template .program_information .photo {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    .wrapper-template .program_information .text_holder {
        width: 100%;
    }
}.company_overview {
    padding: 100px 0;
    background: rgb(116,168,155);
    font-family: Ubuntu, sans-serif;
}

.wrapper-template .company_overview .holder {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
}

.wrapper-template .company_overview .photo {
    width: 50%;
    max-width: 600px;
    height: 300px;
    border-radius: 0;
    position: relative;
    box-shadow: inset 0 0 0 1000px rgb(59,85,82,0.5);
    margin-bottom: 20px;
}

.wrapper-template .company_overview .caption_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #ffffff;
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.5);
    border-left: 10px solid rgb(88,127,118);
    position: relative;
    z-index: 1;
}

.wrapper-template .company_overview .style_element {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper-template .company_overview h2 {
    font-size: 38px;
    font-weight: 700;
    color: rgb(88,127,118);
    margin-bottom: 20px;
    text-align: center;
}

.wrapper-template .company_overview p {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    text-align: center;
}

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

    .wrapper-template .company_overview .photo,
    .wrapper-template .company_overview .caption_holder {
        width: 100%;
        max-width: 100%;
    }

    .wrapper-template .company_overview .caption_holder {
        box-shadow: none;
        border-left: 0;
        border-top: 10px solid rgb(88,127,118);
    }
}

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

    .wrapper-template .company_overview .caption_holder {
        padding: 20px;
    }
}
header .main_header {
    min-height: 100px;
    background: rgb(59,85,82);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 2px solid rgb(88,127,118);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.main_header .header_holder {
    display: flex;
    align-items: center;
}
.main_header .header_holder .logo_holder {
    margin-right: 30px;
    border-right: 2px solid rgb(88,127,118);
    padding-right: 30px;
}
.main_header .header_holder .logo_holder svg, 
.main_header .header_holder .logo_holder img {
    height: 50px;
    width: auto;
    fill: #ffffff;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_description {
    font-size: 16px;
    font-weight: 600;
    margin-right: auto;
    position: relative;
}
.main_header .header_menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main_header .header_menu a {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

@media only screen and (max-width: 1200px) {
    header .main_header {
        flex-direction: column;
        align-items: flex-start;
        min-height: 80px;
        padding: 20px;
    }
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .main_header .header_holder .logo_holder {
        margin-right: 0;
        border-right: none;
        padding-right: 0;
        margin-bottom: 10px;
    }
    .main_header .header_holder .logo_holder svg, 
    .main_header .header_holder .logo_holder img {
        height: 40px;
    }
    .main_header .header_description {
        margin-bottom: 10px;
        font-size: 17px;
    }
    .main_header .header_description::before {
        width: 8px;
        height: 8px;
    }
    .main_header .header_menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .main_header .header_menu a {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgb(88,127,118);
        padding: 10px 15px;
    }
    .main_header .header_menu a:last-child {
        border-bottom: none;
    }
}.landing_page {
    position: relative;
    background: rgb(116,168,155);
    overflow: hidden;
}

.landing_page::before,
.landing_page::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgb(88,127,118,0.5);
    opacity: 0.2;
}

.landing_page::before {
    top: -100px;
    left: -100px;
    transform: rotate(45deg);
}

.landing_page::after {
    bottom: -100px;
    right: -100px;
    transform: rotate(-45deg);
}

.landing_page .holder {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    box-shadow: 
        0 0 0 10px #ffffff,
        0 0 0 11px rgb(88,127,118,0.5),
        0 20px 40px rgba(0, 0, 0, 0.1);
}

.landing_page .photo {
    position: relative;
    overflow: hidden;
    border-radius: 0 26px 26px 0;
    box-shadow: 10px 10px 0 rgb(59,85,82,0.5);
}

.landing_page .photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: grayscale(30%) contrast(1.1);
}

.landing_page .photo::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid #ffffff;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

.landing_page .text_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 2rem;
    background: 
        linear-gradient(45deg, rgb(88,127,118,0.5) 25%, transparent 25%) -50px 0,
        linear-gradient(-45deg, rgb(88,127,118,0.5) 25%, transparent 25%) -50px 0,
        linear-gradient(45deg, transparent 75%, rgb(88,127,118,0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(88,127,118,0.5) 75%);
    background-size: 100px 100px;
    background-color: #ffffff;
}

.landing_page .text_holder::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgb(59,85,82);
    z-index: -1;
}

.landing_page .text_info {
    position: relative;
    padding: 2rem;
    background: #ffffff;
    border-left: 5px solid rgb(88,127,118);
}

.landing_page .text_info::before,
.landing_page .text_info::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(88,127,118);
}

.landing_page .text_info::before {
    top: 0;
    left: -5px;
    transform: translateX(-50%);
}

.landing_page .text_info::after {
    bottom: 0;
    left: -5px;
    transform: translateX(-50%);
}

.landing_page .text_info svg {
    width: 80px;
    height: 80px;
    fill: rgb(88,127,118);
    margin-bottom: 1.5rem;
}

.landing_page .text_info h2 {
    font-size: 37px;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.landing_page .text_info span {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.landing_page .text_info span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    background: rgb(59,85,82);
    transform: rotate(45deg);
}

.landing_page .button {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: rgb(88,127,118);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid rgb(88,127,118);
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

@media only screen and (max-width: 1200px) {
    .landing_page .holder {
        grid-template-columns: 1fr;
        max-width: 800px;
    }

    .landing_page .photo {
        height: 300px;
        border-radius: 26px 26px 0 0;
    }
}

@media only screen and (max-width: 768px) {
    .landing_page .holder {
        margin: 1rem;
        padding: 1rem;
    }

    .landing_page .text_holder,
    .landing_page .text_info {
        padding: 1rem;
    }

    .landing_page .text_info h2 {
        font-size: 22px;
    }

    .landing_page .text_info span {
        font-size: 15px;
    }

    .landing_page .button {
        padding: 0.5rem 1rem;
        font-size: 15px;
    }
}.thanks_msg {
    background-color: rgb(88,127,118,0.5);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.thanks_msg .container {
    background-color: rgb(88,127,118,0.5);
    border: 1px solid rgb(88,127,118);
    border-radius: 11px;
    padding: 40px 30px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: inset 0 0 10px rgb(59,85,82,0.5);
}
.thanks_msg .container h2 {
    font-family: Ubuntu, sans-serif;
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}
.thanks_msg .container p {
    font-family: Ubuntu, sans-serif;
    font-size: 17px;
    color: rgb(59,85,82);
    line-height: 1.8;
    margin-bottom: 20px;
    border-top: 1px solid rgb(59,85,82,0.5);
    border-bottom: 1px solid rgb(59,85,82,0.5);
    padding: 10px 0;
}
@media only screen and (max-width: 800px) {
    .thanks_msg {
        padding: 30px 10px;
    }
    .thanks_msg .container {
        padding: 30px 20px;
    }
    .thanks_msg .container h2 {
        font-size: calc(34px - 6px);
    }
    .thanks_msg .container p {
        font-size: calc(17px - 2px);
    }
}
.benefits_outline .advantages_content h2 {
    color: rgb(59,85,82);
}

.benefits_outline .advantage_item svg, .benefits_outline .advantage_item svg path {
    fill: rgb(88,127,118);
}

.benefits_outline .advantage_item p {
    color: #000000;
}

.benefits_outline .advantage_item b {
    color: rgb(88,127,118);
}

.benefits_outline {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

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

.benefits_outline .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 28px;
    font-weight: 600;
}

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

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

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

.benefits_outline .advantage_item svg, .benefits_outline .advantage_item img {
    width: 128px;
    height: 128px;
}

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

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

    .benefits_outline .advantages_holder {
        flex-direction: column;
    }

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

    .wrapper-template .benefits_outline .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}
