@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color:#2c7efe;
}

body {
  /* background: linear-gradient(236deg, #020024 0%, #090979 20%, #00d4ff 100%); */
  background-color: #000000;
  height: 100vh;
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.container {
  /* margin: 1em;
  height: calc(100% - 2em); */
  height: 100%;
  color: var(--primary-color);
}

@media (min-width: 62.5em) {
  .container {
    display: flex;
    /* padding: 1.6em; */
  }
}
@media (min-width: 43.75em) {
  .container .left-col {
    display: flex;
  }
}
.container .left-col nav {
  position: fixed;
  z-index: 1;
  background: #2c2931;
  left: 0;
  top: 0;
  height: 100vh;
  max-width: 300px;
  transform: translatex(-100%);
  transition: transform 0.3s;
}
@media (min-width: 62.5em) {
  .container .left-col nav {
    position: unset;
    transform: translateX(0) !important;
    /* border-radius: unset;
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px; */
    height: 100%;
  }
}
.container .left-col nav .back-btn {
  padding: 2em 3em 2em;
  transform: scalex(-1);
  color: #fff;
  cursor: pointer;
  font-size: 1.47rem;
  transition: transform 0.3s;
}
@media (min-width: 62.5em) {
  .container .left-col nav .back-btn {
    display: none;
  }
}
.container .left-col nav .back-btn:hover {
  transform: scalex(-1) translatex(6px);
}
.container .left-col nav ul {
  list-style-type: none;
  width: 100%;
}
@media (min-width: 62.5em) {
  .container .left-col nav ul {
    margin-top: 4em;
  }
}
.container .left-col nav ul li {
  width: 100%;
}
.container .left-col nav ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.875em 5em 0.875em 4em;
}
.container .left-col nav ul li a:hover {
  background: #413e47;
}
.container .left-col nav ul li .active {
  background: var(--primary-color);
}
.container .left-col nav ul li .active:hover {
  background: #4497ff;
}
.container section {
  /* background: #221f26 url("/img/bg2.jpg"); */
  background-size: cover;
  height: 100%;
  background-blend-mode: screen;
  background-position: 50% 50%;
  padding: 2em;
  /* border-radius: 13px; */
}
@media (min-width: 62.5em) {
  .container section {
    /* border-radius: unset;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px; */
    width: 100%;
    background-size: cover;
    background-position: bottom;
    background-attachment: unset;
  }
}

.container section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
  background: #221f26 url("/img/bg2.jpg");
}

.container section header {
  display: flex;
  align-items: center;
}
@media (min-width: 62.5em) {
  .container section header {
    padding: 1.1em 1.1em 0;
  }
}
.container section header .logo {
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: -0.1em;
  text-align: center;
  width: 100%;
  margin-top: 25px;
  margin-left: 45px;
}
@media (min-width: 62.5em) {
  .container section header .logo {
    text-align: left;
  }
}
.container section header .menu-btn {
  width: 35px;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 62.5em) {
  .container section header .menu-btn {
    display: none;
  }
}
.container section .cv {
  display: grid;
  place-items: center;
  height: 100%;
}

.container section .cv .content {
  height: 80%;
  width: 90%;
  overflow: scroll;
}

.home {
  margin-top: 10%;
}

@media (min-width: 62.5em) {
  .container section .cv .content {
    justify-self: left;
    margin-left: 4em;
    margin-top: 0em;
  }
}
.container section .cv .content h1 {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 99%;
  font-size: 3rem;
  font-size: clamp(2.5rem, -0.875rem + 8.333vw, 4rem);
}
.container section .cv .content p {
  font-size: 1.5rem;
  font-size: clamp(1.8rem, -0.875rem + 8.333vw, 2.75rem);
  font-weight: 300;
  line-height: 118%;
  margin-top: 0.5em;
  color: #847d93;
}
@media (min-width: 43.75em) {
  .container section .cv .content p {
    width: 75%;
  }
}
.container section .cv .content .cta {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  margin-top: 2.875em;
  border: 1px solid #4d4d4d;
  padding: 1.25em 1.25em 1.25em calc(2.5em + 1.5em);
  position: relative;
  transition: 0.3s ease-in-out;
}
.container section .cv .content .cta:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  left: 1.25em;
  display: flex;
  align-items: center;
}
.container section .cv .content .cta:hover {
  background: var(--primary-color);
}

.banner {
  width: 100%;
  text-align: center;
  border: 1px solid #550000;
  background-color: #FAFAFA;
  padding: 4px;
}
