@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
  scroll-behavior: smooth !important;
  /* overflow-x: hidden !important; */
}

body.lb-disable-scroll {
  overflow: hidden;
  /* Disable scrolling */
}

body {
  scroll-behavior: smooth !important;
  position: relative;
  z-index: 1;
  height: 100vh;
  font-weight: 100;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background-color: #525252;
}

body::-webkit-scrollbar-thumb {
  background-color: #d10000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
}

li {
  list-style: none;
}

@font-face {
  font-family: "IntroDemo"; /* Choose a descriptive name for your font */
  src: url("../fonts/INTRODEMO-BLACKCAPS.TTF") format("truetype"); /* Specify the path to your .ttf file and its format */
}
@font-face {
  font-family: "GothamBook"; /* Choose a descriptive name for your font */
  src: url("../fonts/gotham-book.ttf") format("truetype"); /* Specify the path to your .ttf file and its format */
}
@font-face {
  font-family: "GothamBold"; /* Choose a descriptive name for your font */
  src: url("../fonts/gotham-bold.ttf") format("truetype"); /* Specify the path to your .ttf file and its format */
}
@font-face {
  font-family: "GothamBlack"; /* Choose a descriptive name for your font */
  src: url("../fonts/gotham-black-regular.ttf") format("truetype"); /* Specify the path to your .ttf file and its format */
}

.container {
  width: 100%;
}

.content {
  max-width: 1680px;
  margin: auto;
  padding: 0px 16px;
}

.content.connect-gap {
  padding: 0px 168px;
  padding-left: 237px;
}

@media (min-width: 1951px) and (max-width: 3000px) {
  .content {
    max-width: 1680px;
    margin: auto;
    padding: 0px 16px;
  }
}
@media (min-width: 1025px) and (max-width: 1950px) {
  .content {
    max-width: 1680px;
    margin: auto;
    padding: 0px 80px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .content.connect-gap {
    padding: 0px 168px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .content {
    max-width: 1500px;
    margin: auto;
    padding: 0px 80px;
  }
  .content.connect-gap {
    max-width: 1500px;
    margin: auto;
    padding: 0px 80px;
  }
}

@media (max-width: 767px) {
  .content {
    max-width: 1500px;
    margin: auto;
    padding: 0px 36px;
  }
  .content.connect-gap {
    max-width: 1500px;
    margin: auto;
    padding: 0px 36px;
  }
}

/* Navigation bar styles start */
.navbar {
  position: fixed;
  z-index: 5;
  width: 100%;
  padding: 24px 0;
  background-color: #fff;
  transition: all 0.3s ease;
}

.navbar.sticky {
  background: #fff;
  padding: 10px 0;
  box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  -webkit-box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  -moz-box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
}

.navbar .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .menu-list {
  display: inline-flex;
}
ul#menu-main-menu {
  display: inline-flex;
}
.menu-list li a {
  position: relative;
  color: #020203;
  font-family: "Poppins";
  text-transform: uppercase;
  font-weight: 600;
  line-height: 16px;
  font-size: 16px;
  margin-left: 50px;
}

.menu-list li a:hover::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background: #d10000;
  bottom: 0;
}

.icon {
  color: #000;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.icon.cancel-btn {
  position: absolute;
  right: 24px;
  top: 39px;
  z-index: 0;
}

.logo img {
  max-width: 250px;
  width: 250px;
}

@media (max-width: 1025px) {
  body.disabledScroll {
    overflow: hidden !important;
  }

  .icon {
    display: block;
  }

  .icon.hide {
    display: none;
  }

  .navbar .menu-list {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 9px 0px #0000000f;
    max-width: 100%;
    display: block;
    padding: 130px 0px;
    text-align: left;
    transition: all 0.3s ease;
  }
  ul#menu-main-menu {
    display: block;
  }

  .navbar .menu-list.active {
    right: 0%;
  }

  .navbar .menu-list li {
    margin-top: 45px;
  }

  .navbar .menu-list li a {
    font-size: 24px;
    display: block;
    width: 100%;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .navbar .menu-list li a:focus {
    outline: none !important;
  }

  /* .logo img {
    width: 180px;
  } */
  .logo {
    position: relative;
    z-index: 2;
  }
  .logo img {
    max-width: 170px;
    width: 170px;
  }
  ul#menu-verve {
    margin-top: 110px;
  }

  .menu-list li a {
    margin-left: 86px;
  }

  .icon.cancel-btn {
    position: absolute;
    right: 54px;
    top: 45px;
    z-index: 0;
  }
  ul#menu-main-menu {
    display: block;
  }
}

@media (min-width: 1026px) and (max-width: 1199px) {
  .menu-list li a {
    margin-left: 30px;
  }
  ul#menu-main-menu {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar .menu-list {
    right: -100%;
  }
  .navbar .menu-list.active {
    right: 0%;
    visibility: visible;
    opacity: 1;
  }
  .menu-list li a {
    margin-left: 38px;
  }
  .logo {
    position: relative;
    z-index: 2;
  }
  ul#menu-main-menu {
    margin-top: 110px;
  }
  .menu-list li a {
    margin-left: 86px;
  }
  .icon.cancel-btn {
    position: absolute;
    right: 54px;
    top: 30px;
    z-index: 0;
  }
  ul#menu-main-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .navbar .menu-list {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 9px 0px #0000000f;
    max-width: 100%;
    display: block;
    padding: 130px 0px;
    text-align: left;
    transition: all 0.3s ease;
  }
  .navbar .menu-list.active {
    right: 0%;
  }
  ul#menu-main-menu {
    display: block;
  }
}

/* Navigation bar styles end */

/* Home page styles satrt */
section.trackbar-banner {
  padding-top: 440px;
  padding-bottom: 300px;
}

.trackbar-wrapper {
  position: relative;
}
.trackbar-content-wrap {
  background-color: #ececec;
  padding-top: 73px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 103px;
  padding-bottom: 73px;
  border-radius: 39px;
  box-shadow: 12px 12px 18px 7px rgb(0 0 0 / 17%);
  -webkit-box-shadow: 12px 12px 18px 7px rgb(0 0 0 / 17%);
  -moz-box-shadow: 12px 12px 18px 7px rgb(0 0 0 / 17%);
}
.trackbar-content-wrap h3 {
  color: #525252;
  font-family: "Poppins";
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 32px;
}
input.trackbar-input {
  background-color: #fff;
  border-radius: 11px;
}
.trackbar-intput-wrapper {
  /* margin-bottom: 30px; */
  margin-top: 30px;
  position: relative;
}
input.trackbar-input {
  position: relative;
  background-color: #fff;
  border-radius: 11px;
  border: none;
  padding: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 512px;
  box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  -webkit-box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  -moz-box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  font-size: 16px;
  font-family: "Poppins";
  font-weight: 400;
}
button.input-track-button {
  position: unset;
  cursor: pointer;
  border: none;
  background-color: #d10000;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 50px;
  padding-right: 50px;
  border-radius: 13px;
  color: #fff;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 24px;
  /* top: 15px;
  left: 20rem; */
}
.trackbar-content-wrap p {
  color: #525252;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.trackbar-banner-img {
  position: absolute;
  top: -254px;
  right: -77px;
}
.trackbar-banner-img img {
  width: 100%;
}
@media (min-width: 1367px) and (max-width: 1440px) {
  section.trackbar-banner {
    padding-top: 340px;
    overflow: hidden;
  }
  .trackbar-banner-img img {
    width: 80%;
  }
  .trackbar-banner-img {
    position: absolute;
    top: -160px;
    right: -238px;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  section.trackbar-banner {
    padding-top: 254px;
    overflow: hidden;
  }
  .trackbar-banner-img img {
    width: 60%;
  }
  .trackbar-banner-img {
    position: absolute;
    top: -74px;
    right: -400px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  section.trackbar-banner {
    padding-bottom: 150px;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  section.trackbar-banner {
    padding-top: 254px;
    overflow: hidden;
  }
  .trackbar-banner-img img {
    width: 40%;
  }
  .trackbar-banner-img {
    position: absolute;
    top: 12px;
    right: -562px;
  }
  input.trackbar-input {
    width: 460px;
  }
  button.input-track-button {
    left: 17rem;
  }
}
@media (min-width: 821px) and (max-width: 1024px) {
  section.trackbar-banner {
    padding-top: 254px;
    overflow: hidden;
  }
  .trackbar-banner-img img {
    width: 40%;
  }
  .trackbar-banner-img {
    position: absolute;
    top: 12px;
    right: -562px;
  }
  input.trackbar-input {
    width: 460px;
  }
  button.input-track-button {
    left: 17rem;
  }
}
@media (min-width: 768px) and (max-width: 820px) {
  section.trackbar-banner {
    padding-top: 254px;
    overflow: hidden;
  }
  .trackbar-banner-img img {
    width: 20%;
  }
  .trackbar-banner-img {
    position: absolute;
    top: 12px;
    right: -562px;
  }
  input.trackbar-input {
    width: 460px;
  }
  button.input-track-button {
    left: 17rem;
  }
  .trackbar-banner-img {
    position: absolute;
    top: 240px;
    right: -760px;
  }
}
@media (min-width: 391px) and (max-width: 767px) {
  section.trackbar-banner {
    padding-top: 190px;
    padding-bottom: 100px;
  }
  .trackbar-banner-img {
    position: unset;
    margin-top: 40px;
  }
  .trackbar-content-wrap {
    padding-top: 34px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
  }
  input.trackbar-input {
    position: relative;
    background-color: #fff;
    border-radius: 11px;
    border: none;
    padding: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
  }
  button.input-track-button {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    top: 11px;
    left: 10rem;
  }
  .trackbar-content-wrap p br {
    display: none;
  }
  .trackbar-content-wrap h3 {
    font-size: 24px;
  }
}
@media (min-width: 361px) and (max-width: 390px) {
  section.trackbar-banner {
    padding-top: 190px;
    padding-bottom: 150px;
  }
  .trackbar-banner-img {
    position: unset;
    margin-top: 40px;
  }
  .trackbar-content-wrap {
    padding-top: 34px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
  }
  input.trackbar-input {
    position: relative;
    background-color: #fff;
    border-radius: 11px;
    border: none;
    padding: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
  }
  button.input-track-button {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    top: 11px;
    left: 8rem;
  }
  .trackbar-content-wrap p br {
    display: none;
  }
  .trackbar-content-wrap h3 {
    font-size: 24px;
  }
}
@media (min-width: 200px) and (max-width: 360px) {
  section.trackbar-banner {
    padding-top: 190px;
    padding-bottom: 150px;
  }
  .trackbar-banner-img {
    position: unset;
    margin-top: 40px;
  }
  .trackbar-content-wrap {
    padding-top: 34px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
  }
  input.trackbar-input {
    position: relative;
    background-color: #fff;
    border-radius: 11px;
    border: none;
    padding: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
  }
  button.input-track-button {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    top: 11px;
    left: 6rem;
  }
  .trackbar-content-wrap p br {
    display: none;
  }
  .trackbar-content-wrap h3 {
    font-size: 24px;
  }
}
/* about section start */
section.home-about-section {
  padding-bottom: 150px;
  overflow: hidden;
}
.home-about-grid-block h4 {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 24px;
  color: #525252;
  margin-bottom: 21px;
}
h1.main-title {
  font-size: 92px;
  line-height: 92px;
  color: #d10000;
  font-family: "Poppins";
  font-weight: 700;
  min-height: 222px;
}
p.main-text {
  color: #525252;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.home-about-goal-wrap h3 {
  color: #525252;
  font-family: "Poppins";
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 32px;
}
.home-about-goal-wrap p {
  color: #525252;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.home-about-goal-wrap {
  padding: 42px;
  padding-left: 67px;
  padding-right: 67px;
  background-color: #fff;
  box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  -webkit-box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  -moz-box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  border-radius: 39px;
  margin-bottom: 29px;
}
.home-about-goal-wrap:last-child {
  margin-bottom: 0px;
}
.home-about-grid-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.home-about-grid-content {
  width: 50%;
}
@media (max-width: 1024px) {
  .home-about-grid-content {
    width: 100%;
  }
  h1.main-title {
    min-height: unset;
    margin-bottom: 50px;
  }
  p.main-text br {
    display: none;
  }
  p.main-text {
    margin-bottom: 50px;
  }
  section.home-about-section {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .home-about-goal-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
  .home-about-goal-wrap p br {
    display: none;
  }
}
/* about section end */
/* gallery section start */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
}
.swiper-slide:hover {
  transform: scale(1.1);
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.main-gallery-section {
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  section.main-gallery-section {
    padding-bottom: 100px;
  }
}
/* gallery section end */
/* values section start */
section.main-value-section {
  padding-bottom: 150px;
  overflow: hidden;
}
.home-value-main-wrapper {
  background-color: #fff;
  padding-top: 103px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 103px;
  border-radius: 39px;
  box-shadow: 0px 25px 18px 0px rgb(0 0 0 / 11%);
  -webkit-box-shadow: 0px 25px 18px 0px rgb(0 0 0 / 11%);
  -moz-box-shadow: 0px 25px 18px 0px rgb(0 0 0 / 11%);
}
h2.secondary-title {
  color: #525252;
  font-family: "Poppins";
  font-weight: 700;
  margin-bottom: 114px;
  font-size: 42px;
}
.home-value-grid-block h3 {
  color: #525252;
  font-family: "Poppins";
  font-weight: 700;
  margin-bottom: 61px;
  font-size: 32px;
  text-transform: uppercase;
}
.home-value-grid-block p {
  color: #525252;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.home-value-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 130px;
}
.home-value-grid-content {
  width: 50%;
}
@media (max-width: 1024px) {
  section.main-value-section {
    padding-bottom: 100px;
  }
  .home-value-grid-block p br {
    display: none;
  }
  .home-value-grid-content {
    width: 100%;
  }
  .home-value-grid {
    row-gap: 60px;
  }
  .home-value-main-wrapper {
    padding-top: 50px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 50px;
  }
}
/* values section end */

/* what we do section start */
section.do-home-main-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;
}
.do-home-grid-block h1 {
  font-size: 92px;
  line-height: 80px;
  color: #d10000;
  font-family: "IntroDemo";
  margin-bottom: 131px;
}
.do-home-grid-block h1 span {
  color: #000;
  font-family: "IntroDemo";
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
}
.do-sub-content-wrap p {
  color: #000;
  font-family: "GothamBook";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.do-sub-content-wrap {
  margin-bottom: 100px;
}
.do-sub-content-wrap:last-child {
  margin-bottom: 0px;
}
.do-sub-content-wrap h4 {
  font-size: 28px;
  line-height: 28px;
  color: #000;
  font-family: "IntroDemo";
  margin-bottom: 41px;
}
.do-home-grid-block img {
  width: 100%;
}
.do-home-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.do-home-grid-content {
  width: 50%;
}
img.do-bg-img {
  width: 100%;
}
@media (max-width: 1024px) {
  section.do-home-main-section {
    padding-bottom: 0px;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .do-home-grid-block h1 {
    font-size: 84px;
    line-height: 84px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .do-home-grid-block h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .do-home-grid-block h1 span {
    font-size: 38px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .do-home-grid-block h1 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 50px;
  }
  .do-home-grid-block h1 span {
    font-size: 38px;
    line-height: 38px;
  }
  .do-home-grid-content {
    width: 100%;
  }
  .do-sub-content-wrap {
    margin-bottom: 50px;
  }
  .do-sub-content-wrap h4 br {
    display: none;
  }
  .do-home-grid {
    flex-direction: column-reverse;
    row-gap: 90px;
  }
}
/* what we do section end */

/* why xmile section start */
section.whyx-main-section {
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
}
.whyx-grid-block h1 {
  font-size: 120px;
  line-height: 120px;
  color: rgb(209, 0, 0);
  font-family: "IntroDemo";
}
.whyx-grid-block h1 span {
  color: #000;
}
.whyx-grid-block h2 {
  color: #000;
  font-weight: 700;
  font-size: 42px;
  font-family: "IntroDemo";
  margin-bottom: 41px;
}
.whyx-grid-block p {
  color: #000;
  font-family: "GothamBook";
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.whyx-main-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.whyx-grid-content {
  width: 50%;
}

@media (max-width: 1024px) {
  section.whyx-main-section {
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
  }
  .whyx-grid-content {
    width: 100%;
  }
  .whyx-grid-block h1 br {
    display: none;
  }
  .whyx-grid-block h1 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 50px;
  }
  .whyx-grid-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
/* why xmile section end */
/* Home page styles end */

/* Footer css start */
footer.main-footer {
  background-color: #cb0000;
  padding-top: 120px;
  padding-bottom: 120px;
}
h1.main-footer-title {
  font-family: "IntroDemo";
  margin-bottom: 22px;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  color: #fff;
}
p.main-footer-text {
  text-align: center;
  font-family: "GothamBook";
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}
p.main-footer-sub-text {
  text-align: center;
  font-family: "GothamBook";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.main-footer-social-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 81px;
  margin-top: 100px;
  text-align: center;
}
a.footer-social-link {
  color: #fff;
  font-family: "GothamBook";
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.social-footer-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-footer-icon-wrap i {
  margin-right: 13px;
  font-size: 32px;
}
.main-footer-social-grid-content {
  width: 26%;
}
.main-footer-social-grid-block {
  border-right: 2px solid #fff;
}
.main-footer-social-grid-block.last-social-block {
  border: none;
  margin-left: 80px;
}
@media (min-width: 1392px) and (max-width: 1582px) {
  .main-footer-social-grid-content {
    width: 30%;
  }
}
@media (min-width: 1025px) and (max-width: 1393px) {
  .main-footer-social-grid-content {
    width: 33%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .main-footer-social-grid-content {
    width: 100%;
  }
  .main-footer-social-grid-block {
    border-right: none;
  }
  .main-footer-social-grid-block.last-social-block {
    border: none;
    margin-left: 0px;
  }
  .social-footer-icon-wrap {
    justify-content: unset;
  }
  .main-footer-social-grid {
    row-gap: 50px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .main-footer-social-grid-content {
    width: 100%;
  }
  .main-footer-social-grid-block {
    border-right: none;
  }
  .main-footer-social-grid-block.last-social-block {
    border: none;
    margin-left: 0px;
  }
  .social-footer-icon-wrap {
    justify-content: center;
  }
  .main-footer-social-grid {
    row-gap: 50px;
    margin-top: 40px;
  }
}
/* Footer css end */

/* Solution page css start */
section.main-solution-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 260px;
  padding-bottom: 150px;
}
.solution-content-wrapper h2 {
  font-size: 62px;
  line-height: 62px;
  color: #d10000;
  font-family: "IntroDemo";
  margin-bottom: 163px;
  text-align: center;
}
h4.solution-title.solution-title-right-align {
  text-align: right;
  font-family: "GothamBold";
  font-size: 22px;
  line-height: 22px;
  color: #000;
}
h4.solution-title.solution-title-left-align {
  text-align: left;
  font-family: "GothamBold";
  font-size: 22px;
  line-height: 22px;
  color: #000;
}
p.solution-text.solution-text-right-align {
  color: #000000;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
}
p.solution-text.solution-text-left-align {
  color: #000000;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}
.main-solution-content-wrap {
  border-radius: 39px;
  padding: 50px;
  min-height: 314px;
  box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  -webkit-box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
  -moz-box-shadow: 8px 11px 16px 7px rgb(0 0 0 / 8%);
}
.solution-title-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 41px;
  margin-bottom: 43px;
}
.solution-main-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 66px;
  row-gap: 83px;
}
.solution-title-wrap.solution-block-right-align {
  justify-content: flex-end;
}
.solution-title-wrap.solution-block-left-align {
  justify-content: flex-start;
}
.solution-main-grid-content {
  width: 34%;
}
.solution-title-wrap img {
  width: 80px;
  height: 80px;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .main-solution-content-wrap {
    min-height: 340px;
  }
  .solution-main-grid-content {
    width: 40%;
  }
}
@media (min-width: 821px) and (max-width: 1280px) {
  .main-solution-content-wrap {
    min-height: 340px;
  }
  .solution-main-grid-content {
    width: 46%;
  }
}
@media (min-width: 768px) and (max-width: 820px) {
  .main-solution-content-wrap {
    min-height: unset;
  }
  .solution-main-grid-content {
    width: 86%;
  }
}
@media (max-width: 767px) {
  .main-solution-content-wrap {
    min-height: unset;
    padding: 30px;
  }
  .solution-content-wrapper h2 {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 100px;
  }
  .solution-main-grid-content {
    width: 100%;
  }
  section.main-solution-wrapper {
    padding-bottom: 100px;
  }
}
/* inductries section start */
section.industries-section {
  overflow: hidden;
  position: relative;
  padding-bottom: 150px;
}
.industries-content-wrapper h2 {
  font-size: 62px;
  line-height: 62px;
  color: #d10000;
  font-family: "IntroDemo";
  margin-bottom: 163px;
  text-align: center;
}
.industries-content-wrapper h2 span {
  color: #000;
}
.industries-main-grid-block h4 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  color: #4c4c4c;
  margin-top: 102px;
}
.image-block-in {
  background-color: #cfcfcf;
  border-radius: 31px;
  width: 200px;
  height: 200px;
  margin: auto;
}
.industries-main-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 187px;
  row-gap: 197px;
  text-align: center;
}
.industries-main-grid-content {
  width: 26%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .industries-main-grid-content {
    width: 34%;
  }
  section.industries-section {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .industries-content-wrapper h2 {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 100px;
  }
  .industries-main-grid-content {
    width: 100%;
  }
  .industries-main-grid {
    row-gap: 70px;
  }
  .industries-main-grid-block h4 {
    margin-top: 70px;
  }
  section.industries-section {
    padding-bottom: 100px;
  }
}
/* inductries section end */
/* Solution page css end */
.services-main-content-wrapper {
  margin-bottom: 159px;
}
.services-main-content-wrapper:last-child {
  margin-top: 250px;
  margin-bottom: 0px;
}
h3.serives-title {
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 42px;
  font-family: "GothamBlack";
  margin-bottom: 85px;
}
p.services-text {
  color: #000;
  font-family: "GothamBook";
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  h3.serives-title {
    font-size: 32px;
    line-height: 32px;
  }
  p.services-text br {
    display: none;
  }
  .services-main-content-wrapper:last-child {
    margin-top: 100px;
    margin-bottom: 0px;
  }
}
/* Services page css start */
/* Services page css end */
