@charset "UTF-8";

:root {
  --gray-first: #085c44;
  --primary-dark: #043c33;
  --primary: #ecf86e;
  --light: #fafafa;
  --primary-light: #ebeeee;
  --white: white;
  --gray: #707e7c;
  --dark-gray\<deleted\|variable-e2382e90\>: #afafaf;
  --light-gray\<deleted\|variable-720418ab\>: #f9f9fa;
  --black: black;
  --dark: #222;
}

* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: Geist, sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
  color: var(--gray-first);
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

a {
  color: var(--gray-first);
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}

a,
a:hover,
button,
button:hover {
  text-decoration: none;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}

strong {
  font-weight: bold;
}

button,
input,
select,
label,
li,
span {
  -webkit-appearance: none;
  outline: none;
}

iframe {
  border: none;
  display: block;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

p {
  font-size: 17px;
  color: var(--gray);
}

/* container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 850px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1680px) {
  .container {
    max-width: 1400px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    max-width: 100%;
    padding: 0 10em;
  }

  .container-fluid.header-container,
  .container-fluid.footer-container {
    padding: 0 10em !important;
  }
}

/* Button */
.secondary-button,
.primary-button {
  text-align: center;
  border-radius: 5px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  transition: all 0.35s;
}

.secondary-button {
  color: var(--primary-dark);
  background-color: #ffffff1a;
  border: 1px solid #085c4433;
  width: max-content;
}

.secondary-button:hover {
  background-color: var(--gray-first);
  color: var(--white);
}

.primary-button {
  border: 1px solid var(--gray-first);
  background-color: var(--gray-first);
  color: var(--white);
}

.primary-button:hover {
  border: 1px solid var(--gray-first);
  background-color: var(--primary);
  color: var(--gray-first);
}

.primary-button-2 {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--dark);
}

.primary-button-2:hover {
  border: 1px solid var(--gray-first);
  background-color: var(--gray-first);
  color: var(--white);
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #ffffff;
  transition: box-shadow 250ms ease, background 250ms ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.header-main {
  padding: 8px 22px;
  align-items: center;
  transition: padding 250ms ease;
  border-radius: 10px;
  margin-top: 10px;
  background: var(--primary-light);
  box-shadow: 0 4px 18px rgba(8, 27, 22, 0.06);
}

.header-shrink .header-main {
  padding: 4px 18px;
  box-shadow: 0 6px 20px rgba(8, 27, 22, 0.08);
  margin-top: 0;
  border-radius: 0;
}

#logo {
  height: 50px;
  transition: height 260ms cubic-bezier(0.2, 0.9, 0.3, 1), transform 260ms;
}

.header-shrink #logo {
  height: 40px;
  transform: translateY(-2px);
}

.header-nav {
  gap: 6px;
  align-items: center;
}

.header-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease, transform 180ms;
}

.header-nav .nav-link:hover {
  color: var(--primary-dark);
  background: rgba(11, 102, 77, 0.06);
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  margin-top: 0px;
  min-width: 210px;
  padding: 10px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(8, 27, 22, 0.12);
  border: 1px solid rgba(8, 27, 22, 0.04);
  transition: opacity 220ms ease, transform 220ms ease;
  transform-origin: top center;
  opacity: 0;
}

.header-nav .dropdown:hover .dropdown-menu-custom {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.header-nav .dropdown .dropdown-menu-custom {
  transform: translateY(6px) scale(0.995);
}

.dropdown-menu-custom .dropdown-item {
  color: #1f2f2a;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: normal;
    transition: background 160ms ease, color 160ms;
    border-bottom: 1px solid #dbe0de;
    font-size: 15px;
}

.dropdown-menu-custom .dropdown-item:hover {
  background: rgba(11, 102, 77, 0.06);
  color: #0b664d;
}

.dropdown-divider {
  height: 1px;
  background: rgba(8, 27, 22, 0.06);
  margin: 8px 0;
}

.dropdown-toggle::after {
  display: none;
}

.mobile-dropdown.open .dropdown-toggle-mobile i {
  transform: rotate(180deg);
}

.dropdown-arrow {
  margin-left: 2px;
  transition: transform 0.3s ease;
  font-size: 10px;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

@media (min-width: 1400px) {
  .header-main {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Mobile menu icon */
.mobile-menu-btn {
  background: none;
  border: none;
}

.mobile-offcanvas {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -5px 0 18px rgba(0, 0, 0, 0.15);
  padding: 20px;
  transition: right 0.35s ease;
  max-height: calc(100vh - 0px);
  overflow-y: scroll;
}

.mobile-offcanvas.open {
  right: 0;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.offcanvas-links li {
  margin-bottom: 10px;
}

.offcanvas-links a {
  color: #143930;
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding: 0;
  background: #f5f5f5;
  padding: 4px 10px;
}

.offcanvas-links a:hover {
  color: #0b664d;
}

/* .offcanvas-footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
} */

.offcanvas-footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 2em;
}

.mobile-dropdown {
  margin-bottom: 12px;
}

ul.mobile-submenu.list-unstyled {
  background: #f5f5f5;
  padding: 0;
  margin-left: 0.5em;
}


/* Desktop dropdown base */
.navbar .dropdown {
  position: relative;
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 10px 0;
  z-index: 1000;
}

/* Show dropdown */
.navbar .dropdown.open .dropdown-menu-custom {
  display: block;
}

/* Arrow rotation */
.dropdown-arrow {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.25s ease;
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* Toggle link */
.dropdown-toggle-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #143930;
  cursor: pointer;
  padding: 6px 0;
}

.dropdown-toggle-mobile i {
  transition: transform 0.3s ease;
}

.mobile-submenu {
  display: none;
  padding-left: 15px;
  margin-top: 8px;
}

.mobile-submenu li {
  margin-bottom: 10px;
}

.mobile-submenu a {
  font-weight: 500;
  color: #0b3a2e;
  font-size: 0.95rem;
}

/* HERO */
.hero-left-main,
.hero-right-main {
  height: 84vh;
  min-height: 100%;
}

.hero-card {
  color: #063b2f;
  background-color: var(--primary);
  text-align: center;
  border-radius: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  position: relative;
}

.badge2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--white);
  border-radius: 45px;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
}

.badge2 p {
  color: var(--gray-first);
}

h1.banner-title {
  color: var(--primary-dark);
  letter-spacing: -1.8px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 900;
  line-height: 80px;
}

p.subtitle-banner {
  max-width: 600px;
  font-size: 18px;
  margin: 1em 0 2em;
}

.hero-image {
  min-height: 340px;
  background: #0e5b43;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-image img {
  height: 100%;
}

.banner-image-bottom {
  width: auto;
  max-height: 58px;
}

.circle-images-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.float-label {
  box-shadow: 0 6px 20px rgba(2, 15, 23, 0.06);
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--white);
  border-radius: 45px;
  justify-content: flex-start;
  align-items: center;
  padding: 11px 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
  color: var(--primary-dark);
}

/* Trusted headline */
.title-centered {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-vertical-block {
  color: var(--primary-dark);
  text-align: center;
  letter-spacing: -3px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 85px;
  font-weight: 900;
  line-height: 1.2em;
  display: flex;
}

.div-block-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--gray-first);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.underline-text {
  text-decoration: underline;
}

.link-block {
  background-color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
}

.link-block:hover {
  background-color: var(--primary-light);
  transform: rotate(180deg);
}

/* Services Slider */
.green-block {
  background-color: var(--primary-dark);
  border-radius: 24px;
  margin-top: 20px;
  padding: 80px 70px;
  overflow: hidden;
}

.green-block h2 {
  color: var(--primary-dark);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2em;
}

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

.link-description {
  background-color: var(--gray-first);
  border-radius: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 440px;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}

.arrow-services i {
  color: var(--white);
  font-size: 30px;
}

.link-description:hover {
  background-color: var(--primary);
  transition: all 0.35s;
}

.link-description:hover .white-text-with-hover,
.link-description:hover .green-text,
.link-description:hover .arrow-services i {
  color: var(--primary-dark);
  transition: all 0.35s;
}

.link-description.features-details {
  background-color: var(--primary);
  height: 330px;
}

.white-text-with-hover {
  color: var(--white);
  font-size: 35px;
}

.top-link-block {
  z-index: 1;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: relative;
}

.title-with-padding {
  margin-bottom: 50px;
  display: flex;
}

.collection-item-2 {
  position: relative;
  overflow: hidden;
}

a.partner-block img {
  width: 100%;
}

.collection-item-2 .image-2 {
  opacity: 0;
  transform: translate3d(-40px, -40px, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: opacity 400ms ease, transform 400ms ease;
  position: absolute;
  top: 0;
  right: 0;
}

.collection-item-2:hover .image-2 {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.image-2 {
  opacity: 0;
  position: absolute;
  inset: 0% auto auto 0%;
}

.top-link-block h3 {
  font-weight: bold;
  font-size: 28px;
  line-height: 40px;
}

.owl-nav button {
  background-color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  margin-left: -4%;
  transition: all 0.35s;
  display: flex;
  inset: 50% auto auto 0%;
  transform: translate(0, -50%);
  position: absolute;
}

.owl-nav button.owl-prev {
  left: 2%;
}

.owl-nav button.owl-next {
  left: 102%;
}

/* Industries */
.title-horizontal h3 {
  color: var(--primary-dark);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2em;
}

.title-horizontal {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.item-blog {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  border-radius: 24px;
  flex-flow: column;
  justify-content: space-between;
  padding: 30px;
  /* display: flex; */
  background-color: var(--primary-light);
}

.item-blog:hover {
  background-color: var(--primary);
}

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

a.title-blog {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2em;
}

.date {
  font-size: 17px;
  font-weight: 500;
}

.text-blog-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .blog-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 568px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

/* Multi-Blocks */
.w-layout-cell {
  margin-bottom: 1.5rem;
}

.light-gray-block {
  background-color: var(--primary-light);
  border-radius: 24px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.light-gray-block img {
  width: 100%;
}

.cart-second {
  z-index: 2;
  position: absolute;
  right: 170px;
  width: 250px;
}

.cart-third {
  z-index: 1;
  position: absolute;
  right: 50px;
  width: 200px;
}

.cart-first {
  z-index: 3;
  width: 300px;
  position: relative;
}

.cart-second img {
  z-index: 2;
  opacity: 0.9;
  animation: moveSecond 4s ease-in-out infinite alternate;
}

.cart-third img {
  z-index: 1;
  opacity: 0.8;
  animation: moveThird 4s ease-in-out infinite alternate;
}

@keyframes moveSecond {
  0% {
    transform: translate(20px, 10px);
  }

  100% {
    transform: translate(35px, 15px);
  }
}

@keyframes moveThird {
  0% {
    transform: translate(-20px, 20px);
  }

  100% {
    transform: translate(-35px, 25px);
  }
}

/* Block 2 */
.primary-cell-block {
  grid-column-gap: 130px;
  grid-row-gap: 130px;
  background-color: var(--primary);
  border-radius: 24px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

.text-block-2 {
  color: var(--primary-dark);
  letter-spacing: -2.1px;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.2em;
}

.percentage-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.large-dark-text {
  color: var(--primary-dark);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2em;
}

.percentage-bgr {
  background-color: #085c4433;
  border-radius: 40px;
  height: 32px;
  position: relative;
}

.percentage-main-color {
  background-color: var(--primary-dark);
  border-radius: 40px;
  width: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

/* Block 3 */
.dark-block {
  background-color: var(--primary-dark);
  border-radius: 24px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 30px;
  display: flex;
  position: relative;
}

.large-white-text {
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2em;
}

.bottom-image {
  z-index: 1;
  margin-top: 130px;
  position: relative;
}

.circle-images-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.banner-image-bottom {
  width: auto;
  max-height: 58px;
}

.text-bold-white {
  color: var(--white);
  letter-spacing: -0.54px;
  width: 100%;
  max-width: 172px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
}

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

.image-elips-absolute {
  position: absolute;
  inset: 0% 0% auto auto;
}

/* Block 4 */
.block-with-image {
  background-image: linear-gradient(#0006, #0006),
    url("https://cdn.prod.website-files.com/66a1ffb90a9a7d95f6b2c522/66a762c72982ed6d421b3c2d_alexander-mils-lCPhGxs7pww-unsplash%20(1).avif");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.lables-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.lable {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--white);
  border-radius: 45px;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
}

.lable.large {
  color: var(--primary-dark);
  font-size: 36px;
  font-weight: 900;
}

/* Block 5 */
.block-with-icon {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--gray-first);
  text-align: center;
  border-radius: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  font-size: 18px;
  display: flex;
  overflow: hidden;
}

.lottie-animation-2 {
  width: 300%;
  height: 230px;
}

.white-text.height {
  line-height: 1.3em;
}

/* Clients */
.light-bottom-block {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: var(--primary-light);
  background-image: url("https://cdn.prod.website-files.com/66a1ffb90a9a7d95f6b2c522/66a77b2c95abd81308f0c412_100.avif");
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 24px;
  flex-flow: column;
  margin-top: 20px;
  padding: 50px;
  display: flex;
  margin-top: 7em !important;
}

/* Testimonials */
.testi-card {
  background: var(--primary-light);
  border-color: var(--primary-light);
  padding: 3em 2em;
  border-radius: 24px;
}

.testi-card h6 {
  font-size: 22px;
  margin-bottom: 4em;
  color: var(--gray-first);
}

.testi-card img {
  width: 70px;
}

strong.testi-name {
  color: var(--gray-first);
  font-size: 20px;
}

p.testi-role {
  color: var(--gray);
  font-size: 15px;
  line-height: 22px;
  margin-top: 10px;
}

.swiper.testi-swiper {
  height: 20vh;
}

blockquote.blockquote {
  font-size: 40px;
  line-height: 45px;
  font-weight: bold;
  color: var(--primary-dark);
}

.swiper-arrows button {
  background-color: var(--token-ff0df458-ee73-4d3b-b41c-6c6eb97daff6,
      rgb(255, 255, 255));
  border-radius: 100px;
  height: 50px;
  width: 50px;
  transform: none;
  opacity: 1;
  will-change: transform;
  border: none;
  color: #000;
}

.swiper-arrows button:hover {
  background-color: var(--primary);
  color: #000;
}

/* Animation Bg Section */
.cta-section {
  position: relative;
  padding: 150px 0;
  background-color: #043c33;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.cta-content {
  max-width: 800px;
  margin: auto;
}

h2.cta-title {
  color: var(--primary-dark);
  letter-spacing: -1px;
  font-size: 70px;
  font-weight: 900;
  line-height: 70px;
  margin-bottom: 10px;
}

p.cta-text {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 2em;
  margin-top: 1.5em;
  color: #fff;
}

.cta-bg-img {
  position: absolute;
  z-index: 1;
  width: 300px;
  height: auto;
  opacity: 0.9;
  animation: zoomInOut 4s ease-in-out infinite;
}

.cta-bg-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cta-bg-img-1 {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.cta-bg-img-2 {
  bottom: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.12);
  }

  70% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
  }
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto !important;
}

@media (max-width: 768px) {

  .cta-bg-img-1,
  .cta-bg-img-2 {
    width: 180px;
    opacity: 0.6;
  }
}

/* Footer */
.ugra-cta-footer {
  background: var(--primary-dark);
  padding: 100px 0 0;
  color: #ffffff;
}

.top-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ffffff2e;
  padding-bottom: 2em;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
}

.cta-email {
  font-size: 3em;
  font-weight: 700;
  color: var(--primary);
}

.cta-email:hover {
  opacity: 0.75;
}

img.footer-logo-img {
  width: 200px;
}

.footer-contact-block ul li {
  display: flex;
  align-items: baseline;
  font-size: 16px;
  margin-bottom: 10px;
  color: #d9e9e7;
  list-style-type: none;
}

.footer-contact-block ul li a {
  color: #d9e9e7;
}

.footer-contact-block li i {
  margin-right: 10px;
  color: #fff;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #ecf86e;
  font-size: 20px;
}

.footer-col a {
  display: block;
  color: #d9e9e7;
  margin-bottom: 7px;
  transition: 0.25s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ecf86e;
}

/* SOCIAL ICONS */
.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  font-size: 16px;
  color: #ffffff;
}

.footer-social a:hover {
  background: #ecf86e;
  color: #043c33;
}

.footer-bottom {
  text-align: center;
  margin-top: 3em;
  font-size: 16px;
  background: #04362e;
  padding: 30px 0;
}

/* Inner Banner */
.inner-section {
  position: relative;
  overflow: hidden;
  background-image: url("../images/banners/career-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  align-items: center;
  animation: zoomBg 8s ease forwards;
}

.contact-banner {
  background-image: url("../images/banners/contact-banner.jpg");
}

.services-banner {
  background-image: url("../images/banners/services-banner.jpg");
}

@keyframes zoomBg {
  from {
    background-size: 110%;
  }

  to {
    background-size: 100%;
  }
}

/* Overlay */
.green-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 20, 0.65);
  z-index: 1;
}

.base-container {
  position: relative;
  z-index: 2;
  padding: 100px 16px;
}

.inner-page-text {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #d5d5d5;
}

.breadcrumb-item.active {
  color: var(--primary);
}

.nav-tabs .nav-link {
  background: var(--primary-dark);
  color: #fff;
  font-size: 18px;
  padding: 16px 39px;
}

.nav-tabs {
  gap: 10px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: var(--primary);
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background: var(--primary);
  color: var(--black);
}

.content-career {
  background: var(--primary-light);
  padding: 3em;
  border-radius: 20px;
  box-shadow: rgba(8, 27, 22, 0.08) 0px 6px 20px;
}

h3.rich-text-style {
  margin-bottom: 15px;
  font-size: 40px;
  color: var(--primary-dark);
  letter-spacing: -1px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2em;
}

.content-career p,
.content-career li {
  line-height: 1.5em;
  font-size: 20px;
  letter-spacing: -0.72px;
}

h6.sub-style-2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2em;
  color: var(--primary-dark);
  margin-bottom: 12px;
  margin-top: 1em;
}

.modal__popup .form-control {
  background: var(--primary-light);
  color: #000;
  font-size: 16px;
  padding: 12px 14px;
}

h5.modal-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2em;
  color: var(--primary-dark);
}

textarea.form-control {
  min-height: 110px;
}

/* Contact */
.contact-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 80px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.contact-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  border-top: 1px solid #0003;
  border-bottom: 1px solid #0003;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.contact-block h5 {
  color: var(--primary-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2em;
}

.link-2 {
  background-color: var(--gray-first);
  color: var(--white);
  border-radius: 45px;
  padding: 6px 20px;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
}

.link-2:hover {
  background-color: var(--primary);
  color: var(--primary-dark);
}

.contact-form {
  max-width: 1000px;
  margin: auto;
  background: var(--primary-light);
  padding: 4em;
  border-radius: 20px;
  box-shadow: rgba(8, 27, 22, 0.08) 0px 6px 20px;
  margin-top: 6.5em;
  margin-bottom: 3.5em;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  background: #fff;
  color: #000;
  font-size: 18px;
  padding: 14px 14px;
  border-color: #ddd;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form textarea {
  margin-top: 15px;
}

/* Services */
.service-section-bg {
  position: relative;
  padding: 80px 0;
  background: var(--primary-dark);
  color: #fff;
  overflow: hidden;
  margin-bottom: 6em;
}

.top-content-images {
  position: relative;
}

/* Circle background */
.circle-bg img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.flip-image {
  position: absolute;
  width: 200px;
  opacity: 0.9;
  animation: flip 6s infinite ease-in-out;
  pointer-events: none;
  border-radius: 50%;
  height: 200px;
}

/* image positions */
.img1 {
  top: 137px;
  right: 338px;
}

.img2 {
  top: 10px;
  right: 100px;
  animation-delay: 1.5s;
}

.img3 {
  bottom: 155px;
  right: 134px;
  animation-delay: 3s;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg) scale(1);
  }

  50% {
    transform: rotateY(180deg) scale(1.1);
  }

  100% {
    transform: rotateY(360deg) scale(1);
  }
}

h2.cta-title2 {
  color: var(--primary-dark);
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 90px;
  line-height: 100px;
}

.left-box {
  max-width: 700px;
}

.white-text.width {
  max-width: 600px;
  margin-top: 24px;
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.services-title-main {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 3em;
}

h3.services-heading {
  color: var(--primary-dark);
  letter-spacing: -1px;
  font-size: 50px;
  font-weight: 900;
  line-height: 50px;
  margin-bottom: 16px;
}

p.services-subtext {
  font-size: inherit;
  font-weight: 400;
  line-height: 30px;
}

.collection-item-3 {
  border-radius: 24px;
  flex-flow: column;
  justify-content: space-between;
  padding: 40px;
  display: flex;
  height: 100%;
}

.link-cms {
  color: var(--primary-dark);
  font-size: 28px;
  font-weight: 900;
}

.link-cms:hover {
  color: var(--gray-first);
}

.description-features {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px solid #0003;
  flex-flow: column;
  margin-top: 80px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
}

.medium-text {
  font-size: 18px;
}

.number-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.number {
  font-size: 60px;
  font-weight: 900;
  line-height: 0.8em;
}

/* Outsourcing */
.primary-bgr-block img {
  width: 100%;
  border-radius: 30px;
}

.right-content {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.right-content.padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.dark-span {
  color: var(--gray-first);
}

.lable-wrap {
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  margin-bottom: 1em;
}

.lable-wrap h6 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.lable-wrap i {
  font-size: 24px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-dark);
  line-height: 70px;
  text-align: center;
}

.services-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.services-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-light);
  border-radius: 24px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.more-features-icon {
  background-color: var(--white);
  color: var(--primary-dark);
  text-align: center;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 30px;
  display: flex;
}

p.service-description {
  text-align: justify;
}

/* Industries */
.text-blog-content.height {
  width: 100%;
}

.link-block-3 {
  border-radius: 10px;
  flex: none;
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
}

.dark-overlay {
  background-color: #0003;
  position: absolute;
  inset: 0%;
}

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

h4.hover-green.size-text {
  font-weight: bold;
  color: var(--primary-dark);
}

.service-details-content-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-features {
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 450px;
}

.rich-text-style h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 35px;
}

.rich-text-style h5,
.rich-text-style h6 {
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2em;
}

.rich-text-style p {
  padding-left: 0px;
}

/* About */
.double-column.maxw {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.lable {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--white);
  border-radius: 45px;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
}

.lable.yellow {
  background-color: var(--primary);
}

.heading-first-column {
  margin-top: 30px;
  margin-bottom: 30px;
}

.heading-first-column.maxw {
  width: 380px;
}

.heading-first-column {
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: Geist, sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: var(--primary-dark);
}

.numbers-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.numbers-wrap.column {
  grid-template-columns: 1fr 1fr;
}

.numbers-wrap.bottom-top {
  border-top: 1px solid #0003;
  margin-top: 8em;
  padding-top: 5em;
}

.large-text {
  font-size: 100px;
  font-weight: 900;
  line-height: 1.2em;
}

.large-text.cu {
  font-size: 60px;
}

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

.rich-text-style h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-dark);
  margin-bottom: 1em;
}

.rich-text-style ul {
  padding: 0;
}

.rich-text-style ul li {
  list-style: none;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 1.5em;
}

/* Title Style */
.center-underline-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  animation: titleReveal 1s ease forwards,
    glowPulse 2.5s ease-in-out infinite 1.2s;
  margin-bottom: 1em;
}

.center-underline-title::after {
  content: "";
  width: 120px;
  height: 2px;
  background: var(--primary-dark);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 10px;
  opacity: 0;
  animation: underlineReveal 0.6s ease-out forwards 0.8s;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes underlineReveal {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 120px;
    opacity: 1;
  }
}

.details-content-services {
  padding: 3em 2em;
  background: #fff;
  box-shadow: 0 0 1.25rem 0.0625rem #f1f1f1;
  border-radius: 20px;
}

.rich-text-style-2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.sub-title-content {
  text-align: center;
  margin: auto;
  margin-top: 2em;
}

.industries-block2 {
  height: 500px;
  display: flex;
}

/* common float btn style */
.float-btn {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.12);
  border: none;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s ease, opacity 0.2s ease;
  background: var(--primary-dark);
  color: #fff;
  opacity: 0;
  pointer-events: none;
}

.float-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top {
  right: 20px;
  bottom: 82px;
  background: var(--primary-dark);
  border: 1px solid #fff;
}

.whatsapp {
  right: 20px;
  bottom: 140px;
  background: #25d366;
  color: #fff;
  width: 40px;
  height: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding: 10px;
}

.whatsapp.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
      color: #fff;
}

.whatsapp i{
	font-size: 24px;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 480px) {
  .float-btn {
    width: 40px;
    height: 40px;
  }

  .scroll-top {
    bottom: 30px;
  }

  .whatsapp {
    bottom: 90px;
  }
}

section.industries-main a.primary-button.bottom-mobile {
  display: none;
}

.nav-tabs {
  display: flex;
  flex-wrap: nowrap;
}

/* responsive */
@media (max-width: 1366px) {
  .top-link-block h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .link-description {
    height: 350px;
  }

  .owl-nav button.owl-prev {
    left: 1%;
  }

  .owl-nav button.owl-next {
    left: 100%;
  }

  .owl-nav button {
    width: 55px;
    height: 55px;
  }

  .text-block-2 {
    font-size: 50px;
  }

  .lable.large {
    font-size: 30px;
  }
}

@media (max-width: 1330px) {
  h1.banner-title {
    font-size: 50px;
    line-height: 60px;
  }

  p.subtitle-banner {
    margin: 1em 0 1em;
  }

  .float-label {
    font-size: 18px;
  }

  p.services-subtext {
    font-size: 20px;
  }

  .large-text {
    font-size: 80px;
  }
}


@media (max-width: 1199px) {
  #logo {
    height: 40px;
  }

  .secondary-button,
  .primary-button {
    padding: 16px 25px;
  }

  .header-nav .nav-link {
    font-size: 15px;
    padding: 7px 8px;
  }

  a.title-blog {
    font-size: 28px;
  }

  .title-horizontal h3 {
    font-size: 44px;
  }

  .text-vertical-block {
    font-size: 70px;
    line-height: 1em;
  }

  .link-block img {
    width: 55px;
  }

  .link-block {
    width: 75px;
    height: 75px;
  }

  .text-block-2 {
    letter-spacing: 0;
    font-size: 40px;
  }

  .cart-first {
    width: 250px;
  }

  .cart-second {
    right: 130px;
    width: 200px;
  }

  .cart-third {
    right: 40px;
    width: 150px;
  }

  .testi-card {
    padding: 2em 1em;
  }

  blockquote.blockquote {
    font-size: 34px;
    line-height: 40px;
  }

  .inner-section {
    animation: none;
  }

  .large-text {
    font-size: 70px;
  }

  h2.cta-title2 {
    font-size: 70px;
    line-height: 80px;
  }

  .flip-image {
    width: 150px;
    height: 150px;
  }

  .img3 {
    bottom: 148px;
    right: 94px;
  }

  .img1 {
    top: 137px;
    right: 274px;
  }

  .left-box {
    max-width: 500px;
  }

  h2.cta-title {
    font-size: 60px;
    margin-bottom: 0;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .green-block h2 {
    font-size: 40px;
  }

  .top-link-block h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .owl-nav button.owl-next {
    left: 100%;
  }

  h2.cta-title {
    font-size: 52px;
    line-height: 62px;
  }

  p.cta-text {
    font-size: 18px;
  }

  .cta-section {
    padding: 120px 0;
  }

  .light-gray-block {
    margin: auto;
    text-align: center;
    justify-content: center;
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .cart-first {
    width: 300px;
    margin-left: -6em;
  }

  .cart-second {
    right: 250px;
    width: 250px;
  }

  .cart-third {
    right: 130px;
    width: 200px;
  }

  .testi-card {
    padding: 3em 2em;
  }

  .testi-card h6 {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 2em;
  }

  p.testi-role {
    margin-top: 4px;
  }

  blockquote.blockquote {
    margin-top: 10px;
  }

  .dropdown-toggle-mobile i {
    transition: transform 0.3s ease;
    font-size: 10px;
  }

  .heading-first-column {
    margin-top: 12px;
    margin-bottom: 20px;
    font-size: 34px;
  }

  p.services-subtext {
    font-size: 18px;
  }

  .left-box {
    max-width: 100%;
  }

  .right-images-2 {
    margin-top: 5em;
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .flip-image {
    position: relative;
    width: 200px;
    height: 200px;
  }

  .img1,
  .img2,
  .img3 {
    top: 0;
    right: 0;
  }

  .inner-page-text {
    font-size: 42px;
  }

  .nav-tabs .nav-link {
    padding: 16px 20px;
  }

  h3.services-heading {
    font-size: 44px;
  }
  .mobile-order-1{
    order:1
  }
  .mobile-order-2{
    order:2
  }
  .mobile-order-3{
    order:3
  }
  .mobile-order-4{
    order:4
  }
  .mobile-order-5{
    order:5
  }
}

@media (max-width: 900px) {
  .large-text {
    font-size: 55px;
  }
}

@media (max-width: 820px) {
  h2.cta-title {
    font-size: 44px;
    line-height: 54px;
  }

  .cta-section {
    padding: 100px 0;
  }

  .numbers-wrap {
    grid-column-gap: 15px;
  }
}

@media (max-width: 768px) {
  .title-horizontal {
    display: block;
    text-align: center;
  }

  section.industries-main a.primary-button.top-desk {
    display: none;
  }

  section.industries-main a.primary-button.bottom-mobile {
    display: block;
  }

  .blog-list {
    margin-top: 30px;
  }

  .text-vertical-block {
    font-size: 55px;
  }

  .cart-first {
    width: 250px;
  }

  .cart-second {
    right: 23%;
    width: 200px;
  }

  .cart-third {
    right: 0%;
    width: 150px;
  }

  .footer-bottom {
    margin-top: 0em;
  }

  .ugra-cta-footer {
    padding: 80px 0 0;
  }

  h2.cta-title {
    font-size: 38px;
    line-height: 48px;
  }

  .cta-email {
    font-size: 1.5em;
  }

  img.footer-logo-img {
    width: 150px;
  }

  .footer-contact-block ul li {
    font-size: 14px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col a {
    font-size: 14px;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  p {
    font-size: 15px;
  }

  blockquote.blockquote {
    font-size: 32px;
  }

  .title-horizontal h3 {
    font-size: 36px;
  }

  .owl-nav button.owl-prev {
    left: -1%;
  }

  .owl-nav button.owl-next {
    left: 95%;
  }

  .numbers-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .numbers-wrap.bottom-top {
    margin-top: 4em;
    padding-top: 3em;
  }

  .heading-first-column.maxw {
    width: 100%;
  }

  h2.cta-title {
    margin-bottom: 0;
    padding-bottom: 0 !important;
  }

  h2.cta-title2 {
    font-size: 55px;
    line-height: 65px;
  }

  .white-text.width {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .flip-image {
    width: 150px;
    height: 150px;
  }

  .nav-tabs {
    flex-wrap: wrap;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-row-gap: 0px;
  }

  .contact-form {
    padding: 4em 2em;
  }

  h3.rich-text-style {
    font-size: 40px;
  }

  .services-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  h3.services-heading {
    font-size: 40px;
  }

  .link-cms {
    font-size: 26px;
  }

  .light-bottom-block {
    margin-top: 4em !important;
  }
}

@media (max-width: 745px) {
  .text-vertical-block {
    font-size: 45px;
  }

  .link-block img {
    width: 45px;
  }

  .link-block {
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 600px) {
  .large-white-text {
    font-size: 26px;
  }

  .nav-tabs .nav-link {
    font-size: 16px;
    padding: 14px 10px;
  }
}

@media (max-width: 568px) {
  .top-footer-bar {
    padding-bottom: 1em;
  }

  h2.cta-title {
    font-size: 34px;
    line-height: 44px;
  }

  .ugra-cta-footer {
    padding: 60px 0 0;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  blockquote.blockquote {
    font-size: 28px;
  }

  .light-bottom-block {
    padding: 50px 20px;
  }

  .hero-left-main,
  .hero-right-main {
    height: 100%;
    min-height: 100%;
  }

  .link-description {
    height: 300px;
  }

  .flip-image {
    width: 100px;
    height: 100px;
  }

  .right-images-2 {
    margin-top: 3em;
  }

  .center-underline-title {
    font-size: 36px;
  }

  .services-main .green-block {
    padding: 60px 30px;
  }

  h3.services-heading {
    font-size: 42px;
    line-height: 42px;
  }

  .services-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-right-main {
    display: none;
  }
  .w-layout-cell.mobile-order-2 {
    display: none;
  }
  section.gallery-grids {
    display: none;
  }
}

@media (max-width: 500px) {
  .text-vertical-block {
    letter-spacing: -1px;
    font-size: 38px;
  }

  .link-block {
    width: 55px;
    height: 55px;
  }

  .link-block img {
    width: 38px;
  }

  .light-bottom-block {
    grid-row-gap: 50px;
  }

  .title-horizontal h3 {
    font-size: 30px;
  }

  .inner-page-text {
    font-size: 36px;
  }

  .base-container {
    padding: 80px 10px;
  }

  h3.rich-text-style {
    font-size: 32px;
  }

  .content-career {
    padding: 2em;
  }
}

@media (max-width: 480px) {
  h1.banner-title {
    font-size: 40px;
    line-height: 50px;
  }

  p.subtitle-banner {
    font-size: 16px;
    margin: 0.5em 0 1em;
    line-height: 22px;
  }

  p {
    font-size: 15px;
  }

  .float-label {
    font-size: 15px;
  }

  .title-horizontal h3 {
    font-size: 36px;
  }

  h2.cta-title {
    font-size: 36px;
    line-height: 46px;
  }

  p.cta-text {
    font-size: 16px;
    line-height: 26px;
    margin-top: 1em;
  }

  .secondary-button,
  .primary-button {
    padding: 16px 25px;
    font-size: 14px;
  }

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

  .lable.large {
    font-size: 26px;
  }

  .top-footer-bar {
    display: block;
  }

  .ugra-cta-footer .mobile-grid-footer {
    width: 100%;
  }

  .ugra-cta-footer .mobile-grid-footer-2 {
    padding-left: 0.7rem !important;
    width: 100%;
    margin-top: 2em;
  }

  .mobile-nav-footer1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .large-text {
    font-size: 45px;
  }

  p.services-subtext {
    font-size: 16px;
  }

  .link-description {
    height: 260px;
  }

  h2.cta-title2 {
    font-size: 44px;
    line-height: 55px;
  }

  h3.services-heading {
    font-size: 38px;
    line-height: 38px;
  }

  .nav-tabs .nav-link {
    font-size: 14px;
    padding: 12px 5px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .text-vertical-block {
    font-size: 32px;
  }

  .testi-card h6 {
    font-size: 26px;
    line-height: 36px;
  }

  .title-horizontal h3 {
    font-size: 30px;
  }

  .green-block h2 {
    font-size: 32px;
  }

  .content-career {
    padding: 2em 1em;
  }

  h3.services-heading {
    font-size: 34px;
    line-height: 38px;
  }

  .cart-third {
    right: 6%;
    width: 32%;
}
.cart-second {
    right: 32%;
    width: 43%;
}
.cart-first {
    width: 80%;
}
}

@media (max-width: 360px) {
  blockquote.blockquote {
    font-size: 24px;
    line-height: 36px;
  }

  .green-block h2 {
    font-size: 28px;
  }

  .cart-third {
    right: 6%;
    width: 25%;
}
.cart-second {
    right: 35%;
    width: 37%;
}
}

