/* * {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
} */

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav-tb {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 75px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}


/* iphone 7 plus
@media (min-width:412px) and (max-width:418px) and (max-height: 750px) {
  .nav-tb {
    left: 347px!important;
  }
}

iphone
@media (min-width:418px) and (max-width:423px) and (max-height: 750px) {
  .nav-tb {
    left: 353px!important;
  }
}

iphone 12 pro
@media (min-width:423px) and (max-width:465px) and (max-height: 750px) {
  .nav-tb {
    left: 362px!important;
  }
}

hp
@media(min-width:361px) and (max-width: 374px) {
  .nav-tb {
    left: 297px;
  }
}

@media(min-width:375px) and (max-width: 390px) {
  .nav-tb {
    left: 312px;
  }
}

<!-- redmi not 10 pro
@media(min-width:391px) and (max-width:400px){

  .nav-tb {
    left: 324px;
  }
}

@media(min-width:401px) and (max-width:465px){
  .nav-tb {
    left: 343px;
  }
} */


/* @media (min-width: 466px) {

} */

.nav__list {
  display: flex;
  flex-flow: column wrap;
  height: 55vh;
  transform: translate(0, -100%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav__list--active {
  transform: translate(0, 0);
}
.nav__item {
  flex: 2;
  position: relative;
}
.nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-decoration: none;
  font-size: 24px;
  background: #2b3033;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav__link:hover {
  background: #272b2e;
}

/* .menu__imgtb{
  width: 40px;
} */

.nav__item a{
  text-decoration: none;
}

.nav__item span{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  width: 100%;
  top: 50px;
  left: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 390px) {
  .nav-tb {
    width: 65px;
  }
  .nav__list {
    height: 60vh;
  }
}

/* iphone 7 plus */
@media (max-width:465px) and (max-height: 650px) {
  .nav__list {
    height: 62vh!important;
  }
}

@media(min-width:391px) and (max-width:465px){
/* @media (max-width: 640px) { */
  .nav-tb {
    width: 70px;
  }
  .nav__list {
    height: 50vh;
  }
}

.burger {
  height: 10vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: #65360b;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  box-shadow: 4px 8px 8px hsl(0deg 0% 0% / 38%);
  /* border-radius: 5px; */
}
.burger:hover {
  background: #824710;
  box-shadow: none;
  border: 0.1px solid #65360b;
}

.burger__patty {
  position: relative;
  height: 2px;
  width: 40px;
  background: white;
}
.burger__patty:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  height: 2px;
  width: 100%;
  background: white;
}
.burger__patty:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  height: 2px;
  width: 100%;
  background: white;
}
.burger__patty, .burger__patty:before, .burger__patty:after {
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.burger--active .burger__patty {
  transform: rotate(90deg);
}
.burger--active .burger__patty:before {
  transform: rotate(-45deg) translate(-7px, -7px) scaleX(0.7);
}
.burger--active .burger__patty:after {
  transform: rotate(45deg) translate(-7px, 7px) scaleX(0.7);
}
@media (max-width: 640px) {
  .burger {
    height: 8.5vh;
  }
  .burger__patty {
    transform: scale(0.8);
  }
  .burger--active .burger__patty {
    transform: scale(0.8) rotate(90deg);
  }
}

.panel {
  /* position: absolute; */
  min-height: 100vh;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.panel__wrapper {
  padding: 7vh 7vw;
  perspective: 1000px;
}
.panel__content {
  will-change: transform;
  transform: scale(0.7) rotateX(-230deg);
  transform-origin: center 80%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.panel__content--active {
  transform: none;
  opacity: 1;
}
.panel__headline {
  font-weight: 700;
  opacity: 0.8;
  font-size: 48px;
  margin: 0 0 25px 0;
}
.panel p {
  margin: 0 0 25px 0;
  color: #1a1a1a;
  font-size: 24px;
  max-width: 800px;
}
.panel p:last-child {
  margin-bottom: 0;
}

.panel_text_content{

  position: relative;
  text-align: center;

  /* display: inline-block; */

  top: 16em;
  /* left: 6.8em; */
  margin: 0 auto;

}
.panel_text_content .text_content_header{
  color: #fff;
  font-weight: 700;
  opacity: 0.8;
  font-size: 48px;
  margin: 0 0 25px 0;
  letter-spacing: 3px;
}
.panel_text_content .panel__text__bottom{
  color: #fff;
  letter-spacing: 3px;
}

.panel__block__white {
  height: 2px;
  /* background: rgba(0, 0, 0, 0.2); */
  background: #fff;
  margin: 0 0 25px 0;
}
.panel__block__transparent {
  height: 2px;
  /* background: #fff; */
  margin: 0 0 5px 0;
}
@media (max-width: 640px) {
  .panel__headline {
    font-size: 36px;
  }
  .panel__wrapper {
    padding: 10vh 10vw;
  }
  .panel p {
    font-size: 16px;
  }
}

.c-primary, .c-primary:focus, .c-primary:active {
  color: #cf9055;
}
.c-purple, .c-purple:focus, .c-purple:active {
  color: #926cd5;
}
.c-blue, .c-blue:focus, .c-blue:active {
  color: #5fc7ea;
}

.c-red, .c-red:focus, .c-red:active {
  color: #e68568;
}

.c-green, .c-green:focus, .c-green:active {
  color: #68e6ac;
}

.c-yellow, .c-yellow:focus, .c-yellow:active {
  color: #e6d068;
}

.c-primary:hover,
.c-purple:hover,
.c-blue:hover,
.c-red:hover,
.c-green:hover,
.c-yellow:hover
{
  color: whitesmoke;
}

.b-blue {
  background: #5fc7ea;
}

.b-red {
  background: #e68568;
}

.b-green {
  background: #68e6ac;
}

.b-yellow {
  background: #e6d068;
}

.logo {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  z-index: 2;
}
.logo img {
  width: 65px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: rotate(0);
}
.logo img:hover {
  transform: rotate(180deg) scale(1.1);
}
