@font-face {
font-family: "Gilroy";
src: url("../fonts/Gilroy-Light.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
html {
    scroll-behavior: smooth;
}

*{
    padding: 0;
    margin: 0;
    font-family: Gilroy;
}
a {
    outline: none;
    text-decoration: none;
    color: inherit;

}
.container {
    padding: 0 10%;
}
.grey-bg {
     background-color: #303030;
 }
.width-100 {
    width: 100% !important;
}
.height-100 {
    height: 60vh !important;
}
.width-50 {
    width: 48%;
}
.height-50 {
    height: 40vh;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.column {
    flex-direction: column;
}
.white-letters {
    color: #ffffff;
}
.grey-letters {
    color: #303030 !important;
}
.white-bg {
    background-color: #ffffff !important;
}
.grey-donate-bg {
    background-color: #eff1f3!important;
}
.margin-btn-40 {
    margin-bottom: 40px;
}
.link {
    font-style: italic;
    text-decoration: underline;
}
.padding-0{
    padding: 0 !important;
}

/*Grid Css*/
.section-about  {
    padding-top: 50px;
    padding-bottom: 50px;
}
.section-grid__title {
    font-size: 80px;
    margin-bottom: 30px;
}
.section-grid {
    display: flex;
    padding: 30px 0;
}
.row-reverse {
    flex-direction: row-reverse;
}
.section-grid__photo-box {
    width: 50%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-right: 40px;
}
.right-photo {
    margin-right: 0;
    margin-left: 40px;
}
.photo-box__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-grid__text {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-grid__name {
    font-size: 32px;
    margin: 10px 0;
}
.section-grid__short-info, .section-grid__long-info {
    font-size: 18px;
    margin: 5px 0;
}
.section-grid__short-info {
    font-weight: bold;
}
.section-grid__social-block {
    margin: 10px 0;
    display: flex;
}
.social-block__item {
    height: 25px;
    width: 25px;
    margin: 0 10px;
    display: flex;
    align-items: center;
}
.section-grid__button {
    margin-top: 20px;
}

    /*Menu Navigation*/
header {
    width: calc(100% - 20%);
    display: flex;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    justify-content: space-between;
    align-content: center;
    background-color: #ffffff;
    position: fixed;
    z-index: 100;
    top: 0;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1), 0 0 10px 0 rgba(0,0,0,0.1);
}
.header__logo {
    width: 20%;
    display: flex;
    align-items: center;
}
.logo__img {
    width: 100%;
}
.header__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu__item {
    margin: 0 10px;
    font-size: 20px;
    font-weight: lighter;
}
.header__button-donation {
    display: flex;
}
.button {
    background-color: #303030;
    border-radius: 10px;
    padding: 20px;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/*About Us Section*/
.section__donate-us {
    padding: 200px 0 40px 0;
    background-color: #303030;

}.section__about-us {
    padding-top: 200px;
    background-image: url("../img/about-us-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 130px);

}
.about-us__block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-us__time, .about-us__place {
    font-size: 40px;
    margin: 10px;
    color: #ffffff;
}
.about-us__name {
    font-size: 80px;
    font-weight: bold;
    color: #ffffff;
}
.donate_text {
    font-size: 10px;
    margin: 10px;  
    height: 25px;
    width: 25px; 
    display: flex;
    align-items: center;
}
.video-broadcasting {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 768px) {
    .button {
        font-size: 12px;
    }
    .header__logo {
        width: 50%;
    }
}
@media screen and (max-width: 1440px) {
    .section-grid {
        flex-direction: column;
    }
    .section-about{
        padding-top: 120px;
        padding-bottom: 50px;
    }
    .row-reverse {
        flex-direction: column;
    }
    .height-50 {
        height: 90vh !important;
    }
    .section-grid__photo-box, .section-grid__text {
        width: 100%;
    }
    .right-photo {
        margin: 0;
    }
    .section-grid__title, .about-us__name, .about-us__time, .about-us__place{
        font-size: 35px;
        text-align: center;
    }
    .flex-wrap {
        display: flex;
        flex-direction: column;
    }
    .width-50{
        width: 100%;
    }
    .display-hide {
        display: none;
    }
}