@import url(content.css);
@import url(small-x.css) only screen and (max-width: 768px);
@import url(indexResv.css) only screen and (max-width: 955px);
@import url(small.css) only screen and (min-width: 768px);
@import url(medium.css) only screen and (min-width: 960px);
@import url(big.css) only screen and (min-width: 1200px);
/* From Uiverse.io by Alderx */ 
/* heart beat */
.heartbeatloader {
    position: absolute;
    width: 90px;
    height: 90px;
    z-index: -2;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .svgdraw {
    top: 30%;
    left: 26%;
    position: absolute;
    width: 50%;
    height: 50%;
    transform: scale(1.4);
    z-index: 3;
  }
  
  .path {
    stroke: rgba(0, 0, 0, 0.95);
    stroke-width: 4;
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
    animation: draw 1.5s infinite forwards normal linear;
    animation-delay: 0.1s;
    position: relative;
  }
  
  @keyframes draw {
    to {
      stroke-dashoffset: 0;
    }
  }
  
  .innercircle {
    position: absolute;
    top: 17%;
    left: 100.5%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 160%;
    height: auto;
    z-index: 1;
    opacity: 0.97;
    animation: innerbeat 1.5s infinite linear forwards;
  }
  
  .innercircle:before,
  .innercircle:after {
    position: absolute;
    content: "";
    left: 25%;
    top: 0;
    width: 25%;
    height: auto;
    padding-bottom: 40%;
    background: rgb(225, 95, 95);
    border-radius: 50px 50px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
  }
  
  .innercircle:after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
  }
  
  @keyframes innerbeat {
    0% {
      transform: translate(-50%, -50%) scale(1.2);
    }
  
    10% {
      transform: translate(-50%, -50%) scale(1.2);
    }
  
    50% {
      transform: translate(-50%, -50%) scale(1.3);
    }
  
    60% {
      transform: translate(-50%, -50%) scale(1.25);
    }
  
    75% {
      transform: translate(-50%, -50%) scale(1.3);
    }
  }
  
  .outercircle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(230, 92, 92, 0.774);
    box-shadow: 0 0 43px 0px #000;
    position: absolute;
    z-index: -1;
    opacity: 0.7;
    top: 0;
    left: 0;
    transform: scale(1.2);
    animation: outerbeat 1.5s infinite linear forwards;
  }
  
  @keyframes outerbeat {
    0% {
      transform: scale(1.2);
    }
  
    10% {
      transform: scale(1.2);
    }
  
    50% {
      transform: scale(1.3);
    }
  
    60% {
      transform: scale(1.25);
    }
  
    75% {
      transform: scale(1.3);
    }
  }
