@charset "UTF-8";
/* Typography */
@import url('../../../assets/fonts/poppins/poppins.css');
@import url('../../../assets/fonts/lora/lora.css');
@import url('../../../assets/fonts/fontawesome/all.min.css');

html, body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  background-color: #fff;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a:not([class]),
header a:not([class]):hover {
	color: #fff;
	text-decoration: none;
}

header .ctmh-logo {
	display: block;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  background: url('../img/ctmh-logo-rev.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: url('../img/menu.png');
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}

.toggle.active {
  background: url('../img/close.png');
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}

.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}

.showcase.active {
  right: 15rem;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #03a9f4;
  mix-blend-mode: overlay;
}

.text {
  position: relative;
  z-index: 10;
}

.text h2 {
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}

.text h3 {
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}

.text p {
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}

.text a {
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  color: #006699;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: 0.2s;
}

.text a:hover {
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 15rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu ul {
  position: relative;
}

.menu ul li {
  list-style: none;
  font-size: 1.5rem;
  color: #ccc;
}

.menu ul li a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #0a2033;
}

.menu ul li a:hover {
  color: #03a9f4;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }
  .text h2 {
    font-size: 3em;
  }
  .text h3 {
    font-size: 2em;
  }
}