*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    width: auto;
    height: auto;
}

body{
    position: relative;
    padding: 0;
    margin: 0;
    font-size: 14px; /*0.71vw;*/
    font-weight: 400;
    font-family: "Poppins","Tahoma",sans-serif, Verdana, Helvetica;
    color: #8d9297;
    
}

a, a:hover, a:active, a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}

.top-social-bar{
    background-color:#283549;
    color: rgba(255,255,255,.95);
    position: absolute;
    z-index: 21;
    width: 100%;
    height: 32px;
    top: 0px;
    line-height: 32px;
    font-size: 12px;
}

.social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    /* font-size: 15px; */
    font-size: 10px;
    padding-top: 0;
    padding-bottom: 0;
}
.social-icons li {
    display: inline-block;
    position: relative;
    min-width: auto;
    padding: 0;
    margin: 0 3px;

}

.social-icons li>a{
    transition: all .3s ease-in-out;
    border: none;
    font-weight: 500;
    text-align: center;
    display: block;
    background-color: transparent;
    color: rgba(255,255,255,.95);
}

.social-icons li>a:hover{
    color:#fda12b;
}

.site-header{
    height:70px;
    background-color: #182333;
    position: absolute;
    top: 32px;
    width: 100%;
    z-index: 21;
    transition: all .25s ease;
}

.companylogo{
    height:inherit;  
    line-height: inherit;     
    text-align: center;
    transition: all .25s ease;
}

.companylogo-img{
    margin-top:10px;
    height: 50px;
    width: auto;    
}

.menu-toggler{
    top: 20px;
    display: block;
    position: absolute;
    left: 20px;
    width: 40px;
    background: none;
    z-index: 1;
    outline: none;
    padding: 0;
    line-height: normal;
    border:none;
    cursor: pointer;
}

.toggle-bars{
    display: inline-block;
    width: 30px;
    height: 2px;   
    border-radius: 3px;
    transition: 0.3s;
    position: relative;
    color:#fff;
    background-color: #fff;
    transition: all .25s ease;
}

.toggle-on .toggle-bars{
    background-color: transparent;
}

.toggle-bars:before,.toggle-bars:after{
    display: inline-block;
    width: 30px;
    height: 2px;    
    border-radius: 3px;
    transition: 0.3s;
    position: absolute;
    left: 0;
    content: '';    
    transform-origin: 0.28571rem center;
    margin: 0;
    background-color: #fff;
    
}

.toggle-bars:before{
    top:9px;
}
.toggle-bars:after{
    top:-9px;
}

.toggle-on .toggle-bars:before,.toggle-on .toggle-bars:after{
    transform-origin: 50% 50%;
    top: 0;
}
.toggle-on .toggle-bars:before{
    transform: rotate3d(0,0,1,45deg);
}
.toggle-on .toggle-bars:after{
    transform: rotate3d(0,0,1,-45deg);
}


.section{
    padding:90px 0 85px 0;
    width:100%;
}
.section-title{
    color:#182333;
    font-size:40px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}
.section-title:after{
    content: '';
    display: block;
    height: 5px;
    width: 100px;
    background-color: #7DC242;
    position: relative;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.sec-bg-grey{
    background-color: #F1F5F5;
}
.sec-bg-darkgrey{
    background-color: #182333;
}

.copyright{
    width: 100%;
    text-align: center;
}