@font-face {
    font-family: 'Fira_Sans';
    src: url(../fonts/Fira_Sans/FiraSans-Light.ttf);
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Fira_Sans';
    src: url(../fonts/Fira_Sans/FiraSans-Regular.ttf);
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: 'Fira_Sans';
    src: url(../fonts/Fira_Sans/FiraSans-Bold.ttf);
    font-style: normal;
    font-weight: 800;
}
*{
    margin: 0px;
    padding: 0px;
}
body{
    font-family: "Fira_Sans";
}
a {
    color: #333;
}
.logo-lg{
    width: 50%;
}
.bg-white-75{
    background-color: rgba(255, 255, 255, 0.75);
}
.bg-white-60{
    background-color: rgba(255, 255, 255, 0.6);
}
.bg-black-90{
    background-color: rgba(0, 0, 0, 0.75);
}
.bg-black-90 h2, .bg-black-90 label{
    color: #fff;
}
.text-success{
    color: #3b9cc5 !important;
}
.text-shadow{
    text-shadow: 2px 2px 8px #000;
}
.ml--2{
    margin-left: -1.3em;
}
.card{
    border-radius: 0;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    border-color: rgba(84, 191, 66, .2);
}
.card-header{
    border-radius: 0;
    background-color: #fff;
    border-bottom: none;
}
.card-body{
    border-radius: 0;
}
.card-footer{
    padding: .75rem 1.25rem 0;
    border-top-color: rgba(84, 191, 66, .2);
    background-color: rgba(84, 191, 66, .06);
}
.bg-green-light{
    border-top: rgba(84, 191, 66, .2) 1px solid;
    background-color: #3b9cc5;
}
.btn{
    border:0;
    border-radius: 0;
}
.form-group label{
    font-size: 0.8em;
}
.form-group .form-control, .form-group .custom-select{
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.table{
    font-size: .75em;
}
.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgba(84, 191, 66,.06);
}
.table-striped tbody tr td:nth-of-type(2n+1) {
    background-color: rgba(84, 191, 66,.03);
}
.table-striped tbody tr:nth-of-type(2n+1) td:nth-of-type(2n+1) {
    background-color: rgba(84, 191, 66,.09);
}
.sticky-header{
    position: sticky;
    top: 0;
    z-index: 999;
}
.top-logo{
    margin-top: 10px;
    height: 50px;
}
.shape-bg{
    background-image: url(../images/shape-bg-sm.png) !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
}
/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .top-logo{
        margin-top: 0;
        height: 80px;
    }
    .shape-bg{
        background-image: url(../images/shape-bg-lg.png) !important;
    }
}
/*  Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1920px) {
    .shape-bg{
        background-size: cover;
    }
}
.overflow-auto{
    overflow: auto;
}
.min-h-content{
    min-height: 500px;
}
.img-icon{
    padding: 5px;
    border: #fff 3px solid;
    border-radius: 10px;
}
.footer{
    background-color: white;
    position: fixed;
    bottom:0;
    width:100%;
    z-index: 9999;
    border-top: #3b9cc5 1px solid !important;
    box-shadow: 0 -.5rem 1rem rgba(0,0,0,.15) !important;
}
.footer .btn{
    line-height: .9em;
}
.footer small{
    font-size: .6em;
}
/* Overline From Center */
.hvr-overline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}
.hvr-overline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    top: 0;
    background: #3b9cc5;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
    left: 0;
    right: 0;
}
/* Sweep To Left */
.hvr-sweep-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-sweep-to-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3b9cc5;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
    color: white;
}
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
#map{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-container iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}