/*RESPONSIVE - lg*/
@media (max-width: 1200px) {
  * {
    box-sizing: border-box; }

  .mnav {
    display: flex;
    z-index: 999999;
    flex-flow: column nowrap;
    /*justify-content: center;*/
    position: fixed;
    top: 5px;
    right: 15px;
    width: 355px;
    height: 100%;
    background: #ffffff;
    clip-path: circle(29px at calc(355px - 10px - 22.5px) calc(10px + 22.5px));
    transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
    .mnav.active {
      clip-path: circle(75% at 177.5px 50vh);
      right: 0;
      overflow-y: auto; }
    .mnav__link {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-align: left;
      padding: 10px 25px;
      color: #000000;
      text-decoration: none;
      /*transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
      opacity: 0;
      transform: translateY(50%);*/ }
      .mnav__link:nth-child(1) {
        transition-delay: 0.05s; }
      .mnav__link:nth-child(2) {
        transition-delay: 0.1s; }
      .mnav__link:nth-child(3) {
        transition-delay: 0.15s; }
      .mnav__link:nth-child(4) {
        transition-delay: 0.2s; }
      .mnav__link.active {
        opacity: 1;
        color: #222222;
        /*transform: translateY(0);*/
        right: 15px;
        width: 100%; }
    .mnav__link:first-child {
      margin-top: 100px !important; }
    .mnav__link:hover {
      background: rgba(0, 0, 0, 0.2) !important; }

  .hamburger {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    z-index: 999999;
    top: 15px;
    right: 25px;
    background: #ffffff; }
    .hamburger__patty {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      height: 2px;
      width: 50%;
      backgroud-clip: padding-box;
      background: #c4251c;
      transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
      .hamburger__patty:nth-child(1) {
        transform: translate(-50%, calc(-50% - 8px)); }
      .hamburger__patty:last-child {
        transform: translate(-50%, calc(-50% + 8px)); }
    .hamburger.active .hamburger__patty {
      background: #c4251c; }
      .hamburger.active .hamburger__patty:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg); }
      .hamburger.active .hamburger__patty:nth-child(2) {
        opacity: 0; }
      .hamburger.active .hamburger__patty:nth-child(3) {
        transform: translate(-50%, -50%) rotate(-45deg); }

  .bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background: url("") center/cover;
    z-index: -1; }
    .bg:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%); }

  .onlyp {
    color: black;
    position: absolute;
    bottom: 10px;
    left: 10px;
    opacity: 0.35; } }
/*RESPONSIVE - lg*/
@media (min-width: 1201px) {
  .mnav {
    display: none; } }
/*RESPONSIVE - md*/
@media (max-width: 991px) {
  /*.mnnav {margin:-40px 0 0 0;}*/ }
/*RESPONSIVE - sm*/
@media (max-width: 767px) {
  /*.mnnav {margin:-60px 0 0 0;}*/ }
