* { 
  margin: 0px;
  padding: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0;
}

::-moz-selection { /* Code for Firefox */
    background: transparent;
}

::selection {
    background: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  font-family: 'Circular Std', sans-serif;
  font-size: 12px;
  width: 100%;
  padding: 0px;
  background-color: #111111;
}

body, p, h1, h2, h3, h4, h5, h6, span, a, input, button {
  font-family: 'Circular Std', sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    font-family: 'Circular Std', sans-serif;
}

#wrapper {
  width: 100%;
  margin:0 auto;
  padding: 0;
}

/*fadeIn*/

@-webkit-keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@keyframes fade-in { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;
  -webkit-animation:fade-in ease-in 1;
  -moz-animation:fade-in ease-in 1;
  animation:fade-in ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;
  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

@media screen and (max-width: 500px) {
  .fade-in {
    opacity:1;
    -webkit-animation-duration:0s;
    -moz-animation-duration:0s;
    animation-duration:0s;
  }
}

.fade-in.one {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.fade-in.two {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay:0.4s;
  animation-delay: 0.4s;
}

.fade-in.three {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fade-in.four {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay:0.8s;
}


@media screen and (max-width: 500px) {
  .fadeIn {
    opacity:1;
  }
}

/*END fadeIn*/

/*-----------------------------*/

/*HEADER*/

header {
    width: 100%;
    height: 75px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    opacity: 1;
    background-color: #111111;
}

nav {
  width: 100%;
  height: 75px;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom:2px solid #111111;
  background-color: rgba(17,17,17,.85);
  backdrop-filter:blur(12px);
}

.navCont{
  display: flex;
  width: 90%;
  max-width: 1140px;
  height: 75px;
  margin: 0 auto;
  justify-content: space-between;
  overflow: visible;
  height: auto;
}

  @media (max-width: 800px) {
    .navCont{
      width: 100%;
      display: block;
    }
    nav{
      height: 75px;
      border-bottom:0;
      background-color: transparent;
      backdrop-filter:none;
    }
  }

nav ul {
  list-style-type: none;
  width: auto;
  display: flex;
  vertical-align: top;
  text-align:right;
}

nav li {
  display: inline-block;
  text-align: left;
  height: 75px;
  line-height: 75px;
  font-size: 16px;
  font-weight: 700;
  transition:.2s;
  border-bottom:2px solid #111111;
}

nav li a {
  display: block;
  padding: 0 20px;
  text-decoration: none;
  color:#888888;
  transition:.2s;
}

.nav li a.active {
  border-bottom:2px solid #dcdcdc;
  color: #dcdcdc;
}

.nav li:hover {
  border-bottom:2px solid #dcdcdc;
  transition:.2s;
}

.nav li a:hover{
  transition:.2s;
  color: #dcdcdc;
}

.nav-mobile {
  display: none;
  width: 100%;
}

.hamburguer{
  height:24px;
  width: 24px;
  cursor: pointer;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  float:right;
}

.bar1{
  height:2px;
  width: 24px;
  background-color: #888888;
  display: block;
  margin-bottom: 6px;
}

.bar2{
  height:2px;
  background-color: #888888;
  display: block;
  margin-bottom: 6px;
  width: 24px;
}

.bar3{
  height:2px;
  background-color: #888888;
  display: block;
  width: 24px;
}

.navMobCont{
  width: auto;
  margin: 0 auto;
  display:flex;
  padding:0 32px;
}

.logoDesktop {
    width: auto;
    margin: 0;
    display: inline-block;
    vertical-align: top;
    height: 75px;
  }

  .logoDesktop a {
    position:relative;
      color:#888888;
      text-decoration:none;
      font-size: 16px;
      font-weight: 700;
      top:27px;
      transition:.2s;
  }

    .logoDesktop a:hover {
        color:#dcdcdc;
        text-decoration:none;
        transition:.2s;
    }

    @media (max-width: 800px) {
      .logoDesktop{
        display:none;
      }
    }

.menu {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    height: 75px;
    text-align: right;
  }

.logoMobile {
    width: 70%;
    display: inline-block;
    vertical-align: top;
    height: 75px;
  }

  .logoMobile a {
    position:relative;
      color:#888888;
      text-decoration:none;
      font-size: 16px;
      font-weight: 700;
      top:27px;
      transition:.2s;
  }

    .logoMobile a:hover {
        color:#dcdcdc;
        text-decoration:none;
        transition:.2s;
    }

@media (max-width: 800px) {
  nav ul {
    display: none;
    width: 100%;
  }
  nav li a{
    padding: 0 32px;
  }
  .navCont{
    background-color: rgba(17, 17, 17, .90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter:blur(12px);
    }
  nav li {
    width: 100%;
    height: 75px;
    border-bottom:0;
    line-height: 75px;
  }

  .nav li a.active, .nav li:hover{
    border-bottom:0;
  }

  nav li p {
    padding:0;
  }

  .nav-mobile {
    display: inline-block;
    height: 75px;
    width: 100%;
    margin: 0 auto;
    vertical-align: top;
  }
  .menu i:hover{
    color:#000;
  }
}

@media (min-width: 800px) {
  nav ul {
    vertical-align: top !important;
  }
}



/*end navMobile*/

/*----*/

/*END HEADER*/

/*-----------------------------*/

#contenedor {
  margin:0 auto;
  padding: 0;
  width: 90%;
  padding-top: 200px;
  max-width: 1140px;
  margin-bottom: 0;
  display: block;
}

@media screen and (max-width:768px){
  #contenedor{
    width: auto;
    padding:0 32px;
  }
}

p#home{
  padding-top:1px;
}

.intro{
  margin-bottom: 0;
  margin-top:64px;
  width: 100%;
}

.intro .bio{
  display:flex;
  margin:32px auto;
  vertical-align: middle;
  justify-content:center;
}

.intro .content{
  display: grid;
  align-content: center;
}

.intro .bio img{
  margin-right:64px;
  /*border:1px solid #888888;*/
  /*padding:4px;*/
  border-radius:24px;
  max-width: 300px;
  margin-bottom:auto;
  margin-top:auto;
  /*height:100px;*/
}

.intro h1{
  font-weight: 900;
  width: 100%;
  text-align:left;
  font-size: 56px;
  margin-bottom:16px;
}

.intro h1 span{
  background: rgb(255,160,70);
  background: -moz-linear-gradient(45deg, rgba(105,182,236,1) 0%, rgba(255,160,70,1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(105,182,236,1) 0%, rgba(255,160,70,1) 100%);
  background: linear-gradient(45deg, rgba(105,182,236,1) 0%, rgba(255,160,70,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro h2{
  font-weight: 900;
  font-size: 24px;
  color:#DCDCDC;
  margin:12px 0;
}

.intro h3{
  font-size: 18px;
  font-weight: 300;
  color:#888888;
  margin-top:16px;
}

.intro h3 a{
  color: inherit;
  text-decoration: none;
  border-bottom:1px solid #888888;
  padding-bottom:2px;
  transition:.2s;
}

.intro h3 a:hover{
  color: #dcdcdc;
  border-bottom:1px solid #111111;
  transition:.2s;
}

.companies{
  margin: 150px 0 0 0;
  display:block;
}

.companies h4{
  width: 100%; 
  text-align: center; 
  border-bottom: 1px solid #666666;
  line-height: 0.1em;
  margin: 0 0 40px 0;
  max-width: 450px;
  margin: 0 auto 40px auto;
}

.companies h4 span{
  color:#888888;
  background:#111111;
  padding:0 20px; 
  text-align:center;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:20px;
  letter-spacing: .1em;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.companies .logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.companies .logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 150px;
  height: 100%;
  z-index: 2;
}

.companies .logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(17,17,17,0), rgb(17, 17, 17));
}

.companies .logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(17,17,17,0), rgb(17, 17, 17));
}

.companies .logo_items {
  display: flex;
  column-gap: 30px;
  animation: 25s slides infinite linear;
}

.companies .logos:hover .logo_items {
  animation-play-state: paused;
}

.companies .logo_items img{
  width: 124px;
  opacity: .5;
}

@media screen and (max-width:768px) {
    .intro{
      margin-top: 108px;
    }
    .intro h1{
      font-size:32px;
      text-align: center;
    }
    .intro h2{
      font-size: 20px;
      line-height: 30px;
      margin: 0;
    }
    .intro h3{
      font-size:16px;
      margin-top:16px;
    }
    .intro h3 a{
      display:inline-block;
    }
    .intro .bio{
      display:block;
      text-align:center;
    }

    .intro .bio img{
      margin-right:0;
      max-width: 100px;
      margin-bottom:12px;
      border-radius:16px;
    }
    .companies{
      margin: 88px 0 0 0;
      display:block;
    }
      .companies h4{
        margin-bottom:32px;
      }
      .companies .logo_items {
        column-gap: 15px;
      }
      .companies .logo_items img{
        width: 100px;
      }
      .companies .logos:before, .logos:after {
        width: 75px;
      }
  }

/*-----------------------------*/

/*PORTFOLIO*/

#portfolio{
  display: block;
  width: 100%;
  padding-top:48px;
}

#portfolio h3{
  font-size:48px;
  color:#dcdcdc;
  font-weight:900;
  margin-bottom:32px;
  margin-top:200px;
}

@media screen and (max-width:768px){
      #portfolio{
        padding-top:132px;
      }
      #portfolio h3{
        font-size:32px;
        margin-bottom:24px;
        margin-top:40px;
      }
    }

#portfolio h5{
    font-size: 24px;
    font-weight:900;
    color:#DCDCDC;
    margin-top: 24px;
    transition:.2s;
  }

#portfolio h5:hover{
  color:#DCDCDC;
  opacity: .7;
  transition:.2s;
}

#portfolio h5.coming-soon:hover{
  cursor:not-allowed;
}

#portfolio h5 span{
    font-size: 18px;
    font-weight:300;
    display:block;
    margin-top:12px;
    color:#999999;
    line-height: 24px;
  }

#portfolio h6{
    font-size: 16px;
    color:#888888;
    margin-top: 20px;
    font-weight:300;
  }

  #portfolio h6 span.material-icons{
    font-size: 16px;
    color:#888888;
    position:relative;
    top:2px;
  }

  #portfolio h6 span.tag{
    color:#111111;
    padding:3px 6px;
    margin-right:6px;
    font-size: 13px;
    font-weight: 500;
    background: #dcdcdc;
    border-radius:6px;
  }

#portfolio a{
  text-decoration:none;
}

#portfolio .container .row{
  display: flex;
  column-gap: 40px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 88px;
}

#portfolio .row:last-child{
  margin-bottom: 0;
}

#portfolio .container .row .col-6{
  width: 50%;
  padding: 0;
  border-radius:24px;
  position: relative;
}

#portfolio .container .row .col-6 span.coming-soon{
  font-size:14px;
  background: #111111;
  border-radius: 12px;
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 4px 8px;
  color: #dcdcdc;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 999;
}

#portfolio .container .row .col-6 img{
  width: 100%;
  transition:.2s;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

#portfolio .container .row .col-6 img:hover{
  opacity:.75;
  transition:.2s;
  transform: translate3d(0, -3px, 0);
  -webkit-transform: translate3d(0, -3px, 0);
}

#portfolio .container .row .col-6 img.coming-soon:hover{
  cursor:not-allowed;
}

@media screen and (max-width: 768px){
    #portfolio .container .row .col-6{
      width: auto;
      display:block;
      margin-left:0;
      margin-top:64px;
    }
    #portfolio .container .row{
      display: block;
      margin-bottom: 0;
    }
    #portfolio h5{
      margin-top:12px;
      font-size: 22px;
    }
    #portfolio h5 span{
      margin-top:12px;
      font-size: 16px;
    }
    #portfolio .container .row .col-6:first-child{
      margin-left:0;
      margin-top: 64px;
    }
    #portfolio .container .row:first-child .col-6:first-child{
      margin-top: 32px;
    }
}

/*END PORTFOLIO*/

/*-----------------------------*/

/*EXPERIENCE*/

  #experience, #about{
      width:100%;
      padding-top:48px;
      display: block;
      vertical-align: top;
      padding-bottom: 0;
      height: 100%;
    }

    #experience h3, #about h3{
      font-size:48px;
      color:#dcdcdc;
      font-weight:900;
      margin-bottom:32px;
      margin-top:200px;
    }


    #experience p, #about p{
      font-size: 28px;
      line-height: 40px;
      font-weight: 300;
      color:#DCDCDC;
      margin-top: 28px;
      max-width:850px;
      display: block;
      text-align:left;
    }

    @media screen and (max-width:768px){
      #experience p{
        font-size:18px;
        line-height: 28px;
      }

      #experience, #about{
        padding-top:132px;
      }

      #experience p:first-child{
        margin-top:0!important;
      }
    }

    #experience p a{
      text-decoration:none;
      border-bottom:2px solid #dcdcdc;
      padding-bottom:2px;
      color:inherit;
      transition:.2s;
    }

    #experience p a:hover{
      text-decoration:none;
      border-bottom:2px solid #111111;
      color:inherit;
      opacity: .7;
      transition:.2s;
    }


    .download{
      margin-top: 50px;
      display: block;
      margin-bottom: 32px;
    }

    .download a{
      background: rgba(7,140,255,.1);
      border-radius:12px;
      width:164px;
      text-decoration: none;
      padding:12px 20px;
      display: block;
      height: 32px;
      transition:.2s;
      transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
    }

    .download a:hover{
      background: rgba(7,140,255,.05);
      transition:.2s;
      transform: translate3d(0, -3px, 0);
      -webkit-transform: translate3d(0, -3px, 0);
    }

    .download img{
      position:relative;
      top:5px;
    }

    .download a span{
      color:#078CFF;
      font-size:16px;
      font-weight:500;
      margin-left:16px;
      position:relative;
      top:2px;
    }

  #experience .row, #about .row{
    display: flex;
    column-gap: 40px;
    justify-content: flex-start;
    width: 100%;
  }

  #experience .row .col-6, #about .row .col-6{
    width: 50%;
  }

  #experience h4, #about h4{
    font-size: 16px;
    font-weight:500;
    color:#888888;
    margin-top:48px;
    margin-bottom: 24px;
    text-transform: uppercase;
  }

  #experience .row .col-6 h5, #about .row .col-6 h5{
    font-size: 24px;
    font-weight:900;
    color:#DCDCDC;
    margin-top:24px;
  }

  #experience .row .col-6 p, #about .row .col-6 p{
    font-size: 18px;
    font-weight: 300;
    display: block;
    margin-top: 24px;
    line-height: 24px;
    color: #999999;
  }

  #about .what img{
    width:100%;
    transition: .2s;
    birder-radius:32px;
     transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }

  #about .what img:hover{
    opacity: .75;
    transition: .2s;
    transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
  }

  #about .what p a{
    text-decoration: none;
    color:inherit;
    border-bottom:1px solid #999999;
    padding-bottom:3px;
    transition: .2s;
  }

  #about .what p a:hover{
    text-decoration: none;
    color:#666666;
    opacity:1;
    transition: .2s;
    border-bottom:0;
  }

  #experience .nng{
    position:fixed;
    z-index: 999999;
    bottom:24px;
    right:24px;
    /*display: flex;
    justify-content:flex-start;
    background:#191919;
    align-items: center;
    border-radius: 24px;
    padding:32px;*/
  }

  #experience .nng img{
    width:110px;
    opacity: 1;
    transition: .2s;
    transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
  }

  #experience .nng img:hover{
    opacity: .75;
    transition: .2s;
    transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
  }

  #experience .nng a{
    font-size: 12px;
    display:flex;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
  }

  #experience .nng .tooltip {
      display:none;
      color: #dcdcdc!important;
      background-color: #333333;
      text-align: center;
      padding: 7px 10px;
      border-radius: 3px;
      position: relative;
      right: 8px;
  }

  #experience .nng a:hover .tooltip {
      display:inline-block;
  }

  .tooltip::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%; /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333333;
  }

@media screen and (max-width: 768px){
    #experience .nng{
      bottom:10px;
      right:10px;
    }
    #experience h3, #about h3{
      font-size:32px;
      margin-top:48px;
    }
    #experience .nng img:hover{
      opacity: 1;
    }
    #experience .nng a:hover .tooltip {
      display:none;
    }
    #experience .nng img{
      width:90px;
    }
    #experience .row .col-6{
      width: auto;
      display:block;
      margin-left:0;
      background: transparent;
      margin-top:32px;
      padding: 0 0 24px 0;
    }
    #experience .row, #about .row{
      display:block;
    }
    #experience .row .col-6, #about .row .col-6{
      background: transparent;
      padding: 0;
      display: block;
      width: 100%;
      margin-left: 0;
    }
    #experience .row .col-6, #about .row .col-6:last-child{
      margin-top:64px;
    }
    .download{
      margin-top:40px;
    }
    .download a{
      width: 100%;
      display: block;
      padding: 12px 0;
      text-align: center;
    }
    #experience .row{
      display: block;
    }

    #experience .what img{
      margin-bottom:12px;
    }
    #experience h4{
      margin-top:100px;
    }
    #experience .row .col-4 h5{
      margin-bottom:12px;
    }
    #experience .tools{
      margin-top:40px;
    }
    #experience .tools .row .col-3 img{
      max-width: 64px;
      width: 64px;
    }
    #experience .tools .row{
      margin-bottom: 24px;
    }
    #experience .row .col-6 h5, #about .row .col-6 h5{
      font-size: 22px;
    }
    #experience .row .col-6 p, #about .row .col-6 p{
      font-size: 16px;
      margin-top: 12px;
    }
  }

@media screen and (max-width: 380px){
  #experience .tools .row .col-3 img{
    max-width: 56px;
    width: 56px;
  }
}

@media screen and (max-width: 340px){
  #experience .tools .row .col-3 img{
    max-width: 48px;
    width: 48px;
  }
}


/*END EXPERIENCE*/

/*-----------------------------*/

/*TESTIMONIAS*/

  #testimonials{
    width:100%;
    padding-top:48px;
    display: block;
    vertical-align: top;
    padding-bottom: 0;
    height: 100%;
  }

  #testimonials h3{
    font-size:48px;
    color:#dcdcdc;
    font-weight:900;
    margin-bottom:32px;
    margin-top:200px;
  }

 #testimonials .container{
    display: flex;
    column-gap: 40px;
    justify-content: flex-start;
    width: 100%;
  }

  #testimonials .container .col-6{
    width: 50%;
  }

  #testimonials .container .col-6 .content{
    width: auto;
    padding: 32px;
    border-radius: 32px;
    background: #191919;
    margin-top: 40px;
  }

  #testimonials .container .col-6 .content:first-child{
    margin-top: 0;
  }

  #testimonials .container .col-6 .content .text-container{
    position: relative;
  }

  #testimonials .container .col-6 .content .text-container .read-more {
    display: none;
  }

  #testimonials .container .col-6 .content .text-container .text-content h4{
    font-size: 18px;
    font-weight:500;
    line-height: 1.5em;
    color:#dcdcdc;
  }

  #testimonials .container .col-6 .content .text-container.expanded .text-content h4 {
    height:auto;
  }

  #testimonials .author{
    margin-top:24px;
    display: flex;
    column-gap: 12px;
    align-items: center;
  }

  #testimonials .author img{
    border-radius: 100px;
    width: 36px;
    height: 36px;
  }

  #testimonials .author span{
    font-size: 14px;
    font-weight: 300;
    line-height: inherit;
    color: #999999;
  }

   #testimonials a{
    text-decoration: none;
    margin-top: 64px;
    display: block;
    font-size: 18px;
    text-align: center;
    color:#078CFF;
    transition: .2s;
  }

  #testimonials a:hover{
    opacity: .7;
    transition: .2s;
  }

@media screen and (max-width: 768px){
  #testimonials .container .col-6 .content{
    outline: 1px solid #333333;
    margin-top: 32px;
  }

  #testimonials .container .col-6:last-child .content:first-child{
    margin-top: 32px;
  }

  #testimonials .container .col-6 .content .text-container .read-more {
    color: #007BFF;
    font-size: 14px;
    background: transparent;
    display: block;
    border:0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    margin-top: 8px;
  }

  #testimonials .container .col-6 .content .text-container .text-content h4{
    font-size: 18px;
    font-weight:300;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 6em;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: max-height 0.5s ease-in-out;
  }

  #testimonials .container .col-6 .content .text-container.expanded .text-content h4 {
    -webkit-line-clamp: unset;
    max-height: 2000px;
    transition: max-height 0.5s ease-in-out;
  }
  #testimonials h3{
    font-size:32px;
    margin-top:48px;
  }
  #testimonials a{
    margin-top: 40px;
    font-size: 16px;
  }
  #testimonials{
    padding-top: 132px;
  }
  #testimonials .container{
    display: block;
  }
  #testimonials .container .col-6{
    width: 100%;
  }
  #testimonials h4{
    font-size: 16px;
    line-height: 26px;
  }
}


/*END TESTIMONIALS*/

/*-----------------------------*/

/*CONTACT*/

#contact{
  width: 100%;
  margin: 0 auto;
  margin-top: 400px;
  text-align:center;
}

#contact h3{
  color:#dcdcdc;
  text-align:center;
  font-size:56px;
  font-weight: 900;
  text-decoration:none;
  padding-bottom: 2px;
  transition:.2s;
}

#contact a.top{
  display: none;
}

#contact .channels{
  text-align:center;
  margin-top: 64px;
  display: flex;
  gap: 64px;
  justify-content: center;
}

#contact .channels a{
  color:#078CFF;
  text-decoration: none;
  font-size: 18px;
  border-bottom:0;
  padding-bottom: 0;
  font-weight: 300;
}

#contact .channels a:hover{
  text-decoration: none;
  opacity: .7;
  transition: .2s;
}

@media screen and (max-width: 768px){
  #contact{
    padding-top:400px;
    margin-top:0;
  }
  #contact h3{
    font-size:40px;
  }
  #contact .channels a{
    font-size:16px;
  }
  #contact .channels{
    margin-top:48px;
    gap: 32px;
  }
  #contact a.top{
    color:#999999;
    border-bottom: 0;
    text-align:center;
    font-size:16px;
    font-weight: 300;
    text-decoration:none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    column-gap: 4px;
    opacity: .7;
  }
  #contact a.top span{
    font-size: 22px;
  }
  #contact a.top:hover{
    text-decoration:none;
  }
}


/*END CONTACT*/

/*-----------------------------*/

/*FOOTER*/

#footer{
  width: 100%;
  margin: 256px auto 64px;
  text-align: center;
}

.gtwFooter{
  margin:64px auto!important;
}

#footer p{
  color:#555555;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width: 768px){
  #footer{
    margin: 100px auto 64px!important;
  }
}

/*END FOOTER*/

/*-----------------------------*/


/*GATEWAY*/

#gateway{
  margin:0 auto;
  margin-top:164px;
  display:block;
  width: 312px;
  text-align:center;
  background: #181818;
  border-radius: 32px;
  padding: 64px;
}

#gateway .g-recaptcha{
  margin-top: 24px;
}

#gateway .g-recaptcha div:first-child{
  margin:0 auto;
}

#gateway h2{
  font-size: 24px;
  font-weight: 900;
  color: #DCDCDC;
  margin-bottom: 16px;
}

#gateway img{
  border-radius: 16px;
  width: 100px;
  margin-bottom: 24px;
}

#gateway p{
  font-size: 16px;
  font-weight: 300;
  display: block;
  margin-bottom: 48px;
  color: #888888;
  line-height: 24px;
}

#gateway div#error-message{
  display: none;
  font-size: 16px;
  font-weight: 300;
  margin-top: 12px;
  text-align: left;
  color: #FF3969;
  line-height: 24px;
}

#gateway #psw-container{
  display: block;
}

#gateway #psw-container .content{
  display: block;
  width: 100%;
  position: relative;
}

#gateway #psw-container .content input{
  outline:2px solid #181818;
  border-radius:12px;
  width:100%;
  background:#222222;
  padding:16px 96px 16px 16px;
  box-sizing: border-box;
  color:#dcdcdc;
  transition: .2s;
  font-size: 16px;
  border: 0;
}

#gateway #psw-container .content input:hover{
  outline:2px solid #555555;
  transition: .5s;
}

#gateway #psw-container .content input:focus{
  outline:2px solid #dcdcdc;
  border: 0;
  transition: .2s
}

#gateway #psw-container .content input.error-outline {
  outline: 2px solid #FF3969 !important;
}

#gateway #psw-container .content .toggle-container{
  position: absolute;
  top: 50%;
  right: 0;
  height: 100%;
  padding: 0 16px;
  transform: translateY(-50%);
  display: flex;
  column-gap: 16px;
  z-index: 999;
  justify-content: center;
  background:#222222;
  border-radius: 0 12px 12px 0;
  align-items: center;
}

#gateway #psw-container .content .toggle-container button.toggle-password, #gateway #psw-container .content .toggle-container button.clear-input{
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 100%;
  font-size: 24px;
  color: #ffffff;
  opacity: .5;
  transition: .2s;
  align-items: center;
  display: flex;
  justify-content: center;
}

#gateway #psw-container .content .toggle-container button.toggle-password:hover, #gateway #psw-container .content .toggle-container button.clear-input:hover{
  color: #ffffff;
  opacity: 1;
  transition: .2s;
}

#gateway #psw-container button.submit{
  width:100%;
  background: rgba(7, 140, 255, .1);
  border-radius: 12px;
  text-decoration: none;
  padding: 16px 20px;
  display: block;
  transition: .2s;
  margin-top: 16px;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  color: #078CFF;
  font-size: 16px;
  font-weight: 500;
  border:0;
  position: relative;
  overflow: hidden;
}

#gateway #psw-container button.submit:hover{
  background: rgba(7,140,255,.05);
  transition:.2s;
  transform: translate3d(0, -3px, 0);
  -webkit-transform: translate3d(0, -3px, 0);
  cursor: pointer;
}

#gateway #psw-container button.submit .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0); 
  background: rgba(7, 140, 255, .2);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: #111111;
    z-index: 9999;
}

#loading-spinner::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #333333;
    border-top-color: #dcdcdc;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media screen and (max-width: 600px){
  #gateway{
    width:auto;
    background: transparent;
    margin-top: 100px;
    padding: 0 32px;
    display: block;
  }
  #gateway .psw-request{
    padding-top: 0;
    border-top:0;
  }

  #gateway #psw-container .content{
    width: 100%;
    display: block;
  }

  #gateway #psw-container .content input{
    outline:2px solid #111111;
  }
  #gateway #psw-container .content input:hover{
    outline:2px solid #111111;
  }
  #gateway #psw-container .content input:focus{
    outline:2px solid #dcdcdc;
  }
  #gateway div#error-message{
    text-align: center;
    margin-top: 16px;
  }
  #gateway #psw-container button.submit:hover{
    background: rgba(7,140,255,.1);
    transition:none;
    transform:none;
    -webkit-transform:none;
    cursor: pointer;
  }
    #gateway #psw-container .content .toggle-container button.toggle-password:hover, #gateway #psw-container .content .toggle-container button.clear-input:hover{
    opacity: .5;
  }
}

/*END GATEWAY*/

/*-----------------------------*/

/*FONTS*/

@font-face {
    font-family: 'Circular Std';
    src: url('/fonts/CircularStd-BookItalic.eot');
    src: url('/fonts/CircularStd-BookItalic.eot?#iefix') format('embedded-opentype'),
       /* url('https://uxw.academy/fonts/CircularStd-BookItalic.woff2') format('woff2'),*/
        url('/fonts/CircularStd-BookItalic.woff') format('woff'),
        url('/fonts/CircularStd-BookItalic.ttf') format('truetype'),
        url('/fonts/CircularStd-BookItalic.svg#CircularStd-BookItalic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('/fonts/CircularStd-BlackItalic.eot');
    src: url('/fonts/CircularStd-BlackItalic.eot?#iefix') format('embedded-opentype'),
       /* url('https://uxw.academy/fonts/CircularStd-BlackItalic.woff2') format('woff2'),*/
        url('/fonts/CircularStd-BlackItalic.woff') format('woff'),
        url('/fonts/CircularStd-BlackItalic.ttf') format('truetype'),
        url('/fonts/CircularStd-BlackItalic.svg#CircularStd-BlackItalic') format('svg');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('/fonts/CircularStd-BoldItalic.eot');
    src: url('/fonts/CircularStd-BoldItalic.eot?#iefix') format('embedded-opentype'),
       /* url('https://uxw.academy/fonts/CircularStd-BoldItalic.woff2') format('woff2'),*/
        url('/fonts/CircularStd-BoldItalic.woff') format('woff'),
        url('/fonts/CircularStd-BoldItalic.ttf') format('truetype'),
        url('/fonts/CircularStd-BoldItalic.svg#CircularStd-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('/fonts/CircularStd-Bold.eot');
    src: url('/fonts/CircularStd-Bold.eot?#iefix') format('embedded-opentype'),
       /* url('https://uxw.academy/fonts/CircularStd-Bold.woff2') format('woff2'),*/
        url('/fonts/CircularStd-Bold.woff') format('woff'),
        url('/fonts/CircularStd-Bold.ttf') format('truetype'),
        url('/fonts/CircularStd-Bold.svg#CircularStd-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('/fonts/CircularStd-Medium.eot');
    src: url('/fonts/CircularStd-Medium.eot?#iefix') format('embedded-opentype'),
       /* url('https://uxw.academy/fonts/CircularStd-Medium.woff2') format('woff2'),*/
        url('/fonts/CircularStd-Medium.woff') format('woff'),
        url('/fonts/CircularStd-Medium.ttf') format('truetype'),
        url('/fonts/CircularStd-Medium.svg#CircularStd-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('/fonts/CircularStd-MediumItalic.eot');
    src: url('/fonts/CircularStd-MediumItalic.eot?#iefix') format('embedded-opentype'),
       /* url('https://uxw.academy/fonts/CircularStd-MediumItalic.woff2') format('woff2'),*/
        url('/fonts/CircularStd-MediumItalic.woff') format('woff'),
        url('/fonts/CircularStd-MediumItalic.ttf') format('truetype'),
        url('/fonts/CircularStd-MediumItalic.svg#CircularStd-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('/fonts/CircularStd-Book.eot');
    src: url('/fonts/CircularStd-Book.eot?#iefix') format('embedded-opentype'),
       /* url('https://uxw.academy/fonts/CircularStd-Book.woff2') format('woff2'),*/
        url('/fonts/CircularStd-Book.woff') format('woff'),
        url('/fonts/CircularStd-Book.ttf') format('truetype'),
        url('/fonts/CircularStd-Book.svg#CircularStd-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('/fonts/CircularStd-Black.eot');
    src: url('/fonts/CircularStd-Black.eot?#iefix') format('embedded-opentype'),
       /*url('https://uxw.academy/fonts/CircularStd-Black.woff2') format('woff2'),*/
        url('/fonts/CircularStd-Black.woff') format('woff'),
        url('/fonts/CircularStd-Black.ttf') format('truetype'),
        url('/fonts/CircularStd-Black.svg#CircularStd-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/*END FONTS*/

/*-----------------------------*/

/*MENU*/

.menu-container{
  width:30%;
}

.menu-btn {
  position: relative;
  display: flex;
  justify-content: right!important;
  align-items: center;
  right:0!important;
  height: 75px;
  width:100%!important;
  transition: all .2s ease-in-out;
  /* border: 3px solid #fff; */
}
.menu-btn__burger {
  width: 24px;
  height: 2px;
  position: relative;
  right: 0;
  background: #888888;
  border-radius: 2px;
  transition: all .2s ease-in-out;
}
.menu-btn__burger::before,
.menu-btn__burger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #888888;
  border-radius: 2px;
  transition: all .2s ease-in-out;
}
.menu-btn__burger::before {
  transform: translateY(-8px);
}
.menu-btn__burger::after {
  transform: translateY(8px);
}
.menu-btn.open .menu-btn__burger {
  transform: translateX(0px);
  background: transparent;
  box-shadow: none;
}
.menu-btn.open .menu-btn__burger::before {
  transform: rotate(45deg) ;
  background:#ffffff;
}
.menu-btn.open .menu-btn__burger::after {
  transform: rotate(-45deg);
  background:#ffffff;
}


/*END MENU*/

/*-----------------------------*/
