* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
}

.containerechipa {
  display: flex;
  max-width: 1200px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.containerechipalogo {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.containerechipalogo img {
  width: 100%;
  height: 100%;
}

.containerechipacontact {
  margin-left: 5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  text-align: center;
  height: 100%;
}

:root {
  --d: 2500ms;
  --angle: 90deg;
  --gradX: 100%;
  --gradY: 50%;
  --c1: rgba(228, 83, 38, 255);
  --c2: rgba(168, 239, 255, 0.1);
}

.box {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: sans-serif;
  color: rgba(228, 83, 38, 255);
  font-size: 2rem;
  border: 0.35rem solid;
  padding: 1rem;
  margin-bottom: 1rem;
  border-image: conic-gradient(
      from var(--angle),
      var(--c2),
      var(--c1) 0.1turn,
      var(--c1) 0.15turn,
      var(--c2) 0.25turn
    )
    30;
  animation: borderRotate var(--d) linear infinite forwards;
}

@keyframes borderRotate {
  100% {
    --angle: 420deg;
  }
}

@keyframes borderRadial {
  20% {
    --gradX: 100%;
    --gradY: 50%;
  }
  40% {
    --gradX: 100%;
    --gradY: 100%;
  }
  60% {
    --gradX: 50%;
    --gradY: 100%;
  }
  80% {
    --gradX: 0%;
    --gradY: 50%;
  }
  100% {
    --gradX: 50%;
    --gradY: 0%;
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: true;
}

@property --gradX {
  syntax: "<percentage>";
  initial-value: 50%;
  inherits: true;
}

@property --gradY {
  syntax: "<percentage>";
  initial-value: 0%;
  inherits: true;
}

.containerechipalogo p {
  color: rgba(228, 83, 38, 255);
  font-size: xx-large;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.containerechipacontact h5 {
  color: rgba(228, 83, 38, 255);
  font-size: xx-large;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.containertextcontact {
  display: flex;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.containermarepagcontact {
  display: block;
  padding: 8rem 0;
}

@media screen and (max-width: 750px) {
  .containerechipa {
    display: flex;
    max-width: 1200px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .containerechipalogo p {
    color: rgba(228, 83, 38, 255);
    font-size: large;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 28px;
  }

  .containerechipacontact h5 {
    color: rgba(228, 83, 38, 255);
    font-size: large;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 28px;
  }

  .containerechipacontact {
    margin-left: 0;
  }

  .box {
    font-family: sans-serif;
    color: rgba(228, 83, 38, 255);
    font-size: 1.35rem;
    border: 0.35rem solid;
    padding: 1rem;
    margin-bottom: 1rem;
    border-image: conic-gradient(
        from var(--angle),
        var(--c2),
        var(--c1) 0.1turn,
        var(--c1) 0.15turn,
        var(--c2) 0.25turn
      )
      30;
    animation: borderRotate var(--d) linear infinite forwards;
  }
}

.containerechipacontact i {
  margin-right: 1rem;
  width: 24px;
}

a {
  color: unset;
  text-decoration: none;
}
