@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/********** Template CSS **********/
:root {
  --primary: #004377;
  --light: #f1f8ff;
  --dark: #000000;
}

html,
body {
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden;
  overflow-y:auto;
  background-color : #fff !important;
}

.ff-secondary {
  font-family: "Poppins", sans-serif !important;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: var(--primary) !important;
}

.black-t {
  color: #000000 !important;
}

/* ---- custom scroll design ---- */
/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #cacaca;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #004377;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #002643;
}
/* ---- custom scroll design ---- */

.p-em {
  padding-right: 13px;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/

/* for other pages navbar */
.page-header {
  position: relative;
  margin-bottom: 0px;
  margin-top: 61px;
  padding: 105px 0 122px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url('/website/images/abt-banner.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-pdt {
  position: relative;
  margin-bottom: 0px;
  margin-top: 61px;
  padding: 105px 0 122px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url('/website/images/product-banner.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-yes {
  position: relative;
  margin-bottom: 0px;
  margin-top: 61px;
  padding: 105px 0 122px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url('/website/images/contact.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* #mainNavbar {
  top: 44px;
} */

@media (max-width: 767px) {
  .page-header-pdt {
    margin-top: 0px;
    padding: 85px 0 85px 0;
  }
  .page-header-yes {
    margin-top: 0px;
    padding: 85px 0 85px 0;
  }
}

.navbar {
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .navbar {
    top: 0px !important;
  }
  .page-header {
    margin-top: 0px;
    padding: 85px 0 85px 0;
  }
  .banner-headings {
    /* font-size: 2.2em !important; */
    font-size: 1.2em !important;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 1.4;
  }
  .p-products p {
    margin-top: 20px;
    font-size: 17px;
    padding: 0px 16px;
  }
}

/* for other pages navbar */

.banner-headings {
  color: white;
  font-size: 3em;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif !important;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-top-bar {
  background-color: #000000 !important;
}
.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin-left: 35px;
  padding: 35px 0;
  font-size: 15px;
  color: var(--light) !important;
  text-transform: uppercase;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.nav-item.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  top: 71%;
  background-color: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item.nav-link:hover::after,
.nav-item.nav-link.active::after {
  width: 70%;
}

@media (max-width: 991.98px) {
  .nav-item.nav-link::after,
  .nav-item.nav-link:hover::after,
  .nav-item.nav-link.active::after {
    width: 0;
  }
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
}

.navbar-dark.scrolled .nav-link {
  color: var(--primary) !important;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .home_nav .nav-link {
  color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
  max-height: 87px;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
  }
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link.active {
    color: #000000 !important;
    font-weight: 600 !important;
  }

  .navbar-dark .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-dark .navbar-nav .nav-link,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
  }

  .navbar-dark .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0px;
    padding-left: 4rem !important;
    padding-right: 4rem !important;
    left: 0;
    z-index: 999;
    background: transparent !important;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: white !important;
  }
}

/*** Hero Header ***/
.hero-header {
  background: url('/website/images/homebanner-1.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 93vh;
}

.hero-second {
  background-image: url('/website/images/home2.png');
  background-size: cover;
  background-position: center;
  height: 163px;
}

h1 {
  font-family: "Poppins", sans-serif !important;
  color: #252525e0;
  font-weight: 600 !important;
  font-size: 1.8em;
}

.image-container {
  text-align: center;
  margin-bottom: 32px;
}
.image-container img {
  border-radius: 4%;
  width: 90%;
  height: 74%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.image-container img:hover {
  transform: scale(1.1);
}

.p-products {
  padding: 10px 2.1rem;
}

.p-products p {
  margin-top: 24px;
  text-align: start;
  color: black;
  font-size: 18px;
  word-break: break-word;
  font-weight: 500;
  padding: 0px 16px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.read-more:hover {
  color: black;
}

.p-padding {
  padding: 10px 3rem;
}

.p-whyc {
  padding-bottom: 5rem !important;
  padding-top: 3rem !important;
}

.whychooseus {
  padding: 10px 1.3rem;
}

.px-mob {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}

.mob-whyc-p {
  margin-bottom: 3rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-products {
    padding: 10px 1rem;
  }
  .px-mob {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .p-products p {
    margin-top: 24px;
    font-size: 16px;
    word-break: break-all;
    padding: 0px 9px;
  }
}

@media (min-width: 1025px) and (max-width: 1070px) {
  .p-products p {
    margin-top: 24px;
    font-size: 16px;
    word-break: break-all;
    padding: 0px 9px;
  }
}

@media (max-width: 767px) {
  .mob-whyc-p {
    margin-bottom: 2rem !important;
  }

  .p-whyc {
    padding-bottom: 4rem !important;
    padding-top: 0rem !important;
  }
  .px-mob {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .p-products {
    padding: 10px 0rem;
  }
  /* .image-container {
    margin-bottom: -19px;
  } */
  .p-padding {
    padding: 0px 0rem;
  }
  .abt-text {
    color: #000000;
    font-size: 22px !important;
    margin-bottom: 9px !important;
    margin-top: 14px;
  }
  .section-title {
    font-size: 1.1rem !important;
    margin-bottom: 13px !important;
  }
  .black-t {
    font-size: 1.4em !important;
  }
  .abt-mob {
    padding: 0 17px;
  }
  .mob-direction {
    flex-direction: column-reverse;
  }
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  font-family: "Open Sans" !important;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #5f5f5fe0;
  font-weight: 400 !important;
  margin-bottom: 21px;
}

.abt-text {
  color: #1a1a1a;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 700 !important;
  margin-bottom: 20px;
}

.abt-p {
  font-family: "Roboto", sans-serif !important;
  color: #7d7777 !important;
  margin-bottom: 40px !important;
}

.count-text {
  font-size: 1.9rem !important;
  color: black !important;
}

.count-p {
  font-family: "Roboto", sans-serif !important;
  font-size: 0.9em !important;
  margin-top: 5px;
  color: #7d7777 !important;
}
.readmore-btn {
  background-color: var(--primary);
  color: #ffffff;
  font-size: 15px;
  border-radius: 50px;
  padding: 12px 24px 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.readmore-btn:hover {
  background-color: #002643 !important;
  color: #ffffff !important;
}

.service-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-border {
  border: 2px solid #004377;
  border-radius: 6px !important;
}

.service-item.active {
  background: var(--primary);
}
.service-item:hover {
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-h1 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.service-item-p {
  font-family: "Roboto", sans-serif !important;
  font-size: 0.98em !important;
  margin-top: 5px;
  color: #7d7777 !important;
}

.service-item:hover * {
  color: var(--light) !important;
}

.service-image {
  width: 50px;
  height: 50px;
  transition: filter 0.5s;
}
.service-item:hover .service-image {
  filter: brightness(0) invert(1);
}

.blackicon {
  color: #252525 !important;
}

.home-background {
  background-image:  url('/website/images/home-4.png');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 440px;
  color: white;
}

.home-overlay {
  position: absolute;
  top: 46%;
  left: 4%;
  transform: translateY(-50%);
  padding: 20px;
  max-width: 32%;
  width: 100%;
}

.home-overlay h1,
.home-overlay p {
  margin: 0;
  padding: 0;
}

.logo-o-img {
  display: block;
  margin-bottom: 39px;
  max-width: 160px;
  height: auto;
}

.h-6 {
  font-size: 13px;
}

.h-5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 55px;
  color: #fff;
}

.h-3 {
  font-size: 13px;
}

@media (max-width: 767px) {
  .home-background {
    height: 181px;
  }
  .home-overlay {
    top: 48%;
    left: 1%;
    padding: 20px;
    max-width: 100%;
    width: 100%;
  }
  .logo-o-img {
    margin-bottom: 2px;
    max-width: 93px;
    height: auto;
  }
  .h-3 {
    font-size: 11px;
  }
  .h-6 {
    font-size: 12px !important;
  }

  .h-5 {
    font-size: 12px !important;
    font-weight: 500;
    margin-bottom: 14px !important;
  }
}

/*** Food Menu ***/
.nav-pills .nav-item .active {
  border-bottom: 2px solid var(--primary);
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/video.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  height: calc(100% - 38px);
  transition: 0.5s;
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item:hover {
  height: 100%;
}

.team-item .btn {
  border-radius: 38px 38px 0 0;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/

.footer {
  background-color: #004377 !important;
}

.footer-title {
  position: relative;
  display: inline-block;
  font-family: "Poppins" !important;
  letter-spacing: 1px;
  color: #ffffff !important;
  font-weight: 600 !important;
  margin-bottom: 23px !important;
  font-size: 18px;
}
.footer .btn.btn-social {
  margin-right: 10px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border: 1px solid #ffffff;
  background: white;
  border-radius: 35px;
  transition: 0.3s;
}
.footer_address {
    line-height: 30px;
}
.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link:hover,
.footer .btn.btn-link.active {
  color: #a7a7a7;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  font-weight: 300 !important;
  font-size: 14px;
}

.footer .copyright a:hover {
  color: #a7a7a7;
}

.footer .copyright a.active {
  color: #000000;
  font-weight: 500 !important;
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.footer-logo img {
  max-width: 204px;
  height: auto;
}

.footer-padding {
  padding: 16px 4rem 23px 4rem;
}

.cc {
  color: #ffffff !important;
  font-weight: 300 !important;
}

.cc-mob {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .client-padding {
    padding: 5px 2rem !important;
  }
}
@media (max-width: 767px) {
  .footer .footer-menu a {
    padding-right: 0px;
  }
  .mission-padding {
    padding: 0px 1rem !important;
  }

  .background-div-m {
    padding: 51px 21px !important;
  }

  .mb-mission-vision {
    margin-bottom: 30px;
  }
  .our-story-padding {
    padding-top: 2.9rem !important;
    padding-bottom: 2.9rem !important;
  }

  .abt-p {
    margin-bottom: 25px !important;
  }

  .margin-top-r {
    margin-top: 1rem !important;
    margin-bottom: -0.5rem !important;
  }

  .footer-padding {
    padding: 0px 0.5rem 5px 0.5rem;
  }
  .cc-mob {
    display: block;
  }
  .cc-lap {
    display: none;
  }
  .client-padding {
    padding: 6px 0rem !important;
  }
}

.quote {
  width: 100%;
  float: left;
  background: #fff url('/website/images/getaquote.png') no-repeat fixed center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  margin-bottom: 1%;
}

.quote_bg {
  width: 100%;
  height: 100%;
  float: left;
  padding: 100px 0 80px 0;
  
}

.quote h4 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 34px;
  text-align: center;
}

.ff-quote {
  color: white !important;
  font-weight: 500 !important;
  font-size: 27px;
  font-family: "Poppins" !important;
  margin-bottom: 13px;
}

.p-quote {
  color: white !important;
  font-weight: 300 !important;
  font-size: 17px;
  font-family: "Roboto", sans-serif !important;
}

.getquote-btn {
  background-color: #ffffff;
  color: var(--primary);
  font-size: 15px;
  border-radius: 50px;
  padding: 12px 24px 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.getquote-btn i {
  margin-left: 8px;
}

.getquote-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 0px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  /* background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  ); */
}

.logos:after {
  right: 0;
  /* background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  ); */
}

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
  padding-bottom: 80px;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 50px;
}

.client-h {
  padding-top: 78px;
}

.client-padding {
  padding: 13px 15rem;
}

.header-quote {
  color: white !important;
  font-weight: 500 !important;
  font-size: 21px;
  font-family: "Poppins" !important;
  margin-bottom: 13px;
}

.background-div-m {
  background-image: url('/website/images/mission-vision.png');
  border-radius: 10px;
  padding: 78px 68px;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.custom-card-m {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  color: #000;
  text-align: center;
}

.custom-card-m p {
  font-family: "Roboto", sans-serif !important;
  font-size: 0.98em !important;
  margin-top: 5px;
  color: #7d7777 !important;
}

.mission-padding {
  padding: 0px 5rem;
}

.mission-h {
  color: var(--primary);
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
}

.carousel-indicators {
  position: absolute;
  bottom: -17%;
  left: -8%;
  transform: translateX(-50%);
}

.blue-text-p {
  padding: 3rem 3rem 0rem 4rem !important;
}

.products-padding {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.p-title {
  margin-bottom: 3rem !important;
}

.mt-m-quote {
  margin-top: 3rem !important;
}

@media (max-width: 575.98px) {
  .carousel-indicators {
    bottom: -25%;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .carousel-indicators {
    bottom: -20%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .carousel-indicators {
    bottom: -18%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .carousel-indicators {
    bottom: -17%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .carousel-indicators {
    bottom: -16%;
    left: -6%;
  }
  .carousal-h1 {
    font-size: 4em !important;
  }
  .carousal-p {
    font-size: 0.9em !important;
  }
  .p-carousal {
    padding: 8rem 3rem 0rem 4rem !important;
  }
  .abt-p {
    margin-bottom: 23px !important;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .carousel-indicators {
    bottom: -15%;
  }
}

/* Ultra large devices (very large desktops, 1600px and up) */
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .carousel-indicators {
    bottom: -14%;
  }
  .abt-text {
    margin-bottom: 20px;
  }

  .abt-p {
    font-size: 1.1rem;
  }

  .readmore-btn {
    font-size: 18px;
  }

  .count-text {
    font-size: 2rem !important;
  }

  .s-c {
    font-size: 1.1rem !important;
  }
  .h-5 {
    font-size: 20px;
  }

  .h-6 {
    font-size: 15px;
  }

  .h-3 {
    font-size: 15px;
  }
}

/* Super large devices (huge desktops, 1800px and up) */
@media (min-width: 1800px) and (max-width: 1999.98px) {
  .carousel-indicators {
    bottom: -13%;
  }
  .abt-text {
    margin-bottom: 20px;
  }

  .abt-p {
    font-size: 1.1rem;
  }

  .readmore-btn {
    font-size: 18px;
  }

  .count-text {
    font-size: 2rem !important;
  }

  .s-c {
    font-size: 1.1rem !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-dark .navbar-toggler {
    color: rgb(0 67 119) !important;
    border-color: rgb(0 67 119) !important;
  }
  .navbar-dark .navbar-nav .nav-link {
    color: rgb(0 67 119) !important;
  }
}
@media (max-width: 767px) {
  .lorem-table {
    width: 100% !important;
  }

  .loremh1 {
    font-size: 20px !important;
  }

  .mt-m-quote {
    margin-top: 9rem !important;
  }

  .products-padding {
    padding-top: 4rem !important;
    padding-bottom: 2rem !important;
  }

  .p-title {
    margin-bottom: 2rem !important;
  }

  .p-carousal {
    padding: 0rem 2rem 0rem 2rem !important;
  }
  .navbar-dark .navbar-toggler {
    color: rgb(0 67 119) !important;
    border-color: rgb(0 67 119) !important;
  }
  .navbar-dark .navbar-nav .nav-link {
    color: rgb(0 67 119) !important;
  }
  .carousel-indicators {
    left: 35%;
  }
  .hero-second {
    height: 284px;
  }
  .blue-text-p {
    padding: 3rem 1rem 0rem 1rem !important;
  }
  .ff-quote {
    font-size: 22px;
  }
  .p-quote {
    font-size: 15px;
    margin-bottom: -7rem !important;
  }
}

/* Devices with a width between 300px and 400px */
@media (min-width: 300px) and (max-width: 400px) {
  .hero-header {
    height: 67vh;
  }
  .carousal-p {
    font-size: 1em !important;
  }
  .carousal-h1 {
    font-size: 2em !important;
  }
}

/* Devices with a width between 400px and 500px */
@media (min-width: 400px) and (max-width: 450px) {
  .hero-header {
    height: 80vh;
  }
  .carousal-h1 {
    font-size: 2.9em !important;
  }
}

@media (min-width: 451px) and (max-width: 500px) {
  .hero-header {
    height: 77vh;
  }
  .carousal-h1 {
    font-size: 2.9em !important;
  }
}

/* Devices with a width between 500px and 600px */
@media (min-width: 500px) and (max-width: 600px) {
  /* Your CSS rules here */
}

/* Devices with a width between 600px and 700px */
@media (min-width: 600px) and (max-width: 700px) {
  /* Your CSS rules here */
}

.carousel-indicators .active {
  background-color: var(--primary);
}

.carousal-h1 {
  color: #004377 !important;
  font-weight: 400 !important;
  font-size: 4.9em;
  text-shadow: 2px 2px 4px #fff;
}

.carousal-p {
  font-family: "Roboto", sans-serif !important;
  color: #000 !important;
  font-weight: 500 !important;
  font-size: 1.1em;
  line-height: 1.7;
  text-shadow: 2px 2px 2px #fff;
}

.p-carousal {
  padding: 11rem 3rem 0rem 4rem;
}

/*our story */
.our-story-padding {
  padding-top: 5.9rem;
  padding-bottom: 1.9rem;
}

/*conatact */
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.contactForm .label {
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

#contactForm .form-control {
  font-size: 16px;
}

.contactForm .form-control {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
}

.form-control {
  height: 36px;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  border-radius: 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3) !important;
}
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}
.form-control:-ms-input-placeholder {
  /* IE 0+ */
  color: rgba(0, 0, 0, 0.3) !important;
}
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}
.form-control:focus,
.form-control:active {
  border-color: #004377 !important;
}

textarea.form-control {
  height: inherit !important;
}

.imgc {
  background-image: url(/website/images/contact-card.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 47px 35px;
}

.py-c {
  padding: 0px 9rem 72px 9rem;
}

.sendus {
  font-family: "Poppins", sans-serif !important;
  color: #004377 !important;
  font-weight: 500 !important;
  font-size: 1.3em !important;
}

.labels-c {
  font-family: "Poppins", sans-serif !important;
  color: #004377 !important;
  font-weight: 400 !important;
  font-size: 0.9em !important;
}

.mb-labels {
  margin-bottom: 15px;
}

.no-gutters {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.label-ip {
  color: #5a5858 !important;
  font-weight: 600 !important;
}

.contact-info {
  font-family: "Poppins", sans-serif !important;
  color: #ffffffe0;
  font-weight: 600 !important;
  font-size: 1.68em !important;
  margin-bottom: 24px;
}

.contact-texts {
  font-family: "Poppins", sans-serif !important;
  color: #ffffffe0;
  font-weight: 400 !important;
  font-size: 1.08em !important;
}

.icon-text {
  color: #ffffffe0 !important;
  font-size: 1.8em !important;
}

.pl-text {
  padding-left: 23px;
}

.icon-img {
  width: 1.6em;
  height: 1.6em;
}

.mb-icons {
  margin-bottom: 28px;
}

.mailicon {
  font-size: 1.6em !important;
  color: #ffffffe0 !important;
}

.c-icons {
  color: #000000;
  border-color: #f1f8ff;
  background: white;
  border-radius: 50px;
  font-size: 20px;
  padding: 2px 6px 2px 6px;
  margin-right: 13px;
}

.pt-icons {
  padding-top: 5rem !important;
}

.contact .btn.btn-social {
  margin-right: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border: 1px solid #ffffff;
  background: white;
  border-radius: 35px;
  transition: 0.3s;
}

.contact .btn.btn-social i {
  font-size: 23px;
}

.p-get {
  padding: 102px 9rem 0px 9rem;
}

.p-get h1 {
  color: var(--primary);
}

.p-get p {
  margin-bottom: 29px;
}

.icon-button {
  background-color: var(--primary);
  border: none;
  padding: 7px 12px 4px 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-button i {
  color: #fff;
  font-size: 1.5rem;
}

.icon-button:hover {
  background-color: #002643 !important;
  color: #ffffff !important;
}

.position-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.contactcard {
  padding: 0px 26px 0px 12px;
}

.customer-logos .slide {
  padding: 0 7px;
}

.customer-logos .slide img {
  width: 150px;
}

.contact .btn.btn-social:hover {
  color: #004377;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact .btn.btn-social {
    margin-right: 10px;
    width: 32px;
    height: 34px;
  }
}

@media (max-width: 768px) {
  .client-h {
    padding-top: 47px;
  }

  .clientss-padding {
    padding: 0px 0rem 14px 0rem !important;
    margin-bottom: 16px;
  }
  .customer-logos .slide {
    padding: 0 0px;
  }

  .p-get {
    padding: 37px 1rem 0px 1rem;
  }
  .pl-text {
    padding-left: 17px;
    padding-top: 9px;
  }

  .py-c {
    padding: 0px 1rem 72px 1rem;
  }
  .contact .btn.btn-social {
    margin-right: 10px;
    width: 32px;
    height: 34px;
  }
  .imgc {
    padding: 47px 15px;
  }
  .contactcard {
    padding: 0px 12px 0px 12px;
  }
}

.h-t:hover {
  color: #b3b3b3;
}

/*1st trial inner page*/
/* .demo {
  width: 100%
}

.demo ul {
  list-style: none outside none;
  padding-left: 0;
  margin-bottom: 0
}

.demo li {
  display: block;
  float: left;
  margin-right: 6px;
  cursor: pointer
}

.demo img {
  display: block;
  height: auto;
  width: 100%
} */
/*1st trial inner page*/

/*gallery lightbox */

.gallery-wrapper {
  padding: 2rem 7rem;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1rem;
  grid-auto-flow: dense;
}

/* Another way to do the same without declaring in the classes - remove h-x w-x from classes */
/* .gallery-wrapper {
  padding: 2rem 10rem;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(5, 300px);
  grid-auto-rows: 200px;
  grid-gap: 1rem;
  grid-auto-flow: dense;
}
 */

.gallery-item {
  width: 100%;
  height: 100%;
  position: relative;
  filter: drop-shadow(2px 2px 3px #333);
}

.gallery-item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  cursor: pointer;
  transition: all 400ms ease-in;
  transform: scale(1);
}

.gallery-item .image img:hover {
  transform: scale(1.1);
}

/* .w-1{
  grid-column: span 1;
}
.w-2{
  grid-column: span 2;
}
.w-3{
  grid-column: span 3;
}
.w-4{
  grid-column: span 4;
}
.w-5{
  grid-column: span 5;
}

.h-1{
  grid-row: span 1;
}
.h-2{
  grid-row: span 2;
}
.h-3{
  grid-row: span 3;
}
.h-4{
  grid-row: span 4;
}
.h-5{
  grid-row: span 5;
} */

/* ***** LIGHTBOX EFFECT ***** */

#lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  display: none;
}

#lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  padding: 4px;
  /* border-radius: 1%; */
  /* background-color: white; */
  border: 0.2px solid silver;
}

.p-gallery {
  padding: 0rem 7rem 2rem 7rem;
}

@media only screen and (max-width: 800px) {
  .gallery-wrapper {
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: 1fr;
    grid-gap: 2;
    grid-auto-flow: dense;
  }
  .gallery-container:nth-child(3n + 2) {
    grid-column: 1 / span 2;
    grid-row-end: span 2;
  }

  .gallery-container:nth-child(4n + 3) {
    /* grid-column: 2 / span 1; */
    grid-row-end: span 2;
  }

  /*  reseting the css for the class within the divs to show a different way to achieve grid control using the nth childs*/
  /* .w-1,
  .w-2,
  .w-3,
  .w-4,
  .w-5 {
    grid-column: span 1;
  }

  .h-1,
  .h-2,
  .h-3,
  .h-4,
  .h-5 {
    grid-row: span 1;
  } */
}

@media only screen and (max-width: 800px) {
  /* An example to use combined with flex but could also be grids with different repetition of columns  */
  /* .gallery-wrapper {
    display: flex;
    flex-direction: column;
    flex: wrap;
    gap: 2.5rem;
    margin: 5rem;
  } */
  .gallery-wrapper {
    padding: 2rem 1rem;
  }

  .p-gallery {
    padding: 1rem 1rem;
  }
}
/*gallery lightbox */

.clientss-padding {
  padding: 0px 8rem 59px 8rem;
  margin-bottom: 16px;
}

.acolor a {
  color: white !important;
}

.acolor a:hover {
  color: #a7a7a7 !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* .cc-mob {
    display: block;
  }

  .cc-lap {
    display: none;
  } */

  .lorem-table {
    width: 100% !important;
  }

  .footer-padding {
    padding: 16px 3rem 23px 3rem;
  }
  .page-header-yes {
    margin-top: 0px;
    padding: 85px 0 85px 0;
  }
}

@media (min-width: 768px) and (max-width: 880px) {
  .cc-mob {
    display: block;
  }
  .py-c {
    padding: 0px 0rem 72px 0rem;
  }

  .cc-lap {
    display: none;
  }
  .p-carousal {
    padding: 0rem 2rem 0rem 2rem !important;
  }
  .imgc {
    padding: 47px 22px;
  }
}

@media (min-width: 881px) and (max-width: 960px) {
  .cc-mob {
    display: none;
    text-align: center !important;
  }
  .py-c {
    padding: 0px 10px 72px 10px;
  }
  .cc-lap {
    display: block;
    width: 49% !important;
  }
  .nxt {
    width: 51% !important;
  }
  .p-carousal {
    padding: 0rem 2rem 0rem 2rem !important;
  }
}

@media (min-width: 961px) and (max-width: 1024px) {
  .cc-mob {
    display: none;
  }
  .p-carousal {
    padding: 0rem 2rem 0rem 2rem !important;
  }
  .cc-lap {
    display: block;
    width: 49% !important;
  }
  .nxt {
    width: 51% !important;
  }
  .py-c {
    padding: 0px 10px 72px 10px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .page-header-pdt {
    margin-top: 13px;
  }
  .page-header {
    margin-top: 13px;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 0 !important;
  }

  .footer-title {
    margin-bottom: 23px !important;
    font-size: 16px;
  }

  .footer .footer-menu a {
    font-size: 12px;
  }
  .footer .btn.btn-link {
    margin-bottom: 16px;
    font-size: 13px;
  }
  .cc-lap {
    font-size: 14px;
  }
}

@media (min-width: 1025px) and (max-width: 1231px) {
  .py-c {
    padding: 0px 10px 72px 10px;
  }

  .footer-title {
    margin-bottom: 23px !important;
    font-size: 16px;
  }

  .footer .footer-menu a {
    font-size: 12px;
  }
  .footer .btn.btn-link {
    margin-bottom: 16px;
    font-size: 13px;
  }
  .cc-lap {
    font-size: 14px;
  }
}

.loremh1 {
  font-size: 23px;
}

.lorem-table {
  width: 70%;
}




/* lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
}

#lightbox button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  font-size: 2em;
  cursor: pointer;
}

#prev {
  left: 20px;
}

#next {
  right: 20px;
}
