@import url("https://fonts.googleapis.com/css?family=Bebas Neue");

:root {
  --primary: #e41a2b;
  --secondary: #bdbdbf;
  --light: #f4f5f8;
  --dark: #222429;
}

* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mitr";
}

section.header-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(15, 15, 16, 0.6);
  padding: 5px 0;
  z-index: 120;
  transition: all 0.3s ease;
}

section.header-menu .header-flex-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

section.header-menu .header-flex-menu .logo {
  margin: 0;
}

section.header-menu .header-flex-menu .logo a {
  text-decoration: none;
  color: var(--light);
  display: flex;
  flex-wrap: nowrap;
}

section.header-menu .header-flex-menu .logo img {
  max-width: 70px;
  margin-right: 10px;
}

section.header-menu .header-flex-menu .logo a h1 {
  margin: auto;
  font-family: "Bebas Neue";
  font-size: 38px;
}

section.header-menu .header-flex-menu .menu {
  margin: auto 0;
}

section.header-menu .header-flex-menu .menu ul.flex-menu {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

section.header-menu .header-flex-menu .menu ul.flex-menu li.list-menu {
  list-style: none;
  padding: 0 10px;
  margin: auto;
}


section.header-menu
  .header-flex-menu
  .menu
  ul.flex-menu
  li.list-menu.btn-phone {
  background: var(--primary);
  padding: 5px 10px;
  border-radius: 5px;
}

section.header-menu
  .header-flex-menu
  .menu
  ul.flex-menu
  li.list-menu.btn-phone a.link-menu:hover {
    opacity: 100%;
  }
  

section.header-menu
  .header-flex-menu
  .menu
  ul.flex-menu
  li.list-menu
  a.link-menu {
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
}

section.header-menu
  .header-flex-menu
  .menu
  ul.flex-menu
  li.list-menu
  a.link-menu:hover {
  opacity: 50%;
}

section.header-menu
  .header-flex-menu
  .menu
  ul.flex-menu
  li.list-menu
  a.link-menu
  img {
  max-width: 150px;
}
/* ul.flex-menu li.list-menu.dropdown */
.dropdown-menu {
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: var(--dark);
}
.menu-bar {
  display: none;
}

/* bg-hero */

#main {
  display: table;
  width: 100%;
  height: 35vh;
  text-align: center;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  background-size: cover; /* Scale the image to cover the entire area */
}

.fof {
  display: table-cell;
  vertical-align: middle;
}

.fof h1 {
  font-size: 50px;
  display: inline-block;
  padding-right: 12px;
  animation: type 0.5s alternate infinite;
  color: var(--light);
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 25px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 50px;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  section.header-menu {
    padding: 10px 0;
  }
  section.header-menu .header-flex-menu .menu ul.flex-menu {
    display: none;
  }
  .menu-bar {
    display: block;
  }

  .menu-bar a.btn-menu-bar {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    padding: 5px 15px;
    background: var(--light);
    border-radius: 5px;
  }
  section.header-menu .header-flex-menu .logo img {
    width: 50px;
  }
  section.header-menu .header-flex-menu .logo a h1 {
    margin: auto;
  }
  .offcanvas .offcanvas-header img {
    width: 50px;
    background: var(--dark);
    border-radius: 50%;
  }

  .offcanvas .offcanvas-header a {
    text-decoration: none;
    color: var(--dark);
    font-size: 24px;
    font-weight: bold;
  }
  .offcanvas .offcanvas-header {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  }
  .offcanvas .offcanvas-body li.list-menu {
    list-style: none;
    margin-bottom: 15px;
  }
  .offcanvas .offcanvas-body li.list-menu a.link-menu {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 22px;
    color: var(--dark);
    font-weight: bold;
    font-family: "Ga Maamli";
  }
  .fof h1 {
    margin-top: 50px;
    font-size: 28px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
  section.header-menu .header-flex-menu .menu ul.flex-menu {
    display: none;
  }
  .menu-bar {
    display: block;
  }

  .menu-bar a.btn-menu-bar {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    padding: 5px 15px;
    background: var(--light);
    border-radius: 5px;
  }
  section.header-menu .header-flex-menu .logo a h1 {
    margin: auto;
  }
  .offcanvas .offcanvas-header img {
    width: 50px;
    background: var(--dark);
    border-radius: 50%;
  }

  .offcanvas .offcanvas-header a {
    text-decoration: none;
    color: var(--dark);
    font-size: 24px;
    font-weight: bold;
  }
  .offcanvas .offcanvas-header {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  }
  .offcanvas .offcanvas-body li.list-menu {
    list-style: none;
    margin-bottom: 15px;
  }
  .offcanvas .offcanvas-body li.list-menu a.link-menu {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 22px;
    color: var(--dark);
    font-weight: bold;
    font-family: "Ga Maamli";
  }

  .fof h1 {
    margin-top: 75px;
    font-size: 38px;
  }
}
