* {
    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: Arial, sans-serif;
    color: #000000;
}
.PiECinner-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(167,249,229);
}
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;
    }
}.JOqdattempt_now {
    padding: 5vh 0;
    background-color: rgb(167,249,229);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid rgb(133,198,182,0.5);
    border-bottom: 1px solid rgb(133,198,182,0.5);
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.JOqdattempt_now::before,
.JOqdattempt_now::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    opacity: 0.7;
    pointer-events: none;
}

.JOqdattempt_now::before {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.7) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: moveCloud 30s linear infinite;
}

.JOqdattempt_now::after {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.7) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: moveCloud 40s linear infinite reverse;
}

@keyframes moveCloud {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

.JOqdattempt_now .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2vh 2vw;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    width: 100%;
    max-width: 1200px;
    gap: 2vh;
    position: relative;
    z-index: 1;
}

.JOqdattempt_now .holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
    padding: 1vh;
    width: 100%;
}

.JOqdattempt_now .holder svg, .JOqdattempt_now .holder svg path {
    fill: rgb(133,198,182);
    width: 8vw;
    height: 8vw;
    max-width: 100px;
    max-height: 100px;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.JOqdattempt_now .holder svg:hover {
    transform: scale(1.1);
    fill: rgb(99,147,135);
}

.JOqdattempt_now .holder h2 {
    font-size: calc(34px + 0.5vw);
    color: #000000;
    margin: 0;
    font-weight: 600;
    text-align: left;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.JOqdattempt_now .holder h2::after {
    content: '';
    display: block;
    width: 6vw;
    height: 0.5vh;
    background-color: rgb(99,147,135);
    margin-top: 1vh;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.JOqdattempt_now .holder h2:hover::after {
    width: 100%;
}

.JOqdattempt_now .holder .button {
    padding: 12px 25px;
    background: linear-gradient(135deg, rgb(99,147,135), rgb(133,198,182));
    color: #ffffff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.JOqdattempt_now .holder .button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.JOqdattempt_now .holder .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.JOqdattempt_now .holder .button:hover::before {
    width: 300px;
    height: 300px;
}

@media only screen and (max-width: 1024px) {
    .JOqdattempt_now .holder {
        flex-direction: column;
        text-align: center;
    }
    
    .JOqdattempt_now .holder svg, .JOqdattempt_now .holder svg path {
        width: 12vw;
        height: 12vw;
        max-width: 80px;
        max-height: 80px;
    }
    
    .JOqdattempt_now .holder h2 {
        font-size: 21px;
        text-align: center;
    }
    
    .JOqdattempt_now .holder h2::after {
        margin: 1vh auto 0;
    }
}

@media only screen and (max-width: 800px) {
    .JOqdattempt_now .container {
        padding: 10px;
    }
    
    .JOqdattempt_now .holder h2 {
        font-size: 21px;
    }
    
    .JOqdattempt_now .holder svg, .JOqdattempt_now .holder svg path {
        width: 60px;
        height: 60px;
    }
    
    .JOqdattempt_now .holder .button {
        padding: 10px 20px;
        font-size: 15px;
    }
}.DUnMappSpotlight {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: rgb(167,249,229);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}
.DUnMappSpotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(133,198,182,0.5), rgb(99,147,135,0.5));
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    z-index: 0;
}
.DUnMappSpotlight .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 50px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid rgb(133,198,182);
}
.DUnMappSpotlight h2 {
    margin-bottom: 30px;
    font-size: 47px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(145deg, rgb(133,198,182), rgb(99,147,135));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.DUnMappSpotlight p {
    font-size: 13px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
    background: linear-gradient(145deg, rgb(133,198,182,0.5), rgb(99,147,135,0.5));
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgb(133,198,182);
}
@media only screen and (max-width: 800px) {
    .DUnMappSpotlight {
        padding: 20px;
    }
    .DUnMappSpotlight .container {
        padding: 30px;
    }
    .DUnMappSpotlight h2 {
        font-size: 28px;
    }
    .DUnMappSpotlight p {
        font-size: 19px;
    }
}
header {
    padding-bottom: 10px;
    background: linear-gradient(135deg, rgb(133,198,182), rgb(99,147,135));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.main_header {
    border-top: 10px solid rgb(133,198,182);
    border-bottom: 2px solid rgb(133,198,182);
    background: linear-gradient(135deg, rgb(167,249,229), #ffffff);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
}
.main_header .header_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 2px solid rgb(133,198,182);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, rgb(167,249,229));
}
.main_header .header_holder .logo_holder {
    margin: 10px 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgb(133,198,182);
    border-radius: 10px;
    padding: 10px;
    background: #ffffff;
}
.main_header .header_holder .logo_holder svg, .main_header .header_holder .logo_holder img {
    width: 100px;
    height: 100px;
    fill: rgb(133,198,182);
    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: 24px;
    text-align: center;
    color: rgb(99,147,135);
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(133,198,182);
    padding-bottom: 10px;
}
.main_header .header_menu {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-bottom: -2px;
    margin-top: 20px;
    position: relative;
    z-index: 11;
    border-top: 2px solid rgb(133,198,182);
    padding-top: 10px;
}
.main_header .header_menu a {
    border: 2px solid transparent;
    border-bottom: 2px solid rgb(133,198,182);
    padding: 10px 16px;
    color: rgb(99,147,135);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

@media only screen and (max-width: 1000px) {
    .main_header .header_description {
        width: 100%;
    }
    .main_header .header_menu {
        flex-direction: column;
    }
}.FJcRlearning_process {
    position: relative;
    width: 100%;
}

.FJcRlearning_process .work_holder {
    position: relative;
    padding: 80px 0;
    z-index: 1;
    background-blend-mode: overlay;
}

.FJcRlearning_process .work_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from 45deg at 50% 50%,
        #000000 0deg,
        rgb(133,198,182,0.5) 180deg,
        #000000 360deg
    );
    opacity: 0.9;
    z-index: -1;
}

.FJcRlearning_process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: stretch;
}

.FJcRlearning_process .text_holder {
    width: 100%;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.FJcRlearning_process .text_holder h4 {
    grid-column: 1;
    font-size: 29px;
    color: #ffffff;
    font-weight: 700;
    padding: 40px;
    margin: 0;
    background: linear-gradient(135deg, rgb(133,198,182), rgb(99,147,135));
    display: flex;
    align-items: center;
    position: relative;
}

.FJcRlearning_process .text_holder h4::after {
    content: '';
    position: absolute;
    right: -20px;
    width: 40px;
    height: 100%;
    background: inherit;
    transform: skewX(-10deg);
}

.FJcRlearning_process .text_holder p {
    grid-column: 2;
    font-size: 13px;
    line-height: 1.8;
    color: #000000;
    padding: 40px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.FJcRlearning_process .text_holder p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(133,198,182), transparent);
}

@media (min-width: 768px) and (max-width: 1199px) {
    .FJcRlearning_process .work_holder {
        padding: 60px 0;
    }

    .FJcRlearning_process .text_holder {
        gap: 20px;
    }

    .FJcRlearning_process .text_holder h4,
    .FJcRlearning_process .text_holder p {
        padding: 30px;
    }

    .FJcRlearning_process .text_holder h4 {
        font-size: calc(29px * 0.9);
    }
}

@media (max-width: 767px) {
    .FJcRlearning_process .work_holder {
        padding: 40px 0;
    }

    .FJcRlearning_process .text_holder {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .FJcRlearning_process .text_holder h4,
    .FJcRlearning_process .text_holder p {
        grid-column: 1;
        padding: 25px;
    }

    .FJcRlearning_process .text_holder h4 {
        font-size: calc(29px * 0.85);
    }

    .FJcRlearning_process .text_holder h4::after {
        display: none;
    }

    .FJcRlearning_process .text_holder p {
        font-size: calc(13px * 0.95);
        line-height: 1.6;
    }

    .FJcRlearning_process .text_holder p::before {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgb(133,198,182), transparent);
    }
}footer {
    background: rgb(99,147,135);
    color: #ffffff;
}

footer .copyright {
    background: rgb(133,198,182);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(133,198,182);
}

footer h5 {
    color: rgb(133,198,182);
}

footer .menu a {
    color: #ffffff;
}

footer .copyright_info {
    color: #ffffff;
}

footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}

footer .contact_info div svg, footer .contact_info div svg path {
    fill: #ffffff;
}

footer .contact_info div span {
    color: #ffffff;
}

footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 24px;
    margin-bottom: 16px;

}

footer .contact_info {
    display: flex;
    flex-direction: column;
}

footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .contact_info div img, footer .contact_info div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .menu_holder {
    display: flex;
    flex-direction: column;
}

footer .menu a {
    text-decoration: none;
    font-size: 15px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 15px;
}

@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
    }

    footer .contact_info {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

.PiECinner-container footer {
    background: #252525;
}

.PiECinner-container footer .copyright {
    background: none;
    padding: 10px 0;
}

.PiECinner-container footer .footer {
    padding-top: 30px;
    padding-bottom: 0;
}

.PiECinner-container footer .footer_info {
    justify-content: flex-end;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #ffffff;
}

.PiECinner-container footer .logo_holder svg, .PiECinner-container footer .logo_holder img {
    width: 160px;
    height: 160px;
}

.PiECinner-container footer .menu {
    width: calc(50% - 90px);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.PiECinner-container footer h5 {
    width: 200px;
}

.PiECinner-container footer .menu_holder {
    width: 200px;
}

.PiECinner-container footer .menu a {
    margin-right: 0;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.PiECinner-container footer .menu a:hover {
    color: rgb(133,198,182);
}

.PiECinner-container footer .copyright_info {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .PiECinner-container footer .footer_info {
        align-items: center;
    }

    .PiECinner-container footer h5 {
        text-align: center;
    }

    .PiECinner-container footer .menu {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .PiECinner-container footer .menu a {
        text-align: center;
    }

    .PiECinner-container footer .logo_holder svg, .PiECinner-container footer .logo_holder img {
        margin-right: 0;
        width: 120px;
        height: 120px;
    }

    .PiECinner-container footer .logo_holder {
        margin-bottom: 10px;
    }
}.kLrnprivacy_encasement {
    font-family: Arial, sans-serif;
    background-color: rgb(167,249,229);
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.kLrnprivacy_encasement h1 {
    font-size: 42px;
    color: rgb(133,198,182);
    font-weight: 700;
    margin-bottom: 20px;
}
.kLrnprivacy_encasement h2 {
    font-size: 33px;
    color: #000000;
    font-weight: 600;
    margin: 15px 0;
}
.kLrnprivacy_encasement ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.kLrnprivacy_encasement li {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 10px;
}
.kLrnprivacy_encasement div {
    margin-top: 20px;
}
.kLrnprivacy_encasement h3, .kLrnprivacy_encasement h4, .kLrnprivacy_encasement h5, .kLrnprivacy_encasement h6 {
    margin: 1rem 0;
    color: #000000;
}
@media only screen and (max-width: 800px) {
    .kLrnprivacy_encasement {
        padding: 20px;
    }
    .kLrnprivacy_encasement h1 {
        font-size: calc(20px * 0.8);
    }
    .kLrnprivacy_encasement h2 {
        font-size: calc(20px * 0.9);
    }
    .kLrnprivacy_encasement li {
        font-size: 17px;
    }
}.bYcSmembership_plan {
  background: linear-gradient(135deg, rgb(167,249,229) 0%, rgba(0, 0, 0, 0.5) 100%);
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.bYcSmembership_plan::before,
.bYcSmembership_plan::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.bYcSmembership_plan::before {
  width: 60vw;
  height: 60vw;
  background: rgb(133,198,182,0.5);
  top: -20%;
  right: -20%;
  transform: rotate(-45deg);
}

.bYcSmembership_plan::after {
  width: 40vw;
  height: 40vw;
  background: rgb(99,147,135,0.5);
  bottom: -10%;
  left: -10%;
}

.pricing_holder {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.price_info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 17px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.price_info h2 {
  color: #ffffff;
  font-size: calc(43px * 1.2);
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price_info .section_description {
  color: rgba(255, 255, 255, 0.95);
  font-size: calc(18px * 1.1);
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.price_types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 20px;
  perspective: 2000px;
}

.price_type {
  text-decoration: none;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.price_type:hover {
  transform: translateZ(30px) rotateX(10deg);
}

.price_type_holder {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.4)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(17px * 1.5);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.price_type_holder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15));
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.price_type:hover .price_type_holder::before {
  transform: translateY(0);
}

.price_type .photo {
  height: 300px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  transform-style: preserve-3d;
}

.price_type .photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(0, 0, 0, 0.5) 50%,
    #000000 100%
  );
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.price_type:hover .photo::before {
  opacity: 0.6;
}

.price_type_text {
  height: 100%;
  padding: 40px;
  transform-style: preserve-3d;
  position: relative;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.price_type_text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgb(133,198,182,0.5) 0%,
    rgb(99,147,135,0.5) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.price_type:hover .price_type_text::before {
  opacity: 0.15;
}

.price_type_text h3 {
  color: #ffffff;
  font-size: calc(24px * 1.2);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  transform: translateZ(30px);
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price_type_text h3::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  width: 30px;
  height: 2px;
  background: rgb(133,198,182);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.price_type:hover .price_type_text h3::before {
  transform: scaleX(1);
}

.price_type_text .price_amount {
  display: inline-block;
  font-size: calc(33px * 1.3);
  font-weight: 700;
  margin: 25px 0;
  color: #ffffff;
  transform: translateZ(50px);
  position: relative;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price_type_text .price_amount::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgb(133,198,182) 50%,
    transparent 100%
  );
}

.price_type_text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.8;
  transform: translateZ(20px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 400;
}

@media (max-width: 1200px) {
  .bYcSmembership_plan {
    padding: 120px 0;
  }
  
  .price_types {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .bYcSmembership_plan {
    padding: 100px 0;
  }
  
  .price_info {
    padding: 30px;
  }
  
  .price_type .photo {
    height: 250px;
  }
  
  .price_type_text {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .bYcSmembership_plan {
    padding: 80px 0;
  }
  
  .price_types {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    padding: 10px;
  }
  
  .price_info h2 {
    font-size: calc(33px * 1.1);
  }
  
  .price_type .photo {
    height: 220px;
  }
  
  .price_info {
    margin: 0 20px;
  }
}

@media (hover: none) {
  .price_type:hover {
    transform: none;
  }
  
  .price_type_holder::before {
    display: none;
  }
  
  .price_type_text::before {
    display: none;
  }
  
  .price_type_text h3::before {
    display: none;
  }
}header .top_plank {
    background: rgb(133,198,182);
    color:  #ffffff;
}
header .top_plank .top_plank_content div svg, header .top_plank .top_plank_content div svg path {
    fill: #ffffff;
}
header .top_plank .top_plank_content div span {
    color: #ffffff;
}
header .top_plank .top_plank_content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 10px 0;
    font-size: 16px;
    line-height: 21px;
    flex-wrap: wrap;
}
header .top_plank .top_plank_content div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
}
header .top_plank .top_plank_content div img, header .top_plank .top_plank_content div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.tdQRadvantages_summary .advantages_content h2 {
    color: rgb(99,147,135);
}

.tdQRadvantages_summary .advantage_item svg, .tdQRadvantages_summary .advantage_item svg path {
    fill: rgb(133,198,182);
}

.tdQRadvantages_summary .advantage_item p {
    color: #000000;
}

.tdQRadvantages_summary .advantage_item b {
    color: rgb(133,198,182);
}

.tdQRadvantages_summary {
    padding-top: 80px;
    padding-bottom: 80px;
}

.tdQRadvantages_summary .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.tdQRadvantages_summary .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.tdQRadvantages_summary .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 28px;
    font-weight: 600;
}

.tdQRadvantages_summary .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.tdQRadvantages_summary .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.tdQRadvantages_summary .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.tdQRadvantages_summary .advantage_item svg, .tdQRadvantages_summary .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .PiECinner-container .tdQRadvantages_summary .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .tdQRadvantages_summary .advantages_content h2 {
        font-size: 30px;
    }

    .tdQRadvantages_summary .advantages_holder {
        flex-direction: column;
    }

    .tdQRadvantages_summary {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .PiECinner-container .tdQRadvantages_summary .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.PiECinner-container .tdQRadvantages_summary {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgb(167,249,229);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.PiECinner-container .tdQRadvantages_summary .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.PiECinner-container .tdQRadvantages_summary .advantages_content h2 {
    font-size: 28px;
    font-weight: 700;
    color: rgb(133,198,182);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(133,198,182);
    padding-bottom: 8px;
}

.PiECinner-container .tdQRadvantages_summary .advantages_description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 48px;
    max-width: 800px;
}

.PiECinner-container .tdQRadvantages_summary .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.PiECinner-container .tdQRadvantages_summary .advantage_item {
    background-color: #ffffff;
    padding: 20px;
    flex: 1 1 calc(25% - 24px);
    min-width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.PiECinner-container .tdQRadvantages_summary .advantage_image {
    margin-bottom: 16px;
}

.PiECinner-container .tdQRadvantages_summary .advantage_item img,
.PiECinner-container .tdQRadvantages_summary .advantage_item svg {
    width: 80px;
    height: 80px;
}

.PiECinner-container .tdQRadvantages_summary .advantages_content h4 {
    font-size: 21px;
    font-weight: 600;
    color: #000000;
    margin-top: 12px;
}

@media only screen and (max-width: 1200px) {
    .PiECinner-container .tdQRadvantages_summary .advantage_item {
        flex: 1 1 calc(50% - 24px);
    }
}

@media only screen and (max-width: 800px) {
    .PiECinner-container .tdQRadvantages_summary {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .PiECinner-container .tdQRadvantages_summary .advantages_content h2 {
        font-size: 48px;
    }

    .PiECinner-container .tdQRadvantages_summary .advantages_holder {
        flex-direction: column;
        align-items: center;
    }

    .PiECinner-container .tdQRadvantages_summary .advantage_item {
        width: 100%;
    }
}.GCNJlocate {
    background: linear-gradient(135deg, rgb(133,198,182), rgb(99,147,135));
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.GCNJlocate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}
.GCNJlocate .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.GCNJlocate .contact_holder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.GCNJlocate .contact_holder h2 {
    font-size: 47px;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.GCNJlocate .contact_holder .contact_description {
    font-size: 15px;
    margin-bottom: 40px;
    opacity: 0.9;
}
.GCNJlocate .contact_holder .photo {
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    overflow: hidden;
    height: 300px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.GCNJlocate .info_holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.GCNJlocate .holder .info_holder>div span {
    margin-left: 8px;
}
.GCNJlocate .info_holder > div {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}
.GCNJlocate .info_holder svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    margin-right: 20px;
}
.GCNJlocate .info_holder a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.GCNJlocate .info_holder a:hover {
    color: rgb(133,198,182);
    text-shadow: 0 0 10px rgb(133,198,182);
}
.GCNJlocate .contact_politics {
    margin-top: 50px;
}
.GCNJlocate .contact_politics > div {
    margin-bottom: 30px;
}
.GCNJlocate .contact_politics h4 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
}
.GCNJlocate .contact_politics p {
    font-size: 15px;
    opacity: 0.8;
}
.GCNJlocate .holder .info_holder div.qTnsoperating_hours {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.GCNJlocate .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.GCNJlocate .holder .info_holder > div > div {
    margin: 5px 0;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media only screen and (max-width: 1100px) {
    .GCNJlocate .container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .GCNJlocate .contact_holder .photo {
        height: 300px;
    }
}.WmItour_mission {
    padding: 100px 0;
    background: rgb(167,249,229);
    font-family: Arial, sans-serif;
}

.PiECinner-container .WmItour_mission .holder {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
}

.PiECinner-container .WmItour_mission .photo {
    width: 50%;
    max-width: 600px;
    height: 300px;
    border-radius: 0;
    position: relative;
    box-shadow: inset 0 0 0 1000px rgb(99,147,135,0.5);
    margin-bottom: 20px;
}

.PiECinner-container .WmItour_mission .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(133,198,182);
    position: relative;
    z-index: 1;
}

.PiECinner-container .WmItour_mission .style_element {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.PiECinner-container .WmItour_mission h2 {
    font-size: 28px;
    font-weight: 700;
    color: rgb(133,198,182);
    margin-bottom: 20px;
    text-align: center;
}

.PiECinner-container .WmItour_mission p {
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    text-align: center;
}

@media only screen and (max-width: 1200px) {
    .PiECinner-container .WmItour_mission .holder {
        flex-direction: column;
    }

    .PiECinner-container .WmItour_mission .photo,
    .PiECinner-container .WmItour_mission .caption_holder {
        width: 100%;
        max-width: 100%;
    }

    .PiECinner-container .WmItour_mission .caption_holder {
        box-shadow: none;
        border-left: 0;
        border-top: 10px solid rgb(133,198,182);
    }
}

@media only screen and (max-width: 800px) {
    .PiECinner-container .WmItour_mission {
        padding: 10px;
    }

    .PiECinner-container .WmItour_mission .caption_holder {
        padding: 20px;
    }
}
.CPcoopening_board {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.CPcoopening_board .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.CPcoopening_board .style_element {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    width: 60%;
    padding: 60px 40px;
    border-radius: 17px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    backdrop-filter: blur(10px);
    text-align: center;
}
.CPcoopening_board .style_element h1 {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgb(133,198,182);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.CPcoopening_board .style_element h3 {
    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 600;
    color: rgb(99,147,135);
    margin-bottom: 12px;
}
.CPcoopening_board .style_element p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 24px;
}
.CPcoopening_board .style_element::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 17px;
    border: 2px dashed rgb(133,198,182,0.5);
    z-index: -1;
}
@media only screen and (max-width: 800px) {
    .CPcoopening_board .title_page_holder {
        min-height: 320px;
    }
    .CPcoopening_board .style_element {
        width: 80%;
        padding: 40px 20px;
    }
    .CPcoopening_board .style_element h1 {
        font-size: 19px;
    }
    .CPcoopening_board .style_element h3 {
        font-size: 18px;
    }
    .CPcoopening_board .style_element p {
        font-size: 18px;
    }
}
.PiECinner-container .CPcoopening_board {
    position: relative;
}
.PiECinner-container .CPcoopening_board::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    z-index: 0;
}
.PiECinner-container .CPcoopening_board .style_element {
    position: relative;
    margin: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    padding: 40px 30px;
    flex-direction: column;
    min-height: 336px;
    justify-content: center;
    max-width: 1000px;
    border-radius: 10px;
}
.PiECinner-container .CPcoopening_board .style_element::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #ffffff;
    opacity: 0.9;
    z-index: 1;
}
.PiECinner-container .CPcoopening_board .title_page_holder {
    display: flex;
    justify-content: center;
    align-items: center;
}
.PiECinner-container .CPcoopening_board .style_element h1 {
    position: relative;
    z-index: 2;
    font-size: 38px;
    font-weight: 700;
    color: #000000;
}
.PiECinner-container .CPcoopening_board .style_element h3 {
    color: #000000;
    z-index: 2;
}
.PiECinner-container .CPcoopening_board .style_element p {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
}
@media only screen and (max-width: 800px) {
    .PiECinner-container .CPcoopening_board .title_page_holder {
        padding: 20px;
    }
    .PiECinner-container .CPcoopening_board .style_element h1 {
        font-size: 28px;
    }
    .PiECinner-container .CPcoopening_board .style_element {
        padding: 20px;
    }
}.gTFsprogram_structure {
    padding: 80px 0;
    background: rgb(99,147,135);
    position: relative;
    overflow: hidden;
}

.gTFsprogram_structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(133,198,182,0.5),
        rgb(99,147,135,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    animation: moveBackground 10s linear infinite;
}

@keyframes moveBackground {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-20%);
    }
}

.gTFsprogram_structure h2 {
    color: rgb(133,198,182);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.gTFsprogram_structure .content {
    border-radius: 17px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gTFsprogram_structure h3 {
    color: rgb(133,198,182);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.gTFsprogram_structure p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.gTFsprogram_structure .button {
    background: rgb(99,147,135);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.gTFsprogram_structure .button:hover {
    background: rgb(133,198,182);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgb(133,198,182);
}

.gTFsprogram_structure .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-15deg);
    transition: left 0.5s;
}

.gTFsprogram_structure .button:hover::before {
    left: 125%;
}

.gTFsprogram_structure .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gTFsprogram_structure .items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gTFsprogram_structure .course {
    padding: 20px;
    max-width: 100%;
    flex: 1;
    margin: 0 10px;
}

.gTFsprogram_structure .photo {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 17px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.gTFsprogram_structure .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    mix-blend-mode: overlay;
}

.gTFsprogram_structure .text_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

@media only screen and (max-width: 900px) {
    .gTFsprogram_structure {
        padding: 60px 0;
    }
    .gTFsprogram_structure h2 {
        font-size: 28px;
    }
    .gTFsprogram_structure h3 {
        font-size: 23px;
    }
    .gTFsprogram_structure .course {
        max-width: 100%;
        width: 100%;
        padding: 10px;
    }
    .gTFsprogram_structure .items {
        flex-direction: column;
        padding: 0;
    }
    .gTFsprogram_structure .photo {
        height: 250px;
    }
    .PiECinner-container .gTFsprogram_structure .course .content {
        padding: 20px;
    }
}

.PiECinner-container .gTFsprogram_structure .container {
    width: 100%;
    padding: 0;
}

.PiECinner-container .gTFsprogram_structure .items {
    width: 100%;
}

.PiECinner-container .gTFsprogram_structure .items .course {
    padding: 0;
    width: 100%;
}

.PiECinner-container .gTFsprogram_structure .photo {
    height: 300px;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background-position: 50% 50% !important;
}

.PiECinner-container .gTFsprogram_structure .course .content {
    border-radius: 0 !important;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.5);
}

.PiECinner-container .gTFsprogram_structure .text_holder {
    max-width: 1200px;
    margin: auto;
    justify-content: flex-start;
    align-items: center;
    min-height: unset;
    background: none;
    padding: 20px;
}

.PiECinner-container .gTFsprogram_structure p {
    margin-top: 20px;
    text-align: center;
}

.PiECinner-container .gTFsprogram_structure .button {
    margin-top: 30px;
    width: fit-content;
}

.PiECinner-container .gTFsprogram_structure h3 {
    text-align: center;
    text-shadow: 1px 1px #ffffff;
}

@media only screen and (max-width: 800px) {
    .gTFsprogram_structure h2 {
        font-size: 23px;
    }
    .gTFsprogram_structure h3 {
        font-size: 19px;
    }
    .gTFsprogram_structure .photo {
        height: 200px;
    }
}
.VNLXeducation_experience {
    position: relative;
    background: linear-gradient(to right, rgb(133,198,182), rgb(99,147,135));
    color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.VNLXeducation_experience .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.VNLXeducation_experience .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;
}

.VNLXeducation_experience .photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 40px;
    border: 10px solid rgb(133,198,182);
}

.VNLXeducation_experience .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.VNLXeducation_experience .worker_description {
    flex: 1;
}

.VNLXeducation_experience .review .name {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.VNLXeducation_experience .review span {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
}

.VNLXeducation_experience .review .quote {
    font-size: 18px;
    font-style: italic;
    color: #000000;
    margin-top: 20px;
    line-height: 1.6;
}

@media only screen and (max-width: 1200px) {
    .VNLXeducation_experience .review {
        width: 95%;
    }
}

@media only screen and (max-width: 992px) {
    .VNLXeducation_experience .review {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 40px;
    }

    .VNLXeducation_experience .photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}.YuKmtestimonials {
    background: linear-gradient(135deg, #000000 0%, rgb(99,147,135) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.YuKmtestimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(133,198,182,0.5) 5%, transparent 60%);
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.YuKmtestimonials .container {
    position: relative;
    z-index: 1;
}

.YuKmtestimonials h3 {
    font-size: 39px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.YuKmtestimonials h3::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 3px;
    background: linear-gradient(90deg, rgb(133,198,182), rgb(99,147,135));
    border-radius: 3px;
}

.YuKmtestimonials .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
}

.YuKmtestimonials .review {
    background: rgb(167,249,229);
    border-radius: 13px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    width: calc(33.333% - 1.67rem);
    min-width: 280px;
}

.YuKmtestimonials .review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(133,198,182), rgb(99,147,135));
}

.YuKmtestimonials .review::after {
    content: '"';
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    font-size: 8rem;
    color: rgb(133,198,182,0.5);
    font-family: Arial, sans-serif;
    line-height: 1;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.YuKmtestimonials .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.YuKmtestimonials .review:hover::after {
    transform: rotate(10deg);
    opacity: 0.2;
}

.YuKmtestimonials .photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgb(133,198,182);
    box-shadow: 0 0 0 4px rgb(167,249,229), 0 0 0 6px rgb(133,198,182,0.5);
}

.YuKmtestimonials .text {
    text-align: center;
    color: #000000;
    position: relative;
    z-index: 1;
}

.YuKmtestimonials .text span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: rgb(133,198,182);
    margin-bottom: 0.5rem;
}

.YuKmtestimonials .text p {
    font-size: 13px;
	font-weight: 600;
    line-height: 1.8;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgb(167,249,229) 0%, rgb(99,147,135,0.5) 100%);
    border-radius: 10px;
    margin-top: 1rem;
}

.YuKmtestimonials .text p::before,
.YuKmtestimonials .text p::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(133,198,182);
    opacity: 0.1;
}

.YuKmtestimonials .text p::before {
    top: -5px;
    left: -5px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.YuKmtestimonials .text p::after {
    bottom: -5px;
    right: -5px;
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.YuKmtestimonials .review:hover .text p {
    opacity: 1;
    background: linear-gradient(135deg, rgb(167,249,229) 0%, rgb(133,198,182,0.5) 100%);
}

@media (max-width: 991px) {
    .YuKmtestimonials .review {
        width: calc(50% - 1.25rem);
    }
}

@media (max-width: 768px) {
    .YuKmtestimonials {
        padding: 4rem 1rem;
    }
    
    .YuKmtestimonials .reviews {
        flex-direction: column;
        align-items: center;
    }
    
    .YuKmtestimonials .review {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .YuKmtestimonials h3 {
        font-size: 31px;
    }
    
    .YuKmtestimonials .review {
        padding: 1.5rem;
    }
}