:root {
  touch-action: pan-x pan-y;
  height: 100%;
  --vh: 1vh;
}

.full-height {
  height: calc(var(--vh) * 100); /* 100% of dynamic viewport height */
}

body {
  margin: 0;
  padding: 0;
  background-color: #efefef;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Navbar */
.mobile-menu,
.mob-menu-container,
.mob-menu-wrap {
  display: none;
}

.navbar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 56px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px 2px rgba(33, 33, 33, 0.015);
}

/* Logo */
.logo img {
  width: auto;
}

.layout {
  width: auto;
  display: flex;
  gap: 4px;
}

.cssdemotext {
  font-family: 'Ceviche One';
  font-style: normal;
  font-weight: 400;
  font-size: 62px;
  color: black;
  height: 46px;
  line-height: 46px;
  text-align: center;
  text-shadow:
    0px 1px 0px #999,
    0px 2px 0px #888,
    0px 3px 0px #777,
    0px 4px 0px #666,
    0px 5px 0px #555,
    0px 6px 0px #444,
    0px 7px 7px #011;
  background-color: none;
}

.caption {
  font-family: 'Lobster';
  font-size: 24px;
  font-weight: 100;
  font-style: normal;
  text-align:center;
  color: #1c87c9;
}

/* Menu */
.menu-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 84%;
  margin: 0 auto;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.nav--ul__two li,
.nav-menu li {
  list-style: none;
  margin: 0 24px;
  font-size: 28px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav--ul__two li a,
.nav-menu li a {
  text-decoration: none;
  color: #000000;
}

.nav--ul__two li a.active,
.nav-menu li a.active {
  color: #1c87c9;
}

.nav--ul__two li a:hover,
.nav-menu li a:hover {
  color: #456990;
}

.nav--ul__two {
  display: flex;
  gap: 1.6rem;
  font-size: 1.2rem;
}

.material-symbols-outlined {
  font-size: 20px;
}

.material-symbols-outlined.active {
  color: #1c87c9;
}

/* Social Icons */
.social-icons i {
  font-size: 19px;
  margin: 0 9px;
}

.social-icons i:hover {
  color: #1c87c9;
  cursor: pointer;
}

/* Body Content */
.body-content {
  /* height: 88vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Footer */
.footer {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: 1fr;
  gap: 8px;
  text-align: center;
  position: fixed;
  bottom: 0;
  background-color: #ffffff;
}

.footer p {
  font-size: 13px;
  letter-spacing: 0.65px;
}

.footer p a {
  text-decoration: none;
  color: #1c87c9;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 991px) {
  .mob-menu-logo img {
    width: auto;
  }

  .mob-menu-layout {
    width: auto;
    display: flex;
    gap: 4px;
  }

  .mob-menu-cssdemotext {
    font-family: 'Ceviche One';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    color: black;
    height: 46px;
    line-height: 46px;
    text-align: center;
    text-shadow:
      0px 1px 0px #999,
      0px 2px 0px #888,
      0px 3px 0px #777,
      0px 4px 0px #666,
      0px 5px 0px #555,
      0px 6px 0px #444,
      0px 7px 7px #011;
    background-color: none;
  }

  .mob-menu-caption {
    font-family: 'Lobster';
    font-size: 24px;
    font-weight: 100;
    font-style: normal;
    color: #1c87c9;
	text-align:center;
  }

  .desktop-menu {
    display: none;
  }

  .displayon {
    display: block;
  }

  .mobile-menu {
    display: flex;
    flex-direction: row;
    padding: 16px 26px;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 2px 10px 2px rgba(33, 33, 33, 0.075);
  }

  .mobile-menu .logo img {
    width: 220px;
    margin-top: 3px;
  }

  .mobile-menu button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    text-transform: uppercase;
  }

  #nav-icon {
    width: 24px;
    /* margin-bottom: 35px; */
    cursor: pointer;
  }

  .mob-menu-container {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 114px;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .mob-menu-wrap {
    width: 80%;
    background-color: #ffffff;
    box-shadow: -2px 0 10px 2px rgba(33, 33, 33, 0.045);
    z-index: 2;
    height: 100%;
    position: fixed;
    top: 114px;
    right: 0;
    transition: linear 3s;
  }

  /* .mob-menu-cross #cross-icon {
    width: 24px;
    position: fixed;
    top: 50px;
    right: 27px;
    cursor: pointer;
  } */

  .menu-content {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .menu-items {
    width: 100%;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
  }

  .nav-menu li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    list-style: none;
  }

  .material-symbols-outlined {
    font-size: 24px;
    margin-right: 12px;
    color: #1c87c9;
  }

  .link-menu {
    font-size: 18px;
    color: #000;
    text-decoration: none;
  }

  .link-menu:hover {
    color: #456990;
  }

  .social-items {
    margin-bottom: 60px;
    text-align: center;
  }

  /* .body-content {
    height: calc(100vh - 135px);
  } */

  .footer p {
    font-size: 13px;
    z-index: -1;
  }
}
