/* Google fonts import link */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Montserrat:wght@100;200;300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* 
font-family: 'Poppins', sans-serif; 
font-family: 'Montserrat', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Lato', sans-serif;

*/
/* Red color - #e84e36 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
#bars,
#close {
        display: none;
    }
.common {
    display: flex;
    justify-content: center;
}
.common-even {
    display: flex;
    justify-content: space-evenly;
}
.common-bet {
    display: flex;
    justify-content: space-between;
}
.common-around {
    display: flex;
    justify-content: space-around;
}
.align {
    align-items: center;
}
.flex-col {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.col-10 {
    width: 10%;
}
.col-15 {
    width: 15%;
}
.col-20 {
    width: 20%;
}
.col-25 {
    width: 25%;
}
.col-30 {
    width: 30%;
}
.col-35 {
    width: 35%;
}
.col-40 {
    width: 40%;
}
.col-45 {
    width: 45%;
}
.col-50 {
    width: 50%;
}
.col-55 {
    width: 55%;
}
.col-60 {
    width: 60%;
}
.col-65 {
    width: 65%;
}
.col-70 {
    width: 70%;
}
.col-75 {
    width: 75%;
}
.col-80 {
    width: 80%;
}
.col-85 {
    width: 85%;
}
.col-90 {
    width: 90%;
}
.col-95 {
    width: 95%;
}
.col-100 {
    width: 100%;
}

/* --------------------- Navigation --------------------- */
.preloader,
.preloader-main {
    height: 100vh;
    background: #e84e36;
    animation: preGone .4s linear forwards;
    animation-delay: 2s;
}
@keyframes preGone {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(5);
    }
}
@keyframes preload {
    0% {
        transform: scale(.4);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.preloader-main span h1 {
    color: #ffffff;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 3pc;
    opacity: 0;
    animation: preload .2s linear forwards;
}
.preloader-main span h1:nth-child(1) {
    animation-delay: .2s;
}
.preloader-main span h1:nth-child(2) {
    animation-delay: .4s;
}
.preloader-main span h1:nth-child(3) {
    animation-delay: .6s;
}
.preloader-main span h1:nth-child(4) {
    animation-delay: .8s;
}
.preloader-main span h1:nth-child(5) {
    animation-delay: 1s;
}
.preloader-main span h1:nth-child(6) {
    animation-delay: 1.2s;
}
.preloader-main span h1:nth-child(7) {
    animation-delay: 1.4s;
}
.preloader-main span h1:nth-child(8) {
    animation-delay: 1.6s;
}
.support {
    z-index: 50;
}
#s-close {
    display: none;
}
.support a img {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    z-index: 50;
    cursor: pointer;
}
.support-form {
    position: fixed;
    top: 0;
    display: none;
    height: 100vh;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.377);
}
.support-form-main {
    /* border: 3px solid red; */
}
.support-form-main form {
    height: auto;
    padding: 2pc;
    border-radius: 10px;
    background: #ffffff;
}
/* .support-form-main form  */

.container {
    height: auto;
}
#container {
    display: none;
}
.navigation {
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 50;
    background: white;
    box-shadow: 2px 2px 10px 2px #cecece;
}
.nav-logo a img {
    width: 100px;
}
.nav-links li {
    list-style-type: none;
}
.nav-links li a {
    font-size: 16px;
    color: #727272;
    font-weight: 500;
    padding: 7px 25px;
    border-radius: 5px;
    letter-spacing: .6px;
    text-decoration: none;
}
.nav-links li a:hover {
    background: #e84e36;
    color: #ffffff;
    transition: .3s;
}
.banner {
    /* position: relative; */
    margin-top: 100px;
    height: 700px;
    /* animation: banner 3s linear forwards; */
}
.banner img {
    position: absolute;
    top: 100px;
    width: 100%;
    height: 700px;
    animation: banner 5s linear;
}
.banner-main {
    position: absolute;
    height: 90%;
    background: rgba(0, 0, 0, 0.198);
    backdrop-filter: blur(2px);
    /* border: 2px solid red; */
}
.banner-main h1 {
    font-size: 3.3pc;
    color: #ffffff;
    font-weight: 600;
    opacity: 0;
    letter-spacing: .7px;
    animation: bannerMove .9s ease-in forwards;
    font-family: 'Montserrat', sans-serif;
}
.banner-main p {
    width: 60%;
    margin: 25px 0;
    font-size: 20px;
    color: #ffffff;
    opacity: 0;
    letter-spacing: .4px;
    text-align: center;
    animation: bannerMoveOne 1s ease-in forwards;
}
.banner-main a {
    padding: 10px 30px;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    border-radius: 5px;
    background: #e84e36;
    text-decoration: none;
    animation: bannerMoveOne 1s ease-in forwards;
}
.banner-main a:hover {
    transition: .3s;
    background: #a13929;
    transform: translateY(-10px);
}
.home-booking-experience {
    margin-top: 3pc;
}
.home-heading {
    padding: 20px 0;
    margin-top: 2pc;
}
.home-heading h2 {
    color: #e84e36;
    font-weight: 600;
    font-size: 2.2pc;
    letter-spacing: .7px;
    font-family: 'Roboto', sans-serif;
}
.home-heading p {
    width: 70%;
    margin: 10px 0;
    color: #5f5f5f;
    text-align: center;
}
.booking-experience-main-left,
.booking-experience-main-right {
    height: auto;
}
.booking-experience-main-left img {
    width: 100%;
}
.exp-one,
.exp-two {
    position: relative;
    /* border: 1px solid black; */
    height: auto;
}
.exp-one img,
.exp-two img {
    width: 30px;
    top: 0;
    left: 0;
    border-radius: 3px;
    position: absolute;
}
.exp-one h4,
.exp-two h4 {
    color: #202020;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-left: 45px;
}
.exp-one p,
.exp-two p {
    width: 85%;
    color: #727272;
    margin-left: 45px;
}
#daily-cal {
    width: 90%;
}
.features-left img {
    width: 800px;
}
.features-right span {
    width: 75%;
    margin-bottom: 15px;
    padding: 8px 20px;
    border-radius: 6px;
    /* background: #727272; */
    justify-content: flex-start;
}
.features-right span:hover {
    transition: .3s;
    box-shadow: 2px 2px 10px 2px #c5c5c5;
}
.features-right span img {
    width: 20px;
    margin-right: 10px;
}
.features-right span h4 {
    font-weight: 500;
    font-size: 19px;
}
.features-right,
.features-left {
    height: auto;
    /* border: 2px solid black; */
}
.features-right a {
    width: 230px;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    background: #e84e36;
    text-decoration: none;
    margin: 15px 0 0 20px;
}
.features-right a:hover {
    transition: .3s;
    background: #a13929;
}
.footer {
    height: auto;
    padding: 0 4pc;
    background: #252525;
}
.footer h2 {
    color: #fff;
    font-weight: 400;
    font-size: 2pc;
    padding: 3pc 0;
    letter-spacing: .7px;
}
.footer-links {
    height: auto;
}
.footer-links-box {
    padding: 25px 0;
    justify-content: flex-start;
    /* border: 1px solid red;  */
}
.footer-links-box h3 {
    color: #e84e36;
    font-weight: 500;
}
.footer-links-box img {
    width: 130px;
}
.footer-links-box a {
    color: #e0e0e0;
    margin-top: 10px;
    text-decoration: none;
}
.footer-links-box a:hover {
    color: #e84e36;
    transition: .3s;
}
.footer-links-box a i {
    margin: 0 10px;
}
.footer-links-box span a i {
    font-size: 22px;
    padding: 13px 3px;
}
.footer p {
    padding: 15px 0;
    color: #ffffff;
    text-align: center;
    letter-spacing: .4px;
}

/* -------------------------- ABOUT ------------------------- */
.page-heading {
    margin-top: 100px;
    height: 200px;
}
.page-heading div {
    height: 100%;
    color: #ffffff;
    font-size: 2.4pc;
    font-weight: 500;
    letter-spacing: .7px;
    backdrop-filter: blur(2px);
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 0, 0, 0.096);
}
.about {
    height: 500px;
}

/* ----------------------- Sign In ---------------------- */
#home {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
}
.signin-container {
    height: 100vh;
    background: #e84e36;
}
.signin-form {
    height: auto;
    padding: 2pc;
    opacity: 0;
    border-radius: 10px;
    background: #ffffff;
    animation: login .4s ease-in forwards;
    /* box-shadow: 2px 2px 10px 2px #c5c5c5; */
}
.signin-form form h2 {
    font-weight: 600;
    color: #252525;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
}
.signin-form form input,
#google,
.support-form-main form input,
.support-form-main form textarea {
    width: 100%;
    padding: 8px 14px;
    font-size: 16px;
    outline: 0;
    letter-spacing: .4px;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #a8a8a8;
}
.for-password {
    position: relative;
    /* border: 2px solid red; */
}
#eye,
#eye-slash {
    position: absolute;
    right: 20px;
    bottom: 14px;
}
#eye-slash {
    display: none;
}
.signin-form form a {
    color: #e84e36;
    margin-top: 10px;
    text-decoration: none;
}
.signin-form form a:hover {
    transition: .3s;
    text-decoration: underline;
}
.signin-form form input[type="submit"],
.support-form-main form input[type="submit"] {
    background: #e84e36;
    color: #ffffff;
    border: 0;
    cursor: pointer;
}
.signin-form form input[type="submit"]:hover,
.support-form-main form input[type="submit"]:hover {
    background: #a13929;
    transition: .3s;
}
.signin-form form p,
.signin-form form h4 {
    margin: 10px 0;
}
.signin-form form h4 {
    font-weight: 500;
    color: #727272;
}
.signin-form form span {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    background: #3A559F;
}
.signin-form form span:hover {
    background: #213468;
    transition: .3s;
    cursor: pointer;
}
.signin-form form span img {
    width: 20px;
    left: 10px;
    top: 12px;
    position: absolute;
}
.signin-form form span a {
    width: 100%;
    text-align: center;
    margin-top: 0;
    color: #ffffff;
}
.signin-form form span a:hover {
    text-decoration: none;
}
#google {
    background: transparent;
}
#google:hover {
    transition: .3s;
    background: #252525;
}
#google a {
    color: #727272;
}
/* --------------------------- Services ------------------- */
.support-form-main form label {
    margin-top: 10px;
}
.support-form-main form {
    animation: bannerMove .3s ease-in forwards;
}
.support-form-main form input,
.support-form-main form textarea {
    margin-top: 10px;
}
.services-start {
    height: auto;
    padding: 3pc 0;
    animation: bannerMove .5s ease-in forwards;
}
.service-start-box {
    width: 600px;
    height: 230px;
    padding: 2pc;
    border-radius: 8px;
    background: #fff7f6;
    border: 1px solid #ff9484;
}
.service-start-box img {
    width: 35px;
}
.service-start-box h3 {
    font-weight: 500;
}
.service-start-box p,
.main-service-box p {
    color: #727272;
    font-size: 15px;
}
.service-start-box h3,
.service-start-box p,
.main-service-box p {
    margin-top: 8px;
}
/* .services-common {
    border: 2px solid red;
} */
.main-service {
    margin-bottom: 2pc;
}
.services-common h2,
.newsletter h2 {
    padding: 2pc 0;
    font-size: 2pc;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.main-service-box {
    position: relative;
    padding: 10px;
    width: 550px;
    height: 180px;
    /* border: 2px solid black; */
}
.main-service-box img {
    width: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.main-service-box h3,
.main-service-box p {
    margin-left: 50px;
}
.main-service-box h3 {
    font-weight: 600;
}
.newsletter {
    height: auto;
    padding-bottom: 2pc;
    /* border: 2px solid black; */
}
.newsletter h2 {
    padding: 0;
}
.newsletter p {
    margin: .5pc 0 1.3pc 0;
}
.newsletter span {
    width: 450px;
}
.newsletter span input[type="email"] {
    width: 350px;
    padding: 8px;
    outline: 0;
    border: 0;
    font-size: 16px;
    background: #ffbeb5;
}
.newsletter span input[type="submit"] {
    width: 100px;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: #e84e36;
}
/* -------------------- Contact Us ---------------------- */
.contact-main {
    padding: 2pc 0;
}
.contact-left,
.contact-right {
    padding: 2pc;
    line-height: 50px;
}
.contact-left h2 {
    font-weight: 600;
    font-size: 2pc;
    color: #e84e36;
    font-family: 'Montserrat', sans-serif;
}
.contact-left p {
    color: #727272;
}
.contact-call {
    line-height: 50px;
    padding: 1pc 0;
}
.contact-call i {
    color: #e84e36;
    padding: 10px;
    border-radius: 50%;
    background: #e0e0e0;
}
.contact-call a {
    color: #727272;
    font-weight: 500;
    font-size: 17px;
    margin-left: 7px;
    text-decoration: none;
}
.contact-call a:hover {
    color: #000000;
}
.contact-right form {
    height: auto;
    padding: 3pc;
    background: #e6e6e6;
    animation: bannerMove .5s ease-in forwards;
}
.contact-right form span {
    margin-bottom: 1.5pc;
}
.contact-right form span input[type="text"],
.contact-right form span input[type="email"],
.contact-right form span input[type="number"],
.contact-right form textarea {
    width: 40%;
    padding: 8px;
    outline: 0;
    font-size: 16px;
    border: 2px solid #a8a8a8;
    background: transparent;
}
.contact-right form textarea {
    width: 100%;
    margin: auto;
}
.contact-right form input[type="submit"] {
    width: 100%;
    padding: 9px 0;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    background: #000000;
}
.contact-right form span input[type="text"]:focus,
.contact-right form span input[type="email"]:focus,
.contact-right form span input[type="number"]:focus,
.contact-right form textarea:focus {
    border-color: #000000;
    transition: .3s;
}
.social-media {
    width: 200px;
    padding: 10px 0;
}
.social-media a {
    font-size: 21px;
    color: #5f5f5f;
}
.social-media a:hover {
    color: #e84e36;
    transition: .3s;
}

/* --------------------- My Meetings ------------------ */
.meetings-main {
    padding: 2pc 3pc;
}
.meetings-head {
    height: auto;
}
.meetings-head h2 {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.meetings-head table,
.meetings-head table tr,
.meetings-head table td {
    padding: 10px 20px;
    border-collapse: collapse;
    border-radius: 20px;
    background: #e6e6e6;
    transition: .3s;
}
.meetings-head table {
    margin: 2pc 0;
}
.meetings-head table td {
    cursor: pointer;
}
#all {
    background: #e84e36;
}
.meetings-box-main {
    height: auto;
}
.meetings-box {
    width: 90%;
    height: 200px;
    padding: 2pc 0;
    margin-bottom: 2pc;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 2px #c5c5c5;
}
.meeting-box-left,
.meeting-box-right {
    width: 350px;
}
.meeting-box-left h5 {
    font-weight: 500;
    color: #3da534;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    background: #bbffb5;
}
.meeting-box-left span,
.meeting-box-right span {
    position: relative;
    padding: 0 1pc;
}
.meeting-box-left span h5 {
    top: 20px;
    left: 20px;
}
.meeting-box-left span h4,
.meeting-box-right span h4 {
    font-size: 18px;
    font-weight: 500;
    color: #252525;
}
.meeting-box-left span h4 i {
    margin-right: 8px;
}
.meeting-box-left span p,
.meeting-box-right span p {
    font-size: 13px;
    color: #555555;
}
.meeting-box-left span:nth-child(1) {
    padding-left: -20px;
}
#newhead {
    width: 50px;
}
#upcominghead {
    width: 90px;
    color: #e84e36;
    background: #ffc2b8;
}
#completedhead {
    width: 100px;
    color: #5f5f5f;
    background: #dddddd;
}
#cancelledhead {
    width: 90px;
    background: #ffbfbf;
    color: #ff0000;
}
.host {
    height: 80px;
}
.host i {
    position: absolute;
    top: 15px;
    left: -10px;
}
.meeting-box-right span i {
    font-size: 20px;
    cursor: pointer;
}
.fa-trash {
    color: red;
}
.fa-edit {
    color: #313131;
}
.meeting-box-right span a {
    position: absolute;
    bottom: 20px;
    color: #ffffff;
    padding: 7px 20px;
    font-size: 14px;
    border-radius: 20px;
    background: #e84e36;
    text-decoration: none;
}
.meeting-box-right span a:hover {
    transition: .3s;
    background: #a13929;
}
#host-icon {
    color: #e84e36;
}
#cohost-icon {
    color: #ff9484;
}
.meetings-reminders {
    height: 400px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 2px #c5c5c5;
}
.meetings-reminders i {
    color: #e84e36;
    margin-right: 6px;
}
.meetings-reminders h3 {
    text-align: center;
    padding: 1pc 0;
    font-weight: 500;
}
.meetings-reminders p {
    padding: 0 1pc;
    color: #555555;
    margin-bottom: 10px;
}
/* --------------------- Admin Profile ------------------------- */
.admin-left,
.admin-right {
    height: 100vh;
    /* border: 2px solid black; */
}
.admin-left {
    background: #e84e36;
}
.admin-left-logo {
    height: 110px;
    /* border: 2px solid red; */
}
.admin-left img {
    width: 100px;
}
.admin-left-nav {
    height: 500px;
    margin-top: 70px;
    /* border: 2px solid red; */
}
.admin-left-nav li {
    color: #ffffff;
    font-weight: 400;
    font-size: 19px;
    margin: 20px 0 20px 20px;
    list-style-type: none;
}
.admin-left-nav li:hover {
    transition: .3s;
    color: #000000;
}
.admin-left-nav li a {
    color: #ffffff;
    margin-left: 15px;
    font-size: 18px;
    letter-spacing: .5px;
    text-decoration: none;
}
.admin-left-nav li a:hover {
    transition: .3s;
    color: #000000;
}
.admin-right {
    padding: 1.5pc;
}
.admin-right-head a {
    color: #ffffff;
    background: red;
    padding: 7px 20px;
    border-radius: 4px;
    text-decoration: none;
}
.admin-right-head span h2 {
    font-weight: 600;
    letter-spacing: .7px;
    font-family: 'Montserrat', sans-serif;
}
.admin-right-head span p {
    color: #909090;
    font-weight: 500;
    margin: 10px 0;
}
.admin-renders {
    position: relative;
    height: 600px;
    padding: 3pc;
    border-radius: 20px;
    background: #e6e6e6;
}
.admin-dashboard,
.admin-accounts,
.admin-history,
.admin-manage {
    height: 100%;
    margin-bottom: 2pc;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.admin-dashboard-main,
.admin-accounts-main,
.admin-history-main,
.admin-manage-main {
    padding: 3pc;
    height: 100%;
}
#admin-accounts,
#admin-history,
#admin-manage {
    display: none;
}
.admin-db-left {
    width: 370px;
    height: 500px;
    padding: 1pc;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 2px #b6b6b6;
}
.admin-db-left span {
    /* position: sticky; */
    background: #e84e36;
    bottom: 0;
}
.admin-db-right {
    width: 370px;
    height: 500px;
}
.admin-db-one,
.admin-db-two {
    height: 230px;
    padding: 1pc;
    overflow: auto;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 2px 2px 10px 2px #b6b6b6;
}
.admin-db-left h3,
.admin-db-one h3,
.admin-db-two h3,
.admin-create h3,
.admin-created-meetings h3 {
    font-weight: 500;
}
.admin-db-left {
    position: relative;
    overflow: auto;
}
.admin-meeting-box {
    height: auto;
    margin-top: 15px;
    padding: 13px;
    border-radius: 10px;
    background: #ff9484;
}
.admin-meeting-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.admin-meeting-box h4 {
    font-weight: 500;
    color: #000000;
    font-size: 20px;
    letter-spacing: .4px;
}
.admin-meeting-box div a {
    width: 100px;
    margin: 10px 0;
    padding: 4px 15px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
}
.admin-meeting-box div a:nth-child(1) {
    background: #313131;
}
.admin-meeting-box div a:nth-child(2) {
    background: #ff0000;
}
.admin-accounts-main {
    overflow: auto;
}
.admin-accounts-main table {
    box-shadow: 2px 2px 10px 2px #b6b6b6;
    background: #ffffff;
}
.admin-accounts-main table th {
    background: #e84e36;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: .4px;
}
.admin-accounts-main table,
.admin-accounts-main table tr,
.admin-accounts-main table th,
.admin-accounts-main table td {
    text-align: center;
    padding: 10px;
    border-collapse: collapse;
    border-bottom: 1px solid #909090;
}
.admin-accounts-main table td button {
    /* width: 80px; */
    padding: 5px 20px;
    cursor: pointer;
    border: 0;
    outline: 0;
    border-radius: 4px;
    color: #ffffff;
}
.admin-accounts-main table td button:nth-child(1) {
    background: #213468;
}
.admin-accounts-main table td button:nth-child(1):hover {
    background: #000000;
    transition: .3s;
}
.admin-accounts-main table td button:nth-child(2) {
    background: green;
}
.admin-accounts-main table td button:nth-child(2):hover {
    background: rgb(0, 53, 0);
    transition: .3s;
}
.admin-stat {
    height: auto;
    /* border: 2px solid red; */
}
.admin-ma {
    padding: 1pc;
}
.admin-stat span {
    display: flex;
    margin: 10px 0;
    justify-content: space-between;
}
.admin-stat span h4 {
    font-weight: 600;
    color: #e84e36;
}
.admin-stat span p {
    font-weight: 500;
    font-size: 18px;
}
.admin-man-box {
    height: 100px;
    margin: 8px 0;
    border-radius: 10px;
    background: #ff9484;
}
.admin-man-box img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}
.admin-man-box span {
    /* margin-left: 10px; */
}
.admin-man-box span h4 {
    font-weight: 600;
}
.admin-man-box span p {
    color: #313131;
    letter-spacing: .4px;
}
.admin-man-box span h5 {
    font-size: 15px;
    font-weight: 600;
    color: green;
}
.admin-history-main {
    flex-wrap: wrap;
    overflow: auto;
    row-gap: 2pc;
}
.admin-hist-box {
    width: 370px;
    height: 415px;
    padding: 1pc;
    border-radius: 10px;
    background: #ff9484;
}
.admin-hist-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.admin-hist-box h3,
.admin-hist-box h4 {
    /* color: green; */
    letter-spacing: .4px;
    font-weight: 500;
}
.admin-hist-box h5 {
    color: green;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .4px;
}
.admin-hist-box p {
    font-weight: 500;
    color: #555555;
    letter-spacing: .4px;
}
.admin-create,
.admin-created-meetings {
    background: #ffffff;
    border-radius: 10px;
    padding: 1pc;
    /* border: 2px solid black; */
}
.admin-create form input {
    padding: 8px;
    margin: 10px 0;
    outline: 0;
    border: 0;
    border-radius: 5px;
    background: #e6e6e6;
    /* border: 2px solid #a8a8a8; */
}
.admin-create form input[type="submit"] {
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: #e84e36;
}
.admin-create form input[type="submit"]:hover {
    background: #a13929;
}
.admin-create form span {
    width: 50%;
}
.admin-created-meetings {
    overflow: auto;
}
#edit-meeting-room {
    display: none;
}
.edit-meeting-room {
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.178);
}
.edit-meeting-room img {
    position: absolute;
    width: 70px;
    top: 30px;
    right: 30px;
    cursor: pointer;
}
.edit-meeting-room {
    position: absolute;
    height: 100vh;
    z-index: 50;
    top: 0;
}
/* -------------------- Success Page ------------------ */
.success {
    height: 100vh;
}
.success-box {
    width: 300px;
    height: 350px;
    border-radius: 10px;
    animation: bannerMove .4s linear forwards;
    box-shadow: 2px 2px 10px 2px #b6b6b6;
}
.success-box img {
    width: 100px;
}
.success-box h2 {
    color: #555555;
    font-weight: 600;
}
.success-box p {
    margin: 1pc 0;
}
.success-box a {
    color: green;
    padding: 5px 40px;
    border-radius: 20px;
    border: 2px solid green;
    text-decoration: none;
}
.success-box a:hover {
    background: green;
    color: #ffffff;
    transition: .3s;
}
/* ---------------------- User ---------------------- */
.user-profile-main {
    padding: 2pc;
}
.user-profile-box {
    height: 600px;
    padding: 2pc 0;
    margin-top: 100px;
    border-radius: 10px;
    background: #909090;
}
.user-details,
.user-stats {
    border-radius: 10px;
    background: #ffffff;
}
.user-details h2 {
    font-weight: 500;
    margin-bottom: 20px;
}
.user-details img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px 2px #a8a8a8;
}
.user-details h5 {
    font-weight: 600;
    color: green;
    margin: 10px 0;
    font-size: 18px;
}
.user-details span {
    width: 100%;
    display: flex;
    font-weight: 500;
    padding: 0 4pc;
    line-height: 35px;
    letter-spacing: .4px;
    justify-content: flex-start;
}
.user-details span p:nth-child(1) {
    color: #e84e36;
}
.user-details span p:nth-child(2) {
    margin-left: 5px;
}
.user-stats h3 {
    font-weight: 600;
    color: #e84e36;
    margin-bottom: 10px;
}
.user-stats span {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
.user-stats span h4 {
    font-weight: 600;
}
.user-stats a {
    color: #ffffff;
    padding: 7px 40px;
    border-radius: 6px;
    background-color: #e84e36;
    text-decoration: none;
}
.user-stats a:hover {
    transition: .3s;
    background: #a13929;
}
/* --------------------- Book Meetings ----------------------- */
.book-page {
    height: auto;
    margin-top: 100px;
    padding: 2pc;
}
.book-page h2 {
    font-weight: 500;
    color: #e84e36;
    letter-spacing: .6px;  
}
.book-box-main {
    flex-wrap: wrap;
    row-gap: 2pc;
    margin-top: 1pc;
}
.book-box {
    width: 370px;
    height: 550px;
    flex-wrap: wrap;
    padding: 1pc;
    border-radius: 10px;
    background: #ff9484;
}
.book-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.book-box h3 {
    font-weight: 600;
    font-size: 23px;
}
.book-box h4 {
    font-weight: 600;
    letter-spacing: .4px;
}
.book-box p {
    font-weight: 500;
    color: #555555;
}
.book-box span {
    margin-top: 10px;
}
.book-box span i {
    color: #ffc400;
}
.book-box a {
    width: 100%;
    margin: auto;
    text-decoration: none;
    text-align: center;
    color: #000000;
    padding: 5px 0;
    border-radius: 5px;
    border: 2px solid #000000;
}
.book-box a:hover {
    color: #ffffff;
    transition: .3s;
    background: #000000;
}
.book-form {
    position: absolute;
    top: 100px;
    padding: 2pc 0;
    height: auto;
    backdrop-filter: blur(7px);
    background: rgba(0, 0, 0, 0.164);
}
#book-form {
    display: none;
}
.book-form form {
    width: 400px;
    height: 600px;
    padding: 1pc;
    border-radius: 10px;
    background: #e84e36;
}
.book-form img {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    cursor: pointer;
}
.book-form form input,
.book-form form select,
.book-form form textarea {
    outline: 0;
    padding: 7px;
    margin: 5px 0;
    font-size: 14px;
    border-radius: 5px;
    border: 2px solid #fff;
}
.book-form form input[type="submit"] {
    background: #000;
    color: #fff;
    border: 0;
    cursor: pointer;
}
.book-form form input[type="submit"]:hover {
    transition: .3s;
    background: #313131;
}
.book-form form p {
    text-align: center;
    background: #727272;
    color: #fff;
    padding: 5px 0;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 5px;
}
.import-users {
    position: absolute;
    width: 380px;
    height: 400px;
    padding: 1pc;
    line-height: 35px;
    background: #fff;
}
#import-users {
    display: none;
}
.import-users p {
    position: absolute;
    right: 10px;
    top: 10px;
    color: red;
    cursor: pointer;
}
.import-users p:hover {
    text-decoration: underline;
}
#book-book {
    color: #ffffff;
    padding: 7px 30px;
    border-radius: 7px;
    background: #e84e36;
    text-decoration: none;
}
/* -------------------- Keyframes animations -------------------- */
@keyframes banner {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
@keyframes bannerMove {
    0% {
        margin-top: 200px;
        opacity: 0;
    }
    100% {
        margin-top: 0;
        opacity: 1;
    }
}
@keyframes bannerMoveOne {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes login {
    0% {
        opacity: 0;
        margin-top: 300px;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}
@media only screen and (max-width:724px) {
    #nav-links {
        display: none;
    }
    #close {
        display: none;
    }
    .navigation,
    .nav-links,
    .booking-experience-main,
    .bookitup-features-main,
    .footer,
    .footer-links,
    .services-start,
    .service-start-box,
    .main-service,
    .newsletter span,
    .contact-main,
    .contact-right span {
        height: auto;
        flex-direction: column;
    }
    .nav-logo,
    .nav-links,
    .booking-experience-main-left,
    .booking-experience-main-right,
    .features-left,
    .features-right,
    .footer-links-box,
    .signin-form,
    .main-service-box,
    .newsletter span,
    .contact-left,
    .contact-right,
    .contact-right form span input[type="text"],
    .contact-right form span input[type="email"],
    .contact-right form span input[type="number"],
    .support-form-main form {
        width: 100%;
    }
    .signin-form {
        height: 100vh;
    }
    .nav-links li {
        line-height: 40px;
    }
    .nav-logo {
        position: relative;
    }
    .banner img {
        top: 80px;
    }
    #bars,
    #close {
        position: absolute;
        top: 35px;
        right: 30px;
        font-size: 20px;
    }
    #bars {
        display: block;
    }
    .banner-main h1,
    .page-heading div {
        font-size: 22px;
        text-align: center;
    }
    .banner-main p,
    .home-heading p {
        width: 90%;
    }
    .service-start-box p,
    .main-service-box p,
    .newsletter p {
        font-size: 14px;
    }
    .banner-main a,
    .features-right a {
        font-size: 14px;
        padding: 6px 15px;
    }
    .home-heading h2,
    .services-common h2,
    .newsletter h2 {
        font-size: 20px;
        text-align: center;
    }
    .features-left img,
    .booking-experience-main-left img,
    .features-left img {
        width: 90%;
    }
    .exp-one h4,
    .exp-two h4,
    .features-right span h4,
    .service-start-box h3,
    .main-service-box h3 {
        font-size: 16px;
    }
    .exp-one p,
    .exp-two p {
        width: 80%;
        font-size: 14px;
    }
    .exp-two {
        margin-top: 20px;
    }
    .features-right span {
        width: 100%;
    }
    .features-right a {
        width: 180px;
        margin-bottom: 20px;
    }
    .footer,
    .service-start-box,
    .contact-right form,
    .contact-left,
    .contact-right {
        padding: 1pc;
    }
    .footer h2 {
        padding: 1pc 0;
    }
    .page-heading {
        margin-top: 80px;
        height: auto;
    }
    .page-heading div {
        padding: 2pc 0;
    }
    /* -------------------- Sign in ------------------------ */
    #home {
        color: #000000;
        z-index: 10;
        font-size: 16px;
        top: 10px;
        left: 10px;
    }
    .signin-form {
        border-radius: 0;
    }
    /* ------------------ Services ------------------ */
    .service-start-box {
        width: 95%;
        margin: auto;
        margin-bottom: 1pc;
    }
    .main-service-box img,
    .service-start-box img {
        width: 25px;
    }
    .main-service-box h3,
    .main-service-box p {
        margin-left: 40px;
    }
    .newsletter p {
        text-align: center;
    }
    .newsletter span {
        justify-content: center;
        align-items: center;
    }
    .newsletter span input[type="email"] {
        width: 350px;
    }
    .newsletter span input[type="submit"] {
        padding: 7px 0;
        margin-top: 10px;
    }
    .contact-left,
    .contact-right {
        line-height: 30px;
    }
    .contact-left p {
        margin-top: 10px;
    }
    .contact-right form span input[type="text"],
    .contact-right form span input[type="number"] {
        margin-top: 20px;
    }
}