/* 
    Created on : Mar 17, 2021, 2:43:55 PM
    Author     : Avinash
*/

body {
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a {
    text-decoration: none !important;
}
.logo {
    height: 4em;
}
.navbar {
    position: fixed;
    box-shadow: 1px 1px 10px #000000;
    width: 100%;
    z-index: 11;
    background-color: white;
}
.navbar-contact {
    position: absolute;
    right: 7em;
}
.navbar-contact span {
    color: black;
    padding: 0 1em;
}
.menu-icon {
    padding: 0.5em 1em;
    font-size: 2em;
    color: black;
    cursor: pointer;
}
.menu {
    position: fixed;
    top: 0;
    z-index: 12;
    background-color: #4D4C4D;
    width: 100%;
    height: 100%;
    display: none;
}
.menu ul {
    list-style-type: none;
    text-align: center;
    margin: 11% 0;
    padding: 0;
}
.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 4em;
    transition: color 0.5s ease-out 0.1s;
}
.menu ul li a:hover, .close:hover {
    color: #DC2A26;
}
.close {
    color: white;
    font-size: 2em;
    float: right;
    margin-right: 2em;
    margin-top: 1em;
    cursor: pointer;
}
section, footer {
    padding: 2em 0;
}
.font-weight-bold {
    font-weight: bold;
}
.section-1 {
    background-color: #eeeeee;
}
.section-1 img {
    padding: 0.8em 0;
}
h2::after {
    content: "______";
    display: block;
    position: relative;
    bottom: 0.7em;
    color: #dc2a26;
    font-weight: bold;
    font-family: cursive, sans-serif;
}
.banner {
    background-color: #4D4C4D;
    color: white;
    padding-top: 10em;
}
.testimonials {
    background-color: #eeeeee;
    color: black;
}
.blockquote p::before {
    content: '"';
    font-size: 2em;
    position: relative;
    color: #DC2A26;
    top: 0.2em;
}
.blockquote p::after {
    content: '"';
    font-size: 2em;
    position: relative;
    color: #DC2A26;
    top: 0.2em;
    line-height: 0.8;
}
.blockquote-footer {
    margin: 0;
    color: black;
    font-size: 1.5em;
}
footer {
    background-color: #DC2A26;
    color: white;
}
footer h4 {
    display: inline-block;
    border-bottom: 2px solid white;
    padding-bottom: 0.4em;
}
footer a {
    color: white;
    text-decoration: none;
}
footer ul {
    list-style-type: none;
    padding: 0;
}
footer ul li {
    margin-bottom: 1em;
}
footer ul li a {
    font-weight: bold;
}
footer ul li a:hover, footer a:hover {
    color: black;
}
.contact-link {                
    display: inline-block;
    text-decoration: none;
    padding: 0.5em 1em;
    border: 1px solid white;
    font-weight: bold;
    border-radius: 5px;
    font-size: 0.9em;
}
.contact-link:hover {
    color: #DC2A26;
    background-color: white;
}
.contact-mail {
    display: block;
    margin-top: 1em;
    font-weight: bold;
    text-decoration: none;
}
.contact-mail:hover {
    color: black;
}
.social-links li {
    display: inline-block;
}
.social-links li a {
    display: inline-block;
    font-size: 1.3em;
    margin-right: 0.7em;
}
.copyright-law {
    position: relative;
    margin-top: 1em;
}
.copyright-law p {
    border-top: 1px solid white;
    padding-top: 1em;
    width: 98.7%;
}
.footer-end {
    border-top: 1px solid white;
    padding-top: 1em;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
.creator a {
    color: black;
    text-decoration: none;
}
.move-top {
    display: none;
    position: fixed;
    background-color: #DC2A26;
    color: white;
    right: 1em;
    bottom: 1em;
    padding: 0.5em 1em;
    cursor: pointer;
}
.mp-box {
    color: white;
    height: 16.6em;
    overflow: hidden;
}
.mp-box .box-inner {
    display: flex;
    position: relative;
    bottom: 0em;
    height: inherit;
    background-color: black;
    opacity: 0.8;
    transition: all .3s ease-out;
    z-index: 10;
}
.mp-box .box-inner h5 {
    margin: auto;
}
.mp-box:hover > .box-inner {
    bottom: 16.7em;
}

@media screen and (min-width: 1900px) {
    .container-custom {
        max-width: 1770px !important;
    }   
    .menu ul li a {
        font-size: 6em;
    }
    .logo {
        height: 5em;
    }
}