/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
    font-family:'Cinzel Bold' ;
    src: url('../../font/landing/Cinzel-Bold.ttf');
    font-display: swap;
}

@font-face {
    font-family:'AvenirArabic-Medium' ;
    src: url('../../font/landing/AvenirArabic-Medium.otf');
    font-display: swap;
}

@font-face {
    font-family:'Signika Bold' ;
    src: url('../../font/landing/Signika-Bold.ttf');
    font-display: swap;
}

@font-face {
    font-family:'Signika Light' ;
    src: url('../../font/landing/Signika-Light.ttf');
    font-display: swap;
}

@font-face {
    font-family:'Signika Medium' ;
    src: url('../../font/landing/Signika-Medium.ttf');
    font-display: swap;
}

@font-face {
    font-family:'Signika Regular' ;
    src: url('../../font/landing/Signika-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family:'Signika SemiBold' ;
    src: url('../../font/landing/Signika-SemiBold.ttf');
    font-display: swap;
}
/*--------------------------------------------------------------
# Sections Fonts & Colors
--------------------------------------------------------------*/

.cinzel-bold{
    font-family: "Cinzel Bold", sans-serif;
}
.signika-medium{
    font-family: "Signika Medium", sans-serif;
}
.signika-bold{
    font-family: "Signika Bold", sans-serif;
}
.signika-regular{
    font-family: "Signika Regular", sans-serif;
}

.signika-light{
    font-family: "Signika Light", sans-serif;
}

.bg-azul{
    background: #18192e;
}
.bg-azul-form{
    background: #26273c;
}
.bg-white-form{
    background: rgba(232, 232, 234,0.5);
}

.bg-dorado{
    background: #a69246;
}
.text-azul{
    color: #222e62;
}
.text-dorado{
    color: #a69246;
    
}
 
.small-caps{
    font-variant: small-caps;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'AvenirArabic-Medium', sans-serif;
     
  }
  
  a {
    color: #009961;
  }
  
  a:hover {
    color: #00cc81;
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Signika Regular", sans-serif;
  }


   
.spinner-container{
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(128, 128, 128,0.2);
  padding: 0;
  margin: 0;
  z-index: 99;
}
.spinner {
  top: 35%;
  left: 50%;
  margin-left: -4em;
  transform: translateY(-35%);
  
  position: absolute;
  --color: #1c1832;
  /* --fade-color: rgba(0 255 155 / 50%); */
  --fade-color: rgba(28 24 50 /50%);
  --scale: 1;
  --x-speed: 1;
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  transform: scale(var(--scale)) rotateZ(0);
  animation: ps-spin calc(15s / var(--x-speed)) linear infinite;
  z-index: 99;
}

@keyframes ps-spin {
  from {
      transform: scale(var(--scale)) rotateZ(0);
  }
  to {
      transform: scale(var(--scale)) rotateZ(-360deg);
  }
}


/*--------------------------------------------------------------
# spinner
--------------------------------------------------------------*/
.spinner-container{
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(128, 128, 128,0.2);
  padding: 0;
  margin: 0;
  z-index: 99;
}
.spinner span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}

.spinner span::before,
.spinner span::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%) scale(0.3);
  background-color: rgba(var(--color) / 50%);
  border-radius: 50%;
  animation: ps-spinner-scale calc(1.2s / var(--x-speed)) linear infinite;
}

@keyframes ps-spinner-scale {
  0% {
      background-color: var(--fade-color);
      transform: translateY(-50%) scale(0.3);
  }
  25% {
      background-color: var(--color);
      transform: translateY(-50%) scale(1);
  }
  80% {
      background-color: var(--fade-color);
      transform: translateY(-50%) scale(0.3);
  }
  100% {
      background-color: var(--fade-color);
      transform: translateY(-50%) scale(0.3);
  }
}

.spinner span::before {
  left: 0;
}

.spinner span::after {
  right: 0;
}

.spinner span:first-of-type {
  transform: rotateZ(-45deg);
}

.spinner span:last-of-type {
  transform: rotateZ(45deg);
}

.spinner span:nth-of-type(2) {
  transform: rotateZ(90deg);
}

.spinner span:nth-of-type(3)::after {
  animation-delay: calc(0.15s / var(--x-speed));
}
.spinner span:last-of-type::after {
  animation-delay: calc(0.3s / var(--x-speed));
}
.spinner span:nth-of-type(2)::after {
  animation-delay: calc(0.45s / var(--x-speed));
}
.spinner span:first-of-type::before {
  animation-delay: calc(0.6s / var(--x-speed));
}
.spinner span:nth-of-type(3)::before {
  animation-delay: calc(0.75s / var(--x-speed));
}
.spinner span:last-of-type::before {
  animation-delay: calc(0.9s / var(--x-speed));
}
.spinner span:nth-of-type(2)::before {
  animation-delay: calc(1.05s / var(--x-speed));
}
  
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
 

#header .phone {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #191a2f;
}
#header .phone .fas{
    font-size: 8px;
}


.fa-user{
    font-size: 1.5rem;
}
.fa-sign-out-alt{
  font-size: 1.5rem;
}
 
 
#header .phone  {
    display: flex;
    align-items: center;
}

#header > .phone > li {
    position: relative;
    white-space: nowrap;
   padding: 100px;   
}

#header .social-links {
    margin: 0 0 5px 0 ;
}
  
#header .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #a59245;
    background: linear-gradient(0deg, rgba(165, 146, 69,1) 50%, rgba(165, 146, 69,0.8) 50%, rgba(184, 168, 83,0.9) 100%);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
#header .social-links a:hover {
    background: #b8a853;
    background: linear-gradient(0deg, rgba(184, 168, 83,0.9) 50%, rgba(165, 146, 69,0.8) 50%, rgba(165, 146, 69,1) 100%);
    color: #fff;
    text-decoration: none;
}

#header .logo{
    height: 50px;
    width: 100%;
    
}

#header .list-reset li a{
    font-size: 1.2rem;
    font-variant: small-caps;
    color: white;
}

#header  .points{
    display: none;
}

#header .active .points{
    display: block;
}

@media (max-width: 1024px) {
    #header .list-reset li a{
        color: black;
    }
    #header .active .points{
        display: none;
    }
}

@media (max-width: 640px) {
    #header .logo{
        height: auto;
    }
     
}

/*--------------------------------------------------------------
# Sections Hero
--------------------------------------------------------------*/
#hero {
    padding-top: 60px;

}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    overflow: hidden;
  }
  
  .section-bg {
    background-color: #8fffd6;
  }
  
  .section-title {
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #009961;
    bottom: 0;
    left: 0;
  }
  
  .section-title p {
    margin-bottom: 0;
    color: #777777;
    font-size: 15px;
  }
 

  /*--------------------------------------------------------------
# Sections Servicios
--------------------------------------------------------------*/
.servicios .titulo::first-letter{
  color: #a59245;
  font-weight: bold;
}
 


.servicios .roundedOne {
    width: 28px;
    height: 28px;
    position: relative;
    margin-right:10px ;
    background: #fcfff4;
    background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    border-radius: 50px;
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    
  }
  .servicios  .roundedOne label {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    left: 4px;
    top: 4px;
    background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%);
    background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
    border-radius: 50px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
  }
  .servicios  .roundedOne label:after {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 2px;
    background: #e6b907;
    background: -webkit-linear-gradient(top, #e6b907 0%, #a59245 100%);
    background: linear-gradient(to bottom, #e6b907 0%, #a59245 100%);
    opacity: 0;
    border-radius: 50px;
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  }
  .servicios  .roundedOne label:hover::after {
    opacity: 0.3;
  }
  .servicios  .roundedOne input[type=checkbox] {
    visibility: hidden;
  }
  .servicios  .roundedOne input[type=checkbox]:checked + label:after {
    opacity: 1;
  }


/*--------------------------------------------------------------
# Sections Radio button
--------------------------------------------------------------*/

input[type=radio] {
    position: relative;
    top: 2px;
    left: 0;
    height: 30px;
    width: 30px;
    background: #e6e6e6;
    margin:0 10px;
  }

  .servicios  label.label{
    display:block;
    line-height:40px;
    font-size: 1.5rem;
  }
  .servicios  .option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 13.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 40px;
    transition: all 0.15s ease-out 0s;
    background: white;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 10;
    border:1px solid gray;
  }
   
  .servicios  .option-input:checked {
    background:#9faab7 ;
  }
  .servicios  .option-input:checked::before {
    width: 40px;
    height: 40px;
    display:flex;
    content: '\f00c';
    font-size: 25px;
    font-weight:bold;
    position: absolute;
    align-items:center;
    justify-content:center;
    font-family:'Font Awesome 5 Free';
  }
  
  .servicios  .option-input.radio {
    border-radius: 50%;
  }
  .servicios  .option-input.radio::after {
    border-radius: 50%;
  }
  
  @keyframes click-wave {
    0% {
      height: 40px;
      width: 40px;
      opacity: 0.35;
      position: relative;
    }
    100% {
      height: 200px;
      width: 200px;
      margin-left: -80px;
      margin-top: -80px;
      opacity: 0;
    }
  }
  
  
  
  

  