@font-face {
  font-family: "Helvetica";
  src: url("../Fonts/Helvetica.eot");
  src: url("../Fonts/Helveticad41d.eot?#iefix") format("embedded-opentype"),
    url("../Fonts/Helvetica.woff2") format("woff2"),
    url("../Fonts/Helvetica.woff") format("woff"),
    url("../Fonts/Helvetica.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* CSS styles */
body {
  font-family: "Helvetica", sans-serif; /* Use Helvetica font */
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1380px;
}
img {
  display: block;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0rem;
  margin-left: -0.5rem;
  padding: 0;
  list-style: none;
}
.grid__item {
  padding-left: 0.5rem;
  padding-bottom: 0rem;
  width: calc(100% - 0.5rem);
  max-width: 50%;
  flex-grow: 1;
  flex-shrink: 0;
}
.grid__item.content-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.grid__item.content-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.grid__item.content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid__item.content-vertical-center {
  display: flex;
  align-items: center;
}
.grid__item.content-full-width {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 750px) {
  .grid {
    margin-left: -1rem;
  }
  .grid__item {
    padding-left: 1rem;
    padding-bottom: 0rem;
    width: calc(50% - 1rem);
    max-width: 50%;
  }
  .grid.grid--3-col .grid__item {
    width: calc(33.3333% - 34px);
    max-width: 33.3333%;
  }
}

/* Header style */

.header {
  background-color: #fff; /* Inverted background color */
  color: #000; /* Inverted text color */
  padding: 16px 0px 19px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px; /* Fixed height for the header */
}
.logo {
  height: auto; /* Maintain aspect ratio */
}
.menus {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-grow: 1;
  height: 100%; /* Take up full height of the header */
  align-items: center; /* Vertically center items */
}
.menu-item {
  font-weight: bold;
  color: #778895; /* Updated color for menus */
  text-decoration: none;
  padding: 0;
  font-size: 18px;
  position: relative; /* Added for underline effect */
}
.menu-item::before {
  content: ""; /* Create pseudo-element for underline */
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjust as needed for underline position */
  width: 100%;
  height: 2px;
  background-color: transparent; /* Initially transparent */
  transition: background-color 0.3s ease; /* Smooth transition for underline */
}
.menu-item:hover::before, /* Hover effect for underline */
.menu-item.active::before {
  /* Active menu item underline */
  background-color: #778895; /* Underline color */
}
.contact-us .menu-item {
  background-color: #fc7600;
  color: #fff;
  padding: 10px 0; /* Added vertical padding */
  border-radius: 0px;
  width: 260px; /* Set width to 260px */
  height: 80px;
  text-align: center; /* Center-align text */
  display: flex;
  align-items: center; /* Vertically center content */
  justify-content: center;
  font-size: 23px;
  font-weight: bold;
  text-decoration: underline;
}
.contact-us .menu-item::before {
  display: none;
}

/* Sidebar styles */
.sidebar {
  display: none; /* Hide sidebar by default */
  width: 260px;
  background-color: #ffffff; /* Light background color for sidebar */
  position: fixed;
  top: 0;
  left: -260px; /* Move sidebar off-screen initially */
  height: 100vh; /* Full height of viewport */
  transition: left 0.3s ease; /* Smooth transition for sidebar */
  z-index: 1000; /* Ensure sidebar is above other content */
}
.sidebar.open {
  left: 0; /* Move sidebar into view when open */
  display: block; /* Show sidebar when open */
}
.sidebar .menu-item {
  display: block; /* Show menu items in sidebar */
  padding: 16px;
  color: #000; /* Text color for sidebar */
  text-decoration: none;
  font-weight: normal; /* Normal font weight for sidebar items */
}
.desk-hide {
  display: none;
}
.sidebar-overlay {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
body.open-sidebar {
  position: relative;
  overflow: hidden;
}
body.open-sidebar .sidebar-overlay {
  display: block;
}

/* Homepage styles */

/* Hero banner style */
.hero-banner {
  position: relative;
  height: 955px; /* Adjust height as needed */
  overflow: hidden; /* Hide overflow to prevent image from overflowing */
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: #ffffff;
  z-index: 1; /* Ensure overlay is above the image */
  margin: 0 15px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 87px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -5px;
  font-size: 173.52px;
  line-height: 134.78px;
}

.hero-overlay p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 20px 78px;
  background-color: #fc7500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 34px;
  font-size: 22.83px;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #fc7500;
  transition: background-color 0.3s ease;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire space */
  z-index: 0; /* Place the image behind the overlay */
}

/* Image with text style */

.image-with-text-section {
  background-color: #738796;
}

.image-with-text-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 64px 0px;
  gap: 60px;
}

.image-column {
  width: 100%;
  max-width: calc(50% - 60px);
  box-sizing: border-box;
  padding: 15px;
  text-align: right;
}

.image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 40px;
}

.text-column {
  width: 100%;
  max-width: calc(50% - 60px);
  box-sizing: border-box;
  padding: 10px;
  color: #ffffff;
}

.text-column h2 {
  margin-top: 0;
  font-weight: 400;
  font-size: 85.96px;
  margin-bottom: 40px;
  line-height: 66.77px;
  letter-spacing: -0.6px;
  font-family: "Bebas Neue", sans-serif;
}

.text-column p {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Arial", sans-serif;
}

.text-column .cta-button {
  margin-top: 10px;
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000;
}

/* Fearures style */

.features-section {
  background-image: url(../images/dots-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 75px;
  padding-top: 75px;
}
.features-section .grid--title {
  color: #fc7500;
  font-size: 130.75px;
  line-height: 101.56px;
  letter-spacing: -0.6px;
  font-weight: 400;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
}
.features-section .grid {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}
.content-wrapper {
  max-width: calc(100% - 40%);
  padding: 44px 44px 44px 112px;
  background: #f1f1f1;
  border-radius: 20px;
  position: relative;
}
.content-wrapper.last-box {
  padding: 34px;
  background: #fc7600;
  max-width: calc(100% - 27%);
}
.content-wrapper img {
  position: absolute;
  left: -11%;
  top: 50%;
  transform: translateY(-50%);
}
.content-wrapper img.light-bulb {
  left: -13.5%;
}
.content-wrapper img.right-seprator {
  left: auto;
  right: -15%;
  z-index: -1;
}
.content-wrapper.second-last-box img.right-seprator {
  right: -26%;
}
.feature--title {
  font-weight: 400;
  font-size: 46.35px;
  line-height: 42.39px;
  letter-spacing: -0.6px;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
}
.content-wrapper.last-box .feature--title {
  color: #ffffff;
  font-size: 78.54px;
  text-align: center;
  line-height: 70.44px;
  margin-bottom: 0;
}
.feature-desc {
  color: #767676;
  font-size: 20px;
  margin-bottom: 0;
  font-family: "Arial", sans-serif;
}

/* Form style */

.form-section-wrapper {
  position: relative;
}

.form-section {
  width: 100%;
  margin: -285px auto 186px;
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
  padding: 60px 0;
  background-color: #f1f1f1;
  box-shadow: 13px 13px 0px 0px rgb(252, 117, 0);
  position: absolute;
  top: -285px;
  left: 0;
  right: 0;
}

.form-title {
  color: #6f7f8d;
  font-weight: 400;
  margin-top: 0;
  font-size: 127.78px;
  line-height: 116.86px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}

form {
  width: 100%;
  max-width: 787px;
  margin: 0 auto;
}

.form-group {
  width: calc(50% - 32px);
  float: left;
  position: relative;
  margin: 0 16px 28px;
}

.form-group.full-width {
  width: calc(100% - 32px);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #778694;
  border-radius: 0px;
  box-sizing: border-box;
  font-size: 16px;
  background: transparent;
  font-family: "Arial", sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #767676;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 20px;
  color: #767676;
  font-size: 18px;
  display: none !important;
  pointer-events: none;
  font-family: "Arial", sans-serif;
  transition: top 0.3s ease, left 0.3s ease, font-size 0.3s ease;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.form-section .submit-button {
  width: 100%;
  margin-top: 11px;
  cursor: pointer;
}

/* About page style */

/* Main banner style */
.main-banner {
  position: relative;
}

.main-banner-content {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.main-banner h1 {
  margin: 0 15px;
  color: #fff;
  font-weight: 400;
  font-size: 188.58px;
  line-height: 146.48px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}

/* About content style */
.about-content {
  background-image: url(../images/dots-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.about-content .grid.main-content {
  gap: 50px;
  padding: 80px 0;
  justify-content: center;
}

.about-content .main-content .grid__item.right {
  max-width: 601px;
}

.about-content .main-content .grid__item p {
  margin: 0;
  font-size: 18px;
  color: #767676;
  font-family: "Arial", sans-serif;
}

.about-content .main-content .grid__item p:not(:last-child) {
  margin-bottom: 25px;
}

.about-content .main-content .grid--title {
  margin: 0;
  color: #fc7600;
  font-weight: 400;
  font-size: 119.91px;
  line-height: 93.14px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}

/* Count boxes style */
.count-boxes {
  padding-bottom: 111px;
  padding: 0 15px 111px;
}

.count-boxes .grid {
  gap: 10px;
  text-align: center;
}

.count-boxes .count-box {
  gap: 25px;
  width: 100%;
  height: 268px;
  padding: 0 0 48px;
  color: #607180;
  border-radius: 20px;
  background-color: #f1f1f1;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
}

.count-boxes .count-box .count-box--title {
  margin: 0;
  color: #fc7600;
  font-weight: 400;
  font-size: 148px;
  line-height: 130.09px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}

.count-boxes .count-box .count-box--sub-title {
  margin: 0;
  font-weight: 400;
  font-size: 64.43px;
  line-height: 50.04px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}

/* Logos slider style */
.logos-slider {
  padding-bottom: 111px;
}

.index .logos-slider,
.our-services .logos-slider {
  padding: 111px 0;
}

.logos-slider .swiper-wrapper {
  align-items: center;
}

.logos-slider .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}

/* About content style */
.services-content {
  background-image: url(../images/dots-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.services-content .grid.main-content {
  padding: 50px 0 60px;
}
.services-content .main-content .grid__item:first-child {
  margin: 0;
  font-size: 20px;
  color: #657585;
  position: relative;
  font-family: "Arial", sans-serif;
}
.services-content .main-content .grid__item:first-child::before {
  content: "";
  width: 11px;
  height: 100%;
  display: block;
  position: absolute;
  background: orange;
  border-radius: 5.5px;
}
.services-content .main-content .grid__item p {
  margin: 0;
  font-size: 20px;
  color: #657585;
  margin-left: 42px;
  font-family: "Arial", sans-serif;
}
.services-content .quote-box {
  width: 461px;
  display: flex;
  padding: 40px;
  flex-flow: column;
  margin-left: auto;
  position: relative;
  margin-top: -180px;
  align-items: center;
  border-radius: 20px;
  justify-content: center;
  background-color: #f1f1f1;
}
.services-content .quote-box ul {
  padding: 0;
  margin-bottom: 0;
}
.services-content .quote-box li {
  gap: 13px;
  display: flex;
  list-style: none;
  color: #767676;
  font-size: 19.84px;
  position: relative;
  align-items: center;
  justify-content: center;
  font-family: "Arial", sans-serif;
}
.services-content .quote-box li:not(:last-child) {
  margin-bottom: 22px;
}
.services-content .quote-box li::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  background-image: url(../images/tick.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.services-content .quote-box .cta-button {
  margin-top: 39px;
  display: inline-block;
}
.services-content .services-section .grid__item:not(:last-child) {
  margin-bottom: 30px;
}
.services-content .services-section-content {
  padding: 17px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #909090;
  background-color: #f1f1f1;
}
.services-content .title-wrapper h2 {
  margin: 0 2rem 0 0;
  margin-left: 48px;
  font-size: 73.73px;
  line-height: 67.44px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}
.services-content .description {
  width: 100%;
  max-width: 455px;
  margin: 0 42px 0 auto;
}
.services-content .description p {
  margin: 0;
  font-size: 18px;
  color: #767676;
  font-family: "Arial", sans-serif;
}
.paragraph-section h2 {
  font-weight: 400;
  margin: 90px 0 70px;
  color: #fc7600;
  font-size: 94.76px;
  line-height: 73.6px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}
.paragraph-section .grid--desc p {
  margin: 0;
  font-size: 20px;
  color: #657585;
}
@media screen and (min-width: 1500px) {
  .services-content .description {
    margin: 0 92px 0 auto;
  }
  .services-content .icon-wrapper {
    margin-right: -65px;
  }
}
@media screen and (max-width: 1400px) {
  .services-section,
  .services-content .grid.main-content {
    margin: 0 15px;
  }
  .services-content .main-content .grid__item {
    padding: 0;
  }
  .services-section .grid__item.content-full-width,
  .paragraph-section .grid__item.content-full-width {
    max-width: calc(100% - 1rem);
  }
  .services-content .description {
    max-width: 375px;
  }
}
@media screen and (max-width: 1300px) {
  .our-services .main-banner h1 {
    font-size: 150px;
    line-height: 110px;
  }
  .services-content .description {
    max-width: 286px;
  }
}
@media only screen and (max-width: 1200px) {
  .our-services .main-banner h1 {
    font-size: 140px;
    line-height: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .our-services .main-banner h1 {
    text-align: center;
  }
  .services-content .grid.main-content .grid__item {
    width: calc(100% - 1rem);
    max-width: 100%;
  }
  .services-content .quote-box {
    width: calc(100% - 80px);
    margin-top: 30px;
  }
  .services-content .services-section-content {
    gap: 20px;
    flex-flow: column;
  }
  .services-content .grid__item.content-full-width img {
    max-width: 100%;
  }
  .services-content .title-wrapper h2 {
    margin: 0;
    text-align: center;
  }
  .services-content .description {
    max-width: 100%;
    text-align: center;
  }
  .services-content .services-section-content .icon-wrapper {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .our-services .main-banner h1 {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0;
  }
  .services-content .main-content .grid__item p {
    font-size: 16px;
  }
  .services-content .quote-box li {
    font-size: 16px;
    justify-content: flex-start;
  }
  .services-content .quote-box li::before {
    width: 30px;
    height: 30px;
  }
  .services-content .title-wrapper h2 {
    font-size: 53.73px;
    line-height: 47.44px;
  }
  .services-section .grid__item.content-full-width {
    padding: 0;
    max-width: calc(100% - 0rem);
  }
  .paragraph-section {
    justify-content: center;
    margin: 0 15px;
  }
  .paragraph-section .grid__item.content-full-width {
    padding: 0;
    max-width: 100%;
  }
  .paragraph-section h2 {
    font-size: 74.76px;
    /* line-height: 53.6px; */
    margin: 70px 0 50px;
  }
}


/* Contact us style */
.page-contact-us .form-section-wrapper {
  padding: 100px 0;
  background-image: url(../images/dots-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.page-contact-us .form-section {
  position: static;
}
@media screen and (max-width: 767px) {
  .page-contact-us .form-section-wrapper {
    padding: 80px 0 40px;
  }
}


/* Footer style */

footer {
  background-color: #ebebeb;
  padding: 60px 20px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo-column {
  width: 30%;
}

.logo-column a {
  display: inline-block;
}

.logo-desc {
  color: #778895;
  font-size: 20px;
  line-height: 30px;
  margin-top: 40px;
  font-family: "Arial", sans-serif;
}

.menus-column {
  width: 70%;
  display: flex;
}

.menu-column {
  flex: 1;
  max-width: 22%;
  margin-right: 20px;
}

.menu-column h4 {
  color: #778895;
  font-size: 40.72px;
  line-height: 37.25px;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
}

.menu-column ul {
  list-style-type: none;
  padding: 0;
}

.menu-column ul li {
  margin-bottom: 5px;
}

.menu-column ul li a {
  text-decoration: none;
  color: #778895;
  font-size: 20px;
  line-height: 48px;
  font-family: "Arial", sans-serif;
}

.copyright-container {
  text-align: center;
}

.copyright-container p {
  color: #778895;
  font-size: 20px;
}

/* Responsive styles */
@media only screen and (min-width: 768px) {
  .features-section {
    margin-bottom: 458px;
  }
}
@media only screen and (max-width: 1400px) {
  .count-boxes .count-box .count-box--title {
    font-size: 105.75px;
    line-height: 85.56px;
  }
  .count-boxes .count-box .count-box--sub-title {
    font-size: 54.43px;
    line-height: 40.04px;
  }
}
@media only screen and (max-width: 1300px) {
  .form-section {
    /* top: -200px; */
    max-width: 900px;
  }
  .form-section-wrapper img {
    min-height: 700px;
  }
  .about-content .grid.main-content .grid__item {
    text-align: center;
  }
}
@media only screen and (max-width: 1200px) {
  .features-section .grid--title {
    font-size: 105.75px;
    line-height: 85.56px;
  }
}
@media only screen and (max-width: 991px) {
  .desk-hide {
    display: block;
  }
  .mob-hide {
    display: none;
  }
  .header {
    height: auto;
    padding: 15px;
  }
  .logo {
    width: 156px; /* Maintain aspect ratio */
  }
  .logo img {
    width: 100%; /* Maintain aspect ratio */
    vertical-align: middle;
  }
  .menus {
    display: none; /* Hide menus on mobile */
    flex-grow: 0; /* Don't take up extra space */
  }
  .sidebar {
    display: none; /* Hide sidebar on mobile by default */
  }
  .sidebar-toggle {
    font-size: 23px;
    color: #778895;
  }
  .sidebar .menu-item::before {
    display: none;
  }
  .contact-us .menu-item {
    height: auto;
    width: auto;
    display: flex;
    color: #fff;
    font-size: 16px;
    justify-content: flex-start;
  }
  .image-with-text-wrapper {
    padding: 34px 0px;
    gap: 30px;
  }
  .image-column {
    max-width: 100%;
    text-align: center;
  }
  .text-column {
    padding: 20px;
    max-width: 100%;
  }
  .text-column h2 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 50px;
  }
  .menu-column {
    max-width: 100%;
  }
  .grid__item,
  .grid.grid--3-col .grid__item {
    width: calc(100% - 1rem);
    max-width: 100%;
  }
  .grid__item.content-vertical-center {
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
  }
  .grid__item.content-right {
    justify-content: center;
  }
  .grid__item.content-center:not(.content-full-width) {
    margin: 0 0 16%;
  }
  .content-wrapper img,
  .content-wrapper img.light-bulb {
    left: -9%;
    max-width: 18%;
  }
  .content-center .content-wrapper img.right-seprator {
    right: 0 !important;
    bottom: -26%;
    z-index: 1;
    left: 0;
    margin: auto;
    top: auto;
    max-width: 15%;
    transform: rotate(90deg);
  }
  .grid__item.content-full-width img {
    max-width: 60%;
  }
  .form-section {
    /* top: -150px; */
    max-width: 650px;
    padding: 60px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .hero-banner {
    height: 500px;
  }
  .hero-overlay h1 {
    margin-bottom: 25px;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0;
  }
  .cta-button {
    padding: 15px 55px;
    font-size: 16px;
  }
  .main-banner h1 {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0;
  }
  .about-content .grid.main-content {
    gap: 20px;
    padding: 40px 0;
    text-align: center;
  }
  .about-content .main-content .grid__item.right {
    text-align: center;
    order: 2;
  }
  .about-content .main-content .grid--title {
    font-size: 50px;
    line-height: 50px;
  }
  .count-boxes .count-box {
    width: auto;
    height: auto;
    padding: 48px;
  }
  .count-boxes .count-box .count-box--title {
    font-size: 60px;
    line-height: 60px;
  }
  .count-boxes .count-box .count-box--sub-title {
    font-size: 40.43px;
    line-height: 30.04px;
  }
}
@media only screen and (max-width: 767px) {
  .grid__item.content-vertical-center {
    margin-bottom: 2rem;
  }
  .features-section .grid--title {
    font-size: 50px;
    line-height: 50px;
  }
  .content-wrapper,
  .content-wrapper.last-box {
    padding: 20px;
    text-align: center;
    max-width: 100%;
  }
  .content-wrapper img:not(.right-seprator) {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }
  .grid__item.content-full-width img {
    max-width: 80%;
  }
  .content-center .content-wrapper img.right-seprator {
    bottom: -10%;
  }
  .feature--title {
    font-size: 36.35px;
    line-height: 30.39px;
  }
  .content-wrapper.last-box .feature--title {
    font-size: 55.54px;
    line-height: 45.44px;
  }
  .feature-desc {
    font-size: 16px;
  }
  .copyright-container p {
    font-size: 16px;
  }
  .form-section {
    position: static;
    padding: 60px 20px;
    box-shadow: none;
    max-width: calc(100% - 40px);
  }
  .form-title {
    font-size: 55px;
    line-height: 55px;
    margin-bottom: 2rem;
  }
  .form-group,
  .form-group.full-width {
    width: 100%;
    margin: 0 0 28px;
  }
  .form-section-wrapper img {
    display: none !important;
  }
  .count-boxes {
    padding-bottom: 40px;
  }
  .logos-slider {
    padding: 40px 0 80px;
  }
  .index .logos-slider,
  .our-services .logos-slider {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 575px) {
  .main-banner img {
    min-height: 150px;
  }
  .about-content .grid.main-content {
    padding: 40px 15px;
  }
  .about-content .main-content .grid--title {
    font-size: 40px;
    line-height: 40px;
  }
  .about-content .main-content .grid__item p {
    font-size: 15px;
  }
  footer {
    padding: 30px 15px;
  }
  .footer-container {
    gap: 1.5rem;
  }
  .logo-column,
  .menus-column {
    width: 100%;
  }
  .logo-desc {
    font-size: 17px;
    line-height: 30px;
    margin-top: 25px;
  }
  .logo-column img {
    max-width: 40%;
  }
  .menu-column h4 {
    font-size: 30px;
    line-height: 30px;
  }
  .menu-column ul li a {
    font-size: 17px;
    line-height: 40px;
  }
}

/* ================================== */

.footer-last{
  width: 40%;
  text-align: center;
}


@media only screen and (max-width: 575px) {
  .menus-column.custom_column {
      width: 100%;
      flex-wrap: wrap;
  }
  .footer-last {
    width: 100%;
}
.footer-last img {
  max-width: 100%;
}
}

.menus-column.custom_column .menu-column {
  flex: 1;
  max-width: 27%;
  margin-right: 20px;
}