html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background: #f4f4f4;
}


.navbar {
  padding: 0;
  background: #303f9f;
}
.logo {
    width: 40%;
    filter: brightness(0) invert(1);
}
.navbar-nav .nav-item .nav-link {color: #ffffff;padding: 1.4rem 1.3rem;}
.navbar-nav .nav-item .nav-link.active {border-bottom: 3px solid #FFD700;}
.navbar-nav .nav-item .nav-link:hover {
  background: #bf9b30;
  border-bottom: 3px solid #FFD700;
}
.body-part {
  height: calc(100vh - 135px);
}
.card {cursor: pointer;}
.card h3, .card p {text-align: center;}
.icon-area {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  margin: auto;
  display: block;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
}
.icon-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn:focus, .btn:focus-visible, .btn:focus-within {
  outline: 0;
  box-shadow: none;
}
.btn:hover {color: #ffffff;background: #bf9b30;}
.btn-login {
    background: #303f9f;
    color: #ffffff;
    line-height: 1;
    padding: 7px 2rem 11px;
    margin: auto;
    display: table;
}