/* *universal selector */
::-webkit-scrollbar{
    width: 12px;
}
::-webkit-scrollbar-track{
    background-color: #cccccc;
}
::-webkit-scrollbar-thumb{
    background-color: #000000;
    box-shadow: 0px 0px 10px 0px rgb(180, 180, 180) inset;
    border-radius: 15px;
}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
}
ul{
    list-style-type: none;
}
ul li{
    padding-block: 25px;
}
html, body{
    scroll-behavior: auto !important;
}
.container{
    padding: 100px 0;
}
.p-section{
    padding-top: 100px ;
}

 /* *nav menu */
 nav{
    width: 300px;
    left: -300px;
 }
 #myNav a{
    cursor: pointer;
 }
.menu{
    left: 10px;
    top: 60%; 
 }
 .openMenu, .myXmark{
    cursor: pointer;
 }
 .colorLinkNav{
    color: #fff;
    transition: 0.5s all;
 }
 ul li a:hover{
    color:rgba(214, 46, 51, 0.6);
 }
 /* *Home section */
#home{
    background-image: linear-gradient(rgba(214, 46, 51, 0.6),rgba(214, 46, 51, 0.6)), url(../images/events-heavenly.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#home h1{
    font-size: 3.75rem;
}
/* *singer section */
.item h3{
    background-color: rgba(214, 46, 51, 0.6);
    cursor: pointer;
}
#singer .item .contentSlid{
    display: none;
    background-color: #9492926e;
    padding: 10px;
}
#singer .item .showContent{
    display: block;
}
/* *Details section */
#details{
    background-image: linear-gradient(rgba(214, 46, 51, 0.6),rgba(214, 46, 51, 0.6)), url(../images/invitation.jpg);
    height: 330px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.box{
    padding: 50px;
    border: 1px solid #FFF;
    font-weight: 500;
    font-size: 30px;
}
#details .container{
    padding-block: 100px;
}
.box span{
    color: #fff;
}
/* *contact-us section */
.custom{
    text-align: initial;
    font-size: 18px;
    color: #444;
}
#contact-us,.fa-envelope{
    color: #778;
}
.title h2{
    font-size: 35px;
    color: #444;
}
.customIcon{
    height: 40px;
    width: 40px;
    border: 1px solid #999;
    margin-left: 10px;
    cursor: pointer;
}
input, textarea, .Characyer{
    margin-bottom: 20px;
}
textarea{
    resize:vertical;
}
.form-control,.btn-danger{
    border-radius: 0;
}
.customIcon:hover{
    color: #fff;
    background-color: #D62E33;
    border: 1px solid #D62E33;
}
@media all and (max-width: 768px){
    #details{
        height: auto;
        background-size: 100% 100%;
    }
    .box{
        margin: auto;
        padding: 25px;
        margin-bottom: 10px;
        font-size: 20px;
    }
}