@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

*{
    margin:0;
    padding:0;
    text-decoration:none;
    list-style:none;
}
 

/* Scroll Bar Css Starts */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background-color: #ffffff;
    box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.15);
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 20px;
    border-radius: 0;
    background: #292929;
    border: 2px solid #ffffff;
    width: 8px;
}
::-webkit-scrollbar-thumb:active {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #616161;
}
/* Scroll Bar Css Ends */

a:hover,
a:focus,
a:active{
    text-decoration: none;
}
ol, ul{
    margin: 0;
    padding: 0;
}
img{
    display: block;
}
body{
    font-family: 'Roboto Condensed';
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

/* Navigation Section */ 
.topbar{
    padding: 0 0;
    width: 100%;
    background: #f7f7f7;
}
.topbar ul{text-align: center;}
.topbar ul li{display: inline-block;margin-right:25px;}
.topbar ul li:last-child{margin: 0;}
.topbar ul li a{
    padding: 15px 0;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    display: inline-block;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.topbar ul li a:hover{
    color: #EC1E24;
}
.logo-block{
    padding: 15px 0;
}
.logo-bx img{
    margin: 0 auto;
}
.navbar-default{
    background:#fff;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin:0;
    padding: 10px 0;
    z-index: 99;
    box-shadow: 0 6px 6px rgba(0,0,0,0.03);
}
.navbar-default .navbar-nav{text-align: center;float: none;}
.navbar-default .navbar-nav>li{
    margin-right:5px;
    display: inline-block;
    float: none;
}
.navbar-default .navbar-nav>li:last-child{
    margin-right: 0;
}
.navbar-default .navbar-nav>li>a{
    padding: 8px 8px;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    border-radius: 3px;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.navbar-default .navbar-nav>li .dropdown-menu{
    padding: 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    border: none;
    background: #fff;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.navbar-default .navbar-nav>li .dropdown-menu li a{
    display: block;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: normal;
    color: #242424;
}
.navbar-default .navbar-nav>li:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
}
.navbar-default .navbar-nav>li:last-child a{
    margin-right: 0;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:hover{
    color: #fff;
    background: #EC1E24;
}

.navbar-default .navbar-nav>li .active{
    color: #fff !important;
    background: #EC1E24;
}

.navbar-default .navbar-nav>li.active a,
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
    color: #fff;
    background: #EC1E24;
}

/* Toggle */
.navbar-toggle .icon-bar { background: #fff;transition: .5s ease;}
.navbar-toggle.collapsed .icon-bar:nth-child(2){transform: rotate(0)translateY(0)translateX(0);}
.navbar-toggle.collapsed .icon-bar:nth-child(3){opacity:1}
.navbar-toggle.collapsed .icon-bar:nth-child(4){transform:rotate(0)translateY(0)translateX(0);}
.navbar-toggle .icon-bar:nth-child(2){transform: rotate(-45deg)translateY(5px)translateX(-5px);}
.navbar-toggle .icon-bar:nth-child(3){opacity: 0}
.navbar-toggle .icon-bar:nth-child(4){transform:rotate(45deg)translateY(-4px)translateX(-3px);}
.navbar-default .navbar-toggle{
    border-color: #000;
    transition: all 0.3s ease;
}
.navbar-default .navbar-toggle .icon-bar{
    background: #000;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover{
    background: #ca031a;
    border-color: #d4670c;
}
.navbar-default .navbar-toggle:hover .icon-bar,.navbar-default .navbar-toggle:focus .icon-bar{
    background: #fff;
}

.bar-mobile i{
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    line-height: 40px;
    text-align: center;
    font-size: 24px;
    color: #000;
    float: right;
    display: none;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.bar-mobile i:focus,
.bar-mobile i:hover{
    background: #EC1E24;
    color: #fff;
    border-color: #EC1E24;
}

/* **** Mobile Menu ***** */
.mobile-menu{
    padding:45px 0;
    background: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    z-index: 99;
    height: 100vh;
    box-shadow: 0 0 6px rgba(0,0,0,0.16);
    overflow: auto;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.close-menus{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size:30px;
    font-weight: 500;
    color: #fff;
    background: #EC1E24;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.close-menus:focus,
.close-menus:hover{
    background: #242424;
    color: #fff;
}
.menu-box li{
    display: block;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #999;
    position: relative;
}
.menu-box li a{
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    color: #242424;
    display: block;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.menu-box li a.dropdown-toggle{
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    width: 40px;
    background:#f7f7f7;
}
.menu-box li:last-child{border-bottom: none;}
.menu-box li a i{
    float: right;
    padding: 5px 0 0;   
}
.menu-box li .dropdown-menu{
    padding:15px 20px;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
}
.menu-box li .dropdown-menu li:last-child a{border-bottom: none;}
.menu-box li a:hover{
    color: #fff;
    background: #EC1E24;
}

.mobile-menu.mobile-menu-open{
    right: 0;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}

.nav-new{
    position: fixed;
    width: 100%;
    padding: 8px 0;
    transition: .4s linear;
    top: 0;
    background: #fff;
    left: 0;
    border-radius: 0;
    box-shadow: 0px 1px 7px rgb(0 0 0 / 20%);
    z-index: 9999;
}
/* **** End Mobile Menu ***** */
/* End Navigation CSS */

/* **** Banner **** */
.banner-wrpper{
    width: 100%;
}
.banner-img{
    position: relative;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.banner-img img{width: 100%;}
.banner-data{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.50);
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
    opacity: 0;
    visibility: hidden;
}
.banner-img:hover .banner-data{opacity: 1;visibility: visible;}
.banner-logo img{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 250px;
    margin: 0 auto;
    transform: translate(0,-50%);
}

.left-text{
    padding: 15px 35px 15px 0;
    border-bottom: 1px solid #fff;
    display: table;
    top: 35%;
    left: 40px;
    position: absolute;
}
.left-secon{
    top: 55%;
    border-top: 1px solid #fff;
    border-bottom:none;
}
.right-text h1,
.left-text h1{
    font-size: 22px;
    font-weight:500;
    color: #fff;
    margin: 0 0 10px;
}
.right-text h6,
.left-text h6{
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    letter-spacing:3px;
    margin: 0;
}
.right-text{
    padding: 15px 0px 15px 35px;
    border-bottom: 1px solid #fff;
    display: table;
    top: 35%;
    right: 40px;
    position: absolute;
    text-align: right;
}
.right-secon{
    top: 55%;
    border-top: 1px solid #fff;
    border-bottom:none;
}

.top-text{
    top:50px;
    left: 37%;
    padding: 0 15px;
    border-left: 1px solid #fff;
    position: absolute;
    min-height: 150px;
}
.top-text h1,
.bottom-text h1{
    font-size: 22px;
    font-weight:500;
    color: #fff;
    margin: 0 0 10px;
}
.top-text h6,
.bottom-text h6{
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    letter-spacing:3px;
    margin: 0;
}
.top-second{
    left: 55%;
}
.bottom-text{
    bottom:50px;
    left: 30%;
    padding: 100px 15px 0;
    border-right:1px solid #fff;
    position: absolute;
    text-align: right;
}
.bottom-second{
    right: 25%;
    left: auto;
    border-left: 1px solid #fff;
    border-right: none;
    text-align: left;
}
/* **** End Banner **** */

/* **** About **** */
.about-box{
    padding: 30px;
    border: 1px solid #000;
    border-top: none;
}
.about-box h2{
    font-size:36px;
    font-weight: 400;
    color: #000;
    margin: 0 0 15px;
}
.about-box h4{
    font-size: 22px;
    color: #000;
    font-weight:600;
    margin: 0 0 25px;
}
.about-box p{
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
    margin: 0 0 25px;
}
.about-box h6{
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px;
}
.some-abts{
    padding: 15px ;
    background: #8B0000;
    width: 100%;
}
.some-abts h4{
    margin: 0 0 5px;
    background: #fff;
    font-size: 24px;
    color: #000;
    font-weight: normal;
    display: table;
}
.some-abts p{
    margin: 0 0 25px;
    font-size: 24px;
    color: #000;
    line-height:30px;
    text-align: justify;
    font-weight: normal;
    display: table;
}
.some-abts p span{display: table;margin: 0 0 5px;background: #fff;}
.some-abts p:last-child{margin: 0;}

.exportbx{
    border: 1px solid #000;
    margin: 5px 0;
}
.exportbx h5{
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0 0 5px;
}
.exportbx p{
    font-size: 16px;
    font-weight: normal;
    color: #000;
    margin: 0 0 25px;
    line-height: 22px;
}

.pro-slider .owl-prev, .pro-slidery .owl-next{
    position: absolute;
    top: 50%;
    left: 0px;
}
.pro-slider .owl-next{
    left: auto;
    right: 0px;
}
.pro-slider .owl-prev:before,.pro-slider .owl-next:before{
    position: absolute;
    content:"\f104";
    font-family: 'FontAwesome';
    font-size:42px;
    color: #fff;
    top: 50%;
    width: 35px;
    height: 35px;
    line-height:35px;
    text-align: center;
    left: 0;
    font-weight: normal;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.pro-slider .owl-prev:hover:before,.pro-slider .owl-next:hover:before{
    color: #fff;
    border-color: transparent;
}
.pro-slider .owl-next:before{
    content: "\f105";
    right: 0;
    left: auto;
}

.pro-slider .owl-dots{
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translate(-50%,0);
}
.pro-slider .owl-dot{
    display: inline-block;
    margin-right: 10px;
    position: relative;
}
.pro-slider .owl-dot:last-child{
    margin-right: 0;
}
.pro-slider .owl-dot span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: transparent;
    border: 2px solid #fff;
}
.pro-slider .owl-dot.active span{
    background: #fff;
}

.pro-slider h3{
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 28px;    
    font-weight: normal;
    color: #000;
    text-shadow: rgba(255, 255, 255, 0.6) 1px 1px 1px, rgba(0, 0, 0, 0.6) -1px -1px 1px;
}
.pro-slider h3 span{
    background: #fff;
    display: table;
    margin: 0 0 5px;
    padding: 3px;
}
.pro-slider h5{
    position: absolute;
    bottom:55px;
    left: 0px;
    right: 0;
    width: 100%;
    text-align: center;
    font-size: 28px;    
    font-weight: normal;
    color: #000;
    text-shadow: rgba(255, 255, 255, 0.6) 1px 1px 1px, rgba(0, 0, 0, 0.6) -1px -1px 1px;
    margin: 0 auto;
}
.pro-slider h5 span{
    background: #fff;
    text-align: center;
    display: table;
    margin: 0 auto 5px;
    padding: 3px;
    width: auto;
}

.specialize p:last-child{margin: 0;}

.channels-wrp{position: relative;}
.channels-wrp ul{width: 100%;overflow: hidden;}
.channels-wrp li{
    width: 33.33%;
    float: left;
}
.channels-box {position: relative;}
.channels-box img{width: 100%;height: 600px;object-fit: cover;}

.some-data-serv{
    position: absolute;
    top: 45px;
    left: 45px;
    right: 45px;
}
.some-data-serv h4{
    font-size: 25px;
    font-weight: 400;
    color: #000;
    padding: 5px 3px;
    background: #fff;
    margin: 0 0 5px;
    display: table;
}
.some-data-serv h6{
    font-size: 22px;
    font-weight: normal;
    color: #000;
    padding: 3px 3px;
    background: #fff;
    margin: 0 0 5px;
    display: table;
}
.channel-box{
    position: absolute;
    top: 40%;
    left: 30px;
    right: 30px;
}
.channel-box h3{
    padding: 5px 25px;
    background: #fff;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: table;
    margin: 0 auto 45px;
}
.channel-box p{
    font-size: 16px;
    font-weight: normal;
    color: #000;
    width: 100%;
    text-align: justify;
    margin: 0 0 8px;
}
.channel-box p span{   
    background: #fff;
    padding: 3px;
    display: initial;
}

.no-border{border: none;}

.service-box{
    padding: 15px;
    margin: 0 0 30px;
}
.service-box img{
    margin: 0 auto 30px;
}
.service-box h4{
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin: 0 0 15px;
}
.service-box p{
    font-size: 16px;
    font-weight: normal;
    color: #000;
    line-height: 24px;
    margin: 0 0 10px;
    text-align: justify;
}
.services{
    padding: 30px 30px 0;margin: 0;
}

.serv-industry .channel-box{
    top: 40px;
    bottom: auto;
}
.serv-industry .channel-box h3{
    padding: 0;
    letter-spacing: 3px;
}
.about-box li a{
    display: block;
    padding:3px 0 3px 18px;
    font-size: 20px;
    font-weight: normal;
    color: #414141;
    position: relative;
}
.about-box li a:before{
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #414141;
    top: 13px;
    left: 0;
}
/* **** End About **** */

/* **** Footer **** */
footer{
    padding: 30px 0;
    width: 100%;
    border-top: 4px solid #EC1E24;
    margin: 30px 0 0;
}
.footer-left ul{overflow: hidden;margin: 0 0 15px;}
.footer-left li{
    display: inline-block;
    margin-right: 20px;
}
.footer-left li:last-child{margin: 0;}
.footer-left li a{
    font-size: 18px;
    color: #000;
    display: inline-block;
    position: relative;
}
.footer-left li a:after{
    position: absolute;
    content: '';
    width:2px;
    height:80%;
    right: -13px;
    top:50%;
    transform: translate(0,-50%);
    background: #242424;
}
.footer-left li:last-child a:after{display: none;}
.footer-left p{
    font-size: 13px;
    font-weight: normal;
    color: #242424;
    margin: 0 0 15px;
}
.social-bx a img{
    display: inline-block;
    margin-right: 10px;
}
.social-bx a:last-child img{margin: 0;}
.foot-logo img{

}
.foot-logo p{
    font-size: 12px;
    font-weight: normal;
    color: #242424;
    margin: 5px 0 0;
}
/* **** End Footer **** */

/* **** Call Center Mauritius **** */
.btn-main{
    padding: 10px 15px;
    border: 2px solid #0E3E9B;
    border-radius: 30px;
    font-size: 20px;
    font-weight: normal;
    color: #000;
    text-align: center;
    width: 100%;
    display: block;
    margin: 35px auto;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.btn-main i{
    margin-left: 5px;
    font-size: 24px;
}
.btn-main:hover{
    color: #fff;
    background: #0E3E9B;
}
#myBtn{
    background:#EC1E24;
    width: 50px;
    height: 70px;
    display: none;
    position: fixed;
    text-align: center;
    bottom:30px;
    right: 15px;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    color: #fff;
    z-index: 999;
    border: none;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#myBtn i{
    font-size:32px;
    margin: 0 0 5px;
    display: block;
}
#myBtn span{
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
}
#myBtn:hover{
    background: #067AA6;
    color: #fff;
}
/* **** End Call Center Mauritius **** */

/* **** Contact Page **** */
.contact-wrp{
    width: 100%;
    padding: 35px 0 100px;
    background: rgb(232,232,232); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(232,232,232,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(232,232,232,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(232,232,232,1) 0%,rgba(255,255,255,1) 100%);
}
.contact-wrp h2{
    font-size: 25px;
    font-weight: 900;
    color: #a6a6a6;
    margin: 0 0 40px;
    text-transform: uppercase;
}
.contact-reach{
    padding: 60px 35px 0;
    background: #EC1E24;
    width: 100%;
    position: relative;
}
.contact-reach:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #EC1E24;
    left: -100%;
    top: 0;
}
.contact-reach h5{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.contact-reach h5 strong{
    display: block;
    font-size: 24px;
}
.contact-reach h5 span{
    display: block;
}
.cnt-bx-cnpg{display: flex;width: 100%;margin: 0 0 15px;}
.cnt-bx-cnpg i{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #067AA6;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    display: block;
    margin-right: 10px;
}
.cnt-bx-cnpg p{
    width: 80%;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    line-height: 24px;
    margin: 0;
}
.cnt-bx-cnpg p a{color: #fff;}
.sincen{align-items: center;}
.map-block{padding:0}
.cnt-add{
    margin:60px 0 0 0;
    position: relative;
    bottom: -60px;
}
.cnt-add img{width:100%;margin: 0 auto;}

.contact-form{
    margin: 60px 0 0;
    padding: 60px;
    background: #fff;
    position: relative;
    z-index: 5;
}
.contact-form .form-group{margin: 0 0 25px;}
.contact-form .form-control{
    padding: 12px 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 2px solid #067AA6;
    font-size: 15px;
    font-weight: bold;
    color: #898989;
    height: auto;
    resize: none;
}
.contact-form .btn-main{
    padding: 15px 55px;
    border-radius: 30px;
    border: 2px solid #067AA6;
    font-size: 18px;
    color: #067AA6;
    display: table;
    background: #fff;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.contact-form .btn-main:hover{
    background: #067AA6;
    color: #fff;
}

.cnt-quick {
    padding: 60px 0 60px;
}
.cnt-quick h4{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px;
}
.cnt-quick li a{
    padding: 5px 5px 5px 20px;
    position: relative;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    display: block;
     -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cnt-quick li a:before{
    position: absolute;
    content:"\f18e";
    font-family: 'FontAwesome';
    font-size: 15px;
    color: #fff;
    top:6px;
    left: 0;
     -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cnt-quick li a:hover{
    opacity: 0.80;
}

.other-cnt{
    padding: 60px 0 0;
}
.slider-block{width: 100%;display: block;}
.slider-block img{width: 100%;}
/* **** End Contact Page **** */


/* **** Contact **** */
.apply-wrp {
    padding: 50px 0;
}
.apply-wrp .contact-block{
    width: 50%;
    margin: 0 auto;
    display: table;
}
.title h2{
    font-size: 30px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 0 0 20px;
    border-bottom: 1px solid #eee;
}
.apply-wrp .contact-block .alert-default {
    margin: 30px 0 0;
    background-color: #F4F4F4;
    border: 1px solid #F1C8C7;
    color: darkred;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    position: relative;
}
.apply-wrp .contact-block .alert-dismissable .close, 
.apply-wrp .contact-block .alert-dismissible .close {
    position: absolute;
    top: 50%;
    right: 15px;
    color: inherit;
    transform: translate(0, -50%);
}
.apply-wrp .contact-block .redio-button-wrp{
    padding: 20px 0 0;
}
.apply-wrp .contact-block .redio-button-wrp label{
    font-size: 15px;
    font-weight:400;
    color: #666;
}


.apply-wrp .contact-block .form-block{
    padding: 20px 0;
}
.apply-wrp .contact-block .form-block p{
    /*padding-left: 15px;*/
    font-weight: 200;
    color: #666;
    font-size: 16px;
    margin: 0 0 30px;
}
.apply-wrp .contact-block .form-block .form-group{
    margin: 0 0 20px;
}
.apply-wrp .contact-block .form-block label{
    font-size: 15px;
    font-weight: 400;
    color: #666;
}
.apply-wrp .contact-block .form-block .control-label{
    font-size: 16px;
    font-weight:600;
    color: #000;
}
.apply-wrp .contact-block .form-block .form-group .form-control{
    font-size: 14px;
    font-weight: 200;
    color: #000;
    box-shadow: none;
    outline: none;
    border-radius: 0;
}
.apply-wrp .contact-block .form-block button{
    padding: 12px 20px;
    font-size: 14px;
    background:#222;
    border-radius: 5px;
    outline: none;
    box-shadow: none;
    color: #fff;
    outline: none;
    border: none;
	min-width:150px;
}
/* **** End Contact **** */ 


/* **** Blog Pages **** */
.blog-wrapper{
    padding: 60px 0;
    width: 100%;
}
.blog-block{
    margin: 0 0 30px;
}
.blog-img img{
    width: 100%;
    margin: 0 0 25px;
    border-radius: 3px;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.blog-list-data h3{
    font-size: 24px;
    font-weight: 800;
    color: #111;
    line-height: 30px;
    margin: 0 0 15px;
    transition: all 0.3s linear;
}
.blog-list-data h3:hover{
    color:#EC1E24;
}
.blog-list-data p{
    font-size: 15px;
    font-weight: normal;
    color: #717171;
    line-height: 24px;
    margin: 0 0 15px;
}

.blog-block .main-btn{
    padding: 10px 30px;
    background:#000;
    color: #fff;
    margin: 15px 0 0 ; 
    display: table;
    border-radius: 0;
    transition: all 0.3s linear;
}
.blog-block .main-btn:hover{
    background:#EC1E24;
    color: #fff;
}



.blog-sidebar{
    border: 1px solid #eee;
    background:#fff;
    border-radius: 0px;
    padding: 25px 15px;
}
.blog-sidebar .form-group{
    position: relative;
}

.blog-sidebar .form-group .form-control{
    border-radius: 0;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.blog-sidebar .form-group a{
    font-size: 16px;
    font-weight: 500;
    color: #666;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    transition: all 0.3s linear;
}
.blog-sidebar .form-group a:hover{
    color: #000;
}



.blog-sidebar .categories-wrp{
    padding: 25px 0 0;
}
.blog-sidebar .categories-wrp h2{
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 15px;
    text-transform: capitalize;
}
.blog-sidebar .categories-wrp ul li,
.blog-sidebar .categories-wrp  ul li a{
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0 0 8px;
}
.blog-sidebar .categories-wrp ul li span, .blog-sidebar .categories-wrp ul li a span{
    float: right;
    font-size: 18px;
    font-weight: 500;
}



.blog-sidebar .recent-wrp{
    padding: 35px 0 0;
}
.blog-sidebar .recent-wrp h2{
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 15px;
    text-transform: capitalize;
}
.blog-sidebar .recent-wrp  ul li{
    margin: 0 0 15px;
    padding:0 0 15px;
    display: flex;
    border-bottom: 1px solid #eee;
}
.blog-sidebar .recent-wrp  ul li:last-child{
    margin: 0;
    padding: 0;
    border: none;
}
.blog-sidebar .recent-wrp  ul li img{
    height: 60px;
    width:60px;
    margin-right: 16px;
    object-fit: cover;
}
.blog-sidebar .recent-wrp  ul li h5{
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px;
}
.blog-sidebar .recent-wrp ul li p{
    font-size: 15px;
    font-weight: 500;
    color: #666;
    margin: 0;
}
.blog-sidebar .tage-wrp{
    padding: 40px 0 0;
}
.blog-sidebar .tage-wrp h2{
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 15px;
    text-transform: capitalize;
}
.blog-sidebar .tage-wrp ul li{
    display: inline-block;
    margin: 0 8px 8px 0;
}
.blog-sidebar .tage-wrp ul li a{
    padding: 6px 15px; 
    background:#111;
    color: #fff;
    display: table;
    border-radius: 0;
    transition: all 0.3s linear;
}
.blog-sidebar .tage-wrp ul li a:hover{
    background:#EC1E24;
    color: #fff;
}





/* **** Blog Details **** */
.blog-details-wrp{
    padding: 50px 0;
}
.blog-details-wrp .details-block .details-img img{
    max-width: 100%;
    width: 100%;
    object-fit: cover;

}

.blog-details-wrp .details-block .details-dt h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 40px 0 20px;
}
.blog-details-wrp .details-block .details-dt .caption {
    padding: 15px 0;
    border: 1px solid rgba(0,0,0,0.2);
    border-left: none;
    border-right: none;
    margin: 0 0 30px;
}
.blog-details-wrp .details-block .details-dt .caption ul li {
    font-size: 15px;
    font-weight: 500;
    color: #888;
    margin: 0 20px 0 0;
    display: inline-block;
}
.blog-details-wrp .details-block .details-dt .caption ul li span {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin: 0 5px 0 0;
}
.blog-details-wrp .details-block .details-dt p {
    font-size: 15px;
    font-weight: 500;
    color: #696969;
    text-align: justify;
    margin: 0 0 15px;
}
/* **** End Blog Details **** */



/* **** Jobs *** */
.jobs-wrp{
    padding: 60px 0;
}
.jobs-wrp .job-detail{
    margin: 0 0 30px;
    text-align: left;
}
.jobs-wrp .job-detail img{
    max-width: 100%;
    margin: 0 auto 10px ;
    display: table;
}
.jobs-wrp .job-detail h4 a{
    font-size: 26px;
    font-weight: 600;
    color: #000;
    display: block;
    margin: 0 0 20px;
}
.jobs-wrp .job-detail ul li{
    display: inline-block;
    margin: 0 15px 0 0;
     font-size: 15px;
    font-weight: 500;
    color: #666;
}
.jobs-wrp .job-detail ul li:last-child{
    margin: 0;
}
.jobs-wrp .job-detail ul li a{
    font-size: 15px;
    font-weight: 500;
    color: #666;
}
.jobs-wrp .job-detail ul li i{
    color: #000;
    padding-right: 5px;
}
.jobs-wrp .job-detail p{
    font-size: 15px;
    font-weight: 500;
    color: #696969;
    text-align: justify;
    margin: 0 0 15px;
}

.jobs-wrp .job-description{
    text-align: left;
}
.job-detail h2{
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 700;
    color: #000;
    margin: 0 auto 20px;
}
.jobs-wrp .job-description ul{
    margin: 25px 0 0;
}

.job-Experience{
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 0;
    margin: 0 0 30px;
    text-align: left;
}
.job-Experience h2{
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 700;
    color: #000;
    margin: 0 auto 20px;
}
.job-Experience ul li{
    margin: 0 0 10px 0;
    font-size: 15px;
    padding-left: 35px;
    font-weight: 500;
    color: #666;
    position: relative;
}
.job-Experience ul li:after{
    position: absolute;
    content: "";
    height:2px;
    width: 25px;
    background:#222;
    left: 0;
    top: 8px;
    right: 0;
    bottom: 0;
}
.job-Experience ul li:last-child{
    margin: 0;
}
.job-Experience p{
    color: #666;
    margin: 0 auto;
    display: table;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px;
}
/* **** End jobs **** */



.jobs-wrp .sidebar-wrp .single-post-dt{
    border: 1px solid #eee;
    background:#fff;
    border-radius: 0px;
    padding: 25px 15px;
}
.jobs-wrp .sidebar-wrp .single-post-dt .post-box{
    display: flex;
    margin: 0 0 20px;
}
.jobs-wrp .sidebar-wrp .single-post-dt .post-box:last-child{
    margin: 0;
}
.jobs-wrp .sidebar-wrp .single-post-dt .post-box .post-ic i{
    font-size: 22px;
    width: 30px;
    text-align: center;
    color: #000;
    margin-right: 20px;
}
.jobs-wrp .sidebar-wrp .single-post-dt .post-box .post-dt h4{
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin: 0 0 10px;
}
.jobs-wrp .sidebar-wrp .single-post-dt .post-box .post-dt p{
    font-size: 16px;
    font-weight: 500;
    color: #888;
    margin: 0;
}


.jobs-wrp .job-location-wrp{
    padding: 40px 0 0;
}
.jobs-wrp .job-location-wrp h2{
     font-size: 26px;
    text-transform: capitalize;
    font-weight: 700;
    color: #000;
    margin: 0 auto 10px;
}
.jobs-wrp .job-location-wrp iframe{
    height: 400px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    width: 100%;
}

.jobs-wrp .social-ic{
    padding: 20px 0;
    margin: 0 auto;
}
.jobs-wrp .social-ic ul li{
    display: inline-block;
    margin: 0 15px 0 0;
}
.jobs-wrp .social-ic ul li a{
    
}
.jobs-wrp .social-ic ul li a:hover{
    
}

.apply-btn{
    background:#222;
    padding: 10px 15px;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s linear;
}
.apply-btn:hover{
    background:#EC1E24;
    color: #fff;
}



.job-list-wrp{
    padding: 60px 0;
}
.job-list-wrp .job-list-box{
    padding: 20px;
    border-radius: 0;
    margin: 0 0 30px;
    border: 1px solid #eee;
    transition: all 0.3s linear;
}
.job-list-wrp .job-list-box:hover{
    transform: translateY(-10px);
    box-shadow:0 0 9px rgba(128,128,128,0.3);
}
.job-list-wrp .job-list-box .row{
    display: flex;
    align-items: center;
}
.company-logo img{
    max-width: 100%;
}

.company-dt h4{
    margin: 0;
    font-weight: 600;
    color: #000;
    font-size: 18px;
    margin: 0 0 20px;
}
.company-dt ul li{
    display: inline-block;
    margin: 0 15px 15px 0;
    font-size: 15px;
    font-weight: 500;
    color: #555;
}
/*.company-dt ul li:nth-child(2){
    display: block;
}
.company-dt ul li:last-child{}*/
.company-dt ul li:last-child{
    margin: 0;
}
.company-dt ul li i{
    font-size: 18px;
    padding-right: 5px;
    color: #000;
}
.company-dt ul li:last-child{
    margin: 0;
}

.job-list-wrp .view-btn{
    padding: 8px 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    background:#222;
    display: table;
    margin: 0;
    border-radius: 0;
    transition: all 0.3s linear;
}
.job-list-wrp .view-btn:hover{
    background:#EC1E24;
    color: #fff;
}


.job-sidebar .categories-block{
    padding: 20px;
    border-radius: 0;
    border: 1px solid #eee;
    margin: 0 0 30px;
}
.job-sidebar h4{
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px;
}
.job-sidebar [type="radio"]:checked,
.job-sidebar [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.job-sidebar [type="radio"]:checked + label,
.job-sidebar [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
    color: #666;
}
.job-sidebar [type="radio"]:checked + label:before,
.job-sidebar [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.job-sidebar [type="radio"]:checked + label:after,
.job-sidebar [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #EC1E24;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.job-sidebar [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.job-sidebar [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



.pager-shop {
    padding: 25px 0 0;
    text-align: center;
}
.pager-shop li {
    display: inline-block;
    margin-right: 10px;
}
.pager-shop li a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: rgba(128, 128, 128, 0.3);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: block;
    border-radius: 50%;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.pager-shop li.active a, .pager-shop li a:hover {
    background: #EC1E24;
    color: #fff;
}
.details-block .social-ic{
    padding: 20px 0 0;
}
.details-block .social-ic ul li{
    display: inline-block;
    margin: 0 15px 0 0;

    text-align: center;
    font-size: 16px;
    color: #666;
    font-weight:600;
}
.details-block .social-ic ul li a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(128, 128, 128, 0.3);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: block;
    border-radius: 50%;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.details-block .social-ic ul li a:hover {
    background: #EC1E24;
    color: #fff;
}





.blog-sidebar .social-ic{
    padding: 40px 0 0;
}
.blog-sidebar .social-ic h2{
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 15px;
    text-transform: capitalize;
}
.blog-sidebar .social-ic ul li{
    display: inline-block;
    margin: 0 15px 0 0;

    text-align: center;
    font-size: 16px;
    color: #666;
    font-weight:600;
}
.blog-sidebar .social-ic ul li a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(128, 128, 128, 0.3);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: block;
    border-radius: 50%;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.blog-sidebar .social-ic ul li a:hover {
    background: #EC1E24;
    color: #fff;
}

/* **** Mobile Header **** */
.moblie-header {
    border-top: 1px solid #e21c21;
    background: #fff;
    padding: 10px;
    width: 100%;
    z-index: 51;
    box-shadow: 0px 0px 9px #e21c21;
}
.moblie-header .topbar {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}
.moblie-header .top-head-dt ul {
    position: relative;
    margin-left: 14px;
    padding-left: 14px;
}
.moblie-header .top-head-dt ul:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    border-radius: 30px;
    background: #e21c21;
}
.moblie-header .top-head-dt ul li a {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    font-family: "Open Sans", sans-serif;
}

.moblie-header .left-contant {
    margin: 25px 0 0;
    padding: 10px 0 0;
    border-top: 2px solid #e21c21;
    display: flex;
    align-items: center;
}
.moblie-header .left-contant .top-description {
    float: left;
    width: 85%;
}
.sliderbaropenbutton {
    float: right;
    width: 15%;
}
.moblie-header .left-contant li {
    line-height: 2px;
}

.moblie-header .left-contant li a {
    font-size: 10px;
    line-height: 16px;
    font-weight: 400;
    color: #045184;
}
.sliderbaropenbutton #open-mobile {
    float: right;
    height: 50px;
    width: 50px;
    line-height: 50px;
    color: #fff;
    background: rgba(0, 0, 0, 1);
    display: table;
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.mobile-header {
    box-shadow: 0px 0px 9px #e21c21;
}
/* **** End Navbar **** */
.side-nav-wrp {
    background: #FFFFFF;
    width: 320px;
    height: 100vh;
    overflow: auto;
    position: fixed;
    top: 0;
    display: none;
    z-index: 999;
    padding: 80px 0;
    text-align: center;
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    transition: 0.4s linear;
}
.expand-menu-open .side-nav-wrp {
    width: 320px;
    height: 100vh;
    /*background: #414141;*/
    width: 100%;
    padding: 50px 0;
    z-index: 9999;
    margin: 0 auto;
    display: table;
    text-align: center;
}

.side-nav-wrp .close-wrp a {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    color: #000000;
    display: table;
    text-align: center;
    font-size: 25px;
    z-index: 99;
}
.side-nav-wrp ul .active a {
    color: #000000;font-weight: 700;
}
.side-nav-wrp ul li {
    margin: 0 0 25px;
}
.side-nav-wrp ul li:last-child {
    margin: 0;
}
.side-nav-wrp ul li a {
    font-size: 16px;
    position: relative;
    color: #000;
    font-weight: 200;
    letter-spacing: 2px;
    font-family: "Open Sans", sans-serif;
}
.side-nav-wrp ul li a i {
    font-size: 14px;
    position: absolute;
    left: -20px;
    top: 14px;
}
.side-nav-wrp ul .gv-ex-menu {
    padding: 0 10px;
}
.side-nav-wrp ul .inner-smdop ul li {
    margin: 20px 0px 20px 0px;
}
.side-nav-wrp ul .inner-smdop ul li a {
    color: #000;
    font-size: 14px;
}
.moblie-header {
    display: none;
}
.Sidebar-wrp {
    display: none;
}
/* ***** End Silder Bar **** */






.toggle-button-two {
    cursor: col-resize;
}
.toggle-button-two img {
    max-width: 150px;
    height: 40px;
    margin: 0 auto;
    display: table;
}
.mobile-bottom-wrp {
    position: fixed;
    width: 320px;
    bottom: -58px;
    z-index: 99;
    text-align: center;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    transition: 0.2s linear;
}
.mobile-bottom-wrp.expand-mobile-open {
    width: 100%;
    height: 94px;
    bottom: 0;
    margin: 0 auto;
    display: table;
    text-align: center;
}

.molile-con {
    /*height: 55px;*/
    position: relative;
    z-index: 99;
    box-shadow: 0 -5px 15px 0 rgb(0 0 0 / 50%);
    background: linear-gradient(to bottom, #fff 35%, #d7d7d7 80%);
}
.molile-con ul li {
    float: left;
    width: 25%;
}
.molile-con ul li a {
    padding: 15px 10px;
    border-left: 1px solid #999;
    display: block;
}
.molile-con ul li a img {
    max-width: 30px;
    margin: 0 auto;
}





/* **** first Link **** */
.mobile-inner-menu-wrp {
    position: fixed;
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: auto;
    height: 100vh;
    overflow: auto;
    display: none;
    z-index: 999;
    text-align: left;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    transition: 0.2s linear;
}
.mobile-inner-menu-wrp.expand-mobile-open {
    width: 90%;
    margin: 0 auto;
    height: 100vh;
    top: 55px;
    margin: 0 auto;
    display: table;
    text-align: center;
    z-index: 999999;
    overflow: auto;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
}
.mobile-inner-menu-wrp.expand-mobile-close {
    display: none;
}

.mobile-inner-menu-wrp .inner-menu-links {
    height: 100%;
    overflow: auto;
    background: #fff;
    padding: 0 0 70px;
}
.mobile-inner-menu-wrp ul li {
}
.mobile-inner-menu-wrp ul li a {
    font-family: "Open Sans", sans-serif;
    color: #000;
    font-size: 18px;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    display: block;
    padding: 1em;
    border-bottom: 1px #b0afaf solid;
    text-align: left;
}

.inner-menu-header {
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    /*background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.26) 26%, rgba(255, 255, 255, 0.52) 52%, rgba(214, 214, 214, 0.72) 72%, #c9c9c9 100%);*/
	background: #EC1E24;
    color: #FFF;
}
.inner-menu-header p {
    font-size: 20px;
    color: #f9f9f9;
    display: block;
    font-family: "Open Sans", sans-serif;
    margin: 0;
}
.close-mobile-menu {
    position: absolute;
    right: 0;
    font-size: 18px;
    border-left: 1px solid #000;
    color: #000;
    height: 34px;
    width: 34px;
    text-align: center;
    line-height: 34px;
}
/* **** first Link End **** */


/* **** social Link **** */
.mobile-social-wrp {
    position: fixed;
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: auto;
    height: 100vh;
    overflow: auto;
    display: none;
    z-index: 999;
    text-align: left;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    transition: 0.2s linear;
}
.mobile-social-wrp.expand-mobile-open {
    width: 93%;
    margin: 0 auto;
    height: 100vh;
    top: 55px;
    margin: 0 auto;
    display: table;
    text-align: center;
    z-index: 999999;
    overflow: auto;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
}
.mobile-social-wrp.expand-mobile-close {
    display: none;
}

.close-social-menu {
    position: absolute;
    right: 0;
    font-size: 22px;
    border-left: 1px solid #fff;
    color: #fff;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
}
.mobile-social-wrp .inner-menu-links {
    background: #fff;
    height: 100%;
}
.mobile-social-wrp .inner-menu-links ul li a {
    font-family: "Open Sans", sans-serif;
    color: #000;
    font-size: 18px;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    display: block;
    padding: 1em;
    border-bottom: 1px #b0afaf solid;
    text-align: left;
}
/* **** social Link **** */
.mobile-bottom-menu{display: none;}