
#menuToggle {
    display: block;
    position: fixed;
    height: 100%;
    top: 30px;
    right: 50px;
    z-index: 999;
    -webkit-user-select: none;
    user-select: none;
  }
  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
  }
  #menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #4d4d4d;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  
  .myLight{
    background: #dddddd;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }
  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }
  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }
  #menu {
    position: absolute;
    width: 400px;
    height: 100vh;
    margin: -100px 0 0 -300px;
    padding: 50px;
    padding-top: 125px;
    background: #4b4b4b;
    opacity: 0.8;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  .lightt {
    opacity: .3;
    background: #b4b1b1;
    width: 100px;
  }

  #menu hr {
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #d5d5d5;
  }
  
  #menu li {
    padding: 10px 0;
    font-size: 22px;
    font-weight: 600;
  }
  #menuToggle input:checked ~ ul {
    transform: none;
  }

  a {
    text-decoration: none;
    color: #dbdbdb;
    transition: color 0.2s ease;
  }
  a:hover {
    color: tomato;
  }


  #social-icons-div {
    transform: scale(1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    width: 286px;
  }

  #social-icons-div > a {
    color: #dfdddb;
    display: block;
    width: 26px;
    height: 26px;
    background-repeat: round;
    background-size: cover;
  }

  #instagram {
    background-image: url("../assets/icons/social/instagram.svg");
    color:#c5c5c5;
  }
  
  #facebook {
    background-image: url("../assets/icons/social/facebook.svg");
  }
  
  #pinterest {
    background-image: url("../assets/icons/social/pinterest.svg");
  }
  
  #linkedin {
    background-image: url("../assets/icons/social/linkedin.svg");
  }

  #title { 
    margin: 70px 0px;
    width: auto;
  }

  .menu-info{
    position: fixed;
    bottom: 30px;
  }

  .menu-address .col-md-6{
    float: left;
    font-size: 13px;
    color: #b0b0b0;
  }

  .menu-address .text-left {
    width: 150px;
    text-align: left;
    margin-right: 30px;
  }

  .menu-address .text-right {
    width: 120px;
    text-align: right;
  }