img.header-icon {
  width: 88px;
  max-width: 100%;
  display: block;
  margin: auto;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

img.header-icon {
  animation: rotate360 13.8s linear infinite;
  transition: none;
}

img.header-icon:hover {
  animation-play-state: paused;
}


img.clogo {
  height: 80px; 
  object-fit: contain;
  width: auto;
  display: block;
  margin: 0 auto;
}

.custom-checkbox {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  display: inline-block;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #e5e5e5;
  border-radius: 4px;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #111; /* your main color */
}

.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.loader-wrap-heading{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.loader-logo{
  position: relative;
  max-width: 100px;
  margin: 0 auto;
  vertical-align: middle;
}

.item-brand img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.item-brand img:hover {
  filter: grayscale(0%);
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.img-in-text {
  display: inline-block;
  transform: scale(1);
  opacity: 0;
  animation: zoomFade 1.2s ease-out 0.4s forwards;
}

@keyframes zoomFade {
  0% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/**whatsapps button**/
@keyframes pulsing {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}

.whats-float {  
  position: fixed;
  opacity: 1;
  transform: translateX(70%);
  right: 0;
  bottom: 15%;
  width: 160px;
  overflow: hidden;
  background-color: #25d366;
  color: #FFF;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
  border-radius: 50px 0 0 50px;
  box-shadow: 0px 0px 3px #999;
  -webkit-animation: pulsing 3s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 3s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 3s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 3s infinite cubic-bezier(0.66, 0, 0, 1);
}
body.loaded .whats-float{
  opacity: 1;
  transform: translateX(108px);
  transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}

.whats-float a {
  display: flex;
  width: 100%;
  align-items: center;
}

.whats-float a span {
  color: white;
  font-size: 14px;
  /*position: absolute;*/
  /*line-height: 15px;*/
  font-weight: bold;
  text-wrap: nowrap;
  line-height: 1.initial;
}

.whats-float i {
  font-size: 30px;
  color: white;
  line-height: 30px;
  padding: 15px;
  transform:rotate(0deg);
  transition: all 0.5s ease-in-out;
  text-align:center;
}

.whats-float:hover {
  transition-delay: 0;
  color: #FFFFFF;
  transform:translate(0px,0px) !important;
  background: #29342c;
  width: 150px;
}

.whats-float:hover i  {
  transform:rotate(360deg);
}

.whats-float i {
  animation: pulse 5s infinite; /* Adjust animation duration as needed */
}
/**end whatsapps button**/

/**avatar**/
.avatar-color-a { background-color: #9c2525; } /* Red */
.avatar-color-b { background-color: #E91E63; } /* Pink */
.avatar-color-c { background-color: #9C27B0; } /* Purple */
.avatar-color-d { background-color: #673AB7; } /* Deep Purple */
.avatar-color-e { background-color: #3F51B5; } /* Indigo */
.avatar-color-f { background-color: #2196F3; } /* Blue */
.avatar-color-g { background-color: #03A9F4; } /* Light Blue */
.avatar-color-h { background-color: #00BCD4; } /* Cyan */
.avatar-color-i { background-color: #009688; } /* Teal */
.avatar-color-j { background-color: #4CAF50; } /* Green */
.avatar-color-k { background-color: #8BC34A; } /* Light Green */
.avatar-color-l { background-color: #CDDC39; } /* Lime */
.avatar-color-m { background-color: #ffc500; } /* Yellow */
.avatar-color-n { background-color: #FFC107; } /* Amber */
.avatar-color-o { background-color: #FF9800; } /* Orange */
.avatar-color-p { background-color: #FF5722; } /* Deep Orange */
.avatar-color-q { background-color: #795548; } /* Brown */
.avatar-color-r { background-color: #9E9E9E; } /* Grey */
.avatar-color-s { background-color: #607D8B; } /* Blue Grey */
.avatar-color-t { background-color: #D32F2F; } /* Dark Red */
.avatar-color-u { background-color: #C2185B; } /* Dark Pink */
.avatar-color-v { background-color: #7B1FA2; } /* Dark Purple */
.avatar-color-w { background-color: #512DA8; } /* Dark Deep Purple */
.avatar-color-x { background-color: #1976D2; } /* Dark Blue */
.avatar-color-y { background-color: #388E3C; } /* Dark Green */
.avatar-color-z { background-color: #F57C00; } /* Dark Orange */

.testimonial-reviews-author-container{
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%;
  margin-bottom: 12px;
}

.testimonial-reviews-author-avatar-container{
  width: 60px;
  height: 60px;
  position: relative;
  align-self: flex-start;
  margin-right: 0px;
}

.testimonial-reviews-author-avatar{
  position: relative;
  width: 60px;
  height: 60px;
  box-shadow: rgba(17, 17, 17, 0.1) 0px 0px 2px inset;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-reviews-author-avatar span{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  height: 100%;
  color: white;
}

.testimonial-reviews-author-avatar img{
  display: inline-block !important;
  position: static !important;
  margin: 0px !important;
  padding: 0px !important;
  max-width: none !important;
  height: inherit !important;
  width: inherit !important;
  visibility: visible !important;
  object-fit: cover;
}

.testimonial-reviews-author-source-container{
  bottom: -6px;
  right: -6px;
  position: absolute !important;
}

.testimonial-reviews-author-source-icon{
  width: 24px;
  height: 24px;
}

.testimonial-reviews-author-source-img{
    display: block;
    object-fit: contain;
    width: 24px;
    height: 24px;
}

.testimonial-reviews-author-info {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: center;
  min-width: 0px;
  max-width: 100%;
}
.testimonial-reviews-author-info h6 {
  margin-bottom: 0;
}

.testimonial-reviews-author-info span{
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;a
  margin-right: 5px;
}

.testimonial-reviews-author-badge{
  width: 14px;
  height: 14px;
}

.testimonial-reviews-info-container{
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: left;
  flex-flow: column;
}

.rate .fa-star:before{
  color: #fcbc05;
}

.menu-links{
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.menu-info{
  padding: 15px;
  margin-top: 50px;
}

.menu-info img{
  position: absolute;
  right: -30%;
  opacity: .2;
  top: 55%;
}

.bg-pattern-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.loader-wrap {
  pointer-events: none !important;
  background: transparent !important;
}

.caption h2 {
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}

.lcp-helper {
  font: 700 3.8rem system-ui, sans-serif;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  line-height: normal;
}

.preload-container2 {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 55%);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999999999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preload-logo {
  margin: auto;
  background: url(../imgs/logo-color.png) no-repeat center;
  background-size: 90px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.loader-text {
  text-align: center;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1;
  color: var(--line);
  font-weight: 500;
  width: 100%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
}

.no-animation .test-123 {
  opacity: 1 !important;
  transform: none !important;
  color: #fff !important;
}
.no-animation .stroke {
  color: #fff !important;
  -webkit-text-stroke: 0 !important;
}
.no-animation .loader-wrap {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

h2.hero-text {
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
  100% {
    transform: scale(1);
  }
}

h2.hero-text span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
}

h2.hero-text span:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(2) {
  animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(3) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(4) {
  animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(5) {
  animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(6) {
  animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(7) {
  animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(8) {
  animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(9) {
  animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(10) {
  animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(11) {
  animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(12) {
  animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(13) {
  animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(14) {
  animation: fade-in 0.8s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(15) {
  animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(16) {
  animation: fade-in 0.8s 1.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(17) {
  animation: fade-in 0.8s 1.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

h2.hero-text span:nth-child(18) {
  animation: fade-in 0.8s 1.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.header-startup .caption .stroke-temp {
    color: #fff0;
    -webkit-text-stroke: .5px #fff;
}

#stroke1,
#stroke2{
  transition: all 1s;
}