/*
azul1: #0431cb
azul2: #0675fe
azul3: #29cafd
cinza: #768692
*/

/*  BASE -------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media (max-width: 1080px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 54%;
  }
}

body {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  color: #333;
  background-color: #000;
  overflow-x: hidden;
}

a, span, p {
  font-family: "Inter var", sans-serif;
  font-size: 2.3rem;
  font-weight: 290;
  line-height: 3rem;
  color: #fff;
}

h1 {
  font-size: 9rem;
  font-weight: 800;
  letter-spacing: -6px;
  color: #fff;
}

h2 {
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: -5px;
  color: #fff;
}

h3 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
}

h4 {
  font-size: 2.5rem;
  font-weight: 320;
  letter-spacing: -0.5px;
  color: #fff;
}

@media(max-width: 800px) {
  h1 {
    font-size: 7rem;
    letter-spacing: -2px;
  }
}

@media(max-width: 500px) {
  h1 {
    font-size: 4.5rem;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 4rem;
    letter-spacing: -1px;
  }

  p {
    font-size: 2rem;
  }
}

input:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  outline: none;
}

.center {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 3rem;
}

/*  HEADER ------------------------------------------------------------------ */

header {
  top: 0;
  right: 0;
  left: 0;
  min-height: 60px;
}

header .center {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

header .logo {
  display: flex;
  flex-direction: row;
}

header .logo .social-icons {
  margin-left: 32px;
  display: flex;
  align-items: flex-end;
}

header img {
  height: 3rem;
  flex-shrink: 0;
}

header nav button {
  position: relative;
  color: #768692;
  background: none;
  border: 0;
  font-size: 1.6rem;
  transition: color 0.3s;
  padding-top: 12px;
}

header nav button + button {
  margin-left: 2rem;
}

header nav button:hover {
  color: #fff;
}

header nav .nav-btn {
  background: #0675fe;
  border: 2px solid #0675fe;
  padding: 0.3em 1em;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}

header nav .nav-btn:hover {
  background: none;
  color: #0675fe;
}

header .menu {
  display: none;
}

/* POP-UPS */

header .middle-menu {
  display: flex;
  flex-direction: row;
}

header .middle-menu .bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  color: #768692;
}

header .seta {
  width: 15px;
  height: 15px;
  margin-left: 1rem;
}

.bar button {
  background-color: transparent;
  border: none;
  font-size: 1.7rem;
  color: #768692;
}

.bar a {
  font-size: 1.7rem;
  margin-left: 1rem;
}

.seta.active {
  transform: rotate(180deg);
}

.span::before {
  content: "";
  opacity: 1;
  position: relative;
  top: 1rem;
  left: calc(50% - 0.5rem);
  width: 0px;
  height: 0px;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-bottom: 1rem solid rgb(66, 66, 66);

  visibility: hidden;
}

.span.active::before {
  visibility: visible;
}

.pop {
  background-color: rgb(29, 30, 33);
  position: absolute;
  z-index: 2;
  top: 6rem;
  min-width: 76rem;
  width: 50vw;
  height: 40rem;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-flow: column wrap;
  box-shadow: rgb(0 0 0 / 18%) 0px 10px 9px 0px;
  border-radius: 4px;
  left: 0px;
  padding: 0.5rem;
  transform: translateX(22.5vw);

  visibility: hidden;
}

.pop.active {
  visibility: visible;
  animation-duration: 500ms;
  animation-name: blur;
}

header.active {
  position: fixed;
}

@keyframes blur {
  0% {
    filter: blur(15px);
  }

  100% {
    filter: blur(0);
  }
}

.pop-up-item {
  list-style: none;
  background-color: rgba(255, 255, 255, 0.07);
  flex: 0 0 calc(50% - 2rem);
  padding: 1rem;
  margin: 1rem;
  height: 12rem;
  width: calc(32% - 2rem);
  text-align: left;
  border-radius: 4px;
  transition: background-color 1s ease 0s;
  overflow: hidden;
  color: #fff;
  font-size: 1.5rem;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #0675fe;
}

.pop-up-item:hover {
  background-color: #0675fe;
  color: #fff;
}

.pop-up-item h5 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.top-links, .mobile-container {
  display: none;
}

@media (max-width: 1024px) {
  header nav button {
    padding-top: 0;
  }

  .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 0;
  }
  
  header .seta {
    width: 12px;
    height: 12px;
    margin-left: 0.5rem;
  }

  .bar button {
    font-size: 1.5rem;
  }

  .bar a {
    margin-left: 0.5rem;
  }

  .pop {
    width: 70vw;
    transform: translateX(15vw);
  }
}

@media (max-width: 420px) {
  header .logo .social-icons {
    display: none;
  }
}

@media (max-width: 800px) {
  header nav {
    display: none;
  }

  header .menu {
    display: block;
  }

  header .middle-menu {
    display: none;
  }

  .bar1,
  .bar2,
  .bar3 {
     width: 30px;
     height: 3px;
     background-color: white;
     margin: 6px 0;
     transition: 0.4s;
   }

  header .menu.open {
    position: fixed;
    z-index: 5;
    right: 3rem;
  }

  header .menu.open + nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

    position: fixed;
    z-index: 4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
  }

  header .menu.open + nav .buttons {
    display: flex;
    flex-direction: column;
  }

  header .menu.open + nav .top-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  header .menu.open + nav .top-links a {
    color: #fff;
    padding: 1rem;
  }

  header nav button {
    font-size: 2.4rem;
  }

  header nav button.active:after {
    bottom: -5px;
  }

  header nav button + button {
    margin: 2rem 0 0;
  }

  /*.mobile-container {
    position: fixed;
    z-index: 6;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgb(33, 33, 33);
  }

  .mobile-container .center {
    width: 90%;
    margin: 0 auto;
    padding: 0 2rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .mobile-container .center .top {
    display: flex;
    align-items: center;
  }

  .mobile-container .center .top .seta-esquerda {
    transform: rotate(-180deg);
  }

  .mobile-container .center h4 {
    padding-left: 2rem;
  }

  .mobile-container .center hr {
    color: #fff;
    width: 100%;
    height: 0;
    margin-bottom: 3rem;
  }

  .mobile-container .center a {
    padding-bottom: 2rem;
  }

  .mobile-container .center a h5 {
    font-weight: lighter;
    color: #fff;
  }*/

   /* ICON ANIMATION ####################################### */
 
   header .menu.open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-7px, 6px);
    transform: rotate(-45deg) translate(-7px, 6px);
  }

  header .menu.open .bar2 {
    opacity: 0;
  }

  header .menu.open .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -6px);
    transform: rotate(45deg) translate(-6px, -6px);
  }

  /* END ICON ANIMATION ################################### */
}

/* MAIN ---------------------------------------------------------------------*/
.main_content {
  overflow-x: hidden;
  overflow-y: hidden;
}

/*  BANNER ------------------------------------------------------------------ */
.main_content .banner {
  padding-top: 130px;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container .center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .content {
  width: 70%;
  text-align: center;
}

.banner .content p {
  padding-left: 0;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2.4rem;
}

.banner .content h1 {
  margin-bottom: 2.4rem;
}

@media (max-width: 880px) {
  .banner .content p {
    width: 100%;
  }

  .main_content .banner {
    padding-top: 125px;
  }
}

@media (max-width: 600px) {
  .banner .content {
    width: 100%;
  }

  .main_content .banner {
    padding-top: 150px;
  }
}

@media (max-width: 400px) {
  .main_content .banner {
    padding-top: 125px;
  }
}

/* PARALLAX -------------------------------------------------------------- */
.parallax-container {
  position: relative;
  top: -100px;
  transition: opacity .3s;
  -webkit-transition: opacity .3s;
}

.parallax {
  position: absolute;
}

.floor {
  background: url("../img/floor.jpeg");
  width: 100%;
  height: 786px;
  top: 432px;
  background-repeat: repeat-x;
  background-position: center center;
}

.layer4 {
  top: 437px;
  width: 2560px;
  height: 201px;
  background: url("../img/l4.jpeg");
  left: 50%;
  margin-left: -1280px;
}

.layer3 {
  top: 487px;
  width: 2560px;
  height: 322px;
  background: url("../img/l3.jpeg");
  left: 50%;
  margin-left: -1280px;
}

.layer2 {
  top: 707px;
  width: 2560px;
  height: 276px;
  background: url("../img/l2.jpeg");
  left: 50%;
  margin-left: -1280px;
}

.layer1 {
  left: 50%;
  margin-left: -1280px;
  top: 455px;
  width: 2560px;
  height: 790px;
  background: url("../img/l1.jpeg");
}

.layer0 {
  top: 577px;
  width: 3194px;
  height: 958px;
  left: 50%;
  margin-left: -1597px;
  background: url("../img/l0.jpeg");
  z-index: 2;
}

.parallax-padding {
  height: 800px;
}

@media (max-width: 1024px) {
  .parallax-padding {
    height: 900px;
  }
}

@media (max-width: 800px) {
  .parallax-container {
    top: -120px;
  }

  .parallax-padding {
    height: 800px;
  }
}

@media (max-width: 600px) {
  .parallax-container {
    top: -250px;
  }

  .parallax-padding {
    height: 1000px;
  }
}

@media (max-width: 400px) {
  .parallax-padding {
    height: 850px;
  }
}

@media (max-width: 320px) {
  .parallax-padding {
    height: 800px;
  }
}

/* BACKGROUND X ----------------------------------------------------------*/
/*.backgroundX {
  background-image: url("/img/x-chumbo-opaque-no-bg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 5000px 1680px;

  height: 1680px;
}

.backgroundX .container {
  height: 100%;
  display: flex;
}

.content-background {
  display: flex;
  flex-direction: column;
  color: rgb(194, 189, 189);
}

.what {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.how {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}

.content-background p {
  width: 50%;
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 1024px)
{
  .content-background p {
    width: 55%;
  }
}

@media (max-width: 800px)
{
  .content-background p {
    width: 70%;
  }
}

@media (max-width: 425px)
{
  .backgroundX {
    height: 1475px;
  }

  .content-background p {
    width: 90%;
    padding: 3rem 0;
  }

  .what {
    margin-bottom: 2rem;
  }

  .how {
    margin-top: 2rem;
  }
}

@media (max-width: 375px)
{
  .backgroundX {
    height: 1415px;
  }

  .content-background {
    margin-top: 300px;
  }

  .content-background p {
    width: 110%;
  }

  .what {
    margin-bottom: 1.5rem;
  }

  .how {
    margin-top: 1.5rem;
  }
}*/

/* SERVICES -------------------------------------------------------------- */
.services {
  max-width: 144rem;
  margin: 0 auto;
  padding: 20rem 8rem;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0 2rem;

}

/*IMAGE COSMOS*/
.graphics-container {
  position: relative;
  width: 100%;
  padding-bottom: 40%;
  grid-column: 1/span 3;
  grid-row: 1/span 5;
}

.graphics {
  position: absolute;
  background-color: #000;
  width: 900%;
  margin: 0 auto -340% -285%;
  height: auto;
  bottom: 0;
  min-width: 40rem;
}

.graphics img {
  position: relative;
  width: 115%;
  left: -20%;
  top: -9%;
  max-width: none;
  filter: blur(10px);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000;
  -webkit-perspective: 1000;
  user-select: none;

  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.orbit {
  position: absolute;
  left: 4.6%;
  top: 24.4%;
  width: 60%;
  transform: rotate(-15deg);
}

.fg {
  position: absolute;
  width: 57%;
  top: 13%;
  left: 7%;
}

/**/

.services h2 {
  position: relative;
  max-width: 11em;
  grid-column: 5/span 8;

  background: linear-gradient(135deg,hsla(0,0%,100%,0) 56%,#ffcaba 98%),linear-gradient(25deg,#f5d1ff 23%,#fff 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services p {
  position: relative;
  grid-column: 6/span 7;
  margin-top: 5rem;
  max-width: 25em;
}

.services-list {
  position: relative;
  grid-column: 6/span 7;

  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 0 2rem;
  margin-top: 10rem;
}

.service-item {
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 5px;
  overflow: hidden;
}

.service-item:nth-child(2n+1) {
  grid-column: 1/span 3
}

.service-item:nth-child(2n) {
  grid-column: 5/span 3;
}

.service-item img {
  height: 72px;
  width: 72px;
  margin-bottom: 1.5rem;
}

.service-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-info h3 {
  margin-bottom: 1.5rem;
  text-align: initial;
  transition: color 0.2s;
}

.service-info p {
  width: 100%;
  font-size: 1.6rem;
  text-align: initial;
  margin: 0;
  padding-left: 0;
}

.service-info a {
  display: flex;
  align-items: center;
}

.service-info a i {
  color: #0675fe;
  margin-left: 10px;
  transition: transform 0.2s;
}

@media (max-width: 1024px) {
  .graphics {
    margin: 0 auto -430% -285%;
  }

  .services {
    padding: 45rem 8rem 0;
  }

  .services h2 {
    width: 100%;
    grid-column-start: 3;
    grid-column-end: 13;
    background: linear-gradient(135deg,hsla(0,0%,100%,0) 56%,#210325 98%),linear-gradient(25deg,#d9bee2 23%,#bf8fc1 60%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .services p {
    width: 100%;
    grid-column-start: 4;
    grid-column-end: 10;
  }

  .services-list {
    position: relative;
    grid-column: 4/span 10;
  }  

  .orbit {
    left: 4.4%;
    top: 12.4%;
  }

  .fg {
    top: 3%;
    left: 12%;
  }
}

@media (max-width: 880px) {
  .services {
    margin: 30rem 4rem 10rem 8rem;
    padding: 0;
  }

  .services h2 {
    margin-top: 5rem;
    grid-column-start: 2;
    grid-column-end: 13;
    background: linear-gradient(135deg,hsla(0,0%,100%,0) 56%,#210325 98%),linear-gradient(125deg,#b7b7b7 23%,#a566bd 60%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .services p {
    grid-column-start: 4;
    grid-column-end: 10;
  }

  .services-list {
    grid-column-start: 1;
    grid-column-end: 13;
  }

  .orbit {
    left: 5.4%;
    top: 2.4%;
  }

  .fg {
    top: -11%;
    left: 12%;
  }
}

@media (max-width: 720px) {
  .services {
    grid-template-columns: 100%;
    grid-gap: 0;
    margin: 0;
  }

  .services h2 {
    letter-spacing: -1.5px;
    grid-column-start: 1;
    grid-column-end: 13;
  }

  .services p {
    grid-column-start: 1;
    grid-column-end: 10;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }

  .graphics {
    width: 250%;
    margin: 0 auto -88% -60%;
    min-width: 40rem;
  }

  .orbit {
    left: 7.4%;
    top: -19.4%;
  }

  .fg {
    top: -40%;
    left: 14%;
  }
}

@media (max-width: 600px) {
  .services {
    padding: 0 4rem;
  }

  .services h2 {
    background: linear-gradient(135deg,hsla(0,0%,100%,0) 56%,#210325 98%),linear-gradient(208deg,#df9bff 35%,#dcf1e6 60%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (max-width: 500px) {
  .orbit {
    left: 9.4%;
    top: -18.4%;
  }

  .fg {
    top: -40%;
    left: 13%;
  }
}

@media (max-width: 375px) {
  .orbit {
    left: 8.4%;
    top: -27.4%;
  }

  .fg {
    top: -52%;
    left: 13%;
  }
}

@media (max-width: 320px) {
  .orbit {
    left: 5.4%;
    top: -46.4%;
  }

  .fg {
    top: -76%;
    left: 11%;
  }
}

/* CLIENTS -------------------------------------------------------------- */
.clients {
  margin: 25rem 0 10rem;
  position: relative;
  z-index: 2;
}

.clients h2 {
  position: relative;
  text-align: center;
  margin-bottom: 10rem;
}

@media (min-width: 1440px) {
  .clients h2 {
    background: linear-gradient(#e3a6ff 20%, rgb(141, 135, 135) 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
}

.clients-list {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
}

.client-item {
  width: 350px;
  border-radius: 1px;
  margin: 48px 0px 48px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s;
}

.client-item .cover {
  height: 20rem;
  width: 100%;
  object-fit: cover;
}

.client-item .avatar {
  max-width: 140px;
  max-height: 82px;
  flex-shrink: 0;
  margin-top: -40px;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.client-item img {
  filter: grayscale(100%) invert(90%) contrast(80%);
}

/* .client-item img:hover {
  filter: none;
  -webkit-filter: none;
} */

.client-item:hover .avatar {
  border-color: #0675fe;
}

.client-yandeh .avatar{
  max-width: 180px;
}

.client-cnhpop .avatar{
  max-width: 170px;
}

@media (max-width: 1150px) {
  .client-item {
    width: 280px;
  }

  .clients {
    margin: 20rem 0 15rem;
  }
}

@media (max-width: 920px) {
  .client-item {
    width: 230px;
  }
}

@media (max-width: 880px) {
  .clients {
    margin: 25rem 0 15rem;
  }

  .client-item .cover {
    height: 15rem;
  }

  .client-item {
    width: 220px;
  }
}

@media (max-width: 515px) {
  .clients {
    margin: 15rem 0 10rem;
  }
  
  .client-item {
    width: 150px;
  }
}

@media (width: 375px) {
  .clients .center {
    padding: 0;
  }
}


/* MAP -------------------------------------------------------------------*/
.map {
  height: 500px;
  width: 100%;
  border: 0;
  
  filter: grayscale(100%) invert(90%) contrast(80%);
}

/* CONTACTS -------------------------------------------------------------- */
 
.contact {
  padding: 6rem 0 0;
}

.contact h4 {
  margin-top: 1rem;
}

.contact-request {
  display: flex;
  flex-flow: row wrap;
  flex-direction: column;
  padding: 3rem 0 6rem;
}

.contact-request input {
  width: 100%;
  height: 4.8rem;
  padding: 1rem 1.5rem;
  border: 1px solid #666;
  border-radius: 1px;
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  margin: 0px 10px 10px 0px;
}

.contact-request textarea {
  width: 100%;
  height: 19.2rem;
  padding: 1rem 1.5rem;
  border: 1px solid #666;
  border-radius: 1px;
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  resize: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  margin: 0px 10px 10px 0px;
}

.contact-request input[type="submit"] {
  width: 20rem;
  height: 4.8rem;
  border-radius: 10px;
  border: 3px solid #0675fe;
  background: #0675fe;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  transition: background 0.3s, color 0.3s;
  margin: 0px 10px 10px 0px;
  cursor: pointer;
}

.contact-request input[type="submit"]:hover {
  opacity: 0.8;
}

.form-icons {
  display: flex;
  justify-content: space-between;
  width: auto;
  border-bottom: 1px solid #1d1f25;
}

.form-icons .form {
  width: 46%;
  padding-right: 24px;
}

.other-contacts {
  display: flex;
  width: 8%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  margin-bottom: 95px;
}

.contact-icons {
  width: 46%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 6rem;
}

.contact-icons a i {
  font-size: 5rem;
  transition: color 0.3s;
}

.social {
  color: #fff;
  padding-bottom: 6rem;
}

.space-icons {
  display: flex;
}

.space-icons a + a {
  margin-left: 2rem;
}

.whatsapp:hover {
  color: #34af23;
}

.telegram:hover {
  color: #0088cc;
}

.vl {
  display: flex;
  height: 150px;
  border-right: 1px #333 solid;
}

.social-icons a + a {
  margin-left: 1rem;
}

.social-icons a i {
  transition: color 0.3s;
}

.separate {
  margin-bottom: 10px;
  margin-top: 10px;
}

.contact-request button:hover {
  background: none;
  color: #0675fe;
}

.facebook:hover {
  color: #3b5998;
}

.instagram:hover {
  color: #cc2366;
}

.linkedin:hover {
  color: #007bb6;
}

.confirm-send-email {
  display: flex;
}

@media (max-width: 780px) {
  .form-icons {
    flex-direction: column;
  }

  .form-icons .form {
    width: 100%;
    padding-right: 0;
  }

  .contact-icons {
    width: 100%;
  }

  .other-contacts {
    display: none;
  }
}

@media (max-width: 400px) {
  .confirm-send-email {
    flex-direction: column;
  }

  .contact-success {
    padding-left: 0;
  }

  .btn-send-email {
    width: 100%;
    padding-right: 10px;
  }

  .btn-send-email > input[type="submit"] {
    width: 100%;
  }
}

.contact-success {
  display: flex;
  color: #0675fe;
  justify-content: center;
}

/* FOOTER -------------------------------------------------------------- */
.footer-links a {
  margin: 0 2rem;
  color: #999;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.social-networks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid #333;
}

.social-networks img {
  width: 14rem;
}

@media (max-width: 600px) {
  .footer-links {
    width: 46%;
    display: flex;
    flex-direction: column;
  }

  .footer-links a {
    text-align: end;
  }
}

/* GENERIC PAGE -------------------------------------------------------------- */
.full-page {
  height: 90%;
  margin: 5rem auto;
}

.generic-page {
  height: 100%;
  border-bottom: 1px solid #1d1f25;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.generic-page h1 {
  padding-bottom: 2rem;
}

.generic-page h2 {
  padding-bottom: 2rem;
}

.generic-page p {
  color: #999;
  padding-bottom: 2rem;
  text-align: justify;
}

.generic-page p:last-child {
  padding-bottom: 0;
}

.exa-highlight {
  color: #0675fe;
}

.var-highlight {
  color: #768692;
}

.method-highlight {
  color: #b1b1b1;
}

.const-highlight {
  color: #1f4926;
}

.class-highlight {
  color: #00c9fc;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}