* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent;
  }
  html,
  body {
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }
  body {
    background-color: #040707;
    font-family: 'MarkPro', Helvetica, Arial, sans-serif;
    font-size: 1rem;
  }
  a {
    text-decoration: none;
    color: #ffffff;
  }
  img{width:100%}
  a:focus {
    outline: 0;
  }
  a:active {
    background: transparent;
  }

  ul,
  li {
    list-style: none;
  }
  input,
  select,
  textarea {
    outline: 0;
  }


  @font-face {
	font-family: MarkPro;
	font-style: normal;
	src: local('markpro'), url("fonts/markpro.woff") format("woff"), url("font/markpro.woff2") format("woff2");
	font-display: swap;
}

header{
    position: fixed;
    width: 100%;
    background: #040707;
    z-index: 1;
}
.mr-auto{margin-right: auto;}
.menu{
    margin-left:10px;
}
.logo img{max-width: 60px;}
.toggle-nav.open{
    left:0;
  }
.toggle a{
    text-decoration: none;
    color: white;
    display: block;
    font-size: 25px;
    align-items: center;
    display: flex;
    margin-top: -4px;
}

.content-menu{ 
    width: 100%;
    position: relative;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding:10px 20px;
    height: 75px;
}
.toggle-nav{
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: flex-start;
    position: absolute;
    flex-direction: column;
    top:75px;
    left: -100%;
    transition: 0.3s;
    background-color: #040707;
    width: 100%;
    height: 100vh;
}
.toggle-nav li{
    margin: 0 10px;
    color: #fff;
    padding: 15px 10px;
}
.toggle-nav li a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5em;
}
.toggle-nav li:last-child{
    display: flex;
    align-items: center;
}
.toggle-nav li:last-child a{
    width: 35px;
    margin-right: 30px;
}
.toggle-nav li:last-child a:first-child{
    width:40px;
    margin-right: 25px;
}
.toggle-nav li img{
    width:100%
}
.toggle .icon-close, .toggle.menu .icon-open{
    display: none;
}
.toggle.menu .icon-close{
    display: block;
}
.icon-open svg{
    height: 35px;
    width: 40px;
    margin-top: -5px;
}
.icon-close svg{
    height: 22px;
    width: 25px;
    margin: -5px 5px 0px 0px;
}
.icon-open svg path, .icon-close svg path{fill: #ffffff;}
.dummy-div{
    width: 100%;
    height: 75px;
}
.home-animation p, .content-body h1{
    font-size: 1.9rem;
    color: #FFFFFF;
    line-height: 1.5em;
    text-transform: uppercase;
    font-weight: normal;
}
.common-space{
    padding-left: 20px;
    padding-right: 20px;
}
.content-body h1{
    margin-bottom: 20px;
}
.content-body h1 span{
    font-size: .7em;
    text-transform: none;
}
.content-body p{
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 1.4em;
    margin-bottom:20px;
}
.content-body a{
    text-decoration: underline;
}
.mt-new{
    margin-top: -20px;
}
.mail-icon{
    margin-right:15px;
}
.mail-icon img{
    max-width: 40px;
    margin-top: -6px;
}
.linkedin-icon{
    width: 40px !important;
}
.img-fit{
    position: relative;
    display: block;
    overflow: hidden;
}
.img-fit:before {
    padding-top: 150%;
    content: "";
    width: 100%;
    display: block;
}
.img-fit img{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    object-position: top;
}

.anim-desktop{
    display: none;
}
.anim-mobile{
    display: block;
}

.toggle-nav svg{
    width: 35px;
}

svg path, svg circle{fill:#fff !important}

.twitter-icon, .twitter-icon svg{
    width:40px !important
}

@media screen and (min-width:768px) and (max-width:2000px){
    .fix-img img{
        max-width: 200px;
    }
    .home-animation{
        text-align: left;
    }
    .home-animation img{
        max-width: 600px;
    }
    .anim-desktop{
        display: block;
    }
    .anim-mobile{
        display: none;
    }
}