@import url(helper.css);
*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #016559;
  --sub-color: #02B694;
  --sec-color: #6DA089;
  --linear: linear-gradient(45deg, #016559, #02B694, #016559);
}

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

.main-back {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.sub-back {
  background-color: var(--sub-color) !important;
  border-color: var(--sub-color) !important;
}

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

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.font-momo {
  font-family: "Momo Trust Display", sans-serif;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section-padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- butn --------------- */
.butn {
  padding: 15px 35px;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  border: 0;
  background-image: var(--linear);
  color: #fff;
  font-weight: bold;
}
.butn:hover {
  color: #fff;
  box-shadow: 7px 10px 15px rgba(24, 25, 27, 0.1333333333);
  transform: translateY(-2px);
}
.butn.butn-white {
  background: #fff;
  color: var(--main-color);
}
.butn.butn-white:hover {
  background-color: var(--main-color);
  color: #fff;
}
.butn.butn-border {
  background-color: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.butn.butn-border:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.butn.md-butn {
  padding: 12px 25px;
  font-size: 13px;
}
.butn.blur-wh-butn {
  background-color: rgba(255, 255, 255, 0.0666666667);
  backdrop-filter: blur(10px);
}
.butn.hvr-scale:hover {
  transform: scale(1.1);
}
.butn.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}
.butn.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}
.butn.hvr-txt-trans .txt::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.butn.hvr-txt-trans .txt span {
  transition: all 0.4s ease;
}
.butn.hvr-txt-trans:hover .txt span {
  transform: translateY(-150%);
  opacity: 0;
}
.butn.hvr-txt-trans:hover .txt::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* --------------- navbar --------------- */
.nav-section {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.top-navbar {
  position: relative;
  padding: 10px;
  background-image: var(--linear);
  color: #fff;
}
.top-navbar .social-icons {
  display: flex;
  gap: 5px 30px;
}
.top-navbar .social-icons a {
  position: relative;
  font-size: 16px;
}

.navbar {
  position: relative;
  padding: 15px 0;
  z-index: 99;
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  font-size: 18px;
  text-transform: capitalize;
  margin: 0 15px;
  color: #fff;
}

/* --------------- header --------------- */
.hero-st2 {
  position: relative;
  z-index: 5;
}
.hero-st2 .top-pat {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.hero-st2 .btm-pat {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.hero-st2 .hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-st2 .hero-slider .swiper-slide {
  position: relative;
  transition: all 1s ease-in-out;
}
.hero-st2 .hero-slider .swiper-slide-active .slider-card .info-wrapper {
  opacity: 1;
}
.hero-st2 .hero-slider .swiper-slide-active .slider-card .info-wrapper .info {
  opacity: 1;
  transform: translateY(0);
}
.hero-st2 .slider-card {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}
.hero-st2 .slider-card .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero-st2 .slider-card .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}
.hero-st2 .slider-card .img img {
  -o-object-position: center;
     object-position: center;
}
.hero-st2 .slider-card .info-wrapper {
  position: relative;
  padding-top: 50px;
  z-index: 3;
  opacity: 0;
  transition: all 1s ease-in-out;
}
.hero-st2 .slider-card .info-wrapper .info {
  position: relative;
  color: var(--main-color);
  padding: 150px 0;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.5s ease;
  transition-delay: 0.7s;
}
.hero-st2 .slider-card .info-wrapper .info h1 {
  position: relative;
  font-size: 70px;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
  line-height: 1.5;
}
.hero-st2 .slider-card .info-wrapper .info h4 {
  position: relative;
  font-size: 21px;
  text-transform: capitalize;
  letter-spacing: 5px;
  margin-bottom: 40px;
  color: var(--sub-color);
}
.hero-st2 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero-st2 .swiper-button-next,
.hero-st2 .swiper-button-prev {
  opacity: 0;
  transition: all 0.3s ease;
}
.hero-st2:hover .swiper-button-next,
.hero-st2:hover .swiper-button-prev {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

.arrows-st2 {
  position: relative;
  width: 130px;
}
.arrows-st2 .swiper-button-next,
.arrows-st2 .swiper-button-prev {
  position: absolute;
  width: 45px;
  height: 45px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  color: var(--main-color);
  opacity: 0.5;
  margin: 0;
  transition: all 0.3s ease;
}
.arrows-st2 .swiper-button-next::after,
.arrows-st2 .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}
.arrows-st2 .swiper-button-next:hover,
.arrows-st2 .swiper-button-prev:hover {
  opacity: 1;
  background-color: var(--main-color);
  color: #fff;
}

/* --------------- sections --------------- */
.sections {
  position: relative;
  z-index: 10;
}
.sections .main-card {
  position: relative;
  padding: 3vw;
  padding-bottom: 0;
  margin-bottom: 30px;
  border-radius: 20px;
  background-image: linear-gradient(45deg, rgba(255, 219, 81, 0.1333333333), #fff);
}
.sections .main-card .img {
  position: relative;
  height: 200px;
  margin-top: 50px;
  text-align: center;
}
.sections .items {
  position: relative;
}
.sections .items .cat-item {
  position: relative;
  padding: 3vw;
  background-image: linear-gradient(45deg, rgba(211, 78, 114, 0.0666666667), #fff);
  border-radius: 20px;
  margin-bottom: 30px;
}
.sections .items .cat-item:nth-of-type(2) {
  background-image: linear-gradient(45deg, rgba(2, 182, 148, 0.0666666667), #fff);
}
.sections .snow {
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  transform: translateY(-70%);
  z-index: 3;
}

.sections-st2 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.sections-st2 .row .col-lg-6:first-of-type .sec-card {
  background-color: #f5f6e2;
}
.sections-st2 .sec-card {
  position: relative;
  padding: 40px 50px;
  background-color: #E8FFD8;
  border-radius: 30px;
  z-index: 5;
}
.sections-st2 .sec-card h3 {
  position: relative;
  color: var(--main-color);
  font-size: 30px;
  margin-bottom: 15px;
}
.sections-st2 .sec-card .text {
  position: relative;
  font-size: 14px;
  color: #777;
}
.sections-st2 .sec-card .img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  padding: 30px;
  z-index: -1;
}

/* --------------- about --------------- */
.about {
  position: relative;
  overflow: hidden;
}
.about .imgs {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  z-index: 10;
}
.about .imgs .main-img {
  position: relative;
  height: 400px;
  width: 60%;
  border-radius: 30px;
  overflow: hidden;
  z-index: 2;
}

/* --------------- products --------------- */
.products {
  position: relative;
  background-color: #f7f7f7;
  padding: 120px 0 !important;
}
.products .products-slider {
  position: relative;
  padding: 50px 0;
}

.product-card {
  position: relative;
  margin-top: 48px;
  border-radius: 15px;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
}
.product-card .img {
  height: 250px;
  overflow: hidden;
  padding: 50px;
}
.product-card .info {
  position: relative;
  padding: 20px 30px 50px;
}
.product-card .info .card-title {
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.product-card .info .text {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
}
.product-card .info .more-link {
  font-size: 16px;
  margin-top: 10px;
}
.product-card .hover-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.5);
  transition: all 0.7s ease;
  z-index: 5;
}
.product-card:hover .hover-img {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.nav-pills {
  position: relative;
  background-color: #fff;
  display: inline-flex;
  border-radius: 10px;
}
.nav-pills .nav-link {
  padding: 15px 30px;
  border-radius: 10px;
  text-transform: uppercase;
  min-width: 150px;
  text-align: center;
  color: #000;
}
.nav-pills .nav-link.active {
  background-color: var(--main-color);
  color: #fff;
}

/* --------------- choose-us --------------- */
.choose-us {
  position: relative;
  z-index: 10;
}
.choose-us .title {
  position: relative;
  font-size: 80px;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.2;
  color: var(--main-color);
  text-align: center;
}
.choose-us .item {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, rgba(2, 182, 148, 0.0666666667), #fff);
  text-align: center;
  margin: 50px 0;
  width: 80%;
}
.choose-us .row .col-lg-4:nth-of-type(1) .items .item:nth-of-type(1), .choose-us .row .col-lg-4:nth-of-type(1) .items .item:nth-of-type(3) {
  margin-inline-start: auto;
}
.choose-us .row .col-lg-4:nth-of-type(3) .items .item:nth-of-type(2) {
  margin-inline-start: auto;
}

.choose-us-st2 {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.choose-us-st2 .section-title {
  margin-bottom: 60px;
  text-align: center;
}
.choose-us-st2 .feat-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
  z-index: 1;
}
.choose-us-st2 .feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--linear);
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
}
.choose-us-st2 .feat-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(1, 101, 89, 0.15);
}
.choose-us-st2 .feat-card:hover::before {
  opacity: 1;
}
.choose-us-st2 .feat-card:hover .icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.choose-us-st2 .feat-card:hover h5,
.choose-us-st2 .feat-card:hover .text {
  color: #fff !important;
}
.choose-us-st2 .feat-card .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #f8f9fa;
  color: var(--main-color);
  font-size: 30px;
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}
.choose-us-st2 .feat-card h5 {
  font-size: 20px;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}
.choose-us-st2 .feat-card .text {
  color: #777;
  transition: all 0.4s ease;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  background-image: url(../images/foot-bg.jpg);
  background-size: cover;
  color: #fff;
  padding-top: 100px;
  margin: 0 15px 15px;
  border-radius: 30px;
  overflow: hidden;
}
.footer .logo {
  height: 90px;
  margin-bottom: 20px;
}
.footer .text {
  font-size: 15px;
  opacity: 0.7;
}
.footer .social-links {
  padding-top: 30px;
}
.footer .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-inline-end: 10px;
  color: #fff;
}
.footer .social-links a:hover {
  border-color: var(--sub-color);
  background-color: var(--sub-color);
  color: #fff;
}
.footer .links {
  position: relative;
}
.footer .links a {
  position: relative;
  display: inline-flex;
  font-size: 16px;
  color: #fff;
  opacity: 0.9;
  margin: 7px 0;
  text-transform: capitalize;
}
.footer .links a:hover {
  color: var(--sub-color);
}
.footer .sub-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: capitalize;
}
.footer .sub-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  background-color: var(--sub-color);
}
.footer .foot {
  position: relative;
  padding: 30px 3vw;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2666666667);
  font-size: 13px;
  text-transform: capitalize;
}
.footer .foot .alyom-logo {
  margin-inline-start: 10px;
  height: 40px;
}
/* --------------- float-call-btn --------------- */
.float-call-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--sub-color);
  color: #fff !important;
  font-size: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.float-call-btn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sub-color);
  opacity: 0.6;
  animation: pulse 1.5s infinite ease-in-out;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* --------------- contact page --------------- */
.contact .info-card {
  padding: 40px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #eee;
  height: 100%;
}
.contact .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact .info-item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #f8f9fa;
  color: var(--main-color);
  border-radius: 12px;
  font-size: 20px;
  margin-right: 20px;
  transition: all 0.3s ease;
}
.contact .info-item .details h6 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--main-color);
}
.contact .info-item .details p {
  font-size: 13px;
  color: #777;
}
.contact .social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
.contact .social-links a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  color: var(--main-color);
  transition: all 0.3s ease;
}
.contact .social-links a:hover {
  background-image: var(--linear);
  color: #fff;
  border-color: transparent;
  transform: translateY(-5px);
}
.contact .form-wrapper {
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 30px;
}
.contact .form-group {
  margin-bottom: 20px;
}
.contact .form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.contact .form-control {
  height: 55px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  background-color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}
.contact .form-control:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 10px rgba(1, 101, 89, 0.1);
  outline: none;
}
.contact textarea.form-control {
  height: 150px;
  padding-top: 15px;
}
.contact .section-title {
  margin-bottom: 50px;
}

/* --------------- inner header --------------- */
.inner-header {
  position: relative;
  padding: 150px 0;
  background-image: url(../images/foot-bg2.jpg);
  background-size: cover;
  background-position: center;
  color: var(--main-color);
  text-align: center;
  overflow: hidden;
  z-index: 5;
}
.inner-header::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #fff, transparent);
  z-index: -1;
  pointer-events: none;
}
.inner-header h1 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.inner-header .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
}
.inner-header .links a {
  transition: all 0.3s ease;
}
.inner-header .links span.sep {
  width: 5px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 50%;
}

/* --------------- about page --------------- */
.about-pg .intro-wrapper {
  margin-bottom: 80px;
}
.about-pg .info h2 {
  margin-bottom: 30px;
}
.about-pg .info .text {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.about-pg .vision-mission {
  background-color: #f8f9fa;
  padding: 80px 0;
  margin: 0 -15px;
  border-radius: 50px;
}
.about-pg .vmg-card {
  position: relative;
  padding: 50px 30px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #eee;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
}
.about-pg .vmg-card:hover {
  transform: translateY(-10px);
  border-color: var(--main-color);
  box-shadow: 0 20px 40px rgba(1, 101, 89, 0.1);
}
.about-pg .vmg-card:hover .icon {
  background-image: var(--linear);
  color: #fff;
}
.about-pg .vmg-card .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #f8f9fa;
  color: var(--main-color);
  font-size: 35px;
  border-radius: 50%;
  margin: 0 auto 30px;
  transition: all 0.4s ease;
}
.about-pg .vmg-card h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--main-color);
}
.about-pg .vmg-card p {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
}

/* --------------- products page --------------- */
.products-pg .nav-pills {
  justify-content: center;
  margin-bottom: 60px;
  gap: 20px;
}
.products-pg .nav-pills .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 120px;
  background-color: #fff;
  color: #000;
  font-weight: 500;
  transition: all 0.4s ease;
  border: 1px solid #eee;
  border-radius: 30px;
  font-size: 20px;
}
.products-pg .nav-pills .nav-link .icon-img {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}
.products-pg .nav-pills .nav-link .icon-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease;
}
.products-pg .nav-pills .nav-link.active {
  background-color: #fff;
  border-color: var(--main-color);
  background-color: rgba(1, 101, 89, 0.2666666667);
  box-shadow: 0 15px 30px rgba(1, 101, 89, 0.1);
  transform: translateY(-5px);
}
.products-pg .nav-pills .nav-link.active .icon-img img {
  transform: scale(1.1) rotate(5deg);
}
.products-pg .product-horizontal-card {
  display: flex;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid #eee;
  padding: 40px;
  gap: 30px 60px;
  transition: all 0.4s ease;
}
.products-pg .product-horizontal-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.products-pg .product-horizontal-card:nth-child(even) {
  flex-direction: row-reverse;
}
.products-pg .product-horizontal-card .img-side {
  position: relative;
  flex: 0 0 40%;
  overflow: hidden;
  border-radius: 30px;
  height: auto;
  height: 500px;
  max-height: 100vw;
  z-index: 5;
}
.products-pg .product-horizontal-card .info-side {
  flex: 1;
}
.products-pg .product-horizontal-card .info-side h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--main-color);
  text-transform: capitalize;
}
.products-pg .product-horizontal-card .info-side .text {
  font-size: 16px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 30px;
}
.products-pg .product-horizontal-card .info-side .features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}
.products-pg .product-horizontal-card .info-side .features span {
  padding: 8px 18px;
  background-color: #f0f7f6;
  color: var(--main-color);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}
.products-pg .product-horizontal-card .info-side .tech-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  padding: 25px 0 0;
  list-style: none;
  border-top: 1px solid #eee;
  margin-top: 30px;
}
.products-pg .product-horizontal-card .info-side .tech-details li {
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: baseline;
}
.products-pg .product-horizontal-card .info-side .tech-details li strong {
  color: var(--main-color);
  margin-right: 8px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .products-pg .product-horizontal-card, .products-pg .product-horizontal-card:nth-child(even) {
    flex-direction: column;
  }
  .products-pg .product-horizontal-card .img-side {
    width: 100%;
    height: 300px;
  }
  .products-pg .product-horizontal-card .info-side {
    padding: 40px 30px;
  }
  .products-pg .product-horizontal-card .info-side .tech-details {
    grid-template-columns: 1fr;
  }
}

/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .top-navbar {
    display: none;
  }
  .nav-section {
    position: relative;
    background-color: var(--main-color);
  }
  .fsz-40 {
    font-size: 30px !important;
  }
  header .info h1 {
    font-size: 35px;
    line-height: 1.3;
  }
  .nav-pills .nav-link {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .footer {
    padding: 50px 30px;
    margin: 0;
    border-radius: 0;
  }
  .hero .slider-card .info-wrapper {
    opacity: 1;
    transform: translateX(0);
    width: 100%;
    padding: 50px 20px;
    height: -moz-max-content;
    height: max-content;
    justify-content: start;
  }
  .hero .slider-card .info-wrapper .info {
    padding-bottom: 0;
    opacity: 1;
    transform: translateY(0);
  }
  .hero .slider-card .info-wrapper .info h4 {
    font-size: 18px;
  }
  .hero .slider-card .info-wrapper .info h1 {
    font-size: 50px;
  }
  .products {
    overflow: hidden;
  }
  .hero .slider-card .img {
    position: relative;
    height: 300px;
  }
  .hero .slider-card .img img {
    -o-object-position: right;
       object-position: right;
  }
  .sections {
    padding-top: 50px;
  }
  .choose-us .item {
    margin: 15px auto !important;
  }
  .products-pg .product-horizontal-card {
    padding: 15px !important;
  }
  .products-pg .product-horizontal-card .info-side {
    padding: 0 15px 15px;
  }
  .products-pg .nav-pills .nav-item {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: calc(50% - 15px);
  }
  .products-pg .nav-pills .nav-item .nav-link {
    width: 100%;
    padding: 15px 60px;
  }
  .products-pg .nav-pills .nav-item .nav-link .icon-img {
    width: 120px;
    height: 120px;
  }
  .products-pg .product-horizontal-card .img-side {
    flex: none;
    height: 200px;
  }
  .products-pg .product-horizontal-card .img-side img {
    padding: 30px;
  }
  .about .imgs .main-img {
    width: 100%;
    height: 300px;
  }
  .about .imgs .sub-img1,
  .about .imgs .sub-img2 {
    display: none;
  }
  .inner-header {
    padding: 50px 0;
  }
  .hero-st2 .slider-card {
    min-height: -moz-max-content;
    min-height: max-content;
    padding: 50px 0;
  }
  .hero-st2 .slider-card .info-wrapper .info {
    padding: 0;
  }
  .hero-st2 .slider-card .info-wrapper .info h1 {
    font-size: 45px;
    line-height: 1.2;
  }
  .sections-st2 .sec-card {
    margin-bottom: 30px;
  }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */