:root {
    --primary-100: rgba(48, 88, 64, 1);
    --primary-90: rgba(79, 107, 92, 1);
    --primary-70: rgba(110, 138, 121, 1);
    --primary-80: rgba(89, 121, 102, 1);

    --primary-60: rgba(141, 235, 223, 1);
    --primary-50: rgba(160, 238, 228, 1);
    --primary-40: rgba(179, 241, 233, 1);
    --primary-30: rgba(198, 245, 239, 1);
    --primary-20: rgba(217, 248, 244, 1);
    --primary-10: rgba(236, 252, 250, 1);

    --secondary-100: rgba(12, 67, 108, 1);
    --secondary-90: rgba(36, 86, 123, 1);
    --secondary-80: rgba(61, 105, 137, 1);
    --secondary-70: rgba(85, 123, 152, 1);
    --secondary-60: rgba(109, 142, 167, 1);
    --secondary-50: rgba(133, 161, 181, 1);
    --secondary-40: rgba(158, 180, 196, 1);
    --secondary-30: rgba(182, 199, 211, 1);
    --secondary-20: rgba(206, 217, 226, 1);
    --secondary-10: rgba(231, 236, 240, 1);

    --neutral-100: rgba(42, 42, 42, 1);
    --neutral-90: rgba(63, 63, 63, 1);
    --neutral-80: rgba(84, 84, 84, 1);
    --neutral-70: rgba(106, 106, 106, 1);
    --neutral-60: rgba(127, 127, 127, 1);
    --neutral-50: rgba(148, 148, 148, 1);
    --neutral-40: rgba(170, 170, 170, 1);
    --neutral-30: rgba(191, 191, 191, 1);
    --neutral-20: rgba(212, 212, 212, 1);
    --neutral-10: rgba(234, 234, 234, 1);


    --white-255: rgba(255, 255, 255, 1);
    --black-13: rgba(13, 13, 13, 1);

    --box-shadow-012: rgba(0, 0, 0, 0.12);
    --box-shadow-02: rgba(0, 0, 0, 0.2);
    --box-shadow-008: rgba(0, 0, 0, 0.08);

    --required-field: rgba(242, 35, 35, 1);
    --footer-bg: rgba(79, 107, 92, 0.1);

    --font-robot: 'Roboto', sans-serif;
    --font-barlow: 'Barlow', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-barlow);
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: auto;
    width: 100%;
}

.text-capitalize {
    text-transform: capitalize;
}

.d-flex {
    display: flex;
}

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.w-33 {
    width: 35%;
}

.header {
    background-color: var(--white-255);
    box-shadow: 0 2px 24px 0 var(--box-shadow-012);
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo-block {
    display: flex;
    gap: 10px;
}

.logo {
    width: 88px;
    height: 88px;
}

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

.menu ul {
    display: flex;
    gap: 50px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li a,
.menu li a.active {
    font-family: var(--font-robot);
    line-height: normal;
    text-transform: capitalize;
    cursor: pointer;
}

.menu li a {
    position: relative;
    text-decoration: none;
    color: var(--neutral-90);
    font-size: 20px;
    font-weight: 400;
}

.menu li a.active {
    font-weight: 500;
    font-size: 20px;
    color: var(--primary-90);
}

.menu li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-90);
    transition: width 0.3s ease;
}

.menu li a::before {
    content: attr(data-text);
    font-weight: 500;
    font-size: 20px;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    display: block;
}

.hero {
    background-image: url("./images/hero-section.png");
    width: 100%;
    min-height: 800px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: 71%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-content .h1,
.hero-content .p {
    font-family: var(--font-barlow);
    line-height: 150%;
}

.hero-content .h1 {
    font-weight: 600;
    font-size: 50px;
    color: var(--secondary-100);
}

.hero-content .p {
    font-weight: 400;
    font-size: 24px;
    width: 74%;
    color: var(--secondary-100);
}

.hero-btn-block {
    display: flex;
    gap: 30px;
}

.hero-btn-block .btn {
    font-family: var(--font-barlow);
    opacity: 1;
    border-radius: 6px;
    padding: 14px 60px;
    border: none;
    box-shadow: 0 1px 6px 0 var(--box-shadow-012);
    font-weight: 500;
    font-size: 22px;
    line-height: 150%;
    cursor: pointer;
}

.hero-btn-block a {
    text-decoration: none;
}

.btn-donation {
    background: var(--primary-70);
    color: var(--white-255);
}

.btn-about {
    background: var(--white-255);
    color: var(--primary-100);
}

.welcome {
    padding: 6% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.welcome .h2,
.welcome .p,
.who-we-are .h2,
.who-we-are .p {
    font-family: var(--font-barlow);
    color: var(--black-13);
    line-height: 150%;
}

.welcome .h2 {
    font-weight: 500;
    font-size: 34px;
}

.welcome .p {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.who-we-are {
    padding-bottom: 6%;
}

.who-we-are .h2 {
    font-weight: 500;
    font-size: 34px;
    letter-spacing: 0%;
    text-align: center;
}

.who-we-are {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.image-block {
    width: 542px;
    height: 653px;
    opacity: 1;
    border-radius: 6px;
    box-shadow: 0 1px 11px 0 var(--box-shadow-02);
    background-image: url("./images/whoWeAre/parent-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.image-child {
    width: 371px;
    height: 416px;
    opacity: 1;
    border-radius: 6px;
    background-image: url("./images/whoWeAre/child-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 1px 11px 0 var(--box-shadow-02);
    position: absolute;
    bottom: -14px;
    right: -23px;
}

.who-we-are-main {
    gap: 70px;
}

.content-block {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-block .h6,
.content-block .h4,
.content-block .p,
.offer-list .li {
    font-family: var(--font-barlow);
    line-height: 150%;
}

.content-block .h6 {
    font-weight: 600;
    font-size: 24px;
    color: var(--primary-100);
}

.content-block .h4 {
    font-weight: 500;
    font-size: 34px;
    color: var(--black-13);
}

.content-block .p,
.offer-list .li {
    font-weight: 400;
    font-size: 22px;
    color: var(--black-13);
}

.offer-list {
    padding-left: 20px;
    list-style-position: inside;
}

.our-services {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    padding-bottom: 5%;
}

.service-title,
.our-works-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.our-services .h2,
.our-services .p,
.our-works-title p,
.our-works-title .h2 {
    font-family: var(--font-barlow);
    line-height: 150%;
    color: var(--black-13);
    text-align: center;
}

.our-services .h2,
.our-works-title .h2 {
    font-weight: 500;
    font-size: 34px;
}

.our-services .p,
.our-works-title .p {
    font-weight: 400;
    font-size: 22px;
}

.service-description {
    width: 75%;
}

.service-list {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.list-item {
    position: relative;
    width: 218px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-icon {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--white-255);
    box-shadow: 0 0 13px 0 var(--box-shadow-012);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.item-icon img {
    max-width: 60%;
    max-height: 60%;
}

.item-content {
    width: 100%;
    height: 210px;
    border: 1px solid var(--primary-90);
    border-radius: 6px;
    padding: 20px 8px 20px 8px;
    box-sizing: border-box;
    background: var(--white-255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
    font-family: var(--font-barlow);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--black-13);
}

.item-content p {
    margin-top: 27px;
    font-family: var(--font-barlow);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: var(--neutral-90);
}

.our-team {
    width: 100%;
    padding: 5% 0;
    background-color: var(--white-255);
    box-shadow: 0 0 16px 0 var(--box-shadow-008);
}

.team-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.our-team .h2 {
    font-family: var(--font-barlow);
    font-weight: 500;
    font-size: 34px;
    line-height: 150%;
    color: var(--black-13);
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.member {
    width: 280px;
    min-height: 418px;
    border-radius: 6px;
    overflow: hidden;
}

.member-image {
    height: 330px;
}

.member-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: top;
}

.member-info {
    min-height: 107px;
    background-color: var(--white-255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.member-name,
.member-profession,
.donation-title .h2 {
    font-family: var(--font-barlow);
}

.member-name {
    font-weight: 600;
    font-size: 22px;
    line-height: 150%;
    color: var(--primary-90);
}

.member-profession {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--black-13);
    text-align: center;
    padding: 0 20px;
}

.donation {
    padding: 8% 0;
}

.donation-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.donation-title .h2 {
    font-weight: 500;
    font-size: 34px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--black-13);
    text-align: center;
}

.donation-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 75%;
    align-items: center;
}

.row {
    display: flex;
    width: 100%;
}

.row-gap {
    gap: 30px;
}

.form input {
    padding: 20px 15px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--neutral-30);
    width: 100%;
    -webkit-appearance: none;
    box-sizing: border-box;
    color: var(--neutral-70);
    font-size: 16px;
    outline: none;
}

.form input::placeholder {
    font-family: var(--font-barlow);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: var(--neutral-70);
}

.form input:focus {
    border-width: 1px;
    border-style: solid;
    border-color: var(--neutral-40);
    outline: none;
}

.form input:focus::placeholder {
    color: var(--neutral-40);
}

.border-radius-all-side {
    border-radius: 6px;
}

.border-radius-left-bottom {
    border-radius: 6px 0 0 6px;
    border-right: none !important;
}

.border-radius-right-bottom {
    border-radius: 0 6px 6px 0;
    border-left: none !important;
}

.form .btn-donate-div {
    width: 40%;
    display: flex;
    justify-content: center
}

.form .btn-donate {
    border-radius: 6px;
    padding: 14px 60px;
    background-color: var(--primary-80);
    box-shadow: 0px 1px 6px 0px var(--box-shadow-012);
    border: none;
    width: 100%;
    font-family: var(--font-barlow);
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    color: var(--white-255);
    margin-top: 30px;
    cursor: pointer;
}

.input-wrapper {
    position: relative;
    min-height: 70px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 35%;
    transform: translateY(-50%);
    pointer-events: none;
}

.donation-input {
    padding: 20px 44px !important;
}

.card-input {
    padding: 20px 56px !important;
}

.required-field {
    font-family: var(--font-barlow);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--required-field);
    min-height: 18px;
}

.required-field:empty {
    visibility: hidden;
}

.footer {
    background-color: var(--footer-bg);
    padding: 2% 0;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-menu {
    width: 50%;
}

.footer-menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    list-style: none;
}

.footer-menu ul li a {
    text-decoration: none;
    font-family: var(--font-barlow);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: var(--neutral-90);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-info {
    display: flex;
    gap: 30px;
}

.divider {
    border-width: 0.5px;
    border-color: var(--neutral-90);
    border-style: solid;
    margin: 0 10px;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.footer-info p,
.footer-details p,
.footer-info a {
    font-family: var(--font-barlow);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: var(--neutral-90);
}

.footer-details {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-details .detail-img {
    width: 100px;
    height: 82px;
}

.footer-details .detail-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.footer-details .detail-text {
    width: 65%;
    text-align: center;
}

.line {
    width: 100%;
    border-width: 0.5px;
    border-color: var(--neutral-50);
    border-style: solid;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.footer-privacy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-privacy p,
.footer-privacy a {
    font-family: var(--font-barlow);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--neutral-90);
    text-align: center;
}

.footer-privacy a,
.footer-info a {
    text-decoration: none;
}

.open-menu-icon,
.close-menu-icon {
    cursor: pointer;
}

.open-menu-icon,
.mobile-menu-block,
.close-menu-icon {
    display: none;
}

.mobile-who-we-are-desc {
    display: none;
}

.view-more-btn {
    display: none;
}

.mm-cvv-wrapper {
    display: flex;
    width: 66%;
}

.mm-div,
.cvv-div {
    width: 50%;
}

.our-works-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.our-works {
    padding-top: 5%;
}

.our-works-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.works-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.works-main .section-first {
    display: flex;
    gap: 40px;
    align-items: center;
}

.first-image-div {
    width: 564px;
    height: 397px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 1;
}

.first-image-div img,
.second-image-block-image-1 img,
.second-image-block-image-2 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.first-content-block .h5,
.first-content-block .p,
.second-content-block .h5,
.second-content-block .p {
    font-family: var(--font-barlow);
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--black-13);
}

.first-content-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.first-content-block .h5,
.second-content-block .h5 {
    font-weight: 500;
    font-size: 28px;
}

.first-content-block .p,
.second-content-block .p {
    font-weight: 400;
    font-size: 22px;
}

.second-content-block .p {
    margin-top: 30px;
}

.first-content-info {
    display: flex;
    justify-content: space-between;
}

.email-block,
.phone-block {
    display: flex;
    gap: 20px;
}

.emails-list {
    display: flex;
    flex-direction: column;
}

.first-content-info svg {
    flex-shrink: 0;
}

.first-content-info a,
.first-content-info p {
    font-family: var(--font-barlow);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: var(--black-13);
    text-decoration: none;
}

.first-image-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.first-image-description {
    font-family: var(--font-barlow);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--primary-100);
}

.second-image-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.second-image-block-image-1 {
    width: 488px;
    height: 244px;
    opacity: 1;
    border-radius: 10px;
    overflow: hidden;
}

.second-image-block-image-2 {
    width: 488px;
    height: 342px;
    opacity: 1;
    border-radius: 10px;
    overflow: hidden;
}

.section-second {
    display: flex;
    justify-content: space-between;
    gap: 85px;
}

.second-content-block .span {
    font-family: var(--font-barlow);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--primary-90);
}

.span-mobile {
    display: none;
}


@media (hover: hover) and (min-width: 1000px) {
    .menu li a:hover {
        color: var(--primary-90);
        font-family: var(--font-robot);
        font-weight: 500;
        font-size: 20px;
        line-height: normal;
        transition: color 0.3s ease;
    }

    .btn-donation:hover,
    .btn-donate:hover {
        background: var(--primary-100);
    }

    .btn-about:hover {
        background: var(--neutral-10);
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .container {
        width: 90%;
    }

    .menu {
        display: none;
    }

    .logo {
        width: 67px;
        height: 67px;
    }

    .open-menu-icon,
    .mobile-menu-block,
    .close-menu-icon {
        display: block;
    }

    .mobile-menu-block {
        position: fixed;
        height: 100%;
        width: 100%;
        background-color: var(--white-255);
        z-index: 2000;
        overflow: hidden;
    }

    .mobile-menu {
        padding: 8% 6%;
    }

    .mobile-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 11px;
    }

    .mobile-menu ul li a {
        text-decoration: none;
        font-family: var(--font-barlow);
        font-weight: 400;
        font-size: 18px;
        line-height: 150%;
        color: var(--neutral-90);
    }

    .hero-content {
        width: 100%;
        gap: 16px;
    }

    .hero-content .h1,
    .welcome .h2,
    .who-we-are .h2,
    .our-services .h2,
    .our-team .h2,
    .donation-title .h2,
    .our-works-title .h2 {
        font-size: 22px;
        text-align: center;
    }

    .hero {
        min-height: 405px;
    }

    .hero-content .p,
    .our-services .p,
    .our-works-title .p {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }


    .hero-btn-block {
        flex-direction: column;
        align-items: center;
        gap: 13px;
    }

    .hero-btn-block .btn {
        font-size: 18px;
        padding: 11px 60px;
    }

    .welcome,
    .our-team,
    .donation {
        padding: 14% 0;
    }

    .welcome .p {
        font-size: 16px;
    }

    .mobile-who-we-are-desc {
        display: block;
        font-family: var(--font-barlow);
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        color: var(--primary-100);
        text-align: center;
    }

    .desktop-who-we-are-desc {
        display: none;
    }

    .who-we-are {
        gap: 30px;
    }

    .who-we-are-title {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .who-we-are-main {
        flex-direction: column;
        gap: 30px;
    }

    .image-block {
        width: 84%;
        height: 338px;
    }

    .image-child {
        width: 56%;
        height: 216px;
    }

    .parent-child-images {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .content-block .p, .offer-list .li {
        font-size: 16px;
        text-align: center;
    }

    .offer-list {
        list-style-position: inside;
    }

    .who-we-are,
    .our-services {
        padding-bottom: 14%;
    }

    .list-item {
        width: 47%;
    }

    .team-main,
    .team-members,
    .donation-main,
    .our-services {
        gap: 30px;
    }

    .service-list {
        justify-content: center;
        gap: 10px;
    }

    .member-name {
        font-size: 18px;
    }

    .hidden-on-mobile {
        display: none;
    }

    .view-more-btn {
        display: block;
        font-family: var(--font-barlow);
        font-weight: 500;
        font-size: 20px;
        line-height: 150%;
        color: var(--primary-100);
        background: transparent;
        border: none;
    }

    .member-profession,
    .item-content p {
        font-size: 16px;
    }

    .item-icon {
        width: 56px;
        height: 56px;
    }

    .item-icon img {
        max-width: 50%;
        max-height: 50%;
    }

    .item-content {
        height: 160px;
        min-height: 200px;
    }

    .item-content p {
        width: 100%;
        word-break: break-word;
    }

    .form {
        width: 100%;
    }

    .row {
        flex-direction: column;
    }

    .form input::placeholder {
        font-size: 16px;
    }

    .input-icon {
        width: 20px;
        height: 20px;
    }

    .input-wrapper {
        width: 100%;
    }

    .border-radius-left-bottom {
        border-radius: 6px;
        border-right-width: 0.5px !important;
        border-style: solid !important;
        border-color: var(--neutral-90);
    }

    .form input {
        padding: 15px 15px;
    }

    .card-input {
        padding: 15px 56px !important;
    }

    .donation-input {
        padding: 15px 44px !important;
    }

    .row-gap,
    .form {
        gap: 24px;
    }

    .form .btn-donate {
        font-size: 16px;
        padding: 12px 60px;
    }

    .form .btn-donate-div {
        width: 88%;
    }

    .desktop-card-part {
        display: flex;
        gap: 24px;
    }

    .mm-cvv-wrapper {
        display: flex;
        gap: 30px;
        width: 100%;
    }

    .mm-cvv-wrapper input {
        width: 100% !important;
    }

    .border-radius-right-bottom {
        border-radius: 6px;
        border-left-width: 0.5px !important;
        border-style: solid !important;
        border-color: var(--neutral-90);
    }

    .mm-cvv-input {
        border-radius: 6px;
    }

    .form .btn-donate {
        margin-top: 10px;
    }

    .footer {
        padding: 7% 0;
    }

    .footer-menu {
        width: 78%;
    }

    .footer-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 98%;
    }

    .footer-menu ul li a {
        font-size: 16px;
    }

    .footer-info {
        flex-direction: column;
        gap: 13px;
    }

    .footer-info p, .footer-details p, .footer-info a {
        font-size: 16px;
        text-align: center;
    }

    .footer-details {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-details .detail-img {
        width: 104px;
        height: 86px;
    }

    .footer-details .detail-text {
        width: 95%;
        text-align: center;
        font-size: 14px;
    }

    .footer-privacy p, .footer-privacy a {
        font-size: 14px;
    }

    .works-main {
        gap: 30px;
    }

    .our-works {
        padding-top: 14%;
    }

    .works-main .section-first,
    .first-content-info {
        flex-direction: column;
    }

    .works-main .section-second {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .first-content-info {
        gap: 20px;
        align-items: center;
    }

    .first-content-block {
        width: 100%;
    }

    .first-content-block .h5,
    .second-content-block .h5 {
        font-size: 20px;
        text-align: center;
    }

    .first-content-block .p,
    .second-content-block .p {
        text-align: center;
        font-size: 18px;
    }

    .second-content-block .p {
        margin-top: 20px;
    }

    .first-content-info svg {
        width: 22px;
        height: 22px;
    }

    .first-content-info a, .first-content-info p {
        font-size: 18px;
    }

    .email-block, .phone-block {
        gap: 12px;
    }

    .first-image-description {
        font-size: 18px;
        text-align: center;
    }

    .second-content-block .span {
        display: none;
    }

    .span-mobile {
        display: block;
        font-family: var(--font-barlow);
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
        text-align: center;
        color: var(--primary-100);
    }

    .our-works-section {
        gap: 30px;
    }

    .first-image-div {
        width: 100%;
        height: auto;
        aspect-ratio: 564 / 397;
    }

    .second-image-block-image-1,
    .second-image-block-image-2 {
        width: 100%;
        height: auto;
    }

    .second-image-block-image-1 {
        aspect-ratio: 488 / 244;
    }

    .second-image-block-image-2 {
        aspect-ratio: 488 / 342;
    }

    .first-image-div img,
    .second-image-block-image-1 img,
    .second-image-block-image-2 img {
        width: 100%;
        height: 100%;
    }
}


/* Medium Devices */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        width: 90%;
    }

    .menu {
        display: none;
    }

    .logo {
        width: 67px;
        height: 67px;
    }

    .open-menu-icon,
    .mobile-menu-block,
    .close-menu-icon {
        display: block;
    }

    .mobile-menu-block {
        position: fixed;
        height: 100%;
        width: 100%;
        background-color: var(--white-255);
        z-index: 2000;
        overflow: hidden;
    }

    .mobile-menu {
        padding: 8% 6%;
    }

    .mobile-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 11px;
    }

    .mobile-menu ul li a {
        text-decoration: none;
        font-family: var(--font-barlow);
        font-weight: 400;
        font-size: 18px;
        line-height: 150%;
        color: var(--neutral-90);
    }

    .hero-content {
        width: 100%;
        gap: 16px;
    }

    .hero-content .h1,
    .welcome .h2,
    .who-we-are .h2,
    .our-services .h2,
    .our-team .h2,
    .donation-title .h2,
    .our-works-title .h2 {
        font-size: 22px;
        text-align: center;
    }

    .hero {
        min-height: 405px;
    }

    .hero-content .p,
    .our-services .p {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .hero-btn-block {
        align-items: center;
        gap: 13px;
        justify-content: center;
        flex-direction: column;
    }

    .hero-btn-block .btn {
        font-size: 18px;
        padding: 11px 60px;
    }

    .welcome,
    .our-team,
    .donation {
        padding: 8% 0;
    }

    .welcome .p {
        font-size: 16px;
    }

    .mobile-who-we-are-desc {
        display: block;
        font-family: var(--font-barlow);
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        color: var(--primary-100);
        text-align: center;
    }

    .desktop-who-we-are-desc {
        display: none;
    }

    .who-we-are {
        gap: 30px;
    }

    .who-we-are-title {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .who-we-are-main {
        flex-direction: column;
        gap: 30px;
    }

    .image-block {
        width: 84%;
        height: 338px;
    }

    .image-child {
        width: 56%;
        height: 216px;
    }

    .parent-child-images {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .content-block .p, .offer-list .li {
        font-size: 16px;
        text-align: center;
    }

    .offer-list {
        list-style-position: inside;
    }

    .who-we-are,
    .our-services {
        padding-bottom: 8%;
    }

    .list-item {
        width: 37%;
    }

    .team-main,
    .team-members,
    .donation-main,
    .our-services {
        gap: 30px;
    }

    .service-list {
        justify-content: center;
        gap: 10px;
    }

    .member-name {
        font-size: 18px;
    }

    .hidden-on-mobile {
        display: none;
    }

    .view-more-btn {
        display: block;
        font-family: var(--font-barlow);
        font-weight: 500;
        font-size: 20px;
        line-height: 150%;
        color: var(--primary-100);
        background: transparent;
        border: none;
    }

    .member-profession,
    .item-content p {
        font-size: 16px;
    }

    .item-content {
        height: 160px;
        min-height: 200px;
    }

    .item-content p {
        width: 100%;
        word-break: break-word;
    }

    .form {
        width: 100%;
    }

    .row {
        flex-direction: column;
    }

    .form input::placeholder {
        font-size: 16px;
    }

    .input-icon {
        width: 20px;
        height: 20px;
    }

    .input-wrapper {
        width: 100%;
    }

    .border-radius-left-bottom {
        border-radius: 6px;
        border-right-width: 0.5px !important;
        border-style: solid !important;
        border-color: var(--neutral-90);
    }

    .form input {
        padding: 15px 15px;
    }

    .card-input {
        padding: 15px 56px !important;
    }

    .donation-input {
        padding: 15px 44px !important;
    }

    .row-gap,
    .form {
        gap: 24px;
    }

    .form .btn-donate {
        font-size: 16px;
        padding: 12px 60px;
    }

    .form .btn-donate-div {
        width: 44%;
    }

    .desktop-card-part {
        display: flex;
        gap: 24px;
    }

    .mm-cvv-wrapper {
        display: flex;
        gap: 30px;
        width: 100%;
    }

    .mm-cvv-wrapper input {
        width: 100% !important;
    }

    .border-radius-right-bottom {
        border-radius: 6px;
        border-left-width: 0.5px !important;
        border-style: solid !important;
        border-color: var(--neutral-90);
    }

    .mm-cvv-input {
        border-radius: 6px;
    }

    .form .btn-donate {
        margin-top: 10px;
    }

    .footer {
        padding: 7% 0;
    }

    .footer-menu {
        width: 78%;
    }

    .footer-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 98%;
    }

    .footer-menu ul li a {
        font-size: 16px;
    }

    .footer-info {
        flex-direction: column;
        gap: 13px;
    }

    .footer-info p, .footer-details p, .footer-info a {
        font-size: 16px;
        text-align: center;
    }

    .footer-details {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-details .detail-img {
        width: 104px;
        height: 86px;
    }

    .footer-details .detail-text {
        width: 95%;
        text-align: center;
        font-size: 14px;
    }

    .footer-privacy p, .footer-privacy a {
        font-size: 14px;
    }

    .works-main {
        gap: 30px;
    }

    .our-works {
        padding-top: 8%;
    }

    .works-main .section-first,
    .first-content-info {
        flex-direction: column;
    }

    .works-main .section-second {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .first-content-info {
        gap: 20px;
        align-items: center;
    }

    .first-content-block {
        width: 100%;
    }

    .first-content-block .h5,
    .second-content-block .h5 {
        font-size: 20px;
        text-align: center;
    }

    .first-content-block .p,
    .second-content-block .p {
        text-align: center;
        font-size: 18px;
    }

    .second-content-block .p {
        margin-top: 20px;
    }

    .first-content-info svg {
        width: 22px;
        height: 22px;
    }

    .first-content-info a, .first-content-info p {
        font-size: 18px;
    }

    .email-block, .phone-block {
        gap: 12px;
    }

    .first-image-description {
        font-size: 16px;
        text-align: center;
    }

    .second-content-block .span {
        display: none;
    }

    .span-mobile {
        display: block;
        font-family: var(--font-barlow);
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
        color: var(--primary-100);
    }

    .our-works-section {
        gap: 30px;
    }

    .first-image-div {
        width: 100%;
        height: auto;
        aspect-ratio: 564 / 397;
    }

    .second-image-block-image-1,
    .second-image-block-image-2 {
        width: 100%;
        height: auto;
    }

    .second-image-block-image-1 {
        aspect-ratio: 488 / 244;
    }

    .second-image-block-image-2 {
        aspect-ratio: 488 / 342;
    }

    .first-image-div img,
    .second-image-block-image-1 img,
    .second-image-block-image-2 img {
        width: 100%;
        height: 100%;
    }

    .our-works-title .p {
        width: 100%;
        font-size: 16px;
    }

    .first-content-block .p,
    .second-content-block .p,
    .first-content-info a,
    .first-content-info p {
        font-size: 16px;
    }

}

/* Medium Devices */
@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        width: 90%;
    }

    .menu {
        width: 70%;
    }

    .menu ul {
        width: 100%;
        gap: 10px;
        display: flex;
        justify-content: end;
    }

    .menu li a,
    .menu li a.active,
    .welcome .p,
    .our-services .p {
        font-size: 12px;
    }

    .hero-content {
        width: 70%;
    }

    .hero-content .h1 {
        font-size: 34px;
    }

    .hero-content .p {
        font-size: 20px;
    }

    .welcome .h2,
    .who-we-are .h2,
    .our-services .h2,
    .our-team .h2,
    .donation-title .h2,
    .our-works-title .h2 {
        font-size: 24px;
    }

    .mobile-who-we-are-desc {
        display: block;
        font-family: var(--font-barlow);
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        color: var(--primary-100);
        text-align: center;
    }

    .desktop-who-we-are-desc {
        display: none;
    }

    .who-we-are {
        gap: 30px;
    }

    .who-we-are-title {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .who-we-are-main {
        flex-direction: column;
        gap: 30px;
    }

    .image-block {
        width: 84%;
        height: 338px;
    }

    .image-child {
        width: 56%;
        height: 216px;
    }

    .parent-child-images {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .content-block .p, .offer-list .li {
        font-size: 16px;
        text-align: center;
    }

    .offer-list {
        list-style-position: inside;
    }

    .who-we-are,
    .our-services {
        padding-bottom: 8%;
    }

    .service-list {
        justify-content: center;
    }

    .hero {
        min-height: 600px;
    }

    .hero-btn-block .btn {
        font-size: 18px;
    }

    .form input::placeholder {
        font-size: 16px;
    }

    .footer {
        padding: 2% 0;
    }

    .footer-menu {
        width: 78%;
    }

    .footer-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 98%;
    }

    .footer-menu ul li a {
        font-size: 16px;
    }

    .footer-info {
        flex-direction: column;
        gap: 13px;
    }

    .footer-info p, .footer-details p, .footer-info a {
        font-size: 16px;
        text-align: center;
    }

    .footer-details {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-details .detail-img {
        width: 104px;
        height: 86px;
    }

    .footer-details .detail-text {
        width: 95%;
        text-align: center;
        font-size: 14px;
    }

    .footer-privacy p, .footer-privacy a {
        font-size: 14px;
    }

    .works-main {
        gap: 30px;
    }

    .our-works {
        padding-top: 5%;
    }

    .works-main .section-first,
    .first-content-info {
        flex-direction: column;
    }

    .works-main .section-second {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .first-content-info {
        gap: 20px;
        align-items: center;
    }

    .first-content-block {
        width: 100%;
    }

    .first-content-block .h5,
    .second-content-block .h5 {
        font-size: 20px;
        text-align: center;
    }

    .first-content-block .p,
    .second-content-block .p {
        text-align: center;
        font-size: 16px;
    }

    .second-content-block .p {
        margin-top: 20px;
    }

    .first-content-info svg {
        width: 22px;
        height: 22px;
    }

    .first-content-info a, .first-content-info p {
        font-size: 16px;
    }

    .email-block, .phone-block {
        gap: 12px;
    }

    .first-image-description {
        font-size: 18px;
        text-align: center;
    }

    .second-content-block .span {
        display: none;
    }

    .span-mobile {
        display: block;
        font-family: var(--font-barlow);
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
        color: var(--primary-100);
    }

    .our-works-section {
        gap: 30px;
    }

    .first-image-div {
        width: 100%;
        height: auto;
        aspect-ratio: 564 / 397;
    }

    .second-image-block-image-1,
    .second-image-block-image-2 {
        width: 100%;
        height: auto;
    }

    .second-image-block-image-1 {
        aspect-ratio: 488 / 244;
    }

    .second-image-block-image-2 {
        aspect-ratio: 488 / 342;
    }

    .first-image-div img,
    .second-image-block-image-1 img,
    .second-image-block-image-2 img {
        width: 100%;
        height: 100%;
    }

    .logo {
        width: 55px;
        height: 55px;
    }

    .our-works-title .p {
        font-size: 18px;
        width: 100%;
    }

}

/* Extra Large Devices */
@media (min-width: 1200px) {
    .container {
        width: 90%;
    }

    .first-image-div {
        width: 487px;
        height: 338px;
    }

    .first-content-info {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }
}
