.wrapper {
    width: 100%;
    margin: 0 auto;
    background-color: #f8f9fa;
}

/*================================================
                DEFAULT CSS
==================================================*/

body {
    font-size: 14px;
    line-height: 26px;
    font-style: normal;
    color: #7c8a97;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    text-rendering: optimizelegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto
}

/* p {
    margin: 0
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    text-decoration: none;
}


/*================================================
                    HEADER CSS
==================================================*/

.header {
    width: 100%;
    margin: 0 auto;
    border-bottom: 2px solid #d3d4d6;
}

.website-logo {
    width: 120px;
}

@media (min-width:768px) {
    .header {
        width: 85%;
    }

    .website-logo {
        width: 150px;
    }
}

.nav-list {
    padding-left: 30px;
    justify-content: flex-end;
    margin-top: 10px;
}

.nav-link {
    font-family: "Roboto";
    font-size: 20px;
    color: #2555a0;
    padding: 6px 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 10px;
}

.nav-link:hover {
    background-color: #2555a0;
    color: #ffffff;
    border-radius: 6px;
}

.active {
    background-color: #2555a0;
    color: #ffffff !important;
    border-radius: 6px;

}

@media (min-width: 768px) {
    .nav-link {
        margin-right: 10px;
        margin-top: 0px;
    }
}


/*================================================
                    LOADER CSS
==================================================*/
/* body {
    margin: 0;
    padding: 0;
  } */
  
  .loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .zingloader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Hide the loader when content is ready */
  .loadercontent {
    display: none;
  }
  