body{
    font-family: 'Open Sans', sans-serif;

}
h1,h2,h3,h4,h5,h6{
    font-family: 'Oswald', sans-serif;
}
.logo{
    width: 30rem;
    height: 8rem;
    cursor: pointer;
}
.logo1{
    width: 20rem;
    height: 9rem;
    cursor: pointer;
}
.nav-item{
    margin-right:1em;
    font-family: 'Open Sans', sans-serif;
}
.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    /* border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color); */
    border: none;
    border-radius: none !important;
    transition: var(--bs-navbar-toggler-transition);
}
a.nav-link.active{
    color: black;
}
a.nav-link.active:hover{
   color: #940000;
   font-weight: bold;
}
.top-left {
    position: absolute;
    top: 15em;
    left: 19.8em;
}
.container-fluid{
    position: relative;
    /* text-align: center; */
    color: white;
}
.preloader{
    background-color: white;
    height: 100%;
    width: 100%;
    z-index: 9999999;
}
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
   }
   .loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
   }

   .out-1 {
    position: absolute;
    width: 4em;
    height: 4em;
    border-radius: 100%;
    border: 0.2em solid transparent;
    border-top-color: rgb(0,0,0);
    animation: rec 2s infinite;
    transition: all ease-in-out 0.3s;
   }

   .out-2 {
    position: absolute;
    width: 4em;
    height: 4em;
    border-radius: 100%;
    border: 0.2em solid transparent;
    border-left-color: rgb(148,0,0);
    animation: rec 2s infinite;
    transition: all ease-in-out 0.3s;
   }

   .out-3 {
    position: absolute;
    width: 4em;
    height: 4em;
    border-radius: 100%;
    border: 0.2em solid transparent;
    border-bottom-color: rgb(148,0,0);
    animation: rec 2s infinite;
    transition: all ease-in-out 0.3s;
   }

   .in {
    position: absolute;
    border-radius: 100%;
    border: 0.2em solid rgba(0,0,0);
    width: 4em;
    height: 4em;
    transition: all ease-in-out 0.3s;
   }

   @keyframes rec {
    0% {
     transform: rotate(360deg);
    }
   }
   .submit{
    background-color: #940000;
    color: white;
    border-radius: 5px;
    padding:15px;
    border: 1px solid white;
}
@media only screen and (max-width:1024px){
    .logo {
        width: 25rem;
        height: 7rem;
        cursor: pointer;
    }
}

