/*** LOADER CSS ***/

#page {
  display: flex;
  justify-content: center;
  align-items: center;
}

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#h3 {
  color: rgb(82, 79, 79);
}

#ring {
  width: 190px;
  height: 190px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
}

#ring:nth-child(1) {
  border-bottom: 8px solid rgb(240, 42, 230);
  animation: rotate1 2s linear infinite;
}

@keyframes rotate1 {
  from {
    transform: rotateX(50deg) rotateZ(110deg);
  }

  to {
    transform: rotateX(50deg) rotateZ(470deg);
  }
}

#ring:nth-child(2) {
  border-bottom: 8px solid rgb(240, 19, 67);
  animation: rotate2 2s linear infinite;
}

@keyframes rotate2 {
  from {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
  }

  to {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
  }
}

#ring:nth-child(3) {
  border-bottom: 8px solid rgb(3, 170, 170);
  animation: rotate3 2s linear infinite;
}

@keyframes rotate3 {
  from {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
  }

  to {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
  }
}

#ring:nth-child(4) {
  border-bottom: 8px solid rgb(207, 135, 1);
  animation: rotate4 2s linear infinite;
}

@keyframes rotate4 {
  from {
    transform: rotateX(70deg) rotateZ(270deg);
  }

  to {
    transform: rotateX(70deg) rotateZ(630deg);
  }
}


/*** Home Service Bubble ***/
.ellipse-img {
  animation: border-transform 10s linear infinite alternate forwards;
}

@keyframes border-transform {
    0%, 100% {
      border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

/*** About Us CSS ***/
.bg-light-skyblue {
    background: transparent linear-gradient(180deg, #F1F8FF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

/*** Text Length ***/
.txt-of-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/*** What's New CSS ***/
.home-section-2 {
    padding: 60px 0;
    background: linear-gradient(175deg, #fff7eb 0, rgba(249, 240, 227, 0) 84.33%);
}
.whatsnew {
    background: #fff;
    padding: 35px;
    display: inline-block;
    width: 100%;
    border-radius: 20px;
    height: 354px;
    box-shadow: 0 10px 50px #11146717;
}
.whatsnew .heading2 {
    margin-bottom: 10px;
}
.whatsnew .heading2 {
    color: var(--theme-color);
    font-size: 25px;
}
.whatsnew marquee {
    height: 226px;
}
.whatsnew ul {
    padding: 0;
    margin: 0;
}
.whatsnew ul li {
    list-style: none;
    margin-bottom: 25px;
    font-size: 16px;
}
.whatsnew ul li strong span {
    background: var(--theme-color);
    padding: 1px 10px;
    font-size: 11px;
    color: #fff;
    border-radius: 21px;
    text-transform: uppercase;
    margin-left: 8px;
}
.whatsnew ul li p a {
    font-size: 14px;
    color: rgb(17 21 110);
    line-height: 20px;
    display: inline-block;
    width: 100%;
}
.whatsnew ul li p :hover {
    text-decoration: underline;
}

 /*** footer ***/
.footer-count {
    color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0;
    padding: 4px 20px;
    text-align: center;
}