@font-face {
  font-family: ClashGrotesk-Medium;
  src: url(./font/ClashDisplay-Medium.otf);
}

@font-face {
  font-family: ExtraLight;
  src: url(./font/Inter-ExtraLight.ttf);
}

@font-face {
  font-family: Medium;
  src: url(./font/Inter-Medium.ttf);
}

@font-face {
  font-family: Regular;
  src: url(./font/Inter-Regular.ttf);
}

@font-face {
  font-family: LamaSans-Medium;
  src: url(./font/Standard/LamaSans-Medium.otf);
}

@font-face {
  font-family: ExtraLight;
  src: url(./font/Inter-ExtraLight.ttf);
}

@font-face {
  font-family: Medium;
  src: url(./font/Inter-Medium.ttf);
}

@font-face {
  font-family: Regular;
  src: url(./font/Inter-Regular.ttf);
}

@font-face {
  font-family: LamaSans-Medium;
  src: url(./font/Standard/LamaSans-Medium.otf);
}

@font-face {
  font-family: LamaSans-ExtraLight;
  src: url(./font/Standard/LamaSans-ExtraLight.otf);
}

@font-face {
  font-family: LamaSans-Regular;
  src: url(./font/Standard/LamaSans-Regular.otf);
}

:root {
  /* colors */
  --clr-black: 0, 0%, 0%;
  --clr-white: 0, 0%, 100%;
  --clr-red: 6, 100%, 60%;

  /* fonts-------------- */
  --ff-ClashGrotesk: ClashGrotesk-Medium;
  --ff-Inter-l: ExtraLight;
  --ff-Inter-m: Medium;
  --ff-Inter-r: Regular;

  /* vars--------------- */
  --text-shadow: 1px 1px 5.5px hsl(var(--clr-red), 0.75);
}

*,
*::after,
*::before {
  box-sizing: border-box;
  outline: 0;
  border: 0;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* cange color of highlight */
::selection {
  background-color: hsl(var(--clr-red), 0.5);
  color: hsl(var(--clr-black));
}

/* -------------------------*/
html,
body {
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

html::-webkit-scrollbar {
  width: 0.5em;
}

html::-webkit-scrollbar-track {
  background: hsl(var(--clr-black));
}

html::-webkit-scrollbar-thumb {
  background: hsl(var(--clr-red));
  border-radius: 5em;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.4;
  color: hsl(var(--clr-white));
  background: hsl(var(--clr-black));
  font-family: var(--ff-Inter-m);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

section {
  padding: 2em 7%;
}

img {
  max-width: 100%;
  display: block;
  object-fit: contain;
  /* vertical-align: middle; */
}

a {
  color: hsl(var(--clr-white), 0.5);
}

.fade-page {
  animation: fadePage 1s;
}

@keyframes fadePage {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* -----------button curser */
.btn {
  cursor: pointer;
  border: 0;
  background: transparent;
}

.btn:active {
  transform: scale(0.95);
}

.btn:focus {
  transform: scale(0.95);
}

/* -------------------------*/
/* screen reader only */
.sr--only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------header------------------- */
.header {
  background: hsl(var(--clr-black));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 4.5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.about .header,
.work .header {
  background: transparent;
}

.header .logo {
  width: 95px;
}

.header .nav-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header .nav-content .navbar a {
  margin: 0 1rem;
  font-size: 1.4rem;
  color: hsl(var(--clr-white));
  font-family: var(--ff-Inter-r);
  padding-bottom: 0.5em;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.header .navbar a:hover {
  padding-bottom: 0.3em;
  border-bottom: 1.5px solid hsl(var(--clr-red), 0.75);
}

.header .icons {
  display: flex;
  align-items: center;
}

.header .icons>* {
  cursor: pointer;
  margin-left: 4em;
}

.header .icons .lang {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 0.1rem;
  font-family: var(--ff-Inter-r);
}

.header .icons .lang li {
  text-decoration: none;
  list-style: none;
  padding: 0 0.2em;
  font-size: 1.4rem;
  color: hsl(var(--clr-white), 0.5);
}

.header .icons .lang li a {
  transition: 0.35s ease-in-out;
}

.header .icons .lang li.active a {
  color: hsl(var(--clr-white));
}

.header .icons .lang li a:hover {
  color: hsl(var(--clr-red));
  text-shadow: var(--text-shadow);
}

.header .icons .contact-btn {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 0.8em;
  background: transparent;
  color: hsl(var(--clr-white));
  border: 0.1rem solid hsl(var(--clr-red));
  width: 10.5em;
  font-size: 1.4rem;
  font-family: var(--ff-Inter-m);
  transition: 0.2s linear;
}

.header .icons .contact-btn:hover {
  box-shadow: 1px 1px 12.5px hsl(var(--clr-red), 0.75);
}

.header .icons .contact-btn a {
  color: hsl(var(--clr-white));
}

.header .icons .contact-btn img {
  transition: 0.2s linear;
}

.header .icons .contact-btn:hover img {
  width: 11.8px;
  -webkit-animation: rotate-btn 1s linear;
  animation: rotate-btn 1s linear;
}

#menu-btn {
  display: none;
}

/* ----------------------header------------------- */
/* ---------------------home section---------------- */
.home {
  height: 100vh;
  position: relative;
  padding-top: 20.5em;
  padding-bottom: 3.5em;
}

.home .right-sec {
  min-height: 675px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
}

.home .main-bg {
  position: absolute;
  bottom: 150px;
  right: 0;
  z-index: 1;
  width: 1150px;
  height: 400px;
  background-image: url("./img/bulding-2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-attachment: fixed;
  text-align: center;
}

.home .right-sec .text .main-title {
  font-size: 6rem;
  letter-spacing: 2px;
  font-family: var(--ff-ClashGrotesk);
  max-width: 750px;
  z-index: 5;
}

.home .right-sec .text .description {
  max-width: 425px;
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-family: var(--ff-Inter-l);
  color: hsl(var(--clr-white), 0.5);
  margin-top: 2.5em;
}

.home .mine-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.home .mine-footer .arrow-down {
  width: 105px;
  transition: 0.2s linear;
}

.home .mine-footer .arrow-down:hover {
  -webkit-animation: rotate-btn 1s linear;
  animation: rotate-btn 1s linear;
  filter: drop-shadow(1px 1px 5px hsl(var(--clr-red)));
}

.home .mine-footer .scroll-down {
  font-size: 1.5rem;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    color: hsl(var(--clr-white), 0.5);
    transform: translateY(0);
  }

  50% {
    color: hsl(var(--clr-white));
    transform: translateY(5px);
  }

  100% {
    color: hsl(var(--clr-white), 0.5);
    transform: translateY(0);
  }
}

.home .mine-footer .red {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.home .mine-footer .red li {
  padding: 0 0.35em;
  color: hsl(var(--clr-white), 0.75);
  font-size: 1.5rem;
}

.home .mine-footer .red li a {
  color: hsl(var(--clr-red));
}

.home .mine-footer .red li a:hover {
  text-shadow: var(--text-shadow);
}

/* ---------------------home section---------------- */

/* ---------------------about section---------------- */
.about {
  position: relative;
  min-height: 100vh;
}

.about .gray-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: hsl(var(--clr-white), 0.125);
  z-index: -1;
}

.about-bg .about .gray-bg,
.work .about .gray-bg {
  height: 1000px;
}

.who {
  padding-top: 10em;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.about-bg .about .who {
  padding-top: 17.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  position: relative;
}

.work .who {
  padding-top: 17.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  position: relative;
}

.who .q,
.about .services .intro .line-1,
.clients .content .our,
.testimonials .left .line-1 {
  font-size: 1.35rem;
  color: hsl(var(--clr-red));
  font-family: var(--ff-Inter-r);
}

.who .a {
  font-size: 3.25rem;
  margin-left: auto;
  margin-right: auto;
  width: 75.5%;
  letter-spacing: 0.2px;
  font-family: var(--ff-Inter-r);
  padding-bottom: 2.5em;
}

.work .who .t {
  font-size: 3.25rem;
  margin-left: auto;
  margin-right: auto;
  width: 75.5%;
  letter-spacing: 0.2px;
  font-family: var(--ff-Inter-r);
  padding-bottom: 2.5em;
}

.work .who .splide__slide {
  text-align: left;
  padding-top: 3em;
}

.work .who .splide__slide .l-title {
  display: flex;
  align-items: center;
  font-size: 2.25rem;
  font-family: var(--ff-Inter-m);
  padding-bottom: 1.5em;
}

.work .who .splide__slide .l-title span {
  color: hsl(var(--clr-red));
  padding-right: 1em;
}

.work .who .splide__slide ul {
  padding-left: 5.5em;
}

.work .who .splide__slide ul li {
  list-style-type: none;
  font-family: var(--ff-Inter-r);
  font-size: 2rem;
  color: hsl(var(--clr-white), 0.75);
  padding-bottom: 0.35em;
}

.work .who .splide__slide ul li::before {
  content: "\2022";
  color: hsl(var(--clr-red));
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.work .who .splide__slide .work-img {
  width: 100%;
  height: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7.5em;
}

.work .who .splide__slide .work-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.work .who .splide__arrow {
  background: transparent;
  opacity: 1;
  top: 0%;
  right: 0;
  width: 5em;
  font-size: 0.86rem;
  padding: 1.25em;
  height: 5em;
  background: hsl(var(--clr-white), 0.1);
  transform: translateY(0%);
  display: inline-block;
  font-weight: 100;
  transition: 0.3s linear;
}

.work .who .splide__arrow:hover {
  background: hsl(var(--clr-red));
}

.work .who .splide__arrow--prev {
  left: unset;
  right: 6.5em;
}

.work .who .splide__arrow .about .about-img {
  margin-left: auto;
  margin-right: auto;
  margin: 10em 3.5em;
  height: 400px;
  background-image: url("./img/about.gif");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  background-attachment: fixed;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 15;
}

.about .about-img {
  margin-left: auto;
  margin-right: auto;
  margin: 0em 3.5em 10em 3.5em;
  height: 400px;
  background-image: url("./img/about-2.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  background-attachment: fixed;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 15;
}

.about-bg .about .about-img {
  background-image: url("./img/about-2.jpg");
}

.about .cards {
  width: 100%;
  padding: 0 3.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about .cards>* {
  background-color: hsl(var(--clr-white), 0.125);
  padding: 4em 2em;
  width: 48.5%;
  height: 250px;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}

.about .cards>* .right {
  width: 70%;
}

.about .cards>* .right .title {
  font-size: 3rem;
  font-family: var(--ff-Inter-m);
}

.about .cards>* .right .par {
  font-family: var(--ff-Inter-r);
  font-size: 1.5rem;
  color: hsl(var(--clr-white), 0.75);
  padding: 2em 0;
  width: 80%;
}

.about .cards>* .left img {
  width: 75px;
  transition: 0.2s linear;
}

.about .cards>* .left img:hover {
  filter: drop-shadow(1px 1px 5px hsl(var(--clr-red), 0.75));
}

.about .cards .vision .right .link {
  display: flex;
  color: hsl(var(--clr-red));
  cursor: pointer;
  width: 180px;
}

.about .cards .vision .right .link img {
  width: 12.5px;
  margin-left: 0.5em;
}

.about .cards .vision .right .link:hover img {
  -webkit-animation: rotate-btn 1s linear;
  animation: rotate-btn 1s linear;
}

.about .cards .vision .right .link a {
  color: hsl(var(--clr-red));
  font-family: var(--ff-Inter-r);
  font-size: 1.7rem;
  border-bottom: 1px solid hsl(var(--clr-red));
}

.about .services {
  padding-top: 17.5em;
}

.about .services .intro,
.about .services .list {
  margin: 0em 3.5em;
}

.about .services .intro .line-2,
.clients .content .big-title {
  font-family: var(--ff-Inter-m);
  font-size: 3rem;
  padding: 0.7em 0;
}

.about .services .intro .line-3,
.about .services .intro .line-4 {
  font-family: var(--ff-Inter-r);
  font-size: 2rem;
  color: hsl(var(--clr-white), 0.65);
  padding: 0.5em 0;
  width: 45%;
}

.about .services .list {
  padding-top: 10em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.about .services .list>div {
  width: 49%;
}

.about .services .list>div .node {
  border-top: 1px solid hsl(var(--clr-white), 0.5);
  padding: 2em 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about .services .list>div .node .r {
  display: flex;
  align-items: center;
}

.about .services .list>div .node .r .num {
  color: hsl(var(--clr-red));
  font-size: 1.2rem;
  padding-right: 2.75em;
}

.about .services .list>div .node .r .name {
  font-size: 2.15rem;
}

.about .services .list>div .node .l img {
  width: 25px;
  margin-right: 1em;
}

.about .services .list>div .node:hover .l img {
  filter: drop-shadow(0.5px 0.5px 5px hsl(var(--clr-red)));
}

.about .services .list>div .node:hover .l img {
  -webkit-animation: rotate-btn 1s linear;
  animation: rotate-btn 1s linear;
}

.about-bg .about .Values {
  width: 100%;
  padding: 0 3.5em;
  margin-top: 10em;
}

.about-bg .about .Values .title {
  font-size: 1.5rem;
  color: hsl(var(--clr-red));
  font-family: var(--ff-Inter-r);
}

.about-bg .about .Values .values-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10em;
  padding-top: 2.5em;
}

.about-bg .about .Values .values-list .icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s linear;
}

.about-bg .about .Values .values-list .icon:hover img {
  filter: drop-shadow(1px 1px 10px hsl(var(--clr-red)));
}

.about-bg .about .Values .values-list .icon .icon-name {
  color: hsl(var(--clr-white), 0.5);
  font-family: var(--ff-Inter-r);
  font-size: 1.3em;
  padding-top: 1em;
  transition: 0.3s linear;
}

.about-bg .about .Values .values-list .icon:hover .icon-name {
  color: hsl(var(--clr-red));
  text-shadow: 2px 2px 10px hsl(var(--clr-white), 0.85);
}

/* ---------------------about section---------------- */

/* ---------------------client section---------------- */
.clients {
  width: 100%;
  background-color: hsl(var(--clr-white), 0.125);
  z-index: -1;
  margin-top: 10em;
}

.clients .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7em;
}

.clients .content .big-title {
  margin-bottom: 1.75em;
}

.clients .content .splide {
  width: 80%;
  padding-bottom: 10em;
}

.clients .content .splide .splide__slide .box {
  width: 200px;
  height: 120px;
  background-color: hsl(var(--clr-white), 0.225);
}

.clients .content .splide .splide__pagination .is-active {
  background-color: hsl(var(--clr-red));
}

/* ---------------------client section---------------- */

/* ---------------------testimonial section---------------- */
.testimonials {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 17.25em;
  margin-top: 10em;
}

.testimonials .left {
  width: 35%;
}

.testimonials .right {
  width: 60%;
}

.testimonials .left .line-2 {
  font-family: var(--ff-ClashGrotesk);
  font-size: 5rem;
  padding: 0.5em 0;
}

.testimonials .left .line-3 {
  font-family: var(--ff-Inter-r);
  font-size: 1.8rem;
  line-height: 1.65em;
  color: hsl(var(--clr-white), 0.65);
  padding-bottom: 3.5em;
}

.testimonials .left .line-4 {
  display: flex;
  align-items: center;
}

.testimonials .left .line-4 a {
  color: hsl(var(--clr-red));
  font-family: var(--ff-Inter-r);
  font-size: 1.7rem;
  border-bottom: 1px solid hsl(var(--clr-red));
  cursor: pointer;
  transition: 0.2s linear;
}

.testimonials .left .line-4 img {
  width: 12.5px;
  margin-left: 0.5em;
}

.testimonials .left .line-4:hover img {
  -webkit-animation: rotate-btn 1s linear;
  animation: rotate-btn 1s linear;
}

.testimonials .right {
  border: 1px solid hsl(var(--clr-white), 0.2);
  padding: 5em 8em;
}

.testimonials .right #primary-slider .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonials .right #primary-slider .splide__slide .name {
  color: hsl(var(--clr-red));
  font-size: 1.3rem;
  padding-bottom: 0.65em;
}

.testimonials .right #primary-slider .splide__slide .jop {
  font-family: var(--ff-Inter-r);
  font-size: 1.25rem;
  color: hsl(var(--clr-white), 0.75);
}

.testimonials .right .splide__slide .big-t {
  font-family: var(--ff-Inter-m);
  font-size: 3rem;
}

.testimonials .right .splide__slide .card-p {
  font-family: var(--ff-Inter-l);
  font-size: 1.45rem;
  padding: 2em 2.5em;
}

.testimonials .right #secondary-slider .splide__arrow {
  background: transparent;
  border-radius: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  opacity: 1;
  padding: 0;
  z-index: 1;
  color: hsl(var(--clr-white));
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(122deg) brightness(98%) contrast(101%);
  font-size: 1rem;
}

.testimonials .right #secondary-slider .splide__arrow.splide__arrow--prev {
  left: 1em;
  right: auto;
}

.testimonials .right #secondary-slider .splide__arrow.splide__arrow--next {
  left: auto;
  right: 1em;
}

.testimonials .right #secondary-slider .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.testimonials .right #secondary-slider .splide__slide.is-visible.is-active {
  transform: scale(1.3);
}

.testimonials .right #secondary-slider .splide__track--nav>.splide__list>.splide__slide .user {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials .right #secondary-slider .splide__track--nav>.splide__list>.splide__slide .user img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: opacity(50%) grayscale(100%);
  transition: 0.2s linear;
}

.testimonials .right #secondary-slider .splide__track--nav>.splide__list>.splide__slide.is-active .user img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: opacity(100%) grayscale(0%);
  transition: 0.5s linear;
}

/* ---------------------testimonial section---------------- */

/* ---------------------reach section---------------- */
.reach {
  margin: 0 17.25em;
  background-color: hsl(var(--clr-red));
  background-image: url("./img/rectangle.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5em 5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20em;
}

.reach .le {
  width: 35%;
}

.reach .ri {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reach .le .big-header {
  font-size: 5rem;
  letter-spacing: 1.5px;
  margin-top: -0.7em;
  font-family: var(--ff-ClashGrotesk);
}

.reach .le button {
  background: transparent;
  color: hsl(var(--clr-white));
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 165px;
  border: 1px solid hsl(var(--clr-white), 0.5);
  padding: 0.5em 1em;
  margin-top: 2em;
  font-size: 1.5rem;
}

.reach .le button:hover img {
  -webkit-animation: rotate-btn 1s linear;
  animation: rotate-btn 1s linear;
}

.reach .ri {
  height: 275px;
}

.reach .ri .up img {
  width: 100px;
  margin-left: auto;
}

.reach .ri .up img:hover {
  -webkit-animation: rotate-btn 1s linear;
  animation: rotate-btn 1s linear;
}

.reach .ri .down .par {
  font-size: 1.3rem;
  line-height: 2.5em;
  font-family: var(--ff-Inter-l);
  width: 380px;
}

/* ---------------------reach section---------------- */

/* ---------------------contact section---------------- */
.contact-us-page {
  margin: 15em 3.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-us-page .contact-title {
  font-family: var(--ff-Inter-m);
  font-size: 1.75rem;
  color: hsl(var(--clr-red));
  padding-bottom: 0.8em;
}

.contact-us-page .contact-intro {
  font-family: var(--ff-Inter-m);
  font-size: 3rem;
  color: hsl(var(--clr-white));
  padding-bottom: 0.8em;
}

.contact-us-page form {
  width: 100%;
}

.contact-us-page form .form-control {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2em;
}

.contact-us-page form .form-control>input {
  font-family: var(--ff-Inter-m);
  width: 49%;
  padding: 1em;
  font-size: 1.65rem;
  height: 3.5em;
  background: transparent;
  border: 2px solid hsl(var(--clr-white), 0.7);
  color: hsl(var(--clr-white), 0.5);
}

.contact-us-page form .form-control textarea {
  font-family: var(--ff-Inter-m);
  width: 100%;
  padding: 1em;
  font-size: 1.65rem;
  height: 10em;
  background: transparent;
  border: 2px solid hsl(var(--clr-white), 0.7);
  color: hsl(var(--clr-white), 0.5);
}

.contact-us-page form .form-control .contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 0.8em;
  background: transparent;
  color: hsl(var(--clr-white));
  border: 0.1rem solid hsl(var(--clr-red));
  width: 10.5em;
  font-size: 1.4rem;
  font-family: var(--ff-Inter-m);
  transition: 0.2s linear;
}

.contact-us-page form .form-control .contact-btn:hover img {
  -webkit-animation: rotate-btn 1s linear;
  animation: rotate-btn 1s linear;
}

/* ---------------------contact section---------------- */

/* ---------------------footer section---------------- */
.footer {
  margin: 15em 17.5em 10em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  outline: 1;
}

.footer .bec {
  width: 30%;
  cursor: pointer;
}

.footer .bec .rights {
  font-family: var(--ff-Inter-r);
  font-size: 1.2rem;
  color: hsl(var(--clr-white), 0.5);
  padding: 2.35em 0;
}

.footer .bec .terms {
  font-family: var(--ff-Inter-r);
  font-size: 1.2rem;
  line-height: 1.85em;
  color: hsl(var(--clr-white), 0.5);
}

.footer .bec .terms a {
  color: hsl(var(--clr-white));
  border-bottom: 1px solid hsl(var(--clr-white));
  cursor: pointer;
}

.footer .contact {
  display: flex;
}

.footer .contact>ul {
  list-style: none;
}

.footer .contact>ul:not(:last-child) {
  padding-right: 6.5em;
}

.footer .contact>ul li {
  font-family: var(--ff-Inter-r);
  font-size: 1.5rem;
  color: hsl(var(--clr-white));
  padding-bottom: 0.5em;
}

.footer .contact>ul li a {
  cursor: pointer;
}

.footer .contact>ul .lable {
  font-family: var(--ff-Inter-r);
  font-size: 1.1rem;
  color: hsl(var(--clr-white), 0.5);
  padding-bottom: 1.5em;
}

.footer .contact-btn {
  cursor: pointer;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 0.8em;
  background: transparent;
  color: hsl(var(--clr-white));
  border: 0.1rem solid hsl(var(--clr-red));
  width: 10.5em;
  font-size: 1.4rem;
  font-family: var(--ff-Inter-m);
  transition: 0.2s linear;
}

.footer .contact-btn:hover img {
  width: 11.8px;
  -webkit-animation: rotate-btn 1s linear;
  animation: rotate-btn 1s linear;
}

@keyframes rotate-btn {
  0% {
    transform: rotate(0);
  }

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

/* ---------------------footer section---------------- */

/* media queries  */
@media (max-width: 1550px) {
  html::-webkit-scrollbar {
    width: 0.35em;
  }

  section {
    padding: 2em 12.5em;
  }

  /* --------------------navbar------------ */
  .header {
    padding: 3em 4em;
  }

  .header .logo {
    width: 6.5em;
  }

  .header .nav-content .navbar a {
    font-size: 1.3rem;
    margin: 0 1.3rem;
  }

  /* --------------------navbar------------ */
  /* --------------------home------------ */
  .home {
    padding-top: 15.5em;

    padding-bottom: 5.5em;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100vh;
  }

  .home .right-sec {
    min-height: 40%;
  }

  .home .main-bg {
    bottom: 125px;
    width: 92.5em;
    height: 30.5em;
    background-position: bottom;
  }

  .home .right-sec .text .main-title {
    font-size: 4.5rem;
    max-width: 650px;
    letter-spacing: 0;
  }

  .home .right-sec .text .description {
    max-width: 260px;
    padding-top: 2.5em;

    font-size: 1.1rem;
    color: hsl(var(--clr-white), 0.65);
  }

  .home .mine-footer {
    margin-top: 12.5em;
  }

  .home .mine-footer .arrow-down {
    width: 8em;
  }

  .home .mine-footer .scroll-down {
    font-size: 1.3rem;
  }

  .home .mine-footer .red li {
    padding: 0 0.5em;

    font-size: 1.3rem;
  }

  .home .mine-footer .red li a {
    color: hsl(var(--clr-red));
  }

  /* --------------------home------------ */
  /* ---------------------about section---------------- */
  .about .gray-bg {
    background-color: hsl(var(--clr-white), 0.125);
  }

  .who {
    padding-top: 6.5em;
  }

  .who .q,
  .about .services .intro .line-1,
  .clients .content .our,
  .testimonials .left .line-1 {
    font-size: 1.2rem;
  }

  .about-bg .about .who .a {
    width: 100%;
  }

  .who .a {
    font-size: 2.35rem;
    margin-left: unset;

    padding-left: 3em;

    letter-spacing: 0px;
    padding-bottom: 3.25em;
    width: 70.5%;
  }

  .about-bg .about-img {
    margin: 0em 0em 7em 0em;

    height: 325px;
    background-position: center;
  }

  .about .cards {
    padding: 0;
  }

  .about .cards>* {
    padding: 3em 1.5em;
    width: 47%;
  }

  .about .cards>* .right .par {
    font-size: 1.35rem;
    width: 70%;
  }

  .about .cards .vision .right .link img {
    width: 10.5px;
    margin-left: 2em;
  }

  .about .cards .vision .right .link a {
    font-size: 1.3rem;
  }

  .about .services {
    padding-top: 10.5em;
  }

  .about .services .intro,
  .about .services .list {
    margin: 0em;
  }

  .about .services .intro .line-2,
  .clients .content .big-title {
    padding: 0.5em 0;
  }

  .about .services .intro .line-3,
  .about .services .intro .line-4 {
    font-size: 1.35rem;
    color: hsl(var(--clr-white), 0.75);
    padding: 0.5em 0 1em;
    width: 40%;
  }

  .about .services .list {
    padding-top: 7em;
  }

  .about .services .list>div .node {
    border-top: 1px solid hsl(var(--clr-white), 0.75);
  }

  .about .services .list>div .node .r .num {
    font-size: 1rem;
    padding-right: 2.5em;
  }

  .about .services .list>div .node .r .name {
    font-size: 2rem;
  }

  /* ---------------------about section---------------- */
  /* ---------------------client section---------------- */
  .clients .content .splide .splide__slide .box {
    height: 80px;
    width: 150px;
    background-color: hsl(var(--clr-white), 0.125);
  }

  /* ---------------------client section---------------- */
  /* ---------------------testimonial section---------------- */
  .testimonials {
    margin: 0;

    margin-top: 7em;
  }

  .testimonials .right {
    width: 55%;
    padding: 5em 8em;
  }

  .testimonials .left .line-2 {
    font-size: 3.5rem;
    padding: 0.3em 0 1em;
  }

  .testimonials .left .line-3 {
    font-size: 1.5rem;
    color: hsl(var(--clr-white), 0.75);
    padding-bottom: 4em;
  }

  .testimonials .left .line-4 a {
    font-size: 1.3rem;
  }

  .testimonials .left .line-4 img {
    width: 10.5px;
    margin-left: 1.5em;
  }

  .testimonials .right .splide__slide .big-t {
    font-size: 2.5rem;
  }

  .testimonials .right .splide__slide .card-p {
    font-size: 1.4rem;
  }

  .testimonials .right #secondary-slider .splide__slide.is-visible.is-active {
    transform: scale(1.25);
  }

  /* ---------------------testimonial section---------------- */
  /* ---------------------reach section---------------- */
  .reach {
    margin: 0 12.5em;

    margin-top: 10em;
  }

  .reach .le .big-header {
    font-size: 4rem;
    letter-spacing: 0px;
  }

  .reach .ri {
    height: 23.5em;
  }

  .reach .ri .down .par {
    font-size: 1.1rem;
    width: 350px;
  }

  /* ---------------------reach section---------------- */
  /* ---------------------footer section---------------- */
  .footer {
    margin: 10em 0 5em;
  }

  .footer .bec img {
    width: 70px;
  }

  .footer .bec .rights {
    font-size: 1.1rem;
    color: hsl(var(--clr-white), 0.75);
    padding: 2em 0;
  }

  .footer .bec .terms {
    font-size: 1.1rem;
    line-height: 1.5em;
  }

  .footer .contact>ul li {
    font-size: 1.3rem;
    padding-bottom: 0.3em;
  }

  .footer .contact>ul .lable {
    font-size: 1.1rem;
    padding-bottom: 1em;
  }

  /* ---------------------footer section---------------- */

  .about-bg .about .gray-bg,
  .work .about .gray-bg {
    height: 655px;
  }

  .work .who {
    padding-top: 10.5em;
  }

  .work .who .t {
    font-size: 2.5rem;
    width: 100%;
    letter-spacing: 0px;
    padding-bottom: 1em;
  }

  .work .who .splide__slide {
    padding-top: 1.5em;
  }

  .work .who .splide__slide .l-title {
    font-size: 2rem;
    padding-bottom: 1em;
  }

  .work .who .splide__slide .l-title span {
    padding-right: 0.75em;
  }

  .work .who .splide__slide ul {
    padding-left: 3.5em;
  }

  .work .who .splide__slide ul li {
    font-size: 1.5rem;
    padding-bottom: 0.5em;
  }

  .work .who .splide__slide .work-img {
    height: 550px;
    margin-top: 5.5em;
  }

  .work .who .splide__arrow {
    width: 4.5em;
    height: 4.5em;
  }

  .contact-us-page form .form-control {
    width: 100%;
  }
}

@media (max-width: 1350px) {
  section {
    padding: 2em 10.5em;
  }

  /* ---------------------home section---------------- */
  .home {
    padding-top: 0em;

    background-attachment: scroll;
    height: 650px;
  }

  .home .right-sec .text .main-title {
    font-size: 3.75rem;
    max-width: 100%;
    letter-spacing: 0;
  }

  .home .img-container {
    width: 100%;
    height: 60%;
    overflow: hidden;
  }

  .home .main-bg {
    position: relative;
    background-position: top;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    bottom: 0px;
  }

  .home .mine-footer .arrow-down {
    width: 5.5em;
  }

  .home .mine-footer {
    margin-top: 7em;
  }

  /* ---------------------home section---------------- */

  /* ---------------------about section---------------- */

  .about .about-img {
    position: relative;
    background-attachment: scroll;
    height: 150px;
  }

  .about .cards>* {
    height: 245px;
  }

  .who .a {
    font-size: 2rem;
  }

  .about .cards>* .right .par {
    width: 100%;
  }

  .about .cards>* .right .title {
    font-size: 2.5rem;
  }

  .about .services .intro .line-3,
  .about .services .intro .line-4 {
    width: 60%;
  }

  .testimonials .left .line-2 {
    font-size: 2.5rem;
  }

  /* ---------------------about section---------------- */
  /* ---------------------client section---------------- */
  .clients .content .big-title {
    font-size: 2.5rem;
    margin-bottom: 1.5em;
  }

  /* ---------------------client section---------------- */
  /* ---------------------reach section---------------- */
  .reach .le .big-header {
    font-size: 3rem;
    padding-top: 0.5em;
  }

  .reach .ri .up img {
    width: 70px;
  }

  /* ---------------------reach section---------------- */

  .about-bg .about .about-img {
    height: 350px;
  }
}

@media (max-width: 1300px) {
  .work .splide.is-initialized {
    width: 880px;
  }
}

@media (max-width: 1100px) {
  section {
    padding: 2em 3.5%;
  }

  /* ---------------------about section---------------- */

  .who {
    padding-top: 4.5em;
  }

  .work .splide.is-initialized {
    width: 680px;
  }

  .about .about-img {
    height: 225px;
  }

  .about .services {
    padding-top: 5em;
  }

  /* ---------------------about section---------------- */
  .clients {
    margin-top: 5em;
  }

  .clients .content .splide .splide__slide .box {
    height: 60px;
    width: 100px;
  }

  .testimonials {
    margin-top: 5em;
  }

  .reach {
    margin: 0 3.5%;

    margin-top: 5em;
  }

  .footer .contact>ul:not(:last-child) {
    padding-right: 4.5em;
  }
}

@media (max-width: 991px),
(max-height: 500px) {
  html {
    font-size: 55%;
  }

  .header .logo {
    width: 75px;
  }

  .home .right-sec .text .description {
    max-width: 60%;
    padding-top: 1em;

    font-size: 1.5rem;
    color: hsl(var(--clr-white), 0.65);
  }

  .about .cards {
    flex-direction: column;
  }

  .about .cards>* {
    width: 100%;
    margin-bottom: 2em;
  }

  .about .cards>* {
    height: 185px;
  }

  .about .services .list {
    flex-direction: column;
  }

  .about .services .list>div {
    width: 100%;
  }

  .about .about-img {
    margin: 0em 0em 5em 0em;
  }

  .who .a {
    width: 100%;
    padding-left: 0.5em;
  }

  .about .services .intro .line-3,
  .about .services .intro .line-4 {
    width: 80%;
  }

  .clients .content {
    padding: 5em 5%;
  }

  .clients .content .splide {
    width: 100%;
    padding-bottom: 5em;
  }

  .testimonials {
    flex-direction: column;
  }

  .testimonials .left {
    width: 100%;
  }

  .testimonials .right {
    width: 100%;
    padding: 5em;

    margin-top: 5em;
  }

  .about-bg .about .Values .values-list {
    gap: 5em;
  }

  .about-bg .about .about-img {
    height: 250px;
  }

  .work .about {
    min-height: auto;
  }

  .work .who .splide__slide .work-img {
    height: 350px;
    margin-top: 4.5em;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
    font-size: 2rem;
    margin-left: 2em;
  }

  .header .navbar {
    position: absolute;
    top: 75%;
    right: -100%;
    background: hsl(var(--clr-white));
    width: 30rem;
    height: 100vh;
    transition: 0.5s linear;
  }

  .work .splide.is-initialized {
    width: 480px;
  }

  .header .navbar.active {
    right: 0;
  }

  .about-bg .about .gray-bg,
  .work .about .gray-bg {
    height: 755px;
  }

  .header .navbar a {
    color: hsl(var(--clr-black)) !important;
    font-family: var(--ff-ClashGrotesk) !important;
    display: block !important;
    margin: 1.5rem !important;

    padding: 0.5rem !important;
    font-size: 2rem !important;
  }

  .header .navbar a:hover {
    color: hsl(var(--clr-red));
  }

  .header .logo {
    width: 65px;
  }

  .reach {
    padding: 3.5em;
  }

  .reach .le {
    width: 45%;
  }

  .reach .ri {
    width: 55%;
  }

  .reach .ri .down .par {
    width: auto;
  }

  .footer {
    flex-direction: column;
  }

  .footer .bec,
  .footer .contact {
    width: 100%;
    margin-bottom: 5em;
  }

  .footer .contact-btn {
    margin-left: auto;
  }

  .footer .contact {
    justify-content: space-around;
  }

  .about-bg .about .Values .values-list {
    gap: 4.5em;
    flex-wrap: wrap;
  }

  .contact-us-page form .form-control {
    flex-direction: column;
    padding-bottom: 0;
  }

  .contact-us-page form .form-control>input {
    margin-bottom: 2em;

    width: 100%;
  }

  .contact-us-page form .form-control .contact-btn {
    margin-top: 2em;
  }
}

@media (max-width: 550px) {
  .home .right-sec .text .main-title {
    font-size: 3rem;
    max-width: 100%;
    letter-spacing: 0;
  }

  .home .right-sec .text .description {
    max-width: 100%;
    padding-top: 1em;
    font-size: 1.5rem;
    color: hsl(var(--clr-white), 0.65);
  }

  .home .main-bg {
    background-size: cover;
  }

  .clients .content .splide .splide__slide .box {
    height: 50px;
    width: 75px;
  }

  .work .who .splide__slide {
    padding-top: 5.5em;
    /* margin-right: 0 2em; */
  }

  .work .splide__track {
    padding-left: 5em;
    padding-right: 5em;
    margin: 0 2em;
  }

  .work .splide.is-initialized {
    width: 380px;
  }

  .work .who .splide__slide ul {
    padding-left: 1.5em;
  }

  .work .who .splide__arrow {
    width: 4em;
    height: 4em;
  }

  .work .who .splide__arrow--prev {
    left: unset;
    right: 5.5em;
  }

  .contact-us-page {
    margin: 10em 0;
  }

  .contact-us-page .contact-intro {
    font-size: 2rem;
  }

  .contact-us-page .contact-intro {
    padding-bottom: 1.8em;
  }
}

@media (max-width: 470px) {
  html {
    font-size: 60%;
  }

  .header {
    padding: 3rem 4.5%;
  }

  .header .icons>* {
    cursor: pointer;
    margin-left: 1em;
  }

  .header .navbar {
    top: 95%;
    width: 25em;
  }

  .header .logo {
    width: 55px;
  }

  .home .right-sec .text .main-title {
    padding-top: 2em;
  }

  .about-bg .about .gray-bg,
  .work .about .gray-bg {
    height: 1055px;
  }

  .home .img-container {
    height: 55%;
  }

  .reach {
    flex-direction: column;
  }

  .reach .le,
  .reach .ri {
    width: 100%;
  }

  .reach .ri .up img {
    width: 40px;
  }

  .footer {
    margin-top: 5em;
  }

  .clients .content .splide .splide__slide .box {
    height: 45px;
    width: 65px;
  }

  .testimonials .right {
    padding: 2em;
  }

  .home .mine-footer .arrow-down {
    width: 2.5em;
  }

  .home .main-bg {
    background-attachment: unset;
  }

  .about .services .list>div .node .l img {
    width: 15px;
  }

  .who {
    flex-direction: column;
  }

  .who .a {
    padding-left: 0em;
    padding-top: 0.5em;
  }

  .about .services .intro .line-3,
  .about .services .intro .line-4 {
    width: 100%;
  }

  .clients .content .splide .splide__slide .box {
    height: 40px;
    width: 55px;
  }

  .clients .content {
    align-items: flex-start;
  }

  .about .cards>* {
    width: 100%;
    height: 225px;
  }

  .about .cards>*:not(:last-child) {
    margin-bottom: 5em;
  }

  .about .services .list>div .node .r .name {
    font-size: 1.5rem;
  }

  .home .right-sec .text .main-title {
    font-size: 2.5rem;
  }

  .about-bg .about .Values {
    margin-top: 5em;
  }

  .about-bg .about .Values .values-list {
    flex-wrap: wrap;
  }

  .about-bg .about .Values .values-list .icon {
    width: 70px;
    height: 70px;
  }

  .about-bg .about .who {
    padding-top: 10.5em;
  }

  .work .splide.is-initialized {
    width: 350px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 50%;
  }

  .header .icons>*,
  #menu-btn {
    margin-left: 1em;
  }

  .header .logo {
    width: 35px;
  }

  .about-bg .about .gray-bg,
  .work .about .gray-bg {
    height: 955px;
  }

  .header .icons .important {
    width: 8em;
    font-size: 1.2rem;
  }

  .home .mine-footer .arrow-down {
    width: 2.5em;
  }

  .reach .ri .up img {
    width: 35px;
  }

  .testimonials .right #secondary-slider .splide__track--nav>.splide__list>.splide__slide .user {
    width: 50px;
    height: 50px;
  }

  .clients .content .splide .splide__slide .box {
    height: 35px;
    width: 43.5px;
  }

  .work .splide.is-initialized {
    width: 250px;
  }
}

@media (max-width: 300px) {

  .about-bg .about .gray-bg,
  .work .about .gray-bg {
    height: 1155px;
  }
}

@media (max-height: 500px) {
  .home {
    overflow-y: scroll;
    min-height: 600px;
  }

  .home .right-sec {
    margin-top: 1em;
  }

  .home .img-container {
    height: 50%;
  }
}