* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", Arial;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f0f0f0;
    color: black;
}

h2 {
    font-family: "Nunito", Arial;
    font-weight: 800;
}

header .navbar {
    width: 100%;
    height: 80px;
    padding: 10px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(30px);
}

header .navbar.scrolled {
    background-color: rgb(15, 30, 60);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 12px;
}

header .navbar.scrolled .right ul li a {
    color: #f0f0f0;
}

header .navbar.scrolled .right ul li a:hover {
    color: #ff0000;
}

header .navbar .left img {
    width: 60px;
}

header .navbar .right {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

header .navbar .right ul {
    display: flex;
    list-style-type: none;
    gap: 10px;
}

header .navbar .right ul li {
    padding: 0px 10px;
}

header .navbar .right ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    transition: 0.5s ease;
}

header .navbar .right ul li a:hover {
    color: #ff0000;
}

.burger {
    display: none;
}

@media (max-width: 900px) {
    header .navbar .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    margin-right: 10px;
    }

    header .navbar .burger span {
    display: block;
    width: 35px;
    height: 3px;
    background-color: rgb(15, 30, 60);
    transition: all 0.3s ease;
    border-radius: 10px;
    }

    header .navbar.scrolled .burger span {
        background-color: #f0f0f0;
    }

    header .navbar {
        padding: 10px;
    }

    header .navbar .right ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    list-style-type: none;
    }

    header .navbar .right ul.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgb(15, 30, 60);
    backdrop-filter: blur(30px);
    list-style-type: none;
    z-index: 99;
    }
    
    header .navbar .right ul li a {
    display: block;
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 17px 20px;
    }

    .burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.open span:nth-child(2) {
    opacity: 0;
    }

    .burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    }
}

.hero {
    margin-top: 80px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
}

.hero .hero-img {
    flex: 1;
    background-image: url('https://www.brightermonday.co.ke/discover/wp-content/uploads/2022/10/imgl1048-1024x683.jpg');
    background-size: cover;
    background-position: center;
}

.hero .hero-text {
    flex: 1;
    padding: 15vh 20px;

}

.hero .hero-text h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.hero .hero-text h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: "Nunito", Arial;
}

.hero .hero-text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 50px;
    text-align: left;
}

.hero .hero-text .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #7a2323;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.5s ease;
}

.hero .hero-text .btn:hover {
    background-color: rgb(15, 30, 60);
}

.hero .hero-text .btn span {
    margin-left: 10px;
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.hero .hero-text .btn:hover span {
    transform: translateX(5px);
}

@media (max-width: 960px) {
    .hero .hero-text {
        padding: 2vh 20px;
    }
}

@media (max-width: 810px) {
    .hero {
        display: flex;
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .hero .hero-img {
        flex: none;
        width: 100%;
        height: 45vh;
        object-fit: cover;
    }

    .hero .hero-text {
        flex: none;
        width: 100%;
        padding: 2rem 1.5rem;
        text-align: left;
    }

    .hero .hero-text h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero .hero-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

#about-us {
    padding: 50px 100px;
}

#about-us .about-us {
    display: flex;
    border-top: 8px solid #7a2323;
    border-radius: 20px;
    gap: 30px;
}

#about-us .about-us .about-text {
    flex: 3;
    padding: 10px;
}

#about-us .about-us .about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #7a2323;
}

#about-us .about-us .about-text p {
    font-size: 17px;
    line-height: 1.6;
}

#about-us .about-us .about-img {
    flex: 2;
    display: flex;
    align-items: center;
    padding: 10px;
}

#about-us .about-us .about-img img {
    width: 100%;
    border-radius: 5px;
}

@media (max-width: 900px) {
    #about-us {
        padding: 50px 30px;
    }
}

@media (max-width: 810px) {
    #about-us .about-us {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    #about-us {
        padding: 30px 10px;
    }
}

#difference {
    padding: 0 100px 50px 100px;
}

#difference h2 {
    text-align: center;
    font-size: 36px;
    color: #7a2323;
}

#difference .difference {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
    align-items: stretch;
    padding: 30px 0;
}

#difference .difference .diff {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-top: 8px solid #7a2323;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
}

#difference .difference .diff img {
    margin-bottom: 10px;
}

#difference .difference .diff h3 {
    margin-bottom: 15px;
    font-size: 25px;
    font-family: "Nunito", Arial;
    font-weight: 700;
}

#difference .difference .diff p {
    font-size: 15px;
    line-height: 1.3;
    color: #2f2f2f;
    flex-grow: 1;
}

@media (max-width: 900px) {
    #difference {
        padding: 0 30px 50px;
    }

    #difference .difference {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    #difference .difference {
        gap: 20px;
    }
}

@media (max-width: 450px) {
    #difference {
        padding: 50px 10px;
    }

    #difference h2 {
        font-size: 30px;
    }
}

@media (max-width: 450px) {
    #difference {
        padding: 50px 35px;
    }

    #difference .difference {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #difference .difference .diff p {
        font-size: 15px;
        line-height: 1.4;

    }
}

.pledge {
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding: 75px 100px;
    align-items: stretch;
    background-color: rgba(222, 194, 182, 0.2);
    margin-bottom: 50px;
}

.pledge .vision,
.pledge .mission {
    flex: 1;
}

.pledge .vision h2,
.pledge .mission h2 {
    color: #7a2323;
    margin-bottom: 10px;
    font-size: 30px;
}

.pledge .vision h3,
.pledge .mission h3 {
    color: rgb(15, 30, 60);
    margin-bottom: 10px;
    font-family: "Nunito", Arial;
    font-weight: 900;
}

.pledge .vision p,
.pledge .mission p {
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .pledge {
        padding: 75px 50px;
    }
}

@media (max-width: 640px) {
    .pledge {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .pledge {
        padding: 75px 30px;
    }
}

.whatsapp-sticker {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-sticker span {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-sticker span:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

.whatsapp-sticker img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.whatsapp-sticker a {
    text-decoration: none;
    color: white;
    font-weight: 700;
}

@media (max-width: 400px) {
    .whatsapp-sticker img {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
}

#projects {
    padding: 0 100px 50px;
}

#projects h2 {
    text-align: center;
    font-size: 36px;
    color: #7a2323;
    margin-bottom: 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background-color: #fff;
    border: 2px solid #e4ded4;
}

.project-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 12px 16px;
    position: relative;
    transition: filter 0.3s ease-in-out;
}

.project-image span {
    position: relative;
    color: #ffe3bc;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.project-body {
    padding: 20px 22px 24px;
}

.project-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 6px;
    color: rgb(15, 30, 60);
}

.gold-rule {
    width: 32px;
    height: 2px;
    background: #b08d57;
    border: none;
    margin: 0 0 12px;
    transition: width 0.3s ease-in-out;
}

.project-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b5f5a;
}

.project-body .project-focus {
    font-size: 13px;
    color: #9a8f89;
    margin-top: 8px;
}

.project-card:hover .gold-rule {
    width: 55px;
}

.project-card:hover .project-image {
    filter: brightness(85%);
}

@media (max-width: 900px) {
    #projects {
        padding: 0 75px 50px;
    }

    .projects-grid {
    grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    #projects {
        padding: 0 50px 50px;
    }
}

@media (max-width: 680px) {
    #projects {
        padding: 0 30px 50px;
    }
}

@media (max-width: 510px) {
    #projects {
        padding: 0 20px 50px;
    }
}

@media (max-width: 450px) {
    #projects {
        padding: 0 30px 50px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

#our-team {
    padding: 50px 50px 100px;
    text-align: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1035 35%, #2d1b4e 60%, #120a1f 100%);
}

#our-team h2 {
    font-size: 36px;
    color: #ff0000;
    margin-bottom: 20px;
}

#our-team p {
    line-height: 1.6;
    color: #f0f0f0;
}

.team {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 20px;
    gap: 20px;
}

.member {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
}

.member .profile-photo {
    font-size: 30px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #7a2323;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
}

.member-description h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #f0f0f0;
    font-size: 20px;
}

.member-description h4 {
    color: #25D366;
    font-size: 15px;
    margin-bottom: 10px;
}

.member-description hr {
    width: 32px;
    height: 2px;
    background: #b08d57;
    border: none;
    margin: 0 auto 10px;
}

.member-description p {
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .team {
        grid-template-columns: 1fr 1fr;
    }   
}

@media (max-width: 620px) {
    #our-team {
        padding: 50px 30px 100px;
    }
}

@media (max-width: 500px) {
    #our-team {
        padding: 50px 10px 100px;
    }

    .team {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    #our-team {
        padding: 50px 30px 100px;
    }

    .team {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .team {
        gap: 20px;
    }
}

.our-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 50px 100px 0;
    max-width: 1200px;
    margin: -105px auto 50px;
    position: relative;
    z-index: 10;
}

.our-numbers .number {
    background-color: #f0f0f0;
    border-left: 8px solid #ff0000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border-top-left-radius: 0;
    padding: 30px 20px;
    text-align: center;
}

.number h2 {
    font-size: 50px;
    font-weight: 900;
    color: #7a2323;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.number p {
    font-size: 16px;
    color: rgb(15, 30, 60);
    font-weight: 700;
}

@media (max-width: 980px) {
    .our-numbers {
        padding: 50px 50px 0;
    }
}

@media (max-width: 880px) {
    .our-numbers {
        padding: 50px 30px 0;
    }
}

@media (max-width: 840px) {
    .our-numbers {
        padding: 50px 20px 0;
    }
}

@media (max-width: 820px) {
    .our-numbers {
        padding: 50px 10px 0;
    }
}

@media (max-width: 800px) {
    .our-numbers {
        padding: 50px 0 0;
    }
}

@media (max-width: 780px) {
    .our-numbers {
        gap: 10px;
    }
}

@media (max-width: 720px) {
    .our-numbers {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 50px 50px 0;
    }
}

@media (max-width: 470px) {
    .our-numbers {
        padding: 50px 20px 0;
    }
}

@media (max-width: 410px) {
    .our-numbers h2 {
        font-size: 30px;
    }

    .our-numbers p {
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .our-numbers {
        gap: 10px;
        padding: 50px 10px 0;
    }
}

#courses {
    padding: 0 100px 50px;
}

#courses h2 {
    font-size: 36px;
    color: #7a2323;
    text-align: center;
    margin-bottom: 20px;
}

.course {
    display: flex;
    gap: 50px;
    border: 1px solid #7a2323;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.topic {
    flex: 3;
}

.offering {
    flex: 2;
}

.course h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: rgb(15, 30, 60);
}

.course h4 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #ff0000;
}

.course p {
    font-size: 18px;
    line-height: 1.5;
}

.topics-timeline {
    list-style: none;
    padding: 0;
}

.topics-timeline li {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: #ff0000;
    color: #f0f0f0;
    font-weight: 900;
}

.num::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2rem;
    background: #ff0000;
}

.topics-timeline li:last-child .num::after {
    display: none;
}

@media (max-width: 900px) {
    #courses {
        padding: 0 50px 50px;
    }

    .course {
    gap: 30px;
    }
}

@media (max-width: 700px) {
    #courses {
        padding: 0 75px 50px;
    }

    .course {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    #courses {
        padding: 0 50px 50px;
    }
}

@media (max-width: 450px) {
    #courses {
        padding: 0px 20px 50px;
    }
}

.apply-btn {
    padding: 10px 20px;
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 900;
    background-color: rgb(15, 30, 60);
    border: 2px solid rgb(15, 30, 60);
    border-radius: 5px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.apply-btn:hover {
    background-color: transparent;
    color: rgb(15, 30, 60);
}

header .navbar.scrolled .apply-btn {
    color: #f0f0f0;
    background-color: transparent;
    border: 2px solid #f0f0f0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header .navbar.scrolled .apply-btn:hover {
    background-color: #f0f0f0;
    color: #000;
}

header .navbar .right ul li .apply-mobile {
    display: none;
}

@media (max-width: 900px) {
    .apply-btn {
        display: none;
    }

    header .navbar .right ul li .apply-mobile {
        display: block;
        color: #b08d57 !important;
        font-weight: 900;
    }
}

#community {
    padding: 0 100px 50px;
}

#community h2 {
    color: #7a2323;
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.community-card {
    border: 1px solid #7a2323;
    border-radius: 10px;
    background-color: rgb(15, 30, 60);
}

.community-card img {
    width: 100%;
    margin-bottom: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.community-card .community-text {
    padding: 10px 10px 20px;
}

.community-text h3 {
    font-weight: 800;
    color: #fff;
    font-size: 20px;
}

.community-text p {
    margin-bottom: 10px;
    color: #f0f0f0;
    font-size: 15px;
}

.community-text span {
    font-size: 13px;
    color: #25D366;
    font-family: "Space Mono", monospace;
}

.community-text span::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #25D366;
    outline: none;
    border: none;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
}

#community .testimonial {
    width: 100%;
    background-color: rgb(15, 30, 60);
    padding: 30px 10px;
    border-radius: 10px;
    border-left: 8px solid #25D366;
    margin-top: 20px;
}

.testimonial p {
    font-style: italic;
    font-size: 15px;
    color: #f0f0f0;
}

.testimonial span {
    color: #25D366;
    font-size: 13px;
    font-style: italic;
}

@media (max-width: 900px) {
    #community {
        padding: 0 50px 50px;
    }
}

@media (max-width: 800px) {
    #community {
        padding: 0 20px 50px;
    }
}

@media (max-width: 700px) {
    .community-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 450px) {
    .community-grid {
        grid-template-columns: 1fr;
    }

    #community h2 {
        font-size: 28px;
    }
}

#community .events {
    margin-top: 50px;
}

.events h3 {
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 20px;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.events-grid .event {
    background-color: #f8f8f8;
    position: relative;
    border-radius: 10px;
    overflow: visible;
    border: 1px solid #25D366;

}

.event img {
    width: 100%;
}

.event .event-img-wrapper {
    position: relative;
}

.event .event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff0000;
    text-align: center;
    color: #f0f0f0;
    border: 8px solid #fff;
    border-radius: 50%;
    padding: 20px;
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: -30px;
    right: 20px;
    left: unset;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);   
}

.event-info {
    margin-top: 30px;
    padding: 20px;
}

.event-info h4 {
    font-size: 25px;
    margin-bottom: 10px;
}

.event-info .date {
    font-weight: 800;
    font-size: 18px;
    margin: 10px 0;
}

.event-info p {
    font-weight: 500;
}

.event-info span {
    font-weight: 800;
    color: #f0f0f0;
    padding: 8px 25px;
    outline: none;
    border: none;
    background-color: #ff0000;
    display: block;
    margin-top: 20px;
    width: fit-content;
    border-radius: 20px;
    cursor: pointer;
}

@media (max-width: 550px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: rgb(15, 30, 60);
    padding: 50px 100px 20px;
    margin-top: 50px;
}

footer h2 {
    color: #f0f0f0;
    margin-bottom: 20px;
    text-align: left;
}

footer #navLinks {
    list-style-type: none;
}

footer li {
    margin-bottom: 10px;
}

footer li a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.5s ease;
}

footer li a:hover {
    color: #ff0000;
}

.footer-wrapper {
    display: flex;
    gap: 30px;
}

.left-foot {
    width: 30%;
}

.left-foot img {
    width: 100px;
}

.left-foot hr {
    border: 1px solid #f0f0f0;
    width: 90%;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links svg {
    margin-right: 10px;
    cursor: pointer;
}

.social-links svg path {
    fill: #f0f0f0;
    transition: fill 0.5s ease;
}

.social-links svg path:hover {
    fill: #ff0000;
}

.center-foot {
    width: 30%;
}

.center-foot h3 {
    color: #f0f0f0;
    padding: 20px;
    font-size: 25px;
}

.center-foot span {
    display: block;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.center-foot svg {
    vertical-align: middle;
    width: 20px;
    margin-right: 10px;
}

.right-foot {
    width: 30%;
    display: flex;
    align-items: center;
}

.right-foot img {
    width: 100%;
}

.last-foot {
    color: #d4d4d4;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 900px) {
    footer {
    padding: 50px 50px 20px;
    }
}

@media (max-width: 800px) {
    footer {
        padding: 50px 10px 20px;
    }
}

@media (max-width: 660px) {
    .footer-wrapper {
        flex-wrap: wrap;
    }

    .right-foot {
        width: 45%;
    }

    .left-foot {
        width: 45%;
    }

    .center-foot {
        width: 45%;
    }
}

@media (max-width: 460px) {
    footer {
        padding: 20px 30px 20px;
    }

    .footer-wrapper {
        gap: 10px;
    }

    .left-foot {
        width: 100%;
        text-align: left;
        padding: 20px 20px 0;
    }

    .left-foot hr {
        margin-left: 0;
    }

    .social-links {
        justify-content: flex-start;
    }

    .center-foot {
        width: 100%;
        padding: 10px 10px;
    }

    .right-foot {
        width: 100%;
    }
}