/* 
    Criado em : 09/05/2024, 05:47:36
    Author    : Leandro Sant'anna
*/
.BH {
    position: fixed;
    top: 20px;
    right: 40px;
    color: white;
    font-size: x-large;
    font-weight: bold;
}
@font-face {
    font-family: 'noto-sans-imperial-aramaic-regular';
    src: url('../fonts/noto-sans-imperial-aramaic-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'gilroy-regular';
    src: url('../fonts/gilroy-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'gilroy-extrabold';
    src: url('../fonts/gilroy-extrabold.otf') format('truetype');
}
*{
    margin: 0;
    padding: 0;
    font-size: medium;
}
html {
    scroll-behavior: smooth;
}
header {
    display: flex;
    width: 100%;
    height: 150px;
    background-color: #37a3d1;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
session {
    display: flex;
    width: 100%;
}
h2 {
    font-family: 'gilroy-extrabold', sans-serif;
    font-size: x-large;
    margin: 20px 0;
    text-align: left;
}
p {
    font-family: 'gilroy-regular', sans-serif;
    font-size: x-large;
    text-align: justify;
}
.content {
    display: flex;
    width: 984px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.logo {
    width: 250px;
    height: 100px;
}
.logo img {
    margin-top: 25px;
}
.top {
    display: block;
    width: 100% !important;
    font-family: 'noto-sans-imperial-aramaic-regular', sans-serif;
}
.date {
    text-align: right;
    font-size: medium;
}
nav {
    width: 100%;
    display: flex;
}
.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-left: auto;
}
.menu li {
    margin: 0;
    padding: 0;
}
.menu li a {
    display: block;
    color: white;
    text-align: center;
    padding-top: 10px;
    padding-left: 25px;
    text-decoration: none;
    font-size: x-large;
    font-family: 'gilroy-extrabold', sans-serif;
}
.menu li a:hover {
    color: gold;
}
#banner {
    background-color: #1A80AC;
    text-align: center;
}
.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.banner-slide {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}
.banner-item {
    min-width: 100%;
    box-sizing: border-box;
}
.banner-item img {
    width: 100%;
    display: block;
}
.banner-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}
.banner-dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
}
.banner-dot.active {
    background-color: black;
}
#video {
    align-items: center;
    text-align: center;
    margin: 40px 0;
}
#video div:nth-child(1) {
    padding: 15px;
}
#video img {
    width: 450px;
}
#video p {
    margin-right: 20px;
    text-align: justify-all;
    font-size: 23px;
}
#purpose {
    background-color: #2A94C1;
}
#purpose .content {
    display: block;
    color: white;
    text-align: justify;
}
#purpose p {
    margin: 30px 0;
    font-size: 21px;
}
#rav {
    padding: 40px 0;
    background-color: #1A80AC;
    color: white;
}
#rav h2 {
    font-size: xx-large;
}
#rav p {
    font-size: 21px;
    margin: 30px 0;
}
#communities {
    padding: 60px 0;
    background-color: #1C84B0;
    color: white;
}
#communities .search {
    display: flex;
    border: 3px solid white;
    padding: 10px;
    border-radius: 20px;
    margin: 20px 0;
    width: 300px;
    height: 20px;
}
#communities .communities-items {
    margin: 30px 0;
}
#communities .communities-items p, #communities .communities-items a {
    font-size: large;
}
#communities .communities-items a {
    font-size: large;
    color: #ffffff;
    text-decoration: none;
}
#communities select {
    width: 100%;
    font-size: large;
    text-decoration: none;
    background: none;
    border: none;
    margin-left: 10px;
    font-weight: bold;
    color: #ffffff;
    outline: none;
    cursor: pointer;
}
#communities select option {
    background-color: #1A80AC;
    font-size: large;
    color: #ffffff;
}
#communities .search div:nth-child(2) {
    font-family: 'gilroy-regular', sans-serif;
    text-align: center;
    width: 98%;
}
a {
    font-family: 'gilroy-regular', sans-serif;
    font-size: large;
}
#communities .communities-items p:nth-child(1) {
    font-family: 'gilroy-extrabold', sans-serif;
}
#platform {
    margin-bottom: -5px;
}
#platform p {
    margin-bottom: 20px;
}
#platform a, #tsedaka a {
    font-family: 'gilroy-extrabold', sans-serif;
    border: none;
    padding: 10px 60px;
    font-size: x-large;
    color: white;
    background-color: #1A80AC;
    border-radius: 25px;
    text-decoration: none;
}
#platform a:hover, #tsedaka a:hover {
    background-color: gold;
}
#projects {
    padding: 30px 0 200px 0;
    background-color: #1A80AC;
}
#projects .content, #depositions .content {
    display: block;
    color: white;
}
#projects h2, #depositions h2 {
    color: white;
    font-size: xx-large;
    text-align: center;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.grid-item {
    padding: 10px;
    text-align: center;
}
.grid-item img {
    width: 75%;
    height: auto;
    margin-bottom: 10px;
}
.grid-item p {
    font-family: 'gilroy-extrabold', sans-serif;
    font-size: 21px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}
#depositions {
    height: 375px;
    background-color: #096D98;
}
#depositions h2 {
    margin-bottom: 100px;
}
#depositions .content {
    border-top: 6px solid white;
    margin-top: -125px;
}
#depositions .grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
#depositions .grid-item {
    border: 4px solid white;
    border-radius: 20px;
    padding: 20px;
    margin: 0 20px 0 20px;
}
#depositions .grid-item p {
    font-family: 'gilroy-regular', sans-serif;
    font-size: small;
    font-weight: normal;
    text-align: justify;
}
#depositions .grid-item img {
    margin-top: -80px;
    border-radius: 100%;
    width: 120px;
}
#tsedaka {
    margin: -20px 0;
}
#tsedaka .content {
    margin-top: -20px;
    margin-bottom: -30px;
}
#tsedaka p {
    font-size: 14px;
}
#tsedaka .buttons {
    display: flex;
    padding: 10px 10px;
    font-size: large;
}
#tsedaka .buttons a {
    padding: 10px 30px;
    font-size: large;
    margin-right: 10px;
}
#tsedaka img {
    margin-left: 50px;
}
footer {
    background-color: #046791;
    padding-top: 60px;
    padding-bottom: 30px;
    color: white;
}
footer .grid-container {
    border-top: 2px solid white;
    padding-top: 60px;
}
footer .grid-container p {
    font-family: 'gilroy-regular', sans-serif;
    font-size: medium;
    font-weight: normal;
}
footer .grid-item:nth-child(1) p {
    text-align: left;
}
footer .grid-item:nth-child(3) p {
    text-align: right;
}
footer .grid-container p span {
    font-family: 'gilroy-extrabold', sans-serif;
}
footer .grid-container img {
    width: 150px;
}
.copyright {
    font-family: 'gilroy-regular', sans-serif;
    font-size: small !important;
    font-weight: normal;
    margin-top: 15px !important;
}
.network {
    text-align: right;
}
footer a {
    text-decoration: none;
    color: white;
    font-size: x-large;
    font-weight: bold;
    margin-left: 5px;
}
.goldenbar {
    display: block;
    width: 100%;
    height: 40px;
    background-color: #D89F28;
    background-image: linear-gradient(#FFD86A, #D89F28);
}
.col-33 {
    width: 33.3%;
    text-align: center;
}
.col-40 {
    width: 40%;
    text-align: center;
}
.col-50 {
    width: 50%;
}
.col-60 {
    width: 60%;
}
@media screen and (max-width: 480px) {
    .BH {
        top: 5px;
        right: 10px;
        font-size: large;
    }
    header {
        height: 100px;
        text-align: center;
    }
    .logo {
        width: auto;
        height: 75px;
    }
    .logo img {
        margin-top: 0;
    }
    .date, .menu {
        display: none;
    }
    .content {
        display: block;
        width: calc(100% - 40px);
        padding: 20px;
    }
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    #depositions .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
    #video {
        margin: 0;
    }
    #video .content {
        padding: 20px !important;
    }
    #video p {
        margin-right: 0;
        font-size: medium;
    }
    #video div:nth-child(1) {
        padding: 0;
    }
    #video img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    #purpose p, #rav p, #communities p, #platform p {
        font-size: medium;
    }
    #rav, #communities {
        padding: 0 !important;
    }
    #platform {
        margin-bottom: -23px;
    }
    #depositions {
        height: auto;
        padding-bottom: 40px;
    }
    #depositions h2 {
        margin-bottom: 50px;
    }
    #depositions .grid-item {
        margin-top: 75px;
    }
    #tsedaka {
        margin: 0;
    }
    #tsedaka .content {
        width: calc(100% - 20px);
        margin-top: 0;
        margin-bottom: 0;
    }
    #tsedaka p {
        font-size: medium;
    }
    #tsedaka .buttons {
        display: block;
        padding: 10px 10px;
        font-size: large;
    }
    #tsedaka .buttons a {
        display: block;
        padding: 10px 30px;
        font-size: large;
        margin-right: 0;
        margin-bottom: 10px;
    }
    #tsedaka img {
        margin-left: 0 !important;
    }
    footer {
        width: 100%;
        padding: 0 0;
    }
    footer .grid-container {
        width: 100%;
        border-top: none;
        padding: 0 0;
    }
    footer .grid-container p {
        font-family: 'gilroy-regular', sans-serif;
        font-size: medium;
        font-weight: normal;
    }
    footer .grid-item:nth-child(1) p {
        text-align: center;
    }
    footer .grid-item:nth-child(3) p {
        text-align: center;
    }
    .copyright {
        margin-top: 0 !important;
    }
    .network {
        text-align: center;
    }
    .col-33, .col-40, .col-50, .col-60 {
        width: 100%;
    }
}