/* -------------- BASE */
body, html { 
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    background-color: #ffffff;
    background: url(../assets/images/bbg.jpg);
    background-size: cover;
    background-position: top right;
    border-left: 20px solid #bd1e2d;
}
a {
    color: #bd1e2d;
    text-decoration: none;
}
a:hover {
    color: #bd1e2d;
    text-decoration: none;
    transition: all .2s linear;
}
iframe {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    width: 500px;
    margin-bottom: 20px;
}
.main-content { 
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
@media (max-width: 991px) {
    .main-content { 
        width: 100%;
        padding: 0 60px;
    }
}
.main-content .logo { 
    width: 100%;
    max-width: 480px;
    margin-bottom: 30px;
}
h2 { 
    font-size: 18px;
}
.main-content .contact ul,
.main-content .social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    margin-bottom: 40px;
}
.main-content .contact li,
.main-content .social li {
    display: inline-block;
    margin-right: 10px;
}
.main-content .contact li a { 

}
.main-content .social li img { 
    width: 100%;
    max-width: 22px;
    transition: all .2s ease-in;
}
.main-content .social li a:hover img { 
    opacity: .5;
}