body{
    margin: 0;
    font-family: montserrat_regular, sans-serif;
}
.menu_btn_wrap{
    background: #ef0d33;
    border-radius: 3px;
    box-shadow: 0px 2px 19px 9px rgba(239, 13, 51, 0.08);
    color: #fff;
    position: absolute;
    top: 12px;
    right: 40px;
    cursor: pointer;
    font-size: 0;
    z-index: 1000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 1px;
}
#menu_title{
    width: 0px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
    font-weight: 400;
    font-family: montserrat_light;
    font-size: 10px;
    border-right: 1px solid rgba(197, 11, 42, 0.4);
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}
.call_icon{
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 30px;
    background: url(../images/call.png) no-repeat center;
    background-size: 15px;
    cursor: pointer;
    border-right: 1px solid rgba(197, 11, 42, 0.4);
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.menu_icon{
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 30px;
    background-size: 25px;
    cursor: pointer;
}
#nav-icon3{
    width: 15px;
    height: 45px;
    position: relative;
    margin: 9px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
#nav-icon3 span{
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}
#nav-icon3 span:nth-child(1){
    top: 0px;
}
#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3){
    top: 6px;
}
#nav-icon3 span:nth-child(4){
    top: 12px;
}
.menu_wrapper{
    height: 100%;
    display: none;
}
.menu_icon:hover, .call_icon:hover{
    background-color: #d60c2e;
}
.menu_open .menu_wrapper{
    display: block;
    animation: fadeIn 1s;
    z-index: 10;
}
.menu_wrapper.open .menu_links_wrap{
    right: 0%;
}
.menu_links_wrap{
    position: absolute;
    right: -100%;
    top: 0px;
    bottom: 0;
    background: #f5f5f5;
    width: 22.5%;
    padding: 20px 30px;
    box-sizing: border-box;
    z-index: 1;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
h3.main_head{
    font-size: 50px;
    font-weight: bolder;
    color: #EBEBEB;
    margin: 0px;
    line-height: 60px;
    margin-top: 40px;
}
.menu_links_wrap>ul{
    list-style: none;
    padding: 10px 30px 0px 0px;
    border-bottom: 1px solid #ebebeb;
}
@keyframes menuSlideLeft {
    0% {
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}
.menu_open .menu_links_wrap ul li{
    animation: menuSlideLeft 0.5s forwards;
    animation-delay: 0.5s;
}
.menu_links_wrap ul li{
    position: relative;
    opacity: 0;
}
.menu_links_wrap ul>li>a{
    color: #121315;
    padding: 6px 10px;
    display: block;
    font-size: 11px;
    margin: 0px 0px;
    font-weight: 600;
    font-family: montserrat_light, sans-serif;
    border: 1px solid transparent;
    line-height: 24px;
}
.menu_outer{
    z-index: 1000;
    position: relative;
    left: 0px;
    top: 10px;
    width: 100%;
}
.menu_open{
    overflow: hidden !important;
}
.menu_open .menu_outer{
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
}
.menu_open .call_icon{
    width: 0;
    padding: 0;
    border: none;
}
.menu_open #nav-icon3 span:nth-child(1), .detail_open #nav-icon3 span:nth-child(1){
    top: 6px;
    width: 0%;
    left: 50%;
}
.menu_open #nav-icon3 span:nth-child(2), .detail_open #nav-icon3 span:nth-child(2){
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu_open #nav-icon3 span:nth-child(3), .detail_open #nav-icon3 span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.menu_open #nav-icon3 span:nth-child(4), .detail_open #nav-icon3 span:nth-child(4){
    top: 6px;
    width: 0%;
    left: 50%;
}
.menu_links_wrap ul>li:hover>a, .menu_links_wrap ul>li.active>a{
    background-color: white;
    color: #ef0d33;
}
img{
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}
.top_bar .logo img{
    width: 174px;
    height: auto;
    padding: 13px 0 13px 0px;
    position: absolute;
}
section#contact {
    line-height: 1.7;
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}
.contact-info svg{
    float: left;
}
.section-title-icon svg{
    opacity: 0.7;
}
#contact-form .form-group input[type=email] {
    font-size: 12px;
}
#contact-form .form-group input[type=text]{
    display: block;
    width: 100%;
    padding: .675rem .75rem;
    font-size: 12px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    height: unset;
}
#contact-form textarea.form-control{
    display: block;
    width: 100%;
    padding: .675rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.submitBnt.btn.btn-custom{
    color: #f3f3f3;
    border-color: #ff5168;
    background-color: #ff5168;
    padding: 14px 45px;
}
.submitBnt.btn.btn-custom:hover{
    background-color: #d04254;
}
.bg-footer{
    background: #242424 !important;
    line-height: 1.6;
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}
.footer-title{
    font-size: 20px;
    color: #fff;
}
.footer-info{
    color: #cecece;
    padding-bottom: 12px;
}
.footer-link a{
    color: #cecece;
    line-height: 32px;
    transition: all 0.5s;
  
}
.footer-alt{
    color: #cecece;
}
a:hover{
    text-decoration: unset;
}
.footer-icon{
    padding-top: 5px;
    padding-right: 12px;
}
.footer-social a{
    color: #ff566d;
    font-size: 18px;
    transition: all 0.5s;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    border: 2px solid #ff566d;
    display: inline-block;
    text-align: center;
    line-height: 36px;
}
.footer-link a:hover{
    color: #918bca;
}
.contact_clicked {
    position: relative;
    overflow: hidden;
}
.contact_clicked::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/loaderwhite.gif);
    background-position: center;
    background-size: 20%;
    background-repeat: no-repeat;
    z-index: 1;
}
.contact_clicked::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: .5;
}
@media only screen and (max-width: 768px) {
    .menu_links_wrap{
        width: 33.5%;
    }
}
@media only screen and (max-width: 578px){
    .menu_links_wrap{
        width: 100%;
    }
    #contact-form label{
        font-size: 12px;
    }
}