@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --color-primary: #0E71F0;
    --color-bg-1: #EAEFF5;
    --color-bg-2: #F3EEEE;

    --box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.15);

    --font-primary: 'Lato', sans-serif;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    font-family: var(--font-primary);
    color: inherit;
}

textarea{
    font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6, p{
    font-family: var(--font-primary);
}

.red{
    color: red;
}

.success{
    color: green !important;
    font-weight: 700;
    text-align: center;
}

.delete-message{
    color: red !important;
    font-weight: 700;
    text-align: center;
}

.exp-link{
    color: var(--color-primary);
    text-decoration: underline;
    margin: 0 0.3rem;
}

.blue-title{
    color: var(--color-primary);
    font-size: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.secondary-title{
    color: var(--color-primary);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

p.success-email{
    text-align: center;
    color: green;
    font-family: var(--font-primary-bold);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

p.fail-email{
    text-align: center;
    color: red;
    font-family: var(--font-primary-bold);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

h1.section-title{
    color: var(--color-primary);
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    margin-bottom: 4rem;
}

h2.section-title{
    color: var(--color-primary);
    font-weight: 700;
    /*font-size: 40px;*/
    text-align: center;
    margin-bottom: 4rem;
}

.hidden{
    display: none;
}

.no-break{
    white-space: nowrap;
}

.unbold{
    font-weight: 400;
}

.modal.open{
    display: flex;
}

.modal{
    display: none;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.45);
    justify-content: center;
    align-items: center;
}

.modal-content{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 2rem 4rem;
    border-radius: 5px;
    position: relative;
    min-width: 800px;
}

.modal-content .exit{
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-primary);
    cursor: pointer;
}

.modal-content h1{
    text-align: center;
    color: var(--color-primary);
    font-size: 44px;
    margin-bottom: 1rem;
}

nav#header-nav{
    background-color: white;
    position: relative;
}

nav#header-nav .content{
    width: 90%;
    margin: 0 auto;
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
    gap: 2.3rem;
    color: var(--color-primary);
    font-weight: 400;
    /* position: relative; */
}

nav#header-nav .content ul{
    display: flex;
    gap: 2.3rem;
}

nav#header-nav .content ul a{
    font-size: 18px;
    white-space: nowrap;
}

nav#header-nav .content .logo{
    height: 100%;
    width: 180px;
}

nav#header-nav .content .logo img{
    height: 100%;
    width: 180px;
    object-fit: contain;
}

nav#header-nav .content .hamburger-menu {
    width: 30px;
    height: 20px;
    position: relative;
    display: none;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

nav#header-nav .content .hamburger-menu .line {
    width: 30px;
    height: 4px;
    background-color: var(--color-primary);
}

nav#header-nav .content ul.mobile-view{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 100;
    background-color: white;
    text-align: center;
    min-width: 300px;
    gap: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

nav#header-nav .content ul.mobile-view li{
    /* padding: 0.5rem 0; */
    transition: 0.3s;
    height: 100%;
}

nav#header-nav .content ul.mobile-view li a{
    padding: 0.5rem 0;
    height: 100%;
    width: 100%;
    display: inline-block;
}

nav#header-nav .content ul.mobile-view li:hover{
    background-color: rgba(200, 200, 200, 0.3);
    transition: 0.3s;
}

button.btn{
    color: white;
    background-color: var(--color-primary);
    border: none;
    outline: none;
    padding: 10px 22px;
    font-weight: 400;
    border-radius: 2px;
    font-size: 18px;
    white-space: nowrap;
    cursor: pointer;
}

button.btn.outline{
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

header.header-general{
    height: 60vh;
    position: relative;
}

header.header-general::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    filter: brightness(0.8);
    z-index: 1;
}

header.header-general h1.header-title{
    position: absolute;
    left: 10%;
    top: 50%;
    color: white;
    font-weight: 700;
    font-size: 60px;
    transform: translateY(-50%);
    z-index: 10;
}

header#main-header{
    overflow: hidden;
}

header#main-header img.show-top{
    object-position: top;
}

header#main-header .slick-list{
    height: 100%;
}

header#main-header .slick-track{
    height: 100%;
}

header#main-header .slick-dots{
    bottom: 25px;
}

header#main-header .slick-dots li button:before{
    font-size: 13px;
    opacity: 1;
    color: white;
}

header#main-header .slick-dots li.slick-active button:before{
    color: var(--color-primary);
}

header#main-header{
    position: relative;
    height: 80vh;
}

header#main-header .info{
    position: absolute;
    color: white;
    width: 420px;
    left: 10%;
    top: 10%;
    z-index: 10;
}

header#main-header .info h1{
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 3rem;
    line-height: 70px;
}

header#main-header .info button{
    font-size: 2rem;
}

header#main-header .background-images{
    height: 100%;
    /* filter: brightness(0.6); */
    /* overflow: hidden; */
}

header#main-header img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* filter: brightness(0.5); */
}

main{
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 4rem 0;
}

.reunions-container{
    margin-top: 3rem;
    margin-bottom: 6rem;
}

.reunions-container .reunions{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.reunions-container .reunions .reunion{
    flex: 45%;
    flex-basis: 435px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 4rem;
    background-color: var(--color-bg-1);
    border-radius: 10px;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.15);
    max-width: 580px;
}

.reunions-container .reunions .reunion.upcoming{
    background-color: var(--color-bg-2);
}

.reunions-container .reunions .reunion .reunion-logo{
    align-self: center;
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}

.reunions-container .reunions .reunion .reunion-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reunions-container .reunions .reunion .reunion-name{
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 0.8rem;
}

.reunions-container .reunions .reunion .reunion-year{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 1.4rem;
}

.reunions-container .reunions .reunion .reunion-date{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.7rem;
}

.reunions-container .reunions .reunion .reunion-date img{
    width: 30px;
}

.reunions-container .reunions .reunion .reunion-date p{
    color: #626262;
    line-height: 28px;
    font-size: 20px;
}

.why-us-container{
    margin-bottom: 5rem;
}

.why-us{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.why-us .item{
    flex: 33%;
    flex-basis: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    /* gap: 2rem; */
    /* border: 2px solid red; */
}

.why-us .item img{
    width: 100px;
    margin-bottom: 2rem;
    height: 100px;
    object-fit: contain;
}

.why-us .item p{
    font-weight: 700;
    font-size: 28px;
    text-align: center;
}

.testimonials-container{
    margin-bottom: 4rem;
}

.testimonials-container .slick-dots li.slick-active button:before{
    color: var(--color-primary)
}

.testimonials-container .slick-dots li button:before{
    font-size: 9px;
    margin-top: 0.5rem;
}

.testimonial{
    display: flex;
    height: 400px;
    overflow: hidden;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.slick-initialized .slick-slide{
    display: flex;
}

.testimonial .left{
    flex: 50%;
}

.testimonial .left img{
    width: 110%;
    height: 110%;
    object-fit: cover;
}

.testimonial .right{
    flex: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--color-bg-2);
    padding: 2rem 3rem;
    line-height: 28px;
    color: #626262;
    gap: 1rem;
}

.testimonial .right h3{
    align-self: flex-end;
    position: relative;
    color: #262626;
}

.testimonial .right h3::before{
    content: "";
    position: absolute;
    bottom: 40%;
    left: -25px;
    height: 2px;
    width: 20px;
    background-color: #262626;
}

.have-questions{
    background-color: var(--color-bg-1);
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
}

.have-questions.alt-color{
    background-color: var(--color-bg-2);
}

.have-questions .left{
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.have-questions .left h2{
    font-weight: 600;
    color: #262626;
    font-size: 44px;
    margin-bottom: 1rem;
}

.have-questions .left p{
    color: #626262;
    font-size: 16px;
    line-height: 18px;
    /* width: 350px; */
}

.have-questions .right{
    flex: 50%;
    padding: 2rem;
}

.have-questions .right form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.have-questions .right form .inputs{
    display: flex;
    gap: 1rem;
}

.have-questions .right form .inputs input{
    flex: 50%;
}

.have-questions .right form input{
    border-radius: 2px;
    border: 1px solid #626262;
    height: 40px;
    padding: 0.4rem;
    background: transparent;
}

.have-questions .right form textarea{
    border: 1px solid #626262;
    border-radius: 2px;
    background: transparent;
    padding: 0.5rem;
    min-height: 150px;
}

footer{
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    margin-top: 5rem;
    padding: 5rem 0;
    overflow: hidden;

}

footer img.footer-background{
    width: 100%;
    min-height: 300px;
    position: absolute;
    filter: brightness(0.5);
    z-index: -10;
    height: 100%;
    object-fit: cover;
}

.footer-content{
    display: flex;
    width: 80%;
    margin: 0 auto;
    height: 100%;
    justify-content: space-between;
}

.footer-content .section{
    display: flex;
    flex-direction: column;
}

.footer-content .section.logos .footer-logo{
    height: 80px;
}

.footer-content .section.logos .social-media{
    display: flex;
    justify-content: space-around;

}

.footer-content .section.logos .social-media a{
    width: 40px;
    height: 60px;
    display: inline-block;
}

.footer-content .section.logos .social-media img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-content .section h2.footer-title{
    height: 60px;
    font-size: 24px;
    font-weight: 700;
}

.narm-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    text-align: center;
    margin: 0 0 5px;
    padding: 5px 3px;
    height: 170px;
    width: 152px;
    border: solid 1px rgb(255, 255, 255);
}

.narm-logo-title{
    background-color: rgb(201, 201, 201);
    text-wrap: nowrap;
    font-size: 18px;
    padding: 2px 8px;
    font-weight: 700;
    color: #262626;
}

.narm-logo > span{
    font-size: 16px;
    color: #262626;
}

.narm-logo > a {
    font-size: 14px;
    color: #314adc;
}

.footer-content .section ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-content .section ul a{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-content .section ul a img{
    width: 30px;
}

/* .sort-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
} */

.sort-list-container{
    display: flex;
    flex-direction: column;
}

.sort-list h2{
    color: #262626;
    font-size: 32px;
    margin-bottom: 0.1rem;
    margin-top: 0.8rem;
}

.sort-list a{
    color: var(--color-primary);
    text-decoration: underline;
    font-size: 20px;
    display: block;
    text-transform: capitalize;
    line-height: 24px;
}

.search-reunions-container{
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #626262;
    align-self: flex-end;
    padding-bottom: 10px;
}

.search-reunions-container img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.search-reunions-container input.search-reunions{
    border: none;
    background: transparent;
    outline: none;
    font-size: 20px;
    color: #626262;
    font-weight: 400;
}

.sort-list {
    display: flex;
    justify-content: space-between;
}

.column {
    flex: 1;
    margin: 0 0.5rem;
}


.navigation-items{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.navigation-items a{
    margin-bottom: 0.5rem;
}

.navigation-items .active{
    color: var(--color-primary);
}

.navigation-items .navigation-title{
    margin-bottom: 2rem;
}

.navigation-items .logout-btn{
    margin-top: 2rem;
}

.navigation-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333; 
    text-decoration: none; 
    cursor: default; 
    text-wrap: nowrap;
}

.navigation-items a {
    display: block;
    margin-bottom: 10px;
    font-size: 1em;
    text-decoration: none;
    color: #007bff; 
}

.navigation-items a.active {
    font-weight: bold;
    color: #0056b3;
}

.navigation-items a.logout-btn {
    color: #dc3545; 
}

.g-recaptcha {
    margin-bottom: 1rem;
}


@media screen and (max-width: 1250px){
    nav#header-nav .content .logo img{
        width: 100%;
    }

    nav#header-nav .content .logo{
        /* flex-basis: 160px; */
    }

    nav#header-nav .content{
        justify-content: space-between;
    }

    nav#header-nav .content .hamburger-menu{
        display: flex;
        flex-basis: 165px;
        align-items: center;
    }

    nav#header-nav .content .account-buttons{
        /* flex-basis: 165px; */
    }

    nav#header-nav .content ul.left-side,
    nav#header-nav .content ul.right-side{
        display: none;
    }
}


@media screen and (max-width: 1000px){
    .have-questions .right{
        padding-top: 0;
    }

    footer{
        padding: 5rem 0;
    }

    footer img.footer-background{
        object-fit: cover;
        height: 100%;
    }

    footer .footer-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-content .section.logos .footer-logo{
        height: 120px;
    }

    .footer-content .section ul a{
        justify-content: center;
        font-size: 20px;
        white-space: nowrap;
    }

    .footer-content .section h2.footer-title{
        font-size: 34px;
        height: 80px;
    }
}

@media screen and (max-width: 850px){
    .testimonial{
        flex-direction: column;
        height: auto;
        height: 700px;
    }

    .testimonial .left{
        flex: 40%;
        overflow: hidden;
    }

    .testimonial .right{
        flex: 60%
    }

    .testimonial .left img{
        object-position: center;
    }
}

@media screen and (max-width: 600px){
    main{
        width: 90%;
    }

    nav#header-nav .content ul.mobile-view{
        width: 100%;
    }

    nav#header-nav .content .account-buttons{
        display: none;
    }

    header#main-header{
        height: 65vh;
    }

    header#main-header .info{
        width: 300px;
    }

    header#main-header .info h1{
        font-size: 34px;
        margin-bottom: 2rem;
    }

    nav#header-nav .content .hamburger-menu{
        align-items: flex-start;
    }

    header#main-header .info button{
        font-size: 1.5rem;
    }

    nav#header-nav .content ul.mobile-view li a{
        padding: 0.8rem 0;
    }

    .reunions-container .reunions .reunion{
        padding: 2.5rem 2rem;
    }

    .have-questions .right form .inputs{
        flex-direction: column;
    }

    .have-questions .left h2{
        font-size: 32px;
    }

}