@import url("https://fonts.googleapis.com/css2?family=Anton&family=Bruno+Ace&family=Graduate&family=Londrina+Sketch&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #d3d0d0;
  border-radius: 0;
  border-radius: 15px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #c2bbbb;
}

:root {
  --main-color: #5fc4ac;
  --not-hover-color: rgba(245, 225, 225, 0.486);
  --hover-color: rgba(245, 225, 225, 0.671);
  --nav-background-color: #ffffff96;
  --menu-items-a-color: #eeef;

  /* hero-texts-home */
  --hero-texts-static-text-one: rgb(99, 97, 97);
  --hero-texts-static-text-two: rgb(66, 66, 66);
  --hero-texts-typed-text: rgb(66, 66, 66);
  --hero-sub-text: rgb(124, 114, 114);

  --section-intro-texts-color: rgba(0, 0, 0, 0.38);
  --web-item-bg-color: rgb(68, 186, 233);
  --robotics-projects--item-bg-color: rgb(212, 211, 207);
  --auto-slide-text-color: rgb(77, 182, 252);
  --about-item-p-color: #746d6d;
  --sticky-add-bg-not-hover-color: #0000004f;
  --sticky-add-bg-hover-color: #00000077;

  /* about video bg  */
  --about-item-bg-color: #ffffffea;

  --ui-ux-item-bg-color: #d6c45b;
  --menu-bg-color: #5e5957;
  --project-section-bg-color: rgba(0, 0, 0, 0.781);
  --projects-item-details-bg-color: #fff;
  --projects-section-hero-intro-text-color: #eeef;
  --projects-section-intro-right-h1-color: antiquewhite;
  --end-intro-bg-color: #f8f5f2;
  --end-intro-text-main-color: #817e7d;
  --contact-us-section-details-color: #5e5957;

  /* footer  */
  --footer-bg-color: #c9d0d5;
  --footer-text-color: #64686a;

  /* static  */
  --white-color: #fff;
  --black-color: #000;
}

/* PRELOADER */
body.loading {
  overflow: hidden;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #05a4d4, #22c1dd, #ff5f6d);
  background-size: 400% 400%;
  animation: gradientSlide 8s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

@keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.loader-circle {
  position: relative;
  width: 200px;
  height: 200px;
}

.loader-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loader-circle circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.loader-circle circle:first-child {
  stroke: rgba(255, 255, 255, 0.1);
}

.loader-circle circle#progress {
  stroke: #fff;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.3s linear;
}

#loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  font-family: "Anton", sans-serif;
}

/* CURSOR  */

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  width: 10px;
  height: 10px;
  background-color: var(--black-color);
}

/* SECTION  */

.section {
  padding: 40px;
  margin: 0;
  max-width: 1580px;
}

.section-hero-intro-text {
  font-size: clamp(15px, 1vw, 30px);
  color: var(--section-intro-texts-color);
  font-weight: bold;
}

/* HOME SECTION ******************************************************************************* */

.home-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 15px;
  box-sizing: border-box;
  background-color: rgba(245, 245, 220, 0.664);
}

.home-section video {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  object-fit: cover;
  z-index: 0;
  border-radius: 30px;
}

.home-section::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}

.content {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  color: #fff;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 20px;
}

/* HEADER ******************************************************************************* */

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .logo-con {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}

.header .logo-con .logo-img {
  width: 50px;
  height: 50px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0px 2px 5px rgba(90, 88, 88, 0.6));
}

.header .logo-con .logo-name {
  font-weight: bold;
  font-size: 15px;
  color: var(--white-color);
  text-shadow: 0px 0px 3px #4e4d4de3;
}

/* HEADER NAV ******************************************************************************* */

.nav {
  background: var(--nav-background-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid var(--white-color);
  padding: 15px 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.116);
}

.nav .nav-item {
  font-size: 15px;
  font-weight: 450;
  color: var(--black-color);
  text-decoration: none;
  position: relative;
  padding-left: 10px;
}

.nav .nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background-color: var(--black-color);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.25s ease;
}

.nav .nav-item:hover::before {
  transform: translateY(-50%) scale(1);
}

.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.header-right .b-a-c-btn {
  position: relative;
  padding: 10px 15px;
  border: none;
  border-left: 1px solid var(--white-color);
  border-right: 1px solid var(--white-color);
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 99%;
  color: var(--black-color);
  transition: color 0.4s linear;
  font-size: 15px;
}

.header-right .b-a-c-btn:hover {
  color: var(--white-color);
}

.header-right .b-a-c-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--black-color);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform-origin: left;
  transform: scale(0);
  border-radius: 100px;
}

.header-right .b-a-c-btn:hover::before {
  transform: scale(1);
}

.header-right .hero-contact-btn,
.header-right .menu-btn {
  padding: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--not-hover-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s ease, background 0.4s ease;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.116);
}

.header-right .hero-contact-btn i,
.header-right .menu-btn i {
  margin: 0;
  padding: 0;
  font-size: 25px;
  color: var(--black-color);
}

.header-right .hero-contact-btn:hover,
.header-right .menu-btn:hover {
  background: var(--hover-color);
}

.header-right .hero-contact-btn:hover {
  transform: rotate(360deg);
}

.sticky {
  z-index: 100000;
  position: fixed;
  right: 0;
  padding: 35px;
}

.sticky .hero-contact-btn,
.sticky .menu-btn {
  background: var(--sticky-add-bg-not-hover-color);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

.sticky .hero-contact-btn:hover,
.sticky .menu-btn:hover {
  background: var(--sticky-add-bg-hover-color);
}

.sticky .hero-contact-btn i,
.sticky .menu-btn i {
  color: var(--white-color);
}

/* .header-right .menu-btn {
    display: none;
} */

/* HEADER MENU ******************************************************************************* */

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  color: var(--white-color);
  transition: 0.4s ease-in-out;
  z-index: 1000;
  background: linear-gradient(
    145deg,
    var(--menu-bg-color),
    rgba(0, 0, 0, 0.85)
  );
  transition: left 0.45s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.45s ease;
  visibility: hidden;
}

.menu-content {
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.blur-background.visible {
  visibility: visible;
  opacity: 1;
}

.menu.open {
  left: 0;
  visibility: visible;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.menu-header .menu-logo {
  margin-left: 10px;
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 2px 5px rgba(255, 255, 255, 0.473));
}

.menu-header .menu-close-button {
  padding: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--not-hover-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 25px;
  color: #fff;
  transition: transform 0.4s ease, background 0.4s ease;
  box-shadow: 0 0px 5px rgba(255, 255, 255, 0.603);
}

.menu-header .menu-close-button:hover {
  background: var(--hover-color);
  transform: rotate(360deg);
}

.menu-items-con {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items-con .menu-items {
  margin: 20px 0;
}

.menu-items-con .menu-items a {
  position: relative;
  color: var(--menu-items-a-color);
  text-decoration: none;
  font-size: clamp(15px, 4vw, 25px);
  letter-spacing: 2px;
  padding-left: 0;
  transition: padding-left 0.3s ease, color 0.4s ease;
}

.menu-items-con .menu-items a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--white-color);
  transition: transform 0.3s ease, left 0.3s ease;
}

.menu-items-con .menu-items a:hover {
  padding-left: 20px;
  color: var(--white-color);
}

.menu-items-con .menu-items a:hover::before {
  left: 0;
  transform: translateY(-50%) scale(1);
}

.menu-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.menu-footer .menu-footer-item {
  padding: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--not-hover-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 25px;
  color: var(--white-color);
  transition: transform 0.5s ease, background 0.4s ease;
}

.menu-footer .menu-footer-item:hover {
  transform: rotate(360deg);
  background: var(--hover-color);
}

/* CONTENT ******************************************************************************* */

.content-body {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  height: 70%;
  border-radius: 30px;
}

.content-body-intro-con {
  width: 75%;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-around;
}

.content-body-intro-con hr {
  width: 100%;
  border: none;
  height: 1px;
  background: linear-gradient(to right, rgba(41, 40, 40, 0.4), transparent);
  margin: 0;
  padding: 0;
}

.hero-texts-con {
  width: 100%;
}

.hero-texts-con .static-text-one {
  font-size: clamp(10px, 6vw, 80px);
  text-transform: uppercase;
  color: var(--hero-texts-static-text-one);
  line-height: 2.5;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.096);
}

.hero-texts-con .static-text-two {
  font-size: clamp(15px, 9vw, 120px);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--hero-texts-static-text-two);
  line-height: 1.1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.096);
}

.typing-container #typed-text {
  font-size: clamp(15px, 9vw, 120px);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--hero-texts-typed-text);
  line-height: 1.1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.096);
}

.hero-sub-text-con p {
  font-weight: bold;
  font-size: clamp(12px, 13px, 15px);
  text-transform: uppercase;
  color: var(--hero-sub-text);
}

/* CONTENT INTRO VIDEO ******************************************************************************* */

.content-body-intro-video {
  width: 35%;
  height: 100%;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(46, 45, 45, 0.075)
  );
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.content-body-intro-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  display: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.click-to-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  border: none;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9),
    rgba(220, 220, 220, 0.6)
  );
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.25),
    inset 0 3px 6px rgba(255, 255, 255, 0.7);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}

.click-to-play-btn:hover {
  transform: translateY(-0px) scale(1.03);
  box-shadow: 0 0px 40px rgba(0, 0, 0, 0.35),
    inset 0 3px 6px rgba(255, 255, 255, 0.9);
}

.rotate-img {
  width: 85px;
  height: 85px;
  animation: rotate 10s infinite linear;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.icon-overlay {
  position: absolute;
  font-size: 30px;
  color: var(--black-color);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* INTRO AUTO SLIDE TEXT ******************************************************************************* */

.auto-slider-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.auto-slide-text {
  font-size: clamp(100px, 12vw, 160px);
  font-weight: bold;
  color: var(--auto-slide-text-color);
  display: inline-block;
  padding-left: 100%;
  animation: slideText 70s linear infinite;
  text-transform: uppercase;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.219);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@keyframes slideText {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* SERVICES ******************************************************************************* */
.our-services-section-hero-intro-details-text {
  font-size: clamp(20px, 2vw, 35px);
  color: var(--section-intro-texts-color);
  margin-top: 20px;
  font-weight: 250;
}

.our-services-section-item-con {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.our-services-item {
  width: 30%;
  min-height: 350px;
  height: 400px;
  max-height: 500px;
  padding: 15px;
  border-radius: 15px;
  background-size: 140%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background-size 0.4s ease;
}

.our-services-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  filter: blur(0px);
  opacity: 1;
  transition: filter 0.4s ease, opacity 0.4s ease;
  z-index: 0;
}

.our-services-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.267)
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.our-services-item > * {
  position: relative;
  z-index: 1;
}

.our-services-item:hover {
  background-size: 160%;
  cursor: pointer;
}

.our-services-item:hover::before {
  filter: blur(6px);
  opacity: 0.85;
}

.our-services-item:hover::after {
  opacity: 1;
}

.our-services-item .our-services-item-hedding {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white-color);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.144);
}

.our-services-item .our-services-item-top {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.our-services-item .our-services-item-top .our-services-item-description {
  font-size: 13px;
  color: var(--white-color);
}

.our-services-item .our-services-item-top hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.4), transparent);
  margin: 12px 0;
}

.our-services-item .our-services-item-top .our-services-used-components-con {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.our-services-item
  .our-services-item-top
  .our-services-used-components-con
  .our-services-used-components-badge {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ABOUT ******************************************************************************* */

.about-section-intro-sub-con {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.about-section-intro-sub-con .about-section-intro-text {
  font-size: clamp(30px, 3.5vw, 45px);
  font-weight: 500;
  color: var(--black-color);
}

.b-a-c-btn-about {
  position: relative;
  padding: 10px 15px;
  border: none;
  border-left: 1px solid var(--white-color);
  border-right: 1px solid var(--white-color);
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 80%;
  color: var(--black-color);
  background-color: var(--menu-items-a-color);
  transition: color 0.4s linear;
  font-size: 15px;
}

.b-a-c-btn-about:hover {
  color: #fff;
}

.b-a-c-btn-about::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--black-color);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform-origin: right;
  transform: scale(0);
  border-radius: 100px;
}

.b-a-c-btn-about:hover::before {
  transform: scale(1);
}

.about-section-intro hr {
  padding: 10px;
  border: 2px solid var(--hover-color);
  border-bottom: none;
  margin-top: 5px;
}

.about-section-body {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.about-section-body .about-section-body-left {
  width: 50%;
}

.about-section-body-left .about-section-details-tag {
  color: var(--section-intro-texts-color);
  font-size: clamp(15px, 1.5vw, 25px);
}

.about-section-body-left .about-section-details-tag i {
  color: var(--black-color);
}

.about-section-item-con {
  margin-top: 35px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.about-section-item {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-radius: 30px;
  text-align: start;
  border: 1px solid var(--menu-items-a-color);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  min-height: 200px;
  z-index: 1;
  background-color: var(--about-item-bg-color);
}

.about-section-item .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-section-item .content {
  z-index: 1001;
}

.about-section-item h1 {
  font-weight: bold;
  font-size: clamp(25px, 4vw, 45px);
  color: #362b32;
}

.about-section-item p {
  font-size: clamp(10px, 2vw, 15px);
  line-height: 1.5;
  color: var(--about-item-p-color);
  margin-top: 10px;
  background-color: #ffffff8c;
  padding: 3px;
  border-radius: 5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-section-body .about-section-body-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section-body .about-section-body-right img {
  width: 100%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0px 2px 5px rgba(90, 88, 88, 0.452));
}

/* PROJECTS ******************************************************************************* */

.projects {
  background-color: var(--project-section-bg-color);
  width: 100%;
  /* border-radius: 0px 0px 30px 30px; */
}

.projects-section-responsive-div {
  padding: 40px;
}

.projects-section-intro {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.projects-section-intro-left .projects-section-hero-intro-text {
  font-size: clamp(15px, 1vw, 30px);
  color: var(--projects-section-hero-intro-text-color);
  font-weight: bold;
}

.projects-section-intro-left .projects-section-intro-dis {
  font-size: clamp(15px, 2vw, 30px);
  color: var(--white-color);
  margin-top: 20px;
  font-weight: 150;
}

.projects-section-intro-right h1 {
  font-size: clamp(30px, 4vw, 50px);
  text-align: end;
  color: var(--projects-section-intro-right-h1-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.r-n-projects-btn {
  position: relative;
  padding: 10px 15px;
  border: none;
  border-left: 1px solid var(--white-color);
  border-right: 1px solid var(--white-color);
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 90%;
  color: var(--black-color);
  background-color: var(--white-color);
  transition: color 0.4s linear;
  font-size: 15px;
}

.r-n-projects-btn:hover {
  color: var(--white-color);
}

.r-n-projects-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--black-color);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform-origin: center;
  transform: scale(0);
  border-radius: 100px;
}

.r-n-projects-btn:hover::before {
  transform: scale(1);
}

.projects-item-center-con {
  display: flex;
  justify-content: center;
}

.projects-item-con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(25rem, auto);
  margin-top: 5rem;
  grid-gap: 10px;
  grid-template-areas:
    "a a b"
    "c d d"
    "e e e";
  /* background-color: gold; */
  border-radius: 30px;
  max-width: 1580px;
}

.projects-item {
  background-color: var(--white-color);
  min-height: 30rem;
  border-radius: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-color: black;
}

.projects-item:hover {
box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);}

.item-1 {
  grid-area: a;
  background-image: url("images/projects/Bookreaders.png");
}

.item-2 {
  grid-area: b;
  background-image: url("images/projects/Furniture-Shop.png");
}

.item-3 {
  grid-area: c;
  background-image: url("images/projects/Nova-nest.png");
}

.item-4 {
  grid-area: d;
  background-image: url("images/projects/Food-delivery-app.png");
}

.item-5 {
  grid-area: e;
  background-image: url("images/projects/Faster-Shopping-Center.png");
}

.projects-item-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--projects-item-details-bg-color);
  padding: 10px;
  margin: 20px;
  border-radius: 20px;
  height: auto;
  gap: 15px;
  transition: box-shadow 0.4s ease;
}

.projects-item:hover .projects-item-details {
  box-shadow: 0 -35px 100px rgb(64, 118, 219);
}

.projects-item-details-left h5 {
  font-size: 18px;
  font-weight: bold;
  color: var(--black-color);
}

.projects-item-details-text {
  font-size: clamp(10px, 1vw, 15px);
  color: #8d8d8d;
  margin-top: 5px;
}

.projects-item-details-right a button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee;
  border: none;
  transition: background-color 0.4s ease;
}

.projects-item:hover .projects-item-details-right a button {
  background-color: #cfcccc;
}

.projects-item-details-right a button i {
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-40deg);
  transition: transform 0.4s ease;
}

.projects-item:hover .projects-item-details-right a button i {
  transform: rotate(320deg);
}

/*CONTACT MENU ******************************************************************************* */
.contact-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  color: var(--white-color);
  transition: 0.4s ease-in;
  z-index: 1000;
  background-color: #fff;
  visibility: hidden;
  overflow-y: auto;
}

.contact-menu::-webkit-scrollbar {
  width: 8px;
}

.contact-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.contact-menu::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 0;
  transition: background 0.4s ease;
  border-radius: 15px;
}

.contact-menu::-webkit-scrollbar-thumb:hover {
  background: #cac9c9;
}

.contact-menu-content {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-menu-content .contact-menu-hr {
  border: none;
  height: 1px;
  width: 100%;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0)
  );
  background-repeat: no-repeat;
  margin: 10px 0;
  flex-shrink: 0;
}

.contact-menu-header {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}

.contact-menu-header .contact-menu-header-intro-text {
  font-size: clamp(25px, 3vw, 40px);
  font-weight: bold;
  color: #000;
  width: 50%;
  text-align: start;
}

.contact-menu-header .contact-menu-close-btn {
  width: 45px;
  height: 45px;
  background-color: #eeef;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease-in, color 0.4s ease-out;
}

.contact-menu-header .contact-menu-close-btn:hover {
  background-color: #000;
  color: #fffe;
}

.contact-menu-responsive-div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 15px;
}

.contact-menu-input-form .contact-menu-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.contact-menu-input-form .contact-menu-row .contact-menu-input-con {
  width: 50%;
}

.contact-menu-input-con label {
  font-size: 18px;
  font-weight: 350;
  color: var(--black-color);
}

.contact-menu-input-con input,
.contact-menu-input-con textarea {
  margin-top: 10px;
  border: none;
  outline: none;
  padding: 20px 15px 20px 15px;
  border-radius: 5px;
  font-size: 15px;
  background-color: rgba(236, 234, 234, 0.308);
}

.contact-menu-input-con input {
  width: 90%;
}

.contact-menu-input-con .number-input {
  width: 95%;
}

.contact-menu-input-con textarea {
  width: 95%;
  max-width: 95%;
  min-width: 95%;
}

.massage-div-contact-form {
  background-color: rgba(255, 0, 0, 0.377);
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  color: #272727;
}

.contact-menu-footer {
  display: flex;
  justify-content: end;
}

.contact-menu-footer .s-t-r-contact-btn {
  position: relative;
  padding: 10px 15px;
  border: 1px solid #000;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 80%;
  color: #fff;
  background-color: #000;
  transition: color 0.4s linear;
  font-size: 15px;
  margin-bottom: 20px;
}

.contact-menu-footer .s-t-r-contact-btn:hover {
  color: #000;
}

.contact-menu-footer .s-t-r-contact-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform-origin: left;
  transform: scale(0);
  border-radius: 100px;
}

.contact-menu-footer .s-t-r-contact-btn:hover::before {
  transform: scale(1);
}

.contact-menu.open {
  right: 0;
  visibility: visible;
}

/*END INTRO ******************************************************************************* */
.end-intro-main {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.end-intro-main-con {
  position: relative;
  padding: 40px;
  max-width: 1580px;
  margin: 40px;
  width: 100%;
  height: 50vw;
  max-height: 40rem;
  border-radius: clamp(30px, 8vw, 150px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--end-intro-bg-color);
}

.end-intro-main-con::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/end-intro/end-intro-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(2px);
  transform: scale(1.1);
  animation: moveBackground 10s linear infinite;
  z-index: 0;
}

.end-intro-main-con > * {
  position: relative;
  z-index: 1;
}

.end-intro-main-con h1 {
  font-size: clamp(22px, 5.2vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--end-intro-text-main-color, #ffffff);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  max-width: 1100px;
  margin-inline: auto;
}

.end-intro-main-con h1 span {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  gap: clamp(6px, 1vw, 14px);
  padding: 2px 10px;
  color: var(--black-color, #000000);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
}

.end-intro-main-con h1 img {
  width: clamp(60px, 12vw, 180px);
  height: clamp(30px, 5vw, 65px);
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  display: inline-block;
}

@keyframes moveBackground {
  0% {
    background-position: center;
  }

  100% {
    background-position: 100% center;
  }
}

/*REVIEWS ******************************************************************************* */
.reviews-section {
  background-image: url("images/reviews-black-bg.png");
  background-position: start;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  /* border-radius: 30px 30px 0px 0px; */
  padding: 80px 0px 10px 0px;
}

.reviews-section-responsive-div {
  padding: 40px;
}

.reviews-section-intro {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

.reviews-section-intro-left .reviews-section-hero-intro-text {
  font-size: clamp(15px, 1vw, 30px);
  color: #eeeeeeb6;
  font-weight: bold;
}

.reviews-section-intro-left .reviews-section-intro-text {
  font-size: clamp(30px, 4vw, 50px);
  text-align: start;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.reviews-section-intro-right img {
  width: 25vw;
  height: auto;
}

.reviews-slider-container {
  height: fit-content;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.reviews-slider {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
  border-radius: 100px;
}

.reviews-slider .reviews-slider-image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 0px 25px -12px #fff;
}

.reviews-slider .reviews-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: auto;
  width: 100%;
}

.reviews-slide .reviews-slide-details {
  text-align: center;
  padding: 0 110px;
  font-size: clamp(15px, 2vw, 25px);
  font-weight: 400;
  color: #ccc3c3;
}

.reviews-slide .quote-icon {
  font-size: 35px;
  color: #eeeeeee5;
}

.reviews-slider-nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(238, 231, 231, 0.438);
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews-slider-nav-btn:hover {
  background-color: rgba(238, 231, 231, 0.644);
}

.reviews-slider-nav-btn::after,
.reviews-slider-nav-btn::before {
  font-size: 15px;
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: transparent;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  transition: 0.2s;
}

.swiper-pagination-bullet:hover {
  background-color: #fff;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.reviews-section-btn-con {
  width: 100%;
  display: flex;
  justify-content: end;
}

/*CONTACT ******************************************************************************* */

.contact-us-section {
  max-width: 1580px;
  width: 100%;
}

.contact-us-section-res-div {
  padding: 40px;
}

.contact-us-section-intro-con {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-us-section-intro-con h1 {
  text-transform: uppercase;
  font-weight: 200;
  font-size: 8vw;
}

.contact-us-section-details-con {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.contact-us-section-details-con .contact-us-section-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-us-section-details-con .contact-us-section-details p {
  width: 50%;
  color: var(--contact-us-section-details-color);
  font-weight: 250;
}

.contact-us-section-logo-con img {
  width: 250px;
  filter: drop-shadow(0px 2px 10px rgba(43, 41, 41, 0.336));
}

/*FOOTER ******************************************************************************* */
.footer {
  background-color: var(--footer-bg-color);
  width: 100%;
  border-radius: 30px 30px 0px 0px;
  display: flex;
  justify-content: center;
}

.footer-content {
  padding: 40px;
  width: 100%;
  max-width: 1580px;
}

.footer-logo-con {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-logo-con .logo-img {
  width: 50px;
  height: 50px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0px 2px 5px rgba(196, 192, 192, 0.6));
}

.footer-logo-con .logo-name {
  font-weight: bold;
  font-size: 15px;
  color: var(--black-color);
}

.footer-con {
  display: flex;
  flex-direction: column;
}

.footer-con .footer-top {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
}

.footer-item-first {
  width: 50%;
}

.footer-item-first .footer-main-text {
  font-size: clamp(30px, 3.5vw, 40px);
  color: var(--black-color);
  font-weight: 600;
}

.footer-item-first .footer-sub-text {
  color: var(--footer-text-color);
  font-size: 15px;
  margin-top: 25px;
}

.footer-item-first .f-b-c-btn {
  position: relative;
  padding: 10px 30px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 80%;
  color: #000;
  background-color: var(--white-color);
  transition: color 0.4s linear;
  font-size: 15px;
  margin: 20px;
}

.footer-item-first .f-b-c-btn:hover {
  color: var(--white-color);
}

.footer-item-first .f-b-c-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--black-color);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform-origin: right;
  transform: scale(0);
  border-radius: 100px;
}

.footer-item-first .f-b-c-btn:hover::before {
  transform: scale(1);
}

.footer-item-first .footer-feel-ask-text {
  color: var(--footer-text-color);
  font-size: 15px;
  margin-top: 25px;
}

.footer-item-first .footer-info-main-a {
  color: var(--black-color);
  font-size: 15px;
  margin-top: 25px;
  font-weight: 600;
  text-decoration: none;
}

.footer-responsive-div {
  display: flex;
  flex-direction: row;
  width: 50%;
  justify-content: space-between;
}

.footer-item ul {
  list-style: none;
}

.footer-item .footer-item-heading h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-item-second {
  max-width: 200px;
}

.footer-item-second .footer-item-cu-ul li {
  margin-bottom: 15px;
}

.footer-item-second .footer-item-cu-ul li p {
  color: var(--footer-text-color);
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
}

.footer-item-second .footer-item-cu-ul li a {
  color: var(--footer-text-color);
  font-size: 15px;
  text-decoration: none;
}

.footer-item-second .footer-item-cu-ul li a:hover {
  text-decoration: underline;
}

.footer-item-third {
  max-width: 200px;
}

.footer-item-third .footer-item-fu-ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.footer-item-third .footer-item-fu-ul li a {
  color: var(--footer-text-color);
  font-size: 15px;
  text-decoration: none;
  line-height: 2;
}

.footer-item-third .footer-item-fu-ul li i {
  color: var(--footer-text-color);
  font-size: 25px;
  transform: rotate(-40deg);
  transition: transform 0.4s ease;
}

.footer-item-third .footer-item-fu-ul li:hover i {
  transform: rotate(320deg);
}

.footer-item-fourth {
  max-width: 200px;
}

.footer-item-fourth .footer-item-s-ul {
  color: var(--footer-text-color);
  font-size: 15px;
  text-decoration: none;
  line-height: 2;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-left {
  color: var(--footer-text-color);
  font-size: 15px;
}

.footer-bottom-right a {
  text-decoration: none;
}

.footer-bottom-right p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--black-color);
  font-size: 15px;
}

.footer-bottom-right p i {
  font-size: 20px;
  transform: rotate(-90deg);
}

/* MEDIA ******************************************************************************* */
@media only screen and (max-width: 1080px) {
  /* nav ******************* */
  .nav {
    display: none;
  }

  .header-right .hero-contact-btn {
    display: none;
  }

  .header-right .menu-btn {
    display: flex;
  }

  /* home section ******************* */
  .home-section {
    padding: 10px;
  }

  .home-section video {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .home-section::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .content {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }

  /* content ******************* */
  .content-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
  }

  .content-body-intro-con {
    width: 100%;
  }

  .content-body-intro-video {
    width: 100%;
  }

  .sticky {
    padding: 20px;
  }

  /* contact ******************* */
  .contact-us-section-details-con .contact-us-section-details p {
    width: 70%;
  }
}

@media only screen and (max-width: 680px) {
  .header-right .b-a-c-btn {
    display: none;
  }

  /* section ******************* */
  .section {
    padding: 15px;
  }

  /* about ******************* */
  .b-a-c-btn-about {
    display: none;
  }

  .menu-footer .menu-footer-item {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* projects ******************* */
  .projects-section-responsive-div {
    padding: 15px;
  }

  /* end intro ******************* */
  .end-intro-main-con {
    padding: 15px;
    margin: 15px;
  }

  /* footer ******************* */
  .footer-content {
    padding: 15px;
  }
}

/* MENU MEDIA ******************************* */
@media only screen and (max-width: 345px) {
  .menu-footer .menu-footer-item {
    padding: 10px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}

@media only screen and (min-width: 1080px) {
  /* menu ******************* */
  .menu {
    width: 35%;
  }
}

/* SERVICES MEDIA ******************************* */
@media (max-width: 768px) {
  .our-services-section-item-con {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .our-services-item {
    width: 90%;
    margin-bottom: 20px;
  }

  .our-services-item .our-services-item-hedding {
    font-size: 28px;
  }

  .our-services-item .our-services-item-description {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .our-services-item {
    width: 45%;
  }

  .our-services-item .our-services-item-hedding {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .our-services-item {
    width: 30%;
  }
}

/* ABOUT ******************************* */
@media only screen and (max-width: 920px) {
  .about-section-body .about-section-body-right {
    display: none;
  }

  .about-section-body {
    flex-direction: column;
    justify-content: center;
  }

  .about-section-body .about-section-body-left {
    width: 100%;
  }

  .about-section-item {
    padding: 5px;
    border-radius: 20px;
    min-height: 150px;
  }
}

/* PROJECTS ******************************* */
@media screen and (max-width: 968px) {
  .projects-item-con {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e";
  }
}

@media screen and (max-width: 660px) {
  .projects-section-intro {
    flex-direction: column;
    gap: 10px;
  }

  .projects-section-intro-left .projects-section-intro-dis {
    display: none;
  }

  .projects-section-intro-right h1 {
    text-align: start;
  }
}

@media screen and (max-width: 480px) {
  .projects-item {
    min-height: 25rem;
  }

  .projects-item-details-left h5 {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  .projects-item {
    min-height: 35rem;
  }
}

/* CONTACT MENU ******************************* */
@media only screen and (min-width: 1080px) {
  .contact-menu {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .contact-menu-input-form .contact-menu-row {
    display: flex;
    flex-direction: column;
  }

  .contact-menu-input-form .contact-menu-row .contact-menu-input-con {
    width: 100%;
  }

  .contact-menu-input-con input {
    width: 90%;
  }

  .contact-menu-input-con textarea {
    width: 90%;
  }

  .contact-menu-footer .s-t-r-contact-btn {
    width: 100%;
  }

  .contact-menu-input-con label {
    font-size: 16px;
  }

  .contact-menu-header .contact-menu-header-intro-text {
    width: 90%;
  }
}

/* END INTRO ******************************* */
@media (min-width: 1024px) {
  .end-intro-main-con h1 {
    line-height: 1.2;
  }
}

@media only screen and (max-width: 1035px) {
  .end-intro-main-con h1 img {
    width: 140px;
    max-height: 60px;
  }
}

@media only screen and (max-width: 860px) {
  .end-intro-main-con h1 img {
    width: 110px;
    max-height: 50px;
  }
}

@media only screen and (max-width: 655px) {
  .end-intro-main-con h1 img {
    width: 100px;
    max-height: 40px;
  }
}

@media only screen and (max-width: 485px) {
  .end-intro-main-con h1 img {
    width: 80px;
    max-height: 30px;
  }
}

@media only screen and (max-width: 325px) {
  .end-intro-main-con h1 img {
    width: 60px;
    max-height: 25px;
  }
}

@media only screen and (max-width: 285px) {
  .end-intro-main-con h1 img {
    width: 40px;
    max-height: 20px;
  }
}

/* REVIEWS ******************************* */
@media screen and (max-width: 768px) {
  .reviews-slide .reviews-slide-details {
    padding: 0 20px;
  }

  .reviews-slider-nav-btn {
    display: none;
  }

  .reviews-slider-container {
    margin-top: 40px;
  }

  .reviews-section {
    padding: 60px 0px 60px 0px;
  }
}

@media screen and (max-width: 468px) {
  .reviews-slide .reviews-slide-details {
    padding: 0 10px;
  }

  .reviews-slider-container {
    margin-top: 20px;
  }

  .reviews-section {
    padding: 40px 0px 5px 0px;
  }

  .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }

  .reviews-section-btn-con {
    justify-content: center;
  }
}

@media screen and (max-width: 560px) {
  .reviews-section-intro-right img {
    display: none;
  }

  .reviews-slide .quote-icon {
    font-size: 25px;
  }
}

/* CONTACT ******************************* */
@media only screen and (max-width: 690px) {
  .contact-us-section-details-con .contact-us-section-details p {
    width: 95%;
  }
}

@media only screen and (max-width: 660px) {
  .contact-us-section-details-con {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: start;
  }
}

/* FOOTER ******************************* */
@media only screen and (max-width: 980px) {
  .footer-con .footer-top {
    flex-direction: column;
  }

  .footer-responsive-div {
    width: 100%;
    margin-top: 30px;
  }

  .footer-item-first {
    width: 100%;
  }
}

@media only screen and (max-width: 630px) {
  .footer-item-first .footer-sub-text {
    display: none;
  }

  .footer-item-first .f-b-c-btn {
    margin: 0px;
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-item-first .footer-feel-ask-text {
    display: none;
  }

  .footer-item-first .footer-info-main-a {
    display: none;
  }

  .footer-item-third {
    display: none;
  }
}

@media only screen and (max-width: 430px) {
  .footer-responsive-div {
    flex-direction: column;
    justify-content: center;
  }

  .footer-item-second {
    max-width: 100%;
  }

  .footer-item-fourth {
    max-width: 100%;
  }

  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom-left {
    color: var(--footer-text-color);
    font-size: 15px;
  }

  .footer-bottom-right {
    display: none;
  }
}

/* extra  */
.box {
  width: 50px;
  height: 50px;
  background-color: #fff;
}

.d-none {
  display: none;
}

.text-none {
  text-decoration: none;
}