@charset "UTF-8";
:root {
    --slo-body-font:'Futura PT', sans-serif;
    --slo-heading-font: 'New Order', sans-serif;
    --primary-color: #2EBA99;
    --secondary-color:#f8d033;
 }


@font-face {
    font-family: 'New Order';
    src: url('../fonts/NewOrder-Bold.woff2') format('woff2'),
        url('../fonts/NewOrder-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'New Order';
    src: url('../fonts/NewOrder-Regular.woff2') format('woff2'),
        url('../fonts/NewOrder-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'New Order';
    src: url('../fonts/NewOrder-Medium.woff2') format('woff2'),
        url('../fonts/NewOrder-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'New Order';
    src: url('../fonts/NewOrder-SemiBold.woff2') format('woff2'),
        url('../fonts/NewOrder-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


    @font-face {
    font-family: 'Futura PT Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Futura PT Medium'), url('../fonts/FuturaCyrillicMedium.woff') format('woff');
    }
    
    @font-face {
    font-family: 'Futura PT Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Futura PT Bold'), url('../fonts/FuturaCyrillicBold.woff') format('woff');
    }


body{
	font-family: Futura PT, sans-serif;
}

h1,h2,h3,h4,h5,h6{
	 font-family: var(--slo-heading-font);
}

.bg-primary{
	background-color: var(--primary-color) !important;
}

nav.navbar{
	position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
    padding: 2rem 0;
}

.hero-wrap {
    position: relative;
    overflow: hidden;
    z-index: 0;
     background: url(../img/banner.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
}



.hero-wrap .hero-bg.hero-bg-scroll {
    background-attachment: scroll;
}

.hero-wrap .hero-overlay {
    position: absolute;
    content: "";
    background: linear-gradient(45deg, #001700, rgba(0, 23, 0, .65));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}


.hero-wrap .hero-content h1{
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}
.hero-wrap .hero-content h1 span{
	color:var(--primary-color);
}

/*css for form */
.form-control:not(.form-control-sm) {
    padding: .92em .96rem;
    height: inherit;
        font-family:var(--slo-heading-font);
        font-weight: 500;
        font-size: 0.875rem;
        border-radius: .3rem;
         -webkit-box-shadow:  none;;
    box-shadow: none;
}
.form-control::place-holder{
	  font-weight: 600;
}

.form-card{
	background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 31px -17px #ffffff0f;
    border: 5px solid #070D26;
}

.btn:not(.btn-sm) {
    padding: .810rem 2rem;
}

.form-control:focus, .form-control:hover, .custom-select:focus {
   
    border-color: #000000de;
}

.btn-primary {
    background-color:var(--secondary-color);
    border-color:var(--secondary-color);
    padding: .625rem 1.5rem;
    display: block;
    font-size: 1rem;
    color: #070d26;
        border-radius: .625rem;
    font-weight: 700;
    box-shadow: none;
}
.btn-primary:hover, .btn-primary:focus{
	color: #070d26;
	    background-color:var(--secondary-color);
    border-color:var(--secondary-color);
}

@media (max-width: 991.98px) { 
.hero-wrap .hero-content h1 {
    font-size: 2rem;
}

/*nav.navbar .logo img{
	max-width: 140px;
}*/

 }