@media only screen and (min-width:320px) {
.video-thumb {
  position: relative;
  display: block;
  width: 260px;
  height: 215px;
  overflow: hidden;
  background-color: #000;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the box without distortion */
  display: block;
}

/* YouTube-style circular play button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-thumb:hover .play-button {
  background: rgba(255, 0, 0, 0.8);
}


.partners h2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-family: body-bold, sans-serif;
  color: #15aae2; 
}

.reports-section {
  margin: 0 auto;
  padding: 30px 20px;
}

.reports-section h2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-family: body-bold, sans-serif;
  color: #15aae2; 
}

.report-item {
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.report-item h3 {
  margin-top: 0;
}

.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #15aae2; 
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #fff;
}

.download-btn:active {
  transform: scale(1); /* back to normal size when pressed */
  box-shadow: none;
}

.press-releases {
  padding: 40px 20px;
  
}

.press-releases h2 {
  margin-bottom: 20px;
}

.table-responsive {
  overflow-x: auto;
}

.press-table {
  width: 100%;
  border-collapse: collapse;
}
.press-table td.date-col {
  white-space: nowrap;
}

.press-table th,
.press-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

.press-table td {
  font-family: body-regular, sans-serif;
  color: #737373;
  line-height: 1.5;
}

.press-table th {
  background-color: #f2f2f2;
  font-weight: 600;
  color: #15aae2; /* blue header text */
  font-size: 18px; /* Adjust as needed */
  font-family: body-semibold, sans-serif !important;
}

.press-table tr:nth-child(even) {
  background-color: #fafafa;
}

.press-table a {
  color: #a03890;
  text-decoration: none;
  font-family: body-regular, sans-serif !important;
}

.press-table a:hover {
  text-decoration: underline;
}

.press-table a:focus,
.press-table a:active,
.press-table a:visited {
  color: #a03890; /* keep purple on click, focus, and visited */
  text-decoration: none;
  outline: none;
  font-weight: normal;
}
.partner {
  margin-bottom: 40px;
  padding: 20px;
}

.partner h3 {
  margin-bottom: 15px;
  color: #15aae2;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 22px;
}

.partner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-content img {
  width: 150px;
  height: auto;
  border-radius: 6px;
}

.partner-text {
  flex: 1;
}

.solution {
  height: 300px;
    
}
.senior-team {
  margin: 0 auto;
  padding: 20px;
}

.title-smt {
  font-size: 40px;
  font-family: body-bold, sans-serif;
  color: #15aae2; 
  margin-bottom: 20px;
    
}

.team-member {
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.team-member h3 {
  color: #a03890;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 22px;
}

.team-member .title {
  font-weight: bold;
  font-size: 14px;
  color: grey;
  display: block;
}

.team-member .understroke {
  margin-top: 2px;
}

.team-content {
  display: flex;
  flex-direction: column; /* mobile: column */
}

.team-photo {
  margin-bottom: 15px;
}

.team-photo img {
  width: 250px;
  border-radius: 4px;
}

.team-bio {
  flex: 1;
  font-size: 14px;
  font-family: body-regular, sans-serif;
  color: #737373;
  line-height: 1.5;
}

.board-of-directors-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.board-title {
  text-align: left;
  margin-bottom: 30px;
  font-family: body-bold, sans-serif;
  color: #15aae2;
}

.board-list {
  display: grid;
  gap: 10px;
}

.board-item {
  background: #f5f5f5; /* Light grey background */
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.board-item strong {
  font-weight: 600;
  color: #a03890;
}

  .image-caption-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 250px;
  }

  .image-caption-container img {
    width: 100%;
    display: block;
    height: 250px;
    object-fit: cover;
  }

  .caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8); /* 80% transparent black */
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    overflow-wrap: break-word;
    max-height: 200px; /* limit height */
    overflow: hidden; /* clip excess */
    text-overflow: ellipsis;
  }
  
  .video1 {
    margin-bottom: 20px;
  }
  .journey-image {
    width: 100%; /* Make the image fill the container's width */
    
    object-contain: contain; /* Ensures image is cropped to cover the area */
  }

  /* Remove background from News page */
  .blognews-page .item {
    background: none !important;
  }
  /*Added Styles*/
  .news-title {
    color: #a03890 !important;
    font-family: body-bold, sans-serif !important;
    font-size: 20px;
    margin-bottom: -8px;
  }
  .news-page .article-intro {
    background-color: #f4f4f4;
    margin-bottom: 20px;
    min-height: 150px; /* Set a minimum height */
  }

  .news-page .article-intro img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
  }

  .news-page .article-intro p {
    font-size: 14px !important;
    font-family: body-regular, sans-serif !important;
    color: #737373;
    line-height: 1.5;
    padding: 20px 20px;
  }
  .pull-left.item-image{
    margin: 0 !important;
  }
  
  .pull-none.item-image {
    background-color: #f4f4f4;
  }
  .pull-none.item-image img{
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
  }
  .page-subtitle small {
    font-size: 40px; /* Adjust as needed */
    font-family: body-bold, sans-serif !important;
    color: #15aae2; /* Change color if necessary */
    padding-left: 12px;
  }
  .news-page .page-header{
    display: block !important;
  }
  .news-page .readmore{
    margin-top: 10px;
  }
  .news-page .readmore a{
    font-family: body-semibold, sans-serif !important;
    text-transform: uppercase;
    font-size: 14px;
    color: #a03890 !important;
    padding-left: 8px;
  }
  .news-page .readmore a:hover{
    color: #64245a !important;
    background-color: #fff !important;
  }
  .news-page h1 {
    font-size: 40px; /* Adjust as needed */
    font-family: body-bold, sans-serif !important;
    color: #15aae2; /* Change color if necessary */
  }
  .news-page h2 {
    font-size: 20px; /* Adjust as needed */
    font-family: body-bold, sans-serif !important;
    color: #15aae2; /* Change color if necessary */
  }
  .news-page .article-header h1 {
    font-size: 25px; /* Adjust as needed */
    font-family: body-bold, sans-serif !important;
    color: #15aae2; /* Change color if necessary */
  }
  .news-page .article-content {
    background-color: #f4f4f4;
    padding: 20px;
    font-size: 14px !important; /* Adjust as needed */
    font-family: body-regular, sans-serif !important;
    color: #737373;
    line-height: 1.42857143;
  }
  .news-page .col-md-12{
    padding-left: 0 !important;
  }
  .t3-sl {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  a:hover {
    text-decoration: none !important;
  }
  a, a:active, a:focus,
  button, button:focus, button:active,
  .btn, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn.active.focus {
    outline: transparent !important;
    outline: 0;
    text-decoration: none !important;
  }
  .mybox-shadow {
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
  }
  .box-shadow-3 {
    -webkit-box-shadow: 0px 0px 52px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 52px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 52px 2px rgba(0, 0, 0, .3);
  }
  .box-shadow-6 {
    -webkit-box-shadow: 0px 0px 52px 2px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 52px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 52px 2px rgba(0, 0, 0, .6);
  }
  #loader-wrapper {
    z-index: 10003
  }
  .lightbox {
    position: fixed !important;
    top: 123px !important;
  }
  .import-rec {
    background-color: #e4f3fc
  }
  a:active, a:focus {
    color: #A03795 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
  }
  input::-moz-focus-inner {
    border: transparent !important;
  }
  .t3-mainbody {
    background-color: #fff;
  }
  body {
    background-color: #E5E5E5;
  }
  /* SERVICES */
  .in-right3 {
    height: 400px;
  }
  /* CONTACTS PAGE */
  .contact-address {
    display: none;
  }
  .cont-txt {
    text-align: left;
  }
  .controls .btn {
    font-family: body-regular, sans-serif !important;
  }
  .contact-address span {
    font-family: body-regular, sans-serif !important;
    color: #818181;
  }
  .control-label {
    font-family: body-regular, sans-serif !important;
  }
  .page-header h3 {
    font-size:
  }
  .page-header {
    padding-bottom: 9px;
    margin: 0 0 20px;
    border-bottom: 0px;
    display: none;
  }
  .contact-name {
    display: none;
  }
  select, textarea, input[type="text"], input[type="email"], input[type="tel"], .inputbox {
    border: 1px solid #DEDEDE !important;
  }
  .btn-primary {
    background-color: #15aae2 !important;
    border: 0 !important;
  }
  .btn-primary:hover {
    background-color: #a03890 !important;
    border: 0 !important;
  }
  /********************   CONTACT FORM   ********************/
  .contact-form legend {
    font-family: body-regular, sans-serif !important;
  }
  .contact-name {
    color: #15aae2;
    font-family: body-regular, sans-serif !important;
  }
  .optional {
    color: #000;
  }
  .itemscope {
    max-width: 500px;
  }
  .contact h1 {
    color: #15aae2 !important;
    font-family: body-regular, sans-serif !important;
  }
  .contact h3 {
    color: #a03890 !important;
    font-family: body-bold, sans-serif !important;
  }
  .contact-name {
    display: nonee !important;
    font-family: body-regular, sans-serif !important;
  }
  .say-hey {
    text-align: center;
  }
  legend {
    color: #15aae2;
  }
  #jform_contact_name {
    width: 100%;
    font-size: 14px;
    font-family: body-regular, sans-serif !important;
  }
  #jform_contact_email {
    width: 100%;
    font-size: 14px;
    font-family: body-regular, sans-serif !important;
  }
  #jform_contact_emailmsg {
    width: 100%;
    font-size: 14px;
    font-family: body-regular, sans-serif !important;
  }
  #jform_contact_message {
    width: 100%;
    font-size: 14px;
    font-family: body-regular, sans-serif !important;
  }
  #jform_contact_name-lbl {
    display: none;
  }
  #jform_contact_email-lbl {
    display: none;
  }
  #jform_contact_emailmsg-lbl {
    display: none;
  }
  #jform_contact_message-lbl {
    display: none;
  }
  #contact-form label {
    font-weight: normal !important;
    color: #666;
  }
  .con-bg {
    background-color: #dedede;
    padding-top: 15px;
    border-radius: 0 !important;
    margin-bottom: 60px;
  }
  .well-bg {
    background-color: #dedede;
    border: 0;
    box-shadow: none !important;
  }
  select, textarea, input[type="text"], input[type="email"], input[type="tel"], .inputbox {
    border: #F5F5F5;
    border-radius: 4px;
    box-shadow: none !important;
  }
  input.invalid {
    border: 1px solid #15aae2 !important;
  }
  input[type="text"] {
    border-radius: 0 !important;
  }
  input[type="email"] {
    border-radius: 0 !important;
  }
  legend {
    border-bottom: 1px solid #fff;
    padding-bottom: 7px !important;
  }
  /*   -----    place-holder color Start  ------*/
  input::-webkit-input-placeholder {
    color: #bababa !important;
  }
  input:-moz-placeholder {
    /* Firefox 18- */
    color: #bababa !important;
  }
  input::-moz-placeholder {
    /* Firefox 19+ */
    color: #bababa !important;
  }
  input:-ms-input-placeholder {
    color: #bababa !important;
  }
  /*   ///////    place-holder color  End       */
  /*   -----    place-holder color  "text areas" Start  ------*/
  textarea::-webkit-input-placeholder {
    color: #bababa !important;
  }
  textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #bababa !important;
  }
  textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #bababa !important;
  }
  textarea:-ms-input-placeholder {
    color: #bababa !important;
  }
  /*................./////////  Custom Contact....................../
/* SERVICES */
  #ser-img {
    background-position: center;
    background-size: cover;
  }
  .distribution-img {
    background-image: url(../images/frame/hewatele-production.jpg);
  }
  .supply-page-img {
    background-image: url(../images/frame/hewatele-supply.jpg);
    background-position: right !important;
  }
  .services-img {
    background-image: url(../images/frame/hewatele-production.jpg);
  }

  .services-oxygen-img {
    background-image: url(../images/frame/hewatele-lox-project-img.jpeg);
  }
  /* OUR APPROACH */
  .appimag {
    background-image: url(../images/frame/hewatele-approach-1.jpg);
    background-position: center;
    background-size: cover;
  }
  .appr {
    background-color: #ededed;
    padding-top: 40px;
  }
  .app-icons {}
  #a-icon {}
  .a-icon-1 {
    background-image: url(../images/icons/hewatele-identify.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90px;
  }
  .a-icon-2 {
    background-image: url(../images/icons/hewatele-design.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90px;
  }
  .a-icon-3 {
    background-image: url(../images/icons/hewatele-incubate.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90px;
  }
  .a-icon-4 {
    background-image: url(../images/icons/hewatele-handover.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90px;
  }
  .a-arrow {
    background-image: url(../images/icons/hewatele-arrow2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    height: 50px;
  }
  #a-icon-t {
    height: 130px;
  }
  #a-icon-txt {
    height: 22px;
    text-align: center;
  }
  /* OUR PLANTS PAGE */
  .siaya-img {
    background-image: url(../images/frame/hewatele-siaya-plant.jpeg);
    background-position: center;
    background-size: cover;
    height: 300px;
  }
  .nairobi-img {
    background-image: url(../images/frame/hewatele-nairobi-plant.jpeg);
    background-position: center;
    background-size: cover;
    height: 300px;
  }
  .nakuru-img {
    background-image: url(../images/frame/hewatele-nakuru-plant.jpeg);
    background-position: center;
    background-size: cover;
    
  }
  .maua-img {
    background-image: url(../images/frame/Installed-hewatele-maua-plant.jpeg);
    background-position: center;
    background-size: cover;
    
  }
  
  .kisumu-img {
    background-image: url(../images/frame/hewatele-plant-kisumu.jpg);
    background-position: center;
    background-size: cover;
    
  }
  .lox-project-img {
    background-image: url(../images/frame/hewatele-lox-project-img.jpeg);
    background-position: center;
    background-size: cover;
    
  }
    
  .ruto-oxygen.jpg .plt-float {
    background-color: rgb(187, 32, 133);
    height: 300px;
  }
  .plt-float2 {
    background-color: rgb(187, 32, 133);
    height: 300px;
  }
  #plant-div {
    padding-top: 40px;
  }
  #plant-img {
    position: relative;
    z-index: 100;
  }
  #plant-txt {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #plant-txt2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .row {
    width: 100%;
    margin-left: 0px;
  }
  /* OUR APPROACH */
  .a-txt {
    text-align: center;
  }
  /* MISSION */
  .vision-img {
    background-image: url(../images/frame/hewatele-mission-1.jpg);
    background-size: cover;
  }
  .mission-img {
    background-image: url(../images/frame/hewatele-vision-1.jpg);
    background-size: cover;
  }
  /* OUR JOURNEY */
  .j-cont {}
  .journey-div {}
  .j-txt {
    text-align: center;
  }
  .m-txt {
    padding-top: 40px;
    padding-bottom: 40px;
    height: 200px;
  }
  .mywrap {
    width: 100%;
    height: 500px;
    background-color: rgb(1, 171, 255);
    padding: 0;
  }
  .mycontent {
    height: 300px;
    background-color: rgb(209, 132, 16);
  }
  /* MAST */
  #top-mast {
    height: 250px;
    background-color: rgb(152, 16, 101);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mast-solution {
    background-image: url(../images/frame/mast-hewatele-1.jpeg);
  }
  .mast-plants {
    background-image: url(../images/frame/mast-hewatele-2.jpeg);
  }
  .mast-about {
    background-image: url(../images/frame/mast-hewatele-3.jpeg);
  }
  .mast-contacts {
    background-image: url(../images/frame/mast-hewatele-4.jpeg);
  }
  .mast-services {
    background-image: url(../images/frame/mast-hewatele-6.jpeg);
  }
  /* SOLUTIONS */
  .lox-img {
    background-image: url(../images/frame/LOX.jpg);
  }
  .medical-gas-img {
    background-image: url(../images/frame/medical-gases.jpg);
  }
  .training-img {
    background-image: url(../images/frame/training.jpg);
  }
  .accessories-img {
    background-image: url(../images/frame/accessories.jpg);
  }
  .psa-img {
    background-image: url(../images/frame/psa.jpg);
  }
  .isotainer-img {
    background-image: url(../images/frame/isotainer.jpg);
  }
  .mgps-img {
    background-image: url(../images/frame/mgps.jpg);
  }
  .intro-head-4 {
    font-size: 1em;
  }
  .sol-cont {
    width: 100% !important;
  }
  .in-right {
    height: 300px;
    background-size: cover;
    background-position: center;
  }
  .in-right2 {
    height: 400px;
    background-size: cover;
    background-position: center;
  }
.about-img-container {
  width: 100%;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
}
  .article-title, .article-header h1 {
    color: #15aae2 !important;
    font-family: body-bold, sans-serif !important
  }
  /*PARTNERS*/
  .clients-base {
    background-color: #fff;
  }
  .centered-modal.in {
    display: flex !important;
  }
  .centered-modal .modal-dialog {
    margin: auto;
  }
  .modal {
    z-index: 10001;
  }
  .modal-footer {
    border-top: 0;
  }
  .btn {
    border: 0;
  }
  .modal-body img {
    width: 220px;
  }
  .close {
    float: right;
    font-size: 21px;
    line-height: 1;
    color: #fff;
    opacity: .5;
    text-shadow: none;
    filter: alpha(opacity=50);
  }
  .close:hover, .close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
  .modal-body h3 {
    margin-top: 7px;
  }
  .clients-bs {
    width: 95% !important;
  }
  .myfade-l, .myfade-r {
    z-index: 500;
    position: absolute;
    height: 200px;
    width: 7%
  }
  .clients-div {
    padding-left: 30px;
    padding-right: 30px
  }
  .slick-dots {
    bottom: -50px
  }
  .myfade-l {
    background-image: url(../images/clients-logos/logicool-slider-prev-fade.png);
  }
  .myfade-r {
    background-image: url(../images/clients-logos/logicool-slider-next-fade.png);
    left: 0;
    right: 0;
    margin: auto 0 auto auto;
    background-position: right
  }
  .slick-slide img{
    width: 100%
  }
  .slider {
    width: 100%
  }
  .slick-dots li.slick-active button::before {
    color: #a03890;
    opacity: 1;
    font-size: 25px;
    line-height: 25px;
    margin-top: -4px
  }
  .slick-dots li button:before {
    font-size: 15px;
    line-height: 15px;
    color: #15aae2;
    opacity: 1
  }
  .slider {
    margin: 15px auto
  }
  
  .slick-slide {
    margin: 0 20px;
    height: auto !important
  }
  .slick-active, .slick-current, .slick-slide {
    opacity: 1
  }
  .slick-next, .slick-prev {
    background-size: 70%;
    background-repeat: no-repeat
  }
  .slick-next:hover, .slick-prev:hover {
    height: 50px;
    width: 40px;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .9
  }
  .slick-next::before, .slick-prev::before {
    content: "←";
    display: none
  }
  .slick-next:hover {
    background-image: url(../images/frame/logicool-slider-next-blue.png);
    transition: all .5s ease-in-out !important;
    -webkit-transition: all .3s ease-in-out !important;
    -moz-transition: all .3s ease-in-out !important;
    -o-transition: all .3s ease-in-out !important
  }
  .slick-prev, .slick-prev:hover {
    background-image: url(../images/frame/logicool-slider-prev-blue.png)
  }
  .slick-prev:hover {
    transition: all .5s ease-in-out !important;
    -webkit-transition: all .3s ease-in-out !important;
    -moz-transition: all .3s ease-in-out !important;
    -o-transition: all .3s ease-in-out !important
  }
  .slick-next, .slick-prev {
    height: 50px;
    width: 40px;
    opacity: .5;
    background-position: center
  }
  .slick-prev {
    left: -40px
  }
  .slick-next {
    right: -50px;
    background-image: url(../images/frame/logicool-slider-next-blue.png)
  }
  /* SAY HEY */
  #je_contact input, #je_contact textarea {
    border-radius: 0 !important;
    background-color: transparent !important;
    border: 1px solid #363636 !important;
    color: #b1b1b1 !important;
    font-size: 13px !important;
    line-height: 18px !important;
  

  }

  #message {
    height: 65px !important;
  }
  input[type="text"]:focus, textarea:focus {
    box-shadow: none !important;
    border: 0 !important;
  }
  .send-p {
    padding-top: 27px !important;
    padding-right: 0;
  }
  #je_contact button[type="submit"]:hover, .qcbutton a.je_button:hover {
    background: #15aae2 !important;
  }
  #je_contact .input {
    display: block;
    margin: 0 0 5px 0;
  }
  #je_contact button[type="submit"], .qcbutton a.je_button {
    background: #a03890 !important;
    color: #ffffff;
    width: 100% !important;
  }
  /*FOOTER*/
  .t-social2 img {
    width: 40px
  }
  .opc2 {
    opacity: .5;
  }
  .opc2:hover {
    opacity: .9;
  }
  .t-social2 {
    width: 100%;
    padding-left: 0;
  }
  .t-social2 li {
    display: inline-block;
    line-height: 65px;
    padding: 0 3px;
  }
  .footer-1, .footer-2 {
    border-bottom: 1px #585858 solid
  }
  .footer-1, .footer-2 p {
    margin: 0 0 6px;
  }
  .f-hr {
    width: 85px;
    border-top: 1px solid #a6ce39
  }
  .footer-2 a {
    color: #b1b1b1
  }
  .footer-2 a:hover {
    text-decoration: none !important;
    color: #fff
  }
  .footer-2, .footer-3, .footer-3 label, .reconpower {
    color: #b1b1b1
  }
  .footer-contact {
    color: #b1b1b1;
    padding-top: 15px;
    line-height: 23px;
  }
  .footer-icons {
    text-align: left;
    padding: 0
  }
  .reconpower {
    line-height: 80px;
    text-align: center;
    height: 80px;
    font-size: 12px;
    background-color: #000;
    font-family: open_sansregular, Helvetica, Arial, sans-serif
  }
  .footer-2 h4, .footer-3 h4 {
    font-family: oswaldmedium, Helvetica, Arial, sans-serif
  }
  .footer-base {
    background-color: #15161B;
    padding-top: 30px;
    padding-bottom: 30px
  }
  .footer-1 {
    height: 90px;
    background-repeat: no-repeat;
    background-size: 150px;
    background-image: url(../images/logos/hewa-tele-logo-2.png);
    background-position: top left
  }
  .footer-2 {
    margin-bottom: 35px
  }
  .footer-contact hr {
    display: none;
    margin-bottom: 0
  }
  /*TESTIMONIALS*/
  .tes-1 {
    background-image: url(../images/frame/testimanial-kenyatta.jpg);
    background-size: cover;
  }
  .tes-2 {
    background-image: url(../images/frame/testimanial-rogo-new.jpg);
    background-size: cover;
  }
  .tes-3 {
    background-image: url(../images/frame/testimanial-opido.jpg);
    background-size: cover;
  }
  .pic-frame {
    height: 150px;
    width: 150px;
  }
  .tes-pic {}
  #triangle-topleft {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    margin-bottom: -27px;
    width: 0;
    height: 0;
    border-top: 30px solid #f4f4f4;
    border-right: 30px solid transparent;
    z-index: 200;
    margin-left: 29px;
  }
  .speech-pad {}
  #tes-tex {
    -webkit-box-shadow: inset 0px 3px 0px 0px rgba(160, 56, 144, 1);
    -moz-box-shadow: inset 0px 3px 0px 0px rgba(160, 56, 144, 1);
    box-shadow: inset 0px 3px 0px 0px rgba(160, 56, 144, 1);
  }
  .test-cont {}
  .testimony-cont {}
  #test-slide {
    height: 300px !important;
  }
  /*COUNTER*/
  .understroke5 {
    float: right;
    margin: 12px 0 6px;
  }
  .ht-quote img {
    width: 70px;
    opacity: .5;
  }
  #prlx-base2 {
    background-size: 200%;
    background-image: url(../images/parallax/agorah-counter-banner2.svg);
    background-attachment: fixed;
    position: relative;
    padding: 0;
    background-position: bottom;
  }
  .jmm-icon img {
    width: 100px;
    opacity: .7;
  }
  .jmm-counter.default .jmm-mod-row>div {
    float: left;
    padding: 15px 0px !important;
    box-sizing: border-box;
  }
  .counter-pad {
    margin-top: 20px;
  }
  .jmm-subtitle {
    opacity: .7;
  }
  .jm-count {
    font-size: 36px !important;
    opacity: .7;
  }
  .counter-cont {}
  .counter-l {
    height: 400px;
  }
  .counter-r {
    height: 400px;
  }
  .myquote {
    height: 400px;
    padding: 0;
  }
  /*OUR PLANTS*/
  #plant-1 {
    background-image: url(../images/frame/hewa-tele-plant-siaya.jpg);
  }
  #plant-2 {
    background-image: url(../images/frame/hewa-tele-plant-nakuru.jpg);
  }
  #plant-3 {
    background-image: url(../images/frame/hewa-tele-plant-nairobi.jpg);
  }
  #plant-4 {
    background-image: url(../images/frame/Installed-hewatele-maua-plant.jpeg);
  }
  #plant-5 {
    background-image: url(../images/frame/hewatele-plant-kisumu.jpg);
  }

  #plant-6 {
    background-image: url(../images/frame/hewatele-lox-project-img.jpeg);
  }
  /*HOME PAGE MISSION*/
  .mis-left {
    height: 200px;
    background-image: url(../images/frame/hewa-tele-mission-vision-3.jpg);
    background-position: center;
    background-size: cover;
  }
  
  
  .mis-leftb {
    height: 200px;
    background-image: url(../images/frame/hewatele-lox-home.jpeg);
    background-position: center;
    background-size: cover;
  }
  
  .mis-right {
    padding: 10px 15px;  
  }
  .mis-right h4 {
    line-height: 26px;
  }
  .mis-f-l {
    height: 350px;
    z-index: 400;
  }
  .mis-l {
    background-size: cover;
    display: none;
    background-image: url(../images/frame/hewa-tele-mission-vision-3.jpg);
  }
  
  .mis-lb {
    background-size: cover;
    display: none;
    background-image: url(../images/frame/hewatele-lox-home.jpeg);
  }
  
  .mis-r {
    display: none;
  }
  .mission-base {}
  .mission-cont {}
  /*OUR SERVICES*/
  .text-base {
    height: 100%;
    margin-bottom: 0;
  }
  .text-base h3 {
    margin-bottom: 7px;
  }
  .icon-box {
    height: 50px;
    width: 50px;
    z-index: 100;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: -23px;
    margin-left: 10%;
    text-align: center;
    line-height: 50px;
    color: #fff;
    border-radius: 30px;
  }
  .divstroke {
    height: 4px;
    float: right;
  }
  .ser-head {
    height: 200px;
    background-position: center;
    background-size: cover;
  }
  .service-float {}
  .ser-pad {}
  #ser-pad {}
  #prlx-base1 {
    background-image: url(../images/parallax/agorah-counter-banner2.svg);
    background-attachment: fixed;
    position: relative;
    padding: 0;
    background-size: 102%;
    background-repeat: repeat-y;
    background-position: bottom;
  }
  .service-cont {}
  .read-more-icon {
    opacity: .3 !important;
  }
  .read-more-icon:hover {
    opacity: .9 !important;
  }
  .anim-ico a {
    color: #fff !important;
  }
  /*INTRODUCTION*/
  .intro-icon {}
  #triangle-down {
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #1eb3eb;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto
  }
  #int-icon:hover {
    /*-webkit-box-shadow: inset 0 3px 0 0 #fff;
    -moz-box-shadow: inset 0 3px 0 0 #fff;
    box-shadow: inset 0 3px 0 0 #fff;*/
    cursor: auto !important;
    color: #fff;
  }
  #triangle-down {
    display: none
  }
  #int-icon:hover #triangle-down {
    display: block
  }
  #int-icon {
    cursor: pointer !important;
    color: #fff;
    letter-spacing: .1px;
    margin-bottom: 40px;
  }
  .intro-div-2 {
    position: relative
  }
  .anim-ico {
    float: left
  }
  .anim-ico:hover {
    z-index: 200 !important
  }
  .hvr-pop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: none;
    transform: none;
    box-shadow: 0 0 1px transparent
  }
  .int-icon-1 {
    background-color: #12a7df
  }
  .int-icon-2 {
    background-color: #008fc7
  }
  .int-icon-3 {
    background-color: #0182ba
  }
  .int-icon-1:hover {
    background-color: #0169a1;
    -webkit-box-shadow: inset 0 3px 0 0 #1eb3eb;
    -moz-box-shadow: inset 0 3px 0 0 #1eb3eb;
    box-shadow: inset 0 3px 0 0 #1eb3eb;
  }
  .int-icon-2:hover {
    background-color: #006fa7;
    -webkit-box-shadow: inset 0 3px 0 0 #1eb3eb;
    -moz-box-shadow: inset 0 3px 0 0 #1eb3eb;
    box-shadow: inset 0 3px 0 0 #1eb3eb;
  }
  .int-icon-3:hover {
    background-color: #0074ac;
    -webkit-box-shadow: inset 0 3px 0 0 #1eb3eb;
    -moz-box-shadow: inset 0 3px 0 0 #1eb3eb;
    box-shadow: inset 0 3px 0 0 #1eb3eb;
  }
  .int-ico-l {
    position: relative;
    background-image: url(../images/frame/hewatele-solutions-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
  }
  .int-ico-r {
    height: 550px;
    position: relative;
    display: none
  }
  .int-icon-float {
    text-align: center
  }
  .read-more-inner {
    height: 30px;
    width: 150px
  }
  .read-more-inner {
    height: 30px;
    width: 150px
  }
  .understroke {
    margin: 20px 0
  }
  .understroke2 {
    margin: 7px 0;
  }
  .understroke4 {
    margin: 12px 0 6px;
  }
  .htcopyright {
    font-size: 11px;
    margin-left: -13px
  }
  .htcopyright-body {
    font-size: 11px
  }
  .intro-head-1 {
    font-size: 1em
  }
  .intro-head-4 {
    font-size: 1em
  }
  .intro-head-2 {
    margin: 0;
    font-size: 2em
  }
  .intro-head-3 {
    font-size: 1em;
  }
  .fillLine {
    display: inline-block;
    width: 100px;
    border-bottom: 1px solid #15aae2
  }
  .fillLine-2 {
    display: inline-block;
    width: 100px;
    border-bottom: 1px solid #F4F4F4
  }
  .intro-l {
    height: 540px
  }
  .read-more {
    height: 32px;
    background-color: rgba(0, 0, 0, .1);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/readmore.svg);
    position: absolute;
    z-index: 600;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0
  }
  .intro-hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: 0;
    border-top: 3px solid #fff;
    width: 80px
  }
  .icobase-1 {
    background-image: url(../images/icons/hewa-tele-production.svg)
  }
  .icobase-2 {
    background-image: url(../images/icons/hewa-tele-supply.svg)
  }
  .icobase-3 {
    background-image: url(../images/icons/hewa-tele-training.svg)
  }
  #icobase {
    background-repeat: no-repeat;
    background-position: center 73%;
    background-size: 80px;
    height: 112px
  }
  .int-float {
    z-index: 7
  }
  .intro-cont {
    position: relative;
    height: 800px
  }
  .intro-div {
    background-color: #f8f8f8
  }
  #sticky-social ul {
    list-style: none;
    margin: 0;
    padding: 0
  }
  #sticky-social {
    right: 0;
    position: fixed;
    top: 42%;
    z-index: 7000
  }
  #sticky-social a {
    background: #0a66c2;
    color: #fff;
    display: block;
    height: 35px;
    font: 13px "Open Sans", sans-serif;
    line-height: 35px;
    position: relative;
    text-align: center;
    width: 35px
  }
  #sticky-social a span {
    line-height: 35px;
    left: -150px;
    position: absolute;
    text-align: left;
    width: 90px;
    opacity: 0;
    padding-left: 15px;
    pointer-events: none
  }
  #sticky-social a:hover span {
    left: -257%;
    text-align: left;
    padding-left: 15px;
    opacity: 1;
    pointer-events: auto
  }
  #sticky-social a[class*=facebook], #sticky-social a[class*=facebook] span, #sticky-social a[class*=facebook]:hover {
    background: #3b5998
  }
  #sticky-social a[class*=twitter], #sticky-social a[class*=twitter] span, #sticky-social a[class*=twitter]:hover {
    background: #00aced
  }
  #sticky-social a[class*=youtube], #sticky-social a[class*=youtube] span, #sticky-social a[class*=youtube]:hover {
    background: #b00
  }
  #sticky-social a[class*=gplus], #sticky-social a[class*=gplus] span, #sticky-social a[class*=gplus]:hover {
    background: #dd4b39
  }
  #sticky-social a[class*=linkedin], #sticky-social a[class*=linkedin] span, #sticky-social a[class*=linkedin]:hover {
    background: #0a66c2;
  }
  
  #sticky-social a[class*=instagrem], #sticky-social a[class*=instagrem] span, #sticky-social a[class*=instagrem]:hover {
    background: #517fa4
  }
  #sticky-social a[class*=stumbleupon], #sticky-social a[class*=stumbleupon] span, #sticky-social a[class*=stumbleupon]:hover {
    background: #eb4924
  }
  #sticky-social a[class*=pinterest], #sticky-social a[class*=pinterest] span, #sticky-social a[class*=pinterest]:hover {
    background: #cc2127
  }
  #sticky-social a[class*=flickr], #sticky-social a[class*=flickr] span, #sticky-social a[class*=flickr]:hover {
    background: #ff0084
  }
  #sticky-social a[class*=tumblr], #sticky-social a[class*=tumblr] span, #sticky-social a[class*=tumblr]:hover {
    background: #32506d
  }
  
  .in-blue{
      background:#0a66c2 !important;
  }
  
  .navbar-collapse {
    border: 0
  }
  .navbar-default {
    background-color: #fff;
    border: 0
  }
  a:focus {
    color: #000 !important;
  }
  .dropdown-menu {}
  .nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
    background-color: #15AAE2;
    color: #fff;
    font-family: body-regular, sans-serif !important;
    text-transform: uppercase;
    font-size: 12px;
  }
  .navbar-default .navbar-nav .open .dropdown-menu>li>a {
    background-color: #f2f2f2;
    padding-top: 0;
    padding-bottom: 7px;
    padding-top: 7px;
    font-family: body-regular, sans-serif !important;
    text-transform: uppercase;
    font-size: 12px;
  }
  .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
    background-color: #15AAE2;
    padding-bottom: 7px;
    padding-top: 7px;
    color: #fff;
    font-family: body-regular, sans-serif !important;
    text-transform: uppercase;
    font-size: 12px;
  }
  .navbar-nav>li>.dropdown-menu {
    padding: 0;
  }
  .navbar-header {
    background-color: #e2e4e8
  }
  .logo {
    padding-top: 24px;
    padding-bottom: 24px
  }
  .logo img {
    width: 250px
  }
  .navbar-nav>li>a {
    padding-top: 13px;
    padding-bottom: 13px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .2px
  }
  .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: transparent;
    transition: all .5s ease-in-out !important;
    -webkit-transition: all .5s ease-in-out !important;
    -moz-transition: all .5s ease-in-out !important;
    -o-transition: all .5s ease-in-out !important;
    background-color: #a03890
  }
  .navbar-default .navbar-nav>li>a:hover {
    color: #7F7F7F;
    transition: all .2s ease-in-out !important;
    -webkit-transition: all .2s ease-in-out !important;
    -moz-transition: all .2s ease-in-out !important;
    -o-transition: all .2s ease-in-out !important;
    -webkit-box-shadow: inset 0 -2px 0 0 #15aae2;
    -moz-box-shadow: inset 0 -2px 0 0 #15aae2;
    box-shadow: inset 0 -2px 0 0 #15aae2;
    background-color: #e7e9e8
  }
  .navbar-default .navbar-nav>li>a {
    color: #7F7F7F
  }
  .t3-navhelper {
    color: #15aae2;
  }
  .navbar-default .navbar-toggle {
    border-color: #15aae2;
  }
  .navbar-toggle .fa-bars {
    color: #15aae2;
  }
  #mynavbar {
    position: fixed;
    top: 0;
    display: block;
    z-index: 1000;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    border-top: 3px solid #15aae2;
    /*-webkit-box-shadow: inset 0 -1px 0 0 rgba(21, 170, 226, 0.4);
    -moz-box-shadow: inset 0 -1px 0 0 rgba(21, 170, 226, 0.4);
    box-shadow: inset 0 -1px 0 0 rgba(21, 170, 226, 0.4);*/
    left: 0;
    right: 0;
    margin: auto;
  }
  #dlines {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    height: 100%;
    pointer-events: none
  }
  .dlines-30 {
    background-image: url(../images/frame/dlines-30.png)
  }
  .dlines-50 {
    background-image: url(../images/frame/dlines-50.png)
  }
  .dlines-60 {
    background-image: url(../images/frame/dlines-60.png)
  }
  .carousel-control {
    width: 10%
  }
  /*MAIN SLIDER*/
  .slider-btn {
    text-align: left;
  }
  .slider-btn .btn {
    border-radius: 0px;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    padding: 6px 20px;
    opacity: .6;
    cursor: pointer;
  }
  .slider-btn .btn:hover {
    opacity: 1;
  }
  .sli-in-icon {
    margin-top: 4px;
    margin-right: 9px;
  }
  .sli-stroke {
    height: 4px;
    width: 100px;
    margin-top: 13px;
  }
  .sli-intro {
    margin-left: 36px;
    text-align: left;
    margin-top: 6.2px;
    font-weight: 100 !important;
    letter-spacing: 1px;
    margin-bottom: 0;
    padding-left: 36px;
    font-size: 14px;
  }
  .sli-icon {
    width: 60px;
    height: 32px;
  }
  .triangle-topright {
    width: 0;
    height: 0;
    border-top: 32px solid #a03890;
    border-left: 15px solid transparent;
    float: right;
    position: absolute;
    right: 0;
    margin-right: 0;
  }
  .slider-box-1 {
    width: 265px;
  }
  /*---------------------/// FROM AGORAH-----------------------*/
  .fadeInDownBig {
    animation-delay: .2s !important;
  }
  .bounceInUp {
    animation-delay: .4s !important;
    animation-duration: 2s;
  }
  .fadeInLeft {
    animation-delay: 2s !important;
    animation-duration: .7s;
  }
  .carousel-caption {
    bottom: 25px;
    text-shadow: none !important;
  }
  .slider-base {
    margin-top: 150px;
  }
  .mycaption {
    font-size: 14px;
    text-align: left;
    line-height: 18px;
    margin-top: 20px;
    opacity: .9;
  }
  .carousel-caption {
    font-size: 17px
  }
  .carousel-caption h3 {
    font-size: 30px;
    font-family: 'Lato', sans-serif;
  }
  .slider-prev {
    background-image: url(../images/frame/hewa-tele-slider-prev-white.png) !important;
    background-position: 84% 56%;
    background-size: 50px;
    background-repeat: no-repeat !important;
    z-index: 7000
  }
  .slider-next {
    background-image: url(../images/frame/hewa-tele-slider-next-white.png) !important;
    background-position: 14% 56%;
    background-size: 50px;
    background-repeat: no-repeat !important;
    z-index: 7000
  }
  .myoverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 6000;
    height: 100%;
    background-image: url(../images/frame/agorah-slider-1-overlay-2-blue.png);
    pointer-events: none;
    background-repeat: no-repeat;
    background-repeat: repeat-x
  }
  .carousel, .carousel-inner, .carousel-inner .item, body, html {
    height: 200px
  }
  .carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity
  }
  .carousel-fade .carousel-inner .active {
    opacity: 1
  }
  .carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1
  }
  .carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
    opacity: 1
  }
  .carousel-fade .carousel-control {
    z-index: 2
  }
  @media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner>.item.active.right, .carousel-fade .carousel-inner>.item.next {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0)
    }
    .carousel-fade .carousel-inner>.item.active.left, .carousel-fade .carousel-inner>.item.prev {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0)
    }
    .carousel-fade .carousel-inner>.item.active, .carousel-fade .carousel-inner>.item.next.left, .carousel-fade .carousel-inner>.item.prev.right {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0)
    }
  }
  .item:nth-child(1) {
    background: url(../images/slider/hewa-tele-oxygen-slide-5.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
  }
  .item:nth-child(2) {
    background: url(../images/slider/hewa-tele-oxygen-slide-6.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
  }
  .item:nth-child(3) {
    background: url(../images/slider/hewa-tele-oxygen-slide-9.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
  }
  .carousel, .carousel-inner, .carousel-inner .item {
    min-height: 250px;
  }
  /*TYPOGRAPHY*/
  .body-light {
    font-family: body-light, sans-serif !important
  }
  .body-regular {
    font-family: body-regular, sans-serif !important
  }
  .body-semibold {
    font-family: body-semibold, sans-serif !important
  }
  .body-bold {
    font-family: body-bold, sans-serif !important
  }
}
@media only screen and (min-width:480px) {
  
  /*TESTIMONIALS*/
  .intro-head-1 {
    font-size: 1.3em
  }
  .intro-head-4 {
    font-size: 1.3em
  }
  .intro-head-2 {
    font-size: 4em
  }
  .intro-head-3 {
    font-size: 1.3em;
  }
  /*MAIN SLIDER*/
  .carousel-caption {
    bottom: 85px;
    text-shadow: none !important;
  }
  .carousel-indicators {
    position: absolute;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
  }

  .carousel, .carousel-inner, .carousel-inner .item {
    min-height: 400px;
  }
  .slider-base {
    margin-top: 100px;
  }
  .mycaption {
    font-size: 20px;
    text-align: left;
    line-height: 24px;
    margin-top: 20px;
    opacity: .9;
  }
}
@media only screen and (min-width:768px) {
.partner-content {
    flex-direction: row;
    align-items: flex-start;
}

 .partner-content img {
    margin-right: 20px;
}
.team-content {
    flex-direction: row; /* desktop: row */
    align-items: flex-start;
}
.team-photo {
    flex: 0 0 150px;
    margin-right: 20px;
    margin-bottom: 0; /* remove bottom gap */
}
.team-photo img {
    width: 150px;
}

.team-photo img {
  width: 150px;
  border-radius: 4px;
}
  /* Remove background from News page */
  .blognews-page .item {
    background: none !important;
  }
  /*Added Styles*/
  .news-title {
    color: #a03890 !important;
    font-family: body-bold, sans-serif !important;
    font-size: 20px;
    margin-bottom: -8px;
  }
  .news-page .article-intro {
    background-color: #f4f4f4;
    margin-bottom: 10px;
    min-height: 150px; /* Set a minimum height */
  }

  .news-page .article-intro img {
    width: 300px !important;
    height: 200px !important;
    object-fit: cover;
    margin-bottom: 0px !important;
  }

  .news-page .article-intro p {
    font-size: 14px !important;
    font-family: body-regular, sans-serif !important;
    color: #737373;
    line-height: 1.5;
    margin: 10px 0;
    padding: 0 10px;
  }
  .pull-left.item-image{
    margin: 0 20px 0 0 !important;
  }
  .pull-none.item-image {
    background-color: #f4f4f4;
  }
  .pull-none.item-image img{
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
  }
  .page-subtitle small {
    font-size: 40px; /* Adjust as needed */
    font-family: body-bold, sans-serif !important;
    color: #15aae2; /* Change color if necessary */
    padding-left: 12px;
  }
  .news-page .page-header{
    display: block !important;
  }
  .news-page .readmore{
    margin-top: 10px;
  }
  .news-page .readmore a{
    font-family: body-semibold, sans-serif !important;
    text-transform: uppercase;
    font-size: 14px;
    color: #a03890 !important;
    padding-left: 8px;
  }
  .news-page .readmore a:hover{
    color: #64245a !important;
    background-color: #fff !important;
  }
  .news-page h1 {
    font-size: 40px; /* Adjust as needed */
    font-family: body-bold, sans-serif !important;
    color: #15aae2; /* Change color if necessary */
  }
  .news-page h2 {
    font-size: 20px; /* Adjust as needed */
    font-family: body-bold, sans-serif !important;
    color: #15aae2; /* Change color if necessary */
  }
  .news-page .article-header h1 {
    font-size: 25px; /* Adjust as needed */
    font-family: body-bold, sans-serif !important;
    color: #15aae2; /* Change color if necessary */
  }
  .news-page .article-content {
    background-color: #f4f4f4;
    padding: 20px;
    font-size: 14px !important; /* Adjust as needed */
    font-family: body-regular, sans-serif !important;
    color: #737373;
    line-height: 1.42857143;
  }
  .news-page .col-md-12{
    padding-left: 0 !important;
  }
  .t3-sl {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .blank-plant{
    height: 445px;
    padding: 30px;
    text-align: auto;
    font-size: 22px;
    
  }
  .container {
    max-width: 1080px !important;
  
  }

  /* CONTACTS */
  .cont-txt {
    text-align: right;
  }
  /* OUR APPROACH */
  .appr-box {
    display: flex;
  }
  .icopy {
    padding-right: 3%;
  }
  .a-arrow {
    background-image: url(../images/icons/hewatele-arrow.svg);
    background-size: 80%;
    height: 130px;
  }
  .appr {
    padding: 50px;
  }
  #a-icon {
    width: 14%;
  }
  .app-icons {
    padding-left: 3%;
  }
  /* MISSION */
  .m-txt {
    padding-left: 50px;
    padding-right: 15px;
    height: 200px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mis-int {
    padding: 0 3%;
  }
  /* JOURNEY */
  .j-txt {
    padding: 64px;
  }
  .a-txt {
    padding: 64px 0;
  }
  /* OUR PLANTS PAGE */
  .txt-1 {
    display: table;
    height: 420px;
  }
  #plant-txt {
    height: 420px;
    padding: 0 15px 0 220px;
  }
  #plant-txt2 {
    height: 420px;
    padding: 0 220px 0 35px;
  }
  #plant-img {
    height: 420px;
  }
  .plt-float {
    width: 350px;
    height: 300px;
    position: absolute;
    z-index: 100;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    margin-right: -200px;
  }
  .plt-float2 {
    width: 350px;
    height: 300px;
    position: absolute;
    z-index: 100;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    margin-left: -200px;
  }
  /* SERVICES */
  .in-left3 {
    height: 570px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .in-right3 {
    height: 570px;
    background-size: cover;
    background-position: center;
  }
  /* SOLUTIONS */
  .in-left {
    padding-left: 30px;
    padding-right: 30px;
  }
  .in-left2 {
    height: 400px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .myfloat-r {
    float: right !important;
  }
  .sol-cont {
    width: 100% !important;
  }
  /*FOOTER*/
  .footer-contact {
    padding: 0
  }
  .footer-1, .footer-2 {
    border: 0
  }
  .footer-3 {
    padding-right: 0;
    padding-left: 2%
  }
  /*TESTIMONIALS*/
  #tes-tex {
    height: 200px;
    -webkit-box-shadow: inset 3px 0px 0px 0px rgba(160, 56, 144, 1);
    -moz-box-shadow: inset 3px 0px 0px 0px rgba(160, 56, 144, 1);
    box-shadow: inset 3px 0px 0px 0px rgba(160, 56, 144, 1);
  }
  /*COUNTER*/
  .myquote {
    float: right;
    padding-right: 56px;
  }
  #prlx-base2 {
    background-size: 110%;
  }
  .counter-pad {
    margin-top: 70px;
  }
  /*MISSION HOME*/
  .mission-cont {
    display: flex;
    flex-wrap: wrap; /* Allows responsiveness on smaller screens */  
  }
  .mis-left, .mis-right {
    flex: 1 1 50%;
    box-sizing: border-box;
  }

  .mis-left {
    background-size: cover;
    background-position: center;
    height: auto !important;
  }
  
  .mis-right {
    padding: 20px 50px 30px 20px; /* Add your spacing */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mis-leftb {
    background: transparent;
    background-color: transparent;
    float:right;
  }
  
  .mis-l {
    height: 350px;
    display: block;
  }
  
  .mis-lb {
    height: 350px;
    display: block;
    float:right;
  } 
  
  .mis-r {
    height: 350px;
    display: block;
  }
  .mis-f-l {
    height: 550px;
    position: absolute;
    z-index: 400;
    left: 0;
    right: 0;
    margin: auto;
  }
  .bg-pri-3 {
    background-color: #162037
  }
  /*MISSION*/
  .mis-right {
    padding-left: 40px;
  }
  /*OUR PLANTS*/
  .ser-text {
    height: 280px;
  }
  .int-ico-r {
    display: block
  }
  .intro-div-2 {
    height: 550px;
    position: absolute;
    z-index: 50;
    left: 0;
    right: 0
  }
  .anim-ico {
    height: 320px;
    float: left
  }
  .int-icon-float {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: -160px;
    z-index: 100
  }
  .intro-2-text {
    float: right;
    padding-top: 160px;
    height: 550px;
    padding-left: 40px
  }
  .intro-2 {
    padding: 0
  }
  #int-col-d {
    height: 550px
  }
  .mymarg {
    margin-top: 20px !important;
  }
  .read-more-div {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    margin-bottom: 0;
    position: absolute
  }
  .intro-head-2 {
    font-size: 4em
  }
  .intro-icon {
    background-image: url(../images/frame/hewatele-solutions-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  /*MAIN SLIDER*/
  .carousel-indicators {
    position: absolute;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
  }
  .carousel-caption {
    left: 12.6%;
    right: 12.6%;
  }
  .carousel-indicators {
    bottom: 100px !important;
  }
  .carousel, .carousel-inner, .carousel-inner .item {
    min-height: 530px;
  }
  .carousel-caption {
    bottom: 115px;
  }
  .slider-base {
    margin-top: 150px;
  }
  .mycaption {
    font-size: 30px;
    line-height: 30px;
    margin-top: 20px;
  }

  /*NAVIGATION*/
  .logo img {
    width: 89%
  }
  /* .nav-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {background-color: #f6f6f6;} */
  /* .navbar-default .navbar-nav>.open>a .caret, .navbar-default .navbar-nav>.open>a .caret, .navbar-default .navbar-nav>.open>a:focus .caret {
    border-top-color: #7F7F7F;
    border-bottom-color: #7F7F7F;
  } */
  .navbar-default .navbar-nav>.dropdown>a .caret {
    border-top-color: #cecece;
    border-bottom-color: #cecece;
  }
  .navbar-default .navbar-nav>.dropdown>a:hover .caret {
    border-top-color: #cecece;
    border-bottom-color: #cecece;
  }
  .dropdown-menu {
    padding: 0px !important;
    border: 0px !important;
    border-radius: 0;
  }
  .navbar-default .navbar-nav>li>a:hover {
    transition: all .2s ease-in-out !important;
    -webkit-transition: all .2s ease-in-out !important;
    -moz-transition: all .2s ease-in-out !important;
    -o-transition: all .2s ease-in-out !important;
    -webkit-box-shadow: inset 0 -4px 0 0 #a03890;
    -moz-box-shadow: inset 0 -4px 0 0 #a03890;
    box-shadow: inset 0 -4px 0 0 #a03890;
    background-color: #0DA2DA;
    color: #fff
  }
  .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: transparent;
    transition: all .5s ease-in-out !important;
    -webkit-transition: all .5s ease-in-out !important;
    -moz-transition: all .5s ease-in-out !important;
    -o-transition: all .5s ease-in-out !important;
    -webkit-box-shadow: inset 0 -4px 0 0 rgba(160, 56, 144, 1);
    -moz-box-shadow: inset 0 -4px 0 0 rgba(160, 56, 144, 1);
    box-shadow: inset 0 -4px 0 0 rgba(160, 56, 144, 1);
    background-color: #15aae2
  }
  .navbar-nav {
    float: right !important
  }
  .nav>li>a {
    padding: 10px 10px
  }
  .navbar-default {
    background-color: transparent
  }
  .logo {
    padding-top: 28px;
    padding-bottom: 0
  }
  .navbar-nav>li>a {
    padding-top: 50px;
    padding-bottom: 50px
  }
  #mynavbar {
    width: 100%;
  }
  .mywidth-cont {
    width: 100% !important;
    margin: 0 auto;
  }
  .navbar-default .navbar-nav .open .dropdown-menu>li>a {
    background-color: #F7F7F7;
    color: #000;
  }
}
@media only screen and (min-width:992px) {
  /* Remove background from News page */
  .blognews-page .item {
    background: none !important;
  }
  
  /* SERVICES */
  .in-left3 {
    height: 470px;
  }
  .in-right3 {
    height: 470px;
  }
  .mycontent {
    background-color: rgb(71, 17, 193);
    height:  auto !important;
    margin-left: -160px !important;
    width: 100%;
  }
  /* OUR SOLUTIONS */
  .in-left {
    padding-left: 50px;
    padding-right: 15px;
  }
  .in-left2 {
    padding-left: 50px;
    padding-right: 15px;
  }
  /* OUR PLANTS PAGE */
  #plant-txt {
    padding-left: 200px;
  }
  #plant-txt2 {
    padding-right: 200px;
    padding-left: 64px;
  }
  .plt-float {
    margin-right: -150px;
  }
  .plt-float2 {
    margin-left: -150px;
  }
  /*TESTIMONIALS*/
  #tes-tex {
    height: 150px;
  }
  /*OUR PLANTS*/
  .ser-text {
    height: 245px;
  }
  .int-ico-l {
    height: 320px;
    background-position: center
  }
  #int-col-d {
    margin-bottom: 0
  }
  .int-ico-l {
    height: 550px
  }
  .intro-2-text {
    padding-top: 120px
  }
  .intro-head-4 {
    margin-top: 30px
  }
  .intro-head-1 {
    margin-top: 60px
  }
  .intro-head-2 {
    font-size: 4em
  }
  .intro-head-3 {
    margin-top: 15px
  }
  .int-float {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: -160px;
    z-index: 7
  }
  /*MAIN SLIDER*/
  .slider-base {
    margin-top: 60px;
  }
  .mycaption {
    font-size: 38px;
    line-height: 40px;
    margin-top: 20px;
  }
  .carousel, .carousel-inner, .carousel-inner .item {
    min-height: 100vh;
  }
  .carousel-indicators {
    bottom: 100px !important;
  }
  .carousel-caption {
    bottom: 175px;
  }
  .logo {
    padding-top: 27px
  }
  @media only screen and (min-width:1200px) {
    /* ABOUT US */
    .mycontent {
      background-color: rgb(71, 17, 193);
      height: 100px;
      margin-left: -160px !important;
      width: 1370px;
    }
    .logo {
      padding-top: 24px
    }
  }
  @media screen and (min-width:1400px) {
    .carousel, .carousel-inner, .carousel-inner .item {
      min-height: 848px;
    }
    .carousel-caption {
      bottom: 248px;
    }
    .mywidth-cont {
      width: 1370px !important
    }
    .my100 {
      width: 1370px !important;
      left: 0;
      right: 0
    }

    .my100-2 {
      width: 1370px !important;
      left: 0;
      right: 0;
      margin: auto;
    }


    .my-1080 {
      width: 1080px !important;
      left: 0;
      right: 0
    }
  }
  

#login-form{
  max-width: 350px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
