@font-face {
    font-family: 'fjalla';
    src: url('../fonts/FjallaOne-Regular.ttf');
}
@font-face {
    font-family: 'mitr';
    src: url('../fonts/Mitr-Regular.ttf');
}
@font-face {
    font-family: 'mitr-b';
    src: url('../fonts/Mitr-Bold.ttf');
}
@font-face {
    font-family: 'mitr-m';
    src: url('../fonts/Mitr-Medium.ttf');
}

p,a,span,div{
    font-family: 'mitr';
}
label{
    font-family: 'mitr-m';
}
h1,h2,h3,h4,h5,h6{
    font-family: 'fjalla';
}

.nav-bar{
    background-color:#f8f8f8 ;
    box-shadow: 0 8px 6px -6px #999;
    position: fixed;
    top: 0;
    left: 0px;
    right: 0px;
    z-index: 9999;
}
.nav-bar .nav-menu ul{
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: end;
    
}
.nav-bar .nav-menu ul a{
    text-decoration: none;
    color: #777;
}
.nav-bar .logo img{
    width: 164px;
    padding: 15px;
}

body{
    padding-top: 120px;
}
.classified-list{
    list-style-image: url(../images/bullet1.gif);
}
.nav-menu{
    display: flex;
    flex-direction: column;
}
.nav-menu-container{
    display: flex;
    align-items: center;
    justify-content: end;
}

.step-heading{
    display: flex;
    justify-content: center;
    position: relative;
}
.step-heading::before,.step-heading::after{
    position: absolute;
    content: " ";
    width: 40%;
    height: 2px;
    background-color: black;
    top: calc(50% - 1px);
}
.step-heading::before{
    left: 0;
}
.step-heading::after{
    right: 0;
}
.step-heading span{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: black;
    color: white;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frm_step{
    display: flex;
    flex-direction: column;
}
.frm_step .form-group{
    display: flex;
    margin-bottom: 8px;
    
}
.frm_step .form-group select,.frm_step .form-group input[type=text]{
    width: 90%;
    border-radius: 4px;
}

.frm_step{
    padding: 10px;
}
.classified-btn{
    background-color: #ffe305;
    border-radius: 4px;
    text-decoration: none;
    color:#000;
    padding: 8px 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    
}
.classified-btn:hover{
    background-color: #2c2c2c;
    color:#ffffff;
}
.btn-sm{
    font-size: 12px;
    padding: 5px 8px;
}
footer .quick-links{
    background-color: #444445;
    padding:25px;
}
footer .quick-links h6{
    color:#ffffff;
    font-family:'mitr';
    padding-bottom: 15px;
}
footer ul{
    padding: 0;
    margin: 0;
}

footer ul li{
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    transition: color 0.2s ease;
}
footer ul li a:hover{
    color: #ffe305;
}
footer .featured-logos{
    width: fit-content;
}

footer .featured-logos img{
    max-height: 90px;
}


.insertion{
    width: fit-content;
    padding: 14px;
    border-radius: 20px;
    background-color: #ebebeb;
}

.removeInsertion{
    border: none;
    background-color: transparent;
    color: crimson;
}

.insertions{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}


.stations_container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.stations_container label,.stations_container input{
    width: 40%;
}