/* google fonts link */
/* Public Sans */
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/* poppins */
@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&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --text-blue: #0294d2;
  --text-black: #252525;
  --text-paragraph: #737373;
  --poppins: "Poppins", sans-serif !important;
  --public-sans: "Public Sans", sans-serif !important;
  --gradient: linear-gradient(to right, #345ca9, #0294d2);
}

@media (max-width: 768px) {
  html {
    overflow-x: hidden !important;
  }
}

h1 {
  color: #252525 !important;
  font-weight: bold !important;
}
@media (max-width: 768px) {
  h1 {
    font-size: x-large !important;
    line-height: normal !important;
  }
}
@media (max-width: 400px) {
  h1 {
    font-size: large !important;
    line-height: normal !important;
  }
}

span {
  font-weight: bold !important;
}
@media (max-width: 768px) {
  span {
    font-size: x-large !important;
    line-height: normal !important;
  }
}
@media (max-width: 400px) {
  span {
    font-size: large !important;
    line-height: normal !important;
  }
}

h2,
h3 {
  color: #252525 !important;
}
@media (max-width: 768px) {
  h2,
  h3 {
    font-size: large !important;
    line-height: none !important;
  }
}

h2,
h4 {
  color: #252525 !important;
}
@media (max-width: 768px) {
  h2,
  h4 {
    font-size: small !important;
    line-height: none !important;
  }
}

@media (max-width: 768px) {
  p {
    font-size: smaller !important;
    line-height: normal !important;
  }
}
@media (max-width: 400px) {
  p {
    font-size: x-small !important;
    line-height: 15px !important;
  }
}

html {
  scroll-behavior: smooth !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

a {
  text-decoration: none !important;
}

header {
  font-family: var(--public-sans);
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
header .header-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3.5rem 2rem;
  z-index: 11;
  position: relative;
}
header .nav-bar.sticky-bar {
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 11;
  width: 100%;
  padding: 2rem 2rem;
  transition: all 0.5s ease;
}
@media (max-width: 1044px) {
  header .nav-bar {
    justify-content: space-between;
    padding: 2rem 2rem;
  }
}
header .nav-bar .logo img {
  width: 100%;
}
@media (max-width: 500px) {
  header .nav-bar .logo img {
    width: 80%;
  }
}
@media (max-width: 350px) {
  header .nav-bar .logo img {
    width: 70%;
  }
}
header .nav-bar .nav-links {
  /* Responsive styles */
}
header .nav-bar .nav-links .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
header .nav-bar .nav-links .menu li {
  position: relative;
  font-size: 18px;
  padding-left: 2rem;
}
header .nav-bar .nav-links .menu li a {
  color: #000000;
  font-size: 18px;
}
header .nav-bar .nav-links .menu li a.active {
  color: var(--text-blue);
}
@media (max-width: 1044px) {
  header .nav-bar .nav-links .menu li a.active {
    color: #ffffff;
    text-decoration: underline !important;
    text-underline-offset: 5px;
  }
}
header .nav-bar .nav-links .menu li a:hover {
  color: var(--text-blue);
}
header .nav-bar .nav-links .menu .reponsive-nav-btn {
  display: none;
}
@media (max-width: 1044px) {
  header .nav-bar .nav-links .menu .reponsive-nav-btn {
    display: block;
    background-color: #ffffff;
    padding: 0.5rem;
    font-size: 14px;
    color: var(--text-blue);
    border-radius: 10px;
  }
}
header .nav-bar .nav-links .dropdown {
  cursor: pointer;
}
header .nav-bar .nav-links .dropdown div.active {
  color: var(--text-blue) !important;
}
@media (max-width: 1044px) {
  header .nav-bar .nav-links .dropdown div.active {
    color: #ffffff !important;
    text-decoration: underline !important;
    text-underline-offset: 5px !important;
  }
}
header .nav-bar .nav-links .dropdown div:hover {
  color: var(--text-blue) !important;
}
@media (max-width: 1044px) {
  header .nav-bar .nav-links .dropdown div:hover {
    color: #ffffff !important;
  }
}
header .nav-bar .nav-links .dropdown i {
  margin-left: 1rem;
}
@media (max-width: 1280px) {
  header .nav-bar .nav-links .dropdown i {
    margin-left: 0.3rem;
  }
}
@media (max-width: 1071px) and (min-width: 1044px) {
  header .nav-bar .nav-links .dropdown i {
    margin-top: 0.3rem;
  }
}
header .nav-bar .nav-links .dropdown-content {
  display: none;
  position: absolute;
  left: 35px;
  top: 105%;
  background-color: var(--text-blue);
  border: 1px solid #ccc;
  z-index: 1;
  padding: 10px 0;
  list-style: none;
  width: 180px !important;
  border-radius: 10px;
}
header .nav-bar .nav-links .dropdown-content a {
  font-size: large;
  color: #ffffff !important;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}
header .nav-bar .nav-links .dropdown-content a:hover {
  padding-left: 0.2rem;
}
@media (max-width: 1044px) {
  header .nav-bar .nav-links .dropdown-content {
    display: none;
    height: 0;
    position: static;
  }
}
header .nav-bar .nav-links .dropdown:hover .dropdown-content {
  display: inline-block;
  padding: 0.5rem 0.5rem;
}
header .nav-bar .nav-links .dropdown:hover .dropdown-content li {
  padding: 0;
  padding-bottom: 0.5rem;
}
@media (max-width: 1044px) {
  header .nav-bar .nav-links .dropdown:hover .dropdown-content {
    height: -moz-fit-content;
    height: fit-content;
    background-color: transparent;
    border: none;
  }
}
@media (max-width: 600px) {
  header .nav-bar .nav-links .menu {
    display: flex;
    flex-direction: column;
  }
  header .nav-bar .nav-links .dropdown-content {
    width: 100%;
  }
}
@media (max-width: 1240px) {
  header .nav-bar .nav-links .menu li a {
    font-size: 16px;
  }
  header .nav-bar .nav-links .menu .dropdown {
    font-size: 16px;
  }
}
@media (max-width: 1071px) {
  header .nav-bar .nav-links .menu li {
    display: flex;
    align-items: flex-start;
  }
  header .nav-bar .nav-links .menu li a {
    font-size: 14px;
  }
  header .nav-bar .nav-links .menu .dropdown {
    font-size: 14px;
  }
}
@media (max-width: 1044px) {
  header .nav-bar .nav-links {
    position: fixed;
    top: 0;
    right: -10000px;
    width: 50%;
    background-color: var(--text-blue);
    height: 100vh;
    z-index: 10;
  }
  header .nav-bar .nav-links .menu {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 4rem;
  }
  header .nav-bar .nav-links .menu li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0;
  }
  header .nav-bar .nav-links .menu li a {
    color: #ffffff;
  }
}
header .nav-bar .nav-links #close-nav {
  display: none;
}
@media (max-width: 1044px) {
  header .nav-bar .nav-links #close-nav {
    display: block;
    position: absolute;
    top: 16px;
    left: 20px;
    color: #ffffff;
    font-size: x-large;
  }
}
header .nav-bar .nav-btn {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
}
header .nav-bar .nav-btn::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
header .nav-bar .nav-btn:hover {
  color: #ffffff !important;
}
header .nav-bar .nav-btn:hover a {
  color: #ffffff !important;
}
header .nav-bar .nav-btn:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  header .nav-bar .nav-btn {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  header .nav-bar .nav-btn {
    padding: 5px 20px;
    font-size: small !important;
  }
}
header .nav-bar .nav-btn a {
  color: var(--text-blue);
  font-size: 20px;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media (max-width: 1170px) {
  header .nav-bar .nav-btn a {
    font-size: 15px !important;
  }
}
@media (max-width: 1170px) {
  header .nav-bar .nav-btn {
    padding: 8px 25px;
    font-size: 15px !important;
  }
}
@media (max-width: 1044px) {
  header .nav-bar .nav-btn {
    display: none;
  }
}
header .nav-bar #nav-open {
  display: none;
}
@media (max-width: 1044px) {
  header .nav-bar #nav-open {
    display: block;
    font-size: x-large;
    color: var(--text-blue);
    margin-bottom: 1rem;
  }
}
header .hero-sec {
  padding-top: 2rem;
}
header .hero-sec .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  header .hero-sec .container {
    padding-bottom: 1.5rem;
  }
}
header .hero-sec .container .heading-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .hero-sec .container .heading-text img:nth-child(1) {
  width: 43px;
  height: auto;
}
@media (max-width: 768px) {
  header .hero-sec .container .heading-text img:nth-child(1) {
    width: 25px !important;
  }
}
header .hero-sec .container .heading-text img:nth-child(2) {
  width: 90px;
  height: auto;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  header .hero-sec .container .heading-text img:nth-child(2) {
    width: 50px !important;
  }
}
header .hero-sec .container .heading-text span {
  font-weight: 300;
  color: #252525;
  font-family: var(--poppins);
  font-size: 30px;
  padding-top: 0.4rem;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  header .hero-sec .container .heading-text span {
    font-size: large !important;
    padding: 0;
  }
}
header .hero-sec .container h1 {
  max-width: 1000px;
  text-align: center;
  font-weight: 800;
  width: 100%;
  margin-top: 1rem;
  font-family: var(--poppins);
  line-height: 55px;
}
header .hero-sec .container h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  header .hero-sec .container h1 span {
    font-size: x-large !important;
  }
}
@media (max-width: 768px) {
  header .hero-sec .container h1 span {
    font-size: large !important;
  }
}
header .hero-sec .container p {
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  max-width: 1118px;
  text-align: center;
  margin-top: 1rem;
  line-height: 25px;
  width: 100%;
}
@media (max-width: 768px) {
  header .hero-sec .container p {
    width: 100% !important;
  }
}
header .hero-sec .container a {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
  font-family: var(--poppins);
  font-size: 20px !important;
  transition: all 0.5s ease-in;
  margin-top: 1rem;
}
header .hero-sec .container a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
header .hero-sec .container a:hover {
  color: #ffffff !important;
}
header .hero-sec .container a:hover a {
  color: #ffffff !important;
}
header .hero-sec .container a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  header .hero-sec .container a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  header .hero-sec .container a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
header .hero-sec .container .header-dasboard-img {
  margin-top: 2rem;
  width: 80%;
}

.brands {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .brands {
    padding: 2.5rem 0;
  }
}
@media (max-width: 400px) {
  .brands {
    padding: 2.5rem 0;
    padding-bottom: 0;
    margin-bottom: 2rem;
  }
}
.brands .container h1 {
  font-family: var(--poppins);
  font-weight: 600;
  text-align: center;
}
.brands .container h1 span {
  color: var(--text-blue);
}
@media (max-width: 768px) {
  .brands .container h1 {
    margin: 0;
  }
}
.brands .container .brandSwiper {
  padding-top: 2rem;
  max-width: 1050px;
  width: 100%;
}
.brands .container .brandSwiper img {
  width: 80%;
}
.brands .container .brandSwiper .last-img {
  width: 50%;
}
@media (max-width: 768px) {
  .brands .container .brandSwiper .last-img {
    width: 25%;
  }
}

.why-choose {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  background-color: #f2f2f2;
}
@media (max-width: 1400px) and (min-width: 991px) {
  .why-choose .container {
    max-width: 100%;
    padding: 0 2rem;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div {
  padding-top: 6rem;
}
@media (max-width: 600px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .top-div {
    padding-top: 2.5rem;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div a {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
  margin-top: 1rem;
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div a:hover a {
  color: #ffffff !important;
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div {
  padding-top: 3rem;
}
@media (max-width: 991px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div img {
  width: 20px !important;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose .container .row:nth-child(1) div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose .container .row:nth-child(1) div:nth-child(2) img {
  width: 100%;
  height: auto;
  transform: scale(1.5);
}
@media (max-width: 1477px) {
  .why-choose .container .row:nth-child(1) div:nth-child(2) img {
    transform: scale(1.2);
  }
}
@media (max-width: 991px) {
  .why-choose .container .row:nth-child(1) div:nth-child(2) img {
    transform: scale(1);
  }
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .top-div a {
  margin-top: 1rem;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 30px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div {
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div img {
  width: 20px;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose .container .row:nth-child(2) div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose .container .row:nth-child(2) div:nth-child(2) img {
  width: 100%;
  height: auto;
  transform: scale(1.4);
  margin-top: -19re;
}
@media (max-width: 991px) {
  .why-choose .container .row:nth-child(2) div:nth-child(2) img {
    transform: scale(1);
  }
}

.added-expertise {
  background-color: #f2f2f2;
  width: 100%;
  overflow: hidden;
  display: inline-block;
  margin-top: -1rem;
}
.added-expertise .container .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  margin-top: 0;
}
.added-expertise .container .heading .lin-div {
  flex: 2;
  height: 3px;
  background-color: rgba(37, 37, 37, 0.2);
  border-radius: 5px;
}
.added-expertise .container .heading p {
  color: var(--text-blue);
  flex: 1;
  margin: 0;
  text-align: center;
  letter-spacing: 3px;
  white-space: nowrap;
}
@media (max-width: 1400px) {
  .added-expertise .container .heading p {
    margin: 1rem;
  }
}
.added-expertise .container .row {
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .added-expertise .container .row {
    padding-top: 0;
  }
}
.added-expertise .container .row div:nth-child(1) {
  z-index: 5;
  padding-top: 1rem;
}
.added-expertise .container .row div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
}
.added-expertise .container .row div:nth-child(1) .top-div h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.added-expertise .container .row div:nth-child(1) .top-div p {
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
  margin-top: 1.5rem;
}
.added-expertise .container .row div:nth-child(1) .top-div .row {
  padding: 0;
}
.added-expertise .container .row div:nth-child(1) .top-div .row div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.5rem;
}
.added-expertise .container .row div:nth-child(1) .top-div .row div h6 {
  margin-top: 0.8rem;
  padding-left: 1rem;
}
.added-expertise .container .row div:nth-child(1) .top-div .row div img {
  width: 20px;
  height: auto;
}
.added-expertise .container .row div:nth-child(1) .top-div a {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
  font-size: 16px !important;
  padding: 12px 25px;
  margin-top: 1.5rem;
}
.added-expertise .container .row div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.added-expertise .container .row div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.added-expertise .container .row div:nth-child(1) .top-div a:hover a {
  color: #ffffff !important;
}
.added-expertise .container .row div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .added-expertise .container .row div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .added-expertise .container .row div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.added-expertise .container .row div:nth-child(2) {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.added-expertise .container .row div:nth-child(2) img {
  width: 150%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
}
@media (max-width: 991px) {
  .added-expertise .container .row div:nth-child(2) img {
    transform: scale(1);
  }
}

.testimonial {
  background-color: #f9f9f9;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .testimonial {
    padding: 0rem 0;
    padding-bottom: 1rem;
  }
}
.testimonial .container h1 {
  font-family: var(--poppins);
  text-align: center;
}
.testimonial .container h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.testimonial .container p {
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
  margin-top: 1.5rem;
  text-align: center;
}
.testimonial .container .row {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .testimonial .container .row {
    padding: 0;
    padding-top: 2rem;
  }
}
.testimonial .container .row div {
  display: flex;
  justify-content: space-around;
  margin-bottom: 3rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .testimonial .container .row div {
    margin-bottom: 2rem;
    gap: 1rem;
  }
}
.testimonial .container .row div .user-img {
  width: 78px;
  height: auto;
  position: relative;
  transition: all 0.5s ease;
}
.testimonial .container .row div .user-img img {
  width: 100%;
  height: auto;
}
.testimonial .container .row div .user-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* White transparent shade */
  z-index: 1;
  pointer-events: none; /* Allows interaction with the image */
  transition: background-color 0.3s ease; /* Optional: Smooth transition effect */
  transition: all 0.5s ease;
}
.testimonial .container .row div .user-img:hover::before {
  background-color: transparent;
}
.testimonial .container .row div .user-img.active {
  transform: scale(1.3);
}
.testimonial .container .row div .user-img.active::before {
  content: "";
  background-color: transparent;
}
.testimonial .container .row .user-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial .container .row .user-review .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
@media (max-width: 768px) {
  .testimonial .container .row .user-review .heading h4 {
    margin: 0;
  }
}
.testimonial .container .row .user-review .heading p {
  margin: 0;
}
.testimonial .container .row .user-review p {
  margin: 0;
  margin-top: 2rem;
  font-family: var(--public-sans);
  max-width: 1108px;
  width: 100%;
}
@media (max-width: 768px) {
  .testimonial .container .row .user-review p {
    margin-top: 0;
  }
}

.after-testiminial {
  padding-top: 1rem;
  padding-bottom: 13rem;
  background-color: #f9f9f9;
}
@media (max-width: 991px) {
  .after-testiminial {
    padding-bottom: 25rem;
  }
}
@media (max-width: 500px) {
  .after-testiminial {
    padding-bottom: 27rem;
  }
}
.after-testiminial .container h1 {
  font-family: var(--poppins);
  text-align: center;
}
.after-testiminial .container h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.after-testiminial .container .row {
  padding: 3rem 3rem;
}
@media (max-width: 1200px) {
  .after-testiminial .container .row {
    padding: 0 0;
    padding-top: 3rem;
  }
}
.after-testiminial .container .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.after-testiminial .container .row div .content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .after-testiminial .container .row div .content {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1200px) {
  .after-testiminial .container .row div .content {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .after-testiminial .container .row div .content {
    max-width: 100%;
  }
}
.after-testiminial .container .row div .content img {
  transition: filter 0.3s ease; /* Smooth transition */
  width: 43px;
  height: auto;
}
.after-testiminial .container .row div .content h3 {
  font-family: var(--poppins);
  font-weight: 600;
  color: #252525;
  transition: all 0.5s ease;
}
.after-testiminial .container .row div .content p {
  transition: all 0.5s ease;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
}
@media (max-width: 768px) {
  .after-testiminial .container .row div .content p {
    margin: 0;
  }
}
.after-testiminial .container .row div .content:hover {
  background-color: var(--text-blue);
}
.after-testiminial .container .row div .content:hover h3,
.after-testiminial .container .row div .content:hover p {
  color: #ffffff !important;
}
.after-testiminial .container .row div .content:hover img {
  filter: invert(1);
}
@media (max-width: 768px) {
  .after-testiminial .container .row div .last-child {
    margin-bottom: 0rem !important;
  }
}
.after-testiminial .container .row div:nth-child(3) {
  flex: 1;
}
@media (max-width: 991px) {
  .after-testiminial .container .row div:nth-child(3) {
    flex: none;
  }
}
.after-testiminial .container .row div:nth-child(4) {
  flex: 1.3;
}
@media (max-width: 991px) {
  .after-testiminial .container .row div:nth-child(4) {
    flex: none;
  }
}

.dive-deep {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  background-color: #eef2fc;
  height: 40vh;
  position: relative;
  z-index: 5;
  margin-top: -8px !important;
}
@media (max-width: 1400px) {
  .dive-deep {
    height: 28vh;
  }
}
@media (max-width: 991px) {
  .dive-deep {
    height: 50vh;
  }
}
@media (max-width: 768px) {
  .dive-deep {
    height: 40vh;
  }
}
@media (max-width: 500px) {
  .dive-deep {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
  }
}
.dive-deep .container {
  background: url("../assets/images/blue-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
  margin-top: -15rem;
}
@media (max-width: 991px) {
  .dive-deep .container {
    margin-top: -29rem;
  }
}
@media (max-width: 768px) {
  .dive-deep .container {
    margin-top: -24rem;
  }
}
@media (max-width: 500px) {
  .dive-deep .container {
    margin-top: -25rem;
  }
}
@media (max-width: 576px) {
  .dive-deep .container {
    border-radius: 0;
  }
}
.dive-deep .container .row div:nth-child(1) {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  padding-left: 3rem;
}
@media (max-width: 1400px) {
  .dive-deep .container .row div:nth-child(1) {
    padding: 1rem 0;
    padding-left: 2rem;
  }
}
@media (max-width: 768px) {
  .dive-deep .container .row div:nth-child(1) {
    padding-left: 0;
    padding: 1rem;
  }
}
.dive-deep .container .row div:nth-child(1) .content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1rem;
}
@media (max-width: 1200px) {
  .dive-deep .container .row div:nth-child(1) .content {
    gap: 0.5rem;
  }
}
@media (max-width: 991px) {
  .dive-deep .container .row div:nth-child(1) .content {
    padding: 1rem 0;
  }
}
.dive-deep .container .row div:nth-child(1) .content h2 {
  color: #ffffff !important;
  font-family: var(--poppins);
  font-weight: 600;
}
@media (max-width: 1200px) {
  .dive-deep .container .row div:nth-child(1) .content h2 {
    font-size: x-large;
  }
}
.dive-deep .container .row div:nth-child(1) .content p {
  color: #ffffff;
  font-family: var(--public-sans);
}
@media (max-width: 1100px) {
  .dive-deep .container .row div:nth-child(1) .content p {
    font-size: small;
  }
}
.dive-deep .container .row div:nth-child(1) .content a {
  border: 2px solid #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  border-radius: 300px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .dive-deep .container .row div:nth-child(1) .content a {
    font-size: small;
  }
}
@media (max-width: 600px) {
  .dive-deep .container .row div:nth-child(1) .content a {
    font-size: x-small;
  }
}
.dive-deep .container .row div:nth-child(1) .content a:hover {
  background-color: #fff;
  color: var(--text-blue);
}
@media (max-width: 991px) {
  .dive-deep .container .row div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.dive-deep .container .row div:nth-child(2) img {
  width: 85%;
  margin-top: -6rem;
}
@media (max-width: 1400px) {
  .dive-deep .container .row div:nth-child(2) img {
    width: 85%;
    margin-top: -5rem;
  }
}
@media (max-width: 1200px) {
  .dive-deep .container .row div:nth-child(2) img {
    width: 100%;
    margin-top: -2rem;
  }
}
@media (max-width: 991px) {
  .dive-deep .container .row div:nth-child(2) img {
    width: 70%;
    margin-top: 0;
  }
}

footer {
  padding-top: 5rem;
  background-color: #eef2fc;
}
@media (max-width: 400px) {
  footer {
    padding-top: 3rem;
  }
}
footer .container .row div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  margin-bottom: 2rem;
}
footer .container .row div h6 {
  font-weight: 700;
  font-family: var(--poppins);
}
footer .container .row div ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 1s ease !important;
}
footer .container .row div ul.responsive-footer-menu {
  height: 0;
  overflow: hidden;
  transition: all 1s ease !important;
}
footer .container .row div ul li {
  padding-top: 1rem;
}
footer .container .row div ul li a {
  font-family: Arial, Helvetica, sans-serif;
  color: #252525;
  font-size: 15px;
  transition: all 0.3s ease;
}
footer .container .row div ul li a:hover {
  color: var(--text-blue);
  padding-left: 0.1rem;
}
footer .container .row div ul li a.active {
  color: var(--text-blue);
}
footer .container .row .logo-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 1rem;
}
footer .container .row .logo-div p {
  margin-top: 1rem;
  color: var(--text-paragraph);
  font-family: var(--public-sans);
  text-align: center;
  max-width: 1200px;
  width: 100%;
  font-size: 16px;
}
footer .container .row .logo-div img {
  width: 165px;
  height: auto;
}
footer .container .copywrite {
  border-top: 1px solid rgba(37, 37, 37, 0.2);
  padding: 1rem 0;
}
footer .container .copywrite div {
  margin: 0;
}
footer .container .copywrite div:nth-child(1) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  footer .container .copywrite div:nth-child(1) {
    justify-content: center;
  }
}
footer .container .copywrite div:nth-child(1) p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  white-space: nowrap;
}
footer .container .copywrite div:nth-child(2) .heading-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 1400px) {
  footer .container .copywrite div:nth-child(2) .heading-text {
    justify-content: flex-end;
  }
}
@media (max-width: 1200px) {
  footer .container .copywrite div:nth-child(2) .heading-text {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  footer .container .copywrite div:nth-child(2) .heading-text {
    justify-content: center;
  }
}
footer .container .copywrite div:nth-child(2) .heading-text img:nth-child(1) {
  width: 33px;
  height: auto;
}
@media (max-width: 768px) {
  footer .container .copywrite div:nth-child(2) .heading-text img:nth-child(1) {
    width: 25px !important;
  }
}
footer .container .copywrite div:nth-child(2) .heading-text img:nth-child(2) {
  width: 80px;
  height: auto;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  footer .container .copywrite div:nth-child(2) .heading-text img:nth-child(2) {
    width: 50px !important;
  }
}
footer .container .copywrite div:nth-child(2) .heading-text span {
  font-weight: 300;
  color: #252525;
  font-family: var(--poppins);
  font-size: 25px;
  padding-top: 0.4rem;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  footer .container .copywrite div:nth-child(2) .heading-text span {
    font-size: large !important;
    padding: 0;
  }
}
footer .container .copywrite div:nth-child(3) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  footer .container .copywrite div:nth-child(3) {
    justify-content: center;
    margin-bottom: 1rem;
  }
}
footer .container .copywrite div:nth-child(3) .social-links {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
footer .container .copywrite div:nth-child(3) .social-links a {
  color: #252525;
  font-size: x-large;
}
footer .container .copywrite div:nth-child(3) .social-links .instagram-link i {
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
footer .container .copywrite div:nth-child(3) .social-links .instagram-link i:hover {
  color: #e1306c !important; /* Instagram's official color */
}
footer .container .copywrite div:nth-child(3) .social-links .facebook-link i {
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
footer .container .copywrite div:nth-child(3) .social-links .facebook-link i:hover {
  color: #1877f2 !important; /* Facebook's official color */
}
footer .container .copywrite div:nth-child(3) .social-links .x-twitter-link i {
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
footer .container .copywrite div:nth-child(3) .social-links .x-twitter-link i:hover {
  color: #000 !important; /* X's official color */
}
footer .container .copywrite div:nth-child(3) .social-links .linkedin-link i {
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
footer .container .copywrite div:nth-child(3) .social-links .linkedin-link i:hover {
  color: #0a66c2 !important; /* LinkedIn's official color */
}
footer .container .copywrite div:nth-child(3) .social-links .whatsapp-link i {
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
footer .container .copywrite div:nth-child(3) .social-links .whatsapp-link i:hover {
  color: #25d366 !important; /* WhatsApp's official color */
}
footer .container .copywrite div:nth-child(3) .social-links .youtube-link i {
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
footer .container .copywrite div:nth-child(3) .social-links .youtube-link i:hover {
  color: #ff0000 !important; /* YouTube's official color */
}

.pricing-plan {
  padding-top: 6rem;
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .pricing-plan {
    padding-top: 3rem;
  }
}
.pricing-plan .container .btn-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pricing-plan .container .btn-div button {
  background: #ffffff;
  color: #737373;
  width: 100px;
  height: 48px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
}
.pricing-plan .container .btn-div button.active, .pricing-plan .container .btn-div button:hover {
  background: var(--gradient);
  color: #ffffff;
  width: 100px;
  height: 48px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
}
.pricing-plan .container .row {
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .pricing-plan .container .row {
    padding-top: 2rem;
  }
}
.pricing-plan .container .row .col-12 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-plan .container .row .col-12 .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 24px;
  cursor: pointer;
  margin-bottom: 2rem;
}
.pricing-plan .container .row .col-12 .content .heading {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.pricing-plan .container .row .col-12 .content .heading h4 {
  font-family: var(--poppins);
  font-size: 24px;
  color: #0d062d;
  font-weight: 600;
}
.pricing-plan .container .row .col-12 .content .heading p {
  font-family: var(--poppins);
  font-style: 18px;
  color: var(--text-paragraph);
}
.pricing-plan .container .row .col-12 .content .heading img {
  width: 100px;
  height: 30px;
}
.pricing-plan .container .row .col-12 .content .price h2 {
  font-family: var(--poppins);
  font-size: 64px;
  font-weight: 600;
  color: #0d062d;
}
.pricing-plan .container .row .col-12 .content .price p {
  font-family: var(--poppins);
  color: #262626;
  font-size: 18px;
  font-weight: 500;
}
.pricing-plan .container .row .col-12 .content button {
  width: 80%;
  height: 58px;
  width: 100%;
  background: var(--gradient);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 500;
}
.pricing-plan .container .row .col-12 .content .list {
  padding-top: 2rem;
}
.pricing-plan .container .row .col-12 .content .list i {
  color: #0d062d;
  margin-right: 0.5rem;
}
.pricing-plan .container .row .col-12 .content .list p {
  color: #525252;
  font-family: var(--poppins);
  font-size: 16px;
}
.pricing-plan .container .row .col-12 .content.active, .pricing-plan .container .row .col-12 .content:hover {
  background: linear-gradient(to bottom, #345ca9, #0294d2) !important;
}
.pricing-plan .container .row .col-12 .content.active button, .pricing-plan .container .row .col-12 .content:hover button {
  background: #ffffff !important;
  color: var(--text-blue);
  transition: all 0.5s ease;
}
.pricing-plan .container .row .col-12 .content.active.active, .pricing-plan .container .row .col-12 .content:hover.active {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .pricing-plan .container .row .col-12 .content.active.active, .pricing-plan .container .row .col-12 .content:hover.active {
    transform: scale(1);
  }
}
.pricing-plan .container .row .col-12 .content.active h4,
.pricing-plan .container .row .col-12 .content.active h2,
.pricing-plan .container .row .col-12 .content.active p,
.pricing-plan .container .row .col-12 .content.active i, .pricing-plan .container .row .col-12 .content:hover h4,
.pricing-plan .container .row .col-12 .content:hover h2,
.pricing-plan .container .row .col-12 .content:hover p,
.pricing-plan .container .row .col-12 .content:hover i {
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .pricing-plan .container .row .col-md-12 .content {
    max-width: 336px;
  }
}
@media (max-width: 768px) {
  .pricing-plan .container .row .col-md-12 .content {
    max-width: 100%;
  }
}

.asked-q {
  margin-bottom: 20rem;
}
.asked-q .container h1 {
  font-family: var(--poppins);
  font-weight: 600;
  text-align: center;
}
.asked-q .container h1 span {
  color: var(--text-blue);
}
@media (max-width: 768px) {
  .asked-q .container h1 {
    margin: 0;
  }
}
.asked-q .container .accordion {
  margin-top: 3rem;
}
.asked-q .container .accordion button h4 {
  font-size: 20px;
  font-family: var(--poppins);
  color: #252525;
  font-weight: 600;
}
.asked-q .container .accordion .accordion-item {
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .asked-q .container .accordion .accordion-item {
    padding: 0;
  }
}
.asked-q .container .accordion .accordion-body {
  font-size: 16px;
  color: var(--text-paragraph);
}
@media (max-width: 991px) {
  .asked-q {
    margin-bottom: 25rem;
  }
}
@media (max-width: 500px) {
  .asked-q {
    margin-bottom: 27rem;
  }
}
.asked-q .accordion-button:focus {
  box-shadow: none !important;
}
.asked-q .accordion-button:not(.collapsed) {
  background-color: #ffffff !important;
}

.testimonial-pricing {
  background-color: #f9f9f9;
  padding: 3rem 0;
  padding-bottom: 13rem;
}
@media (max-width: 768px) {
  .testimonial-pricing {
    padding: 0rem 0;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .testimonial-pricing {
    padding-bottom: 25rem;
  }
}
@media (max-width: 500px) {
  .testimonial-pricing {
    padding-bottom: 27rem;
  }
}
.testimonial-pricing .container h1 {
  font-family: var(--poppins);
  text-align: center;
}
.testimonial-pricing .container h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.testimonial-pricing .container p {
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
  margin-top: 1.5rem;
  text-align: center;
}
.testimonial-pricing .container .row {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .testimonial-pricing .container .row {
    padding: 0;
    padding-top: 2rem;
  }
}
.testimonial-pricing .container .row div {
  display: flex;
  justify-content: space-around;
  margin-bottom: 3rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .testimonial-pricing .container .row div {
    margin-bottom: 2rem;
    gap: 1rem;
  }
}
.testimonial-pricing .container .row div .user-img {
  width: 78px;
  height: auto;
  position: relative;
  transition: all 0.5s ease;
}
.testimonial-pricing .container .row div .user-img img {
  width: 100%;
  height: auto;
}
.testimonial-pricing .container .row div .user-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* White transparent shade */
  z-index: 1;
  pointer-events: none; /* Allows interaction with the image */
  transition: background-color 0.3s ease; /* Optional: Smooth transition effect */
  transition: all 0.5s ease;
}
.testimonial-pricing .container .row div .user-img:hover::before {
  background-color: transparent;
}
.testimonial-pricing .container .row div .user-img.active {
  transform: scale(1.3);
}
.testimonial-pricing .container .row div .user-img.active::before {
  content: "";
  background-color: transparent;
}
.testimonial-pricing .container .row .user-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial-pricing .container .row .user-review .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
@media (max-width: 768px) {
  .testimonial-pricing .container .row .user-review .heading h4 {
    margin: 0;
  }
}
.testimonial-pricing .container .row .user-review .heading p {
  margin: 0;
}
.testimonial-pricing .container .row .user-review p {
  margin: 0;
  margin-top: 2rem;
  font-family: var(--public-sans);
  max-width: 1108px;
  width: 100%;
}
@media (max-width: 768px) {
  .testimonial-pricing .container .row .user-review p {
    margin-top: 0;
  }
}

.why-become {
  padding-bottom: 4rem;
}
.why-become .container .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.why-become .container .heading h1 {
  font-family: var(--poppins);
  text-align: center;
}
.why-become .container .heading h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.why-become .container .heading p {
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
  margin-top: 1.5rem;
  text-align: center;
  max-width: 1210px;
  width: 100%;
  text-align: center;
}
.why-become .container .row {
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .why-become .container .row {
    padding-top: 1.5rem;
  }
}
.why-become .container .row .col-12 {
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .why-become .container .row .col-12 {
    margin-bottom: 0;
  }
}
.why-become .container .row .col-12 .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: #ffffff;
}
@media (max-width: 576px) {
  .why-become .container .row .col-12 .content {
    padding: 1rem;
  }
}
.why-become .container .row .col-12 .content h3 {
  font-size: 20px;
  font-family: var(--poppins);
  color: #000;
  font-weight: 600;
  text-align: center;
  margin: 0;
  margin-top: 1rem;
}
.why-become .container .row .col-12 .content p {
  text-align: center;
  color: var(--text-paragraph);
  font-size: 16px;
  margin: 0;
}

.paragraph {
  padding-bottom: 5rem;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .paragraph {
    padding-bottom: 2.5rem;
    padding-top: 3rem;
  }
}
.paragraph .container p {
  font-size: 16px;
  color: #747474;
  text-align: center;
  margin-bottom: 1.5rem;
}

.mission-vision .container {
  background-image: url("../assets/images/blue-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 40px;
}
@media (max-width: 576px) {
  .mission-vision .container {
    border-radius: 0;
  }
}
.mission-vision .container .row {
  padding: 4rem 0;
}
@media (max-width: 991px) {
  .mission-vision .container .row {
    padding: 2rem 0;
  }
}
@media (max-width: 576px) {
  .mission-vision .container .row {
    padding: 0;
  }
}
.mission-vision .container .row .col-lg-7 {
  padding-left: 5rem;
}
@media (max-width: 991px) {
  .mission-vision .container .row .col-lg-7 {
    padding-left: 0;
    padding: 2rem;
  }
}
.mission-vision .container .row .col-lg-7 .inner-content {
  margin-bottom: 3rem;
}
.mission-vision .container .row .col-lg-7 .inner-content h3 {
  color: #ffffff !important;
  font-family: var(--poppins);
  font-size: 40px;
}
.mission-vision .container .row .col-lg-7 .inner-content p {
  font-size: 16px;
  font-family: var(--public-sans);
  color: #ffffff;
  font-weight: lighter;
}
@media (max-width: 576px) {
  .mission-vision .container .row .col-lg-7 .inner-content {
    margin-bottom: 1rem;
  }
}
.mission-vision .container .row .col-lg-5 {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .mission-vision .container .row .col-lg-5 {
    padding-bottom: 2rem;
  }
}
.mission-vision .container .row .col-lg-5 .img-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5rem;
  width: 75%;
  height: 100%;
  background-color: #000000;
  border-radius: 10px;
  overflow: hidden;
}
.mission-vision .container .row .col-lg-5 .img-div video {
  width: 700%;
  height: 500px;
}

.apllyNow {
  padding-top: 3rem;
  margin-bottom: 2rem;
  background-color: #f2f2f2;
}
@media (max-width: 768px) {
  .apllyNow {
    padding: 0rem 0;
    padding-bottom: 1rem;
  }
}
.apllyNow .container h1 {
  font-family: var(--poppins);
  text-align: center;
}
.apllyNow .container h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.apllyNow .container p {
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
  margin-top: 1.5rem;
  text-align: center;
  padding: 0 5rem;
}
@media (max-width: 991px) {
  .apllyNow .container p {
    padding: 0;
  }
}
.apllyNow .container form {
  padding: 1rem 5rem;
}
@media (max-width: 991px) {
  .apllyNow .container form {
    padding: 0;
  }
}
.apllyNow .container form .row .col-12 {
  margin-bottom: 1rem;
}
.apllyNow .container form .row .col-12 input,
.apllyNow .container form .row .col-12 textarea {
  width: 100%;
  border: none;
  height: 66px;
  border-radius: 15px;
  padding-left: 2rem;
  color: #252525;
}
.apllyNow .container form .row .col-12 input::-moz-placeholder, .apllyNow .container form .row .col-12 textarea::-moz-placeholder {
  color: #252525;
}
.apllyNow .container form .row .col-12 input::placeholder,
.apllyNow .container form .row .col-12 textarea::placeholder {
  color: #252525;
}
.apllyNow .container form .row .col-12 textarea {
  height: 175px;
  padding-top: 1rem;
}
.apllyNow .container form .row .col-12 button {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
  width: 392px;
  height: 71px;
  border: none;
  font-weight: bold;
  padding: 0;
}
.apllyNow .container form .row .col-12 button::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.apllyNow .container form .row .col-12 button:hover {
  color: #ffffff !important;
}
.apllyNow .container form .row .col-12 button:hover a {
  color: #ffffff !important;
}
.apllyNow .container form .row .col-12 button:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .apllyNow .container form .row .col-12 button {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .apllyNow .container form .row .col-12 button {
    padding: 5px 20px;
    font-size: small !important;
  }
}
@media (max-width: 768px) {
  .apllyNow .container form .row .col-12 button {
    width: 300px;
    height: 50px;
  }
}

.team {
  padding-top: 5rem;
  padding-bottom: 20rem;
  background-color: #f9f9f9;
}
@media (max-width: 991px) {
  .team {
    padding-bottom: 28rem;
  }
}
@media (max-width: 768px) {
  .team {
    padding-bottom: 24rem;
  }
}
@media (max-width: 500px) {
  .team {
    padding-bottom: 28rem;
  }
}
.team .container .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.team .container .heading h1 {
  font-family: var(--poppins);
  text-align: center;
}
.team .container .heading h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.team .container .heading p {
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
  margin-top: 1.5rem;
  text-align: center;
  max-width: 1210px;
  width: 100%;
  text-align: center;
}
.team .container .row {
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .team .container .row {
    padding-top: 2rem;
  }
}
.team .container .row .col-12 {
  margin-bottom: 2rem;
}
.team .container .row .col-12 .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  background-color: #ffffff;
  border-radius: 10px;
}
.team .container .row .col-12 .content h4 {
  font-family: var(--poppins);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.team .container .row .col-12 .content p {
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
  text-align: center;
}
.team .container .row .col-12 .content a {
  font-family: var(--poppins);
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.indutries-brand {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .indutries-brand {
    padding: 2rem 0;
    padding-bottom: 0;
  }
}

.after-testiminial-indutries .container h1 {
  font-family: var(--poppins);
  text-align: center;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .after-testiminial-indutries .container h1 {
    padding-top: 1rem;
  }
}
.after-testiminial-indutries .container h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.after-testiminial-indutries .container .row {
  padding: 3rem 3rem;
}
@media (max-width: 1200px) {
  .after-testiminial-indutries .container .row {
    padding: 0 0;
    padding-top: 3rem;
  }
}
@media (max-width: 768px) {
  .after-testiminial-indutries .container .row {
    padding: 0 0;
    padding-top: 1rem;
  }
}
.after-testiminial-indutries .container .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.after-testiminial-indutries .container .row div .content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .after-testiminial-indutries .container .row div .content {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1200px) {
  .after-testiminial-indutries .container .row div .content {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .after-testiminial-indutries .container .row div .content {
    max-width: 100%;
  }
}
.after-testiminial-indutries .container .row div .content img {
  transition: filter 0.3s ease; /* Smooth transition */
  width: 43px;
  height: auto;
}
.after-testiminial-indutries .container .row div .content h3 {
  font-family: var(--poppins);
  font-weight: 600;
  color: #252525;
  transition: all 0.5s ease;
}
.after-testiminial-indutries .container .row div .content p {
  transition: all 0.5s ease;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
}
@media (max-width: 768px) {
  .after-testiminial-indutries .container .row div .content p {
    margin: 0;
  }
}
.after-testiminial-indutries .container .row div .content:hover {
  background-color: var(--text-blue);
}
.after-testiminial-indutries .container .row div .content:hover h3,
.after-testiminial-indutries .container .row div .content:hover p {
  color: #ffffff !important;
}
.after-testiminial-indutries .container .row div .content:hover img {
  filter: invert(1);
}
@media (max-width: 768px) {
  .after-testiminial-indutries .container .row div .last-child {
    margin-bottom: 0rem !important;
  }
}
.after-testiminial-indutries .container .row div:nth-child(3) {
  flex: 1;
}
@media (max-width: 991px) {
  .after-testiminial-indutries .container .row div:nth-child(3) {
    flex: none;
  }
}
.after-testiminial-indutries .container .row div:nth-child(4) {
  flex: 1.3;
}
@media (max-width: 991px) {
  .after-testiminial-indutries .container .row div:nth-child(4) {
    flex: none;
  }
}

.why-choose-industries {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  background-color: #f2f2f2;
  padding-bottom: 18rem;
}
@media (max-width: 991px) {
  .why-choose-industries {
    padding-bottom: 30rem;
  }
}
@media (max-width: 768px) {
  .why-choose-industries {
    padding-bottom: 25rem;
  }
}
@media (max-width: 500px) {
  .why-choose-industries {
    padding-bottom: 28rem;
  }
}
@media (max-width: 1400px) and (min-width: 991px) {
  .why-choose-industries .container {
    max-width: 100%;
    padding: 0 2rem;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div {
  padding-top: 4rem;
}
@media (max-width: 600px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div {
    padding-top: 2rem;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div a {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
  margin-top: 1rem;
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div a:hover a {
  color: #ffffff !important;
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div {
  padding-top: 3rem;
}
@media (max-width: 991px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div img {
  width: 20px !important;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose-industries .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-industries .container .row:nth-child(1) div:nth-child(2) img {
  width: 90%;
  height: auto;
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div a {
  margin-top: 1rem;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 30px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div {
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div img {
  width: 20px;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose-industries .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-industries .container .row:nth-child(2) div:nth-child(2) img {
  width: 90%;
  height: auto;
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div a {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
  margin-top: 1rem;
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div a:hover a {
  color: #ffffff !important;
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div {
  padding-top: 3rem;
}
@media (max-width: 991px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div img {
  width: 20px !important;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose-industries .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-industries .container .row:nth-child(3) div:nth-child(2) img {
  width: 90%;
  height: auto;
}

.after-testiminial-integration .container .heading h1 {
  font-family: var(--poppins);
  text-align: center;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .after-testiminial-integration .container .heading h1 {
    padding-top: 1rem;
  }
}
.after-testiminial-integration .container .heading h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.after-testiminial-integration .container .heading p {
  text-align: center;
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
}
.after-testiminial-integration .container .row {
  padding-top: 2rem;
}
.after-testiminial-integration .container .row .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.after-testiminial-integration .container .row .col-12 .inner-content {
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 2rem 1rem;
  border-radius: 10px;
}
.after-testiminial-integration .container .row .col-12 .inner-content img {
  width: 65px;
  height: auto;
}
.after-testiminial-integration .container .row .col-12 .inner-content h4 {
  font-size: 20px;
  font-family: var(--poppins);
  color: #000000 !important;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}
.after-testiminial-integration .container .row .col-12 .inner-content p {
  text-align: center;
  font-size: 16px;
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}

.why-choose-integration {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  background-color: #f2f2f2;
  padding-bottom: 15rem;
}
@media (max-width: 991px) {
  .why-choose-integration {
    padding-bottom: 25rem !important;
  }
}
@media (max-width: 576px) {
  .why-choose-integration {
    padding-bottom: 20rem !important;
  }
}
@media (max-width: 500px) {
  .why-choose-integration {
    padding-bottom: 25rem !important;
  }
}
@media (max-width: 1400px) and (min-width: 991px) {
  .why-choose-integration .container {
    max-width: 100%;
    padding: 0 2rem;
  }
}
.why-choose-integration .container .row {
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row {
    padding-bottom: 0;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div {
  padding-top: 6rem;
}
@media (max-width: 600px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div {
    padding-top: 2.5rem;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div a {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
  margin-top: 1rem;
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div a:hover a {
  color: #ffffff !important;
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div {
  padding-top: 3rem;
}
@media (max-width: 991px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div img {
  width: 20px !important;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-integration .container .row:nth-child(1) div:nth-child(2) img {
  width: 100%;
  height: auto;
  transform: scale(1.5);
}
@media (max-width: 1477px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(2) img {
    transform: scale(1.2);
  }
}
@media (max-width: 991px) {
  .why-choose-integration .container .row:nth-child(1) div:nth-child(2) img {
    transform: scale(1);
  }
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div a {
  margin-top: 1rem;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 30px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div {
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div img {
  width: 20px;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-integration .container .row:nth-child(2) div:nth-child(2) img {
  width: 100%;
  height: auto;
  transform: scale(1.4);
  margin-top: -19re;
}
@media (max-width: 991px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(2) img {
    transform: scale(1);
  }
}
@media (max-width: 1300px) and (min-width: 991px) {
  .why-choose-integration .container .row:nth-child(2) div:nth-child(2) img {
    margin-bottom: -12rem !important;
  }
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div a {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
  margin-top: 1rem;
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div a:hover a {
  color: #ffffff !important;
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div {
  padding-top: 3rem;
}
@media (max-width: 991px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div img {
  width: 20px !important;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-integration .container .row:nth-child(3) div:nth-child(2) img {
  width: 100%;
  height: auto;
  transform: scale(1.5);
}
@media (max-width: 1477px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(2) img {
    transform: scale(1.2);
  }
}
@media (max-width: 991px) {
  .why-choose-integration .container .row:nth-child(3) div:nth-child(2) img {
    transform: scale(1);
  }
}

.after-testiminial-sms .container .heading h1 {
  font-family: var(--poppins);
  text-align: center;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .after-testiminial-sms .container .heading h1 {
    padding-top: 1rem;
  }
}
.after-testiminial-sms .container .heading h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.after-testiminial-sms .container .heading p {
  text-align: center;
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
}
.after-testiminial-sms .container .row {
  padding-top: 4rem;
}
.after-testiminial-sms .container .row .col-12 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.after-testiminial-sms .container .row .col-12 .content {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #e9e7e7;
}
.after-testiminial-sms .container .row .col-12 .content .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.after-testiminial-sms .container .row .col-12 .content .heading h4 {
  color: #000000 !important;
  font-family: var(--poppins);
  font-size: 24px;
}
@media (max-width: 991px) {
  .after-testiminial-sms .container .row .col-12 .content .heading h4 {
    font-size: 20px;
  }
}
.after-testiminial-sms .container .row .col-12 .content .heading .arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--text-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.after-testiminial-sms .container .row .col-12 .content .heading .arrow:hover {
  background-color: var(--text-blue);
}
.after-testiminial-sms .container .row .col-12 .content .heading .arrow:hover i {
  color: #fff;
}
@media (max-width: 991px) {
  .after-testiminial-sms .container .row .col-12 .content .heading .arrow {
    width: 34px;
    height: 34px;
  }
}
.after-testiminial-sms .container .row .col-12 .content .heading .arrow i {
  color: var(--text-blue);
}
@media (max-width: 768px) {
  .after-testiminial-sms .container .row .col-12 .content .heading .arrow i {
    font-size: small;
  }
}
.after-testiminial-sms .container .row .col-12 .content p {
  font-size: 14px;
  color: var(--text-paragraph) !important;
  font-family: var(--public-sans);
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .after-testiminial-sms .container .row .col-12 .content p {
    font-size: 12px;
  }
}
.after-testiminial-sms .container .row .col-12 .content img {
  width: 100%;
  height: auto;
}
.after-testiminial-sms .container .row .col-12 .inner-content {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #e9e7e7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .after-testiminial-sms .container .row .col-12 .inner-content {
    flex-direction: column;
  }
  .after-testiminial-sms .container .row .col-12 .inner-content .top-div,
  .after-testiminial-sms .container .row .col-12 .inner-content .bottom-div,
  .after-testiminial-sms .container .row .col-12 .inner-content img {
    width: 100% !important;
  }
  .after-testiminial-sms .container .row .col-12 .inner-content img {
    margin-top: 2rem;
  }
}
.after-testiminial-sms .container .row .col-12 .inner-content .top-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  width: 50%;
}
.after-testiminial-sms .container .row .col-12 .inner-content .top-div h4 {
  color: #000000 !important;
  font-family: var(--poppins);
  font-size: 24px;
}
@media (max-width: 991px) {
  .after-testiminial-sms .container .row .col-12 .inner-content .top-div h4 {
    font-size: 20px;
  }
}
.after-testiminial-sms .container .row .col-12 .inner-content .top-div p {
  font-size: 14px;
  color: var(--text-paragraph) !important;
  font-family: var(--public-sans);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .after-testiminial-sms .container .row .col-12 .inner-content .top-div p {
    font-size: 12px;
  }
}
.after-testiminial-sms .container .row .col-12 .inner-content .bottom-div {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.after-testiminial-sms .container .row .col-12 .inner-content .bottom-div img {
  width: 94%;
  height: auto;
}

.contact-main {
  padding: 4rem 0;
}
.contact-main .container .row .col-12:nth-child(1) .contact-form {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3rem 1rem;
  border-radius: 10px;
}
.contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 {
  width: 100%;
  margin-bottom: 2rem;
}
.contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 input, .contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 textarea {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 input::-moz-placeholder, .contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 textarea::-moz-placeholder {
  color: #989393;
}
.contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 input::placeholder, .contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 textarea::placeholder {
  color: #989393;
}
.contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 input:focus, .contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 input:active, .contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 textarea:focus, .contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 textarea:active {
  border: 1px solid var(--text-blue);
  outline: none;
}
.contact-main .container .row .col-12:nth-child(1) .contact-form form .col-12 button {
  background-color: var(--text-blue);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  width: 100%;
}
.contact-main .container .row .col-12:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-main .container .row .col-12:nth-child(2) {
    justify-content: flex-start;
  }
}
.contact-main .container .row .col-12:nth-child(2) .adrress-details {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.contact-main .container .row .col-12:nth-child(2) .adrress-details .col-12 {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 1rem;
  margin-bottom: 3rem;
}
.contact-main .container .row .col-12:nth-child(2) .adrress-details .col-12 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-blue);
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.contact-main .container .row .col-12:nth-child(2) .adrress-details .col-12 .icon i {
  font-size: 30px;
  color: #fff;
}
.contact-main .container .row .col-12:nth-child(2) .adrress-details .col-12 .details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.contact-main .container .row .col-12:nth-child(2) .adrress-details .col-12 .details span {
  font-size: 30px;
}
.contact-main .container .row .col-12:nth-child(2) .adrress-details .col-12 .details a {
  margin: 0;
  font-size: 20px;
  color: #797979;
}
.contact-main .container .row .col-12:nth-child(2) .adrress-details .col-12 .details .links a {
  margin-right: 0.5rem;
}

.apllyNow-contact {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f2f2f2;
}
@media (max-width: 768px) {
  .apllyNow-contact {
    padding: 0rem 0;
    padding-bottom: 1rem;
  }
}
.apllyNow-contact .container h1 {
  font-family: var(--poppins);
  text-align: center;
}
.apllyNow-contact .container h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.apllyNow-contact .container p {
  color: var(--text-paragraph);
  font-size: 16px;
  font-family: var(--public-sans);
  margin-top: 1.5rem;
  text-align: center;
  padding: 0 5rem;
}
@media (max-width: 991px) {
  .apllyNow-contact .container p {
    padding: 0;
  }
}
.apllyNow-contact .container form {
  padding: 1rem 5rem;
}
@media (max-width: 991px) {
  .apllyNow-contact .container form {
    padding: 0;
  }
}
.apllyNow-contact .container form .row .col-12 {
  padding-bottom: 1rem;
}
.apllyNow-contact .container form .row .col-12 input,
.apllyNow-contact .container form .row .col-12 textarea {
  width: 100%;
  border: none;
  height: 66px;
  border-radius: 15px;
  padding-left: 2rem;
  color: #252525;
}
.apllyNow-contact .container form .row .col-12 input::-moz-placeholder, .apllyNow-contact .container form .row .col-12 textarea::-moz-placeholder {
  color: #252525;
}
.apllyNow-contact .container form .row .col-12 input::placeholder,
.apllyNow-contact .container form .row .col-12 textarea::placeholder {
  color: #252525;
}
.apllyNow-contact .container form .row .col-12 textarea {
  height: 175px;
  padding-top: 1rem;
}
.apllyNow-contact .container form .row .col-12 button {
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
  width: 392px;
  height: 71px;
  border: none;
  font-weight: bold;
  padding: 0;
}
.apllyNow-contact .container form .row .col-12 button::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.apllyNow-contact .container form .row .col-12 button:hover {
  color: #ffffff !important;
}
.apllyNow-contact .container form .row .col-12 button:hover a {
  color: #ffffff !important;
}
.apllyNow-contact .container form .row .col-12 button:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .apllyNow-contact .container form .row .col-12 button {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .apllyNow-contact .container form .row .col-12 button {
    padding: 5px 20px;
    font-size: small !important;
  }
}
@media (max-width: 768px) {
  .apllyNow-contact .container form .row .col-12 button {
    width: 300px;
    height: 50px;
  }
}

.contact-address {
  padding: 0rem 0;
  background-color: #f2f2f2;
}
.contact-address .container .row .col-12 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-address .container .row .col-12 .content {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  gap: 1rem;
  padding: 0rem 1rem;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .contact-address .container .row .col-12 .content {
    width: 80%;
  }
}
@media (max-width: 400px) {
  .contact-address .container .row .col-12 .content {
    width: 90%;
  }
}
.contact-address .container .row .col-12 .content h4 {
  font-family: var(--poppins);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.contact-address .container .row .col-12 .content p {
  font-family: var(--public-sans);
  font-size: 16px;
  color: var(--text-paragraph);
  text-align: center;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-address .container .row .col-12 .content p a {
  color: var(--text-paragraph);
}
.contact-address .container .row .col-12 .content p .instagram-link i {
  padding-left: 1rem;
  font-size: x-large;
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
.contact-address .container .row .col-12 .content p .instagram-link i:hover {
  color: #e1306c !important; /* Instagram's official color */
}
@media (max-width: 768px) {
  .contact-address .container .row .col-12 .content p .instagram-link i {
    font-size: large;
  }
}
.contact-address .container .row .col-12 .content p .facebook-link i {
  font-size: x-large;
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
.contact-address .container .row .col-12 .content p .facebook-link i:hover {
  color: #1877f2 !important; /* Facebook's official color */
}
@media (max-width: 768px) {
  .contact-address .container .row .col-12 .content p .facebook-link i {
    font-size: large;
  }
}
.contact-address .container .row .col-12 .content p .x-twitter-link {
  padding-left: 1rem;
}
.contact-address .container .row .col-12 .content p .x-twitter-link i {
  font-size: x-large;
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
.contact-address .container .row .col-12 .content p .x-twitter-link i:hover {
  color: #000 !important; /* X's official color */
}
@media (max-width: 768px) {
  .contact-address .container .row .col-12 .content p .x-twitter-link i {
    font-size: large;
  }
}
.contact-address .container .row .col-12 .content p .linkedin-link {
  padding-left: 1rem;
}
.contact-address .container .row .col-12 .content p .linkedin-link i {
  font-size: x-large;
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
.contact-address .container .row .col-12 .content p .linkedin-link i:hover {
  color: #0a66c2 !important; /* LinkedIn's official color */
}
@media (max-width: 768px) {
  .contact-address .container .row .col-12 .content p .linkedin-link i {
    font-size: large;
  }
}
.contact-address .container .row .col-12 .content p .whatsapp-link {
  padding-left: 1rem;
}
.contact-address .container .row .col-12 .content p .whatsapp-link i {
  font-size: x-large;
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
.contact-address .container .row .col-12 .content p .whatsapp-link i:hover {
  color: #25d366 !important; /* WhatsApp's official color */
}
@media (max-width: 768px) {
  .contact-address .container .row .col-12 .content p .whatsapp-link i {
    font-size: large;
  }
}
.contact-address .container .row .col-12 .content p .youtube-link {
  padding-left: 1rem;
}
.contact-address .container .row .col-12 .content p .youtube-link i {
  font-size: x-large;
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}
.contact-address .container .row .col-12 .content p .youtube-link i:hover {
  color: #ff0000 !important; /* YouTube's official color */
}
@media (max-width: 768px) {
  .contact-address .container .row .col-12 .content p .youtube-link i {
    font-size: large;
  }
}

.map {
  padding-bottom: 20rem;
}
@media (max-width: 991px) {
  .map {
    padding-bottom: 30rem;
  }
}
@media (max-width: 768px) {
  .map {
    padding-bottom: 25rem;
  }
}
@media (max-width: 500px) {
  .map {
    padding-bottom: 28rem;
  }
}

.why-choose-features {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  background-color: #f2f2f2;
}
@media (max-width: 400px) {
  .why-choose-features {
    margin-top: 2rem !important;
  }
}
@media (max-width: 1400px) and (min-width: 991px) {
  .why-choose-features .container {
    max-width: 100%;
    padding: 0 2rem;
  }
}
.why-choose-features .container .row:nth-child(1) {
  display: flex;
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div {
  padding-top: 13rem;
}
@media (max-width: 1477px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div {
    padding-top: 9rem;
  }
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div {
    padding-top: 2.5rem;
  }
}
@media (max-width: 600px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div {
    padding-top: 2.5rem;
  }
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div {
  visibility: hidden;
  padding-top: 3rem;
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
    display: none;
  }
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div img {
  width: 20px !important;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose-features .container .row:nth-child(1) div:nth-child(2) {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.why-choose-features .container .row:nth-child(1) div:nth-child(2) img {
  width: 100%;
  height: auto;
  transform: scale(1.5);
}
@media (max-width: 1477px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(2) img {
    transform: scale(1.2);
    margin-top: 2rem !important;
  }
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(1) div:nth-child(2) img {
    transform: scale(1);
    margin-top: 0 !important;
  }
}
.why-choose-features .container .row:nth-child(2) {
  margin-top: -10rem;
}
@media (max-width: 1400px) {
  .why-choose-features .container .row:nth-child(2) {
    margin-top: -15rem;
  }
}
@media (max-width: 1313px) {
  .why-choose-features .container .row:nth-child(2) {
    margin-top: -10rem;
  }
}
@media (max-width: 1182px) {
  .why-choose-features .container .row:nth-child(2) {
    margin-top: -15rem;
  }
}
@media (max-width: 1078px) {
  .why-choose-features .container .row:nth-child(2) {
    margin-top: -18rem;
  }
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(2) {
    margin-top: 2rem;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div {
  padding-top: 8rem;
}
@media (max-width: 1313px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div {
    padding-top: 0rem;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div h1 span {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div a {
  margin-top: 1rem;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600;
  color: #0294d2;
  padding: 12px 30px;
  position: relative;
  display: inline-block;
  border-radius: 300px;
  background: linear-gradient(to right, #345ca9, #0294d2);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background-clip: padding-box;
  overflow: hidden;
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div a:hover {
  color: #ffffff !important;
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div a:hover::before {
  background: linear-gradient(to right, #345ca9, #0294d2) !important;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div a {
    padding: 5px 20px;
  }
}
@media (max-width: 400px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .top-div a {
    padding: 5px 20px;
    font-size: small !important;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div {
  visibility: hidden;
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
    display: none;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div img {
  width: 20px;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose-features .container .row:nth-child(2) div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-features .container .row:nth-child(2) div:nth-child(2) img {
  width: 100%;
  height: auto;
  transform: scale(1.4);
  margin-top: -19rem;
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(2) div:nth-child(2) img {
    transform: scale(1);
    margin-top: 1rem;
  }
}
.why-choose-features .container .row:nth-child(3) {
  display: flex;
  margin-top: -30rem;
  margin-bottom: 5rem;
}
@media (max-width: 576px) {
  .why-choose-features .container .row:nth-child(3) {
    margin-bottom: 5rem;
  }
}
@media (max-width: 576px) {
  .why-choose-features .container .row:nth-child(3) {
    margin-bottom: 7rem;
  }
}
@media (max-width: 500px) {
  .why-choose-features .container .row:nth-child(3) {
    margin-bottom: 12rem;
  }
}
@media (max-width: 500px) {
  .why-choose-features .container .row:nth-child(3) {
    margin-bottom: 14rem;
  }
}
@media (max-width: 500px) {
  .why-choose-features .container .row:nth-child(3) {
    margin-bottom: 16rem;
  }
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(3) {
    margin-top: 0;
  }
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div {
  padding-top: 13rem;
}
@media (max-width: 1477px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div {
    padding-top: 9rem;
  }
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div {
    padding-top: 2.5rem;
  }
}
@media (max-width: 600px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div {
    padding-top: 2.5rem;
  }
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
  font-family: var(--poppins);
  font-weight: 600;
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div h1 span:nth-child(1) {
  color: var(--text-blue);
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div h1 span:nth-child(2) {
  font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
    margin: 0;
  }
}
@media (max-width: 1312px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1158px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div h1 {
    font-size: 30px;
  }
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div p {
  margin-top: 1rem;
  font-family: var(--public-sans);
  color: var(--text-paragraph);
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 1312px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div p {
    font-size: 16px;
  }
}
@media (max-width: 1158px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .top-div p {
    font-size: 14px;
  }
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div {
  display: none;
  padding-top: 3rem;
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div {
    padding: 0;
    padding-top: 1.5rem;
    display: none;
  }
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0rem;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div {
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div img {
  width: 20px !important;
  height: auto;
}
@media (max-width: 500px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div img {
    width: 20px;
    height: auto;
  }
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div {
    padding-top: 0;
  }
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div h6 {
  font-size: 20px;
  font-family: var(--poppins);
}
.why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div p {
  color: var(--text-paragraph);
  font-family: var(--public-sans);
}
@media (max-width: 1312px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 17px;
  }
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div p {
    font-size: 14px;
  }
}
@media (max-width: 1158px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(1) .bottom-div .row div div h6 {
    font-size: 15px;
  }
}
.why-choose-features .container .row:nth-child(3) div:nth-child(2) {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.why-choose-features .container .row:nth-child(3) div:nth-child(2) img {
  width: 100%;
  height: auto;
  transform: scale(1.5);
}
@media (max-width: 1477px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(2) img {
    transform: scale(1.2);
    margin-top: 2rem !important;
  }
}
@media (max-width: 991px) {
  .why-choose-features .container .row:nth-child(3) div:nth-child(2) img {
    transform: scale(1);
    margin-top: 0 !important;
  }
}

.terms-conditions {
  padding-bottom: 15rem;
}
@media (max-width: 991px) {
  .terms-conditions {
    padding-bottom: 28rem;
  }
}
@media (max-width: 768px) {
  .terms-conditions {
    padding-bottom: 22rem;
  }
}
@media (max-width: 500px) {
  .terms-conditions {
    padding-bottom: 25rem;
  }
}/*# sourceMappingURL=style.css.map */


.know-more{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.know-more h2{
  font-weight: bold;
}
.know-more a{
   font-weight: bold;
  background: linear-gradient(to right, #345ca9, #0294d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media(max-width : 768px){
  .know-more h2{
    margin-top: 1rem;
    font-size: large !important;
  }
  .know-more a{
    font-size: small;
  }
}