@import url("https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
:root {
  --gradient: linear-gradient(120deg, #ce1f00 0%, #060053 100%);
  --blue: #1e90ff;
  --white: #ffffff;
  --body-font: "Roboto", sans-serif;
  --heading-font: "Yantramanav", sans-serif;
  --theme-color: #1a1926;
  --theme-color2: #FDA31B;
  --theme-color-light: rgb(17, 110, 99, 0.09);
  --theme-bg-light: #F2F3F5;
  --body-text-color: #414141;
  --color-white: #ffffff;
  --color-dark: #19232B;
  --hero-overlay-color: #000000;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #012758;
  --footer-bg2: #1a1926;
  --footer-text-color: #F5FAFF;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 14px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none;
}

.theme-btn {
  font-size: 14px;
  color: var(--color-white);
  padding: 14px 20px;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--theme-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn2 {
  font-size: 14px;
  color: var(--color-white);
  padding: 14px 20px;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;
}
.theme-btn2:hover {
  background-color: var(--color-dark);
}

.theme-btn2::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--theme-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.banner_h {
  margin: 0;
}

.about_home {
  margin: 0;
}

.product_list .products {
  border: 1px solid #dcdcdc;
  display: block;
  border-radius: 10px;
  background: #fff;
  position: relative;
  color: #01693a;
  text-decoration: none;
}
.product_list .products::before {
  content: "";
  background: #f7931e;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  position: absolute;
  z-index: -1;
  transform: rotate(0);
  border-radius: 10px;
  transition: 0.5s;
}
.product_list .products:hover {
  color: #2e2e2e;
}
.product_list .products:hover::before {
  transform: rotate(4deg);
}
.product_list .products .product_img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.footer_bx {
  background: #1d1d1d;
  padding: 2em 0;
}
.footer_bx h5 {
  color: #fff;
}
.footer_bx ul {
  margin: 0;
  padding: 0;
}
.footer_bx ul li {
  display: block;
  padding: 2px 0;
  color: #b2b2b2;
}
.footer_bx ul li a {
  color: #b2b2b2;
  text-decoration: none;
}

.head_top {
  padding: 4px 0 4px 0;
  position: relative;
  background: #00246c;
  color: #fff;
  z-index: 1;
}
.head_top .header-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head_top .header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.head_top .header-top-contact ul li {
  display: flex;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 20px;
}
.head_top .header-top-contact ul li:last-child {
  border: none;
  padding-right: 0;
}
.head_top .header-top-contact ul li a {
  color: var(--color-white);
  font-weight: 400;
}
.head_top .header-top-contact ul li a i {
  color: var(--theme-color2);
  margin-right: 5px;
}
.head_top .header-top-social span {
  color: var(--color-white);
  font-weight: 500;
}
.head_top .header-top-social a {
  width: 25px;
  height: 25px;
  line-height: 25px;
  color: #fff;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.451);
  text-align: center;
  margin-left: 5px;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}
.head_top .header-top-social a:hover {
  color: var(--theme-color2);
}
@media all and (max-width: 1199px) {
  .head_top .header-top-contact ul {
    gap: 10px;
  }
  .head_top .header-top-social a {
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }
}

.page_header {
  padding: 2em;
  background: url("../images/bg.svg");
  width: 100%;
}

.menu_rs {
  background: #ffdddd !important;
  padding: 4px 0;
}
.menu_rs .navbar-nav .nav-link {
  text-transform: uppercase !important;
  padding-left: 1em;
  padding-right: 1em;
  font-weight: bold;
}
.menu_rs .navbar-nav .active {
  color: #ed0606 !important;
}
.menu_rs .navbar-brand img {
  max-height: 90px;
}

.msn_bg {
  background: #fff;
  padding: 3em 0;
  color: var(--color-dark);
}

.gallerImg {
  cursor: pointer;
}
.gallerImg img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about_area {
  position: relative;
  background-image: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4em 0;
}

.about_area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #000000;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about_content {
  position: relative;
  padding: 15px;
  z-index: 11;
  background: #fff;
  border-radius: 10px;
}

.cta-wrapper {
  position: relative;
  z-index: 9;
}

.cta-btn .theme-btn {
  background: var(--color-white);
  color: var(--color-dark);
}

.cta-btn .theme-btn:hover {
  color: var(--color-white);
  background-color: var(--theme-color2);
}

.home_about {
  color: #fff;
}

.scrolling-text {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  margin-top: 2em;
  color: var(--color-dark);
}

.scrolling-text ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
}

.scrolling-text li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 18px;
  margin-bottom: 1em;
}

.scrolling-text li a {
  color: var(--color-dark);
}

.scrolling-text span {
  font-size: 14px;
  color: var(--color-dark);
  padding: 0;
  margin: 0;
}

.facilities-wrapper {
  background: #fff;
  padding: 3em 0;
}

.facilities-wrapper .facilities-item {
  position: relative;
  padding: 20px;
  background: var(--color-white);
  border-radius: 30px 0px 30px 0px;
  box-shadow: var(--box-shadow);
  z-index: 1;
  border: #d3d3d3 1px solid;
}

.facilities-wrapper .facilities-item:hover {
  border-color: var(--theme-color2);
}

.facilities-wrapper .facilities-icon {
  width: 80px;
  height: 80px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  color: var(--color-white);
  font-size: 60px;
  background: var(--theme-color);
  box-shadow: 5px 5px 0 var(--theme-bg-light);
  position: relative;
  transition: var(--transition);
}

.facilities-wrapper .facilities-item:hover .facilities-icon {
  transform: rotateY(360deg);
}

.facilities-wrapper .facilities-icon img {
  width: 48px;
  filter: brightness(0) invert(1);
}

.facilities-wrapper .facilities-content {
  flex: 1;
}

.facilities-wrapper .facilities-content h4 {
  color: var(--color-dark);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 0;
}

.facilities-wrapper .facilities-content p {
  color: var(--color-dark);
}

.site-heading {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: 2px solid var(--theme-color2);
}

.site-title-tagline i {
  line-height: 0;
  font-size: 20px;
}

.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 3em;
  color: var(--color-dark);
  position: relative;
}

.site-title span {
  color: var(--theme-color2);
}

.news-marquee {
  padding: 5px 0 0 0;
  text-align: center;
  background: #eee6ff;
}

.news-marquee ul {
  margin: 0;
  padding: 0;
}

.news-marquee ul li {
  display: inline-block;
  padding: 0 15px;
  border-right: #ccc 1px solid;
  color: #000;
}

.news-marquee ul li:last-child {
  border: none;
}

.news-marquee ul li a {
  color: #000;
}/*# sourceMappingURL=style.css.map */