/* Google Fonts */
/* @import url(https://fonts.googleapis.com/css?family=Anonymous+Pro); */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&family=Secular+One&family=Sedgwick+Ave+Display&display=swap');


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Anonymous Pro', monospace;
  font-weight: 400;
  line-height: 1;
  color: #555;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  width: 100%;
  z-index: 999999;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.6rem;
  padding: 0 4.8rem;
  margin: 0 auto;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.logo {
  width: 22rem;
  height: 6rem;
}

.nav-list {
  gap: 1rem;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticker-tape {
  width: 170rem;
  margin: 7.8rem auto 2rem auto;
}


/* ================= WRAPPER ================= */
.widget-wrapper {
  width: 100%;
  max-width: 1500px;
  margin: 8rem auto;
  padding: 0 5.2rem;
}

.widget-wrapper1 {
  width: 100%;
  max-width: 1500px;
  margin: 8rem auto 0 auto;
  padding: 0 5.2rem;
}

.widget-wrapper2 {
  width: 100%;
  max-width: 1500px;
  margin: 5rem auto 8rem auto;
  padding: 0 5.2rem;
}


/* ================= GRID ================= */
.wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* ================= TEXT ================= */
.animate-charcter {
  text-align: center;
  font-size: 4.5rem;
  margin: 6rem 0 2rem;
}

.animate-charcter {
  text-transform: uppercase;
  background-image: linear-gradient(-225deg,
      #231557 0%,
      #44107a 29%,
      #ff1361 67%,
      #fff800 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: block;
  font-size: 5rem;
  text-align: center;
  margin: 1rem 0;

}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/* ================= FOOTER ================= */
/* FOOTER */

.container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  row-gap: 1.6rem;
  column-gap: 7.4rem;
}

.footer {
  background-color: #f8f8f8;
  padding: 4.8rem 0;
  border-top: 1px solid #eee;
}

.grid--footer {
  grid-template-columns: 1fr 1fr 0.3fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.address-col, .links{
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.contacts p:first-child {
  margin-bottom: 0.4rem;
  color: #767676;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  text-decoration: none;
  font-size: 1.6rem;
  color: #555;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
}

.logo-f {
  width: 22rem;
  height: 6rem;
}


/* ================= MOBILE ================= */
@media (max-width: 916px) {
  .header {
    padding: 0 3.2rem;
  }

  .header .txt .logo{
    width: 18rem;
    height: 5rem;
  }

  .nav-list {
    display: none;
  }

  .wrap {
    grid-template-columns: 1fr;
  }

  .animate-charcter {
    font-size: 3rem;
  }

  .widget-wrapper {
    margin: 6rem auto;
    padding: 0 3.2rem;
  }

  .widget-wrapper1 {
    margin: 6rem auto 0 auto;
    padding: 0 3.2rem;
  }

  .widget-wrapper2 {
    margin: 3rem auto 6rem auto;
    padding: 0 3.2rem;
  }
}

@media (max-width: 800px) {
  .grid--footer {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .logo-col {
    align-items: center;
  }

  .address-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .address-col .contacts {
    text-align: center;
  }

  .links {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 0 1.2rem;
  }

  .widget-wrapper {
    margin: 3rem auto;
    padding: 0 1.2rem;
  }

  .widget-wrapper1 {
    margin: 6rem auto 0 auto;
    padding: 0 1.2rem;
  }

  .widget-wrapper2 {
    margin: 3rem auto 3rem auto;
    padding: 0 1.2rem;
  }
}