Options +Indexes
IndexOptions -HTMLTable -FancyIndexing



html{
  scroll-behavior: smooth;
}

::selection {
  background: rgba(73, 56, 176, 0.9);
  color: #fff;
}

body{
  font-family: 'Ubuntu', sans-serif;
}

header{
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 5px 0;
  padding-top: 20px;
  z-index: 200;
  transition: .5s ease-in-out;
  text-align: center;
}

header.affix{
  padding-top: 5px;
  background: #fff;
}

header img{
  height: 80px;
}

header img.absol{
  position: absolute;
  height: 80px;
  width: auto;
  left: 15px;
  top: 0;
}

header img.color.absol{
  opacity: 0;
  transition: .3s ease-in-out;
}

header img.blanco.absol{
  opacity: 1;
  transition: .5s ease-in-out;
}

header.affix img.color.absol{
  opacity: 1;
}

header.affix img.blanco.absol{
  opacity: 0;
}

header .llama{
  background: #fff;
  height: 80px;
  color: #546c97;
  font-weight: 700;
  font-size: 22px;
  padding-top: 5px;
  transition: .5s ease-in-out;
}

header.affix .llama{
  background: #546c97;
  color: #fff;
}

header .llama a{
  color: #546c97;
  text-decoration: none !important;
  transition: .5s ease-in-out;
}

header.affix .llama a{
  color: #fff;
}

header .llama p{
  margin: 0;
}

header nav{
  line-height: 80px;
}

header nav a{
  color: #fff !important;
  text-decoration: none !important;
  font-size: 20px;
  margin: 0 10px;
  transition: .5s ease-in-out;
}

header.affix nav a{
  color: #546c97 !important;
}

#home{
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../img/home2.jpg') center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#home .headings{
  position: absolute;
  text-align: center;
  max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#home h1{
  color: #fff;
  font-weight: 300;
  font-size: 60px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 1);
}

#home h3{
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 1);
}

#home::before{
  content: '';
  display: block;
  height: 500px;
  width: 500px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 350px;
  background: #2966d4;
  position: absolute;
  top: 20%;
  left: 90%;
  z-index: 100;
  mix-blend-mode: color;
}

#home::after{
  content: '';
  display: block;
  height: 350px;
  width: 350px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 350px;
  background: #2966d4;
  position: absolute;
  top: 80%;
  left: 5%;
  z-index: 100;
  mix-blend-mode: color;
}

#servicios .servicio{
  padding: 80px 0;
  position: relative;
}

#servicios .servicio::after {
    position: absolute;
    content: '';
    pointer-events: none;
    left: 50%;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: inherit;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -40px;
    background: #f2f3ff;
}


#servicios .servicio:nth-of-type(even){
    background: #f2f3ff;
}

#servicios .servicio:nth-of-type(odd)::after{
  background: #fff;
}

#servicios h2{
  font-weight: 700;
  color: #546c97;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
}

#servicios h4{
  font-weight: 300;
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

#servicios h4::after{
  content: '';
  display: block;
  height: 2px;
  background: #2966d4;
  width: 120px;
  margin: 20px auto;
}

#servicios h3{
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: solid 2px #2966d4;
}

#servicios ul{
  border-left: solid 4px #2966d4;
  list-style: none;
  padding-left: 30px;
  font-style: italic;
}

#servicios ul li{
  margin: 10px 0;
  list-style: inside circle;
}

#servicios .multas h2, #servicios .multas h4{
  text-align: left;
}

#servicios .multas h3{
  border-left: none;
}

#servicios .multas h4::after{
  margin: 20px 0;
}

#contacto{
  background: url('../img/home2.jpg') center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#contacto .color{
  padding: 80px 0;
  background: rgba(53, 93, 163, 0.9);
}

#contacto h2{
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
  font-size: 35px;
  margin: 0;
  margin-bottom: 30px;
}

#contacto input, #contacto textarea{
  width: 100%;
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  resize: none;
}

#contacto textarea{
  height: 120px;
}

#contacto button{
  border: none;
  background: #fff;
  color: #546c97;
  text-transform: uppercase;
  padding: 5px 30px;
  border-radius: 5px;
  font-weight: 700;
}

footer{
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

footer img{
  height: 30px;
}

@media(max-width: 991px){

  header nav{
    line-height: 30px;
    margin-top: 5px;
  }

  #servicios article{
    margin-bottom: 40px;
  }
}
