* {
  box-sizing: border-box;
}

body {
  font-family: "Cairo", sans-serif;
}

:root {
  --main-color: #226cbf;
  --btn-color: #26c6da;
  --footer-color: #22242a;
  --pdf-color: #dc3545;
}
svg:not(:root) {
  overflow: hidden;
}

.bg-light {
  background-color: #f8f6f6 !important;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #23527c !important;
}

/* Start Navbar */
.navbar {
  background-color: var(--main-color);
}

.navbar .navbar-toggler[aria-expanded="true"] {
  border-color: white;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: #0075ff;
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav {
  padding-right: 0;
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
  color: black;
}

.navbar .navbar-nav .nav-link {
  color: #fff;
}

.active {
  color: black;
}

.navbar {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  background-color: var(--main-color);
}

.main-btn {
  padding: 0.5rem 1rem;
  background-color: var(--btn-color);
  color: #fff;
}

.in .nav-item .active {
  background-color: #dc3545;
}

/* End Navbar */
/* Start Alert */
.img-alert {
  width: 250px;
  height: 250px;
}

.alerts .content {
  height: fit-content;
  padding-top: 10px;
}

.alerts .main-btn {
  color: white;
}

.alerts .main-btn:hover {
  color: black !important;
}

.alerts .content p {
  font-size: 18px;
  line-height: 2;
  margin: 20px 0;
  font-weight: 500;
}

.alerts>div:hover {
  box-shadow: 0px 5px 40px rgb(29 34 47 / 15%);
}

@media (max-width: 541px) {
  .alerts .row {
    flex-direction: column;
  }
}
.trans-300{
  transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -moz-transition: all linear 300ms;
  -ms-transition: all linear 300ms;
  -o-transition: all linear 300ms;
}
/* End Alert */
/* Start Footer */
.footer {
  background-color: var(--footer-color);
  color: #fff;
}

.footer .icon {
  font-size: 25px;
  margin: 20px 0;
}

.footer .icon>a {
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
}

.footer .icon .face:hover,
.footer .icon .face:active {
  color: #0075ff !important;
}

.footer .icon .yout:hover,
.footer .icon .yout:active {
  color: #f00 !important;
}

.footer .icon .enve:hover,
.footer .icon .enve:active {
  color: #6c757d !important;
}

.footer .text p {
  font-size: 18px;
  line-height: 2;
  margin: 20px 0;
  font-weight: 400;
}

@media (max-with: 526px) {
  .footer .foot {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* End Footer */