* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  /*debug*/
}

body {
  display: flex;
  font-size: 18px;
  font-family: sans-serif;
  color: #d8ca1a;
  background: #410C5B;
background: radial-gradient(circle, rgba(65, 12, 91, 1) 0%, rgba(31, 5, 57, 1) 100%);;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;

  width: 100%;
  height: 80px;
  background: #410c5b;
}

ul {
  list-style: none;
}

a:link {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #fffff1;
}

.page {
  width: 100%;
  padding-bottom: 100px;
  /* border: 1px solid #ff001f; */
}

.nav-homer {
  width: 100%;
  /* border: 1px solid #ff001f; */
}

.top-blocks {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  /* border: 1px solid #ff001f; */
}

.nav-list {
  padding: 10px 5px;
  background-color: #fffff1;
}

.content {
  display: flex;
  justify-content: space-around;
  flex-direction: row-reverse;

  padding: 100px 0;
}

.social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}


.text {
  color: #000;
  position: absolute;
  top: 76%;
  left: 29.75%;
  z-index: 2;
  font-size:1vw;
  text-align: center;
  max-width:100%;
  background: #c3b640;
}

.panel {
  position: relative;
  top: 0;
  left: 0;
}

.responsive1 {
  position: relative;
  max-width:100%;
  height: auto;
}

.responsive2 {
  position: absolute;
  top: 21%;
  left: 60%;
  max-width:11%;
  height: auto;
}

#scroll {
    width: 100%;
    height: 2.5rem;
    font-family: Montserrat;
    position: fixed;
    overflow: hidden;
    white-space: nowrap;
    background: #c3b640;
    color: #000;
     z-index: 1;
}
#scroll .construction {
  background: #c3b640;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: fit-content;
  white-space: nowrap;
  animation: loop 10s linear infinite;
}
#scroll .construction#banner-one {
  animation-delay: 0s;
  top: 80px;
  left: 0px;
}
@keyframes loop {
    0% {transform: translateX(500%);}
    100% {transform: translateX(-100%);}
}
.constext {
    display: flex;
    align-items: center;
    gap: 0 0.2rem;
    color: #000;
    font-size: 1rem;
    /* background-color: #c3b640; */
    padding: 0.7rem 1rem;
    margin: 0rem 1rem;
    border-radius: 0.4rem;
    white-space: nowrap;
    box-shadow:
    0 0.1rem 0.2rem #00000033,
    0 0.1rem 0.5rem #0000004d,
    0 0.2rem 01.5rem #00000066,
}
