.slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    margin-top: 100px;
    width: 100%;
    height: calc(100vh - 98px);
    background-size: cover;
    display: none; /* Hide all slides by default */
    background-position: center;
     background-repeat: no-repeat;
    position: relative;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 51, 204, 0.5);  Blue overlay with opacity */
    z-index: 1;
}
.slide:first-child {
    display: block; /* Show the first slide initially */
}
.content {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-40%, -40%);
    color: white;
    text-align: left;
    z-index: 2;
}
.content1 {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-40%, -40%);
  color: rgb(39, 17, 236);
  text-align: left;
  z-index: 2;
}
.content span, .content1 span {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}


.content p, .content1 p {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;

}

.btn {
    display: inline-flex;
    height: 46px;
    /*align-content: center;*/
    align-items: center;
    /*padding: 0px 2px 0px 10px;*/
    background-color: #fff;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    font-size: 12px;
}

.btn1 {
  display: inline-flex;
  height: 46px;
  /*align-content: center;*/
  align-items: center;
  /*padding: 0px 2px 0px 10px;*/
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  font-size: 12px;
}

/* Navigation arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    padding: 10px;
    /*background-color: rgba(0, 0, 0, 0.3);*/
    border-radius: 50%;
    z-index: 8;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Curved lines (static overlay) */
.curved-lines {
    position: absolute;
    top: 30vh;
    left: 0;
    width: auto;
    height: 60vh;
    pointer-events: none;
    z-index: 4;
}

.curved-lines img {
    width: auto;
    height: 58vh;
    opacity: 0.3 ;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 17px;
    margin: 0 2px;
    background-color: rgba(255, 255, 255, 1);
    /*border-radius: 50%;*/
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(247, 190, 0, 1.0);
}



.icon-wrapper {
  margin-top: 20px;
  background-color: #007bff;
  /*float: right; */
  /*padding: 0px 5px 5px 5px; */
  align-items: center;
  height: 40px;
  width: 40px;
  color: #fff;  
  border-radius: 50%;  
  margin-left: 15px; 
}
.icon-wrapper1 {
  margin-top: 20px;
  background-color: #fff;
  /*float: right; */
  /*padding: 0px 5px 5px 5px; */
  align-items: center;
  height: 40px;
  width: 40px;
  color: #007bff;  
  border-radius: 50%;  
  margin-left: 15px; 
}
.content a:hover {
  background-color: #f0f0f0; 
}

.content a:hover .icon-wrapper {
  background-color: #0056b3; 
  color: #fff; 
}
.icon-wrapper i, .icon-wrapper1 i {
    font-size: 15px;
    margin-left: 17px;
}




.nav-slider {
  /*left: 0;*/
  /*padding: 0 0 427px;*/
  position: relative;
  /* top: 0; */
  width: 100%; /* 1984px / 1984px = 100% */
  justify-items: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.l-constrained-4 {
  margin: 0 auto;
  padding: 20px 50px;
  position: relative;
  width: 100%;
}

.text-6 {
  /* margin: 50px 0 auto; */
  padding-top: 80px;
  color: #4274d1;
  font-size: 1.488564rem; /* 52.62px / 16px = 3.28875rem */
  font-weight: 800;
  padding-left: 20%;
  text-align: center;
  width: 80%;
  text-transform: uppercase;
}
.slider-part {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: transparent;
  border-radius: 16px;
  margin-bottom: 130px;
  padding-top: 10px;
  padding-bottom: 10px;

}

.slider-itemspart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: scrolling 15s ease-in-out infinite;
  white-space: nowrap;
  width: 80%;
   /*min-width: max-content;  Ensure enough space for all items */
  /* border: 1px solid rgba(255, 255, 255, 0.4); */

}

@keyframes scrolling {

  0% {
      transform: translateX(90%);
  }

  100% {
      transform: translateX(-10%);
  }
}
.slider-itemspart  img  {
  width: 20%;
  height: 100px;
  margin: 5px;
  display: block;
  /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1); */
  /* margin-left: 10px; */
}
.text-7 {
  margin: 28px auto 0;
  width: 80%;
  line-height: 25px;
  font-size: 18px;
  text-align: center;
}


/*.row-10 > * {
  float: left;
  margin: 0 12.3px 0 0;
}
.row-10 > *:last-child {
  margin-right: 0 !important;
}*/
.rectangle-2-copy-holder {
  margin: 18px auto 0;
  min-height: 39px;
  padding: 0 0 0 12px;
  position: relative;
  right: 7.5px;
  width: 145px;
  -webkit-border-radius: 17.53px 17.54px 17.54px 17.53px/17.54px;
  -moz-border-radius: 17.53px 17.54px 17.54px 17.53px/17.54px;
  border-radius: 17.53px 17.54px 17.54px 17.53px/17.54px;
  background: #3366cc;
  color: #ffffff;
  font-size: 0.744271rem; /* 13.51px / 16px = 0.844375rem */
  font-weight: bold;
  line-height: 39px;
  text-align: center;
  text-transform: uppercase;
}
.col {
  height: auto;
  padding: 28px 20px;
  position: relative;
  width: 25%;
  font-weight: 500;
  margin-right: 5%;
  -webkit-border-radius: 9px 8px 8px 9px;
  -moz-border-radius: 9px 8px 8px 9px;
  border-radius: 9px 8px 8px 9px;
  background: #ffffff;
  -webkit-box-shadow: -12.937286px 5.733887px 18px 0 rgba(0, 0, 0, 0.17);
  -moz-box-shadow: -12.937286px 5.733887px 18px 0 rgba(0, 0, 0, 0.17);
  box-shadow: -12.937286px 5.733887px 18px 0 rgba(0, 0, 0, 0.17); /*drop shadow*/
}
.row-10 {
    display: inline-flex;
    width: 90%;
  margin: 25px 0 0 10%;
  position: relative;
}
/*.row-10 > * {
  float: left;
  margin: 0 12.3px 0 0;
}
.row-10 > *:last-child {
  margin-right: 0 !important;
}*/

.mission-png {
  display: block;
  margin: 0 auto;
}

.text-9 {
  left: 1.5px;
  margin: 14px auto 0;
  position: relative;
  width: 100%;
  text-align: justify;
}
.text-9 > * {
  line-height: 15px;
  text-align: justify;
}
.text-style-3 {
  text-align: center;
}

.text-style {
  font-size: 1.490121rem; /* 38.24px / 16px = 2.39rem */
  font-weight: bold;
  line-height: 12.12322px;
}

.text-style-4 {
  font-weight: bold;
  line-height: 16px;
}
.text-9 p {
    font-size: 14px;
    word-spacing: normal;
    white-space:normal ;
    /* padding: 0; */
}
.text-9 p strong {
  font-size: 14px;
  word-spacing: normal;
  white-space:normal ;
  line-height: normal;
  /* padding: 0; */
}


.red-bg-jpg {
  left: 0;
  position: absolute;
  width: 100%; /* 1984px / 1984px = 100% */
}
.revolutionising-rwanda-red-bg-jpg-holder {
  left: 0;
  position: absolute;
  width: 100%; /* 1984px / 1984px = 100% */
  background-position: center top;
  height: 688px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.col-8 {
  padding: 25px 0 679px;
  position: relative;
  width: 100%; /* 1984px / 1984px = 100% */
  background: url(images/vector_smart_object.png) no-repeat center 0;
  background-position: center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.l-constrained-5 {
  margin: 0 auto;
  padding: 0 282px;
  position: relative;
  width: 100%;
}
.text-12 {
  color: #ffffff;
  font-size: 1.488564rem; /* 52.62px / 16px = 3.28875rem */
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.text-13 {
  margin: 25px 0 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}
.wrapper-8 {
  height: 30px;
  margin: 19px auto 0;
  position: relative;
  right: 72px;
  width: 30px;
}
.rectangle-14 {
  height: 17px;
  left: 50%;
  position: absolute;
  top: 5px;
  width: 1px;
  background: #ffffff;
  margin-left: 0;
}
.ellipse-1 {
  height: 30px;
  left: 50%;
  position: absolute;
  top: 0;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #4274d1;
  margin-left: -15px;
}
.vector-smart-object-2 {
  /*left: 50%;*/
  position: relative;
  /*margin-left: -307px;*/
  height: 487px;
  margin-top: 200px;
  opacity: 0.8;
  float: right;

  /*overflow: hidden;*/
}
.vector-smart-object-3 {
    position: absolute;
    height: 688px;
    margin-top:0px ; 
    width: 100%;
    opacity: 0.5;
}

.tabs {
  display: flex;
  background-color: #ffd700;
  /*border-radius: 8px;*/
  overflow: hidden;
}
/**/
.tab {
  flex: 1;
  padding: 15px 20px;
  text-align: center;
  font-weight: bold;
  font-size:14px;
  color: white;
  background-color: #0072c6;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-right: 1px solid white;  
}

.tab:last-child {
  border-right: none; /* Remove border from the last tab */
}
.tab.active {
  background-color: #ffd700;
  color: black;
}

.tab:hover {
  background-color: #005fa3;
}

.tab-content {
  display: inline-block;
  /*margin-top: -5520px;*/
  position: relative;
  padding: 35px 0 30px 0;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

.row-3 {
  left: 15%;
  /*mheight: 63px;*/
  /*padding: 24px 70px 19px 159px;*/
  position: absolute;
  margin-top: 171px;
  width: 70%;
  background: transparent;
  /*margin-left: -487px;*/
}
.row-7 {
  height: 301px;
  position: absolute;
  width: 100%;
  background: #ffffff;
}
.netshield-jpg {
  float: left;
  margin: 0 119px 0 0;
  width:352px;
  height:233px
}
.text-service, .text-service2, .text-service3, .text-service4,.text-service1 {
    /*width: 70%;*/
    margin-left: 3%;
    position: relative;
    padding: 0 2% 0 0;
}

.text-service p, .text-service1 p, .text-service2 p, .text-service3 p, .text-service4 p {
    margin-top: 20px;
    font-size: 16px;
    position: relative;
    line-height: 19px;
    margin-bottom: 20px;
}

.rectangle-2-copy-holder-2 {
  margin: 82px 0 0;
  /*height: 58px;*/
  padding: 10px 30px;
  position: relative;
  width: 158px;
  -webkit-border-radius: 23.86px;
  -moz-border-radius: 23.86px;
  border-radius: 23.86px;
  background: #3366cc;
  color: #ffffff;
  font-size: 0.835357rem; /* 16.57px / 16px = 1.035625rem */
  font-weight: bold;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
}

.image-service {
    width: 25%;
    margin-left: 10px;
}


.col-5 {
  left: 0;
  /*padding: 817px 0 0;*/
  margin-top: 680px;
  position: relative;
  /*top: 429px;*/
  width: 100%; /* 1984px / 1984px = 100% */
  /*background: url(images/layer_2.jpg) no-repeat center 0;*/
  background-position: center   ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /*background-color: white;*/

}
.l-constrained-3 {
  margin: 0 auto;
  padding: 0 99px;
  position: relative;
  width: 100%;
}

.row-5 {
  margin: 84px 0 0 0;
  padding-bottom: 80px;
  position: relative;
}
.row-5 > * {
  float: left;
  margin: 0 12px 0 0;
}
.row-5 > *:last-child {
  margin-right: 0 !important;
}

.rectangle-12-copy-3-holder {
  /*padding: 32px 0 0;*/
  position: relative;
  width: 24%;
  margin-bottom: 20px;
  background: #ffffff;
  -webkit-box-shadow: 8.441781px 5.49315px 0 0 rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 8.441781px 5.49315px 0 0 rgba(0, 0, 0, 0.13);
  box-shadow: 8.441781px 5.49315px 0 0 rgba(0, 0, 0, 0.13); /*drop shadow*/
}

.layer {
  display: block;
  margin: 0 auto;
}


.partners-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0;
  
}

.partners-slider h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.slider-container {
  overflow: hidden;

}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;

}

.partner {
  width: 20%;
  margin: 0 15px;
}

.partner img {
  width: auto;
  height: 80px;
  display: block;
  /* border: 2px solid #333; Adjust the color and thickness as needed */
  border-radius: 5px; /* Optional: adds rounded corners */
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


    /* Card Container */
    .card11 {
      margin: 5vh  20% 0 30%;
      position: relative;
      background-color: rgba(251, 246, 246,0.8);
      width: 100%;
      max-width: 700px;
      padding: 30px;
      height: 500px;
      border-radius: 10px;
      border: solid 1px #ffffff ;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      overflow: hidden;
    }

  

    /* Header Text */
    .heading11 {
      font-size: 2.0rem;
      font-weight: 600;
      color: #007bff; /* Blue color */
      margin-bottom: 10px;
    }
    .subheading11 {
      font-size: 2.0rem;
      font-weight: bolder;
      color: #007bff;
      margin-bottom: 20px;
    }

    /* Social Media Links */
    .social-links11 {
      list-style: none;
      margin-bottom: 25px;
    }
    .social-links11 li {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 15px 0;
    }
    .social-links11 div {
      width: 30px;
      height: 30px;
      margin-right: 10px;
      background-color: #0072c6;
      border-radius: 50%;
    }
    .social-links11 div i {
      width: 24px;
      height: 24px;
      color: #fff;
      margin-top: 5px;
    }
    .social-links11 a {
      color: #007bff;
      font-size: 1.3rem;
      font-weight: bold;
      text-decoration: none;
    }

/* --- Responsive Design --- */
/* Large screens (e.g., desktops) */
@media (min-width: 1200px) {
    .content h2 {
        font-size: 4rem;
    }

    .content p {
        font-size: 1.8rem;
    }

    .btn {
        font-size: 0.7rem;
        padding: 10px 5px;
    }

    .curved-lines {
        width: 350px;
        height: 180px;
    }
}

/* Medium screens (e.g., tablets) */
@media (max-width: 1199px) and (min-width: 768px) {
    .content h2 {
        font-size: 3rem;
    }

    .content p {
        font-size: 1.4rem;
    }

    .btn {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .curved-lines {
        width: 250px;
        height: 120px;
    }

  
  .content span, .content1 span {
      font-size: 1.4rem;
      margin-bottom: 15px;
      text-transform: uppercase;
  }
  
  
  .content p, .content1 p {
      font-size: 1.6rem;
      margin-bottom: 40px;
      text-transform: uppercase;
      font-weight: bold;
  
  }
  
  .btn {
      display: inline-flex;
      height: 38px;
      /*align-content: center;*/
      align-items: center;
      /*padding: 0px 2px 0px 10px;*/
      font-size: 10px;
  }
  
  .btn1 {
    display: inline-flex;
    height: 38px;
    /*align-content: center;*/
    align-items: center;
    font-size: 10px;
  }
  
  /* Navigation arrows */
  .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.8rem;
      color: white;
      padding: 10px;
      /*background-color: rgba(0, 0, 0, 0.3);*/
      border-radius: 50%;
      z-index: 8;
  }
  
  .prev {
      left: 50px;
  }
  
  .next {
      right: 20px;
  }
  .text-6 {
    padding-top: 25px;
    font-size: 1.3rem;
  }
  .text-7 {
    margin: 20px auto 0;
    width: 90%;
    line-height: 23px;
    font-size: 16px;
  }
  .row-10 {
    display: inline-flex;
    width: 100%;
    margin: 25px 0 auto;
    position: relative;
   }

  .col {
    padding: 23px 5px;
    width: 32%;
    margin-right: 1%;
    line-height: 20px;
   }
   .text-13 {
    margin: 20px 0 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
  }

  .col-8 {
    padding: 25px 0 179px;
    position: relative;
  }
  .l-constrained-5 {
    padding: 0 70px;
  }
  .row-3 {
    left: 7.5%;
    /*mheight: 63px;*/
    /*padding: 24px 70px 19px 159px;*/
    width: 85%;
    /*margin-left: -487px;*/
  }
  .tab {
    flex: 1;
    padding: 15px 20px;
    font-size:10px;  
  }

  .netshield-jpg {
    float: left;
    margin: 0 59px 0 0;
    width:252px;
    height:auto;
  }

  .text-service, .text-service2, .text-service3, .text-service4,.text-service1 {
    /*width: 70%;*/
    margin-left: 0.2;
    position: relative;
    padding: 0 0.2% 0 0;
}

.text-service p, .text-service1 p, .text-service2 p, .text-service3 p, .text-service4 p {
    margin-top: 20px;
    font-size: 13px;
    position: relative;
    line-height: 28px;
    margin-bottom: 20px;
}
.image-service {
  width: 258px;
}
.text-service h2, .text-service1 h2, .text-service2 h2, .text-service3 h2, .text-service4 h2{
  font-size: 16px;
}
.l-constrained-3 {
  padding: 0 59px;
}
.row-5 {
  margin-top: 54px;
} 

    .card11 {
      margin: 3vh  20% 0 15%;
      width: 100%;
      max-width: 600px;
      padding: 30px;
      height: 450px;
    }

  

    /* Header Text */
    .heading11 {
      font-size: 1.8rem;
      font-weight: 600;
      color: #007bff; /* Blue color */
      margin-bottom: 10px;
    }
    .subheading11 {
      font-size: 1.8rem;
      font-weight: bolder;
      color: #007bff;
      margin-bottom: 18px;
    }

    /* Social Media Links */
    .social-links11 {
      list-style: none;
      margin-bottom: 22px;
    }
    .social-links11 li {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 15px 0;
    }
   



}
 
@media (max-width: 767px) {
    .content {
        top: 15vh;
        width: 50%;
    }
    .content1 {
      top: 22vh;
    }

    .content span {
        font-size: 0.9rem;
    }
    .content1 span {
      font-size: 14px;
      font-weight: 600;
    }
    .content p, .content1 p {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .prev, .next {
       top: 35vh;
        font-size: 1.5rem;
    }

    .curved-lines {
        width: 70px;
        height: 60px;
    }
    .dots {
      position: absolute;
      bottom: 70px;
      left: 50%;
      transform: translateX(-50%);
  }
    .slide {
      margin-top: 70px;
      width: 100%;
      height: calc(60vh - 80px);
    }
  .nav-slider {
    margin-top: -54px;
    z-index: 11;
    }
  .text-6 {
    font-size: 0.75rem;
    width: 100%;
    padding-left: 0px;
    /* margin-top: -54px; */
  }
  .text-7 {
    margin: 18px auto 0;
    width: 100%;
    line-height: 20px;
    font-size: 0.8rem;
    text-align: center;
  }
  .l-constrained-4 {
    margin: 0 auto;
    padding: 20px 12px;
  }

  .rectangle-2-copy-holder {
    margin: 15px auto 0;
    min-height: 34px;
    padding: 0 0 0 12px;
    position: relative;
    right: 7.5px;
    width: 135px;
  }
  .col {
    width: 95%;
    margin-right: 5%;
    margin-top: 20px;
  }
  .row-10 {
  display: block;
  width: 80%;
  margin: 25px 0 0 10%;
  position: relative;
 }
 .revolutionising-rwanda-red-bg-jpg-holder {
   left: 0;
   position: absolute;
   width: 100%; /* 1984px / 1984px = 100% */
   background-position: center top;
   height: 528px;
  }
  .col-8 {
    padding: 25px 0 79px;
    position: relative;
    width: 100%; /* 1984px / 1984px = 100% */
  }
  .l-constrained-5 {
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    width: 100%;
  }
  .text-12 {
    font-size: 1.0rem;
  }
  .text-13 {
    font-size: 0.8rem;
    /* line-height: 0; */
    margin-bottom: 20px;
  }
  .row-3 {
    width: 99%;
    left: 0.5%;
  }
 .tabs {
  width: 100%;
 }
  .tab {
    /* padding: 15px 20px; */
    width: 25%;
    font-size:5.2px;
    color: white;
  }
  .tab-content {
    display: block;
    padding: 15px 0 10px 0;
  }
  .image-service {
    width: 100%;
    height: 80px;
    display: none;
  }
  .text-service p, .text-service1 p, .text-service2 p, .text-service3 p, .text-service4 p {
    font-size: 0.8rem;
}
.text-service h2, .text-service1 h2, .text-service2 h2, .text-service3 h2, .text-service4 h2{
  font-size: 1.0rem;
  margin-top: 10px;
}
.netshield-jpg {
  float: left;
  margin: 0 119px 0 0;
  width:auto;
  height:150px;
  margin-left: 30%;
}
.col-5 {
  left: 0;
  /*padding: 817px 0 0;*/
  margin-top: 585px;
  background-color: #ddd;
  /* display: absolute; */
  position: relative;
  z-index: 1111;
  
  }
  .l-constrained-3 {
    padding: 0 9px;
    /* margin-top: -150px; */
  }
  .text-6 {
    padding-top: 10px;
    /* margin-top: -800px; */
    color: #4274d1;
    font-size: 0.888564rem; /* 52.62px / 16px = 3.28875rem */
    padding-left:10px;
  }
  .vector-smart-object-2 {
    /*left: 50%;*/
    position: relative;
    /*margin-left: -307px;*/
    height: 397px;
  
    /*overflow: hidden;*/
  }
  .vector-smart-object-3 {
    height: 528px;
  }
  .row-5 {
    margin: 20px 0 0 0;
    padding-bottom: 50px ;
  }
  .slider-itemspart  img  {
    width: 20%;
    height: 50px;
  }


   .card11 {
      margin: 5vh 5% 0 30%;
      width: 80%;
      /*margin-left: -0%;*/
      max-width: 250px;
      padding: 30px;
      height: 170px;
    }

  

    /* Header Text */
    .heading11 {
      margin-top: -30px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #007bff; /* Blue color */
      margin-bottom: 5px;
    }
    .subheading11 {
      font-size: 0.8rem;
      font-weight: bolder;
      color: #007bff;
      margin-bottom: 8px;
    }
   .fllowus{
    font-size: 0.5rem;
    margin-top: -33px;
   }
    /* Social Media Links */
    .social-links11 {
      list-style: none;
      margin-bottom: 7px;
    }
    .social-links11 li {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 5px 0;
    }
     .social-links11 a {
      color: #007bff;
      font-size: 0.4rem;
      font-weight: bold;
      text-decoration: none;
    }

    .social-links11 div {
      width: 20px;
      height: 20px;
      margin-right: 10px;
      background-color: #0072c6;
      border-radius: 50%;
    }
    .social-links11 div i {
      width: 13px;
      height: 13px;
      color: #fff;
      font-size: 12px;
      margin-top: 2px;
    }
}