@import url('https://fonts.googleapis.com/css2?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&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  /* colors  */
  --blue-color: #2596be;
  --white: #fff;
  --light-grey: #f5f5f5;
  --footer-dark-bg: #353535;

  --primary-color: #3498db;
  --primary-2: rgb(216, 232, 245);
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

/* top bar css  */
.top-bar-section {
  position: relative;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 300px;

}

.top-bar-section img {
  width: 100%;
  height: 100%;

}

.top-bar-section h1 {
  color: #fff;
  font-family: poppins;
  font-size: 2rem;
  font-weight: 700;
  left: 50%;
  position: absolute;
  text-shadow: 2px 2px 4px #00000080;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* topbar css end   */

/* <!-- top language css  --> */

.topTranslateBar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: #5a5a5a;

  width: 100%;
  height: 40px;
}

.topTranslateBar .address {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50%;

  color: #fff;
}

.topTranslateBar .address i {
  font-size: 20px;
  padding: 10px;
}

.topTranslateBar .phone {
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 25%;
}

.topTranslateBar .phone i {
  font-size: 20px;
  padding: 10px;
}
@media only screen and (max-width: 800px) {
  .topTranslateBar{
    height: auto;
  }
  .topTranslateBar .address {
    width: 30%;
  }
  .topTranslateBar .address p{
    font-size: 0.6rem;
  }
  
  .topTranslateBar .address i {
    font-size: 15px;
    padding: 5px;
  }
  
  .topTranslateBar .phone {
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 25%;
  }
  .topTranslateBar .phone p{
    font-size: 0.6rem;
  }
  
  .topTranslateBar .phone i {
    font-size: 15px;
    padding: 5px;
  }
  
}

/* navbar css  */

#top-header {
  height: 100px;
  background-color: var(--light-grey);
  /* border: 2px solid black; */
  box-shadow: 5px 5px 5px var(--footer-dark-bg);

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 1000;
  position: sticky;
  top: 0;
}

.logo-top a img {
  width: 300px;
}

.menu-bar {
  /* background-color: var(--blue-color); */
  margin-right: 20px;
  z-index: 999;
}

.menu-bar ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  list-style-type: none;

}

.menu-bar ul li {
  text-decoration: none;
  font-size: 1rem;
  padding: 10px;
  text-align: center;

  transition: all 0.3s ease-in-out;
}

.menu-bar ul li a {
  text-decoration: none;
  color: black;

  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px;
}

.menu-bar ul li a:hover {
  color: var(--blue-color);
}

.submenu-1 {
  display: none;
  transition: all 1s ease-in-out;

  z-index: 999;
  /* width: auto; */
}

.submenu-1 ul li a {
  font-size: 1rem;
}

.menu-bar ul li:hover .submenu-1 {
  display: block;
  background-color: lightgray;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 5px 5px 5px grey;

  position: absolute;
  margin-top: 10px;
  /* margin-left: -50px; */
  transform: translatex(0%);
  /* width: 250px; */
  width: auto;
}

.menu-bar ul li:hover .submenu-1 ul {
  display: block;
  margin: 5px;
}

.submenu-1 ul li:hover {

  background-color: #2596be;
  color: black;
}

.submenu-1 ul li a:hover {
  color: black;
}

/* sub menu css  */
.submenu-2 {
  display: none;
  z-index: 999;
}

.submenu-2 ul li a {
  font-size: 0.9rem;
}

.hover-me:hover .submenu-2 {
  display: block;
  background-color: lightgray;

  position: absolute;
  top: 0px;
  left: 0px;
  border: 1px solid black;
  /* border-top: 0px; */
  /* border-left: 1px solid black; */
  box-shadow: 5px 5px 5px grey;
  border-radius: 10px;
  /* margin-left: 200px; */
  transform: translatex(87%);
  width: 230px;
  /* padding: 5px; */
}

.submenu-3 {
  display: none;
  z-index: 999;
}

.submenu-3 ul li a {
  font-size: 0.9rem;
}

.hover-me-1:hover .submenu-3 {
  width: 150px;

  display: block;
  background-color: lightgray;

  position: absolute;
  left: 0px;
  border: 1px solid black;
  box-shadow: 5px 5px 5px grey;
  border-radius: 10px;
  margin-top: -40px;
  margin-left: 220px;
}

.burger {
  display: none;
}

@media (max-width:1100px) {
  .burger {
    display: block;
    margin-right: 10px;
  }

  .menu-bar {
    display: none;
  }

  .logo-top a img {
    width: 50%;
  }

  .menu-bar ul {
    flex-direction: column;
  }

  .nav-active {
    display: block;
    position: absolute;
    top: 100px;
    background-color: var(--light-grey);
    width: 100%;
  }

  .menu-bar ul li:hover .submenu-1 {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 0;
    margin-left: 0;
    align-items: center;
  }

  .hover-me:hover .submenu-2 {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    transform: translatex(0%);
  }

  .hover-me-1:hover .submenu-3 {
    display: block;
    position: relative;
    top: 0;
    left: auto;
    right: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;

  }
}

/* navbar css end  */


/* slider css  */
.slider-container {
  margin: 0px 0px;
  position: relative;
  width: 100%;
  height: 80vh;

  /* box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.75); */
}

.slid-img {
  display: none;

  width: 100%;
  height: 100%;

}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: auto;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 20px;
  user-select: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

@media (max-width:600px) {
  .slider-container {
    height: 40vh;
  }
}

/* slider css end  */

/* home page shortlink to about page  css*/
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-aboutus-container {
  margin: 50px 0px;
  width: 100%;
  font-family: "Poppins", sans-serif;

  overflow: hidden;

  background: rgb(214, 214, 214);
  background: linear-gradient(9deg, rgba(214, 214, 214, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.sub-home-about {
  width: 50%;
}

.aboutus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutus-content {
  margin-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;

  flex-direction: column;
  justify-content: space-evenly;
}

.aboutus-content h1 {
  font-family: "Poppins", sans-serif;

  padding: 10px;
  padding-bottom: auto;
  padding-top: auto;
  font-weight: 600;
  font-size: 2rem;
  margin: auto 0px;
  text-decoration: underline;
}

.aboutus-content p {
  font-family: "Poppins", sans-serif;

  padding: 10px;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn {
  margin: 10px;
  width: 150px;
  height: 50px;
  background-color: #2596be;
  color: white;
  border-radius: 10px;
  border: 0px;
  cursor: pointer;

  padding: 10px;
  transition: all 0.4s ease;
}

.btn:hover {
  box-shadow: 1px 1px 5px 2px black;
}

.btn a {
  padding: 10px;
  text-decoration: none;
  color: white;

  font-weight: 400;
  font-size: 1rem;

  transition: all 0.4s ease;
}

.btn a:hover {
  color: black;
}

@media (max-width: 900.33333px) {
  .flex {
    flex-direction: column;
  }

  .sub-home-about {
    width: 95%;
    margin-left: 0px;
  }

  .aboutus-content h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .aboutus-content p {
    text-align: center;
  }
}


/* home page shortlink to about page  css*/

/* <!-- mission vission and persons behinf section home  css start */
.mvp-container {
  margin: 30px auto;
  width: 100%;
  /* height: 400px; */
  justify-content: space-around;

  overflow: hidden;
  /* background-color: white; */
}

.mvp-sub {
  margin: 20px 0px;
  width: 30%;
  /* height: 500px; */
  border-radius: 10px;


  flex-direction: column;
  /* border: 1px  solid black; */

  transition: all 0.4s ease;
  background-color: rgb(221, 218, 218);
}

.mvp-sub:hover {
  -webkit-box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.75);

  background: rgb(214, 214, 214);
  background: linear-gradient(9deg, rgba(214, 214, 214, 1) 0%, rgba(255, 255, 255, 1) 100%);

}

.mvp-sub .mvp-image {
  width: 100%;
  height: 250px;

  overflow: hidden;
}

.mvp-sub .mvp-image img {
  width: 100%;
  height: 250px;

  object-fit: cover;
  border-radius: 5px;

  transition: transform .2s;
  /* Animation */
}

.mvp-sub .mvp-image img:hover {
  object-fit: cover;
  border-radius: 5px;
  transform: scale(1.1);
}

.mvp-sub .mvp-content {
  padding: 5px;
  height: 300px;
  flex-direction: column;
  justify-content: space-evenly;


  text-align: center;
}

.mvp-sub .mvp-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: underline;

  letter-spacing: 1px;
}

.mvp-sub .mvp-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;

  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .mvp-sub {
    width: 95%;
  }

}

/* <!-- mission vission and persons behinf section home  css end */

/* <!-- pts section css  start  --> */
.pts-section {
  background: rgb(214, 214, 214);
  background: linear-gradient(9deg, rgba(214, 214, 214, 1) 0%, rgba(255, 255, 255, 1) 100%);
  width: 100%;
  margin: 20px 0px;

  overflow: hidden;
}

.pts-sub {
  width: 50%;
  overflow: hidden;
}

.pts-sub img {
  width: 100%;
  overflow: hidden;
}

.quality-secton {
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;

  overflow: hidden;

}
.quality-secton a{
    text-decoration: none;
}

.pts-quality {
  width: 250px;
  margin: 10px;
  padding: 10px;
  /* border: 1px solid black; */

  border-radius: 5px;
  color: black;
  text-decoration: none;

  justify-content: space-between;
  background-color: #fff;

  transition: all 0.4s ease;
}

.pts-about {
  text-align: center;
}
.pts-about h2{
  text-decoration: none;
}
#persons-behind{
    text-align: center;
    margin: 20px auto;
    padding: 20px;
}

@media (max-width: 900.9999px) {
  .pts-quality {
    flex-direction: row;
  }

  .pts-sub {
    width: 95%;
  }
  #persons-behind{
      text-align: justify;
  }
}

/* <!-- pts section css end  --> */

/* --------------------------------------------------------------------------------------------------------- */
/* about us css start  */
#about-container {
  width: 100%;

  background: linear-gradient(9deg, rgba(214, 214, 214, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.about-sub-section {
  width: 50%;
  height: 100%;
}

.about-content {
  flex-direction: column;
  align-items: flex-start;

  padding: 0px 10px;
}

.about-content h1 {
  padding: 10px 0px;
}

.about-content p {
  padding: 10px 0px;
}

.about-image {
  height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.about-show-section {
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}
.about-show-section a{
    color: black;
    text-decoration: none;
}

.tech-about {
  padding: 5px;
  margin: 5px;

  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 50%;

}

@media (max-width: 900.33333px) {
  .about-sub-section {
    width: 95%;
    margin: 10px auto;
  }

  .about-container {
    height: auto;
  }

  .about-show-section {
    flex-direction: row;
  }

}

/* mission and vision about us section css start */
.mission-vision-container {
  width: 100%;
  margin: 40px 0px;

  background: linear-gradient(9deg, rgba(214, 214, 214, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.sub-mission-vision {
  width: 50%;
  padding: 50px;
}

@media (max-width: 900.3333px) {
  .sub-mission-vision {
    width: 90%;
    padding: 30px;
  }
}

/* mission and vision about us section css end  */


/* about us css start  */



/* testimonial css start  */
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
}

/* html {
            width: 100%;
            height: auto;
        } */



.testim {
  width: 100%;
  /* position: absolute;
            top: 50%; */
  /* -webkit-transform: translatey(-50%);
            -moz-transform: translatey(-50%);
            -ms-transform: translatey(-50%);
            -o-transform: translatey(-50%);
            transform: translatey(-50%); */
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: #333;
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 5px;
  /* z-index: 22222222; */
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color: green;
}


.testim .arrow.left {
  left: 70px;
}

.testim .arrow.right {
  right: 70px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  /* z-index: 3333; */
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid green;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: green;
  border-color: green;
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale .5s ease-in-out forwards;
  -moz-animation: testim-scale .5s ease-in-out forwards;
  -ms-animation: testim-scale .5s ease-in-out forwards;
  -o-animation: testim-scale .5s ease-in-out forwards;
  animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont>div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont>div.inactive {
  opacity: 1;
}


.testim .cont>div.active {
  position: relative;
  opacity: 1;
}


.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: green;
  font-size: 1em;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 1.15em;
  color: #333;
  width: 70%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show .5s ease-in-out forwards;
  -moz-animation: testim-show .5s ease-in-out forwards;
  -ms-animation: testim-show .5s ease-in-out forwards;
  -o-animation: testim-show .5s ease-in-out forwards;
  animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
  -webkit-animation: testim-content-in .4s ease-in-out forwards;
  -moz-animation: testim-content-in .4s ease-in-out forwards;
  -ms-animation: testim-content-in .4s ease-in-out forwards;
  -o-animation: testim-content-in .4s ease-in-out forwards;
  animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in .5s ease-in-out forwards;
  -moz-animation: testim-content-in .5s ease-in-out forwards;
  -ms-animation: testim-content-in .5s ease-in-out forwards;
  -o-animation: testim-content-in .5s ease-in-out forwards;
  animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide .5s ease-in-out forwards;
  -moz-animation: testim-hide .5s ease-in-out forwards;
  -ms-animation: testim-hide .5s ease-in-out forwards;
  -o-animation: testim-hide .5s ease-in-out forwards;
  animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
  -webkit-animation: testim-content-out .4s ease-in-out forwards;
  -moz-animation: testim-content-out .4s ease-in-out forwards;
  -ms-animation: testim-content-out .4s ease-in-out forwards;
  -o-animation: testim-content-out .4s ease-in-out forwards;
  animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out .5s ease-in-out forwards;
  -moz-animation: testim-content-out .5s ease-in-out forwards;
  -ms-animation: testim-content-out .5s ease-in-out forwards;
  -o-animation: testim-content-out .5s ease-in-out forwards;
  animation: testim-content-out .5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-moz-keyframes testim-scale {
  0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -moz-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -moz-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-ms-keyframes testim-scale {
  0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -ms-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -ms-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-o-keyframes testim-scale {
  0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -o-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -o-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-webkit-keyframes testim-content-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes testim-content-in {
  from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes testim-content-in {
  from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes testim-content-in {
  from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes testim-content-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-moz-keyframes testim-content-out {
  from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-ms-keyframes testim-content-out {
  from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-o-keyframes testim-content-out {
  from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes testim-show {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes testim-show {
  from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes testim-show {
  from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes testim-show {
  from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes testim-hide {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0);
  }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }

  .testim .cont div p {
    line-height: 25px;
  }

}

/* testimonial css end  */



/* gallery css start  */
/* top bar css  */
.top-bar-section {
  position: relative;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 300px;

}

.top-bar-section img {
  width: 100%;
  height: 100%;

}

.top-bar-section h1 {
  color: #fff;
  font-family: poppins;
  font-size: 2rem;
  font-weight: 700;
  left: 50%;
  position: absolute;
  text-shadow: 2px 2px 4px #00000080;
  top: 50%;
  transform: translate(-50%, -50%);

}

/* topbar css end   */

section {
  margin: 0px auto;
  background-color: var(--primary-2);
  background: linear-gradient(0deg, rgba(214, 214, 214, 1) 0%, rgba(255, 255, 255, 1) 100%);
  width: 100%;
  overflow: hidden;
}

/* .flex {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
        } */

#Gallery-Products {
  margin: 0px auto;
  padding: 30px auto;
  padding-top: 30px;
  padding-bottom: 30px;

  flex-wrap: wrap;
}

.gallery {
  overflow: hidden;
  justify-content: space-between;
  border: 1px solid black;
  width: 25%;
  margin: 10px;
  background-color: #fff;

  border-radius: 10px 15px;
  transition: all 0.4s ease;
}

.gallery:hover {
  border-radius: 15px 30px;
  box-shadow: 5px 10px rgb(104, 187, 243);
}

.image-gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform .2s;
}

.image-gallery:hover {
  transform: scale(1.1);
}

.image-gallery img {
  width: 100%;
  height: 100%;
}

.gallery-heading h1 {
  text-decoration: underline;
  padding: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;

}

.gallery-paragraph p {
  padding: 10px;
  font-size: 1rem;

}

.space {
  margin: 10px;
}

/* grains section css */
.sub-Grains {
  width: 50%;
  overflow: hidden;
  font-size: 1rem;
}

#Grains .Grains-Heading {
  font-size: 2rem;
  padding: 20px;
  text-align: center;
  text-decoration: underline;
}

.sub-Grains img {
  width: 100%;
}

.Technology-heading {
  text-decoration: underline;
  padding: 10px;
}

.Grains-right {
  align-items: start;
}

.Grains-content {
  box-sizing: border-box;
  padding: 10px;
}

.Grains-Technology {
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-wrap: wrap;
}

.Grains-Paragraph {
  padding: 10px;
}

.technology-image {
  overflow: hidden;
}

.technology-image img {
  width: 50%;
}

.technology {
  width: 30%;
}

.technology h1 {
  font-size: 1rem;

}

.controlsDesc {
  display: none;
}

.controlsDesc.active {
  display: block;
}

.controlsDesc1 {
  display: none;
}

.controlsDesc1.active1 {
  display: block;
}

.controlsDesc2 {
  display: none;
}

.controlsDesc2.active2 {
  display: block;
}

.controlsDesc3 {
  display: none;
}

.controlsDesc3.active3 {
  display: block;
}

.controlsDesc4 {
  display: none;
}

.controlsDesc4.active4 {
  display: block;
}

.controlsDesc5 {
  display: none;
}

.controlsDesc5.active5 {
  display: block;
}

.controlsDesc6 {
  display: none;
}

.controlsDesc6.active6 {
  display: block;
}

.controlsDesc7 {
  display: none;
}

.controlsDesc7.active7 {
  display: block;
}
.controlsDesc8.active8 {
  display: block;
}
.controlsDesc9.active9 {
  display: block;
}


@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }

  .image-gallery {
    overflow: hidden;
    transition: transform .2s;
  }

  .image-gallery:hover {
    transform: scale(1.05);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

  .gallery {
    width: 80%;
  }

  .sub-Grains {
    width: 80%;
  }

}

/* gallery css end */

/* footer css start  */
#footer {
  width: 100%;
  height: auto;

  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-items: baseline;

  /* background: rgb(70,70,70);
    background: linear-gradient(0deg, rgba(70,70,70,1) 0%, rgba(98,98,98,1) 100%); */

  background-color: #353535 !important;
}

.footer-sub {
  width: 23%;
  padding: 5px;
  /* border: 1px solid black; */
  border-radius: 10px;

  transition: all 0.4s ease;
}

.content-footer i {
  margin: 10px;
  margin-left: 0px;
  font-size: 1.2rem
}

.footer-socials i {
  border: 1px solid white;
  border-radius: 5px;
  padding: 5px;
  font-size: 1.4rem;

  transition: all 0.4s ease;
}

.footer-socials i:hover {
  color: #00b4d8 !important;
  background-color: white;
}

.footer-heading h1 {
  padding: 10px 0px;

  font-family: "poppins", sans-serif;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
}

.content-footer {
  font-family: "poppins", sans-serif;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;

}

.footer-2-link i {
  font-size: 0.8rem;
}

.footer-2-link a {
  color: #ffffff;
  text-decoration: none;

  transition: all 0.4s ease-in-out;
}

.footer-2-link a:hover {
  color: #00b4d8 !important;
  letter-spacing: 2px;
}

.footer-section-2 {
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
}

@media (max-width: 900.33333px) {
  .footer-sub {
    width: 90%;
    margin: 0px auto;
  }

  #footer {
    flex-direction: column;
  }
}

#bottom-footer-section {
  background-color: #353535 !important;
  border-top: 0.5px solid white;
  padding: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#bottom-footer-section p {
  color: white;
  display: inline-block;
  margin-left: 20px;
  padding: 10px;

  font-size: 0.8rem;
}

#bottom-footer-section p a {
  color: white;
  /* text-decoration: none; */
}
#bottom-footer-section p a i{
  font-size: 1rem;
  padding: 0px 5px;
  color: #ffffff;
}
#bottom-footer-section p a i:hover{
  color: var(--blue-color);
}
#bottom-footer-section p a:hover{
  color: var(--blue-color);
}

/* footer css end  */



/*lms apploication*/

.LMS_icon-bar {
            /*position: fixed;*/
            /*top: 50%;*/
            /*left: 0; */
            /*transform: translateY(-50%);*/
            /*background-color: #f0f4ff; */
            /*padding: 20px;*/
            /*border-radius: 0 8px 8px 0; */
            /*box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); */
            /*color: #333; */
            /*text-align: center;*/
            /*border: 1px solid #007bff; */
        }

        /* Heading inside the icon bar */
        /*.LMS_icon-bar h4 {*/
        /*    font-size: 18px;*/
        /*    margin-bottom: 15px;*/
            /*color: #007bff;*/
        /*}*/

        /* Flashing button */
        /*.LMS_flashing-btn {*/
        /*    padding: 12px 24px;*/
        /*    font-size: 16px;*/
        /*    color: white;*/
        /*    background-color: #007bff;*/
        /*    border: none;*/
        /*    border-radius: 5px;*/
        /*    cursor: pointer;*/
        /*    text-decoration: none;*/
        /*    animation: flash 1s infinite;*/
        /*    font-weight: bold;*/
        /*    display: inline-block;*/
        /*    transition: background-color 0.3s;*/
        /*}*/
        
        /*.LMS_flashing-btn a{*/
        /*    text-decoration: none;*/
        /*    color: white;*/
        /*}*/

        /* Flashing effect for the button */
        @keyframes flash {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                opacity: 1;
            }
        }

        /* Button hover effect */
        .LMS_flashing-btn:hover {
            background-color: #0056b3;
        }



/*lms application end*/