@font-face {
    font-family: 'Signika-Regular';
    src: url('fonts/Signika/Signika-Regular.ttf'); /* IE */  
    src: local('Signika-Regular'), url('fonts/Signika/Signika-Regular.ttf') format('truetype'); /* non-IE */
}

@font-face {
    font-family: 'Signika-Semibold';
    src: url('fonts/Signika/Signika-Semibold.ttf'); /* IE */  
    src: local('Signika-Semibold'), url('fonts/Signika/Signika-Semibold.ttf') format('truetype'); /* non-IE */
}

@font-face {
    font-family: 'Signika-Bold';
    src: url('fonts/Signika/Signika-Bold.ttf'); /* IE */  
    src: local('Signika-Bold'), url('fonts/Signika/Signika-Bold.ttf') format('truetype'); /* non-IE */
}

@font-face {
    font-family: 'FiraSans-LightItalic';
    src: url('fonts/fira-sans/FiraSans-LightItalic.ttf'); /* IE */  
    src: local('FiraSans-LightItalic'), url('fonts/fira-sans/FiraSans-LightItalic.ttf') format('truetype'); /* non-IE */
}

html,
body{
    padding: 0;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

body{
    background-color: #ffffff;
    font-family: 'Signika-Regular';
    color: #000000;
    color: #1f1f1f;
    line-height: 1.42857143;
    font-weight: 400;
    position: relative;
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6{
    margin: 0 0 25px;
    font-weight: 700;
}
h1,
.h1{
    font-size: 42px;
    line-height: 50px;
}
h2,
.h2{
    font-size: 42px;
    line-height: 50px;
}
h3,
.h3{
    font-size: 28px;
    line-height: 36px;
}
h4,
.h4{
    font-size: 24px;
    line-height: 32px;
}
h5,
.h5{
    font-size: 20px;
    line-height: 28px;
}
h6,
.h6{
    font-size: 18px;
    line-height: 26px;
}

img{
    max-width: 100%;
    border: none;
    margin: 0;
    height: auto;
}

p{
    margin: 0 0 25px;
}

ul{
    margin: 0 0 25px 20px;
    padding: 0 0 0 15px;
}
.error{
    color: red;
}
ul > li{
    margin: 0 0 5px;
    padding: 0;
}

ul.list-square{
    list-style: square;
}

a{
    text-decoration: none;
    color: #337ab7;
}

a:hover,
a:focus{
    text-decoration: none;
    color: #23527c;
}

input[type=text],
input[type=email],
textarea,
select{
    border: 1px solid #cccccc;
    margin: 0;
    max-width: 100%;
    width: 100%;
    padding: 8px 10px;
}

::-webkit-input-placeholder {
    color: #1f1f1f;
}

:-moz-placeholder {
    color: #1f1f1f;
}

::-moz-placeholder {
    color: #1f1f1f;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #1f1f1f;
}

.font-400{
    font-weight: 400;
} 

.font-500{
    font-weight: 500;
}

.font-600{
    font-weight: 600;
} 

.font-700{
    font-weight: 700;
}

.margin-lg{
    margin-bottom: 50px;
}
.margin-md{
    margin-bottom: 25px;
}
.margin-mdx{
    margin-bottom: 20px;
}
.margin-sml{
    margin-bottom: 15px;
}
.margin-sm{
    margin-bottom: 10px;
}
.margin-xs{
    margin-bottom: 5px;
}
.no-margin{
    margin: 0;
}

.cbtn{
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #2e6da4;
    background-color: #337ab7;
    color: #ffffff;
    border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -o-border-radius: 5px;
        -ms-border-radius: 5px;
    font-size: 16px;
}
.cbtn:hover,
.cbtn:focus{
    background-color: #286090;
    border-color: #204d74;
    color: #ffffff;
}

/* HEADER */

.site-header{
    padding: 12px 0;
    background-color: #fcfbfb;
    width: 100%;
    transition: all 0.4s ease-out;
}

.logo{
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.header-sticky{
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0,0,0, .98);
    border-bottom: 1px solid #f5f5f5;
}

.header-sticky .logo{
    opacity: 1;
    visibility: visible;
    height: auto;
}

/* CONTENT */

.sc{
    padding-top: 50px;
    padding-bottom: 50px;
}

.sc.sc-sm{
    padding-top: 30px;
    padding-bottom: 30px;
}

.sc.sc-nopadding-bottom{
    padding-bottom: 0;
}

.sc.vertical-line{
    padding-top: 140px;
    position: relative;
}
.vertical-line:before{
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 10;
    content:"";
    width: 22px;
    height: 119px;
    margin-left: -11px;
    background: url(images/vertical-line.png) no-repeat scroll 0 0;
}

.title-section{
    font-family: 'Signika-Semibold';
}

.subtitle-section {
    background: #1F497D;
    color: #ffffff;
    padding: 6px 10px 6px;
    margin-top: 0px;
    line-height: 18px;
    font-size: 13px;
    font-family: 'FiraSans-LightItalic';
    letter-spacing: 2px;
    display: block;
}

.form-group{
    margin-bottom: 20px;
}

.form-label{
    display: block;
    margin: 0 0 5px;
    font-weight: 400;
    font-family: 'Signika-Semibold';
}

.asterisk{
    color: #ff0000;
    display: inline-block;
}

.form-desc{
    display: block;
    margin: 0 0 5px;
    color: #777777;
}


/**
 * Video
 */
 
.video-wrap {
    position: relative; 
    padding-bottom: 56.25%; 
    padding-top: 0; 
    height: 0; 
    overflow: hidden;
    width: 100%; 
    max-width: 100%; 
    height: auto; 
}
.video-wrap iframe {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    border: none;
    margin: 0;
}

/* FOOTER */

.site-footer{
    text-align: center;
    color: #fff;
    background: #151515;
    padding: 40px 0 60px;
    position: relative;
    font-size: 13px;
}

.scrollToTop{
    width: 99px;
    height: 33px;
    left: 50%;
    bottom: 0;
    margin-left: -50px;
    background: url('images/backtotop.png') no-repeat scroll 0 0;
    position: absolute;
    z-index: 10;
}

@media (min-width: 768px){
   
}

@media (min-width: 992px){
    .cleft{
        padding-right: 25px;
    }
    
    .cright{
        padding-left: 25px;
    }
   
}

@media (max-width: 1199px){
 
}


@media (max-width: 991px){
    h1,
    .h1{
        font-size: 36px;
        line-height: 44px;
    }
    h2,
    .h2{
        font-size: 28px;
        line-height: 36px;
    }
    h3,
    .h3{
        font-size: 25px;
        line-height: 33px;
    }
    h4,
    .h4{
        font-size: 21px;
        line-height: 29px;
    }
    h5,
    .h5{
        font-size: 18px;
        line-height: 26px;
    }
    h6,
    .h6{
        font-size: 16px;
        line-height: 24px;
    }
    
}

@media (max-width: 767px){
   
}