:root {
  --bg1-clr: #BEBAAE;
  --bg2-clr: white;
  --white: white;
  --primary-clr: #CA0202;
  --text-clr: #000000;
  --black: black;

  --fs-20: 2rem;
  --fs-30: 3rem;
  --fs-35: 3.5rem;
  --fs-40: 4rem;
  --fs-45: 4.5rem;
  --fs-50: 5rem;
  --fs-18: 1.8rem;
  --fs-64: 6.4rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-900: 900;



  /* spacing */

  --section-padding-40: 4rem;
  --section-padding-20: 2rem;

  /* border radius */

  --radius-circle: 50%;
  --radius-60: 6rem;
  --radius-50: 5rem;
  --radius-30: 3rem;
  --radius-20: 2rem;
  --radius-15: 1.5rem;
  --radius-5: .5rem;
  --radius-2: .2rem;


  /* transition */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

  --dark: #070707;
  --sizeindex: calc(1vw + 1vh);
  --transition: .75s cubic-bezier(.2, .6, 0, 1);

  --Moderate-violet: hsl(263, 55%, 52%);
  --Very-dark-grayish-blue: hsl(217, 19%, 35%);
  --Very-dark-blackish-blue: hsl(219, 29%, 14%);

  /* ### Neutral */

  --Light-gray: hsl(0, 0%, 81%);
  --Light-grayish-blue: hsl(210, 46%, 95%);
}

/*-----------------------------------*\
    #RESET
  \*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif !important;
}

html,
body {
  width: 100%;
}

html {
  background: red;
  overflow-x: hidden;
  touch-action: manipulation;
  font-family: 'Montserrat', sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth !important;
}

body {
  background-color: var(--bg2-clr);
  color: var(--text-clr);
  font-size: var(--fs-18);
  line-height: 1.6;
  overflow-x: hidden;
}

.full-page {
  max-width: 1920px;
  margin-inline: auto;
  background: linear-gradient(315deg, rgba(190, 186, 174, 1) 35%, rgba(238, 233, 210, 1) 69%);
}

li {
  list-style: none;
}

a,
img,
span,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

.padding-t40 {
  padding-block: 4rem;
}

.padding-t30 {
  padding-block: 3rem;
}

.padding-t20 {
  padding-block: 2rem;
}

/* custom scroll */

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(0, 0, 0);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

.btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  font-weight: var(--fw-700);
  text-transform: uppercase;
  max-width: max-content;
  padding: 15px 40px;
  border-radius: var(--radius-20) 0;
  line-height: 1.4;
  transition: var(--transition-1);
  cursor: pointer;
}

.btn:is(:hover, :focus-visible) {
  border-radius: 0;
  border-top-right-radius: var(--radius-20);
}

.btn-primary {
  background-color: var(--black);
  color: var(--white);
}

.btn-primary:is(:hover, :focus-visible) {
  background-color: var(--primary-clr);
  color: var(--white);
}

.btn-secondary {
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--text-clr);
  background-color: var(--black);
}

.btn-secondary:is(:hover, :focus-visible) {
  box-shadow: inset 0 0 0 2px var(--primary-clr);
  color: var(--white);
}


.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

/* preloader */
/* Loader Styles start here */
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #d40808;
  --outer-line-color: #ffffff;
  --middle-line-color: #ffffff;
  --inner-line-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  overflow: hidden;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  /*   transform: translate(-50%, -50%); */
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

.loader:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--curtain-color);
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all .3s 1s ease-out;
}

/* Header Akmal*/

#bike-logo {
  width: 8%;
}

.body-home {
  /* background: rgb(190, 186, 174);
  background: linear-gradient(315deg, rgba(190, 186, 174, 1) 35%, rgba(238, 233, 210, 1) 69%); */
  z-index: -2;
  /* min-height: 150vh; */
  overflow: hidden;
}

.strip-parent {
  position: relative;
}

.strip {
  background-color: var(--primary-clr);
  position: absolute;
  top: -200%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 15vw;
  min-height: 250vh;
  transition: height 1s ease-in-out;
}
.body_sec{
  position: relative;
}
.body-img,.body-img1{
  left: 50%;
  transform: translate(-55%,0%);
  bottom: 0;
}
.body-img{
  position: absolute;
  /* display: none; */
  width: 25%;

}
.body-img1{
  position: relative;
  display: none;
  width: 75%;

}
.add_animation {
  animation: stripAnimation 3s forwards;
}

@keyframes stripAnimation {
  to {
    top: 0%;
    /* height: 170.5vh;  */
  }
}

header {
  display: flex;
  text-wrap: nowrap;
  justify-self: center;
  padding-block: 1rem;
  width: 100%;
  z-index: 9999;
}

header.active {
  position: fixed;
  animation: slideIn 0.5s ease forwards;
  background-color: var(--primary-clr);
  color: var(--bg2-clr);
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

header div {
  margin: auto;
  font-size: var(--fs-18);
  z-index: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s ease;
}

[data-reveal="left"] {
  transform: translateX(-30px);
}

[data-reveal="right"] {
  transform: translateX(30px);
}

[data-reveal="top"] {
  transform: translateY(-30px);
}

[data-reveal="bottom"] {
  transform: translateY(100px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0);
  max-width: 1920px;
}

.option-logo {
  z-index: 1;
  color: var(--bg2-clr);
}



.left-menu,
.right-menu {
  width: 100%;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;


}

.left-container {
  margin-left: 4%;
}

.description-left-top,
.description-left-container {
  margin-block: 5rem;
}
.paragraph{
  font-size: 3.5rem !important;
  color: black;
  line-height: 1.4 !important;
}
.paragraph span{
  color: var(--primary-clr);
}
.description-left-container p {
  padding-right: 28%;
}

.heading {
  line-height: normal;
  font-size: var(--fs-50);
  font-weight: var(--fw-900);
  margin-bottom: 20px;
}

.know-more-right {
  display: flex;
  justify-content: flex-end;
}


/* .know-more-left button,
.know-more-right button {
  border: 2px solid black;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: var(--radius-50);
  max-width: fit-content;
} */

.button {
  border-radius: 50px;
  background-color: transparent;
  border: 2px solid #000814;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 300ms ease;
  padding: 8px 30px;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--primary-clr);
  top: 100%;
  left: 0;
  transition: 500ms ease;
}

.button:hover,
.button:focus,
.button:active {
  color: #fff;
  letter-spacing: 3px;
}

.button:hover::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-descriptions {
  display: flex;
  justify-content: space-between;
}

.right-container {
  margin-right: 4%;
  text-align: right;
}

.description-right-container {
  margin-block: 5rem;
  text-align: end;
}

.description-right-container p {
  padding-left: 28%;
}

.heading-page-two {
  font-size: var(--fs-30);
  font-weight: var(--fw-600);
}

.heading-page-two::after {
  margin-top: 3rem;
  content: "";
  display: block;
  width: 75%;
  /* Adjust width as needed */
  height: 2px;
  background-color: var(--primary-clr);
  /* Set line color */

}

.heading-page-two span {
  font-weight: normal;
}

.right-align::after {
  float: right;
}

.left-align::after {
  float: left;
}

.separation {
  margin-top: 2rem;
}

/* Progress bar */

.progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  z-index: 99999;
}

.progress-bar {
  height: 100%;
  background-color: black;
  transition: all 0.3s ease;
}







/* progress circle */

.progress-circle-container {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.progress-circle {
  width: 50px;
  height: 50px;
  z-index: 9999;
}

.progress-circle-bar {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 5;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transform-origin: center;
  transition: stroke-dashoffset 0.3s ease;
}

.progress-background {
  fill: transparent;
  stroke: transparent;
  stroke-width: 5;
  stroke-dasharray: none;
}


.scroll-to-top {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: black;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.scroll-to-top svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: white;
  transition: all 0.1s ease;
}


/* slider */

.section {
  position: relative;
  width: 80%;
  display: block;
  margin-inline: auto;
}

.full-height {
  /* min-height: 100vh; */
}

.over-hide {
  /* overflow: hidden; */
}

.padding-tb {
  /* padding: 50px 0; */
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.checkbox:checked+label,
.checkbox:not(:checked)+label {
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  margin-right: 6px;
  margin-left: 6px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 2px solid #bdc3c7;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-image: url('images/home/3.jpg');
  animation: border-transform 6s linear infinite alternate forwards;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  animation-play-state: paused;
}

.checkbox.scnd+label {
  background-image: url('images/home/1.jpg');
}

.checkbox.thrd+label {
  background-image: url('images/home/2.jpg');
}

.checkbox.foth+label {
  background-image: url('images/home/4.jpg');
}

.checkbox:checked+label {
  box-shadow: 0px -6px 4px rgba(16, 39, 112, .3);
  transform: scale(1.3);
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  animation-play-state: running;
}

@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%;
  }
}

.slider-height-padding {
  padding-top: 440px;
  text-align: center;
}

ul {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
}

ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 400px;
  border: 1px solid #bdc3c7;
  background-size: cover;
  background-position: center;
  background-image: url('images/home/3.jpg');
  border-radius: 50%;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2.7;
  color: #343434;
  writing-mode: vertical-rl;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 25px 0 rgba(16, 39, 112, .1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul li span {
  mix-blend-mode: difference;
}

ul li:nth-child(2) {
  background-image: url('images/home/1.jpg');
}

ul li:nth-child(3) {
  background-image: url('images/home/2.jpg');
}

ul li:nth-child(4) {
  background-image: url('images/home/4.jpg');
}


.checkbox.frst:checked~ul li:nth-child(1) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}

.checkbox.scnd:checked~ul li:nth-child(2) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}

.checkbox.thrd:checked~ul li:nth-child(3) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}

.checkbox.foth:checked~ul li:nth-child(4) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}

/* .logo {
	position: absolute;
	top: 30px;
	right: 30px;
	display: block;
	z-index: 100;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
} */



@media (max-width: 767px) {
  .slider-height-padding {
    padding-top: 340px;
  }

  ul li {
    height: 300px;
    font-size: 13px;
    letter-spacing: 1px;
  }
}

@media (max-width: 575px) {
  .slider-height-padding {
    padding-top: 240px;
  }

  ul li {
    height: 200px;
  }
}


/* menu  */
/* Animation styles */

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Menu styles */

.menu {
  display: none;

}



/* Ashfiya CSS */



.img {
  width: 100%;
  pointer-events: none;
  user-select: none;
}

/* SECTION - HOME */

.home {
  display: grid;
  grid-template-columns: 45% 50%;
  place-items: center;
  gap: 50px;
  /* background: rgb(238, 233, 210, 1);
  background: radial-gradient(circle,
      rgb(238, 233, 210, 1) 12%,
      rgb(190, 186, 174, 1) 60%); */
  /* background: linear-gradient(315deg, rgba(190,186,174,1) 35%, rgba(238,233,210,1) 69%); */
  overflow: hidden;
  padding: 130px 80px;
}

.description {
  color: #fff;
  padding: 0 50px;
}

.description>h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 30px;
}

.gradient-text {
  /* background-image: linear-gradient(
    90deg,
    rgb(118, 167, 63) 0%,
    rgb(51, 143, 118) 40%,
    rgb(55, 141, 167) 50%,
    rgb(117, 152, 242) 70%,
    rgb(144, 118, 236) 100%
  );
  color: transparent; */
  background-size: contain;
  background-clip: text;
  -webkit-background-clip: text;

  color: var(--text-clr);
  font-size: var(--fs-64);
  font-weight: var(--fw-900);
}

.description>p {
  color: var(--text-clr);
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  max-width: max-content;
  background: linear-gradient(
    90deg,
    rgb(118, 167, 63) 0%,
    rgb(51, 143, 118) 40%,
    rgb(55, 141, 167) 50%,
    rgb(117, 152, 242) 70%,
    rgb(144, 118, 236) 100%
  );
  background-size: 200%;
  background-position: left;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  border: 0;
  padding: 12px 16px;
  border-radius: 5px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.btn:is(:hover, :focus-visible) {
  background-position: right;
} */

.users-color-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.item {
  max-width: 200px;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.5s linear 1 forwards;
  animation-delay: calc(0.2s * var(--i));
  opacity: 0;
  object-fit: cover;
  object-position: top center;
}

.item:nth-child(1) {
  background-color: #67d7e1;
  border-radius: 50% 50% 0 50%;
}

.item:nth-child(2) {
  border-radius: 50% 50% 0 0;
}

.item:nth-child(3) {
  background-color: #6cc164;
  border-radius: 50%;
}

.item:nth-child(4) {
  border-radius: 0 0 0 50%;
}

.item:nth-child(5) {
  border-radius: 0 50% 50% 0;
}

.item:nth-child(6) {
  background-color: #8071a8;
  border-radius: 0 50% 50% 50%;
}

.item:nth-child(7) {
  border-radius: 50% 50% 0 50%;
}

.item:nth-child(8) {
  background-color: #fe7519;
  border-radius: 50% 0 0 50%;
}

.item:nth-child(9) {
  background-color: #f5bec3;
  border-radius: 0 50% 50% 0;
}

.item:nth-child(10) {
  border-radius: 50%;
}

.item:nth-child(11) {
  background-color: #fcd659;
  border-radius: 50% 0 50% 50%;
}

.item:nth-child(12) {
  border-radius: 50% 0 0 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}



@media (max-width: 1015px) {
  .home {
    grid-template-columns: 45% 50%;
    gap: 50px;
    padding: 50px 50px;
  }
}

@media (max-width: 865px) {
  .home {
    grid-template-columns: 45% 50%;
    gap: 60px;
    padding: 130px 70px;
  }
}

@media (max-width: 815px) {
  .home {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "userscolorcontainer"
      "description";
    gap: 30px;
    padding: 90px 80px 70px;
  }

  .users-color-container {
    grid-area: userscolorcontainer;
  }

  .description {
    grid-area: description;
    padding: 0;
    text-align: center;
  }
}


@media (max-width: 460px) {
  .home {
    gap: 0;
    padding: 30px;
  }


}


/* small section */
.cta {
  /* background: rgb(238, 233, 210, 1);
  background: radial-gradient(circle, rgb(238, 233, 210, 1) 0%, rgb(190, 186, 174, 1) 100%); */
}

.cta .container {
  display: grid;
  gap: 30px;
  padding: 30px 30px;
}

.cta-card {
  background-color: var(--primary-clr);
  padding: 50px 30px 40px;
  color: var(--white);
  border-radius: var(--radius-50) 0;
}

.cta-card .card-title {
  color: var(--white);
  line-height: 1.3;
}

.cta-card .card-text {
  margin-block: 10px 30px;
}

.cta-card .btn:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--primary-clr);
}

.cta-banner {
  height: 260px;
  border-radius: 0 var(--radius-50);
  overflow: hidden;
  background-color: var(--bg1-clr);
}


/* brand_section */
.scroller {
  max-width: 1000px;
  margin-inline: auto;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}



.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg,
      transparent,
      white 20%,
      white 80%,
      transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.scroller[data-animated="true"]:hover .scroller__inner {
  animation-play-state: paused;
}


.logogrid {
  display: flex;
  flex-wrap: wrap;
  /* gap: 40px; */
  justify-content: center;
  align-items: center;
}

.logogrid_item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-inline: 20px;
}

.logogrid_img {
  object-fit: cover;
  max-width: 100px;
  max-height: 50px;
  filter: grayscale(0) contrast(100%);
  transition: filter .3s ease;
}

.logogrid_img:hover {
}

.image-gallery:has(img:hover) .logogrid_item:not(:hover),
.image-gallery1:has(img:hover) .logogrid_item:not(:hover) {
  scale: 0.8; filter: grayscale(100%) contrast(25%);
}


/* slider effect */
.table-view {
  display: table;
}

.table-view [class*="col-"] {
  float: none;
  display: table-cell;
  vertical-align: top;
  margin: 0;
  padding: 0;
}



.fullwidth [class^="col-"] {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.fullwidth {
  display: flex;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}

.fullwidth {
  width: 100%;
}


.box-service {
  /* background: #fff; */
}

#bg-box-service-1 {
  background: #141414;
}

#bg-box-service-2 {
  background: #191919;
}

#bg-box-service-3 {
  background: #1f1f1f;
}

#bg-box-service-4 {
  background: #1c1c1c;
}

#bg-box-service-5 {
  background: #1f1f1f;
}

#bg-box-service-6 {
  background: #1c1c1c;
}

#bg-box-service-7 {
  background: #161616;
}

#bg-box-service-8 {
  background: #191919;
}

.col-md-0 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .col-md-0 {
    width: 20%;
  }
}

@media (min-width: 992px) {
  .col-md-0 {
    /* float: left; */
  }
}

.bg-color-fx,
.bg-color-fx:hover,
.btn-arrow.hover-light:hover span.line {
  -o-transition: .3s;
  -ms-transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  transition: .3s;
}


.bg-color-fx:hover {
  background: rgba(12, 121, 227, .2);
}

.bg-color-fx:hover h3 {
  color: #fff;
}

.bg-color-fx .tiny-border {
  margin: 0 auto;
}

.padding-5 {
  padding: 50px;
}


.text-center {
  text-align: center;
}

.box-service {
  position: relative;
  overflow: hidden;
}

.box-service .box {
  overflow: hidden;
}

.box-service .box img {
  transition: transform 1s ease-in-out;
}

.box-service:hover .box img {
  transform: translateX(120%);
}

.box-service .box img:hover {
  transform: translateX(0);
}


.box:hover {
  /* transform: translateY(-15px); */
  color: azure;
}

.tiny-border {
  background-color: #82c33e;
}

.tiny-border {
  clear: both;
  width: 40px;
  height: 3px;
  background: #D03232;
  margin: 20px 0 20px 0;
}

.tiny-border.center {
  margin: 20px auto 20px auto;
}

.tiny-border.white {
  background: #fff;
}

.margintop10 {
  margin-top: 10px !important;
}

.marginbottom10 {
  margin-bottom: 10px !important;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.margintop20 {
  margin-top: 20px !important;
}

.marginbottom20 {
  margin-bottom: 20px !important;
}


/* contact form */
.ac {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.csection {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 90%;
  max-width: 550px;
  margin-inline: auto;
  margin-top: 2em;
}


.heading {
  /* margin-bottom: .5em;
  font-weight: bold; */
}

.heading {
  /* font-size: 2.5em; */
}

.sub-heading {
  text-align: left;
}

.contactForm {
  display: grid;
  gap: 3em;
}

#cform {
  width: 100%;
  margin-top: 3em;
}

.para {
  color: var(--text-clr);
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-bottom: 1em;
  font-weight: 600;
}

.para2 {
  text-align: left;
}

.input {
  width: 100%;
  /* max-width: 700px; */
  border: none;
  font-size: 1.6rem;
  padding: 15px 15px;
  outline: none;
  color: black;
  box-shadow: inset 0 0 0 1px var(--text-clr);
  /* background-color: var(--black); */
  border-radius: 10px;
  /* border: 1px solid rgb(53, 53, 53); */
  margin-bottom: 1em;

}

.input:focus {
  border: 1px solid var(--primary-clr);
  background-color: var(--black);
  color: white;

}

.input::placeholder {
  text-transform: capitalize;
  color: rgb(54, 54, 54);
  font-size: 1.2rem;
}


.map-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.mapBg {
  position: absolute;
  background-color: var(--primary-clr);
  top: 0;
  right: 0;
  width: 200px;
  height: 90%;
  border-radius: 20px;
}

.map {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 90%;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.contactMethod {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
  text-align: left;
}

.contactMethod ion-icon {
  font-size: x-large;
}

.method {
  display: flex;
  align-items: center;
}

textarea {
  resize: none;
  background-color: transparent;
}

@media screen and (min-width:800px) {
  .csection {
    max-width: 1200px;
  }

  .contactForm {
    grid-template-columns: 1fr 1fr;
  }

  .contactMethod {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* footer */
/* afreen */
.footer {
  background: #000;
  padding-top: 30px;
  text-align: center;
}

.footer div:first-child {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
    column-gap: 20px;
}

.footer .row {
  width: 100%;
  margin: 1% 0%;
  padding: 0.6% 0%;
  color: #c1c1c1;
  font-size: 0.8em;
}

.footer .row:last-child a {
  display: inline-block;
}

.footer .row:last-child {
  text-align: center;
  margin: 0;
}

.footer .flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer .hr {
  border-bottom: 1px solid;
}

.footer .row a {
  text-decoration: none;
  color: #c1c1c1;
  transition: 0.5s;
}

.footer .row a:hover {
  color: #fff;
}

.footer .row .fbody {
  width: 100%;
}

.footer .row .fbody div {
  display: inline-block;
  margin: 0px 30px;
}

.footer .row a ion-icon {
  font-size: 2em;
  margin: 0% 1%;
}

@media (max-width:720px) {
  .footer {
    text-align: left;
    padding: 5%;
  }

  .footer .row .fbody div {
    display: block;
    margin: 10px 0px;
    text-align: left;
  }

  .footer .row a ion-icon {
    margin: 0% 3%;
  }
}


/* testimony-section */

/* separate stylings */

.testimony-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 4rem 2rem;
}

.testimony-card {
  padding: 1.75rem;
  border-radius: 0.5em;
  box-shadow: 1em 1em 2em rgb(0 0 0/ 0.2);
  background-color: var(--White);
  transition: transform 200ms ease-in-out;
}

.testimony-card:hover {
  transform: scale(1.03);
}

.testimony-one {
  background-color: hsl(0deg 65.86% 24.21%);
  position: relative;
  isolation: isolate;
}

.quotation-icon {
  position: absolute;
  top: 0;
  right: 2rem;
  z-index: -1;
}

.testimony-two {
  background-color: var(--Very-dark-grayish-blue);
}

.testimony-four {
  background-color: var(--Very-dark-blackish-blue);
}

.testimony__user {
  display: flex;
  align-items: center;
}

.content__title {
  font-size: large;
}

.content__detail {
  font-size: smaller;
  margin-top: 1rem;
  line-height: 1.5em;
}

.user__img {
  width: 2.5em;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid hsla(0, 0%, 81%, 50%);
}

.user__info {
  margin-left: 0.85rem;
  color: var(--Light-grayish-blue);
}

.user__title {
  opacity: 50%;
}

.testimony__content {
  margin-top: 1rem;
  color: var(--Light-grayish-blue);
}


.bg-light .user__info {
  color: var(--Very-dark-grayish-blue);
}

.bg-light .testimony__content {
  color: var(--Very-dark-grayish-blue);
}


/* media queries */

@media (min-width: 600px) {
  .testimony-section {
    margin: 4rem auto;
    max-width: 600px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "one one"
      "two three"
      "four four"
      "five five";
  }

  .testimony-one {
    grid-area: one;
  }

  .testimony-two {
    grid-area: two;
  }

  .testimony-three {
    grid-area: three;
  }

  .testimony-four {
    grid-area: four;
  }

  .testimony-five {
    grid-area: five;
  }
}

.t-heading {
  text-align: center;
  margin-top: 30px;
}
.text-wrap{
  text-wrap: nowrap;
}
@media (min-width: 1000px) {
  .testimony-section {
    margin-bottom: 4rem;
    max-width: 1350px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "one one"
    "two three"
    "four four"
    "five five";
}
}


/*  */