html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  /* font-size: 20px; */
  --green: #2ecc71;
  --white: #ffffff;
  --grey: #ecedf3;
  --black: #080808;
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
  --blue_color: #204d72;
  --green_color: #208343;
  --padding: 6rem;
  --gap: 1rem;
  --radius: 20px;
  --fs: 14px;
  --fontSize: 18px;
}

:root *,
:root *:before,
:root *:after {
  box-sizing: border-box;
}


a {
  text-decoration: none;
}

a:hover {
  color: #2ecc71;
  ;
}

html,
body {
  overflow-x: hidden;
}

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
  scroll-behavior: smooth;
}

.Shadow,
.Shadow2 {
  z-index: -1;
  content: "";
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  transform-origin: center;
  background: url(assets/Shadow.png) 100% 0/cover no-repeat;
  animation: move 7s 2s infinite alternate;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.15;
  transition: 400ms ease;

}

.Shadow2 {
  transform: scale(-1);
  display: none;
}

body::-webkit-scrollbar {
  width: 0.2em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px 6px rgba(0, 0, 0, 1);

}

body::-webkit-scrollbar-thumb {
  background-color: #43AB70;
  outline: 0px solid slategrey;
}




.Head {

  /*gap: 30rem;  */
  /*justify-content: center;  */
  /*margin-block: 8rem;
  /*background-color: #fbfbfb;  */
  /*translate: -50%;  */
  border: 1px solid #f0faff00;
  display: flex;
  border-radius: 0px 0px var(--radius) var(--radius);
  align-items: center;
  width: calc(100vw - 2rem);
  justify-content: space-between;
  position: fixed;
  top: 0rem;
  left: 1rem;
  white-space: nowrap;
  z-index: 999999;
  padding: 1rem 1rem;
  transition: 0.3s cubic-bezier(0.79, -0.01, 0, 0.99);
  -webkit-transition: 0.3s cubic-bezier(0.79, -0.01, 0, 0.99);
  -moz-transition: 0.3s cubic-bezier(0.79, -0.01, 0, 0.99);
  -ms-transition: 0.3s cubic-bezier(0.79, -0.01, 0, 0.99);
  -o-transition: 0.3s cubic-bezier(0.79, -0.01, 0, 0.99);
  transform-origin: center top;
  /* background: linear-gradient(343deg, rgba(255, 255, 255, 0.8883928571428571) 0%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0.8015581232492998) 100%);
  backdrop-filter: blur(7px); */

}



.Head.Light {
  padding: 1rem 2rem;
  border-radius: var(--radius);
  background: transparent;
  backdrop-filter: blur(0px);
  border: none;
  width: 50vw;
  left: 25vw;
  top: -1px;
  border: 1px solid #f0faff;
  border-top: 1px solid #f0faff00;
  -webkit-border-radius: 0px 0px var(--radius) var(--radius);
  -moz-border-radius: 0px 0px var(--radius) var(--radius);
  -ms-border-radius: 0px 0px var(--radius) var(--radius);
  -o-border-radius: 0px 0px var(--radius) var(--radius);
  background: linear-gradient(343deg, rgba(255, 255, 255, 0.8883928571428571) 0%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0.8015581232492998) 100%);
  backdrop-filter: blur(7px);
  transform: scale(0.72);
  -webkit-transform: scale(0.72);
  -moz-transform: scale(0.72);
  -ms-transform: scale(0.72);
  -o-transform: scale(0.72);
}

.Head.Loading {
  top: -25vh !important;
  transform: scale(0) !important;
  -webkit-transform: scale(0) !important;
  -moz-transform: scale(0) !important;
  -ms-transform: scale(0) !important;
  -o-transform: scale(0) !important;
}


/* .Head.Light * {
  filter: grayscale(1) brightness(77);
  color: white;
  border-color: white;
} */

.HeadLogo {
  background-image: url(./assets/logo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  display: block;
}

.HeadText {
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding: 10px 0px;
}

.HeadText * {
  overflow: hidden;
}

.HeadText h2 {
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue_color);
}

.HeadText p {
  font-size: 16px;
  font-weight: 400;
  color: var(--green_color);
}

.HeadIcons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.Icon {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.LinkedIn {
  background-image: url(./assets/LinkedIn2.png);
}

.X {
  background-image: url(./assets/X.png);
}

.Minu {
  background-image: url(./assets/line.png);
  width: 33px;
  display: none;
}


.burger {
  cursor: pointer;
  width: 24px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-direction: column;
}

.burger span {
  pointer-events: none;
  display: block;
  border: 2px solid black;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  transition: 0.3s;
}

.burger:hover span:nth-child(2) {
  box-shadow: -25px 0 2px black inset;
  width: 100%;
}

.burger:hover span:not(:nth-child(2)) {
  box-shadow: 25px 0 2px black inset;
  width: 100%;
}

.burger span:first-child {
  width: 80%;
}

.burger span:nth-child(2) {
  width: 60%;
}


main {
  width: calc(100% - 0px);
  height: calc(100vh - 0rem);
  margin: 0px;
  overflow: hidden;
  border-radius: 0 0 0px 0px;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg {
  background-image: url("./assets/Hero.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: scale(1.07) perspective(1000px) rotate3d(0, 1, 0, 0deg);
  transition: 400ms ease;
}

.bg-tilter {
  position: absolute;
  top: 0;
  left: 0;
  width: 45vw;
  height: 90vh;
  z-index: 3;
}

.bg-tilter:hover~.bg-wrapper {
  transform: scale(1.07) perspective(1000px) rotate3d(0, 1, 0, -3deg);
}

.bg-tilter:hover~.hero span {
  background-position: 50% -100%;
  transform: scale(1.07) perspective(1000px) rotate3d(0, 1, 0, 3deg);
}

main {
  position: relative;
  /* display: grid;
  grid-template-rows: 60px 1.5fr 3fr 60px;
  grid-template-columns: 60px repeat(4, 1fr) 60px; */
  background-color: white;
  overflow: hidden;
}

.hero {
  width: 100vw;
  height: 100vh;
  /* background-color: red; */
  position: relative;
}

.hero .layer {
  width: 100%;
  height: 100%;
  position: relative;
  scale: 1.2;
}




.hero h1.text {
  text-align: center;
  color: white;
  font-size: 8.8rem;
  font-weight: bold;
  letter-spacing: 0.1;
  position: absolute;
  top: 45% !important;
  left: 50% !important;
  translate: -50% -50%;
  z-index: 3;
  line-height: 0.8;
  transition: translate 1000ms cubic-bezier(0.79, -0.01, 0, 0.99), opacity 1000ms cubic-bezier(0.79, -0.01, 0, 0.99);
  text-transform: uppercase;
  -webkit-transition: translate 1000ms cubic-bezier(0.79, -0.01, 0, 0.99), opacity 1000ms cubic-bezier(0.79, -0.01, 0, 0.99);
  -moz-transition: translate 1000ms cubic-bezier(0.79, -0.01, 0, 0.99), opacity 1000ms cubic-bezier(0.79, -0.01, 0, 0.99);
  -ms-transition: translate 1000ms cubic-bezier(0.79, -0.01, 0, 0.99), opacity 1000ms cubic-bezier(0.79, -0.01, 0, 0.99);
  -o-transition: translate 1000ms cubic-bezier(0.79, -0.01, 0, 0.99), opacity 1000ms cubic-bezier(0.79, -0.01, 0, 0.99);
}

.hero h1.text::after {
  content: "";
  display: block;
  background-image: url(./assets/Sign.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -36px;
  right: -36px;
  filter: brightness(5) grayscale(1);
  -webkit-filter: brightness(5) grayscale(1);
  transition: translate 1000ms 200ms cubic-bezier(0.79, -0.01, 0, 0.99), opacity 1000ms 200ms cubic-bezier(0.79, -0.01, 0, 0.99);
}

.hero .Smalltext {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1;
  /* position: absolute; */
  /* top: calc(45% + 6rem) !important; */
  /* left: 50% !important; */
  /* translate: -50% -50%; */
  z-index: 3;
  line-height: 1;
  text-align: center;
  transition: translate 1000ms cubic-bezier(0.79, -0.01, 0, 0.99), opacity 1000ms cubic-bezier(0.79, -0.01, 0, 0.99);
  text-transform: uppercase;
}

.hero .Smalltext span {
  font-size: 0.8rem;
  font-weight: normal;
  display: block;
}

.hero h1.text.Loading {
  translate: -50% calc(-50% + 50px);
  opacity: 0;
}

.hero h1.text.Loading::after {
  translate: 0px 50px;
  opacity: 0;
}

.hero .layer.sky {
  background: url("./assets/HeroBG.jpg") no-repeat center center;
  z-index: 1;
  background-size: cover;
}

.hero .layer.back {
  background: url("./assets/back_mntn.webp") no-repeat center bottom;
  z-index: 2;
  background-size: contain;
  filter: brightness(0.7);
  opacity: 0
}

.hero .layer.top {
  background: url("./assets/top_mntn.webp") no-repeat center bottom;
  z-index: 4;
  background-size: contain;
  filter: brightness(0.9);
  opacity: 0
}

main .text-flavor {
  /* grid-row: 3;
  grid-column: 2; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  font-size: 14px;
  line-height: 1;
  z-index: 2;
  overflow: hidden;
  text-transform: uppercase;
  display: none;
}

.options {
  /* grid-row: 3;
  grid-column: 8 / 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 18px;
  align-items: end; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  z-index: 999;
  padding: 2rem 2rem;
}
.options.Loading .option{
transform: translateX(-50vw);
opacity: 0;
pointer-events: none;
}

.options .option {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 100;
  overflow: hidden;
  z-index: 3;
  line-height: 1.5;
  width: 100%;
  cursor: pointer;
  transition: 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.options.OnFooter  {
  position: static;
  translate: 0%;
  filter: invert(1);
  opacity: 0.7;
  padding: 1.5rem;
  width: 100%;
}

.options .option:nth-child(1) {
  transition-delay: 100ms;
}
.options .option:nth-child(2) {
  transition-delay: 200ms;
}
.options .option:nth-child(3) {
  transition-delay: 300ms;
}
.options .option:nth-child(4) {
  transition-delay: 400ms;
}

.options .option::before {
  content: attr(sign);
  display: block;
  top: -35px;
  left: 0;
  font-size: 14px;
  opacity: 0.4;
  color: #fff;
  pointer-events: none;
}

.options .option:nth-child(2) {
  /* grid-column: 2; */
}

.options .option:nth-child(3) {
  /* grid-column: 3; */
}

.options .option:nth-child(4) {
  /* grid-column: 4; */
}

.options .option:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #FFFFFF;
  z-index: -1;
  transform: translateX(-100%);
  transition: 0.5s;
}

.options .option:hover:after {
  transform: translateX(0);
  transition: 0.5s;
}

.options .option a,
.options .option span {
  text-decoration: none;
  color: white;
}

.options .option a {
  width: 100%;
  border-bottom: 1px solid #FFFFFF20;
  font-size: 14px;
  text-transform: uppercase;
}





.WelcomeMessage {
  /* padding: calc(var(--padding)* 1) calc(var(--padding)* 0.5); */
  position: relative;
  text-align: left;
  padding-top: 7.2rem;
  color: #0d192572;
  width: 72vw;
  margin: auto;
  margin-top: 10rem;
  display: block;
}

.WelcomeMessage p {
  text-align: left;
  font-size: var(--fontSize);
}

.Cot[sign=",,"]::before {
  content: attr(sign);
  position: absolute;
  top: 0px;
  font-size: 70px;
  filter: grayscale(0.8);
  /* left: 200px; */
}

.Cot[sign=",,"]::before {
  left: -20px;
}
























.Frame {
  /* background-image: url(./assets/Line\ 2.png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  /* height: 48.5vh; */
  background-color: #43ab70;
  position: relative;
}

.Frame:before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: 0;
}

.Frame,
.Frame:before {
  -webkit-clip-path: polygon(0 0,
      55% 0,
      59% 7.2%,
      100% 7.2%,
      100% 100%,
      0 100%);
  clip-path: polygon(0 0, 55% 0, 59% 7.2%, 100% 7.2%, 100% 100%, 0 100%);
  border-radius: 40px;
}

.FrameText {
  width: 65%;
  padding-top: 30px !important;
  padding: 20px;
  position: absolute;
}

.FrameText p {
  font-size: 80px;
  font-weight: 400;
  color: var(--blue_color);
  text-transform: uppercase;
  line-height: 1.2;
}

.FrameText p span {
  color: var(--green_color);
}

.FrameVideo {
  width: 34%;
  height: 400px;
  position: relative;
}

.FrameVideo video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.Container {
  /* display: flex;
    justify-content: center;
    /* align-items: center; */
  /* flex-wrap: wrap;
    margin-block: 50px; */
  /* overflow-x: hidden; */
  position: relative;
  width: 100%;
  padding-top: 50px;
}

.ContentLeftSection {
  width: 100%;
  display: flex;
  align-items: center;
  /* margin-top: 5rem; */
}

.ContentLeftSection .RightSection {
  position: absolute;
  /* scale: 1.5;  */
  width: 36%;
  /* height: 59vh; */
  right: -18%;
  /* translate: 14rem; */
}

.ImageRightSection {
  background-image: url(./assets/VectorSmartObject.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  /* width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    scale: 1.7;
    display: none; */
}

.ImageRightSection img {
  pointer-events: none;
  opacity: 0;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}



.SecondeWord {
  background: linear-gradient(to bottom,
      rgba(67, 171, 112, 1) 40%,
      rgba(45, 142, 111, 1) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

.AboutUs {
  font-size: 40px !important;
  font-weight: 400;
  color: #262c30;
}

.SecondeWord {
  /* font-size: 27px !important; */
  text-transform: uppercase;
}

/* #AboutUs .Pargraphs {
  width: 80%;
} */

/* #AboutUs .Pargraphs p{
  line-height: 0.9;
} */

#AboutUs .Pargraphs p div {
  line-height: 1.4;
  color: #5d5d5dc7;
  font-size: var(--fontSize);
}



.ContentLeftSection .LeftSection {
  padding: 130px;
  width: 80%;
  position: relative;
  z-index: 10;
}

.HeadTitle {
  background: linear-gradient(to bottom,
      rgba(67, 171, 112, 1) 40%,
      rgba(45, 142, 111, 1) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 70px;
  line-height: 1;
}

/* 
.LeftSection p {
  display: block;
  color: #5d5d5dc7;
  width: 80%;
  line-height: 1.5;
  font-size: 16px;
} */

.ContentLeftSection .RightSection .my-svg {
  /*position: absolute;
  z-index: -1;
  width: 100%;
  height:50%;
  background-color: transparent;
  left: 0%;
  */
  animation: scale 2.5s cubic-bezier(0.79, -0.01, 0, 0.99) infinite;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0.5;
  -webkit-animation: scale 2.5s cubic-bezier(0.79, -0.01, 0, 0.99) infinite;
}

.ContentLeftSection .RightSection .my-svg:first-of-type {
  scale: 1;
}

.ContentLeftSection .RightSection .my-svg:last-of-type {
  scale: 0.94;
}

/* .RightSection .SVG {
    width: 197%;
} */
.ContentLeftSection .RightSection svg circle {
  /* fill: none; 
    stroke: #00000054; */
  stroke-width: 0.1;
  animation: stroke-width 2.5s cubic-bezier(0.79, -0.01, 0, 0.99) infinite;
}

@keyframes stroke-width {
  0% {
    stroke-width: 0.1;
  }

  50% {
    stroke-width: 0.5;
  }

  100% {
    stroke-width: 0.1;
  }
}

@keyframes scale {
  0% {
    left: 2%;
  }

  50% {
    left: 0%;
  }

  100% {
    left: 2%;
  }
}

.Vision {
  padding: 130px;
  display: flex;
  gap: 20px;
  margin-block: 100px;
  overflow: visible;
}

.Vision .VisionSection,
.Vision .MissionSection {
  border: 1px solid #2E8E6F;
  width: calc(50% - 20px);
  border-radius: 20px;
  border-top-left-radius: 0px;
  position: relative;
  background-color: #ffff;
  overflow: visible;
}

.Vision .VisionSection::before,
.Vision .MissionSection::before {
  content: "";
  position: absolute;
  top: -18px;
  width: 150px;
  height: 18px;
  border: 1px solid #2E8E6F;
  border-top-left-radius: 20px;
  z-index: -3;
  left: -1px;
  background-color: #fff;
  background-color: #2E8E6F;
  border-bottom: none;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

.PartOne {
  display: flex;
  justify-content: flex-start;
  gap: 0px;
  align-items: center;
  border-bottom: 1px solid #2E8E6F;
}

.PartOne h2 {
  /* background: linear-gradient(to bottom,
      rgba(67, 171, 112, 1) 40%,
      rgba(45, 142, 111, 1) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  background-clip: text;
  color: #262c30;
  font-size: 74px !important;
  font-weight: 700;
  padding: 50px;
  border-right: 1px solid #2E8E6F;
  padding-inline: 75px;
  width: 75%;
  opacity: 0.9;
}

.PartOne span {
  background-image: url(./assets/Vision2.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  display: block;
  margin: auto;
}

.MissionIcon {
  background-image: url(./assets/Mission3.png) !important;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  display: block;
  position: relative;
  left: 5px;
  opacity: 0.9;
}

.PartTwo {
  padding: 2rem 2.5rem;
  padding-bottom: 3rem ;
  /* padding-block: 2.5rem; */
  line-height: 1.3;
  color: #5d5d5dc7;
  font-size: var(--fontSize);
}


.Certificate {
  position: relative;
  padding: var(--padding);
}

.ConCertificate {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ConCertificate span {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  height: 80vh;
  display: block;
}


/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
html,
body {
  background-color: hsl(240, 11%, 96%);
}

.Services {
  margin-block: 100px;
  overflow-x: hidden;
}

.ServicesFrame {
  background-image: url(./assets/Layer\ 16\ copy\ 8.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 33px;
  display: block;
  position: relative;
  margin-block: 100px;
}

.ServicesText {
  position: absolute;
  top: -122%;
  font-size: 100px !important;
  left: 0%;
  width: 100%;
  text-align: center;
  line-height: 0.9;
  background: linear-gradient(to bottom,
      rgba(67, 171, 112, 1) 24%,
      rgba(45, 142, 111, 1) 32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.ServicesText.ContactUsTitle {
  font-size: 72px !important;
  background: linear-gradient(to bottom,
      #267ba8 0%,
      #1e395b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}


.SecondeWord {
  background: linear-gradient(to bottom,
      rgba(67, 171, 112, 1) 40%,
      rgba(45, 142, 111, 1) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 27px;
  font-weight: 300;
}

.ServicesText.ContactUsTitle .SecondeWord {
  font-size: var(--fontSize);
}

.Hazardous {
  padding: 30px 8rem;
  width: 100%;
  text-align: center;
  color: #2d8e6f;
  line-height: 1;
  margin: auto;
  position: relative;
  /* clip-path: polygon(50% 0%, 100% 0, 100% 34%, 99.5% -40%, 100% 100%, 50% 100%, 0 100%, 0.5% -40%, 0 40%, 0 0); */
}

.HazardousEdite {
  padding: calc(var(--gap) * 10) calc(var(--gap) * 10);
  /* padding-inline: calc(var(--gap) * 8); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius);
  margin-block: var(--gap);
  color: #fff !important;
  position: relative;
  overflow: hidden;
}

.HazardousEdite::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #08080880;
  top: 0px;
  left: 0px;
  z-index: 0;
}

.HazardousEdite h2 {
  text-align: left;
  font-size: 50px !important;
  position: relative;
  z-index: 1;
}

.HazardousEdite .BgHazardous p {
  font-size: 45px !important;
}

.HazardousEdite p {
  text-align: left;
  padding: 0;
  width: 70%;
  margin: 0;
  line-height: 1.4;
  color: #fff !important;
  font-size: var(--fontSize);
}

.HazardousEdite h2,
.HazardousEdite .BgHazardous p, .HazardousEdite p,
.TextOutline {
  position: relative;
  z-index: 1;
}

.TextOutline {
  /* -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: currentColor;
  -webkit-text-stroke-width: 0.01em; */
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 12rem;
  font-weight: 700;
  opacity: 1;
  background-size: contain;
  width: 30%;
  height: 25%;
  background-position: right bottom;
  background-repeat: no-repeat;
  /* display: none; */
  font-size: 0px;
  filter: grayscale(1) brightness(10);
}

.Hazardous::before {
  content: attr(Sign);
  display: block;
  position: absolute;
  width: 100%;
  text-align: left;
  pointer-events: none;
  opacity: 0.1;
  bottom: -20px;
  font-size: 270px;
  font-weight: 900;
  color: #000;
}

.BgHazardous {
  /* background-color: #fff; */
  text-transform: uppercase;
}

.BgHazardous h2 {
  /* font-size: 70px; */
  font-weight: 600;
  margin: 0px;
}

.BgHazardous p {
  font-size: 60px;
  font-weight: 400;
}

.Border {
  border: 1px solid rgba(45, 142, 111, 1);
  border-radius: 60px;
  width: 100%;
  height: 100px;
  display: none;
  padding-top: 0px;
  position: absolute;
  bottom: 0%;
  border-top: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.TextHazardous {
  font-size: var(--fontSize);
  text-align: justify;
  padding-inline: 130px;
  color: #454545;
  margin: auto;
  padding: 0px 8rem;
  margin-bottom: 30px;
  /* font-weight: 400; */
  color: rgb(17 112 52);
  /* max-width: 1200px; */
}

.Images {
  /* background-image: url(./assets/Line\ 2\ copy\ 6.png); */
  /* background-position: center;
    background-repeat: no-repeat;
    background-size: contain; */
  width: 90%;
  margin-top: 50px;
  margin: auto;
  /* height: 80vh; */
  position: relative;
  padding-block: 70px;
  padding-inline: 30px;
  display: flex;
  gap: 25px;
  z-index: 10;
  /* background-color: #43ab70; */
}

/* .Images::before {
    content: '';
width: calc(100% - 2px);
height: calc(100% - 2px);
background: #fff;
display: block;
position: absolute;
top: 1px;
left: 1px;
z-index: 0;
border-bottom: 1px solid #fff;
}
.Images, .Images:before {
-webkit-clip-path: polygon(0 0, 55% 0, 59% 7.2%, 100% 7.2%, 100% 100%, 0 100%);
clip-path: polygon(0 0, 55% 0, 59% 7.2%, 100% 7.2%, 100% 94%, 0 94%);
border-radius: 40px;
} */
.Item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 40%;
  border-radius: 10px;
  aspect-ratio: 4 / 5;
  /* height: 65vh; */
  position: relative;
  cursor: pointer;
  transition: 1s;
}

.Items.Active {
  animation: ItemAnimate 0.2s ease-in-out forwards;
}

.Items.Hide {
  animation: ItemAnimateReverse 0.2s 1.6s ease-in-out forwards;
}

@keyframes ItemAnimate {
  0% {
    transform: none;
    opacity: 1;
  }

  100% {
    transform: translateY(-25%);
    opacity: 0;
  }
}

@keyframes ItemAnimateReverse {
  0% {
    transform: translateY(-25%);
    opacity: 0;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

/* .Item:nth-child(2) {
    background-position: top;
} */

.EndFrame {
  background-image: url(./assets/Layer\ 16\ copy\ 9.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 100%;
  height: 33px;
  margin-block: 50px;
}

.Envir {
  padding-top: 55px;
  font-size: 50px !important;
}

.pEnvir {
  font-size: 40px !important;
  padding-bottom: 10px;
}

.Slider {
  padding-inline: var(--gap);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 100%;
  height: 80vh;
  position: relative;
  border-radius: 25px;
  transition: 1s !important;
}

.swiper-slide.blur {
  transition: 4s !important;
  backdrop-filter: brightness(0);
  filter: blur(15px);
}

.Number {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  bottom: 5%;
  left: 5%;
  opacity: 0;
  transform: translateX(-25%);
}

.mySwiper3,
.swiper-wrapper {
  border-radius: 25px !important;
}

.TextSilder {
  position: absolute;
  left: 23%;
  bottom: 20%;
  color: #fff;
}

.TextSilder h2 {
  font-size: 40px;
  opacity: 0;
  transform: translateX(-25%);
}

.TextSilder p {
  font-size: 30px;
  opacity: 0;
  transform: translateX(-25%);
}

.BtnSilders {
  position: absolute;
  left: 25%;
  bottom: 10%;
  color: #fff !important;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.BtnSilders span {
  position: absolute;
  z-index: 10;
  left: 47%;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.QualtyPolicy {
  margin-top: 100px;
}

.Quality {
  background: linear-gradient(to bottom,
      rgba(67, 171, 112, 1) 40%,
      rgba(45, 142, 111, 1) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2.7rem;
  text-align: left;
}

.Hazardous[sign="*"]::before {
  line-height: 130px;
  left: 100px;
}

.Policy {
  font-size: 110px !important;
  color: rgba(45, 142, 111, 1);
  text-align: left;
}

.BordPolicy {
  bottom: 3% !important;
}

.Number.Active {
  animation: animat 1s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes animat {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.TextSilder h2.Active {
  animation: ToRight 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.TextSilder p.Active {
  animation: ToRight 1s 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.TextPolicy {
  font-weight: 300;
  text-align: left;
  color: rgb(17 112 52);
  max-width: 1200px;
  margin-right: auto;
  margin-left: 0px;
  padding: 0;
}

.Cons {
  padding-inline: 8rem;
}

.Slice {
  /* border: 1px solid #43ab70; */
  border-radius: var(--radius);
  transition: 0.3s;
}

.Slice:not(:first-child) {
  margin-top: 10px;
}

.Slice:last-child {
  margin-bottom: 100px;
}

.ContentSlice {
  padding: 0px 0px;
  color: rgb(17 112 52);
  display: flex;
  justify-content: space-between;
}

.ContentSlice p {
  width: 75%;
  font-size: var(--fontSize);
  font-weight: 200;
  transition: 0.3s;
}

/* 
.Slice:hover {
  background: linear-gradient(
    to bottom,
    rgba(67, 171, 112, 0) 0%,
    rgba(45, 142, 111, 0.2) 70%
  );
} */

.Slice:hover .ContentSlice p {
  /* color: #fff; */
}

.ContentSlice span {
  background-image: url(./assets/Arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  transition: 0.5s;
  display: none;
}

.Slice:hover .ContentSlice span {
  background-image: url(./assets/Layer\ 1.png);
  transition: 0.5s;
}

.TextFilter {
  opacity: 0;
  color: #fff;
  font-size: 30px;
  position: absolute;
  left: 5%;
  bottom: 15%;
  z-index: 100;
}

.TextFilter h2 {
  font-size: 40px !important;
}

.TextFilter.Active {
  animation: ToRight 0.3s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ToRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.Close {
  width: 40px;
  height: 40px;
  /* background-image: url(./assets/exit\\(1\).png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 2%;
  top: 3%;
  z-index: 10;
  display: none;
  cursor: pointer;
}

.SectionOurSecrvices {
  position: fixed;
  z-index: 1000;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
  transition: 500ms cubic-bezier(0.79, -0.01, 0, 0.99);
  opacity: 0;
  pointer-events: none;
  background-color: transparent;
  /* transform: translateY(100vh); */
  padding: 0px;
  margin: 0px;
}

.SectionOurSecrvices.Active {
  opacity: 1;
  background-color: #fff;
  pointer-events: all;
  /* transform: translateY(0vh); */
}

/* .SectionOurSecrvices.Hide {
    animation: SectionOurSecrvicesRevert 400ms 0ms ease-in-out forwards;
} */
/* @keyframes SectionOurSecrvices {
    0% {
        opacity: 0;
        pointer-events: none;
        background-color: transparent;
    }
    100% {
        opacity: 1;
        background-color: #fff;
        pointer-events: all;
    }
}
@keyframes SectionOurSecrvicesRevert {
    0% {
        opacity: 1;
        pointer-events: all;
        background-color: #fff;
    }
    100% {
        opacity: 0;
        background-color: transparent;
        pointer-events: none;
    }
} */
.SectionOurSecrvices::-webkit-scrollbar {
  width: 0px;
}

.SectionOurSecrvices .Image {
  opacity: 0;
  transition: 500ms 00ms cubic-bezier(0.79, -0.01, 0, 0.99);
}

.SectionOurSecrvices.Active .Image {
  opacity: 1;
  transition: 500ms 250ms cubic-bezier(0.79, -0.01, 0, 0.99);
}

.SectionOurSecrvices h2 {
  transform: translateY(100vh);
  transition: 500ms 0ms cubic-bezier(0.79, -0.01, 0, 0.99);
}

.SectionOurSecrvices.Active h2 {
  transform: translateY(0vh);
  transition: 500ms 600ms cubic-bezier(0.79, -0.01, 0, 0.99);
}

.Closer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 19;
  background-color: transparent;
}

.NewItem {
  transition: 500ms cubic-bezier(0.79, -0.01, 0, 0.99);
}

.OurServices {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  margin: auto;
  margin-top: 0px;
  position: absolute;
  overflow-y: auto;
  padding: 4rem 8rem;
}

.OurServices .Image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 60%;
  margin: auto;
  height: 90vh;
  border-radius: var(--radius);
  position: relative;
  z-index: 20;
}

.OurServices h2 {
  text-align: center;
  font-size: 175px;
  font-weight: 800;
  background: linear-gradient(to bottom,
      rgb(44 183 139) 40%,
      rgb(188 227 205) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: -150px;
  text-transform: uppercase;
  position: relative;
  z-index: 23;
}

.Management {
  font-size: 160px !important;
  margin-top: -120px !important;
}

.Transportation {
  font-size: 125px !important;
  margin-top: -100px !important;
}

.OurServices p {
  text-align: center;
  font-size: 20px;
  font-weight: 200;
  color: rgba(45, 142, 111, 1);
  line-height: 1.3;
}

.Clients {
  padding-block: 100px;
  /* overflow: hidden; */
  position: relative;
  margin-bottom: 0px;
}

.cHead {
  width: calc(100vw - 16rem);
  margin: auto;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  position: relative;
}

.cHead h2 {
  font-size: 2.7rem;
  color: #208343;
  background: linear-gradient(to bottom,
      rgba(67, 171, 112, 1) 40%,
      rgba(45, 142, 111, 1) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.cHead img {
  width: 100%;
  object-fit: contain;
}

.cHead .sm_txt {
  width: 16%;
  position: absolute;
  right: 0;
  top: 30%;
  font-size: calc(var(--fontSize) * 0.72);
  color: #208343;
  text-align: right;
}

.cHead p {
  width: 75%;
  color: #00000090;
  font-size: var(--fontSize);
  margin-top: -20px;
}

.BgLogo {
  background-image: url(./assets/Sign.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 0;
  width: 20%;
  height: 800px;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  filter: grayscale(1);
  opacity: 0.05;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.LastBgLogo {
  filter: none;
  z-index: 0;
  /* opacity: 1; */
  width: 20%;
  height: 600px;
  top: 50px;
  opacity: 0;
  /* transform: scale(2); */
}

.LastBgLogo {}

.PartOfClients {
  display: flex;
  white-space: nowrap;
  padding: 50px 0px;
  gap: 100px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}

.SlideClients {
  display: flex;
  align-items: center;
  gap: 100px;
}

.Right {
  animation: autoslider 38s infinite linear;
}

.Left {
  animation: autosliderRevert 38s infinite linear;
}

.ClientName {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 85px;
  display: block;
}

@keyframes autoslider {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes autosliderRevert {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.img-text h3 img {
  width: auto;
  height: auto;
  display: inline-block;
  max-width: 100%;
  max-height: 100px;
}

.img-text {
  /* width: 220px; */
  height: 100%;
  margin: 10px;
  /* border-radius: 10px; */
  background-position: center center;
  background-size: cover;
  position: relative;
  /* filter: grayscale(1); */
  overflow: hidden;
  margin: 0px;
  transition: all 0.5s;
  display: flex;
  flex-grow: 1;
  height: 66vh;
  border-radius: var(--radius);
  min-width: 25%;
}

.img-text p {
  position: absolute;
}

.GalleryAnimation {
  align-items: flex-start !important;
}

.ConImageText {
  position: relative;
  background-color: #f2f2f2;
  width: calc(50% - var(--gap));
  height: 66vh;
  border-radius: var(--radius);
  overflow: hidden;
}

.ConImageText:hover .ImagePartOne {
  transition: 1s;
  clip-path: circle(0% at 100% 100%);
}

.CardsCenter {
  width: calc((100% / 3) - 14px);
}

.ConImageText .NumberAnimation {
  position: absolute;
  top: 3rem;
  left: 3rem;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #fff;
  transition: 1.3s;
}

.ConImageText:hover .NumberAnimation {
  transition: 0.5s;
  color: #000;
}

.NumberAnimation::after {
  content: "";
  height: 1px;
  width: 30px;
  background-color: #fff;
  display: inline-block;
  transition: 0.5s;
}

.NumberAnimation::before {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #fff;
  display: inline-block;
  transition: 0.5s;
}

.ConImageText:hover .NumberAnimation::before {
  transition: 0.5s;
  width: 30px;
  background-color: #00000050;
}

.ConImageText:hover .NumberAnimation::after {
  transition: 0.5s;
  width: 0px;
  background-color: #00000050;
}

.ConImageText .ConDetailes {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  transition: 0.5s;
}

.ConDetailes {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 10px; */
  color: #fff;
  width: 75%;
  position: relative;
}

.IconAndName {
  display: flex;
  align-items: center;
  gap: 0px;
  transition: 0.3s;
}

.IconAnimation {
  filter: brightness(3) grayscale(1);
}

.IconAnimation,
.IconAnimation2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0px;
  height: 0px;
  display: inline-block;
  transition: 0.3s;
}

.IconAnimation2 {
  opacity: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.ConImageText:hover .IconAndName {
  gap: 0px;
}

.ConImageText:hover .IconAnimation2 {
  width: 64px;
  height: 64px;
  opacity: 1;
}

.ConImageText:hover .IconAnimation {
  width: 0px;
  height: 0px;
}

.ConImageText:hover .ConDetailes {
  /* top: 50%; */
  color: #000;

}

.ConImageText .ParagraphAnimation {
  /*position: absolute;
  */opacity: 0;
  transition: 0.3s;
  z-index: 12;
  max-height: 1px;
  font-size: 0px;
  display: block;
  transition: 400ms ;
  -webkit-transition: 400ms ;
  -moz-transition: 400ms ;
  -ms-transition: 400ms ;
  -o-transition: 400ms ;
  color: #000;
  width: 0%;
  padding: 0px;
  /* overflow: none;
  text-overflow:ellipsis;
  word-wrap:normal; 
  word-break: keep-all; */
}

.ConDetailes h3 {
  text-transform: uppercase;
}

.ConImageText:hover .ParagraphAnimation {
  opacity: 1;
  max-height: 200px;
  font-size: 14px;
  width: 80%;
}

.Image_Text {
  min-width: 22%;
}

.ImagePartOne {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: circle(141.4% at 100% 100%);
  z-index: 0;
  transition: 1s;
  /* animation: ; */
}

.ImagePartOne:hover {
  flex-grow: 1 !important;
  z-index: 0 !important;
}

.img-text:hover {
  flex-grow: 2;
  /* transform: scale(1.1); */
  /* box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.215); */
  cursor: pointer;
  filter: none;
  /* background-size: auto; */
  z-index: 1;
  border-radius: var(--radius);
}

.img-text h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  /* bottom: -300px; */
  /* left: -300px; */
  /* right: 50%;
transform: translate(-50% , -50%); */
  width: 150%;
  /* background-color: rgba(255, 255, 255, 0.826); */
  padding: 1.5rem 2rem;
  /* box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.096); */
  /* border-radius: 1rem; */
  /* margin-inline: auto; */
  /* opacity: 0; */
  transition: all 0.5s;
  font-size: 20px;
  /* background: linear-gradient(7deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0) 100%); */
  border-radius: var(--radius);
  display: inline-block;
  color: #fff;
  bottom: 0px;
  left: 0px;
  white-space: wrap;
}

/* .img-text:hover h3 {
bottom: 0px;
left: 0px;
width: 100%;
} */

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  flex-wrap: wrap;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.ContactUs {
  padding: var(--padding);
  padding-bottom: 0rem;
}

.ContentContactUS {
  display: flex;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  ;
  /*align-items: center;
  */
  /*gap: 20px;
  */
  -webkit-border-radius: var(--radius);
  -moz-border-radius: var(--radius);
  -ms-border-radius: var(--radius);
  -o-border-radius: var(--radius);
}

.ContentContactUS .LeftSection {
  width: 35%;
}

.ContentContactUS .RightSection {
  width: 50%;
  /*width: calc(50% - var(--gap));
  */
  padding: 2rem;
  padding-block: 4rem;
  background-color: #fbfbfb;
  border-radius: 0px var(--radius) var(--radius) 0px;
  -webkit-border-radius: 0px var(--radius) var(--radius) 0px;
  -moz-border-radius: 0px var(--radius) var(--radius) 0px;
  -ms-border-radius: 0px var(--radius) var(--radius) 0px;
  -o-border-radius: 0px var(--radius) var(--radius) 0px;
}

.ContentContactUS .RightSection p {
  font-size: var(--fontSize);
  font-weight: 400;
  color: var(--blue_color);
  text-align: center;
  text-transform: uppercase;
}

.ContentContactUS .RightSection form {
  width: 100%;
}

.ContentContactUS .RightSection form .Info {
  width: 100%;
  margin-top: 40px;
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #1e395b50;
  font-size: var(--fontSize);
}

.ContentContactUS .RightSection form .Inputs {
  height: 30px;
  padding-bottom: 15px;
  font-size: var(--fontSize);
}

.Info::placeholder {
  color: var(--blue_color);
  text-transform: uppercase;
}

.TextAera {
  position: relative;
  display: flex;
}

.the__message {
  width: 100% !important;
  /* height: auto; */
}

.BtnMessage {
  cursor: pointer !important;
  position: absolute;
  bottom: -3px;
  right: -3px;
  background-image: url(./assets/send.png);
  background-position: center;
  background-size: 50px auto;
  background-repeat: no-repeat;
  width: 55px;
  height: 34px;
  background-color: transparent;
  border: none;
  outline: none;
  background-color: #FBFBFB;
  transition: 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition: 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.BtnMessage:hover {
  transform: translate(3px, -3px) scale(1.05);
  -webkit-transform: translate(3px, -3px) scale(1.05);
  -moz-transform: translate(3px, -3px) scale(1.05);
  -ms-transform: translate(3px, -3px) scale(1.05);
  -o-transform: translate(3px, -3px) scale(1.05);
}

.ContentRightSection {
  padding: calc(var(--gap) * 3);
}

/* .ContactLeftSection p {
  color: var(--blue_color);
  font-size: 70px;
  font-weight: 600;
  line-height: 0.8;
  margin-bottom: 20px;
  text-align: center;
} */

/* .ContactLeftSection p span {
  color: var(--green_color);
  font-weight: 400;
  font-size: 65px;
  letter-spacing: 5px;
} */

#GoogleMap {
  display: block;
  border-radius: var(--radius) 0 0 var(--radius);
  height: 720px;
  -webkit-border-radius: var(--radius) 0 0 var(--radius);
  -moz-border-radius: var(--radius) 0 0 var(--radius);
  -ms-border-radius: var(--radius) 0 0 var(--radius);
  -o-border-radius: var(--radius) 0 0 var(--radius);
}
.GoogleMapP {
  font-size: var(--fontSize);
}
.gm-style-iw-chr {
  height: 15px;
}

.InfoContactUs {
  width: 90%;
  margin: auto;
  background-color: #fbfbfb;
  border-radius: var(--radius);
  padding: var(--gap);
  padding-inline: 14rem;
  text-align: center;
  /* margin-top: 1rem; */
}

.EmailAndMob {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  gap: 20px;
  padding: 50px 0px;
  width: 85%;
  /* border-bottom: 2px solid #08080810; */
  margin: auto;
  flex-wrap: wrap;
}

.EmailAndMob a {
  text-decoration: none;
  color: var(--blue_color);
  display: block;
  /* direction: ; */
}

.fristChild span {
  background-position: left top;
  background-size: 36px auto;
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  display: inline-block;
}

.EmailAndMob p {
  color: #353746;
  text-align: left;
  font-size: var(--fontSize);
  background-position: left top;
  background-size: 36px auto;
  background-repeat: no-repeat;
  padding-left: 42px;
  vertical-align: top;
}

.EmailAndMob .fristChild {
  width: 100%;
  order: 2;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  padding-left: 0px;
}

.Address {
  display: block;
  font-size: 22px;
  color: var(--blue_color);
  font-weight: 100;
}

/* ######################## */
.Accreditations {
  padding: 130px;
  display: flex;
  gap: 20px;
  margin-block: 100px;
  overflow: visible;
  justify-content: center;
  padding-top: 0px;
}

.Accreditations .image {
  height: auto;
  width: auto;
  max-width: 40vw;
  /* max-height: 80vh; */
  display: inline-block;
  transition: 0.5s;
  border-radius: var(--radius);
  filter: grayscale(1);
  /* border: 1px solid #000; */
}

.Accreditations .image:hover {
  /* border: 1px solid #43ab70; */
  filter: grayscale(0);
}

.cursor-follower {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: #43ab70;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999999;
  opacity: 0.3;
  display: none;
}

/* Tareeeeek */

.CardsRaduis {
  /* width: calc(50% - 20px); */
  height: auto;
}

.CardsRaduis .Card {
  position: relative;
  height: 100%;
  background-color: hsl(240, 11%, 96%);
  border-radius: 20px;
  border-bottom-right-radius: 70px;
  overflow: hidden;
}

.CardsRaduis .Card .Box {
  /* position: absolute; */
  inset: 0px;
  background-color: hsl(240, 11%, 96%);
  border-radius: 10px;
}

/* .CardsRaduis .Card .Box img {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
} */
.CardsRaduis .Card .Box .IconRaduis {
  position: absolute;
  bottom: 0;
  width: 170px;
  height: 50px;
  background-color: hsl(240, 11%, 96%);
  border-top-left-radius: 30px;
  right: 0;
}

.CardsRaduis .Card .Box .IconRaduis::before {
  content: '';
  position: absolute;
  left: -22px;
  bottom: 0;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-bottom-right-radius: 30px;
  box-shadow: 5px 5px 0px 5px hsl(240, 11%, 96%);
}

.CardsRaduis .Card .Box .IconRaduis::after {
  content: '';
  position: absolute;
  right: 0px;
  top: -30px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-bottom-right-radius: 30px;
  box-shadow: 5px 5px 0px 5px hsl(240, 11%, 96%);
  rotate: 1deg;
}

.IconBox {
  position: absolute;
  right: 2.7rem;
  bottom: 0.5rem;
  font-size: 14px;
  color: #3BA16F;
  cursor: pointer;
  background-image: url(assets/Arrow.webp);
  background-size: 18px;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 10px 30px 10px 15px;
  transition: 200ms;
  font-weight: 100;
}
.IconBox:hover {
  transform: scale(1.1);
}


:root {
  --TechBorderWidth: 10px;
  --TechBorderHeight: 15px;
}

footer {
  position: relative;
  padding: 1rem 2rem;
  width: 90%;
  margin: auto;
  background-color: #00000059;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  -webkit-clip-path: polygon(var(--TechBorderWidth) 0%, calc(100% - var(--TechBorderHeight)) 0, 100% var(--TechBorderHeight), 100% 100%, calc(100% - var(--TechBorderWidth)) 100%, var(--TechBorderHeight) 100%, 0 calc(100% - var(--TechBorderHeight)), 0 0);
  clip-path: polygon(var(--TechBorderWidth) 0%, calc(100% - var(--TechBorderHeight)) 0, 100% var(--TechBorderHeight), 100% 100%, calc(100% - var(--TechBorderWidth)) 100%, var(--TechBorderHeight) 100%, 0 calc(100% - var(--TechBorderHeight)), 0 0);
}


.poweredBy {
  width: 100%;
  /* position: absolute; */
  z-index: 3;
  /* margin-top: -6px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.7;
}


footer::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  /* left: 50%;
  transform: translateX(-50%); */
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  z-index: 1;
  background-color: hsl(240, 11%, 96%);
  -webkit-clip-path: polygon(var(--TechBorderWidth) 0%, calc(100% - var(--TechBorderHeight)) 0, 100% var(--TechBorderHeight), 100% 100%, calc(100% - var(--TechBorderWidth)) 100%, var(--TechBorderHeight) 100%, 0 calc(100% - var(--TechBorderHeight)), 0 0);
  clip-path: polygon(var(--TechBorderWidth) 0%, calc(100% - var(--TechBorderHeight)) 0, 100% var(--TechBorderHeight), 100% 100%, calc(100% - var(--TechBorderWidth)) 100%, var(--TechBorderHeight) 100%, 0 calc(100% - var(--TechBorderHeight)), 0 0);
}

footer p {
  font-size: 12px;
}

footer p a {
  color: #204d72;
}


/* ///////////////////////////////////// */
/* //////////Medai Query/////////////// */
/* /////////////////////////////////// */

@media (max-width: 1350px) {
  .FrameText p {
    font-size: 75px;
  }

  .ContentLeftSection .RightSection {
    width: 40%;
    /* height: 60vh; */
    right: -22%;
  }

  .ContentLeftSection .LeftSection {
    /* padding-left: 6rem; */
  }

  .Vision {
    padding: 0;
    /* padding-inline: 6rem; */
    gap: 10px;
  }

  .PartOne h2 {
    width: 70%;
    font-size: 60px !important;
    padding-inline: 0;
    padding: 30px;
  }

  .PartOne span {
    width: 80px;
    height: 80px;
  }

  /* .Head {
    width: 85vw !important;
  } */
  .HazardousEdite .BgHazardous p {
    font-size: 35px !important;
  }

  .cHead .sm_txt {
    top: 20%;
    font-size: calc(var(--fontSize) * 0.6);
  }
}

@media (max-width: 1200px) {

  /* .ConImageText:hover .ConDetailes {
    top: 40%;
  } */
  /* .ConImageText:hover .IconAnimation2 {
    width: 150px;
    height: 150px;
  } */

  .CardsCenter .NumberAnimation {
    left: 2rem;
  }

  .CardsCenter:hover .IconAnimation2 {
    width: 100px;
    height: 100px;
  }

  .ServicesText.ContactUsTitle {
    top: 20% !important;
    font-size: 40px !important;
  }

  .ContentSlice p {
    width: 100%;
    /* font-size: var(--fs); */
  }

  .Accreditations {
margin-block: 0px;
margin-top: 50px;
  }

}

@media (max-width: 1150px) {
  .hero .Smalltext {
    font-size: 1.4rem !important;
  }

  .FrameText p {
    font-size: 50px;
  }

  /* .ContentLeftSection {
    margin-top: 5rem;
  } */

  .ContentLeftSection .RightSection {
    width: 37%;
    /* height: 60vh; */
    right: -19%;
  }

  .ContentLeftSection .LeftSection {
    padding-left: 6rem;
    width: 100%;
  }

  .Vision {
    padding: 0;
    padding-inline: 6rem;
    gap: 10px;
  }

  .PartOne h2 {
    width: 70%;

  }

  .PartOne span {
    width: 65px;
    height: 65px;
  }

  /* .VisionSection::before,
  .MissionSection::before {
    top: -2.7%;
  } */

  .SecondeWord {
    font-size: 24px !important;
  }

  .ServicesText.ContactUsTitle .SecondeWord {
    font-size: 20px !important;
  }

  .ServicesText {
    top: -50%;
    font-size: 80px !important;
  }

  .Vision {
    padding: 0;
    padding-inline: 15px;
  }

  .Accreditations {
    padding: 15px;
    gap: 10px;
  }

  .Accreditations .image {
    max-width: calc(50vw - 4rem) !important;
  }

  .ContentLeftSection .LeftSection {
    /* padding: 0 !important; */
    padding-left: 3rem !important;
    /* width: auto !important; */
  }
  .WelcomeMessage {
    width: calc(100% - 6rem);
    margin-top: 50px;
  }

  .cHead {
    width: calc(100vw - 8rem) !important;
  }

  .cHead p {
    margin-top: -8px !important;
  }

  .Haed.Light {
    width: 80vw !important;
  }

  .HazardousEdite .BgHazardous p {
    font-size: 28px !important;
  }

  /* .TextHazardous {
    font-size: 16px;
  } */

  .HazardousEdite {
    padding-inline: calc(var(--gap)* 5) !important;
  }

  .CardsCenter .IconAndName h2 {
    font-size: 18px;
  }

  .Cons {
    padding-inline: 4rem;
  }

  .Hazardous[sign="*"]::before {
    left: 20px;
  }

  /* .ContentContactUS .RightSection p {
    font-size: 20px;
  } */

  .options {
    /* grid-column: 8 / 1 !important;
  grid-template-columns: repeat(4, 0.5fr) !important;
  margin-inline: 15px !important; */
    width: 80vw;
    left: 50%;
    translate: -50%;
    flex-direction: row;
  }

  .Hazardous {
    padding: 50px 4rem !important;
  }

  .HazardousEdite h2 {
    font-size: 30px !important;
  }

  .HazardousEdite .BgHazardous p {
    font-size: 22px !important;
  }

  /* .HazardousEdite p {
    font-size: 12px !important;
    ;
  } */

}

@media (max-width: 1000px) {


  :root {
    --fontSize: 14px;
  }
  .HeadText {
    display: none !Important;
  }

  .cursor-follower {
    display: none;
  }

  .hero h1.text::after {
    width: 36px;
    height: 36px;
    top: -20px;
    right: -20px;
  }

  .Services {
    margin-block: 0;
  }

  .ServicesFrame {
    margin-block: 50px;
  }

  .QualtyPolicy {
    margin-top: 0px;
  }

  .BgLogo {
    width: 344px;
  }
}

@media (max-width: 950px) {
  .Hero {
    padding-inline: 3rem;
  }

  .hero .Smalltext {
    font-size: 1.2rem !important;
  }

  .hero h1.text {
    font-size: 6.8rem !important;
  }

  .FrameText {
    top: 30%;
    width: 75%;
  }

  .FrameText p {
    font-size: 36px;
  }


  .Certificate {
    padding: 0;
    padding-inline: 3rem;
  }

  .ContentLeftSection .RightSection {
    width: 44%;
    /* height: 28vh; */
    right: -24%;
    position: absolute;
    /* z-index: -1; */
    translate: none;
  }

  .ConCertificate {
    flex-direction: column;
  }

  .ConCertificate span {
    width: 100%;
  }

  .PartOne h2 {
    font-size: 20px !important;
    padding: 15px 30px;
    
  }
  .PartOne span {
    width: 57px;
    height: 87px;
    padding: 15px;
}

/* 
  .PartTwo {
    padding: 1rem 1rem;
  } */

  /* .Head:not(.Light){
    width: 60vw !important;
  } */
  .SecondeWord {
    font-size: 18px !important;
  }

  .ServicesText.ContactUsTitle .SecondeWord {
    font-size: 18px !important;
  }

  .ServicesText {
    top: -30%;
    font-size: 50px !important;
  }

  .CardsCenter:hover .ParagraphAnimation {
    font-size: 14px;
  }

  .cHead .sm_txt {
    top: 25%;
    font-size: calc(var(--fontSize) * 0.67);
  }

  /* .Hazardous[sign="*"]::before {
    left: 45px;
    font-size: 150px;
  } */

  .ContactUs {
    padding: 0;
    padding-bottom: 0rem;
  }

  .ContentRightSection {
    padding: 0;
  }

  .EmailAndMob {
    gap: 20px;
  }
/* 
  .EmailAndMob p {
    width: calc(100% / 3);
  } */

  .Accreditations {
    margin-top: 25px;
  }
  .CardsRaduis .Card .Box .IconRaduis {
  width: 130px;
  height: 40px;
  }
  .IconBox {
    font-size: 12px;
    background-size: 10px;
    padding: 5px 23px 5px 0px;
    right: 1.7rem;
  }

}

@media (max-width: 800px) {

  .hero .Smalltext {
    font-size: 0.8rem !important;
  }

  .hero h1.text {
    font-size: 6rem !important;
  }


  .options .option a {
    font-size: 12px !important;
  }

  .ContentLeftSection .RightSection {
    width: 57%;
    right: -30%;
  }

  .AccreditationsText {
    font-size: 50px !important;
  }

  /* .HeadTitle {
    font-size: 50px !important;
  } */

  .Vision .VisionSection,
  .Vision .MissionSection {
    width: 50%;
  }

  /* .Vision {
    flex-direction: column;
    gap: 50px;
  } */

  /* .Vision .VisionSection::before,
  .Vision .MissionSection::before {
    top: -3.5%;
  } */

  .AboutUs {
    font-size: 36px !important;
  }

  /* .ContentLeftSection .LeftSection p {
    font-size: 14px;
  } */
  /* .Accreditations .image {
    max-width: 60vw !important;
  } */
  .cHead p {
    /* font-size: 0.66rem !important; */
    width: 80% !important;
  }

  .cHead h2 {
    font-size: 1.7rem !important;
  }

  .BgHazardous h2 {
    font-size: 40px !important;
  }

  .HazardousEdite .BgHazardous p {
    font-size: 22px !important;
  }

  .HazardousEdite p {
    width: 80%;
    /* font-size: 10px; */
  }

  .ConImageText, .CardsCenter {
    width: 100%;
  }

  .cHead .sm_txt {
    top: 10%;
    font-size: calc(var(--fontSize) * 0.67);
    width: 20%;
  }

  .ServicesText.ContactUsTitle {
    top: 20% !important;
    font-size: 30px !important;
  }

  .ServicesText.ContactUsTitle .SecondeWord {
    font-size: 12px !important;
  }

  .ContentContactUS {
    flex-direction: column;
    padding-block: 30px !important;
  }

  /* .ContentContactUS .RightSection p {
    font-size: 16px;
  } */

  .ContentContactUS .LeftSection {
    width: 95%;
    order: 2;
    margin: auto;
  }

  .ContentContactUS .RightSection {
    width: 95%;
    margin: auto;
    border-radius: 20px;
  }

  .IconAndName h3 {
    font-size: 18px !important;
  }

  .ConImageText .ConDetailes {
    left: 11% !important;
  }

  #GoogleMap {
    border-radius: 20px;
  }
}











@media (max-width: 700px) {

  /* .HeadText h2 {
    font-size: 24px;
  }
  .HeadText p {
    font-size: 14px;
  } */
  .SecondeWord {
    font-size: 14px !important;
  }

  .ServicesText {
    top: 0% !important;
    font-size: 40px !important;
  }

  .BgHazardous h2 {
    font-size: 30px !important;
  }

  .HazardousEdite .BgHazardous p {
    font-size: 20px !important;
  }

  /* .TextHazardous {
    font-size: 14px;
  } */

  .HazardousEdite {
    padding-inline: calc(var(--gap)* 3) !important;
  }

  .HazardousEdite h2 {
    font-size: 24px !important;
  }

  .HazardousEdite .BgHazardous p {
    font-size: 20px !important;
  }

  /* .HazardousEdite p {
    font-size: 10px !important;
    ;
  } */

  .EmailAndMob {
    gap: 20px;
    flex-direction: column;
  }

  .EmailAndMob p {
    width: 100%;
  }

  footer {
    width: calc(100% - 3rem);
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}











@media (max-width: 600px) {



  .WelcomeMessage {
    padding: 5rem 3rem;
    padding-bottom: 0px;
    width: 100%;
    margin-top: 36px;
  }

  .Cot[sign=",,"]::before {
    top: -20px;
    left: auto;
  }

  /* .Head{
    width: 85vw !important;
  }
  .Head {
    width: 85vw !important;
  } */

  .Head.Light {
    width: 80vw;
    left: 10vw;
  }

  .ContactUs .ServicesFrame {
    height: 15px;
  }

  .ServicesFrame {
    height: 10px;
  }

  .ContentLeftSection .RightSection {
    right: -58%;
    width: 100%;
    top: 50px;
  }

  .cHead {
    width: calc(100vw - 4rem) !important;
  }

  .cHead p {
    font-size: 10px !important;
    width: 80% !important;
    margin-top: 0px !important;
  }

  .cHead h2 {
    font-size: 1.5rem !important;
  }

  .SecondeWord {
    font-size: 12px !important;
  }

  .ServicesText {
    top: -50% !important;
    font-size: 30px !important;
  }

  .Cons {
    padding-inline: 2rem;
  }

  /* .Hazardous {
    padding: 30px 2rem !important;
  } */
  /* .Hazardous[sign="*"]::before {
    left: 20px;
    top: -25px;
    font-size: 80px;
  } */

  .BgHazardous h2 {
    font-size: 30px !important;
  }

  .Hazardous {
    padding: 3rem 2rem !important;
  }

  .ServicesText.ContactUsTitle {
    top: -10% !important;
    font-size: 26px !important;
    
  }

  .ServicesText.ContactUsTitle .SecondeWord {
    font-size: 10px !important;
  }


  .IconAndName h3 {
    font-size: 14px !important;
  }

  .EmailAndMob .fristChild {
    margin: 0;
    justify-content: left;
    padding: 0;
    flex-wrap: wrap;
  }

  .fristChild a {
    width: 100%;
  }

  .ConImageText:hover .IconAnimation2 {
    width: 36px;
    height: 36px;
    top: 20px;
    bottom: auto;
  }
  .ConImageText:hover .ParagraphAnimation {
    font-size: 10px;
  }

  .cHead .sm_txt {
    top: 10%;
    font-size: calc(var(--fontSize) * 0.6);
    width: 25%;
  }

  .HeadTitle {
    font-size: 46px;
  }

  .ContentLeftSection .LeftSection {
    padding-bottom: 45px;
  }
}

@media (max-width: 520px) {

  .hero h1.text::after {
    width: 28px;
    height: 28px;
}

  /* .Head:not(.Light){
    width: 70vw !important;
  } */
  .ContentLeftSection .LeftSection {
    padding-left: 1rem !important;
    padding-right: 28vw;
  }

  /* .HeadTitle {
    font-size: 40px !important;
  } */
  /* .CardsRaduis .Card .Box .IconRaduis {
    width: 115px !important;
  } */


  .options .option a {
    font-size: 10px !important;
  }

  .hero .Smalltext {
    font-size: 0.8rem !important;
  }

  .hero h1.text {
    font-size: 4rem !important;
  }

  .hero .Smalltext span {
    font-size: 0.6rem;
  }

  .HeadIcons {
    gap: 5px;
  }

  .HeadLogo {
    width: 30px;
    height: 30px;
  }

  .BgHazardous h2 {
    font-size: 24px !important;
  }

  .HazardousEdite .BgHazardous p {
    font-size: 14px !important;
  }

  /* .TextHazardous {
font-size: 10px;
} */
  /* .HazardousEdite {
  padding-inline: calc(var(--gap)* 2) !important;
} */
  /* .cHead .sm_txt {
    top: -10%;
    font-size: var(--fontSize);
  } */

  .ServicesText.ContactUsTitle {
    /* top: 40% !important; */
    font-size: 24px !important;
  }

  .ServicesText.ContactUsTitle .SecondeWord {
    font-size: 10px !important;
  }

  .ContactUs .ServicesFrame {
    height: 10px;
  }

  .ClientName {
    width: 112px;
    height: 64px;
  }

  .PartOfClients {
    padding: 20px 0px;
  }

  .BgLogo {
    top: -220px;
  }

  .Vision .VisionSection, .Vision .MissionSection {
    width: 100%;
  }

  .Vision {
    flex-direction: column;
    gap: 40px;
  }

  .Accreditations {
    flex-wrap: wrap;
    gap: 10px !important;
    margin-block: 30px;
  }

  .Accreditations .image {
    max-width: 90vw !important;
  }

  .WelcomeMessage {
    padding: 15px;
    padding-top: 5rem;
    width: 100%;
  }

  .Cot[sign=",,"]::before {
    left: 20px;
  }

  /* .WelcomeMessage p, #AboutUs .Pargraphs p div, .Vision p {
    font-size: 12px;
  } */

  /* footer {
  -webkit-clip-path: polygon(20% 0%, 90% 0, 100% 35%, 100% 100%, 80% 100%, 10% 100%, 0 65%, 0 0);
  clip-path: polygon(20% 0%, 90% 0, 100% 35%, 100% 100%, 80% 100%, 10% 100%, 0 65%, 0 0);
}
footer::before {
  -webkit-clip-path: polygon(20% 0%, 90% 0, 100% 35%, 100% 100%, 80% 100%, 10% 100%, 0 65%, 0 0);
  clip-path: polygon(20% 0%, 90% 0, 100% 35%, 100% 100%, 80% 100%, 10% 100%, 0 65%, 0 0);
} */
  .poweredBy {
    flex-direction: column;
    gap: 0px;
  }

  footer p {
    font-size: 10px;
  }

}

@media (max-width: 450px) {

  :root {
    --fontSize: 12px;
}
.EmailAndMob p {
  background-size: 25px auto;
  padding-left: 33px;
}

  .options {
    padding: 5rem 1rem;
  }

  .cHead .sm_txt {
    top: 0%;
    font-size: calc(var(--fontSize) * 0.67);
    width: 28%;
  }

  
  .HeadText {
    display: none;
  }

  .Head.Light {
    justify-content: space-between;
  }

  .HeadIcons {
    gap: 15px;
  }

  .Hero {
    padding-inline: 15px;
  }

  .Icon {
    width: 16px;
    height: 16px;
  }

  .Minu {
    width: 20px;
    height: 20px !important;
  }

  .FrameText p {
    font-size: 22px;
  }

  .ContentLeftSection .RightSection {
    width: 100%;
    right: -55%;
  }

  .SecondeWord {
    font-size: 10px !important;
  }

  .ConCertificate {
    gap: 50px;
  }

  .ConCertificate span {
    height: 40vh;
  }

  .ContentLeftSection .LeftSection {
    padding-left: 2rem;
  }

  /* .Vision .VisionSection::before,
  .Vision .MissionSection::before {
    top: -3%;
  } */

  .AboutUs {
    font-size: 26px !important;
  }

  /* .ContentLeftSection .LeftSection p {
    font-size: 14px;
  } */
  .cHead h2 {
    font-size: 1rem !important;
  }

  .cHead p {
    /* font-size: 0.3rem !important; */
    margin-top: -4px !important;
  }

  .HazardousEdite .BgHazardous p {
    font-size: 14px !important;
  }

  /* .TextHazardous {
  font-size: 8px;
  } */
  .HazardousEdite {
    padding-inline: calc(var(--gap)* 3) !important;
    padding-block: calc(var(--gap)* 5) !important;
  }

  .TextOutline {
    /* right: 10px;
    bottom: auto;
    top: 10px; */
    width: 36px;
    height: 36px;
  }

  .BgLogo {
    width: 260px;
  }

  .options {
    /* margin-inline: 10px !important; */
    /* grid-gap: 5px !important; */
    gap: 0.5rem;
    width: 85vw;
    /* bottom: 9rem; */
  }

  .HeadTitle {
    font-size: 36px;
  }

  .BtnMessage {
    background-size: 36px auto;
    width: 40px;
    height: 26px;
  }


}

@media (max-width: 400px) {
  /* .Head.Light {
    padding-inline: 8px;
  } */
  .cHead .sm_txt {
    /* top: -14%; */
    font-size: calc(var(--fontSize) * 0.67);
    width: 28%;
}
  .ContentLeftSection .RightSection {
    width: 90%;
    /* height: 41vh; */
    right: -50%;
  }

  .PartOne h2 {
    font-size: 30px !important;
  }

  /* .Vision .VisionSection::before {
    top: -2.7%;
  }

  .MissionSection::before {
    top: -2.4%;
  } */
  .options {
    /* grid-column: 8 / 1 !important; */
    /* margin-inline: 10px; */
  }

  /* .SecondeWord {
  font-size: 8px !important;
} */


  .cHead h2 {
    font-size: 18px !important;
  }

  .ServicesText.ContactUsTitle {
    top: -20% !important;
    font-size: 22px !important;
  }

  /* .ContentContactUS .RightSection p {
    font-size: 12px;
  } */
}

@media (max-width: 350px) {

  :root {
    --fontSize: 10px;
}

  /* .ConImageText:hover .ConDetailes {
    top: 30%;
} */

  .ConImageText .NumberAnimation {
    left: 2rem;
  }

  .ContentLeftSection .RightSection {
    width: 87%;
    /* height: 32vh; */
    /* right: -50%; */
  }

  .HeadTitle {
    font-size: 30px !important;
  }

  /* .PartTwo {
    font-size: 12px !important;
  } */
  /* .CardsRaduis .Card .Box .IconRaduis {
    width: 75px !important;
  } */

  /* .IconBox {
    right: 22px !important;
    bottom: 0.7rem !important;
    font-size: 10px !important;
  } */

  /* .options .option * {
    pointer-events: none;
  } */

  .options {
    /* grid-gap: 0px !important; */
  }

  .options .option a {
    font-size: 10px !important;

  }

  .hero h1.text {
    font-size: 3rem !important;
  }

  #AboutUs .Pargraphs p  {
    line-height: 0.8;
  }

  /* .MissionSection::before {
    top: -2.4%;
  }

  .Vision .VisionSection::before {
    top: -2.6%;
  } */
}