 .about-section .button-section {
     display: flex;
     grid-column-gap: 10px;
     align-items: center;
     margin: 30px 0 0;
 }

 .about-section .button-section p {
     font-size: 40px;
     color: var(--about-title);
     font-family: 'cubanoregular';
     font-weight: normal;
     margin: 0;
 }

 .about-section .button-section .button-col {
     display: flex;
     grid-column-gap: 20px;
     align-items: center;
 }

 .btn-limed {
     background: var(--total-bg);
     color: #fff;
     font-size: 20px;
     font-weight: 700;
     padding: 20px;
     display: flex;
     align-items: center;
     grid-column-gap: 15px;
     text-decoration: none;
     border-radius: 5px;
 }

 .btn-limed:hover {
     background: #2D3D42;
 }


 .delayedPopup {
     display: none;
     position: fixed;
     padding: 30px;
     width: 100%;
     max-width: 691px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
     background-color: #000;
     z-index: 999999;
     border-radius: 10px;
     background: var(--total-bg);
     background-size: cover;
     box-sizing: border-box;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
 }

 .delayedPopup h2 {
     color: #9CD4C2;
     line-height: 75px;
 }


 #btnClose {
     position: absolute;
     right: 7px;
     top: 7px;
     ;
 }


 .popup-tefilla {
     background: #D5C9C1;
     padding: 20px 30px 30px;
     overflow-y: scroll;
     height: 600px;
 }

 .popup-tefilla .logo-section {
     display: block;
     text-align: center;
     margin: 0 0 20px;
 }

 .popup-tefilla .popup-content-section {
     background: #FAECE1;
     padding: 16px;
 }

 .popup-tefilla .heading-section {
     padding: 15px 20px;
     background: #506A72;
     display: block;
     color: #fff;
     font-size: 24px;
     font-weight: 600;
     text-align: center;
 }

 .text-section {
     margin: 10px 0 0;
 }

.text-section p{
    color:#506A72; font-weight: normal; margin: 0 0 10px 0;
}




 .backgroundOverlay {
     position: fixed;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     height: 100%;
     width: 100%;
     margin: 0;
     padding: 0;
     background: rgba(0, 0, 0, .5);
     z-index: 99999;
     display: none;
 }

 .delayedPopup .button-panel {
     display: flex;
     margin-top: 10px;
     justify-content: flex-start;
     margin-top: 50px;
     grid-column-gap: 23px;
 }

 @media(max-width: 800px) {
     .delayedPopup {
         max-width: 95%;
     }

     .about-section .button-section {
         flex-wrap: wrap;
         grid-row-gap: 20px;

     }

 }

 @media(max-width: 480px) {
     .popup-tefilla {
         padding: 20px;
     }

     .delayedPopup {
         max-width: 95%; padding: 10px;
     }

 }


 @media(max-width: 430px) {


     .btn-limed {
         font-size: 16px;
     }

     .about-section .button-section .button-col {
         grid-column-gap: 15px;
     }

 }