*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  overflow-x: hidden;
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
}

.container {
	position: relative;
	margin-top: 100px;
}
.container img {
	display: block;
	width: 100%;
}
/* nav {
	position: fixed;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
	font-family: 'Montserrat', sans-serif;
	padding: 0 5%;
	height: 100px;
  background: rgba(0, 0, 0, 0.8);
} */

.upcoming-badge{
  position: absolute;
  top: -37px;
  right: -30px;
  background-color: red;
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
}

nav .logo {
	float: left;
	width: 40%;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 24px;
	color: #fff;
}

nav .logo img {
  height: 43px;
  width: 70%;
}

nav .links {
	float: right;
	padding: 0;
	margin: 0;
	width: 60%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
nav .links li {
	list-style: none;
}
.header .links a {
	display: block;
	padding: 1em;
	font-size: 16px;
	font-weight: bold;
  color: black;
	text-decoration: none;
}


nav .links a:hover {
  color: #219150;
}

#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
nav .icon-burger .line {
	width: 30px;
	height: 5px;
	background-color: black;
	margin: 5px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}

@media screen and (max-width: 768px) {

	nav .logo {
		float: none;
		width: auto;
		justify-content: center;
	}
	nav .links {
		float: none; 
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 100px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		background-color: rgba(0,0,0,.8);
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
	}
	nav .links a {
		font-size: 20px;
	}
	nav :checked ~ .links {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}

	.slides{
    margin-top: 100px;
  }

  .header .links a{
    color: white;
  }

  .about .image{
    margin-top: 95px;
  } 
  
  .about .content{
    margin-top: 0px;
  } 
}



.slides{
  /* margin-top: 100px; */
  width: 100%;
  position: relative;
}

.slides .slide{
  display: none;
}

.slides .slide img{
  width: 100%;
  animation-name: fade;
  animation-duration: 1.5s;
}

.slides .navigation{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.slides .navigation .prev, .slides .navigation .next{
  cursor: pointer;
  padding: 16px;
  font-weight: bold;
  font-size: 20px;
  color: white;
  background: rgba(0,0,0,0.2);
  user-select: none;
  transition: 0.6s ease;
}

.slides .navigation .prev:hover, .slides .navigation .next:hover{
  background: rgba(0,0,0,1);
}

@keyframes fade {
  from{opacity: 0.3}
  to {opacity: 1}
}

@media (max-width: 1200px){

  .slides .navigation .prev, .slides .navigation .next{
    font-size: 22px;
    padding: 15px;
  }
}

@media (max-width: 992px){
  .slides .navigation .prev, .slides .navigation .next{
    font-size: 18px;
    padding: 13px;
  }
}

@media (max-width: 768px){
  .slides .navigation .prev, .slides .navigation .next{
    font-size: 15px;
    padding: 10px;
  }
  
}

@media (max-width: 576px){
  .slides .navigation .prev, .slides .navigation .next{
    font-size: 12px;
    padding: 7px;
  }
  
}

@media (max-width: 360px){
  .slides .navigation .prev, .slides .navigation .next{
    font-size: 11px;
    padding: 6px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");
* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.popup{
  top:0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  position: fixed; 
  opacity: 0;
  transition: all .2s ease-in; 
}
.popup__content{
  width: 300px;
  background-color: aqua;
  text-align: center;
  position: relative;
  margin: 20vh auto;
}
.popup__image{
  width: 100%;
  margin-bottom: 15px;
} 
.popup__dismiss{
  position: absolute;
  top: 0;
  right: 0;  
  width: 25px;

}
.popup--show{
  opacity: 1;
}
.popup--close{
  opacity: 1;
}


html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #fff;
}

html::-webkit-scrollbar-thumb {
  background: #10221b;
}

section {
  padding: 5rem 9%;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  border: 0.2rem solid #10221b;
  color: #10221b;
  cursor: pointer;
  background: #fff;
  font-size: 1.7rem;
  padding: 1rem 3rem;
}

.btn:hover {
  background: #10221b;
  color: #fff;
}

.heading {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 4rem;
  color: #10221b;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 9%;
  background-color: rgba(255, 255, 255, 0.699);
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.active {
  /* background: #fff; */
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header .logo {
  margin-right: auto;
  font-size: 2.5rem;
  color: #10221b;
  font-weight: bolder;
}

.header .logo i {
  color: #219150;
}

.header .navbar a {
  margin-left: 2rem;
  font-size: 1.7rem;
  color: black;
  font-weight: bold;
}

.header .navbar a:hover {
  color: #219150;
}

.header .navbar #nav-close {
  font-size: 5rem;
  cursor: pointer;
  color: #10221b;
  display: none;
}

.header .icons a,
.header .icons div {
  font-size: 2.5rem;
  margin-left: 2rem;
  cursor: pointer;
  color: #10221b;
}

.header .icons a:hover,
.header .icons div:hover {
  color: #219150;
}

.header #menu-btn {
  display: none;
}

.header #search-btn{
  visibility: hidden;
}

.search-form {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10000;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}

.search-form.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.search-form #close-search {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  cursor: pointer;
  color: gray;
  font-size: 6rem;
}

.search-form #close-search:hover {
  color: #219150;
}

.search-form form {
  width: 70rem;
  margin: 0 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.2rem solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-form form input {
  width: 100%;
  font-size: 2rem;
  color: #fff;
  text-transform: none;
  background: none;
  padding-right: 2rem;
}

.search-form form input::-webkit-input-placeholder {
  color: #aaa;
}

.search-form form input:-ms-input-placeholder {
  color: #aaa;
}

.search-form form input::-ms-input-placeholder {
  color: #aaa;
}

.search-form form input::placeholder {
  color: #aaa;
}

.search-form form label {
  font-size: 3rem;
  cursor: pointer;
  color: #fff;
}

.search-form form label:hover {
  color: #219150;
}

.home {
  padding: 0;
}

.home .box {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover !important;
  background-position: center !important;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 2rem 9%;
}

.home .box.second {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.home .box .content {
  width: 50rem;
}

.home .box .content span {
  font-size: 4rem;
  color: #10221b;
}

.home .box .content h3 {
  font-size: 4rem;
  color:  black;
  padding-top: .5rem;
  text-align: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 3rem;
  color: #10221b;
}

/* advantages */

.advantages {
  background: #eee;
}

.advantages .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 1.5rem;
}

.advantages .box-container .box {
  text-align: center;
  padding: 2rem;
  border: 0.2rem solid #10221b;
  border-radius: .5rem;
  background: #fff;
}

.advantages .box-container .box:hover {
  background: #10221b;
}

.advantages .box-container .box:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.advantages .box-container .box:hover p {
  color: #fff;
}

.advantages .box-container .box:hover .btn {
  border-color: #fff;
  color: #fff;
}

.advantages .box-container .box:hover .btn:hover {
  background: #fff;
  color: #10221b;
}

.advantages .box-container .box img {
  height: 10rem;
  margin-bottom: 1rem;
}

.advantages .box-container .box h3 {
  font-size: 2rem;
  color: #219150;
}

.advantages .box-container .box p {
  font-size: 1.5rem;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2;
}

.blogs .slide {
  text-align: center;
  padding: 2rem;
}

.blogs .slide img {
  height: 25rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: .5rem;
  animation-name: fade;
  animation-duration: 1.5s;
}

.blogs .slide .icons {
  background: #10221b;
  border-radius: .5rem;
  padding: 1rem;
  position: relative;
  top: -2rem;
  display: inline-block;
}

.blogs .slide .icons a {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 1rem;
}

.blogs .slide .icons a:hover {
  color: #219150;
}

.blogs .slide .icons a i {
  padding-right: .5rem;
  color: #219150;
}

.blogs .slide h3 {
  font-size: 2rem;
  color: #10221b;
}

.blogs .slide p {
  font-size: 1.4rem;
  padding: 1rem 0;
  line-height: 2;
  color: #10221b;
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../images/footer-bg.jpg) no-repeat;
  background: linear-gradient(rgba(39, 72, 47, 0.5), rgba(5, 66, 8, 0.5)), url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
}

.footer .box-container .box h3 {
  font-size: 2rem;
  padding: 1.5rem 0;
  color: #fff;
}

.footer .box-container .box iframe {
  max-width: max-content;
}

.footer .box-container .box .footer1 {
  margin-left: 10px;
}

.footer .box-container .box img {
  margin-left: 35px;
  
}

.footer .box-container .box a {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  padding: 1rem 0;
}

.footer .box-container .box a i {
  color: hsl(0, 0%, 100%);
  padding-right: .5rem;
}

.footer .box-container .box a:hover {
  color: #219150;
}

.footer .box-container .box a:hover i {
  padding-right: 2rem;
}

.footer .credit {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1rem;
  padding-top: 2.5rem;
  font-size: 2rem;
  color: #fff;
  max-width: fit-content;
}

.footer .credit span {
  color: #ffffff;
  font-size: 2rem;
}

@media (max-width: 1200px) {
  .header {
    padding: 2rem;
  }
  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 55%;
    scroll-padding-top: 7rem;
  }
  .home .box {
    padding: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-position: right !important;
  }
  .home .box.second {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-position: left !important;
  }
  .home .box .content {
    text-align: center;
  }
  .home .box .content span {
    font-size: 3rem;
  }
  .home .box .content h3 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -110%;
    background: #fff;
    z-index: 10000;
    width: 35rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .navbar.active {
    left: 0;
    -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
            box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
  }
  .header .navbar a {
    margin: 1rem 0;
    font-size: 3rem;
  }
  .header .navbar #nav-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 2rem;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none;
  }

  .system img {
    width: 95%;

  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
  .heading {
    font-size: 3rem;
  }
  .home{
    
  }
}

.home1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

/* Welcome Company Profile */

.home1 .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.home1 .image img {
  width: 100%;
}

.home1 .content {
  width: 45rem;
}

.home1 .content h1 {
  color: #334C85;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.home1 .content h3 {
  color: #263238;
  font-size: 3rem;
  padding: 2rem 0;
  text-align: center;
}

.home1 .content .download {
  text-align: center;
}

.home1  {
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.home1 .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
}

.home1 .image img {
  width: 100%;
  -webkit-box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.home1 .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.home1 .content h3 {
  font-size: 3rem;
  color: #219150;
}

.home1 .content p {
  font-size: 1.5rem;
  color: #10221b;
  padding: 1rem 0;
  justify-content: center;
  line-height: 2;
}

.flex-parent {
  display: flex;
}

.jc-center {
  justify-content: center;
}

.home1 .content h3 a {
  color: #44bb6a;
}

.home1 .content h3 a:hover {
  text-decoration: underline;
}

.home1 .content p {
  font-size: 1.4rem;
  color: black;
  padding-bottom: 1rem;
  line-height: 2;
  justify-content: center;
}


.contact .heading p {
  font-size: 5px;
  justify-content: center;
}


/* what we do (wwd) */

.wwd .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.wwd .box-container .box {
  text-align: center;
  padding: 2rem;
  border: 0.1rem solid #999;
}

.wwd .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.wwd .box-container .box img {
  height: 20rem;
}

.wwd .box-container .box .title {
  display: block;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #263238;
}

.wwd .box-container .box .title:hover {
  text-decoration: underline;
}

.wwd .box-container .box .blog-description {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: black;
  line-height: 2;
}

.wwd .box-container .box .icons {
  padding-top: 1.7rem;
  margin-top: 1.5rem;
  border-top: 0.1rem solid #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.wwd .box-container .box .icons a:hover {
  text-decoration: underline;
}

.wwd .box-container .box a img {
  width: 100px;
  height: 100px;
  margin-top: 1rem;
}

hr.style1{
	border-top: 1px solid black;
}


/* Our Products */

.products .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.products .box-container .box {
  position: relative;
  padding: 2rem;
  border: 0.1rem solid #999;
  overflow: hidden;
  text-align: center;
  image-rendering: center;
}

.products .box-container .box:hover .content {
  opacity: 1;
}

.products .box-container .box .image img {
  width: 100%;
}



.products .box-container .box .image h3 {
  font-size: 2rem;
  color: #219150;
  font-weight: normal;
  padding-bottom: 1rem;
}

.products .box-container .box .content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  opacity: 0;
  
}

.products .box-container .box .content h3 {
  font-size: 2rem;
  color: #fff;
}

.products .box-container .box .content p {
  font-size: 1.4rem;
  color: #fff;
  padding: 1.5rem 0;
  line-height: 2;
}

.products .box-container .box .content .btn:hover {
  background: #ff0;
  color: #263238;
}

.products .heading h3{
  margin-top: 25px;
}

.video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      height: 0;
      overflow: hidden;
      border-radius: 10px;
      background-color: #000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .video-container video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
/* Our facilities */
.facilities .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.facilities .box-container .box {
  text-align: center;
  padding: 2rem;
  border: 0.1rem solid #999;
  background: #fff;
}

.facilities .box-container .box h3 {
  font-size: 2rem;
  color: #263238;
}

.facilities .box-container .box .list {
  padding: 1.5rem 0;
  text-align: left;
}

.facilities .box-container .box .list p {
  padding: 1rem 0;
  font-size: 14px;
  color: black;
  line-height: 2;
}

.facilities .box-container .box .list p i {
  color: #44bb6a; 
  padding-right: .5rem;
}

/* page contact us */

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.contact .row .contact-info-container {
  width: 40rem;
}

.contact .row .contact-info-container .box {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.contact .row .contact-info-container .box i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 1.7rem;
  background: #44bb6a;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  margin-top: -1rem;
}

.contact .row .contact-info-container .box h3 {
  font-size: 2rem;
  color: #263238;
  padding-bottom: 1rem;
}

.contact .row .contact-info-container .box p {
  font-size: 1.5rem;
  color: #777;
  line-height: 2;
}

.contact .row .contact-info-container .share {
  padding-top: 1rem;
}

.contact .row .contact-info-container .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: #263238;
  color: #fff;
  margin-right: .1rem;
  text-align: center;
}

.contact .row .contact-info-container .share a:hover {
  background: #44bb6a;
}

.contact .row form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.contact .row form .inputBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact .row form .inputBox input {
  width: 49%;
}

.contact .row form .inputBox input, .contact .row form textarea {
  padding: 1.4rem;
  background: #f6f6f6;
  text-transform: none;
  color: #777;
  margin: .7rem 0;
  font-size: 1.6rem;
  border: 0.1rem solid #999;
}

.contact .row form textarea {
  width: 100%;
  resize: none;
  height: 15rem;
}

.contact .heading i, span {
  margin-top: 45px;
  margin-bottom: 15px;
}

.contact .heading p {
  font-size: 18px;
}


.facility .heading i, span {
  font-size: 30px;
}

.sustainability .content i, span{
  font-size: 30px;
}

.about .content i, span{
  margin-top: 40px;
  font-size: 30px;
}

/* sustainability */

.sustainability {
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.sustainability .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
}

.sustainability .image img {
  width: 100%;
  -webkit-box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.sustainability .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.sustainability .content h3 {
  font-size: 3rem;
  color: #219150;
}

.sustainability .content p {
  font-size: 12px;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2;
  justify-content: left;
}

.sustainability .image{
  margin-top: 45px;
} 

.sustainability .content{
  margin-top: 40px;
} 

.sustainability .content .box .list1 i{
  color: black;
  font-size: 15px;
}


/* about us */
.about {
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}



.about .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
}

.about .image img {
  width: 100%;           /* Isi seluruh lebar kontainer */
  height: auto;          /* Otomatis menyesuaikan tinggi agar proporsi tetap */
  max-width: 100%;       /* Mencegah meluber keluar kontainer */
  display: block;        /* Hindari whitespace di bawah gambar */
  object-fit: cover;     /* Opsional, jika kamu ingin gambar penuh kontainer */
  box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.about .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
          margin-bottom: 120px;
}

.about .content h3 {
  font-size: 3rem;
  color: #219150;
}

.about .content p {
  font-size: 14px;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2.0;
}

.about .image{
  margin-top: 95px;
} 

.about .content{
  margin-top: 30px;
} 

/* system */

.about .content .system {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 1.5rem;
}

.system img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.about .system p {
  font-size: 14px;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2;
  justify-content: center;
}

/* compant at glance */

.service .system p {
  font-size: 14px;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2;
  justify-content: center;
}

.service .system h3 {
  font-size: 3rem;
  color: #219150;
  text-align: center;
}

.service .system .values{
  margin-top: 30px;
  margin-bottom: 10px;
}

.service .system .core {
  font-size: 14px;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2;
  text-align: left;
}



:root{
  --orange:#ff7a00;
  --yellow:#feed01;
  --black:#000;
  --white:#fff;
  --green: #219150;
  --border:.2rem solid var(--black);
  --box-shadow:0 1rem 1.5rem rgba(0,0,0,.3);
  --bg-card:#eff0f0;
    --clr-violet: #4927ec;
    --clr-gray-price:#323639;
    --clr-gray-time: #aeb1b2;
    --clr-gray-btn:  #d6d7d7;

    --clr-black: #000 ;
    --clr-white: #fff ;
}
* , ::before , ::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* products accesories */
.acc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.acc .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.acc .image img {
  width: 100%;
}

.acc .content {
  width: 45rem;
}

.acc .content h1 {
  color: #334C85;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.acc .content h3 {
  color: #263238;
  font-size: 3rem;
  padding: 2rem 0;
  text-align: center;
}

.acc .content .download {
  text-align: center;
}

.acc  {
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.acc .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
}

.acc .image img {
  width: 100%;
  -webkit-box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.acc .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.acc .content h3 {
  font-size: 3rem;
  color: #219150;
}

.acc .content p {
  font-size: 1.5rem;
  color: #10221b;
  padding: 1rem 0;
  justify-content: center;
  line-height: 2;
}

/* facilities page */
.facility .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.facility .box-container .box {
  text-align: center;
  padding: 2rem;
  border: 0.1rem solid #999;
}

.facility .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.facility .box-container .box img {
  height: 20rem;
}

.facility .box-container .box .title {
  display: block;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #263238;
}

.facility .heading h3 {
  text-align: center;
}

.facility .box-container .box .title:hover {
  text-decoration: underline;
}

.facility .box-container .box .blog-description {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: black;
  line-height: 2;
}

.facility .box-container .box .icons {
  padding-top: 1.7rem;
  margin-top: 1.5rem;
  border-top: 0.1rem solid #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.facility .box-container .box .icons a:hover {
  text-decoration: underline;
}

.facility .box-container .box img {
  width: 270px;
  height: 250px;
  margin-top: 1rem;
}

hr.style1{
	border-top: 1px solid black;
}

.facility .heading h3 {
  margin-top: 30px;
}

.facility .box-container .box {
  font-size: 1.5rem;
  color: #219150;
}


/* other facilities */
.facility1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.facility1 .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.facility1 .image img {
  width: 100%;
}

.facility1 .content {
  width: 45rem;
}

.facility1 .content h1 {
  color: #334C85;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.facility1 .content h3 {
  color: #263238;
  font-size: 3rem;
  padding: 2rem 0;
  text-align: center;
}

.facility1 .content .download {
  text-align: center;
}

.facility1  {
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.facility1 .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
}

.facility1 .image img {
  width: 100%;
  -webkit-box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.facility1 .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.facility1 .content h3 {
  font-size: 3rem;
  color: #219150;
}

.facility1 .content p {
  font-size: 1.5rem;
  color: #10221b;
  padding: 1rem 0;
  justify-content: center;
  line-height: 2;
}


/* company at glance orange */
  
.service{
  min-height: 100vh;
}

.service .box-container{
  width:100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.service .box-container .box{
  height:25rem;
  width:25rem;
  box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
  border-left: .5rem solid var(--orange);
  border-right: .5rem solid var(--orange);
  border-radius: .5rem;
  text-align: center;
  padding-top: 6rem;
  margin:2rem 3rem;
  
}

.service .box-container .box .fas{
  color:var(--green);
  font-size: 5rem;
}

.service .box-container .box p{
  color:#000;
  font-weight: bold;
  font-size: 1.5rem;
  margin:2rem 0;
}

.service .box-container .box h1 {
  color: #219150
}

/* Pricing Section */
.pricing {
    padding: 50px 20px;
}
/* ChangeTime Section */
.changeTime {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-gap: 5px;
    gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    border-radius: 25px;
    padding: 1px;
    border: 2px solid #d6d7d7;
    border: 2px solid var(--clr-gray-btn , #d6d7d7);
    background-color: #eff0f0;
    background-color: var(--bg-card , #eff0f0);
}

.change-time__link {
   display: block;
   text-decoration: none;
   padding: 12px 0;
   width: 80px;
   text-align: center;
   border-radius: 25px;
   font-size: 10;
   color: #000;
   color: var(--clr-black , #000);
}

.changeTime__monthly {
    background-color: #4927ec;
    background-color: var(--clr-violet ,#4927ec);
    color: #fff;
    color: var(--clr-white);
    
}
/* Cards Section */
.cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 15px;
    gap: 15px;
    margin-top: 20px;
}
/* Card Section */
.card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 15px 60px 15px 170px 15px auto;
    grid-template-rows: auto 60px 700px auto;
        grid-template-areas: 
    "card__title"
    "cardPrice"
    "cardList"
    "card__signUp";
    grid-gap: 15px;
    gap: 30px;
    padding: 20px ;
    border-radius: 15px;
    background-color: #eff0f0;
    background-color: var(--bg-card , #eff0f0);
    cursor: pointer;
}

.card:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    border: 2px solid #4927ec;
    border: 2px solid var(--clr-violet ,#4927ec) ;
    -webkit-transition: .1s;
    transition: .1s;
}

.card--2 {
    border: 2px solid #4927ec;
    border: 2px solid var(--clr-violet ,#4927ec) ;
}

.cardTitle-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.card__popular {
    display: block;
    padding: 5px 10px;
    font-size: .85rem;
    border-radius: 3px;
    color: #fff;
    color: var(--clr-white , #fff);
    background-color: #323639;
    background-color: var(--clr-gray-price , #323639);
}

.card__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1;
    grid-column: 1;
    grid-area: card__title;
    margin: 0;
    font-size: 1.25rem;
}
/* CardPrice Section */
.cardPrice {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-row: 3;
    grid-column: 1;
    grid-area: cardPrice;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.cardPrice__price {
    margin-right: 5px;
    font-size: 5.5rem;
    font-weight: 700;
    color: #323639;
    color: var(--clr-gray-price , #323639);
}

#cardPricePro.active {
    background-color: red;
}

.cardPrice__time {
    margin-bottom: 3px;
    color: #aeb1b2;
    color: var(--clr-gray-time , #aeb1b2);
}
/* CardList Section */
.cardList {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-row: 5;
    grid-column: 1;
    grid-area: cardList;
    margin: 0;
    padding-left: 0px;
}

.cardList__item {
    margin-bottom: 10px;
    list-style: none;
}
/* Card__signUp Section */
.card__signUp {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    grid-row: 7;
    grid-column: 1;
    grid-area: card__signUp;
    display: block;
    text-align: center;
    padding: 7px 0;
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
    border: 1px solid #d6d7d7;
    border: 1px solid var(--clr-gray-btn , #d6d7d7);
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px #d6d7d7;
            box-shadow: 0px 1px #d6d7d7;
    -webkit-box-shadow: 0px 1px var(--clr-gray-btn , #d6d7d7);
            box-shadow: 0px 1px var(--clr-gray-btn , #d6d7d7);
    color: #000;
    color: var(--clr-black , #000);
    background-color: #fff;
    background-color: var(--clr-white , #fff);
}

.card__signUp--bg {
    color: #fff;
    color: var(--clr-white , #fff);
    background-color: #4927ec;
    background-color: var(--clr-violet ,#4927ec) ;
}
/* Media Screen Section */
@media screen and (min-width:768px) {
    .cards {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .card {
        -ms-grid-columns: 225px;
        grid-template-columns: 225px;
    }

    .card__title {
        font-size: 1.75rem;
    }

    .cardPrice__price {
        font-size: 4.0rem;
    }

}
