body {
  font-family: var(--primary-font-family);
  background-color: var(--bs-white);
  color: var(--bs-gray-dark);
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0;
  padding: 0;
  white-space: normal;
  visibility: inherit;
  text-align: inherit;
  border: 0px;
  font-stretch: inherit;
  overflow-x: hidden !important; /*transition: background 0.2s linear;*/
  display: flex;
  flex-direction: column;
}

html {
  height: 100%;
  margin-bottom: 0px;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
div,
section,
a,
p,
aside,
span,
ul,
li,
dl,
header,
footer,
h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

/*custom scrollbar*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #0796a6;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #000;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0796a6;
}
/*custom scrollbar*/

/*TEXT SELECTION*/
::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #0796a6;
}
::selection {
  color: #fff;
  background: #0796a6;
}
/*TEXT SELECTION*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font-family);
  letter-spacing: normal;
  position: relative;
  text-transform: capitalize;
}

.h1-title-center {
  position: relative;
  text-align: center;
  margin: 0 0 1rem 0;
}
.h1-title-center h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #0796a6;
  margin: 0;
}
.h1-title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  gap: 10px;
}
.h1-title-underline .line {
  display: inline-block;
  height: 2px;
  width: 50px;
  background-color: #0796a6;
  border-radius: 2px;
}
.h1-title-underline .dot {
  width: 10px;
  height: 10px;
  background-color: #0796a6;
  border-radius: 50%;
}

h5 {
  font-size: 15px;
  line-height: 30px;
  color: #0796a6;
  font-weight: 700;
}
h5 span {
  color: #0796a6;
}

h6 {
  position: relative;
  color: var(--bs-gray-800);
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

p {
  position: relative;
  color: var(--bs-black);
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 12px !important;
  margin-top: 0px;
  padding: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}
p a {
  color: #000000;
  font-weight: 400;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
p a:hover {
  color: #0796a6;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
p span {
  color: #0796a6;
  font-weight: 500;
}
p strong {
  color: var(--bs-secondary);
  font-weight: 600;
}
p:last-child {
  margin-bottom: 0;
}

/*FIX CONTACT BTN*/
.connect-now {
  position: fixed;
  top: 20rem;
  right: 1rem;
  z-index: 999;
}
.connect-now ul {
}
.connect-now ul li {
  margin-bottom: 1rem;
  width: auto;
}
.connect-now ul li a {
  text-orientation: inherit;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-align: center;
  padding: 1.5rem 0.25rem;
  height: auto;
  line-height: 40px;
  width: auto;
  border: none;
  background: #0796a6;
  border-radius: 10px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 14px;
  color: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  text-transform: uppercase;
}
.connect-now ul li a:hover {
  background: #000;
  color: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.connect-now ul li a i {
  transform: rotate(90deg);
  margin-bottom: 0.5rem;
}
/*FIX CONTACT BTN*/

/*HEADER*/
header {
  position: fixed;
  top: 0px;
  display: flex;
  align-items: center;
  z-index: 111;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  background-color: var(--bs-white);
  transition: padding 300ms ease;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}
header.sticky-top {
}

.top-right {
  position: relative;
  top: 0;
  background-color: #0796a6;
  padding-left: 15px;
  z-index: 1;
}
.top-right:before {
  position: absolute;
  left: -55px;
  top: 0;
  height: 100%;
  width: 1000%;
  background-color: #0796a6;
  content: "";
  transform: skew(45deg);
}

/*LOGO*/
.logo {
  float: left;
  margin: 15px -83px;
  padding: 0;
  display: block;
}
.logo img {
  height: 80px;
}

/* mobile logo */
.logo-mobile {
  display: none;
}

.logo-desktop {
  display: block;
}

/* Mobile view */
@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
    height: 50px;
  }
}

/*LOGO*/

.header-right {
  display: flex;
  align-items: center;
  height: 110px;
  float: right;
  margin-top: 0 !important;
}

.logo img {
  width: auto;
  height: 80px;
}

/* Mobile logo hide by default */
.logo-mobile {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
    height: 50px;
  }
}

/*MOBILE TOP*/
.mobile-top {
  float: right;
  padding-left: 0;
  list-style-type: none;
  margin-top: 33px;
  margin-bottom: 0;
}
.mobile-top li {
  float: left;
  margin-left: 10px;
  margin-right: 0;
  display: inline-block;
}
.mobile-top li a i {
  float: left;
  text-align: center;
  line-height: 40px;
  height: 40px;
  width: 40px;
  padding: 0;
  border: none;
  color: var(--bs-white);
  background: #0796a6;
  display: inline-block;
  font-size: 14px;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border-radius: 50%;
}
.mobile-top li a i:hover {
  color: var(--bs-white);
  background: #000;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
/*MOBILE TOP*/
/*HEADER*/

/*MARKER LIST*/
.marker-list {
  float: left;
}
.marker-list > li {
  color: #000000;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 20px;
}
.marker-list > li:last-child {
  margin-bottom: 0;
}
.marker-list > li:after {
  position: absolute;
  top: 0px;
  left: 0;
  display: block;
  content: "\f058";
  font-family: "FontAwesome";
  font-size: 11px;
  color: #0796a6;
}
.marker-list > li span {
  font-weight: 600;
  color: var(--primary-color);
}
.marker-list > li a {
  color: var(--black-color);
}
.marker-list > li a:hover {
  color: var(--primary-color);
}
/*MARKER LIST*/

.section-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.section-wrapper .section-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #0796a6;
  margin: 0;
  text-transform: capitalize;
}
.section-wrapper .dot {
  width: 10px;
  height: 10px;
  background-color: #0796a6;
  border-radius: 50%;
}
.section-wrapper .line {
  display: inline-block;
  height: 2px;
  width: 75px;
  background-color: #0796a6;
  border-radius: 2px;
}

.more-btn {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 1rem 2rem;
  line-height: 20px;
  color: var(--bs-white);
  background: #0796a6;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 25px;
  letter-spacing: normal;
}
.more-btn:hover {
  background: #000000;
  color: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.more-btn i {
  margin-left: 5px;
  font-size: 12px;
}

.more-btn-w {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 1rem 2rem;
  line-height: 20px;
  color: #0796a6;
  background: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 25px;
  letter-spacing: normal;
}
.more-btn-w:hover {
  background: #0796a6;
  color: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.more-btn-w i {
  margin-left: 5px;
  font-size: 12px;
}

/*HOME SERVICE BOX*/
.home-service {
  background: #abf4fc2b;
  padding: 3rem;
  border-radius: 10px;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.home-service:hover {
  background: #000;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.home-service .icon i {
  color: var(--bs-white);
  background: #0796a6;
  font-size: 30px;
  height: 110px;
  width: 110px;
  line-height: 110px;
  text-align: center;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 50%;
}
.home-service:hover .icon i {
  color: #000;
  background: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}

.home-service h5 {
  font-size: 24px;
  margin: 15px 0 5px 0;
  padding: 0;
  line-height: 35px;
  color: #0796a6;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.home-service:hover h5 {
  color: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.home-service p {
  margin: 0;
  padding: 0;
}
.home-service:hover p {
  color: var(--bs-white);
}
/*HOME SERVICE BOX*/

/*Upcoming Project*/
#upcomimg-project-section {
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../images/upcomimg-project-section.jpg");
}
#upcomimg-project-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(79, 76, 136, 0.85);
}
#upcomimg-project-section h6 {
  color: var(--bs-gray-100);
  margin-bottom: 2rem;
  margin-top: 2rem;
}

#upcomimg-project-section .title-center {
  position: relative;
  text-align: center;
  margin: 0 0 1rem 0;
}
#upcomimg-project-section .title-center h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: var(--bs-white);
  margin: 0;
}
#upcomimg-project-section .title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  gap: 10px;
}
#upcomimg-project-section .title-underline .line {
  display: inline-block;
  height: 2px;
  width: 50px;
  background-color: #0796a6;
  border-radius: 2px;
}
#upcomimg-project-section .title-underline .dot {
  width: 10px;
  height: 10px;
  background-color: #0796a6;
  border-radius: 50%;
}
/*Upcoming Project*/

/*Form Section*/
.form-section {
  z-index: 1;
  /* margin-top: -3rem; */
}
.form-bg {
  background-color: #0796a6;
  background: url("../images/form-bg.png") no-repeat left bottom #0796a6;
  border-radius: 15px;
}
.form-bg h6 {
  color: var(--bs-white);
  margin-top: 0;
  margin-bottom: 0;
}
.form-section-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.form-section-wrapper .form-section-title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: var(--bs-white);
  margin: 0;
  text-transform: capitalize;
}
.form-section-wrapper .dot {
  width: 10px;
  height: 10px;
  background-color: var(--bs-white);
  border-radius: 50%;
}
.form-section-wrapper .line {
  display: inline-block;
  height: 2px;
  width: 75px;
  background-color: var(--bs-white);
  border-radius: 2px;
}

.contact-page-form {
  float: left;
  font-size: 14px;
  padding: 0 1rem;
  line-height: 20px;
  color: var(--bs-gray-800);
  font-weight: 400;
}
.contact-page-form a {
  color: var(--bs-gray-800);
  text-decoration: none;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.contact-page-form a:hover {
  color: #0796a6;
}

.contact-page-form-bor {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  text-align: left;
  color: var(--bs-gray-700);
  font-weight: 400;
  margin: 0;
  padding: 0 1rem;
  background: var(--bs-gray-100);
  border: 1px solid var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border-radius: 7px;
}
.contact-page-form-textar {
  width: 100%;
  height: 110px;
  line-height: 30px;
  font-size: 14px;
  text-align: left;
  color: var(--bs-gray-700);
  font-weight: 400;
  margin: 0;
  padding: 0.5rem 1rem 0 1rem;
  background: var(--bs-gray-100);
  border: 1px solid var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border-radius: 7px;
}

.contact-page-form-bor:focus,
.contact-page-form-textar:focus {
  background: var(--bs-white);
  border: 1px solid var(--bs-gray-100);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}

.contact-page-form select {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  margin: 0;
  padding: 0 1rem;
  color: var(--bs-gray-700);
  font-weight: 400;
  background: var(--bs-white) url(../images/arrow-select.png) no-repeat right
    1rem center;
  border: 1px solid var(--bs-gray-200);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border-radius: 7px;
}
.contact-page-form select:focus {
  background: var(--bs-white) url(../images/arrow-select.png) no-repeat right
    1rem center;
  border: 1px solid var(--bs-primary);
  color: var(--bs-gray-700);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}

.contact-page-form label {
  font-size: 14px;
  width: 100%;
  color: var(--bs-gray-800);
  font-weight: 500;
  margin: 0;
  padding: 0 0 7px 0;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
.contact-page-form label span {
  color: var(--bs-red);
}

.contact-page-form-btn {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 1rem 2rem;
  line-height: 20px;
  color: #0796a6;
  background: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 25px;
  letter-spacing: normal;
}
.contact-page-form-btn:hover {
  background: #000;
  color: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}

::placeholder {
  color: var(--bs-gray-800);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--bs-gray-800);
}
::-ms-input-placeholder {
  color: var(--bs-gray-800);
}
/*Form Section*/

/*OUR PROJECTS*/
.our-projects {
  background-color: #0796a6;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  margin-bottom: 1rem;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 10px;
}
.our-projects:hover {
  background: #000;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}
.slanted-image {
  position: relative;
  height: auto;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  overflow: hidden;
}
.slanted-content {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-content {
  text-align: center;
  padding: 1rem;
}
.text-content h5 {
  font-size: 16px;
  line-height: 25px;
  color: var(--bs-white);
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
}
/*OUR PROJECTS*/

/*OUR PRODUCTS*/
/*#project-section {background:#abf4fc2b;}*/

.project-item-style {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border-radius: 10px;
}

.project-item-style .bg-overlay {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0796a6;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}
.project-item-style .project-item-thumb {
  position: relative;
  text-align: center;
}
.project-item-style .project-item-thumb .project-item-link-image {
  display: block;
}
.project-item-style .project-item-thumb .project-item-link-image img {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}
.project-item-style .project-item-thumb .project-item-link-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(transparent)
  );
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
  -moz-transition: all 0.55s;
  -ms-transition: all 0.55s;
}
.project-item-style .project-item-details {
  position: absolute;
  text-align: center;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  padding: 2rem;
  opacity: 1;
  visibility: visible;
  -moz-transition: all 0.35s;
  -webkit-transition: all 0.35s;
  -ms-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}

.project-item-style .project-item-details .project-item-details-inner .title {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin: 0.5rem 0 1rem 0;
  color: var(--bs-white);
}
.project-item-style
  .project-item-details
  .project-item-details-inner
  .project-item-link-icon
  a {
  display: inline-block;
  width: auto;
  height: auto;
  color: #fff;
  border: none;
  font-size: 15px;
  line-height: 20px;
  border-radius: 25px;
  text-align: center;
  background: #0796a6;
  padding: 0.75rem 2rem;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  font-weight: 500;
  text-transform: uppercase;
}
.project-item-style .project-item-details-hover {
  bottom: -60px;
  z-index: 6;
  visibility: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}

.project-item-style
  .project-item-details-hover
  .project-item-details-inner
  .title {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin: 0.5rem 0 1rem 0;
  color: var(--bs-white);
}
.project-item-style
  .project-item-details-hover
  .project-item-details-inner
  .title
  a {
  color: var(--bs-white);
}
.project-item-style
  .project-item-details-hover
  .project-item-details-inner
  .desc {
  text-align: center;
  color: var(--bs-white);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 1rem;
  padding: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.project-item-style
  .project-item-details-hover
  .project-item-details-inner
  .project-item-link-icon
  a {
  display: inline-block;
  width: auto;
  height: auto;
  color: #0796a6;
  font-size: 15px;
  line-height: 20px;
  border-radius: 25px;
  text-align: center;
  background: #fff;
  padding: 0.75rem 2rem;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  text-transform: uppercase;
}
.project-item-style
  .project-item-details
  .project-item-details-inner
  .project-item-link-icon
  i {
  font-size: 12px;
}
.project-item-style
  .project-item-details-hover
  .project-item-details-inner
  .project-item-link-icon
  i {
  font-size: 12px;
}
.project-item-style
  .project-item-details-hover
  .project-item-details-inner
  .project-item-link-icon
  a:hover {
  background: #000;
  color: #fff;
}
.project-item-style
  .project-item-details-hover
  .project-item-details-inner
  .project-item-link-icon
  a:hover
  i {
  color: #fff;
}
.project-item-style:hover .icon {
  opacity: 0.5;
  visibility: visible;
  transform: scale(1);
  transition: all 500ms ease 500ms;
}
.project-item-style:hover .bg-overlay {
  opacity: 0.75;
  top: 0;
}
.project-item-style:hover .project-item-thumb .project-item-link-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  filter: blur(3px);
}
.project-item-style:hover .project-item-details {
  opacity: 0;
}
.project-item-style:hover .project-item-details-hover {
  opacity: 1;
  bottom: 0;
  visibility: visible;
  z-index: 2;
  -webkit-transition: all 500ms ease 500ms;
  transition: all 500ms ease 500ms;
}
/*OUR PRODUCTS*/

/*COUNTER*/
.vertical-label {
  width: auto;
  right: -2rem;
  bottom: 2rem;
  writing-mode: vertical-rl;
  transform: rotate(360deg);
  background: #0796a6;
  color: var(--bs-white);
  font-weight: 700;
  padding: 2rem 1rem;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  letter-spacing: 0.5px;
  font-size: 25px;
  line-height: 30px;
}

.Our-Success-Stories {
  background-color: var(--bs-gray-100);
  border-radius: 0 15px 15px 0;
}

.main_counter_area .main_counter_content .single_counter {
}
.main_counter_area {
}
.single_counter {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.single_counter ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.single_counter ul li {
  margin: 0;
}

.single_counter .icon,
.single_counter .info {
  display: table-cell;
  vertical-align: middle;
}
.single_counter .info {
  padding-left: 15px;
}
.single_counter .icon i {
  color: var(--bs-white);
  background: #000;
  font-size: 35px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  width: 90px;
  border-radius: 50%;
}
.single_counter .info h5 {
  font-weight: 800;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  color: #0796a6;
  font-size: 35px;
  letter-spacing: 0.5px;
  line-height: 40px;
}
.single_counter .info p {
  color: var(--bs-black);
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
/*COUNTER*/

/*Media Coverage*/
#media-coverage-section {
}

.card-blog {
  position: relative;
  background-color: var(--bs-gray-100);
  overflow: hidden;
  border: 1px solid var(--bs-gray-200);
  height: 100%;
  transition: all 0.4s ease;
  border-radius: 10px;
}
.card-blog:hover {
  background-color: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}
.card-blog .card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem 1rem;
  padding: 2rem;
  text-align: start;
}
.card-blog:hover .blog-image {
  -webkit-transform: scale(1.05) rotate(2deg);
  transform: scale(1.05) rotate(2deg);
  opacity: 0.9;
}
.blog-image {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  transition: all 0.4s ease;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

.blog-card__date {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.75rem;
  text-align: center;
  text-transform: uppercase;
  line-height: normal;
  font-weight: 500;
  position: absolute;
  top: 1rem;
  left: 1rem;
  min-width: 60px;
  min-height: 40px;
  z-index: 1;
}
.blog-card__date__day {
  padding: 0.313rem;
  width: 100%;
  display: block;
  color: var(--bs-white);
  background-color: var(--bs-primary);
}
.blog-card__date__month {
  padding: 0.313rem;
  width: 100%;
  display: block;
  color: var(--bs-gray-900);
  background-color: var(--bs-gray-100);
}

.blog-card__meta {
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0px;
  z-index: 1;
}
.card-blog .blog-card__meta li {
  font-size: 14px;
  color: var(--bs-secondary);
  font-weight: 400;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.card-blog .blog-card__meta li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  transition: all 500ms ease;
}
.card-blog:hover .blog-card__meta li a {
  color: var(--bs-white);
}
.card-blog .blog-card__meta__icon {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: var(--bs-secondary);
}
.card-blog:hover .blog-card__meta__icon {
  color: var(--bs-white);
}

.card-blog .blog-card__title a {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: normal;
  color: var(--bs-primary);
  text-transform: capitalize;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-blog:hover .blog-card__title a {
  color: var(--bs-white);
}

.card-blog .blog-btn a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  width: auto;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.75rem 1.5rem;
  line-height: 20px;
  color: var(--bs-white);
  background: var(--bs-secondary);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 25px;
  letter-spacing: normal;
}
.card-blog:hover .blog-btn a {
  background: var(--bs-white);
  color: var(--bs-secondary);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.card-blog .blog-btn i {
  margin-left: 5px;
  font-size: 12px;
}
/*Media Coverage*/

/*Key Approvals*/
#key-approvals-section {
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../images/key-approvals-section.jpg");
}
#key-approvals-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

#key-approvals-section .section-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
#key-approvals-section .section-wrapper .section-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: var(--bs-white);
  margin: 0;
  text-transform: capitalize;
}
#key-approvals-section .section-wrapper .dot {
  width: 10px;
  height: 10px;
  background-color: var(--bs-secondary);
  border-radius: 50%;
}
#key-approvals-section .section-wrapper .line {
  display: inline-block;
  height: 2px;
  width: 75px;
  background-color: var(--bs-white);
  border-radius: 2px;
}

#key-approvals-section h6 {
  position: relative;
  color: var(--bs-white);
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}
#key-approvals-section .Key_Approvals_Logo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid;
}
/*Key Approvals*/

#Key-Customers {
  background: #abf4fc2b;
}

/*FOOTER-CONTACT*/
#footer-contact-box {
  background: var(--bs-white);
  border-bottom: 1px solid var(--bs-gray-300);
}
.footer-address {
}
.footer-address ul {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}
.footer-address ul li {
  margin: 0;
}
.footer-address .icon,
.footer-address .info {
  display: table-cell;
  vertical-align: top;
}
.footer-address .info {
  padding-left: 1rem;
}
.footer-address ul li i {
  color: var(--bs-white);
  background: var(--bs-primary);
  font-size: 20px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  width: 55px;
  border-radius: 50%;
}
.footer-address .info h5 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  color: var(--bs-primary);
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 33px;
}
.footer-address li .info p {
  font-size: 14px;
  margin: 0;
  padding: 0;
  line-height: 20px;
  font-weight: 400;
  color: var(--bs-black);
  letter-spacing: 0.5px;
}
.footer-address li .info p a {
  color: var(--bs-black);
  font-weight: 400;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.footer-address li .info p a:hover {
  color: var(--bs-secondary);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
/*FOOTER-CONTACT*/

/*FOOTER*/
#footer-1 {
  background: var(--bs-white) url("../images/footer-bg.png") no-repeat center
    center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--bs-gray-300);
}

.title-center {
  text-align: left;
  margin: 0 0 1rem 0;
}
.title-center h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0796a6;
  margin: 0;
  text-wrap-mode: nowrap;
}
.title-underline {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 6px;
  gap: 7px;
}
.title-underline .line {
  display: inline-block;
  height: 2px;
  width: 30px;
  background-color: #0796a6;
  border-radius: 2px;
}
.title-underline .dot {
  width: 8px;
  height: 8px;
  background-color: #0796a6;
  border-radius: 50%;
}

#footer-1 .footer-logo {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
#footer-1 .footer-logo img {
  height: 63px;
  margin-left: -14px;
}

/*FOOTER TEXT*/
#footer-1 .footer-text {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
#footer-1 .footer-text p {
  font-size: 14px;
  color: var(--bs-black);
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 0.438rem 0;
  margin-top: -14px;
}
#footer-1 .footer-text p span {
  color: var(--bs-primary);
  font-weight: 500;
}
#footer-1 .footer-text p a {
  color: var(--light-color);
  font-weight: 400;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
#footer-1 .footer-text p a:hover {
  color: var(--bs-primary);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
/*FOOTER TEXT*/

/*SOCIAL*/
#footer-1 .social-links {
  float: left;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
#footer-1 .social-links ul {
  list-style-type: none;
}
#footer-1 .social-links ul li {
  float: left;
  margin-right: 1rem;
  margin-top: 1rem;
  margin-left: 0;
  display: inline-block;
}
#footer-1 .social-links ul li:last-child {
  margin-right: 0;
}
#footer-1 .social-links ul li a {
  background: #0796a6;
  width: 40px;
  text-align: center;
  line-height: 40px;
  height: 40px;
  color: var(--bs-white);
  display: inline-block;
  font-size: 13px;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 50%;
}
#footer-1 .social-links ul li a:hover {
  color: var(--bs-white);
  background: #0796a6;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
}
/*SOCIAL*/

/*FOOTER NAV*/
#footer-1 .footer-nav {
}
#footer-1 .footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer-1 .footer-nav ul li {
  float: left;
  width: 100%;
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  padding: 0;
  text-transform: capitalize;
}
#footer-1 .footer-nav ul li a {
  float: left;
  font-size: 14px;
  line-height: 20px;
  color: var(--bs-black);
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  letter-spacing: 0.5px;
}
#footer-1 .footer-nav ul li a:hover {
  color: #0796a6;
  text-decoration: none;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
#footer-1 .footer-nav ul li a i {
  font-size: 11px;
  margin-right: 0;
}
/*FOOTER NAV*/
/*FOOTER*/

/*FOOTER BOTTOM*/
.footer-bottom {
  background: #0796a6;
  padding: 0.5rem 0;
}
.footer-bottom p {
  color: var(--bs-white);
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.footer-bottom p span {
  color: var(--bs-white);
  font-weight: 500;
  font-style: normal;
}
.footer-bottom p a {
  color: var(--bs-white);
  font-weight: 500;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.footer-bottom p a:hover {
  color: var(--bs-secondary);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
/*FOOTER BOTTOM*/

/*BACK TO TOP*/
#back-to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: none; /*transform: rotate(-90deg);*/
  border: none;
  background: #000;
  color: var(--bs-white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  align-items: center;
  cursor: pointer;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  font-size: 15px;
  letter-spacing: normal;
  z-index: 9;
  border-radius: 50%;
}
#back-to-top:hover {
  color: var(--bs-white);
  background: #0796a6;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
#back-to-top i {
  /*transform: rotate(90deg); margin-left:.5rem;*/
}
/*BACK TO TOP*/

/*INNER-BANNER*/
.inner-page-hero-area {
  padding: 90px 0;
  margin-bottom: 1rem;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.inner-page-hero-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.inner-page-title {
  position: relative;
  font-size: 50px;
  line-height: 55px;
  font-family: var(--primary-font-family);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--bs-white);
  margin-top: 0;
  margin-bottom: 0px;
}
.inner-page-hero-area .breadcrumb-menu {
  padding: 0;
  margin-bottom: 0;
  margin-top: 1rem;
  list-style: none;
  background: none;
  border-radius: 0;
}
.inner-page-hero-area .breadcrumb-menu li {
  background: transparent none repeat scroll 0 0;
  display: inline-block;
  margin: 0;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}
.inner-page-hero-area .breadcrumb-menu li i {
  color: #0796a6;
  margin-right: 3px;
}
.inner-page-hero-area .breadcrumb-menu::after {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.35;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.breadcrumb-menu > li + li::before {
  color: var(--bs-white);
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 8px;
  font-weight: 400;
  padding: 0 7px 0 4px;
  position: relative;
  top: 0px;
}
.inner-page-hero-area .breadcrumb-menu a,
.inner-page-hero-area .breadcrumb-menu li {
  font-weight: 400;
  color: var(--bs-white);
  text-transform: capitalize;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  padding: 0;
  letter-spacing: 0.5px;
}
.inner-page-hero-area .breadcrumb-menu a:hover {
  color: #0796a6;
}
.inner-page-hero-area .breadcrumb-menu li.active {
  color: var(--bs-white);
}
/*INNER-BANNER*/

/*LEFT MENU*/
.left-menu-title {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0.75rem 1rem;
  background: #0796a6;
  font-size: 20px;
  text-transform: capitalize;
  line-height: 30px;
  font-weight: 700;
  color: var(--bs-white);
  letter-spacing: 0.5px;
}

.sidebar {
  position: sticky;
  width: 100%;
  top: 135px;
  background: var(--bs-gray-100);
  border: 1px solid var(--bs-gray-300);
  border-top: none;
  border-radius: 10px;
  overflow: hidden;
  padding: 0px;
  margin: 1rem 0;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  color: var(--bs-black);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.menu-item:hover {
  background: var(--bs-white);
  color: #0796a6;
}
/* .menu-item.active {
  background: #000;
  color: var(--bs-white);
} */

/* default active */
.menu-item.active {
  color: #fff;
}

/* HDPE – dark grey (logo text line) */
.menu-item.active[data-category="hdpe"] {
  background: #1d1f20;
}

/* LDPE – main teal (SINGHAL color) */
.menu-item.active[data-category="ldpe"] {
  background: #7e2c8f;
}

/* LLDPE – light teal */
.menu-item.active[data-category="lldpe"] {
  background: #0796a6;
}

/* MSDS – orange (logo triangle) */
.menu-item.active[data-category="MSDSAndShelfLife"] {
  background: #e23431;
}

/* Summary – dark teal */
.menu-item.active[data-category="SummaryGradeSheet"] {
  background: #14a161;
}

/* PP – teal + orange mix feel */
.menu-item.active[data-category="pp"] {
  background: #e56f1a;
}

.menu-item .left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-item .count {
  background: none;
  color: var(--bs-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
}
.menu-item.active .count {
  display: none;
  background: #0796a6;
  color: var(--bs-white);
}
.menu-item i {
  font-size: 13px;
  margin-right: 0.25rem;
}
/*LEFT MENU*/

.products-feature {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bs-gray-100);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  border: 1px solid var(--bs-gray-300);
  transition: all 0.4s ease;
  border-radius: 7px;
  border: 1px solid lightgray;
}
.products-feature:hover {
  transform: scale(1.03);
  -webkit-box-shadow: 0 5px 25px rgba(21, 173, 180, 0.2);
  -moz-box-shadow: 0 5px 25px rgba(21, 173, 180, 0.2);
  box-shadow: 0 5px 25px rgba(21, 173, 180, 0.2);
  background: #0796a6;
  border: 1px solid var(--bs-primary);
}

.products-feature h5 {
  font-size: 14px;
  line-height: 25px;
  margin: 0 0 0 0;
  padding: 0;
  color: #000;
  position: relative;
  letter-spacing: normal;
}
.products-feature:hover h5 {
  color: var(--bs-white);
  text-decoration: none;
}

.products-feature h2 {
  font-size: 28px;
  line-height: 40px;
  margin: 0 0 0.5rem 0;
  padding: 0;
  color: #0796a6;
  position: relative;
  letter-spacing: normal;
}
.products-feature:hover h2 {
  color: var(--bs-white);
  text-decoration: none;
}

.products-feature p {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 18px;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products-feature:hover p {
  color: var(--bs-white);
  text-decoration: none;
}

.products-feature .feature-btn {
  position: relative;
  margin-left: -3px;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.75rem 1.5rem;
  line-height: 29px;
  color: var(--bs-white);
  background: #0796a6;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 25px;
  letter-spacing: normal;
}
.products-feature:hover .feature-btn {
  background: var(--bs-white);
  color: #0796a6;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.products-feature .feature-btn i {
  margin-left: 5px;
  font-size: 11px;
}

/*PROJECTS*/
.projects-box {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0;
  background: var(--bs-gray-100);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  border: 1px solid var(--bs-gray-300);
  transition: all 0.4s ease;
  border-radius: 7px;
  overflow: hidden;
}
.projects-box:hover {
  transform: scale(1.03);
  -webkit-box-shadow: 0 5px 25px rgba(21, 173, 180, 0.2);
  -moz-box-shadow: 0 5px 25px rgba(21, 173, 180, 0.2);
  box-shadow: 0 5px 25px rgba(21, 173, 180, 0.2);
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.projects-box h5 {
  font-size: 15px;
  line-height: 25px;
  margin: 0 0 0 0;
  padding: 1rem 1rem 0 1rem;
  color: var(--bs-secondary);
  position: relative;
  letter-spacing: normal;
}
.projects-box:hover h5 {
  color: var(--bs-white);
  text-decoration: none;
}

.projects-box h2 {
  font-size: 18px;
  line-height: 25px;
  margin: 0;
  padding: 0 1rem;
  color: var(--bs-primary);
  letter-spacing: 0.5px;
  font-weight: 700;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.projects-box:hover h2 {
  color: var(--bs-white);
  text-decoration: none;
}

.projects-box p {
  margin: 0;
  padding: 0.5rem 1rem 0 1rem;
  font-size: 13px;
  line-height: 18px;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.projects-box:hover p {
  color: var(--bs-white);
  text-decoration: none;
}

.projects-box .projects-btn {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.75rem 1.5rem;
  line-height: 20px;
  color: var(--bs-white);
  background: var(--bs-primary);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 25px;
  letter-spacing: normal;
  margin: 1rem;
}
.projects-box:hover .projects-btn {
  background: var(--bs-white);
  color: var(--bs-primary);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.projects-box .projects-btn i {
  margin-left: 5px;
  font-size: 11px;
}
/*PROJECTS*/

/*WHY BOX*/
.why-service {
  background: #f89821;
  padding: 1rem;
  border-radius: 10px;
}
.why-service .icon i {
  color: #f89821;
  background: #fff;
  font-size: 20px;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 50%;
}
.why-service h5 {
  font-size: 18px;
  margin: 1rem 0 0.5rem 0;
  padding: 0;
  line-height: 25px;
  color: #fff;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.why-service p {
  margin: 0;
  padding: 0;
}
.why-service-mt {
  margin-top: 3rem;
}

.why-service-bg {
  background: #0796a6;
  padding: 1rem;
  border-radius: 10px;
}
.why-service-bg .icon i {
  color: #0796a6;
  background: var(--bs-white);
  font-size: 20px;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 50%;
}
.why-service-bg h5 {
  font-size: 18px;
  margin: 1rem 0 0.5rem 0;
  padding: 0;
  line-height: 25px;
  color: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.why-service-bg p {
  margin: 0;
  padding: 0;
  color: var(--bs-white);
}
/*WHY BOX*/

/*Contact-BOX*/
.contact-us {
  background: #0796a6;
  padding: 1rem;
  border-radius: 10px;
}
.contact-us .icon i {
  color: #0796a6;
  background: var(--bs-white);
  font-size: 20px;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  border: none;
  border-radius: 50%;
}
.contact-us h5 {
  font-size: 18px;
  margin: 1rem 0 0.5rem 0;
  padding: 0;
  line-height: 25px;
  color: var(--bs-white);
  transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}
.contact-us p {
  margin: 0;
  padding: 0;
  color: var(--bs-white);
}
.contact-us p a,
.contact-us p a:hover {
  color: var(--bs-white);
}
/*Contact-BOX*/

.inner-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.inner-pages-logo {
  position: relative;
  margin: 0;
  padding: 0;
  border: 1px solid var(--bs-gray-300);
  border-radius: 10px;
  overflow: hidden;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@media only screen and (min-width: 1299px) and (max-width: 2399px) {
  .logo {
    float: left;
    margin: 15px -83px;
  }
}

@media only screen and (min-width: 980px) and (max-width: 1299px) {
  .logo {
    float: left;
    margin: 15px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
  .logo {
    float: left;
    margin: 15px 10px;
  }
  .mobile-top {
    margin-top: 19px;
  }
  .h1-title-center h1 {
    font-size: 35px;
    line-height: 45px;
  }
  .h1-title-underline .line {
    width: 45px;
  }

  /*HEADER*/
  /*LOGO*/
  .logo img {
    height: 50px;
  }
  /*LOGO*/

  /*HEADER*/

  /*HOME SERVICE BOX*/
  .home-service .icon i {
    font-size: 30px;
    height: 90px;
    width: 90px;
    line-height: 90px;
  }
  .home-service h5 {
    font-size: 22px;
    line-height: 30px;
  }
  /*HOME SERVICE BOX*/

  /*OUR PRODUCTS*/
  .project-item-style .project-item-details .project-item-details-inner .title {
    font-size: 16px;
    line-height: 25px;
  }
  .project-item-style
    .project-item-details
    .project-item-details-inner
    .project-item-link-icon
    a {
    font-size: 14px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .title {
    font-size: 16px;
    line-height: 25px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .desc {
    font-size: 14px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .project-item-link-icon
    a {
    font-size: 14px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details
    .project-item-details-inner
    .project-item-link-icon
    i {
    font-size: 11px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .project-item-link-icon
    i {
    font-size: 11px;
  }
  /*OUR PRODUCTS*/

  /*Upcoming Project*/
  #upcomimg-project-section .title-center h1 {
    font-size: 35px;
    line-height: 45px;
  }
  #upcomimg-project-section .title-underline .line {
    width: 45px;
  }
  /*Upcoming Project*/

  /*Form Section*/
  .form-bg {
    border-radius: 15px 15px 0 0;
  }
  /*Form Section*/

  /*COUNTER*/
  .vertical-label {
    right: -1.5rem;
    padding: 1.5rem 1rem;
    font-size: 15px;
    line-height: 20px;
  }

  .Our-Success-Stories {
    border-radius: 0 0 15px 15px;
  }
  .single_counter .icon i {
    font-size: 30px;
    height: 80px;
    line-height: 80px;
    width: 80px;
  }
  .single_counter .info h5 {
    font-size: 30px;
    line-height: 40px;
  }
  .single_counter .info p {
    font-size: 16px;
    line-height: 25px;
  }
  /*COUNTER*/

  /*FOOTER-CONTACT*/
  .footer-address ul li i {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  .footer-address .info h5 {
    font-size: 18px;
    line-height: 30px;
  }
  .footer-address li .info p {
    font-size: 13px;
    line-height: 18px;
  }
  /*FOOTER-CONTACT*/

  /*FOOTER*/
  .title-center h3 {
    font-size: 20px;
  }
  .title-underline {
    margin-top: 6px;
    gap: 5px;
  }
  .title-underline .line {
    height: 2px;
    width: 20px;
  }

  #footer-1 .footer-logo img {
    height: 70px;
  }

  /*FOOTER TEXT*/
  #footer-1 .footer-text p {
    font-size: 14px;
    line-height: 20px;
  }
  /*FOOTER TEXT*/

  /*SOCIAL*/

  #footer-1 .social-links ul li a {
    width: 40px;
    line-height: 40px;
    height: 40px;
    font-size: 13px;
  }
  /*SOCIAL*/

  /*FOOTER NAV*/
  #footer-1 .footer-nav ul li {
    width: auto;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    padding: 0 1rem 0 0;
  }
  #footer-1 .footer-nav ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  #footer-1 .footer-nav ul li a i {
    font-size: 11px;
  }
  /*FOOTER NAV*/
  /*FOOTER*/

  /*INNER-BANNER*/
  .inner-page-hero-area {
    padding: 90px 0;
  }
  .inner-page-title {
    font-size: 45px;
    line-height: 50px;
  }
  .breadcrumb-menu > li + li::before {
    font-size: 8px;
    padding: 0 7px 0 4px;
  }
  .inner-page-hero-area .breadcrumb-menu a,
  .inner-page-hero-area .breadcrumb-menu li {
    font-size: 13px;
    line-height: 20px;
  }
  /*INNER-BANNER*/

  /*LEFT MENU*/
  .left-menu-title {
    padding: 0.75rem 1rem;
    font-size: 18px;
    line-height: 30px;
  }
  .sidebar {
    position: sticky;
    top: 110px;
  }
  .menu-item {
    padding: 0.7rem 1rem;
    font-size: 13px;
    line-height: 20px;
  }
  .menu-item .count {
    font-size: 12px;
  }
  .menu-item i {
    font-size: 12px;
  }
  /*LEFT MENU*/

  .products-feature h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .products-feature h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .products-feature p {
    font-size: 13px;
    line-height: 18px;
  }
  .products-feature .feature-btn {
    font-size: 13px;
    line-height: 20px;
  }
  .products-feature .feature-btn i {
    font-size: 11px;
  }

  /*PROJECTS*/
  .projects-box h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .projects-box h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .projects-box p {
    font-size: 13px;
    line-height: 18px;
  }
  .projects-box .projects-btn {
    font-size: 13px;
    line-height: 20px;
  }
  .projects-box .projects-btn i {
    font-size: 11px;
  }
  /*PROJECTS*/
}

@media only screen and (min-width: 600px) and (max-width: 765px) {
  .logo {
    float: left;
    margin: 15px 10px;
  }
  .h1-title-center h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .h1-title-underline .line {
    width: 45px;
  }

  h6 {
    font-size: 15px;
    line-height: 25px;
  }

  p {
    font-size: 13px;
    line-height: 20px;
  }

  /*FIX CONTACT BTN*/
  .connect-now {
    top: 20rem;
  }
  .connect-now ul li a {
    padding: 1.25rem 0.25rem;
    line-height: 40px;
    font-size: 14px;
  }
  /*FIX CONTACT BTN*/

  /*HEADER*/
  /*LOGO*/
  .logo img {
    height: 50px;
  }
  /*LOGO*/

  /*MOBILE TOP*/
  .mobile-top {
    float: right;
    padding-left: 0;
    list-style-type: none;
    margin-top: 20px;
    margin-bottom: 0;
  }
  .mobile-top li {
    float: left;
    margin-left: 10px;
    margin-right: 0;
    display: inline-block;
  }
  .mobile-top li a i {
    float: left;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    padding: 0;
    border: none;
    color: var(--bs-white);
    background: #0796a6;
    display: inline-block;
    font-size: 14px;
    transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    border-radius: 50%;
  }
  .mobile-top li a i:hover {
    color: var(--bs-white);
    background: #000000;
    transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
  }
  /*MOBILE TOP*/
  /*HEADER*/

  .more-btn,
  .more-btn-w {
    font-size: 14px;
    padding: 1rem 2rem;
    line-height: 20px;
  }
  .more-btn i,
  .more-btn-w i {
    font-size: 12px;
  }

  .section-wrapper .section-title {
    font-size: 25px;
    line-height: 35px;
  }
  .section-wrapper .line {
    width: 50px;
  }

  /*HOME SERVICE BOX*/
  .home-service .icon i {
    font-size: 30px;
    height: 90px;
    width: 90px;
    line-height: 90px;
  }
  .home-service h5 {
    font-size: 22px;
    line-height: 30px;
  }
  /*HOME SERVICE BOX*/

  /*OUR PROJECTS*/
  .text-content h5 {
    font-size: 15px;
    line-height: 20px;
  }
  /*OUR PROJECTS*/

  /*OUR PRODUCTS*/
  .project-item-style .project-item-details .project-item-details-inner .title {
    font-size: 15px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details
    .project-item-details-inner
    .project-item-link-icon
    a {
    font-size: 13px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .title {
    font-size: 15px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .desc {
    font-size: 13px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .project-item-link-icon
    a {
    font-size: 13px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details
    .project-item-details-inner
    .project-item-link-icon
    i {
    font-size: 10px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .project-item-link-icon
    i {
    font-size: 10px;
  }
  /*OUR PRODUCTS*/

  /*Upcoming Project*/
  #upcomimg-project-section .title-center h1 {
    font-size: 30px;
    line-height: 40px;
  }
  #upcomimg-project-section .title-underline .line {
    width: 45px;
  }
  /*Upcoming Project*/

  /*Form Section*/
  .form-bg {
    border-radius: 15px 15px 0 0;
  }
  .Our-Success-Stories {
    border-radius: 0 0 10px 10px;
  }
  .form-section-wrapper .form-section-title {
    font-size: 22px;
    line-height: 30px;
  }
  .form-section-wrapper .line {
    width: 50px;
  }
  .contact-page-form {
    font-size: 13px;
    line-height: 20px;
  }
  .contact-page-form-bor {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
  .contact-page-form-textar {
    height: 110px;
    line-height: 30px;
    font-size: 14px;
  }
  .contact-page-form select {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
  .contact-page-form label {
    font-size: 14px;
  }
  .contact-page-form-btn {
    font-size: 14px;
    padding: 1rem 2rem;
    line-height: 20px;
  }
  /*Form Section*/

  /*COUNTER*/
  .vertical-label {
    right: -1.5rem;
    padding: 1.5rem 1rem;
    font-size: 15px;
    line-height: 20px;
  }

  .Our-Success-Stories {
    border-radius: 0 0 15px 15px;
  }
  .single_counter .icon i {
    font-size: 22px;
    height: 65px;
    line-height: 65px;
    width: 65px;
  }
  .single_counter .info h5 {
    font-size: 24px;
    line-height: 33px;
  }
  .single_counter .info p {
    font-size: 14px;
    line-height: 22px;
  }
  /*COUNTER*/

  /*Media Coverage*/
  .card-blog .blog-card__meta li {
    font-size: 13px;
  }
  .card-blog .blog-card__meta__icon {
    font-size: 12px;
  }
  .card-blog .blog-card__title a {
    font-size: 18px;
    line-height: 25px;
  }
  .card-blog .blog-btn a {
    font-size: 12px;
    padding: 0.75rem 1.5rem;
    line-height: 20px;
  }
  .card-blog .blog-btn i {
    font-size: 10px;
  }
  /*Media Coverage*/

  /*Key Approvals*/
  #key-approvals-section .section-wrapper .section-title {
    font-size: 25px;
    line-height: 35px;
  }
  #key-approvals-section .section-wrapper .line {
    width: 50px;
  }
  #key-approvals-section h6 {
    font-size: 15px;
    line-height: 22px;
  }
  /*Key Approvals*/

  /*FOOTER-CONTACT*/
  .footer-address ul li i {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  .footer-address .info h5 {
    font-size: 18px;
    line-height: 30px;
  }
  .footer-address li .info p {
    font-size: 13px;
    line-height: 18px;
  }
  /*FOOTER-CONTACT*/

  /*FOOTER*/
  .title-center h3 {
    font-size: 18px;
  }
  .title-underline {
    margin-top: 6px;
    gap: 5px;
  }
  .title-underline .line {
    height: 2px;
    width: 20px;
  }

  #footer-1 .footer-logo img {
    height: 65px;
  }

  /*FOOTER TEXT*/
  #footer-1 .footer-text p {
    font-size: 13px;
    line-height: 18px;
  }
  /*FOOTER TEXT*/

  /*SOCIAL*/

  #footer-1 .social-links ul li a {
    width: 40px;
    line-height: 40px;
    height: 40px;
    font-size: 13px;
  }
  /*SOCIAL*/

  /*FOOTER NAV*/
  #footer-1 .footer-nav ul li {
    width: auto;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    padding: 0 1rem 0 0;
  }
  #footer-1 .footer-nav ul li a {
    font-size: 13px;
    line-height: 18px;
  }
  #footer-1 .footer-nav ul li a i {
    font-size: 10px;
  }
  /*FOOTER NAV*/
  /*FOOTER*/

  /*FOOTER BOTTOM*/
  .footer-bottom p {
    font-size: 13px;
    line-height: 20px;
  }
  /*FOOTER BOTTOM*/

  /*BACK TO TOP*/
  #back-to-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
  /*BACK TO TOP*/

  /*INNER-BANNER*/
  .inner-page-hero-area {
    padding: 90px 0;
  }
  .inner-page-title {
    font-size: 40px;
    line-height: 45px;
  }
  .breadcrumb-menu > li + li::before {
    font-size: 7px;
  }
  .inner-page-hero-area .breadcrumb-menu a,
  .inner-page-hero-area .breadcrumb-menu li {
    font-size: 12px;
    line-height: 18px;
  }
  /*INNER-BANNER*/

  /*LEFT MENU*/
  .left-menu-title {
    padding: 0.75rem 1rem;
    font-size: 18px;
    line-height: 30px;
  }
  .sidebar {
    position: sticky;
    top: 110px;
  }
  .menu-item {
    padding: 0.7rem 1rem;
    font-size: 13px;
    line-height: 20px;
  }
  .menu-item .count {
    font-size: 12px;
  }
  .menu-item i {
    font-size: 12px;
  }
  /*LEFT MENU*/

  .products-feature h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .products-feature h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .products-feature p {
    font-size: 13px;
    line-height: 18px;
  }
  .products-feature .feature-btn {
    font-size: 13px;
    line-height: 20px;
  }

  /*PROJECTS*/
  .projects-box h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .projects-box h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .projects-box p {
    font-size: 13px;
    line-height: 18px;
  }
  .projects-box .projects-btn {
    font-size: 13px;
    line-height: 20px;
  }
  .projects-box .projects-btn i {
    font-size: 11px;
  }
  /*PROJECTS*/

  /*WHY BOX*/
  .why-service .icon i {
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .why-service h5 {
    font-size: 16px;
    line-height: 20px;
  }
  .why-service-mt {
    margin-top: 0;
  }

  .why-service-bg .icon i {
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .why-service-bg h5 {
    font-size: 16px;
    line-height: 20px;
  }
  /*WHY BOX*/

  /*Contact-BOX*/
  .contact-us .icon i {
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .contact-us h5 {
    font-size: 16px;
    line-height: 20px;
  }
  /*Contact-BOX*/
}

@media only screen and (min-width: 481px) and (max-width: 599px) {
  .logo {
    float: left;
    margin: 15px 10px;
  }
  .h1-title-center h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .h1-title-underline .line {
    width: 45px;
  }

  h6 {
    font-size: 15px;
    line-height: 25px;
  }

  p {
    font-size: 13px;
    line-height: 20px;
  }

  /*HEADER*/
  /*LOGO*/
  .logo img {
    height: 40px;
  }
  /*LOGO*/

  /*FIX CONTACT BTN*/
  .connect-now {
    top: 15rem;
  }
  .connect-now ul li a {
    padding: 1rem 0.25rem;
    line-height: 40px;
    font-size: 13px;
  }
  /*FIX CONTACT BTN*/

  /*HEADER*/

  .more-btn,
  .more-btn-w {
    font-size: 13px;
    padding: 1rem 1.5rem;
    line-height: 18px;
  }
  .more-btn i,
  .more-btn-w i {
    font-size: 11px;
  }

  .section-wrapper .section-title {
    font-size: 25px;
    line-height: 35px;
  }
  .section-wrapper .line {
    width: 50px;
  }

  /*HOME SERVICE BOX*/
  .home-service .icon i {
    font-size: 24px;
    height: 80px;
    width: 80px;
    line-height: 80px;
  }
  .home-service h5 {
    font-size: 20px;
    line-height: 30px;
  }
  /*HOME SERVICE BOX*/

  /*OUR PROJECTS*/
  .text-content h5 {
    font-size: 15px;
    line-height: 20px;
  }
  /*OUR PROJECTS*/

  /*OUR PRODUCTS*/
  .project-item-style .project-item-details .project-item-details-inner .title {
    font-size: 15px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details
    .project-item-details-inner
    .project-item-link-icon
    a {
    font-size: 13px;
    line-height: 20px;
    padding: 0.5rem 1.25rem;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .title {
    font-size: 15px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .desc {
    font-size: 13px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .project-item-link-icon
    a {
    font-size: 13px;
    line-height: 20px;
    padding: 0.5rem 1.25rem;
  }
  .project-item-style
    .project-item-details
    .project-item-details-inner
    .project-item-link-icon
    i {
    font-size: 10px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .project-item-link-icon
    i {
    font-size: 10px;
  }
  /*OUR PRODUCTS*/

  /*Upcoming Project*/
  #upcomimg-project-section .title-center h1 {
    font-size: 30px;
    line-height: 40px;
  }
  #upcomimg-project-section .title-underline .line {
    width: 45px;
  }
  /*Upcoming Project*/

  /*Form Section*/
  .form-bg {
    border-radius: 15px 15px 0 0;
  }
  .Our-Success-Stories {
    border-radius: 0 0 10px 10px;
  }
  .form-section-wrapper .form-section-title {
    font-size: 20px;
    line-height: 30px;
  }
  .form-section-wrapper .line {
    width: 50px;
  }
  .contact-page-form {
    font-size: 13px;
    line-height: 20px;
  }
  .contact-page-form-bor {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
  .contact-page-form-textar {
    height: 90px;
    line-height: 30px;
    font-size: 14px;
  }
  .contact-page-form select {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
  .contact-page-form label {
    font-size: 13px;
  }
  .contact-page-form-btn {
    font-size: 13px;
    padding: 1rem 1.5rem;
    line-height: 18px;
  }
  /*Form Section*/

  /*COUNTER*/
  vertical-label {
    right: -1.5rem;
    padding: 1.5rem 1rem;
    font-size: 15px;
    line-height: 20px;
  }
  .Our-Success-Stories {
    border-radius: 0 0 15px 15px;
  }
  .single_counter .icon i {
    font-size: 22px;
    height: 65px;
    line-height: 65px;
    width: 65px;
  }
  .single_counter .info h5 {
    font-size: 24px;
    line-height: 33px;
  }
  .single_counter .info p {
    font-size: 14px;
    line-height: 22px;
  }
  /*COUNTER*/

  /*Media Coverage*/
  .card-blog .blog-card__meta li {
    font-size: 13px;
  }
  .card-blog .blog-card__meta__icon {
    font-size: 12px;
  }
  .card-blog .blog-card__title a {
    font-size: 18px;
    line-height: 25px;
  }
  .card-blog .blog-btn a {
    font-size: 12px;
    padding: 0.75rem 1.5rem;
    line-height: 20px;
  }
  .card-blog .blog-btn i {
    font-size: 10px;
  }
  /*Media Coverage*/

  /*Key Approvals*/
  #key-approvals-section .section-wrapper .section-title {
    font-size: 25px;
    line-height: 35px;
  }
  #key-approvals-section .section-wrapper .line {
    width: 50px;
  }
  #key-approvals-section h6 {
    font-size: 14px;
    line-height: 20px;
  }
  /*Key Approvals*/

  /*FOOTER-CONTACT*/
  .footer-address ul li i {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  .footer-address .info h5 {
    font-size: 18px;
    line-height: 30px;
  }
  .footer-address li .info p {
    font-size: 13px;
    line-height: 18px;
  }
  /*FOOTER-CONTACT*/

  /*FOOTER*/
  .title-center h3 {
    font-size: 18px;
  }
  .title-underline {
    margin-top: 6px;
    gap: 5px;
  }
  .title-underline .line {
    height: 2px;
    width: 20px;
  }

  #footer-1 .footer-logo img {
    height: 60px;
  }

  /*FOOTER TEXT*/
  #footer-1 .footer-text p {
    font-size: 13px;
    line-height: 18px;
  }
  /*FOOTER TEXT*/

  /*SOCIAL*/
  #footer-1 .social-links ul li a {
    width: 35px;
    line-height: 35px;
    height: 35px;
    font-size: 12px;
  }
  /*SOCIAL*/

  /*FOOTER NAV*/
  #footer-1 .footer-nav ul li {
    width: auto;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    padding: 0 1rem 0 0;
  }
  #footer-1 .footer-nav ul li a {
    font-size: 13px;
    line-height: 18px;
  }
  #footer-1 .footer-nav ul li a i {
    font-size: 10px;
  }
  /*FOOTER NAV*/
  /*FOOTER*/

  /*FOOTER BOTTOM*/
  .footer-bottom p {
    font-size: 12px;
    line-height: 18px;
  }
  /*FOOTER BOTTOM*/

  /*BACK TO TOP*/
  #back-to-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
  /*BACK TO TOP*/

  /*INNER-BANNER*/
  .inner-page-hero-area {
    padding: 75px 0;
  }
  .inner-page-title {
    font-size: 30px;
    line-height: 40px;
  }
  .breadcrumb-menu > li + li::before {
    font-size: 7px;
  }
  .inner-page-hero-area .breadcrumb-menu a,
  .inner-page-hero-area .breadcrumb-menu li {
    font-size: 12px;
    line-height: 18px;
  }
  /*INNER-BANNER*/

  /*LEFT MENU*/
  .left-menu-title {
    padding: 0.75rem 1rem;
    font-size: 18px;
    line-height: 30px;
  }
  .sidebar {
    position: sticky;
    top: 110px;
  }
  .menu-item {
    padding: 0.7rem 1rem;
    font-size: 13px;
    line-height: 20px;
  }
  .menu-item .count {
    font-size: 12px;
  }
  .menu-item i {
    font-size: 12px;
  }
  /*LEFT MENU*/

  .products-feature h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .products-feature h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .products-feature p {
    font-size: 13px;
    line-height: 18px;
  }
  .products-feature .feature-btn {
    font-size: 13px;
    line-height: 20px;
  }

  /*PROJECTS*/
  .projects-box h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .projects-box h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .projects-box p {
    font-size: 13px;
    line-height: 18px;
  }
  .projects-box .projects-btn {
    font-size: 13px;
    line-height: 20px;
  }
  .projects-box .projects-btn i {
    font-size: 11px;
  }
  /*PROJECTS*/

  /*WHY BOX*/
  .why-service .icon i {
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .why-service h5 {
    font-size: 16px;
    line-height: 20px;
  }
  .why-service-mt {
    margin-top: 0;
  }

  .why-service-bg .icon i {
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .why-service-bg h5 {
    font-size: 16px;
    line-height: 20px;
  }
  /*WHY BOX*/

  /*Contact-BOX*/
  .contact-us .icon i {
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .contact-us h5 {
    font-size: 16px;
    line-height: 20px;
  }
  /*Contact-BOX*/

  .mobile-top {
    margin-top: 15px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .logo {
    float: left;
    margin: 15px 10px;
  }
  .h1-title-center h1 {
    font-size: 25px;
    line-height: 35px;
  }
  .h1-title-underline .line {
    width: 45px;
  }

  h6 {
    font-size: 15px;
    line-height: 25px;
  }

  p {
    font-size: 13px;
    line-height: 20px;
  }

  /*FIX CONTACT BTN*/
  .connect-now {
    top: 10rem;
  }
  .connect-now ul li a {
    padding: 1rem 0.25rem;
    line-height: 40px;
    font-size: 13px;
  }
  /*FIX CONTACT BTN*/

  /*HEADER*/
  /*LOGO*/
  .logo img {
    height: 35px;
  }
  /*LOGO*/

  /*MOBILE TOP*/
  .mobile-top {
    margin-top: 15px;
  }
  .mobile-top li a i {
    line-height: 35px;
    height: 35px;
    width: 35px;
    font-size: 13px;
  }
  /*MOBILE TOP*/
  /*HEADER*/

  .more-btn,
  .more-btn-w {
    font-size: 13px;
    padding: 1rem 1.5rem;
    line-height: 18px;
  }
  .more-btn i,
  .more-btn-w i {
    font-size: 11px;
  }

  .section-wrapper .section-title {
    font-size: 25px;
    line-height: 35px;
  }
  .section-wrapper .line {
    width: 50px;
  }

  /*HOME SERVICE BOX*/
  .home-service .icon i {
    font-size: 24px;
    height: 80px;
    width: 80px;
    line-height: 80px;
  }
  .home-service h5 {
    font-size: 20px;
    line-height: 30px;
  }
  /*HOME SERVICE BOX*/

  /*OUR PROJECTS*/
  .text-content h5 {
    font-size: 15px;
    line-height: 20px;
  }
  /*OUR PROJECTS*/
  /*OUR PRODUCTS*/
  .project-item-style .project-item-details .project-item-details-inner .title {
    font-size: 15px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details
    .project-item-details-inner
    .project-item-link-icon
    a {
    font-size: 13px;
    line-height: 20px;
    padding: 0.5rem 1.25rem;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .title {
    font-size: 15px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .desc {
    font-size: 13px;
    line-height: 20px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .project-item-link-icon
    a {
    font-size: 13px;
    line-height: 20px;
    padding: 0.5rem 1.25rem;
  }
  .project-item-style
    .project-item-details
    .project-item-details-inner
    .project-item-link-icon
    i {
    font-size: 10px;
  }
  .project-item-style
    .project-item-details-hover
    .project-item-details-inner
    .project-item-link-icon
    i {
    font-size: 10px;
  }
  /*OUR PRODUCTS*/

  /*Upcoming Project*/
  #upcomimg-project-section .title-center h1 {
    font-size: 25px;
    line-height: 35px;
  }
  #upcomimg-project-section .title-underline .line {
    width: 45px;
  }
  /*Upcoming Project*/

  /*Form Section*/
  .form-bg {
    border-radius: 15px 15px 0 0;
  }
  .Our-Success-Stories {
    border-radius: 0 0 10px 10px;
  }
  .form-section-wrapper .form-section-title {
    font-size: 20px;
    line-height: 30px;
  }
  .form-section-wrapper .line {
    width: 50px;
  }
  .contact-page-form {
    font-size: 13px;
    line-height: 20px;
  }
  .contact-page-form-bor {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
  .contact-page-form-textar {
    height: 90px;
    line-height: 30px;
    font-size: 14px;
  }
  .contact-page-form select {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
  .contact-page-form label {
    font-size: 13px;
  }
  .contact-page-form-btn {
    font-size: 13px;
    padding: 1rem 1.5rem;
    line-height: 18px;
  }
  /*Form Section*/

  /*COUNTER*/
  .vertical-label {
    right: -1.5rem;
    padding: 1.5rem 1rem;
    font-size: 14px;
    line-height: 20px;
  }
  .Our-Success-Stories {
    border-radius: 0 0 15px 15px;
  }
  .single_counter .icon i {
    font-size: 22px;
    height: 65px;
    line-height: 65px;
    width: 65px;
  }
  .single_counter .info h5 {
    font-size: 30px;
    line-height: 35px;
  }
  .single_counter .info p {
    font-size: 14px;
    line-height: 20px;
  }
  /*COUNTER*/

  /*Media Coverage*/
  .card-blog .blog-card__meta li {
    font-size: 11px;
  }
  .card-blog .blog-card__meta__icon {
    font-size: 12px;
  }
  .card-blog .blog-card__title a {
    font-size: 16px;
    line-height: 25px;
  }
  .card-blog .blog-btn a {
    font-size: 11px;
    padding: 0.5rem 1.25rem;
    line-height: 20px;
  }
  .card-blog .blog-btn i {
    font-size: 9px;
  }
  /*Media Coverage*/

  /*Key Approvals*/
  #key-approvals-section .section-wrapper .section-title {
    font-size: 25px;
    line-height: 35px;
  }
  #key-approvals-section .section-wrapper .line {
    width: 50px;
  }
  #key-approvals-section h6 {
    font-size: 14px;
    line-height: 20px;
  }
  /*Key Approvals*/

  /*FOOTER-CONTACT*/
  .footer-address ul li i {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  .footer-address .info h5 {
    font-size: 18px;
    line-height: 30px;
  }
  .footer-address li .info p {
    font-size: 13px;
    line-height: 18px;
  }
  /*FOOTER-CONTACT*/

  /*FOOTER*/
  .title-center h3 {
    font-size: 18px;
  }
  .title-underline {
    margin-top: 6px;
    gap: 5px;
  }
  .title-underline .line {
    height: 2px;
    width: 20px;
  }

  #footer-1 .footer-logo img {
    height: 52px;
  }

  /*FOOTER TEXT*/
  #footer-1 .footer-text p {
    font-size: 13px;
    line-height: 18px;
  }
  /*FOOTER TEXT*/

  /*SOCIAL*/
  #footer-1 .social-links ul li a {
    width: 35px;
    line-height: 35px;
    height: 35px;
    font-size: 12px;
  }
  /*SOCIAL*/

  /*FOOTER NAV*/
  #footer-1 .footer-nav ul li {
    width: auto;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    padding: 0 1rem 0 0;
  }
  #footer-1 .footer-nav ul li a {
    font-size: 13px;
    line-height: 18px;
  }
  #footer-1 .footer-nav ul li a i {
    font-size: 10px;
  }
  /*FOOTER NAV*/
  /*FOOTER*/

  /*FOOTER BOTTOM*/
  .footer-bottom p {
    font-size: 12px;
    line-height: 18px;
  }
  /*FOOTER BOTTOM*/

  /*BACK TO TOP*/
  #back-to-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
  /*BACK TO TOP*/

  /*INNER-BANNER*/
  .inner-page-hero-area {
    padding: 75px 0;
  }
  .inner-page-title {
    font-size: 30px;
    line-height: 40px;
  }
  .breadcrumb-menu > li + li::before {
    font-size: 7px;
  }
  .inner-page-hero-area .breadcrumb-menu a,
  .inner-page-hero-area .breadcrumb-menu li {
    font-size: 12px;
    line-height: 18px;
  }
  /*INNER-BANNER*/

  /*LEFT MENU*/
  .left-menu-title {
    padding: 0.75rem 1rem;
    font-size: 18px;
    line-height: 30px;
  }
  .sidebar {
    position: sticky;
    top: 110px;
  }
  .menu-item {
    padding: 0.7rem 1rem;
    font-size: 13px;
    line-height: 20px;
  }
  .menu-item .count {
    font-size: 12px;
  }
  .menu-item i {
    font-size: 12px;
  }
  /*LEFT MENU*/

  .products-feature h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .products-feature h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .products-feature p {
    font-size: 13px;
    line-height: 18px;
  }
  .products-feature .feature-btn {
    font-size: 12px;
    line-height: 30px;
  }

  /*PROJECTS*/
  .projects-box h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .projects-box h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .projects-box p {
    font-size: 13px;
    line-height: 18px;
  }
  .projects-box .projects-btn {
    font-size: 13px;
    line-height: 20px;
  }
  .projects-box .projects-btn i {
    font-size: 11px;
  }
  /*PROJECTS*/

  /*WHY BOX*/
  .why-service .icon i {
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .why-service h5 {
    font-size: 16px;
    line-height: 20px;
  }
  .why-service-mt {
    margin-top: 0;
  }

  .why-service-bg .icon i {
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .why-service-bg h5 {
    font-size: 16px;
    line-height: 20px;
  }
  /*WHY BOX*/

  /*Contact-BOX*/
  .contact-us .icon i {
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .contact-us h5 {
    font-size: 16px;
    line-height: 20px;
  }
  /*Contact-BOX*/
}

@media (max-width: 990px) {
  .header-right {
    height: 0px;
  }
}
@media (max-width: 327px) {
  .logo {
    float: left;
    margin: 15px 5px;
  }
  .logo img {
    height: 27px;
  }
  .mobile-top {
    margin-top: 8px;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9;
  width: 60px;
  height: 60px;
  line-height: 45px;
  font-size: 23px;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  box-shadow:
    0 3px 6px rgb(0 0 0 / 16%),
    0 3px 6px rgb(0 0 0 / 23%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #0796a6;
  color: #ffffff;
}
.card_1,
.card_2,
.card_3 {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.contact_info .icon {
  height: 40px;
  width: 40px;
  min-width: 40px;
  background: #0796a6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.subcpmenu {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.sbmenu-item {
  background: #f6f6ff;
  color: #0796a6;
  padding: 5px 10px;
  border-radius: 50px;
  border: 1.2px solid #d3d3d3;
}
.sbmenu-item:hover {
  color: #0796a6;
  background: #f6f6ff;
}
.sbmenu-item.active {
  background: #000000;
  color: white;
  padding: 5px 10px;
}
.subctproduct {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
  width: 126%;
}

/* Mobile fix */
@media (max-width: 768px) {
  .subctproduct {
    width: 100%;
  }
}

.alert-success,
.alert-danger {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-success i,
.alert-danger i {
  cursor: pointer;
}
