/* https://coolors.co/00cae5 */
body {
  display: block;
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  background-color: #060606;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

.panel-right ul.icon-menu li.nav-item:hover {
  background-color: #00cae5;
}

.background-block {
  position: fixed;
  height: 200%;
  width: 100%;
  transform: rotate(-15deg);
  left: -78%;
  top: -50%;
  background-color: #00CAE5;
}

.content {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
}

.panel-left {
  width: 33.33%;
  background-image: url(images/image.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  -moz-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  height: calc(100vh - 60px);
  z-index: 1;
  margin-left: 30px;
  top: 30px;
  box-shadow: 0 0 7px rgba(0,0,0,.9);
}

.panel-center {
  font-size: 22px;
  font-weight: 400;
  width: 66.666667%;
}

.panel-center__content {
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
}

.panel-center__content h6 {
  color: #eee;
  font-size: 22px;
  font-weight: 400;
  display: block;
  margin: 0;
  margin-bottom: 10px;
}

.panel-center__content h1 {
  font-family: 'Poppins', sans-serif;

  font-size: 45px;
  line-height: 45px;
  font-weight: 700;
  margin: 18px 0 10px;
  color: #00CAE5;
}
.panel-center__content h1 span {
  color: #fff;
}

.panel-center__content p {
  font-size: 16px;
  line-height: 32px;
}

.panel-center__content p a {
  color: #ff0;
  text-decoration: none;
}
.panel-center__content p a:hover {
  text-decoration: underline;
}

.panel-center__mobile-picture {
  display: none
}

.panel-right {
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}

.panel-right .nav-item.active {
  background-color: #00cae5;
}
.panel-right .nav-item {
  width: 50px;
  height: 50px;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  /* transition: .3s; */
  margin: 20px 0;
  border-radius: 50%;
  background: #2b2a2a;
}

.panel-right .nav-item i {
  color: #ddd;
  font-size: 19px;
  transition: .3s;
}

.panel-right .nav-item img {
  height: 25px;
  width: 25px;
  position: absolute;
  pointer-events: none;
  left: 12px;
  border-radius: 12px;
}

.panel-right .nav-item a,
.panel-right .nav-item div {
  display: block;
  padding: 0;
  width: 50px;
  height: 50px;
}
.panel-right .nav-item h2 {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  color: #fff;
  line-height: 50px;
  font-weight: 500;
  border-radius: 30px;
  text-transform: uppercase;
  padding: 0 25px 0 30px;
  height: 50px;
  background-color: #00cae5;
}
.panel-right .nav-item a:hover h2,
.panel-right .nav-item div:hover h2 {
  opacity: 1;
  right: 27px;
  margin: 0;
  text-align: center;
  border-radius: 30px 0 0 30px;
  white-space: nowrap;
  width: fit-content;
}
.panel-right .icon-menu i {
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  text-align: center;
  top: 6px;
}
.panel-right .icon-menu i.bi {
  position: absolute;
  pointer-events: none;
}

@media (min-width: 1001px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile__menu-toggle {
  display: inline-block;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 3;
  user-select: none;
  padding: 19px 0 0 16px;
  width: 54px;
  height: 54px;
  border-radius: 5px;
  background: #252525;
  box-sizing: border-box;
}

.nav-mobile__menu-toggle input {
  display: flex;
  width: 54px;
  height: 54px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.nav-mobile__menu-toggle > span {
  display: flex;
  width: 23px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease
}
.nav-mobile__menu-toggle input:checked ~ span {
  transform: rotate(45deg) translate(4px, 0);
}
.nav-mobile__menu-toggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(2px, 0px);
}
.nav-mobile__menu-toggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.nav-mobile__menu-toggle input:checked ~ ul {
  transform: translate(100%, 0);
}
.nav-mobile__menu {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding-top: 60px;
  background-color: #252525;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0 0;
  transform: translate(0, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  padding-left: 0;
  list-style: none;
}

.nav-mobile__menu li {
  position: relative;
  padding-left: 30px;
}
.nav-mobile__menu li a {
  color: #fff;
  text-transform: uppercase;
  line-height: 18px;
  font-size: 18px;
  display: block;
  text-decoration: none;
  padding: 14px 0;
  position: relative;
}
.nav-mobile__menu li.active a {
  color: #00cae5;
}

.nav-mobile__menu li a i {
  display: inline-block;
  height: 26px;
}

.nav-mobile__menu li a i::before {
  vertical-align: text-top;
}

.nav-mobile__menu li a span {
  position: absolute;
  left: 50px;
  font-weight: 400;
}
.nav-mobile__menu li.active a span {
  font-weight: 600;
}
.nav-mobile__menu li:after {
    position: absolute;
    content: '';
    height: 1px;
    width: calc(100% - 60px);
    background: #333;
    left: 30px;
}

.nav-mobile__menu li img {
  height: 18px;
  width: 18px;
  pointer-events: none;
}

@media (max-width: 1000px) {
  body {
    padding: 30px;
  }
  .background-block,
  .panel-left,
  .panel-right {
    display: none;
  }

  .content {
    align-items: start;
    width: 100%;
    height: 100%;
  }
  .panel-center {
    width: 100%;
    text-align: center;
  }

  .panel-center__content h1 {
    margin: 0;
    font-size: 40px;
    line-height: 40px;
  }
  .panel-center__content h6 {
    margin: 0;
  }
  .panel-center__mobile-picture {
    display: block;
    border-radius: 50%;
    width: 270px;
    height: 270px;
    border: 4px solid #252525;
    margin: 0 auto 25px;
  }
}
@media (max-width: 500px) {
  .panel-center__content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: max(100vh - 60px, 550px);
  }
  .panel-center__content h1 {
    font-size: 30px;
    line-height: 36px;
  }
  .panel-center__content h6 {
    font-size: 18px;
    line-height: 24px;
  }
  .panel-center__content p {
    font-size: 14px;
    line-height: 22px;
  }
  .panel-center__mobile-picture {
    width: 170px;
    height: 170px;
    border: 3px solid #252525;
  }
  
}