*, *::before, *::after {
    box-sizing: border-box;
}
body{
    font-family: 'Open Sans', sans-serif;
    /* font-family: 'Bungee Inline', cursive; */
    margin: 0;
}
body.bg-img{
    background: url('../images/background.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.container {
    width: 1200px;
    margin: auto;
}
.header-nav{
    width: 100%;
    background: #fff;
}
.header-nav .container{
    display: flex;
    align-items: center;
}
.brand-logo{
    width: 50%;
}
.brand-logo img{
    height: 60px;
    padding-top: 0.5rem;
    object-fit: contain;
    margin-bottom: 0.5rem;
}
.page-links {
    width: 50%;
    text-align: right;
    font-weight: 500;
}
.page-links a{
    text-decoration: none;
    color: #333;
    font-family: 'Bungee Inline', cursive;
}.page-links a:hover{
    text-decoration: underline;
}
.poster{
    position: relative;
    z-index: 0;
}
.poster-image{
    background: url('../images/welcome_poster.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height:325px;
    object-fit: contain;
}
.content {
    margin-bottom: 3rem;
}
h2.title {
    font-size: 34px;
    color: #333;
    line-height: 30px;
    text-align: center;
    font-family: 'Bungee Inline', cursive;
}
h4.subtitle {
    font-size: 18px;
    line-height: 25px;
    margin: auto;
    text-align: center;
    color: rgba(0,0,0,.54);
    font-weight: 400;
}
ul.dashboards{
    text-align: center;
}
ul.dashboards li.dashboard-item{
    display: inline-block;
    width: 125px;
    margin: 1rem;
}
ul.dashboards li.dashboard-item a.dashboard-item-link{
    width: 96px;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255,0,0,0);
}
ul.dashboards li.dashboard-item a.dashboard-item-link .dashboard-img{
    width: 76px !important;
    height: 76px !important;
    margin: 0 auto;
    border-radius: 50%;
    place-content: center;
    display: grid;
    border: 0.2rem solid #333;
}
ul.dashboards li.dashboard-item a.dashboard-item-link .dashboard-img img{
    width: 42px;
    height: 42px;
}
ul.dashboards li.dashboard-item a.dashboard-item-link .dashboard-item-name{
    margin-top: 15px;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #555;
    font-weight: 500;
    font-family: 'Bungee Inline', cursive;
}
ul.dashboards li.dashboard-item a.dashboard-item-link:hover .dashboard-img{
    -webkit-box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 30%);
    box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 30%);
    border-radius: 50%;
}
/* .admin.dashboard-img{
    background-image: url('../images/admin-icon.png');
}
.vendor.dashboard-img{
    background-image: url('../images/vendor-login-icon.png');
} */
.footer {
    background: #fff;
}
.footer-bottom {
    min-height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #eaeaea;
    margin-top: 0.5rem;
}
.copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 14px;
    color: #757575;
}

.pages__container{
    width: 1200px;
    margin: auto;
    text-align: justify;
}
.pages__container p{
    line-height: 1.5;
}
.pages__page_heading{
    text-transform: uppercase;
    font-family: 'Bungee Inline', cursive;
}

.footer .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.5rem 0;
    color: #757575;
}
.footer .col h3{
    margin-bottom: 0.5rem;
    font-family: 'Bungee Inline', cursive;
}
.footer .col p{
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}
.footer .col p a{
    color: #757575;
    text-decoration: none;
}
.footer .col .social-links {
    width: 100%;
    margin-top: 1rem;
}

.footer .col .social-links a{
    text-decoration: none;
    padding: 0 0.3rem;
}
.footer .col .social-item{
    width: 24px;
}


@media screen and (min-width: 800px) and (max-width: 1200px) {
    .pages__container, .container {
        width: 760px;
        margin: auto;
    }
    .brand-logo {
        width: 40%;
    }
    .page-links {
        width: 60%;
    }
    .poster-image{
        background-size: cover;
    }
}

@media screen and (min-width: 480px) and (max-width: 800px) {
    .pages__container, .container {
        width: 600px;
        margin: auto;
    }
    .brand-logo {
        width: 30%;
    }
    .page-links {
        width: 70%;
        font-size: 14px;
    }
    .poster-image{
        background-size: cover;
    }
}

@media screen and (max-device-width: 480px) {
    .container {
        width: 420px;
        margin: auto;
    }
    .pages__container{
        width: 400px;
    }
    .header-nav .page-links, .footer .row{
        display: none;
    }
    .brand-logo {
        width: 30%;
    }
    .poster-image{
        background-size: cover;
    }
    .footer-bottom, .copyright{
        max-width: 100%;
    }
}

@media screen and (max-device-width: 360px) {
    .container {
        width: 320px;
        margin: auto;
    }
    .pages__container{
        width: 300px;
    }
    .header-nav .page-links, .footer .row{
        display: none;
    }
    ul.dashboards{
        padding: 0;
    }
    .brand-logo {
        width: 30%;
    }
    .poster-image{
        background-size: cover;
    }
    .footer-bottom, .copyright{
        max-width: 100%;
    }
}
