/* parent class */
.img-icon {
  width: 70px;
}
a {
  text-decoration: none;
}
.login {
  margin-top: 20px;
}
.align-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.align-right {
  display: flex;
  flex: 1;
  align-items: flex-end;
}
.center {
  display: flex;
  align-items: center;
}
.text-justify {
  text-align: justify;
}
.text-right {
  text-align: right;
}
.three h1,
.three h2 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  padding-bottom: 15px;
  position: relative;
}
.three h1:before,
.three h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #111;
}
.three h1:after,
.three h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 255px;
  background-color: #333;
}

.cirg {
  filter: sepia(100%) hue-rotate(193deg) saturate(600%);
}

.header .green_border {
  background-color: #339900;
  padding: 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.header h2 {
  font-size: 2vw;
}
.header nav {
  margin-top: 10px;
  border-radius: 25px;
}
.navbar-dark .navbar-nav .nav-link {
  color: white !important;
}
.section-main {
  min-height: 100vh;
  min-height: calc(100vh - 250px);
}

.counterBox {
  text-align: center;
  background: #396afc; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #2948ff,
    #396afc
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #2948ff,
    #396afc
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  color: white;
}

.footer {
  background: #024769;
  padding: 10px;
  border-radius: 25px 25px 0px 0px;
  color: white;
}
.footer .footer-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.footer .footer-title img {
  width: 40px;
  margin-right: 10px;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  padding: 5px;
}
.footer ul li a {
  color: white;
  text-decoration: none;
}
.footer ul li a:hover {
  color: rgba(255, 255, 255, 0.5);
}
