/* Home */
#home {
    background-image: url(../imgs/events-heavenly-header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
}
#home .overlay {
    background-color: rgba(250, 50, 50, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menu */
.menu {
    z-index: 9999;
}
.menu .sidebar {
    width: 250px;
    height: 100vh;
    left: -250px;
    background-color: #222;
}
.menu .sidebar #closeIcon {
    cursor: pointer;
    transition: all 0.3s;
}
.menu .sidebar #closeIcon:hover {
    color: #D62E33 !important;
}
.menu .sidebar a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}
.menu .sidebar a:hover {
    color: #D62E33;
}
.menu .sidebar li {
    padding: 25px;
    font-size: 20px;
}
.menu .open {
    color: #fff;
    font-size: 25px;
    right: -42%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Slider Down */
#sliderDown {
    margin: 100px auto;
    width: 50%;
}
#sliderDown h3 {
    padding: 10px;
    margin: 0;
    background-color: rgba(214, 46, 51, 0.6);
    cursor: pointer;
    color: white;
    transition: all 0.5s ease;
}
#sliderDown div {
    padding: 10px;
    background-color: #ccc;
    display: none;
}

/* Counter */
#counter {
    background-image: url(../imgs/invitation-2508607__340.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    height: 330px;
}
.counter-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(214, 46, 51, 0.6);
    color: white;
}
.tim {
    padding: 50px;
    font-weight: 500;
    font-size: 30px;
    border: 1px solid #FFF;
}

/* Contact Us */
#contact-us i {
    margin-right: 10px;
    color: #777;
}
#contact-us .mail {
    color: #D62E33 !important;
    cursor: pointer;
}
.social-list i {
    margin-right: 10px;
    border: 1px solid #999;
    width: 40px;
    height: 40px;
    line-height: 42px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
}
.social-list i:hover {
    color: #fff !important;
    background-color: #D62E33;
    border-color: #D62E33;
}
#contact-us form textarea {
    resize: none;
}
#chars {
    font-size: 20px;
    color: #D62E33;
}
#contact-us form button {
    background-color: #D62E33;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0;
}
/* Media Screen */
@media screen and (max-width: 600px) {
    #sliderDown {
        margin: 100px auto;
        width: 90%;
    }
    #counter {
        background-image: url(../img/invitation-2508607__340.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        position: relative;
        height: 700px;
    }
}