*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,p{
    margin: 0;
}
a{
    text-decoration: none;
}
body{
    font-family: "Merriweather", serif;
}
.container{
    max-width: 1030px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.img-fluid{
    max-width: 100%;
}
.text-center{
    text-align: center;
}

/* header part start */
.header{
    padding: 5px 0;
    background-color: #000;
}
/* header part end */

/* main sec part start */
.main-sec{
    min-height: 95vh;
    padding: 100px 0;
}
.main-sec-top{
    margin-bottom: 70px;
}
.main-sec-top h1{
    display: inline-block;
    font-size: 54px;
    font-weight: 700;
    color: rgb(0 0 0 / 85%);
    position: relative;
}
.main-sec-top h1::before{
    content: "";
    width: 50px;
    height: 50px;
    background-color: #fecf2f;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: -25px;
    z-index: -1;
}
.main-sec-box{
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.single-main-sec-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 270px;
    width: 100%;
    height: 235px;
    border: 3px solid #000;
    border-radius: 5px;
    cursor: pointer;
}
.single-main-sec-item:hover{
    border-color: #FED033;
    background-color: #FFFBEC;
}
.single-main-sec-item h3{
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    line-height: 41px;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(0 0 0 / 85%);
    margin-top: 20px;
}
/* main sec part end */

/* footer part start */
.footer-top{
    background-color: #000;
    padding: 30px 0;
}
.footer-logo{
    margin-bottom: 5px;
}
.footer-text p{
    font-family: "Work Sans", sans-serif;
    color: #fff;
}
.footer-text p a{
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    color: #fff;
    
}
.footer-text p a:hover{
    text-decoration: underline;
}
.footer-bottom{
    padding: 20px 0;
    font-size: 15px;
    color: #8b8b8b;
    font-family: "Work Sans", sans-serif;
}
/* footer part end */

/* popup part start */
.main-popup{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgb(0 0 0 / 85%);
    display: none;
}
.main-popup.active{
    display: block;
}
.popup-box{
    max-width: 880px;
    width: 98%;
    margin: 0 auto;
    padding: 50px;
    background-color: #fff;
    border-radius: 3px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 585px;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-box-content{
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}
.popup-box-content .main-sec-top{
    margin-bottom: 50px;
}
.popup-box-content .main-sec-box a{
    display: inline-block;
}
/* popup part end */