@import url(../css/variable-color.css);
body {
  background-color: var(--body-bg);
  color: var(--text-color);
  font-family: "Poppins", serif !important;
  height: 100%;
  margin: 0;
  padding: 0;
}

.whatsup {
  position: fixed;
  top: 45%;
  left: -50px;
  width: 80px;
  height: 80px;
  background-color: var(--whatsup-color);
  z-index: 99;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-btn-text) !important;
  font-size: 22px;
  transition: 0.3s ease-in-out;
}
.whatsup:hover {
  font-size: 44px;
  left: 0;
}

p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--sub-heading-text);
}

h1 {
  font-size: 60px;
  line-height: 80px;
  font-weight: 700;
  color: var(--text-light);
}

h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
}

h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

h4 {
  font-size: 32px;
  line-height: 50px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

h6 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.4s;
}

a:focus {
  outline: none;
  text-decoration: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}

button {
  box-shadow: none !important;
  outline: 0 !important;
}

.btn-primary {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.8s;
  height: 55px;
  outline: 0 !important;
  background: var(--btn-bg);
  border-radius: 8px;
  color: var(--primary-btn-text);
  border: 1px solid var(--primary-border);
}
.btn-primary:hover {
  background: var(--light-color);
  border: 1px solid var(--primary-border);
  color: var(--secondary-btn-text);
}

.container-fluid {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.8s;
  height: 55px;
  outline: 0 !important;
  background: var(--light-color);
  border-radius: 8px;
  color: var(--primary-color);
  border: 1px solid var(--primary-border);
}
.btn-secondary:hover {
  background: var(--development-bg2);
  border: 1px solid var(--primary-border);
  color: var(--primary-btn-text);
}

.btn-transparent {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.8s;
  height: 55px;
  outline: 0 !important;
  background: transparent;
  border-radius: 8px;
  color: var(--light-color);
  border: 1px solid var(--talent-border);
  display: inline-block;
}
.btn-transparent:hover {
  background: var(--light-color);
  border: 1px solid var(--light-color);
  color: var(--primary-color);
}

.btn-light {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.8s;
  height: 55px;
  outline: 0 !important;
  background: transparent;
  border-radius: 8px;
  color: var(--primary-border);
  border: 1px solid var(--primary-border);
  background-color: var(--light-color);
}
.btn-light:hover {
  background: var(--primary-border);
  border: 1px solid var(--primary-border);
  color: var(--light-color);
}

.btn-dark {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  transition: all 0.8s;
  height: 50px;
  outline: 0 !important;
  background: var(--primary-color);
  border-radius: 8px;
  color: var(--text-light);
  border: 1px solid var(--btn-border);
}
.btn-dark:hover {
  background: var(--light-color);
  border: 1px solid var(--btn-border);
  color: var(--btn-border);
}

.dropdown .dropdown-toggle::after {
  display: none;
}
.dropdown .dropdown-toggle .fa-solid {
  margin-left: 4px;
  font-size: 20px;
}

.dropdown-menu {
  border: none;
  background-color: var(--light-color) !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  overflow: hidden;
}
.dropdown-menu li .dropdown-item {
  padding: 14px 18px;
  font-size: 20px;
  line-height: 26px;
}
.dropdown-menu li .dropdown-item:hover, .dropdown-menu li .dropdown-item:active {
  background-color: #000;
  color: var(--light-color);
}
.dropdown-menu li .dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu li .dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.form-group {
  margin-bottom: 30px;
}
.form-group .form-label {
  font-size: 16px;
  line-height: 30px;
  color: var(--sub-heading-text);
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: 500;
}
.form-group .form-label span {
  color: var(--red-label);
}
.form-group .form-control {
  padding: 16px 17px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text-light);
  box-shadow: none;
  resize: none;
  border-radius: 4px;
}
.form-group .form-control:focus, .form-group .form-control:hover {
  border: 1px solid var(--primary-border);
}
.form-group .form-control::-moz-placeholder {
  color: var(--placeholder-color);
}
.form-group .form-control::placeholder {
  color: var(--placeholder-color);
}
.form-group .form-control::-ms-input-placeholder {
  color: var(--placeholder-color);
}

@media (min-width: 1550px) {
  .container {
    max-width: 1680px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 96%;
  }
}
.slick-slider .slick-dots li {
  width: auto;
}
.slick-slider .slick-dots li button {
  background-color: var(--slider-dot);
  width: 12px;
  height: 12px;
  border-radius: 100px;
}
.slick-slider .slick-dots li.slick-active button {
  width: 33px;
  background-color: var(--primary-color);
}

.heading {
  text-align: left;
  margin-bottom: 40px;
}
.heading h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 68px;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
}
.heading h2 span {
  font-weight: 500;
}
.heading h6 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--about-heading);
}
.heading p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: var(--sub-heading-text);
  margin: 0;
}

.learn-more-btn {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--learn-more-btn);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.3s;
  text-decoration: underline;
}
.learn-more-btn:hover {
  color: var(--text-light);
}

.read-more-btn {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.3s;
  text-decoration: underline;
}
.read-more-btn:hover {
  color: var(--learn-more-btn);
}

.banner-section {
  padding: 120px 0 100px 0;
  background-color: var(--grey-bg);
}
.banner-section .banner-inner .banner-slider .banner-slider-item .banner-lt-content h1 {
  margin-bottom: 26px;
}
.banner-section .banner-inner .banner-slider .banner-slider-item .banner-lt-content p {
  margin-bottom: 32px;
}
.banner-section .banner-inner .banner-slider .banner-slider-item .banner-rt-content {
  position: relative;
  z-index: 0;
}
.banner-section .banner-inner .banner-slider .banner-slider-item .banner-rt-content .banner-patter1 {
  position: absolute;
  top: 50px;
  left: 0;
  margin-left: -259px;
  z-index: -1;
}
.banner-section .banner-inner .banner-slider .banner-slider-item .banner-rt-content .banner-patter2 {
  position: absolute;
  top: 87px;
  right: -33px;
  bottom: 0;
  z-index: -1;
  margin: auto;
  width: 760px;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 {
  padding-top: 50px;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-heading {
  margin-bottom: 24px;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-heading h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-heading h1 .heading-part-1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.2;
  position: relative;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-heading h1 .heading-part-1::after {
  content: "";
  width: 46px;
  height: 36px;
  background-image: url(../images/ai-heading-part-1.svg);
  position: absolute;
  top: 0;
  right: -63px;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-heading h1 .heading-part-2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-heading h1 .heading-part-3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-description {
  margin-bottom: 32px;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-description p {
  font-size: 18px;
  line-height: 28px;
  color: var(--sub-heading-text);
  margin-bottom: 0;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-cta .btn-primary {
  background-color: var(--text-light);
  color: var(--light-color);
  border: 2px solid var(--text-light);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-lt-content .ai-solutions-cta .btn-primary:hover {
  background-color: transparent;
  color: var(--text-light);
  text-decoration: none;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-rt-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-rt-content .ai-technologies-display {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-rt-content .ai-technologies-display .ai-technologies-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-rt-content .ai-technologies-display .ai-technologies-center .ai-count {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 8px;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-rt-content .ai-technologies-display .ai-technologies-center .ai-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--sub-heading-text);
  line-height: 1.2;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-rt-content .ai-technologies-display .ai-technologies-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section .banner-inner .banner-slider .banner-slider-item-2 .ai-solutions-rt-content .ai-technologies-display .ai-technologies-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding-top: 0px;
}

.about-section {
  padding: 100px 0;
}
.about-section .about-rt-content .about-listing {
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}
.about-section .about-rt-content .about-listing li {
  padding-left: 50px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 16px;
  position: relative;
}
.about-section .about-rt-content .about-listing li::before {
  content: "";
  width: 32px;
  height: 32px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}

.solution-section {
  padding: 100px 0;
  background-color: var(--grey-bg);
}
.solution-section .heading {
  text-align: center;
}
.solution-section .solution-card {
  padding: 18px 10px;
  background-color: var(--light-color);
  box-shadow: 0px 4px 13.6px 0px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-section .solution-card .solution-lt-img {
  margin-right: 8px;
}
.solution-section .solution-card .solution-rt-content {
  text-align: center;
}
.solution-section .solution-card .solution-rt-content h3 {
  margin: 0;
}
.solution-section .solution-card .solution-rt-content p {
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  color: var(--sub-heading-text);
}

.development-section {
  padding: 100px 0;
  position: relative;
  z-index: 0;
}
.development-section::before {
  content: "";
  background-image: url(../images/development-pattern.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 740px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.development-section .heading {
  text-align: center;
}
.development-section .development-card {
  border: 1px solid var(--card-border);
  padding: 26px;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
  background-color: #fff;
}
.development-section .development-card:hover {
  border: 1px solid var(--primary-border);
}
.development-section .development-card .development-card-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.development-section .development-card .development-card-heading .development-heading-profile {
  width: 120px;
  height: 120px;
  background-color: var(--profile-bg);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 36px;
}
.development-section .development-card .development-card-heading .development-heading-profile img {
  max-width: 80px;
}
.development-section .development-card .development-card-heading h4 {
  color: var(--primary-color);
  margin: 0;
}
.development-section .development-card .development-card-heading h4 span {
  font-weight: 500;
}
.development-section .development-card .development-card-heading .development-profile-bg1 {
  background-color: var(--development-bg);
}
.development-section .development-card .development-card-heading .development-profile-bg2 {
  background-color: var(--development-bg1);
}
.development-section .development-card .development-card-heading .development-profile-bg3 {
  background-color: var(--development-bg2);
}
.development-section .development-card .development-body {
  margin-bottom: 32px;
  min-height: 120px;
}
.development-section .development-card .development-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.development-section .development-card .development-card-footer .development-footer-box {
  width: 100%;
  text-align: center;
  border: 1px solid var(--card-border);
  padding: 20px 5px;
  border-radius: 6px;
  margin-right: 10px;
  transition: 0.3s;
}
.development-section .development-card .development-card-footer .development-footer-box:hover {
  border: 1px solid var(--primary-border);
}
.development-section .development-card .development-card-footer .development-footer-box:last-child {
  margin: 0;
}
.development-section .development-card .development-card-footer .development-footer-box img {
  max-width: 100px;
  margin-bottom: 16px;
}
.development-section .development-card .development-card-footer .development-footer-box p {
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
  color: var(--text-light);
  margin: 0;
  letter-spacing: -0.5px;
}
.development-section .development-card .development-bottom {
  text-align: center;
}

.client-section {
  padding: 100px 0;
}
.client-section .heading {
  text-align: center;
}
.client-section .client-slider {
  overflow: hidden;
  margin-bottom: 50px;
}
.client-section .client-slider .clinet-logo {
  overflow: hidden;
  margin: 0 20px;
}
.client-section .client-rtl-slider {
  overflow: hidden;
}
.client-section .client-rtl-slider .clinet-logo {
  overflow: hidden;
  margin: 0 20px;
}

.result-section {
  padding: 100px 0;
  background-color: var(--grey-bg);
  position: relative;
  z-index: 0;
}
.result-section::before {
  content: "";
  background-image: url(../images/result-pattern.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.result-section .heading {
  text-align: center;
}
.result-section .result-wrapper {
  position: relative;
}
.result-section .result-wrapper .result-slider {
  box-shadow: 0px 4px 13.6px 0px rgba(0, 0, 0, 0.08);
  padding: 32px;
  background-color: var(--light-color);
  border: 1px solid var(--slider-border);
  border-radius: 20px;
  margin: 0 20px;
}
.result-section .result-wrapper .result-slider .result-lt-img {
  height: 100%;
}
.result-section .result-wrapper .result-slider .result-lt-img img {
  height: 100%;
}
.result-section .result-wrapper .result-slider .result-rt-content h5 {
  margin-bottom: 18px;
  font-weight: 500;
}
.result-section .result-wrapper .result-slider .result-rt-content h4 {
  margin-bottom: 18px;
}
.result-section .result-wrapper .result-slider .result-rt-content .result-project-text {
  margin-bottom: 20px;
}
.result-section .result-wrapper .result-slider .result-rt-content .result-project-text span {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  color: var(--text-light);
}
.result-section .result-wrapper .result-slider .result-rt-content .result-project-text p {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}
.result-section .result-wrapper .result-slider .result-rt-content .result-study {
  margin: 25px 0 35px 0;
}
.result-section .result-wrapper .result-slider .result-rt-content .result-listing {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.result-section .result-wrapper .result-slider .result-rt-content .result-listing li {
  padding-right: 26px;
}
.result-section .result-wrapper .result-slider .result-rt-content .result-listing li:last-child {
  padding-right: 0;
}
.result-section .result-wrapper .result-slider .result-rt-content .result-listing li span {
  font-size: 52px;
  line-height: 70px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: var(--text-light);
}
.result-section .result-wrapper .result-slider .result-rt-content .result-listing li p {
  margin: 0;
  font-weight: 400;
}
.result-section .result-wrapper .slick-list {
  padding: 30px 0 !important;
}

.approach-section {
  padding: 100px 0;
  background-color: var(--grey-bg);
}
.approach-section .heading {
  text-align: center;
}
.approach-section .approach-wrapper .approach-box {
  width: 100%;
  padding-bottom: 60px;
}
.approach-section .approach-wrapper .approach-box:last-child {
  padding-bottom: 0;
}
.approach-section .approach-wrapper .approach-box .approach-box-inner {
  box-shadow: 0px 4px 13.6px 0px rgba(0, 0, 0, 0.08);
  background-color: var(--light-color);
  padding: 30px 60px 30px 150px;
  max-width: 85%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.approach-section .approach-wrapper .approach-box .approach-box-inner em {
  font-size: 100px;
  line-height: 150px;
  font-weight: 300;
  color: var(--sub-heading-text);
  margin-right: 32px;
  opacity: 0.2;
  font-style: normal;
}
.approach-section .approach-wrapper .approach-box .approach-box-inner .approach-profile {
  width: 130px;
  min-width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--approach-profile-bg);
  border-radius: 100px;
  margin-right: 32px;
}
.approach-section .approach-wrapper .approach-box .approach-box-inner .approach-profile img {
  max-width: 80px;
}
.approach-section .approach-wrapper .approach-box .approach-box-inner .approach-rt-content h4 {
  margin-bottom: 12px;
}
.approach-section .approach-wrapper .approach-box .approach-box-inner .approach-rt-content p {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}
.approach-section .approach-wrapper .approach-box .approach-box-right {
  margin-left: auto;
}
.approach-section .approach-wrapper .approach-box .approach-box-right .approach-profile {
  background-color: var(--approach-profile1-bg);
}
.approach-section .approach-wrapper .approach-box .approach-box-left .approach-profile {
  background-color: var(--approach-profile2-bg);
}
.approach-section .approach-wrapper .approach-pattern1 {
  position: relative;
  z-index: 0;
}
.approach-section .approach-wrapper .approach-pattern1::before {
  content: "";
  background-image: url(../images/approach-pattern1.svg);
  height: 100%;
  width: 310px;
  right: 50px;
  position: absolute;
  top: 70px;
  background-repeat: no-repeat;
  z-index: -1;
}
.approach-section .approach-wrapper .approach-pattern2 {
  position: relative;
  z-index: 0;
}
.approach-section .approach-wrapper .approach-pattern2::before {
  content: "";
  background-image: url(../images/approach-pattern2.svg);
  height: 100%;
  width: 310px;
  left: 50px;
  position: absolute;
  top: 70px;
  background-repeat: no-repeat;
  z-index: -1;
}

.feedback-section {
  padding: 100px 0;
}
.feedback-section .heading {
  text-align: center;
}
.feedback-section .feedback-wrapper {
  padding-bottom: 34px;
}
.feedback-section .feedback-lt-img {
  border-radius: 16px;
  overflow: hidden;
}
.feedback-section .feedback-rt-content .feedback-icon {
  margin-bottom: 16px;
}
.feedback-section .feedback-rt-content .feedback-icon img {
  max-width: 50px;
}
.feedback-section .feedback-rt-content .feedback-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  margin-bottom: 16px;
}
.feedback-section .feedback-rt-content .feedback-list li {
  padding-right: 6px;
}
.feedback-section .feedback-rt-content h5 {
  margin-bottom: 60px;
  font-weight: 500;
}
.feedback-section .feedback-rt-content h4 {
  margin-bottom: 8px;
}
.feedback-section .feedback-rt-content span {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--sub-heading-text);
}

.update-section {
  padding: 100px 0;
  background-color: var(--grey-bg);
}
.update-section .update-wrapper {
  position: relative;
}
.update-section .update-wrapper::before {
  content: "";
  background-image: url(../images/slider-pattern.svg);
  height: 100%;
  width: 208px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}
.update-section .update-wrapper::after {
  content: "";
  background-image: url(../images/slider-pattern.svg);
  height: 100%;
  width: 208px;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-180deg);
  z-index: 9;
}
.update-section .update-wrapper .update-slider .update-card {
  box-shadow: 0px 4px 13.6px 0px rgba(0, 0, 0, 0.08);
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 20px;
}
.update-section .update-wrapper .update-slider .update-card .update-body {
  padding: 32px 24px;
  position: relative;
}
.update-section .update-wrapper .update-slider .update-card .update-body .update-profile-list {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--light-color);
  box-shadow: 0px 4px 17.6px 0px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  border-radius: 8px;
  position: absolute;
  top: -20px;
  right: 24px;
}
.update-section .update-wrapper .update-slider .update-card .update-body .update-profile-list li {
  color: var(--sub-heading-text);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-right: 16px;
  display: flex;
  align-items: center;
}
.update-section .update-wrapper .update-slider .update-card .update-body .update-profile-list li .fa-solid, .update-section .update-wrapper .update-slider .update-card .update-body .update-profile-list li .fa-regular {
  margin-right: 6px;
}
.update-section .update-wrapper .update-slider .update-card .update-body .update-profile-list li:last-child {
  margin: 0;
}
.update-section .update-wrapper .update-slider .update-card .update-body p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
  font-weight: 400;
}

.talent-section {
  padding: 100px 0;
  position: relative;
  z-index: 0;
}
.talent-section::before {
  content: "";
  background-image: url(../images/talent-pattern.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 630px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.talent-section .talent-card {
  border: 1px solid var(--card-border);
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
  background-color: var(--light-color);
  transition: 0.3s;
}
.talent-section .talent-card:hover {
  border: 1px solid var(--primary-border);
}
.talent-section .talent-card .talent-card-heading {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.talent-section .talent-card .talent-card-heading img {
  margin-right: 16px;
  max-width: 136px;
}
.talent-section .talent-card .talent-card-heading .talent-profile-text h6 {
  margin-bottom: 8px;
}
.talent-section .talent-card .talent-card-heading .talent-profile-text p {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}
.talent-section .talent-card .talent-card-body {
  padding-bottom: 24px;
}
.talent-section .talent-card .talent-card-body span {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 0 8px 8px 0;
  background-color: var(--talent-chip);
  color: var(--text-light);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}
.talent-section .talent-card .talent-card-body ul {
  margin: 0 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.talent-section .talent-card .talent-card-body ul li {
  padding-right: 12px;
  font-size: 24px;
  line-height: 27px;
  font-weight: 400;
  color: var(--text-light);
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.talent-section .talent-card .talent-card-body ul li .fa-solid {
  padding-right: 12px;
  font-size: 16px;
}
.talent-section .talent-card .blue-card-body span {
  background-color: var(--talent-chip1);
}
.talent-section .talent-card .grey-card-body span {
  background-color: var(--talent-chip2);
}
.talent-section .talent-card .green-card-body span {
  background-color: var(--talent-chip3);
}

.choose-section {
  padding: 100px 0;
  background-color: var(--grey-bg);
}
.choose-section .heading {
  text-align: center;
}
.choose-section .choose-card {
  box-shadow: 0px 4px 13.6px 0px rgba(0, 0, 0, 0.08);
  padding: 36px 32px;
  background-color: var(--light-color);
  border-radius: 12px;
}
.choose-section .choose-card h3 {
  margin-bottom: 24px;
  color: var(--about-heading);
}
.choose-section .choose-card h6 {
  margin-bottom: 8px;
}
.choose-section .choose-card p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
}

.award-section {
  padding: 100px 0;
}
.award-section .heading h2 {
  font-size: 38px;
  line-height: 54px;
}
.award-section .award-wrapper .award-slider .slick-list {
  padding: 40px 0 !important;
}
.award-section .award-wrapper .award-slider .award-card {
  padding: 16px 16px 24px 16px;
  box-shadow: 0px 4px 13.6px 0px rgba(0, 0, 0, 0.08);
  background-color: var(--light-color);
  text-align: center;
  margin: 0 16px;
  border-radius: 12px;
  overflow: hidden;
}
.award-section .award-wrapper .award-slider .award-card .award-card-header {
  padding: 20px;
  background-color: var(--award-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-section .award-wrapper .award-slider .award-card .award-card-header img {
  width: auto;
  max-width: 180px;
}
.award-section .award-wrapper .award-slider .award-card .award-body {
  padding: 16px 16px 0 16px;
}
.award-section .award-wrapper .award-slider .award-card .award-body p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: var(--text-light);
  min-height: 58px;
}/*# sourceMappingURL=custom.css.map */