:root {
    --blanco: #ffffff ;
    --azulbase:    #0e4a72  ;
    --azulclaro:  #0f8087 ;
    --azulmedio:   #0e4a72;
  }

  .responsive {
    display: none !important;
}

  body::-webkit-scrollbar-track,
  textarea::-webkit-scrollbar-track {
      background-color: var(--azulbase);
  }
  
  body::-webkit-scrollbar,
  textarea::-webkit-scrollbar {
      width: 5px;
  }
  
  body::-webkit-scrollbar-thumb,
  textarea::-webkit-scrollbar-thumb {
      background-color: var(--azulclaro);
  }

  .social-bar{
    display: flex;
    column-gap: 25px;
    position: fixed;
    bottom: 25%;
    right: 0.8%;
    flex-direction: column;
    align-items: flex-end;
    z-index: 99;
  }

  .icono{
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    color: #fff;
    background-color: rgba(15, 127, 135, 0.7);
    box-shadow: 0 8px 8px 0 rgba(39, 39, 39, 0.27);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    position: relative;
    display: flex;
    padding: 4%;
    margin-top: 10px;
    outline: 2px solid #0f8087;
    transition-property: outline-offset, outline-color, background-color;
    transition-duration: .30s;
  }

  .icono:hover{
    outline-offset: 4px;
  }

  .icono:hover i{
    color: #fff;
    animation: shake .25s;
  }

  .icono--instagram:hover{
    background-image: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%,
    #fd5949 45%, #d6249f 60%,
    #285AEB 90%);
    outline-color: #a02d76;
  }

  .icono--facebook:hover{
    background-color: #3b5998;
    outline-color: #3b5998;
  }

  .icono--otros:hover{
    background-color: #0e4a72;
    outline-color: #0e4a72;
  }



  @keyframes shake {
    10% {
      transform: rotate(15deg);
    }
    20% {
      transform: rotate(-15deg);
    }
    30% {
      transform: rotate(15deg);
    }
    40% {
      transform: rotate(-15deg);
    }
  }



  .contacto-formulario span {
    background: #dd4d4d;
    color: #ffff;
    position: absolute;
    bottom: 25px;
    padding: 10px;
    right: 45px;
    font-size: 14px;
    border: 4px solid rgba(255, 255, 255, .5);
    border-radius: 20px 20px 0;
    box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .05) 0 4px 6px -2px;
    line-height: normal;
    -webkit-animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
    animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
    width: 95px;
    animation-delay: 1.5s;
    z-index: 999;
}



.contacto-formulario{
  position: relative;
  width: 54px;
  height: 54px;
  line-height: 54px;
  border-radius: 50%;
  border: 1px solid var(--border-color-dark);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.514);
  box-shadow: 0 8px 8px 0 rgba(135, 31, 31, 0.27);
    backdrop-filter: blur(5px);
}


.contacto-formulario i{
  color: #dd4d4d;
  font-size: 25px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.contacto-formulario:hover {
  background-color: #dd4d4d;
    outline-color: #dd4d4d;
}




  /*-------- Button Style Css --------*/
.btn-theme {
  background-color: #0f8087;
  border-color: #0f8087;
  border-radius: 32.5px;
  color: #fff;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.375;
  min-width: 200px;
  padding: 21px 37px;
  position: relative;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.btn-theme .icon {
  font-size: 23px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 42px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.btn-theme .icon.icon-img {
  max-width: none;
  width: auto;
}
.btn-theme:hover, .btn-theme:focus {
  background-color: #0e4a72;
  border-color: #0e4a72;
  color: #fff;
}
.btn-theme:hover .icon, .btn-theme:focus .icon {
  right: 40px;
}
.btn-theme.btn-theme-color2 {
  background-color: #0e4a72;
  border-color: #0e4a72;
}
.btn-theme.btn-theme-color2:hover, .btn-theme.btn-theme-color2:focus {
  background-color: #0f8087;
  border-color: #0f8087;
}
.btn-theme.btn-black {
  background-color: #000;
  border-color: #000;
}
.btn-theme.btn-black:hover {
  background-color: #0f8087;
  border-color: #0f8087;
  color: #fff;
}
.btn-theme.btn-black.btn-border {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}
.btn-theme.btn-black.btn-border:hover {
  background-color: #0f8087;
  border-color: #0f8087;
  color: #fff;
}
.btn-theme.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #0e0e0e;
}
.btn-theme.btn-white:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn-theme.btn-white.btn-border {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-theme.btn-white.btn-border:hover {
  background-color: #fff;
  border-color: #fff;
  color: #0f8087;
}
.btn-theme.btn-gray {
  background-color: #f4f4f4;
  border-color: #f4f4f4;
  color: #0e0e0e;
}
.btn-theme.btn-gray:hover {
  background-color: #0f8087;
  border-color: #0f8087;
  color: #fff;
}
.btn-theme.btn-border {
  background-color: transparent;
  border: 2px solid #0f8087;
  color: #0f8087;
  padding: 19px 37px;
}
.btn-theme.btn-border:hover {
  background-color: #0f8087;
  border-color: #0f8087;
  color: #fff;
}
.btn-theme.btn-border.btn-theme-color2 {
  background-color: transparent;
  border-color: #0e4a72;
  color: #0e4a72;
}
.btn-theme.btn-border.btn-theme-color2:hover {
  background-color: #0e4a72;
  border-color: #0e4a72;
  color: #fff;
}
.btn-theme.btn-border.btn-gray {
  background-color: transparent;
  border-color: #e8e8e8;
  color: #001d23;
}
.btn-theme.btn-border.btn-gray:hover {
  background-color: #0f8087;
  border-color: #0f8087;
  color: #fff;
}
.btn-theme.btn-border.btn-white {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-theme.btn-border.btn-white:hover {
  background-color: #0f8087;
  border-color: #0f8087;
  color: #fff;
}
.btn-theme.btn-round {
  border-radius: 25px;
}
.btn-theme.btn-round.btn-slide:before {
  border-radius: 25px;
}
.btn-theme.btn-slide {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn-theme.btn-slide:before {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  bottom: -40px;
  content: "";
  height: 65px;
  left: -27px;
  position: absolute;
  width: 65px;
  z-index: -1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.btn-theme.btn-slide:after {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  height: 65px;
  position: absolute;
  right: -27px;
  top: -40px;
  width: 65px;
  z-index: -1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.btn-theme.btn-slide .icon.icon-img {
  right: 42px;
}
.btn-theme.btn-slide:hover:before {
  border-radius: 32.5px;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  width: 100%;
}
.btn-theme.btn-slide:hover:after {
  border-radius: 32.5px;
  height: 100%;
  opacity: 0;
  right: 0;
  top: 0;
  width: 100%;
}
.btn-theme.btn-gradient {
  background: #0e4a72;
  background: linear-gradient(to right, #0e4a72 0%, #0f8087 100%);
}
.btn-theme.btn-gradient.btn-border {
  background-color: transparent;
  background: #0e4a72;
  background: linear-gradient(to right, #0e4a72 0%, #0f8087 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-theme.btn-border-gradient {
  padding: 2px !important;
  z-index: 1;
  background: #0e4a72;
  background: linear-gradient(to left, #0e4a72 0%, #0f8087 100%);
}
.btn-theme.btn-border-gradient:before {
  background-color: #f7f7f7;
  content: "";
  display: block;
  height: calc(100% - 4px);
  left: 2px;
  position: absolute;
  top: 2px;
  width: calc(100% - 4px);
  z-index: -1;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.btn-theme.btn-border-gradient span {
  display: block;
  background: #0e4a72;
  background: linear-gradient(to left, #0e4a72 0%, #0f8087 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.btn-theme.btn-border-gradient.gray-border {
  background: none;
  transition: 0s;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
}
.btn-theme.btn-border-gradient.gray-border:after {
  border: 2px solid #d7d7d7;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transition: 0s;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
}
.btn-theme.btn-border-gradient.gray-border:hover {
  background: #0e4a72;
  background: linear-gradient(to left, #0e4a72 0%, #0f8087 100%);
}
.btn-theme.btn-border-gradient.gray-border:hover:after {
  border-width: 0;
}
.btn-theme.btn-border-gradient.btn-size-xs:before {
  border-radius: 19px;
}
.btn-theme.btn-border-gradient.btn-size-xs span {
  border-radius: 19px;
  padding: 6px 15px;
}
.btn-theme.btn-border-gradient.btn-size-xs:hover .icon {
  right: 18px;
}
.btn-theme.btn-border-gradient.btn-size-md:before {
  border-radius: 32.5px;
}
.btn-theme.btn-border-gradient.btn-size-md:after {
  border-radius: 32.5px;
}
.btn-theme.btn-border-gradient.btn-size-md span {
  border-radius: 32.5px;
  padding: 10.3px 22px;
}
.btn-theme.btn-border-gradient.btn-size-md span .icon {
  right: 25px;
}
.btn-theme.btn-size-xs {
  border-radius: 19px;
  font-size: 15px;
  line-height: 1.5;
  min-height: 38px;
  min-width: 105px;
  padding: 8px 17px;
}
.btn-theme.btn-size-xs .icon {
  right: 20px;
}
.btn-theme.btn-size-xs.btn-border {
  padding: 7px 18px;
}
.btn-theme.btn-size-sm {
  border-radius: 22.5px;
  font-size: 15px;
  min-height: 45px;
  min-width: 130px;
  padding: 12px 22px;
}
.btn-theme.btn-size-sm .icon {
  right: 22px;
}
.btn-theme.btn-size-sm.btn-border {
  padding: 10px 20px;
}
.btn-theme.btn-size-md {
  font-size: 15px;
  min-height: 45px;
  min-width: 150px;
  padding: 12px 22px;
}
.btn-theme.btn-size-md .icon {
  right: 22px;
}
.btn-theme.btn-size-md.btn-border {
  padding: 10px 20px;
}
.btn-theme.btn-size-lg {
  height: 50px;
  min-width: 180px;
  text-align: center;
}
.btn-theme.btn-size-xl {
  height: 50px;
  min-width: 220px;
  text-align: center;
}
.btn-theme.btn-size-xxl {
  height: 52px;
  min-width: 270px;
  text-align: center;
}



  @media (min-width: 100px) and (max-width: 991px){
    .responsive {
        display: block !important;
    }

    .social-bar{
      bottom: 26%;
    }

    .icono{
      height: 40px;
      width: 40px;
    }

    .contacto-formulario span {
      background: #dd4d4d;
      color: #ffff;
      position: absolute;
      bottom: 10px;
      padding: 10px;
      right: 40px;
      font-size: 12px;
      width: 85px;
  }

    .telefono-banner {
        background-color:#0e4a72;
        padding: 10px 0px;
        color: var(--blanco);
        width: 100%;
    }
    .telefono-banner a{
        margin-left: 5px;
        color: var(--blanco);
        font-weight: 600;
        font-size: 24px;
    }
  }
  