

#ios-main-video {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 1px;
    width: 1px;
    opacity: 0;
    z-index: -10
}
#video-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    
    z-index: 10;
}
#video-popup-layout {
    display: flex;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 75px;
    
    background-color: #ffebfb;
}
#video-popup #video-popup-close-button {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 100%;
    background-image: url("/assets/icon/close.png");
    background-size: contain;
    background-repeat: no-repeat;
}
#video-popup video {
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
}

@media screen and (max-width: 700px) {
    #video-popup {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media screen and (max-height: 550px) {
    #video-popup {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


#main-video-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 3;
}


.page-bounds {
    margin: 0 auto;
    padding: 0 18px;
    max-width: 1100px;
}

#main-section {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

#main-section #background {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
#main-section #background::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    background-color: #580058;
}
#main-section #background #blurred-video {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -object-position: center;
    object-position: center;
    -webkit-filter: blur(50px);
    filter: blur(50px);
}
#main-section #background #background-video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}
#main-section #background #background-video-wrapper {
    overflow: hidden;
    margin: auto;
    height: 100%;
}
#main-section #background #background-video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -object-position: center;
    object-position: center;
    -webkit-filter: blur(15px);
    filter: blur(15px);
}

@media screen and (max-width: 600px) {
    #main-section #background #blurred-video {
        display: none;
    }
    #main-section #background #background-video {
        width: 100%;
        
    }
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto;;
    
    font-family: "Heebo", sans-serif;
    font-size: 27px;
    color: #fff;
}

.content #logo-wrapper {
    display: flex;
    flex-direction: row;
}
.content #logo {
    margin: 0 auto;
    height: 170px;
}
.content .paragraph {
    margin-top: 50px;
    direction: rtl;
    text-align: center;
}
.content #buttons-container {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
.content #buttons-container button {
    margin: auto;
    color: #0a84ff;
    color: #35b9f9;
    font-size: 24px;
    border: none;
}
.content #buttons-container #play-video-button {
    position: relative;
    padding: 0;
    padding-left: 35px;
    background: none;
}
.content #buttons-container #play-video-button::after {
    content: '';
    position: absolute;
    top: 1px;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    
    -webkit-mask-image: url("/assets/icon/play.png");
    mask-image: url("/assets/icon/play.png");
    
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: #35b9f9;
    
}
.content #buttons-container #donate-button {
    margin-top: 18px;
    padding: 12px 50px;
    background-color: #fff;
    border-radius: 100px;
}

#collage-section {
    margin-top: 12px;
}
#collage-section img {
    margin: auto;
    max-width: 100%;
    width: 100%;
}

#donate-section {
    margin-top: 12px;
    color: #fff;
    background-color: #ffebfb;
}
#donate-section {
    padding: 50px 0 0;
    direction: rtl;
    text-align: center;
    font-family: "Heebo", sans-serif;
    font-size: 27px;
    color: #333;
}
#donate-section h3 {
    font-size: 27px;
    font-weight: 500;
}
#donate-section .buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 55px;
}
#donate-section .buttons-container a {
    cursor: pointer;
    padding: 10px 25px;
    font-family: "Heebo", sans-serif;
    font-size: 19px;
    color: #fff;
    background-color: #d243aa;
    border: none;
    border-radius: 100px;

}
#donate-section #donate-otp {
    font-size: 22px;
}
#donate-section #payment-methods {
margin-top: 15px;
}
#donate-section #payment-methods ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 0;
}
#donate-section #payment-methods ul li {
}
#donate-section #payment-methods ul li img {
    width: 40px;
}

@media screen and (max-width: 550px) {
    
    #donate-section h3 {
        font-size: 22px;
    }
    #donate-section .buttons-container a {
        font-size: 16px;
    }
    #donate-section #donate-otp {
        font-size: 17px;
    }
}
@media screen and (max-width: 410px) {
    #donate-section .buttons-container {
        flex-direction: column;
        gap: 8px;
    }
}



#contact-section {
    margin-top: 12px;
}
#contact-section .content {
    direction: rtl;
    display: flex;
    flex-direction: column;
}
#contact-section h2 {
    margin-bottom: 20px;
    font-family: "Heebo";
    font-size: 34px;
    color: #d243aa;
}
#contact-section .layout {
    display: flex;
    flex-direction: row;
}
#contact-section form {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    max-width: 400px;
    width: 100%;
}
#contact-section form input, 
#contact-section form textarea {
    direction: rtl;
    padding: 12px 8px;
    margin-bottom: 8px;
    width: 100%;
    font-size: 15px;
    
    border: 1px solid #d243aa;
    border-radius: 12px;
    
    box-sizing: border-box;
}
#contact-section form textarea {
    resize: none;
    height: 100px;
}
#contact-section form input[type="submit"] {
    cursor: pointer;
    padding-top: 0;
    padding-bottom: 0;
    height: 44px;
    font-family: "Heebo", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #d243aa;
}
#contact-section #follow-us-cotainer {
    margin-right: 50px;
}
#contact-section #follow-us-cotainer span {
    font-size: 22px;
    color: #555;
}
#contact-section #follow-us-cotainer #social-buttons-container {
    margin-top: 8px;
}
#contact-section #follow-us-cotainer .social-buttons-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    grid-gap: 12px;
}
#contact-section #follow-us-cotainer .social-buttons-list li {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}
#contact-section #follow-us-cotainer .social-buttons-list li[name="instagram"] {
    background-image: url("/assets/icon/instagram.png");
}
#contact-section #follow-us-cotainer .social-buttons-list li[name="facebook"] {
    background-image: url("/assets/icon/facebook.png");
}
#contact-section #follow-us-cotainer .social-buttons-list li[name="whatsapp"] {
    background-image: url("/assets/icon/whatsapp.png");
}

@media screen and (max-width: 720px) {
    
    .content .paragraph,
    #donate-section .paragraph {
        font-size: 24px;
    }
}

@media screen and (max-width: 620px) {
    
    .content .paragraph {
        font-size: 18px;
    }
    .content #buttons-container button {
        font-size: 22px;
    }
    .content #buttons-container #play-video-button {
        padding-left: 30px;
    }
    .content #buttons-container #play-video-button::after {
        width: 22px;
        height: 22px;
    }
    .content #buttons-container #donate-button {
        padding: 8px 40px;
    }
    
    #donate-section .paragraph {
        font-size: 21px;
    }
    
    #contact-section h2 {
        text-align: center;
    }
    #contact-section .layout {
        flex-direction: column;
        align-items: center;
    }
    #contact-section #follow-us-cotainer {
        margin: 20px 0 30px;
    }
    #contact-section #follow-us-cotainer #social-buttons-container {
        display: flex
    }
    #contact-section #follow-us-cotainer .social-buttons-list {
        margin: auto;
    }
}



#footer {
    position: relative;
    margin-top: 12px;
    padding: 20px;
    width: 100%;
    background-color: #f2f2f2;
    box-sizing: border-box;
}

#footer #credit-wrapper {
    display: flex;
    flex-direction: column;
}
#footer #credit-wrapper img {
    margin: 0 auto;
    height: 35px;
}

#footer #credit-wrapper #credit-label {
    margin: auto;
    margin-top: 5px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #333;
}
#footer #credit-wrapper #credit-label a {
    color: #0070c9;
    text-decoration: underline;
    float: none;
}

@supports (padding: max(0, env(safe-area-inset-bottom))) {
    #footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-left: max(20px, env(safe-area-inset-left));
    }
}

@media screen and (max-width: 720px) {

.content #logo {
    margin: 0 auto;
    height: 140px;
}
    .content .paragraph {
        margin-top: 25px;
        direction: rtl;
        text-align: center;
    }
} 


#footer #footer-container {
    direction: rtl;
    margin: auto;
    max-width: 980px;
    width: 100%;
}

#footer .footnotes {
    padding-bottom: 11px;
    margin-bottom: 15px;
    color: #86868b;
    border-bottom: 1px solid #d2d2d7;
}
#footer .footnotes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .footnotes ol {
    list-style-position: outside;
    padding: 0 17px;
    margin: 0;
}
#footer .footnotes li {
    padding-bottom: 0.8em;
    direction: rtl;
    line-height: 1.33337;
    font-family: "Arial",sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -.01em;
}
#footer .footnotes ol li {
    list-style-type: decimal;
}
#footer .footnotes a {
    color: #515154;
    text-decoration: none;
}
#footer .footnotes a:hover {
    color: #1d1d1f;
    text-decoration: underline;
}