@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,700;1,300&display=swap');


/** * Overlay * -- only show for tablet and up */
@media only screen and (min-width: 40em) {
    .modal1-overlay {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        backface-visibility: hidden;
        transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
   }
    .modal1-overlay.active {
        opacity: 1;
        visibility: visible;
   }
}
/** * Modal */
.modal1 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    background-color:#fcf8f8;
    width: 600px;
    max-width: 75rem;
    min-height: 20rem;
    padding: 1rem;
    border-radius: 3px;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backface-visibility: hidden;
    transform: scale(1.2);
    transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    font-family: 'Roboto', sans-serif;
}
.modal1 .close-modal1 {
    position: absolute;
    cursor: pointer;
    top: 5px;
    right: 15px;
    background: #fff;
    opacity: 0;
    backface-visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition-delay: 0.3s;
     z-index:9999 ! important;
}
.modal1 .close-modal1 svg {
    width: 1.75em;
    height: 1.75em;
}
.modal1 .modal-content {
  
    opacity: 0;
    backface-visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition-delay: 0.3s;
}
.modal1.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.modal1.active .modal-content {
    opacity: 1;
    width: 100%;
    height: 100%;
    
   
}
.modal1.active .close-modal1 {
    transform: translateY(10px);
    opacity: 1;
}
.modal1-content h2{
    color: #353534;
    /* color: #e67a25; */
     text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0px;
    margin-top: 10px;
    font-weight:bold;
}
.modal1-content h2 span{
    color: #e67a25;
      font-weight:bold;
}
.modal1-content h3{
    text-align: center;
    color: #e67a25;
    font-size: 1.8rem;
      font-weight:bold;
}
.modal1-content h4{
    text-align: center;
    letter-spacing: 0.1rem;
    font-size: 1.5rem;
    margin: 5px;
      font-weight:bold;
}
.modal1-content img{
    width: 100%;
}
.view-more{
    display: inline-block;
    padding: 0.8rem 1.5rem;
    color: #fff;
    border-radius: 20px;
    background-color:#353534;
}
.viewmore-wr{
    width: 100%;
    height: auto;
    text-align: center;
}
/** * Mobile styling */
@media only screen and (max-width: 39.9375em) {
    h1 {
        font-size: 1.5rem;
          font-weight:bold;
   }
    .modal1 {
        z-index: 9999 ! important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
        transform: scale(1.1);
        padding: 0 !important;
   }
    .close-modal1 {
        z-index:9999 ! important;
        right: 20px !important;
   }
}
