/* GENERAL STYLES */
* {
  box-sizing: border-box;
  outline: none !important;
}
*:focus {
  outline: none !important;
}

:root {
  --blue: #56ccf2;
  --red: #e21d00;
  --dark-blue: #0b3b65;
}

body {
  padding: 0;
  margin: 0;
  font-family: Montserrat, "san-serif";
}

.button {
  border-radius: 8px;
  padding: 10px 20px;
  border: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  font-family: MontserratSemiBold;
  line-height: 32px;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  text-decoration: none;
  color: white;
}
.button-dark-blue {
  color: white;
  background-color: var(--dark-blue);
}
.button-blue {
  color: white;
  background-color: var(--blue);
}

.button-red {
  background-color: var(--red);
  color: white;
}

.button-block {
  width: 100%;
  display: block;
  text-align: center;
}

.button-lg {
  padding: 10px 35px;
}

.button-sm {
  padding: 5px 25px;
  font-size: 14px;
}

.color-is-white {
  color: white;
}

.color-is-white * {
  color: white;
}

.color-dark-blue {
  color: var(--dark-blue) !important;
}

.bg-dark-blue {
  background-color: var(--dark-blue) !important;
}

/* header */
header {
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 10px rgb(0 0 0 / 12%);
  top: 0;
  position: fixed;
  left: 0;
}

header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 !important;
}

header .logo {
  width: 80px;
  display: inline-block;
}

header .logo img {
  width: 100%;
  height: auto;
}

nav {
  display: flex;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 5px;
  position: relative;
}

nav ul li a {
  font-family: MontserratBold;
  color: #252525;
  padding: 15px;
  /* background-color: #0b3b65; */
  display: flex;
}
nav ul li.active a {
  background-color: var(--blue);
  color: white;
}
nav ul li a:hover {
  color: var(--dark-blue);
  text-decoration: none;
}
nav ul li.active a:hover {
  color: white;
}

nav ul li > ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  /* border: 1px solid #0f0f0f; */
  flex-direction: column;
  background-color: white;
  width: max-content;
  align-items: flex-start;
  transition: all 0.3s;
  box-shadow: 0px 9px 9px 3px #0a09092b;
}
nav ul li > ul li {
  border-bottom: 1px solid #eee;
  width: 100%;
  margin: 0;
}
nav ul li > ul li a {
  padding: 15px 20px;
  font-family: Montserrat;
  font-size: 14px;
  transition: all 0.3s;
}
nav ul li > ul li a:hover {
  background-color: var(--dark-blue);
  color: white;
}
nav ul li > ul li a.logout:hover {
  background-color: var(--red);
}
nav ul li:hover ul {
  opacity: 1;
  visibility: visible;
}
.page-content {
  padding-top: 50px;
}

.page-banner {
  width: 100%;
  padding: 140px 0 80px;
  position: relative;
}

.page-banner .container {
  z-index: 1;
}

.page-banner-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.page-banner-background-backdrop {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.page-banner h4 {
  font-family: MontserratExtraBold;
  font-size: 45px;
  max-width: 80%;
  color: white;
}

.page-banner p {
  font-size: 18px;
  max-width: 70%;
  color: white;
}

.banner-position {
  background-color: white;
  border-radius: 10px;
  /* overflow: hidden; */
  width: 100%;
}

.banner-position-header {
  padding: 10px 20px;
  color: white;
  font-size: 18px;
  font-family: MontserratBold, "san-serif";
  background-color: #181818;
  width: max-content;
  border-radius: 10px 0 10px 0;
}

.banner-position-body {
  padding: 40px 35px;
}

.banner-position-body .input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.banner-position-body .input-group label {
  font-family: MontserratSemiBold;
  font-size: 14px;
  color: #252525;
}

select.form-control,
textarea.form-control,
input.form-control {
  width: 100% !important;
  background: #eee;
  border: 0;
  border-radius: 10px !important;
  padding: 15px 20px;
  height: unset !important;
  font-weight: 600;
}

.banner-position-body .input-group select:focus,
.banner-position-body .input-group input:focus {
  background-color: white;
  border-color: var(--blue);
}

.datetimepicker-dummy .datetimepicker-dummy-wrapper {
  width: 100%;
  background: #eee;
  border: 0;
  border-radius: 10px !important;
  padding: 15px 10px;
  height: unset !important;
  font-weight: 600;
}

/* SECTION */
.section {
  padding: 100px 0 !important;
}

.section-header-title {
  text-align: center;
  margin-bottom: 15px;
}

.section-header-title h3 {
  font-family: MontserratExtraBold;
  font-size: 45px;
}

.section-title h3 {
  font-family: MontserratExtraBold, "san-serif";
  font-size: 45px;
}

.section-title p {
  font-size: 25px;
}

/* LOCATION CARD   */

.location-card {
  width: 100%;
  padding: 0px;
  background-color: white;
  box-shadow: 0 0 10px rgb(0 0 0 / 12%);
  /* border: 1px solid #1818188e; */
  border-radius: 20px;
  position: relative;
}

.location-card-image {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
}

.location-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-body {
  padding: 20px 10px 10px !important;
  margin-top: 5px;
  position: absolute;
  width: calc(100% - 25px);
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

.location-card-body h4 {
  font-family: MontserratBold;
  font-size: 20px;
  margin: 0 0 10px 0;
  color: white;
}

/* BUTTON COUNT */

.button-number {
  padding: 15px 20px;
  border-radius: 20px;
  background-color: var(--red);
  color: white;
  margin-bottom: 20px;
  margin-right: 20px;
  font-family: MontserratBold;
  font-size: 16px;
  width: max-content;
}

/* ===== IMAGE HOLDER ====== */
.image-holder {
  width: 100%;
  height: 450px;
  border-radius: 30px 0 30px 0;
  /* overflow: hidden; */
  position: relative;
  z-index: 1;
}

.image-holder img {
  width: 100%;
  height: 100%;
  border-radius: 30px 0 30px 0;
  object-fit: cover;
}

.image-holder::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue);
  position: absolute;
  bottom: -20px;
  right: -20px;

  border-radius: 30px 0 30px 0;
  z-index: -1;
}

/* ====== CTA ====== */
.cta {
  background-color: #f5f5f5;
  padding: 70px 0;
}

.cta .inner-cover {
  background: #ffffff;
  box-shadow: 0px 4px 50px rgb(86 204 242 / 10%);
  border-radius: 10px;
  padding: 30px;
}

.cta .inner-cover h1 {
  font-family: MontserratExtraBold;
  font-weight: bold;
  font-size: 30px;
  /* line-height: 44px; */
  color: #333333;
  max-width: 90%;
}

.cta form {
  position: relative;
}

.cta .form-control {
  width: 100%;
  padding: 25px 20px;
  height: unset;
  border-radius: 0;
  border-color: transparent;
  box-shadow: 0 0 12px 7px #7f7f7f1a;
}

.cta .form-control:focus {
  border-color: #7f7f7f54;
}

.cta button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  border-radius: 0;
}

/* ==== FOOTER ====   */

footer {
  padding: 90px 0 20px;
  background-color: #181818;
}

footer img {
  width: 120px;
}

.footer-card {
  padding: 10px;
}

.footer-card h3 {
  font-family: MontserratBold;
  font-size: 18px;
}

.footer-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-card a {
  font-size: 16px;
}

.footer-socials i {
  font-size: 25px;
}

.footer-socials a {
  margin: 0 5px;
}

.footer-copyright {
  background-color: #0f0f0f;
  text-align: center;
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-top: 120px;
}

.footer-copyright p {
  margin: 0;
}

/* ===== FEATURE ===== */

.feature-card {
  background-color: white;
  padding: 20px 25px;
  box-shadow: 0 5px 10px #2525257d;
  border-radius: 20px;
  height: 100%;
}

.feature-card .icon {
  background-color: var(--dark-blue);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  margin: 0px 0px 20px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 3px #eee;
}

.feature-card h4 {
  font-family: MontserratBold;
  font-size: 20px;
}

.feature-card a:hover {
  color: var(--blue);
  text-decoration: none;
}

/* ===== TEAM ===== */

.team {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.team:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 90%;
  height: 400px;
  border-radius: 10%;
  overflow: hidden;
  margin-bottom: 30px;
 
}

.team:hover .team-image img {
  transform: scale(1.1);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team h4 {
  font-family: MontserratBold;
  text-align: center;
  margin-bottom: 5px;
  color: var(--dark-blue);
}

.team p.role {
  font-family: Montserrat;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.empty {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.empty h4 {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.empty img {
  width: 200px;
  height: auto;
  margin: 15px 0;
}

.account-page-title {
  text-align: center;
  margin-bottom: 30px;
}
.account-page-title h4 {
  font-weight: bold;
}
.account-sidebar {
  padding: 20px;
  border-radius: 20px;
  background-color: #141519;
  color: white;
  width: 100%;
}

.account-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-sidebar ul li {
  margin-bottom: 5px;
}

.account-sidebar ul li a {
  padding: 17px 20px;
  display: flex;
  align-items: center;
  border-radius: 15px;
  font-family: MontserratSemiBold;
  color: #fff;
  transition: all 0.3s;
}

.account-sidebar ul li a i {
  margin-right: 15px;
}
.account-sidebar ul li a:hover {
  background-color: #1e1f25;
  text-decoration: none;
}

.account-sidebar ul li a.is_active {
  background-color: #1e1f25;
  text-decoration: none;
}

.password {
  position: relative;
}

.passwordbutton {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  background-color: #252525;
  color: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}
