#page_header{
    background-image:linear-gradient(rgba(0,0,0,0.48),rgba(0,0,0,.48)),url(/images/sig.jpg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px;
}

#page_header h2{
    color: #ea2222;
    font-weight: 700;
    font-size: 70px;
    word-spacing: 4px;
}
#page_header p{
    font-weight: 600;
    font-size: 40px;
    color: #07c6db;
}

.sig_about{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 80px;
}

.sig_about h1{
    color: #ed7a7a;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 40px;
    border-bottom: 2px solid red;
}

.sig_about p{
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 40px;
}


.sig_conatiner{
    margin: 4rem 6rem;
    text-align: center;
}

.sig_conatiner h2{
    color: #40f309;
    font-size: 3rem;
    text-decoration: underline;
}


.first-des{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4.5rem;
}
.first-des-reverse{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin-top: 4.5rem;
}

.des-text{
    width: 45%;
    text-align: start;
    font-size: 1.1rem;
}

.des-text h2{
    padding-bottom: 1rem;
    color: #ed7a7a;
}

.image{
    position: relative;
    width: 50%;
    display: flex;
    justify-content: space-between;
    z-index: -99;
}

.image img{
    width: 49%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: -1px 1px 62px -18px rgba(0, 0, 0, 0.19);
}

.image img:nth-child(2){
    position: absolute;
    top: -10%;
    right: 0;
}



#upcoming_sig{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
}

#upcoming_sig h2{
    font-size: 40px;
    text-align: center;
    border-bottom: 1px solid #000;
}
#upcoming_sig .upcoming_sig-body{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0px 30px 0px;
    border: 1px solid #e1e1e1 ;
    width: 70%;
    box-shadow: 10px 10px 10px #999999;
}

#upcoming_sig .upcoming_sig-img{
    border-right: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
}
#upcoming_sig .upcoming_sig-img img{
    padding: 10px 10px;
    height: 250px;
    width: 250px;
    object-fit: cover;
}

#upcoming_sig .upcoming_sig-details div{
    padding: 25px;
}
#upcoming_sig .upcoming_sig-details div h2{
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: #088178;
    border-bottom : 1px solid #e1e1e1 
}
#upcoming_sig .upcoming_sig-details div p{
    margin: 20px 0px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 25px;
}
#upcoming_sig .upcoming_sig-details div button{
    margin: 10px 15px;
    padding: 5px 20px;
    font-size: 13px;
    line-height: 25px;
    background-color: royalblue;
    border-radius: 5px;
    color: white;
}
#upcoming_sig .upcoming_sig-details div button i{
    padding: 0px 10px;
}


@media screen and (max-width:800px) {
    #page_header h2{
        color: #ea2222;
        font-weight: 600;
        font-size: 50px;
        word-spacing: 2px;
    }
    #page_header p{
        font-weight: 500;
        font-size: 20px;
        color: #07c6db;
    }
    .sig_conatiner{
        margin: 4rem 2rem;
    }
    .first-des{
        display: flex;
        flex-direction: column-reverse;
        margin-top: 2.5rem;
    }
    .first-des-reverse{
        display: flex;
        flex-direction: column-reverse;
        margin-top: 2.5rem;
    }
    .des-text{
        width: 100%;
    }
    .image{
        width: 100%;
        margin: 1.8rem 0;
    }
    .image img{
        height: 250px;
    }
}

@media screen and (max-width:600px) {
    .sig_about{
        padding: 40px 20px
    }
    
    .sig_about h1{
        font-weight: 500;
        font-size: 30px;
    }
    .sig_about p{
        color: #222;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    #upcoming_sig .upcoming_sig-body{
        width: 100%;
        box-shadow: 5px 5px 5px #999999;
    }
    #upcoming_sig .upcoming_sig-img img{
        padding: 0px 0px;
        height: auto;
        width: 100px;
        object-fit: cover;
    }
    #upcoming_sig .upcoming_sig-details div{
        padding: 15px;
    }
    #upcoming_sig .upcoming_sig-details div h2{
        font-size: 25px;
    }
    #upcoming_sig .upcoming_sig-details div p{
        margin: 20px 0px;
        font-size: 14px;
        line-height: 20px;
    }
    #upcoming_sig .upcoming_sig-details div button{
        padding: 5px 15px;
        font-size: 10px;
        line-height: 20px;
    }
    #upcoming_sig .upcoming_sig-details div button i{
        padding: 0px 5px;
    }

}