/* Font */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Clicker+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --black: #000;
  --light: #fff;
  --bg-main: #fff;
  /* --bg-main: #F9EFDB; */
  --bg-section: #f3f8ff6e;
  --span-color: #777;
  --main-color: #f11a23;
  --opacity-black: #000000b3;
  --main-color-dark: #e6185e;
  --shadow: rgba(145, 158, 171, 0.2) 0px 2px 4px -1px,
    rgba(145, 158, 171, 0.14) 0px 4px 5px 0px,
    rgba(145, 158, 171, 0.12) 0px 1px 10px 0px;
  /* ------------- */
  --overlay-color: rgba(0, 0, 0, 0.5);
  --green-color: #00baa4f0;
  --red-color: #d45747e6;
  --bg-body: #fff5f3;
}

* {
  margin: 0;
  padding: 0;
  min-width: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cairo", sans-serif;
  /* 300 - 400 - 500 - 600 - 700 - 800 */
  background-color: #fff5f3;
  background: url("../images/bg-index-body.jpg");
}

i {
  cursor: pointer;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

/* .active {
  color: var(--main-color) !important;
} */

/* ========== Navbar ========== */

nav {
  background-color: #444444ba !important;
}

nav .logo img {
  width: 60px;
}

nav ul li a span {
  font-size: 26px;
}

.nav-link {
  text-decoration: none;
}

.nav-link.active {
  color: red !important;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  background-color: #f11a23;
  height: 2px;
  width: 60px;
}

/* ========== Footer ========== */

.footer {
  background-color: #103741;
}

/* Details */

.footer .btn.btn-social {
  margin-left: 5px;
  margin-right: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 45px;
  transition: 0.2s;
}

.footer .btn.btn-social:hover {
  border-color: var(--main-color);
  background: var(--main-color);
  border-radius: 6px;
}

/* Links */

.footer .btn.link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: right;
  font-size: 16px;
  transition: all 0.2s ease;
}

.footer .btn.link::before {
  position: relative;
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0;
  margin-left: 10px;
}

.footer .btn.link:hover {
  letter-spacing: 1px;
  color: var(--main-color) !important;
}

/* Form */

.footer .form-control {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: #ffffff;
}

.footer .footer-menu a {
  margin-left: 15px;
  margin-right: 0;
  padding-left: 15px;
  padding-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
  color: var(--main-color) !important;
}

.footer .footer-menu a:last-child {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}

.footer input::placeholder {
  color: var(--span-color);
}

.footer input:focus {
  box-shadow: var(--shadow);
  outline: none;
  border-color: var(--main-color);
}
@media (max-width: 991px) {
  .nav-link.active::after {
    right: 2%;
    transform: translate(0);
    background-color: transparent;
  }
}
