/* google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  /* font-size: 10px; */
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-weight: 400;
  color: #555;
  background-color: #f1f3f5;
}

.hero {
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(home6.jpg);
  background-size: cover;
  background-position: center;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
  padding-left: 10%;
  padding-right: 10%;
}

.logo {
  color: #fff;
  font-size: 2.8rem;
}

.cat-logo:hover {
  animation: heartBeat;
  animation-duration: 2s;
  transition: 0.1s;
  cursor: pointer;
}

.logo-lead:hover {
  /* color: #ea1538; */
  color: #2f9e44;

  transition: 0.5s;
  cursor: pointer;
}

.logo-span {
  /* color: #ea1538; */
  color: #2f9e44;
}

.logo-span:hover {
  color: #fff;
  transition: 0.5s;
  cursor: pointer;
}

nav ul li {
  list-style-type: none;
  display: inline-block;
  padding: 1rem 2rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

nav ul li a:hover {
  /* color: rgb(234, 21, 56); */
  color: #2f9e44;

  transition: 0.3s;
}

button {
  border: none;
  /* background-color: #ea1538; */
  background-color: #2f9e44;
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  color: #fff;
  font-size: 1.5rem;
  transition: 0.4s;
}

button:hover {
  transform: scale(1.3);
  cursor: pointer;
}

/* jumbotron info */

.heading-section {
  display: flex;

  justify-content: center;
}

.header__text-box {
  /* background-color:yellow; */
  display: grid;
}

.heading-primary {
  color: #fff;

  /* background-color:red; */

  height: 50vh;

  margin-top: 8rem;
}

.heading-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.3rem;

  /* background-color: yellow; */
}

.inner-primary {
  display: block;
  /* background-color:purple; */
  line-height: 1.5;
  color: #27ae60;
}

.ml6 {
  position: relative;
}

.ml6 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
  
}

@media(max-width:471px){
  .ml6 .text-wrapper{
    font-size: 4.5rem;
  }
}

.ml6 .letter {
  display: inline-block;
  line-height: 1em;
}

/* part 2 animated text */

.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;

  text-align: center;
  /* letter-spacing:1.75rem; */
  /* background-color: green; */

  line-height: 1.5;
}

.sample {
  text-align: center;
}

.quote {
  /* background-color:green; */
  /* margin-left: 60px; */
  font-size: 2.4rem;
  text-align: center;

  border-radius: 5%;

  color: #fff;
  text-decoration: none;

  border: 1px solid #fff;

  padding: 1.6rem;
}

.quote:visited,
.quote:active {
  display: inline-block;
  color: #e67d2200;
  text-decoration: none;
  /* border-bottom: 1px solid currentColor; */
  padding-bottom: 2px;
  transition: all 0.3s;
  text-align: center;
}
.quote:hover,
.quote:active {
  color: #fff;
  /* background-color: #ea1538; */
  background-color: rgb(47, 157, 67);
  text-decoration: none;
  /* border: 1px solid #ea1538; */
  border: 1px solid #2f9e44;
  /* border-bottom: 1px solid transparent; */
}

/* *********************************** */
/*  1st page quote BELOW*/
/*************************************/
.landing {
  /* min-height: 100vh; */
  /* background: url("./home.jpg"); */
  /* background-size: cover; */
  /* padding: 0rem 5rem; */
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 10vh;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  padding-left: 10rem;
  font-size: 1.2rem;
}
#logo {
  font-family: "Lobster", cursive;
  font-weight: lighter;
  font-size: 2rem;
}

.big-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  font-size: 5rem;
  font-family: "Lobster", cursive;
  color: rgb(61, 61, 61);
}

.intro {
  background: black;
  /* background: #2f9e44; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .slider {
  background: rgb(97, 105, 109);
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
} */

.intro-text {
  color: rgb(233, 233, 233);
  font-family: "Heebo", sans-serif;
  font-size: 3rem;
}

.hide {
  background: black;
  overflow: hidden;
}

.hide span {
  transform: translateY(100%);
  display: inline-block;
}

#redhead {
  margin-left: 5rem;
  margin-bottom: 26rem;
}

/* *********************************** */
/*  FEATURED-IN SECTION BELOW*/
/*************************************/

.section-featured {
  padding: 4.8rem 0 3.2rem;
  background-color: #f8f9fa;
  /* height: 15vh; */
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 2.4rem;
  color: #999;
  transition: all 0.5s;
}

.heading-featured-in:hover {
  /* color: #ea1538; */
  color: #2f9e44;
}

.logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.logos img {
  /* width: 10%; */
  height: 3.2rem;
  /* filter is important keep it in mind */
  filter: grayscale(100%);
  /* filter: brightness(0); */
  /* opacity: 50%; */
  transition: all 0.8s;
}

.logos img:hover {
  filter: none;
  opacity: 90%;
}

.img-2nd {
  transform: scale(1.5);
  transition: 0.8s;
}

/* Our Services: */

.first {
  /* height: 100vh; */
  display: grid;
}

.services {
  /* height: 100vh; */
}

.serve {
  /* border: 1px solid red; */
  font-size: 4rem;
  margin-top: 2.5rem;
  color: #000;
}

hr.style-eight {
  overflow: visible; /* For IE */
  padding: 0;
  border: none;
  /* border-top: medium double #ea1538; */
  border-top: medium double #2f9e44;
  /* color: #ea1538; */
  color: #2f9e44;
  text-align: center;
  margin-bottom: 4rem;
}
hr.style-eight:after {
  content: "§";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 1.5em;
  padding: 0 0.25em;
  background: white;
}

/* cards */

.card {
  margin-bottom: 2.5rem;
}
/* .a {
  padding-bottom: 2.8rem;
} */
.card-title {
  font-weight: bold;
  color: #000;
  font-size: 1.8rem;
}

.card-text {
  font-size: 1.2rem;
  line-height: 2;
}

.general-link {
  text-decoration: none;
  font-size: 1.4rem;
  /* color: #ea1538; */
  color: #2f9e44;
}

.general-link:hover {
  /* color: red; */
  color: #2f9e44;
}

/* end */

/* about us  */
.about {
  height: 100vh;
  /* background-color: red; */
}

.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: white;
  z-index: 2;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.text-video {
  position: relative;
  z-index: 10;
}

.text-video h2 {
  font-size: 5em;
  font-weight: 800;
  line-height: 1em;
  text-transform: uppercase;

  color: #fff;
}

.text-video p {
  font-size: 1.1em;
  margin: 2rem 0;
  max-width: 70rem;
  font-weight: 400;
  color: #fff;
  line-height: 2em;
}

.text-video a {
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 1rem 3rem;
  text-decoration: none;
  color: #111;
  margin-top: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.text-video a:hover {
  letter-spacing: 6px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.434);
  /* background: linear-gradient(#43c6acc7, #f8ffaec0); */
  /* background-color: #03a9f4; */
  /* background-color: rgba(255, 255, 255, 0.334); */
  /* background-color: rgba(255, 255, 255, 0.334); */
  mix-blend-mode: overlay;
}

/* .social li {
  list-style: none;
}

.social li a {
  display: inline-block;
  filter: invert(1);
  margin-right: 2rem;
  transform: scale(0.5);
  transition: 0.5s;
} */

/* end */

/* start of blank */
.blank {
  height: 100vh;
  background-color: #f1f3f5;
}
/* end of blank */

/* start of testimonials */

.container-testimonials {
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #e3f2fd; */
  background: linear-gradient(#43c6ac8f, #f8ffae7c), url(home4.jpg);
  background-size: cover;
  background-position: top;
}

.testimonials {
  position: relative;
  /* height: 100vh; */
  max-width: 90rem;
  width: 100%;
  padding: 5rem 0;
  overflow: hidden;
  /* row-gap: 3rem; */
  /* background-color: #fff; */
  /* background-color: yellow; */
}

.testimonials .faces {
  height: 17rem;
  width: 17rem;
  object-fit: cover;
  border-radius: 50%;
}

.testimonials .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 3rem;
}

.slide p {
  text-align: center;
  padding: 0 10rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
}

.slide .quote-icon {
  font-size: 3rem;
  color: #4070f4;
}

.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details .name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
}

.details .job {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
}

/* swiper button css in testimonials */
.btn-swipe {
  height: 4rem;
  width: 4rem;
  /* border-radius: 50%; */
  transform: translateY(30px);
  /* background-color: rgba(0, 0, 0, 0.1); */
}

.btn-swipe::after,
.btn-swipe::before {
  font-size: 2rem;
  color: #000;
}

@media screen and(max-width:768px) {
  .slide p {
    padding: 0 2rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/*  
/* end of testimonials */

.five {
  height: 100vh;
  /* background-color: black; */
}

/* start of products */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.container .title {
  font-size: 3.5rem;
  color: #444;
  margin-bottom: 3rem;
  text-transform: uppercase;
  text-align: center;
}

.container .products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.container .products-container .product {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  outline: 0.1rem solid #ccc;
  outline-offset: -1.5rem;
  cursor: pointer;
}

.container .products-container .product:hover {
  outline: 0.2rem solid #222;
  outline-offset: 0;
}

.container .products-container .product img {
  height: 25rem;
}

.container .products-container .product:hover img {
  transform: scale(0.9);
}

.container .products-container .product h3 {
  padding: 0.5rem 0;
  font-size: 2rem;
  color: #444;
}

.container .products-container .product:hover h3 {
  color: #27ae60;
}

.container .products-container .product .price {
  font-size: 2rem;
  color: #444;
}

.products-preview {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
}

.products-preview .preview {
  display: none;
  padding: 2rem;
  text-align: center;
  background: #fff;
  position: relative;
  margin: 2rem;
  width: 40rem;
}

.products-preview .preview.active {
  display: inline-block;
}

.products-preview .preview img {
  height: 30rem;
}

.products-preview .preview .fa-times {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  color: #444;
  font-size: 4rem;
}

.products-preview .preview .fa-times:hover {
  transform: rotate(90deg);
}

.products-preview .preview h3 {
  color: #444;
  padding: 0.5rem 0;
  font-size: 2.5rem;
}

.products-preview .preview .stars {
  padding: 1rem 0;
  font-size: 1.7rem;
}

.products-preview .preview .stars i {
  color: #27ae60;
}

.products-preview .preview .stars span {
  color: #999;
}

.products-preview .preview p {
  line-height: 1.5;
  padding: 1rem 0;
  font-size: 1.6rem;
  color: #777;
}

.products-preview .preview .price {
  padding: 1rem 0;
  font-size: 2.5rem;
  color: #27ae60;
}

.products-preview .preview .buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.products-preview .preview .buttons a {
  flex: 1 1 16rem;
  padding: 1rem;
  font-size: 1.8rem;
  color: #444;
  border: 0.1rem solid #444;
}

.products-preview .preview .buttons a.cart {
  background: #444;
  color: #fff;
}

.products-preview .preview .buttons a.cart:hover {
  background: #111;
}

.products-preview .preview .buttons a.buy:hover {
  background: #444;
  color: #fff;
}

.more-parent {
  display: flex;
  justify-content: center;
}

.more {
  /* margin-left: 58rem; */
  /* margin-right: auto; */

  background-color: #111;
  /* color: #ea1538; */
  /* margin-top: 1rem; */
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 768px) {
  .products-preview .preview img {
    height: 25rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}

/* footer */

.blank2 {
  /* background-color: #000; */
  background-color: #f1f3f5;

  height: 50vh;
}

.last {
  /* background-color: red; */
  /* height: 50vh; */
  color: #000;
}

/*********************************/
/*FOOTER BELOW*/
/*********************************/
hr {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sub-solutions {
  color: #2f9e44;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style: none;
}
.footer {
  background-color: #24262b;
  background-color: #000;

  padding: 70px 0;
  margin-top: 3rem;
}
.footer-col {
  width: 25%;
  padding: 0 15px;
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #2f9e44;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #b2f2bb;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  /* background-color: #000; */
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/* MY MEDIA QUERY :hamburger*/

label{

   /* margin:0 4rem 0 0 ;  */
    font-size: 2.6rem; 
   line-height: 7rem; 
 
  display: none;





}

#toggle{
  display: none;
}

@media screen and (min-width:300px) and (max-width:576px){
  label{
    display: block;
    cursor: pointer;
    width: 26px;
    float: right;
  }

  .logo{
    font-size: 1.2rem;
  }

  .logo-lead .logo-span{
    font-size:1.2rem ;
  }

  .main-menu-sub{
    text-align: center;
    width: 100%;
    display: none;
    clear: right;
  }

  .main-menu-sub a{
    display: block;
    /* border-bottom:  1px solid ; */
    margin: 0;
    color: white;
    /* background-color: transparent; */
    opacity: 90%;
  }

  #toggle:checked+.main-menu-sub{
    display: block;
  }


  .sample{
    margin-top: 2.3rem;
        color: #fff !important;

  }

  .quote{
    margin-top: 2.3rem;
    color: #fff !important;
  }

  /* trust */


  .trust{
    height: 100vh;
    display: none;
  }

    .trust-heading{
    font-size: 1.8rem;
    /* color: red; */
  }

  .pics{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    

  }

  .pics-text{
    font-size: 1rem;
  }

  .pics-1{
    /* background-color: red; */
    /* height: 175px;
    width: 275px; */
    /* display: none; */
    margin-right: 4rem;
  }

  .pics-2{
    /* background-color: #000; */
        /* height: 175px;
    width: 275px; */
display: none;

  }

  .pics3{

    display: none;
    /* background-color: yellow; */
        /* height: 75px;
    width: 275px;
      margin-left: 10rem;
  margin-right: 3rem; */


  }



  
}



/* small devices: Mobile phone landscape */

@media screen and (min-width:576px) and (max-width:767px){

  .logo-lead{
    font-size: 1.2rem;
  }

  .logo-span{
    font-size: 1.2rem;
  }

  .iwe{
    font-size: 1.2rem;
  }

  .heading-primary--main{
    font-size: 1.2rem;
  }

  .heading-primary--sub{
    font-size: 1.2rem;
  }

  .sample{
    /* position: relative; */
  }
  
  .sample-inside{
    /* position: absolute; */
    /* top:1rem; */

  }

  .section-featured{
    display: ;
  }



    label{
    display: block;
    cursor: pointer;
    width: 26px;
    float: right;
  }

  .logo{
    font-size: 1.4rem;
  }

  .logo-lead .logo-span{
    font-size:1.4rem ;
  }

  .main-menu-sub{
    text-align: center;
    width: 100%;
    display: none;
    clear: right;
  }

  .main-menu-sub a{
    display: block;
    /* border-bottom:  1px solid ; */
    margin: 0;
    color: white;
    /* background-color: transparent; */
    opacity: 90%;
  }

  #toggle:checked+.main-menu-sub{
    display: block;
  }

  .trust{
    display: none;
  }

}

/* tablets */
@media screen and (min-width:768px) and (max-width:991px){

    label{
    display: block;
    cursor: pointer;
    width: 26px;
    float: right;
  }

  .logo{
    font-size: 1.6rem;
  }

  .logo-lead .logo-span{
    font-size:1.6rem ;
  }

  .main-menu-sub{
    text-align: center;
    width: 100%;
    display: none;
    clear: right;
  }

  .main-menu-sub a{
    display: block;
    /* border-bottom:  1px solid ; */
    margin: 0;
    color: white;
    /* background-color: transparent; */
    opacity: 90%;
  }

  #toggle:checked+.main-menu-sub{
    display: block;
  }


}



@media (max-width: 1015px) {
  .main-menu-sub {
    display: none;
  }

  .section-featured {
    display: none;
  }
}

/* button */

:root {
  /* --clr-neon: hsl(317 100% 54%); */
  --clr-neon: #2f9e44;
  /* --clr-bg: hsl(323 21% 16%); */
  --clr-bg: #fff;
}

.neon-button {
  /* font-size: 4rem; */
  font-size: 2.4rem;

  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: var(--clr-neon);
  border: var(--clr-neon) 0.125em solid;
  /* padding: 0.25em 1em; */
  padding: 1.6rem;
  border-radius: 0.25em;

  text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em currentColor;

  box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 0.5em 0 var(--clr-neon);

  position: relative;
}

.neon-button::before {
  pointer-events: none;
  content: "";
  position: absolute;
  background: var(--clr-neon);
  top: 120%;
  left: 0;
  width: 100%;
  height: 100%;

  transform: perspective(1em) rotateX(40deg) scale(1, 0.35);
  filter: blur(1em);
  opacity: 0.7;
}

.neon-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 2em 0.5em var(--clr-neon);
  opacity: 0;
  background-color: var(--clr-neon);
  z-index: -1;
  transition: opacity 100ms linear;
}

.neon-button:hover,
.neon-button:focus {
  color: var(--clr-bg);
  text-shadow: none;
}

.neon-button:hover::before,
.neon-button:focus::before {
  opacity: 1;
}
.neon-button:hover::after,
.neon-button:focus::after {
  opacity: 1;
}

.quote {
  /* background-color:green; */
  /* margin-left: 60px; */
  font-size: 2.4rem;
  text-align: center;

  border-radius: 5%;

  color: #fff;
  text-decoration: none;

  border: 3px solid rgb(47, 158, 68);

  padding: 1.6rem;
}

.quote:visited,
.quote:active {
  display: inline-block;
  color: #e67d2200;
  text-decoration: none;
  /* border-bottom: 1px solid currentColor; */
  padding-bottom: 2px;
  transition: all 0.3s;
  text-align: center;
}
.quote:hover,
.quote:active {
  color: #fff;
  /* background-color: #ea1538; */
  background-color: rgb(47, 157, 67);
  text-decoration: none;
  /* border: 1px solid #ea1538; */
  border: 1px solid #2f9e44;
  /* border-bottom: 1px solid transparent; */
}

.trust {
  color: #333;
  background-color ;
  height: 100vh;
  font-size: 8rem;
   text-align: center;
   /*
  display: flex;
  flex-direction: row; */
}

.trust h1{
  font-size: 3.5rem;
}

/* .africa{
  color: #2f9e44;
} */


.flag{
  display:block;
}
.pics{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 2rem;
  /* font-size: 2rem; */
}

.pics img{
  /* margin: 6rem; */
}

.pics-text{
  font-size: 3.2rem;
  /* margin-top: 20rem; */
  /* height: 1rem; */
}

.pics-1{
  margin-right: 16rem;
  margin-left: 12rem;
  /* background-color: yellow; */

}


.pics-1 p{
  padding-top: 7rem;
  font-size: 2rem;
}
 
.pics-2{
margin-top: 3rem;
margin-left: 8rem;
  /* background-color: red; */
}

.pics-2 p{
  padding-top: 11rem;
    font-size: 2rem;

}

.pics-3{

  margin-left: 20rem;
  margin-right: 12rem;
  /* background-color: blue; */
}

.pics-3 p{
  padding-top: 7rem;
    font-size: 2rem;

}

/* media query */

@media(min-width:91.8rem){
  .trust{

/* display: flex; */
  }

  

  .pics{
    /* flex-direction: column; */
  }
}
/* footer */

@media(max-width:58rem){
  .footer{
    display: none;
  }
}


@media(max-width: 49rem){
  .iwe{
    display:none;
  }
}



@media(max-width:876px){



  .trust-heading{
    font-size: 1.8rem;
    /* color: red; */
  }

  .pics{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    

  }

  .pics-text{
    font-size: 1rem;
  }

  .pics-1{
    /* background-color: red; */
    /* height: 175px;
    width: 275px; */
    /* display: none; */
    margin-right: 4rem;
  }

  .pics-2{
    /* background-color: #000; */
        /* height: 175px;
    width: 275px; */
    display: none;


  }

  .pics3{
    /* background-color: yellow; */
        /* height: 75px;
    width: 275px;
      margin-left: 10rem;
  margin-right: 3rem; */
  display: none;


  }
}

@media(max-width:392px){
  .trust{
    /* display: none; */
  }
}

@media(max-width:240px){
  .sample{
    margin-top: 8rem;
  }
}

@media(max-width:354px){
  .ml6 .text-wrapper{
    font-size: 3rem;
  }
}


