@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Telex&display=swap");

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  vertical-align: baseline;
  font-size: 100%;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Telex", sans-serif;
  color: rgb(12, 58, 88);
  box-sizing: border-box;
  margin: 0;
}

h3 {
  font-size: 50px;
  color: rgb(12, 58, 88) !important;
  font-family: "Poppins", sans-serif;
}

p {
  color: white;
  font-size: 16px;
  font-weight: 300;
}

.problem-font table thead tr th {
  font-family: "Telex", sans-serif !important;
  color: #052f47 !important;
}

.nav-color {
  font-family: "Poppins", sans-serif;
  color: rgb(12, 58, 88);
}

.offset:before {
  height: 3.9rem;
  margin-top: -3.9rem;
  content: "";
  display: block;
}

.ITS {
  padding-left: 2px;
  padding-right: 2px;
}

/*--- Navigation ---*/
.navbar {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  background: rgba(255, 255, 255, 0.9) !important;
  padding-bottom: 0rem;
}

.navbar-brand img {
  height: 70px;
  align-items: center;
}
.navbar-nav li {
  padding-right: 0.7rem;
}
.navbar-light {
  color: white;
  padding-top: 0.4rem;
}
.navbar-nav {
  color: white;
  padding-top: 0.4rem;
}

.nav-link {
  padding-top: 0.4rem;
}

.nav-item {
  align-items: center !important;
}

.navbar li a {
  font-family: "Poppins", sans-serif !important;
  color: rgb(12, 58, 88) !important;
  text-transform: none !important;
}

.navbar li a:hover {
  font-family: "Poppins", sans-serif !important;
  color: #bf3e26 !important;
  text-transform: none !important;
}

.navbar-icon img {
  padding-bottom: 2rem !important;
  height: 60px !important;
  align-items: center;
}

.navbar-nav {
  align-items: center;
}

table {
  width: 90%;
  text-align: center;
  padding: 10px;
  max-width: 80em;
  font-size: 10;
}

i {
  padding: 0.7rem;
}

/*--- Home --*/

h3.heading {
  padding: 3rem 0 2rem;
  font-size: 1.9rem;
  font-weight: 700;
  padding-bottom: 1.9rem;
}
.heading-underline {
  width: 3rem;
  height: 0.2rem;
  background-color: #e5a623;
  margin: 0 auto 2rem;
}

.child {
  border: 1px;
  float: right;
  width: 50%;
  align-self: center;
}
.parent {
  display: flex;
}

.input-side {
  padding-right: 0.7rem;
}

.padbot {
  padding-bottom: 0.9rem;
}

.padtop {
  padding-top: 0.5rem;
}

.entering {
  padding: 0.7rem;
}

/*-- Login --*/

.img-its {
  padding-top: 7rem;
  width: 100%;
  padding-bottom: 2rem;
}

/*-- Footer --*/

html,
body {
  height: 100%;
}
#wrapper {
  position: relative;
  min-height: 41%;
  height: auto !important;
  height: 100%;
}
#content {
  padding-bottom: 10px;
}
#footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.sm a {
  display: inline-block;
  font-size: 40px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: white;
  margin: 0 16px;
  margin-bottom: 2%;
  margin-top: 2%;
  transition: 0.4s linear;
  position: relative;
}

.sm a::before,
.sm a::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.4s linear;
}

.sm a:hover {
  transform: scale(0.8);
}

.sm a:hover::before {
  border-left: 4px solid;
  border-right: 4px solid;
  transform: skewX(20deg);
}

.sm a:hover::after {
  border-top: 4px solid;
  border-bottom: 4px solid;
  transform: skewY(-20deg);
}

.background {
  background-color: rgb(12, 58, 88);
}

/*--Contact--*/

/*-- Button --*/

button[type="submit"] {
  width: 100%;
  padding: 20px;
  font-size: 24px;
  border-radius: 8px;
  font-family: "Poppins";
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease background-color;
  border: none;
}

.btn-danger {
  background-color: #bf3e26;
  border: none;
}
.btn-danger:hover {
  background-color: #e5a623;
  border: none;
}

.btn-warning {
  background-color: rgb(12, 58, 88);
  color: white;
  border: none;
}

.btn-warning:hover {
  background-color: #bf3e26;
  color: white;
  border: none;
  animation: none;
}

.btn-dark {
  background-color: rgb(12, 58, 88);
  color: white;
  border: none;
}

.btn-dark:hover {
  background-color: #bf3e26;
  color: white;
  border: none;
}

#status {
  width: 90%;
  max-width: 500px;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
}
#status.success {
  background-color: rgb(211, 250, 153);
  animation: status 4s ease forwards;
}
#status.error {
  background-color: rgb(250, 129, 92);
  color: white;
  animation: status 4s ease forwards;
}
@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

.heading {
  color: #505962;
}
.p1 {
  color: white;
}

.circle-info-solid img {
  color: rgb(12, 58, 88);
  text-align: right;
  height: 50px !important;
  align-items: center;
}

.circle-info-solid:hover img {
  color: #bf3e26;
  text-align: right;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {

  .navbar-brand img {
    height: 50px;
  }

}




.margin-top {
  padding-top: 0.5rem;
}
