/* Header Start */
  .card-head {
      text-align: center;
      background: #02132f;
      background: linear-gradient(to bottom, #02132f 32%, #174f6f 46%, #0095cf 64%);
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: bold;
      text-transform: uppercase;
      font-family: "Times New Roman", Times, serif;
      font-size: 2rem;
    }

header {
  margin: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px #999;
  position: fixed;
  height: 70px;
  z-index: 2000;
}
.Navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  float: center;
  padding-top: 5px;
}

nav {
  height: 100%;
  position: fixed;
  right: 0;
  width: 320px;
  margin-top: 10px;
  transform: translateX(320px);
  transition: transform 560ms ease-in-out;
  background-color: white;

  ol {
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee;
    z-index: -1;
    li {
      list-style: none;
      color: #fff;
      text-transform: uppercase;
      font-weight: bold;
      padding: 20px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
      transition: 0.25s;
      span {
        display: block;
        font-size: 14px;
        color: #353535;
      }
      a {
        color: #353535;
        text-transform: uppercase;
        font-weight: bold;
        color: #353535;
        cursor: pointer;
        text-decoration: none;
      }
      &:hover {
        background-color: #eee;
      }
    }
  }
}

input[type="checkbox"]:checked ~ nav {
  transform: translateX(0);
}
input[type="checkbox"] {
  box-sizing: border-box;
  display: none;
  transition: all 0.25s;
}
.menuIconToggle {
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  z-index: 40;
  height: 100%;
  width: 100%;
  top: 2px;
  right: 15px;
  height: 22px;
  width: 22px;
  transition: all 0.3s;
}
.menuIconToggle i {
  font-size: 22px;
  color: #1b1b1b;
  transition: all 0.3s;
}

h1 {
  margin: 0;
  font-size: 2.5em;
  text-align: center;
}

@media screen and (max-width: 640px) {
  nav {
    height: 100%;
    width: 100%;
    transform: translateX(100%);
  }
}

/* Header End */

.Docs-Success {
  background-color: #7dec62;
}

/* .aboutbox-head a h4 i {
  font-size: 90px;
} */

.container .row h2 {
  background: #02132f;
  background: linear-gradient(to bottom, #02132f 32%, #174f6f 46%, #0095cf 64%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-transform: capitalize;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}

@media (max-width:400px){
  .container .row h2 {
    font-size: 2rem;
  }
}