* {
    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;
}
.wrapper-section-util {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(181,218,163);
}
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;
    }
}.developer-experience-util {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.developer-experience-util .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 20px;
    flex-wrap: wrap;
}

.developer-experience-util .review {
    background: rgb(139,167,125,0.5);
    padding: 30px;
    border-radius: 27px;
    box-shadow: 0 10px 15px rgba(rgba(0, 0, 0, 0.5), 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.developer-experience-util .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(rgba(0, 0, 0, 0.5), 0.2);
}

.developer-experience-util .photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid rgb(96,116,87);
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.developer-experience-util .photo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.1);
}

.developer-experience-util .worker_description .name {
    font-size: 21px;
    color: rgb(96,116,87);
    font-family: Playfair Display, sans-serif;
    margin-bottom: 10px;
    font-weight: 600;
}

.developer-experience-util .worker_description span {
    font-size: 12px;
    color: rgb(139,167,125);
    font-weight: 400;
    margin-bottom: 15px;
}

.developer-experience-util .worker_description .quote {
    font-size: 12px;
    color: #000000;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    padding: 0 20px;
}

@media only screen and (max-width: 1200px) {
    .developer-experience-util .review {
        max-width: 90%;
    }
}

@media only screen and (max-width: 800px) {
    .developer-experience-util {
        padding: 50px 20px;
    }

    .developer-experience-util .holder {
        flex-direction: column;
        align-items: center;
    }

    .developer-experience-util .photo {
        width: 250px;
        height: 250px;
    }

    .developer-experience-util .review {
        padding: 20px;
        max-width: 100%;
    }
}

.wrapper-section-util .developer-experience-util {
    position: relative;
    padding-top: 120px;
}

.wrapper-section-util .developer-experience-util::after {
    content: "";
    width: 100%;
    height: 250px;
    background: rgb(139,167,125);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: skewY(-3deg);
    transform-origin: top left;
}

.wrapper-section-util .developer-experience-util .holder {
    position: relative;
    z-index: 1;
    flex-direction: column;
}

.wrapper-section-util .developer-experience-util .review {
    background: rgba(#ffffff, 0.8);
    border-radius: 27px;
    box-shadow: 0 15px 30px rgba(rgba(0, 0, 0, 0.5), 0.3);
    padding: 30px;
    text-align: center;
}

.wrapper-section-util .developer-experience-util .photo {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.wrapper-section-util .worker_description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper-section-util .developer-experience-util .review .name {
    font-size: 43px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.wrapper-section-util .developer-experience-util .review span {
    font-size: 19px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
}

.wrapper-section-util .developer-experience-util .review .quote {
    font-size: 12px;
    font-weight: 300;
    color: #000000;
    line-height: 1.8;
    padding: 0 20px;
}

@media only screen and (max-width: 800px) {
    .wrapper-section-util .developer-experience-util .review {
        padding: 20px;
    }

    .wrapper-section-util .developer-experience-util::after {
        height: 200px;
    }

    .wrapper-section-util .developer-experience-util .photo {
        width: 180px;
        height: 180px;
    }
}
footer {
    background: rgb(96,116,87);
    color: #ffffff;
}

footer .copyright {
    background: rgb(139,167,125);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(139,167,125);
}

footer h5 {
    color: rgb(139,167,125);
}

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: 22px;
    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;
    }

}

.wrapper-section-util footer {
    background: linear-gradient(130deg, rgb(139,167,125) 0%, rgb(96,116,87) 89%);
}

.wrapper-section-util footer .copyright {
    background: none;
    padding: 10px 0;
}

.wrapper-section-util footer .footer_info {
    flex-direction: row-reverse;
}

.wrapper-section-util footer .footer {
    padding: 0;
    padding-top: 30px;
}

.wrapper-section-util footer .menu a {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
}

.wrapper-section-util footer .logo_holder svg, .wrapper-section-util footer .logo_holder img {
    width: 100px;
    height: 100px;
    margin: 0;
}

@media only screen and (max-width: 800px) {
    .wrapper-section-util footer .footer_info {
        flex-direction: column;
    }

    .wrapper-section-util footer .footer_info {
        padding: 0;
    }

    .wrapper-section-util footer .logo_holder {
        margin-bottom: 16px;
    }

    .wrapper-section-util footer {
        background: linear-gradient(130deg, rgb(96,116,87) 0%, rgb(139,167,125) 89%);
    }
}
.main_header {
    background: linear-gradient(135deg, rgb(139,167,125,0.5) 0%, rgb(96,116,87,0.5) 100%);
    padding: 15px 0;
    border-bottom: 2px solid rgb(96,116,87);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.main_header .header_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(circle at top right, rgb(181,218,163) 0%, var(--white-color_opacity) 100%);
    border-radius: 10px;
    padding: 10px 20px;
    border: 1px solid rgb(96,116,87,0.5);
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
}
.main_header .header_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(139,167,125);
    font-weight: 700;
    font-size: 21px;
    transition: all 0.3s ease;
}
.main_header .header_logo:hover {
    transform: scale(1.05);
}
.main_header .header_logo svg,
.main_header .header_logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(139,167,125);
}
.main_header .header_description {
    font-size: 12px;
    color: #000000;
    margin-left: 20px;
    padding: 5px 10px;
    background: linear-gradient(90deg, rgb(139,167,125,0.5) 0%, transparent 100%);
    border-radius: 10px;
}
.main_header .header_menu {
    display: flex;
    gap: 15px;
}
.main_header .header_menu a {
    color: #000000;
    text-decoration: none;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgb(139,167,125,0.5) 0%, rgb(96,116,87,0.5) 100%);
    border: 1px solid transparent;
}
.main_header .header_menu a:hover {
    background: linear-gradient(45deg, rgb(96,116,87,0.5) 0%, rgb(139,167,125,0.5) 100%);
    border-color: rgb(139,167,125);
    box-shadow: 0 0 10px rgb(139,167,125,0.5);
}
@media (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
    }
    .main_header .logo_holder {
        margin-bottom: 15px;
    }
    .main_header .header_description {
        margin-left: 0;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    .main_header .header_menu {
        flex-direction: column;
        width: 100%;
    }
    .main_header .header_menu a {
        text-align: center;
        margin-bottom: 10px;
    }
}
.main_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(139,167,125) 0%, rgb(96,116,87) 100%);
}
@media (prefers-reduced-motion: reduce) {
    .main_header,
    .main_header *,
    .main_header *::before,
    .main_header *::after {
        animation: none !important;
        transition: none !important;
    }
}.learning-system-util {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgb(96,116,87);
    color: #ffffff;
}

.learning-system-util::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(139,167,125) 0%, rgb(96,116,87) 100%);
    animation: rotateBackground 20s infinite linear;
    z-index: -1;
    filter: blur(100px);
}

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

.learning-system-util .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    gap: 20px;
}

.learning-system-util h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 29px;
    font-family: Playfair Display, sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.learning-system-util p {
    text-align: center;
    font-size: 15px;
    font-family: Playfair Display, sans-serif;
    font-weight: 400;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.learning-system-util p::first-letter {
    font-size: 1.5em;
    font-weight: 600;
    color: #ffffff;
}

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

.wrapper-section-util .learning-system-util h2 {
    color: #ffffff;
    font-size: 44px;
    margin-bottom: 48px;
}

.wrapper-section-util .learning-system-util {
    position: relative;
}

.wrapper-section-util .learning-system-util::after {
    content: "";
    position: absolute;
    width: calc(50% - 6px);
    height: 44px;
    background: rgb(96,116,87);
    border-left: 12px solid #ffffff;
    bottom: -44px;
    right: 0;
}

@media only screen and (max-width: 800px) {
    .wrapper-section-util .learning-system-util h2 {
        font-size: 29px;
        margin-bottom: 28px;
    }
}
.try-immediately-util {
    padding: 100px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.try-immediately-util::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgb(139,167,125,0.5) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgb(96,116,87,0.5) 0%, transparent 20%),
        linear-gradient(45deg, #000000 0%, rgb(181,218,163) 100%);
    opacity: 0.7;
    z-index: 1;
    animation: backgroundShift 20s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.try-immediately-util::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgb(139,167,125) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(139,167,125) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(139,167,125) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(139,167,125) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.05;
    z-index: 2;
    animation: patternMove 10s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
    100% { background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px; }
}

.try-immediately-util .container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.try-immediately-util .container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}


.try-immediately-util .holder {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: 
        radial-gradient(circle at 30% 40%, rgb(139,167,125,0.5) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgb(96,116,87,0.5) 0%, transparent 30%),
        linear-gradient(135deg, #000000 0%, rgb(181,218,163) 100%);
    position: relative;
    overflow: hidden;
}

.try-immediately-util .holder svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.try-immediately-util .holder svg path {
    fill: #ffffff;
}

.try-immediately-util .holder h2 {
    font-size: 31px;
    color: #ffffff;
    text-align: center;
    margin: 30px 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.try-immediately-util .holder h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff;
}

.try-immediately-util .holder .button {
    padding: 15px 40px;
    background: #ffffff;
    color: rgb(139,167,125);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media only screen and (max-width: 1024px) {
    .try-immediately-util {
        padding: 80px 0;
    }

    .try-immediately-util .container {
        max-width: 90%;
        border-radius: 0;
        background: none;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        transition: none;
    }

    .try-immediately-util .container:hover {
        transform: none;
        box-shadow: none;
    }

    .try-immediately-util .holder {
        border-radius: 25px;
        padding: 30px;
    }

    .try-immediately-util .holder svg {
        width: 100px;
        height: 100px;
    }

    .try-immediately-util .holder h2 {
        font-size: calc(31px * 0.9);
    }

    .try-immediately-util .holder .button {
        padding: 12px 35px;
        font-size: calc(15px * 0.9);
    }
}

@media only screen and (max-width: 768px) {
    .try-immediately-util {
        padding: 60px 0;
    }

    .try-immediately-util .container {
        max-width: 100%;
    }

    .try-immediately-util .holder {
        padding: 25px;
        border-radius: 0;
    }

    .try-immediately-util .holder svg {
        width: 80px;
        height: 80px;
    }

    .try-immediately-util .holder h2 {
        font-size: 19px;
        margin: 20px 0;
    }

    .try-immediately-util .holder .button {
        padding: 12px 35px;
        font-size: calc(15px * 0.9);
    }
}.service-connect-util {
    color: #000000;
    background-color: rgb(181,218,163);
    padding: 80px 0;
    font-family: Playfair Display, sans-serif;
}
.service-connect-util .contact_holder {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-connect-util .holder .info_holder div.office-availability-util {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.service-connect-util .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.service-connect-util .holder .info_holder > div > div {
    margin: 5px 0;
}
.service-connect-util .contact_holder h2 {
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(139,167,125);
    padding-bottom: 10px;
}
.service-connect-util .contact_description {
    font-size: 13px;
    margin-bottom: 40px;
}
.service-connect-util .holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}
.service-connect-util .photo {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.service-connect-util .info_holder {
    width: calc(100% - 320px);
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
}
.service-connect-util .info_holder > div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
}
.service-connect-util .info_holder > div a {
    color: rgb(139,167,125);
    text-decoration: none;
    transition: color 0.3s ease;
}
.service-connect-util .info_holder > div a:hover {
    color: rgb(96,116,87);
}
.service-connect-util .info_holder svg {
    width: 25px;
    height: 25px;
    fill: rgb(139,167,125);
    margin-right: 10px;
}
.service-connect-util .holder .info_holder>div span {
    margin-left: 8px;
}
.service-connect-util .contact_politics {
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service-connect-util .contact_politics > div {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    text-align: left;
}
.service-connect-util .contact_politics > div h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
}
@media only screen and (max-width: 800px) {
    .service-connect-util .holder {
        flex-direction: column;
        align-items: center;
    }
    .service-connect-util .photo {
        width: 100%;
        margin-bottom: 20px;
    }
    .service-connect-util .info_holder {
        width: 100%;
    }
    .service-connect-util .contact_politics > div {
        width: 100%;
    }
}
.secure-pantry-util {
    padding: 50px;
    width: 85%;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid rgb(139,167,125);

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

.secure-pantry-util:before, .secure-pantry-util:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(139,167,125,0.5), rgb(96,116,87,0.5));
    top: 0;
    left: 0;
    opacity: 0.1;
    z-index: 0;
}

.secure-pantry-util h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 44px;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid rgb(139,167,125);
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.secure-pantry-util h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 36px;
    color: rgb(96,116,87);
    font-weight: 600;
    border-bottom: 2px solid rgb(96,116,87,0.5);
    padding-bottom: 5px;
    position: relative;
    z-index: 1;
}

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

.secure-pantry-util li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.8;
    position: relative;
}

.secure-pantry-util li:before {
    content: "•";
    position: absolute;
    left: -20px;
    color: rgb(139,167,125);
    font-size: 1.2em;
    line-height: 1;
}

.secure-pantry-util 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;
}

.secure-pantry-util .container {
    position: relative;
    z-index: 1;
}

.secure-pantry-util h3, .secure-pantry-util h4, .secure-pantry-util h5, .secure-pantry-util h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 22px;
    color: rgb(139,167,125);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

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

.secure-pantry-util a {
    color: rgb(96,116,87);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgb(96,116,87);
    position: relative;
    z-index: 1;
}

.secure-pantry-util a:hover {
    color: rgb(139,167,125);
    border-bottom: 1px solid rgb(139,167,125);
}

.secure-pantry-util button {
    background: rgb(96,116,87);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.secure-pantry-util button:hover {
    background: rgb(139,167,125);
}

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

    .secure-pantry-util h1 {
        font-size: calc(22px - 5px);
    }

    .secure-pantry-util h2 {
        font-size: calc(22px - 3px);
    }

    .secure-pantry-util ul, .secure-pantry-util ol {
        padding-left: 10px;
    }

    .secure-pantry-util li:before {
        left: -10px;
    }

    .secure-pantry-util button {
        padding: 10px 20px;
    }
}
.benefits-overview-util .advantages_content h2 {
    color: rgb(96,116,87);
}

.benefits-overview-util .advantage_item svg, .benefits-overview-util .advantage_item svg path {
    fill: rgb(139,167,125);
}

.benefits-overview-util .advantage_item p {
    color: #000000;
}

.benefits-overview-util .advantage_item b {
    color: rgb(139,167,125);
}

.benefits-overview-util {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

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

.benefits-overview-util .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 31px;
    font-weight: 600;
}

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

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

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

.benefits-overview-util .advantage_item svg, .benefits-overview-util .advantage_item img {
    width: 128px;
    height: 128px;
}

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

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

    .benefits-overview-util .advantages_holder {
        flex-direction: column;
    }

    .benefits-overview-util {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-section-util .benefits-overview-util .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-section-util .benefits-overview-util {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgb(181,218,163);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.wrapper-section-util .benefits-overview-util:hover {
    background-color: rgb(139,167,125,0.5);
}

.wrapper-section-util .benefits-overview-util .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.wrapper-section-util .benefits-overview-util .advantages_content h2 {
    font-size: 31px;
    font-weight: 600;
    color: rgb(96,116,87);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.wrapper-section-util .benefits-overview-util .advantages_description {
    font-size: 12px;
    color: #000000;
    margin-bottom: 40px;
    max-width: 800px;
}

.wrapper-section-util .benefits-overview-util .advantages_holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wrapper-section-util .benefits-overview-util .advantage_item {
    background-color: #ffffff;
    padding: 30px;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    flex: 1 1 22%;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wrapper-section-util .benefits-overview-util .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.wrapper-section-util .benefits-overview-util .advantage_image {
    margin-bottom: 20px;
}

.wrapper-section-util .benefits-overview-util .advantage_item img,
.wrapper-section-util .benefits-overview-util .advantage_item svg {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease-in-out;
}

.wrapper-section-util .benefits-overview-util .advantage_item:hover img,
.wrapper-section-util .benefits-overview-util .advantage_item:hover svg {
    transform: scale(1.1);
}

.wrapper-section-util .benefits-overview-util .advantages_content h4 {
    font-size: 21px;
    font-weight: 700;
    color: #000000;
    margin-top: 10px;
    transition: color 0.3s ease-in-out;
}

.wrapper-section-util .benefits-overview-util .advantage_item:hover h4 {
    color: rgb(96,116,87);
}

@media only screen and (max-width: 1200px) {
    .wrapper-section-util .benefits-overview-util .advantage_item {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-section-util .benefits-overview-util {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-section-util .benefits-overview-util .advantages_content h2 {
        font-size: 48px;
    }

    .wrapper-section-util .benefits-overview-util .advantages_holder {
        flex-direction: column;
        align-items: center;
    }

    .wrapper-section-util .benefits-overview-util .advantage_item {
        width: 90%;
        margin-bottom: 20px;
    }
}.title-section-util {
    position: relative;
    overflow: hidden;
    background: rgb(181,218,163);
}

.title-section-util .holder {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    position: relative;
    padding: 60px 20px;
}

.title-section-util .holder:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgb(139,167,125,0.5), rgb(96,116,87,0.5));
    opacity: 0.6;
    z-index: 2;
    mix-blend-mode: multiply;
}

.title-section-util .photo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(50%) contrast(120%);
    transition: transform 0.5s ease;
}

.title-section-util .text_holder {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgb(96,116,87), rgba(0, 0, 0, 0.5));
    padding: 60px 40px;
    color: #ffffff;
    width: 50%;
    flex-shrink: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.title-section-util .text_info {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid rgb(139,167,125);
    position: relative;
}

.title-section-util .text_info:before {
    content: "";
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 100%;
    background: rgb(139,167,125);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease;
}

.title-section-util .text_info svg {
    width: 80px;
    height: 80px;
    fill: #ffffff;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.title-section-util .text_info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.title-section-util .text_info h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(139,167,125);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.title-section-util .text_info span {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.title-section-util .text_holder .button {
    padding: 15px 30px;
    background: rgb(139,167,125);
    color: #ffffff;
    text-decoration: none;
    width: fit-content;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.3s ease;
}

.title-section-util .text_holder .button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(96,116,87);
    transition: left 0.5s ease;
}

@media only screen and (max-width: 1200px) {
    .title-section-util .text_holder {
        width: 70%;
    }
}

@media only screen and (max-width: 800px) {
    .title-section-util .text_holder {
        width: 100%;
    }
    .title-section-util .holder {
        flex-direction: column-reverse;
    }
    .title-section-util .photo {
        height: 100%;
    }
}.contact-form-box-util {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgb(139,167,125), rgb(96,116,87));
    position: relative;
    overflow: hidden;
}

.contact-form-box-util::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgb(139,167,125,0.5), transparent);
    z-index: 0;
}

.contact-form-box-util::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgb(96,116,87,0.5), transparent);
    z-index: 0;
}

.contact-form-box-util h3 {
    color: #ffffff;
    font-size: 31px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-form-box-util .form {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 40px;
    margin: auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form-box-util .form::before,
.contact-form-box-util .form::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 0;
}

.contact-form-box-util .form::before {
    top: -50px;
    left: -50px;
    background: rgb(139,167,125,0.5);
}

.contact-form-box-util .form::after {
    bottom: -50px;
    right: -50px;
    background: rgb(96,116,87,0.5);
}

.contact-form-box-util form input,
.contact-form-box-util form select,
.contact-form-box-util form textarea {
    color: #000000;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(139,167,125);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    font-size: 18px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-form-box-util form input:focus,
.contact-form-box-util form select:focus,
.contact-form-box-util form textarea:focus {
    background: #ffffff;
    border: 1px solid rgb(96,116,87);
}

.contact-form-box-util form .button {
    background: rgb(96,116,87);
    color: #ffffff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 15px 30px;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-form-box-util form .button:hover {
    background: rgb(139,167,125);
}

.contact-form-box-util .holder {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-form-box-util .holder > div {
    width: 100%;
    padding: 30px;
}

.contact-form-box-util .form form {
    display: flex;
    flex-direction: column;
}

.contact-form-box-util .name_holder {
    display: flex;
    justify-content: space-between;
}

.contact-form-box-util .name_holder input {
    width: 100%;
}

.contact-form-box-util .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.contact-form-box-util .agree label {
    display: flex;
    align-items: center;
}

.contact-form-box-util .agree a {
    margin-left: 5px;
    color: rgb(139,167,125);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-box-util .form_text {
    margin-bottom: 30px;
    text-align: center;
    color: #000000;
    font-size: 18px;
    z-index: 1;
    position: relative;
}

.contact-form-box-util .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 5px;
}

@media only screen and (max-width: 600px) {
    .contact-form-box-util {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact-form-box-util h3 {
        font-size: 22px;
    }
    .contact-form-box-util .name_holder {
        flex-direction: column;
    }
    .contact-form-box-util .name_holder input {
        width: 100%;
        margin-bottom: 20px;
    }
    .contact-form-box-util .form {
        padding: 20px;
    }
}

.wrapper-section-util .contact-form-box-util .holder {
    justify-content: center;
    position: relative;
}

.wrapper-section-util .contact-form-box-util .holder::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: none;
    border-radius: 50%;
    top: -50px;
    right: 10%;
    border: 50px solid rgb(181,218,163);
}

.wrapper-section-util .contact-form-box-util .form_text {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    color: #000000;
}

.wrapper-section-util .contact-form-box-util {
    background: rgb(139,167,125);
    padding-top: 100px;
}

.wrapper-section-util .contact-form-box-util .form {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    background: #ffffff;
    width: 80%;
    position: relative;
    z-index: 1;
}

.wrapper-section-util .contact-form-box-util form input {
    background: rgb(181,218,163);
    border: 1px solid rgb(96,116,87);
    border-radius: 10px;
}

.wrapper-section-util .contact-form-box-util form label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.wrapper-section-util .contact-form-box-util .name_holder {
    flex-direction: column;
}

.wrapper-section-util .contact-form-box-util h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #000000;
}

.wrapper-section-util .contact-form-box-util .agree a {
    text-decoration: none;
    color: rgb(139,167,125);
}

.wrapper-section-util .contact-form-box-util form .button {
    background: rgb(96,116,87);
    border: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    width: 50%;
    margin: auto;
}

@media only screen and (max-width: 800px) {
    .wrapper-section-util .contact-form-box-util {
        padding-top: 80px;
    }
    .wrapper-section-util .contact-form-box-util .holder > div {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
    .wrapper-section-util .contact-form-box-util form .button {
        width: 100%;
    }
}.course-features-util {
    padding-top: 80px;
    padding-bottom: 80px;
    background: rgb(139,167,125);
    font-family: Playfair Display, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-features-util h2 {
    color: rgb(96,116,87);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 3px solid rgb(96,116,87);
    display: inline-block;
    padding-bottom: 10px;
}

.course-features-util .container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.course-features-util .holder {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.course-features-util .items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.course-features-util .course {
    flex: 1 1 45%;
    margin: 20px;
    overflow: hidden;
}

.course-features-util .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.course-features-util .photo {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid rgb(96,116,87);
}

.course-features-util .text_holder {
    padding: 30px;
    text-align: left;
}

.course-features-util h3 {
    color: rgb(139,167,125);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 16px;
    border-left: 5px solid rgb(96,116,87);
    padding-left: 10px;
}

.course-features-util p {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-features-util .button {
    background: rgb(139,167,125);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 29px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
}

@media only screen and (max-width: 800px) {
    .course-features-util {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .course-features-util h2 {
        font-size: 28px;
    }
    .course-features-util h3 {
        font-size: 24px;
    }
    .course-features-util .photo {
        height: 200px;
    }
    .course-features-util .text_holder {
        padding: 20px;
    }
    .course-features-util .course {
        flex: 1 1 100%;
        margin: 0;
    }
}

.wrapper-section-util .course-features-util {
    position: relative;
    padding: 60px 0;
    border-top: 5px solid rgb(96,116,87);
    border-bottom: 5px solid rgb(96,116,87);
}

.wrapper-section-util .course-features-util .items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.wrapper-section-util .course-features-util .photo {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}

.wrapper-section-util .course-features-util .text_holder {
    border-radius: 10px;
    border: 2px solid rgb(96,116,87);
    background: #ffffff;
    padding: 30px;
    width: 100%;
    max-width: 800px;
}

.wrapper-section-util .course-features-util h3 {
    font-size: 23px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 20px;
}

.wrapper-section-util .course-features-util .button {
    background: rgb(96,116,87);
    color: #ffffff;
    font-size: 20px;
    padding: 15px 30px;
    border-radius: 10px;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
}

@media only screen and (max-width: 800px) {
    .wrapper-section-util .course-features-util .photo {
        width: 100%;
        height: 200px;
    }
    .wrapper-section-util .course-features-util .text_holder {
        padding: 20px;
    }
    .wrapper-section-util .course-features-util h3 {
        font-size: 22px;
    }
}
.prospective-members-util {
    padding-bottom: 80px;
    padding-top: 80px;
}

.prospective-members-util .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prospective-members-util ul {
    list-style: none;
}

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

.prospective-members-util ul svg, .prospective-members-util ul svg path {
    fill: rgb(139,167,125);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.prospective-members-util h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

.wrapper-section-util .prospective-members-util .holder {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: none;
    background: linear-gradient(135deg, rgb(139,167,125), rgb(96,116,87));
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: background 0.3s ease;
}

.wrapper-section-util .prospective-members-util .holder:hover {
    background: linear-gradient(135deg, rgb(96,116,87), rgb(139,167,125));
}

.wrapper-section-util .prospective-members-util h2 {
    text-align: left;
    font-size: 29px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.wrapper-section-util .prospective-members-util ul {
    text-align: left;
    width: 100%;
}

.wrapper-section-util .prospective-members-util ul li {
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    background: #ffffff;
    border-left: 4px solid rgb(139,167,125);
    border-radius: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.wrapper-section-util .prospective-members-util ul li:hover {
    border-left-color: rgb(96,116,87);
    transform: translateX(10px);
}

.wrapper-section-util .prospective-members-util ul svg, .wrapper-section-util .prospective-members-util ul svg path {
    margin-right: 13px;
    width: 30px;
    height: 30px;
    fill: rgb(139,167,125);
    transition: fill 0.3s ease;
    position: static;
}

.wrapper-section-util .prospective-members-util ul li:hover svg, .wrapper-section-util .prospective-members-util ul li:hover svg path {
    fill: rgb(96,116,87);
}

@media only screen and (max-width: 800px) {
    .wrapper-section-util .prospective-members-util .holder {
        padding: 40px;
        background: linear-gradient(135deg, rgb(139,167,125), rgb(96,116,87,0.5));
    }

    .wrapper-section-util .prospective-members-util h2 {
        font-size: 24px;
    }

    .wrapper-section-util .prospective-members-util ul li {
        font-size: 17px;
        padding: 10px 15px;
    }
}.user-testimonials-util {
    background: rgb(96,116,87,0.5);
    padding: 80px 0;
    border-top: 5px solid rgb(139,167,125);
}

.user-testimonials-util h3 {
    font-size: 31px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.user-testimonials-util h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: rgb(139,167,125);
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.user-testimonials-util .reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.user-testimonials-util .reviews .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.user-testimonials-util .reviews .review .photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.user-testimonials-util .reviews .review .text {
    font-style: italic;
    font-size: 13px;
    color: #000000;
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: 16px;
    background: rgb(181,218,163);
}

.user-testimonials-util .reviews .review .text::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid rgb(181,218,163);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    bottom: -20px;
    left: calc(50% - 20px);
}

.user-testimonials-util .reviews .review .text p {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    margin: 5px 0;
}

.user-testimonials-util .reviews .review .text span {
    display: block;
    color: #000000;
    font-size: 13px;
    margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
    .user-testimonials-util .reviews {
        grid-template-columns: 1fr;
    }
}
.our-mission-util {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(139,167,125) 30%, rgb(96,116,87) 100%);
    color: #000000;
    font-family: Playfair Display, sans-serif;
}

.wrapper-section-util .our-mission-util .holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.wrapper-section-util .our-mission-util .holder .photo {
    display: block;
    width: 40%;
    height: 400px;
    flex-shrink: 0;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 10px 20px rgb(139,167,125,0.5), 0 6px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-left: 20px;
}

.wrapper-section-util .our-mission-util .caption_holder {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgb(139,167,125,0.5), 0 6px 6px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.wrapper-section-util .our-mission-util .caption_holder::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: rgb(139,167,125,0.5);
    border-radius: 10px;
    z-index: -1;
    transition: transform 0.3s ease-in-out;
}

.wrapper-section-util .our-mission-util .caption_holder:hover::before {
    transform: translate(-10px, -10px);
}

.wrapper-section-util .our-mission-util h2 {
    color: rgb(139,167,125);
    font-size: 31px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wrapper-section-util .our-mission-util p {
    color: #000000;
    font-size: 12px;
    line-height: 1.6;
}

@media only screen and (max-width: 1200px) {
    .wrapper-section-util .our-mission-util .caption_holder {
        flex-direction: column;
    }
    .wrapper-section-util .our-mission-util .holder .photo {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .wrapper-section-util .our-mission-util .caption_holder::before {
        content: none;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-section-util .our-mission-util .holder {
        flex-direction: column;
        align-items: center;
    }

    .wrapper-section-util .our-mission-util .caption_holder {
        padding: 20px;
        text-align: center;
    }
}.gratWrap-util {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(139,167,125,0.5);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.gratWrap-util::before,
.gratWrap-util::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgb(139,167,125,0.5);
    z-index: 1;
}
.gratWrap-util::before {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}
.gratWrap-util::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}
.gratWrap-util .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    max-width: 1000px;
    padding: 40px;
    z-index: 2;
    position: relative;
}
.gratWrap-util h2 {
    margin-bottom: 20px;
    font-size: 46px;
    font-weight: 700;
    color: rgb(139,167,125);
    border-bottom: 2px solid rgb(139,167,125);
    padding-bottom: 10px;
    width: 100%;
    letter-spacing: 2px;
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px #ffffff;
}

.gratWrap-util p {
    font-size: 12px;
    color: #000000;
    font-weight: 400;
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}
.gratWrap-util p + p {
    margin-top: 20px;
}
.gratWrap-util p::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: rgb(139,167,125);
    border-radius: 50%;
    margin-bottom: 10px;
}
@media only screen and (max-width: 800px) {
    .gratWrap-util {
        padding: 10px;
    }
    .gratWrap-util .container {
        padding: 20px;
        width: 100%;
    }
    .gratWrap-util h2 {
        font-size: 28px;
    }
    .gratWrap-util p {
        font-size: 18px;
    }
}
