body {
    width: 100%;
    height: 100%;
    margin: 0px;
    margin-top: 205px;
}
.content {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
}
.header {
    width: 100%;
    height: 35px;
    background-color: #1F2061;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.phone-header {
    background-image: url('../img/wapp.png');
    background-repeat: no-repeat;
    padding-left: 22px;
    margin-left: 60px;
    margin-top: 8px;
    height: 18px;
    font-family: Verdana;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    float: left;
}
.social-header{
    width: 93px;
    height: 21px;
    float: right;
    margin-top: 6px;
    margin-right: 45px;
}
.youtube{
    width: 31px;
    height: 21px;
    background-image: url('../img/youtube.png');
    float: left;
    margin-right: 10px;
}
.google{
    width: 21px;
    height: 21px;
    background-image: url('../img/google.png');
    float: left;
    margin-right: 10px;
}
.linkedin{
    width: 21px;
    height: 21px;
    background-image: url('../img/in.png');
    float: left;
}
.head {
    width: 100%;
    height: 115px;
    background-color: #1F2061;
}
.logo {
    width: 258px;
    height: 79px;
    background-image: url('../img/logo.png');
    display: inline-block;
    margin: 16px 0px 0px 62px;
    float: left;
}
.aut {
    width: 222px;
    height: 63px;
    background-image: url('../img/autorizada.png');
    display: inline-block;
    margin: 23px 36px;
    float: right;
}
.menu {
    width: 100%;
    height: 55px;
    background-color: #1F2061;
}
.button {
    margin-right: 0.5%;
    margin-left: 0.5%;
    width: 11.5%;
    height: 42px;
    border: 2px solid #FFF;
    box-sizing: border-box;
    background-color: #1F2061;
    float: left;
    font-family: Verdana;
    font-size: 15px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    padding-top: 9px;
    transition: background 0.2s ease-in;
    border-radius: 10px;
}
.button:hover {
    background-color: #E60005;
    color: #FFF;
}
.carousel-container {
  width: 100%;
  height: 620px;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: calc(1550px * 4);
  animation: slide 15s infinite linear;
}

.carousel-item {
  min-width: 1550px;
  height: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  border-right: 4px solid #eee;
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-12.5%);
  }
  50% {
    transform: translateX(-25%);
  }
  75% {
    transform: translateX(-37.5%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.services {
    width: 100%;
    height: 620px;
}