/* section */
#homeSection {
  background-image: url(./../assets/background_right.png),
    url(./../assets/background_left.png);
  background-position: 100% 30%, 0% 78%;
  background-repeat: no-repeat, no-repeat;
}

.sectionsWithPadding {
  padding: 0px 120px;
}

.title {
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  color: var(--black33);
}

/* banner */

.banner {
  color: var(--textColor);
  justify-content: space-between;
  overflow-y: clip;
}

.bannerText {
  width: 40%;
  margin-top: 50px;
}
.bannerHeading {
  font-weight: bold;
  font-size: 35px;
  line-height: 41px;
  color: var(--primaryColor);
}
.bannerDescription {
  font-size: 20px;
  line-height: 26px;
  margin: 20px 0px 30px 0px;
}
.buttonWrapper {
  display: flex;
  gap: 15px;
  font-size: 16px;
}

.bannerImageWrapper {
  width: 55%;
  position: relative;
  height: 450px;
  z-index: -1;
}
.bannerImage, .bgConatiner {
  width: 100%;
  height: 99%;
  position: absolute;
  display: flex;
  justify-content: center;
}

.grayBg {
  animation: upDown 2s alternate ease-in-out infinite;
  will-change: transform;
}

@keyframes upDown {
  0% {
    transform: translateY(-8px);
  }
  100% {
      transform: translateY(8px);
  }
}

.greenBg {
  animation: leftRight 2s alternate ease-in-out infinite;
  will-change: transform;
  top: -30px;
  width: 97%;
}

@keyframes leftRight {
  0% {
    transform: translateX(-8px);
  }
  100% {
      transform: translate(8px);
  }
}

/* Outsource */
.outSource {
  margin-bottom: 70px;
}

.cardWrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  width: 260px;
  height: 260px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(117, 117, 117, 0.3);
  box-sizing: border-box;
  box-shadow: 0px 2px 3px 2px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  font-size: 20px;
  color: var(--black);
}
.cardImage {
  height: 150px;
  width: 200px;
  margin: auto;
}
/* .cardImage > img {
  width: 100%;
  height: 100%;
} */
.cardName {
  text-align: center;
}

/* about */
.about {
  margin: 70px 0 70px 0;
  padding: 60px 20px;
  display: flex;
  gap: 35px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  box-sizing: border-box;
  border-radius: 70px;
}
.logoWrapper {
  width: 250px;
  height: 215px;
}
.ellipse {
  width: 250px;
  height: 20px;
  margin-top: 20px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(196, 196, 196, 0.96) 0%,
    rgba(196, 196, 196, 0) 100%
  );
}
.description {
  font-size: 20px;
  line-height: 33px;
  color: var(--black33);
  margin-bottom: 30px;
}
.buttonCenter {
  display: flex;
  align-items: center;
}
.buttonCenter > a {
  min-width: 135px;
}

/* services */
.tabNameWrapper {
  width: 80%;
  margin: 70px auto 0 auto;
}
.tabWrapper {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.tab {
  width: 50%;
}
.tabWrapper > .activeTab {
  color: var(--primaryColor);
}
.tab {
  padding: 10px 0;
}
.tab-body {
  padding-bottom: 20px;
}
.tab-body > div {
  display: none;
}

.tab-body .activeTab {
  display: block;
  display: flex;
}

.tabs .tab-indicator {
  position: relative;
  width: 50%;
  height: 5px;
  background: var(--primaryColor);
  left: 0;
  border-radius: 5px;
  transition: all 300ms ease-in-out;
}

.servicesListWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.serviceListCard {
  width: 260px;
  text-align: center;
  margin-top: 30px;
}

.readMoreButton {
  text-align: center;
  width: 85px;
  padding: 10px 30px;
  position: relative;
  transition: 0.5s;
}

.readMoreButton:after {
  content: url(./../assets/rightArrow.svg);
  position: absolute;
  opacity: 0;
  top: 11px;
  right: 1px;
  transition: 0.5s;
}

.readMoreButton:hover {
  background: var(--primaryColor);
  padding: 10px 35px 10px 25px;
}

.readMoreButton:hover:after {
  opacity: 1;
  right: 15px;
}
.serviceIcon {
  /* width: 100px;
  height: 95px; */
  width: 170px;
  height: 135px;
  margin: auto;
  background: url(./../assets/home/services/icon-background2.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.serviceIconDiv {
  width: 55px;
  height: 55px;
  margin: auto;
}
.serviceName {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 21px;
}
.serviceDes {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 25px;
}

/* software */
.software {
  margin: 110px 20px 0px 20px;
}
/* .softwareCompanyLogo > img {
  -webkit-filter: grayscale(100%); 
  filter: grayscale(100%);
  transition: filter 500ms ease;
} */
.softwareCompanyLogo > img:hover {
  /* -webkit-filter: grayscale(0%); 
  filter: grayscale(0%); */
  cursor: pointer;
}
.serviceLogoWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 45px 0px;
  gap: 50px;
}

/* testimonial */
.testimonials {
  margin: 110px 100px 0px 100px;
}
.reviewWrapper {
  padding-top: 30px;
  min-height: 400px;
  position: relative;
}
.reviewCard,
.reviewFooter {
  margin: auto;
}
.reviewCard {
  background: rgba(117, 117, 117, 0.15);
  border-radius: 2px;
}
#rightTriangle {
  width: 0;
  height: 0;
  border-top: 24px solid rgba(117, 117, 117, 0.15);
  border-left: 25px solid transparent;
  position: absolute;
  left: 10px;
}
.reviewFooter {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.reviewData {
  font-size: 20px;
  line-height: 150%;
  text-align: left;
  padding: 40px;
  color: var(--gray55);
}
.reviewData,
.reviewerName,
.reviewerCompany {
  transition: opacity 0.7s ease;
}
.quotes {
  font-size: 36px;
  font-family: auto;
}
.reviewerData {
  color: var(--black33);
}
.reviewerName {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
}

.reviewerPagination {
  display: flex;
  gap: 5px;
}
.leftButton,
.rightButton,
.slick-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  text-align: center;
  background: var(--lightGrayC4);
}
.leftButton:hover,
.rightButton:hover,
.slick-arrow:hover {
  background: var(--primaryColor);
}

/* company images */
.companyImages {
  margin: 110px 40px 60px 40px;
  padding-bottom: 60px;
}
.clientWrapper {
  margin-top: 40px;
}

/* Slider */
.slick-slide {
  margin: 0px 20px;
  height: 100%;
}

.logo-carousel {
  overflow: inherit;
}

.slick-slide img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  cursor: pointer;
}

.slick-slide > div {
  height: 100%;
}

.slick-track::before,
.slick-track::after {
  display: table;
  content: "";
}

.slick-track::after {
  clear: both;
}

.slick-track,
.slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide.slick-loading img {
  display: none;
}

/* .slick-slide.dragging img {
  pointer-events: none;
} */
.slick-list {
  margin: 0 20px !important;
  cursor: pointer;
}

.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-arrow {
  position: absolute;
  top: 40%;
  /* background: url(./../assets/carouselArrow.svg) center no-repeat; */
  border: none;
  /* text-indent: -10000px; */
  z-index: 99;
}

.slick-arrow.slick-next {
  right: 2px;
}

.slick-arrow.slick-prev {
  left: 2px;
}

.container {
  overflow: hidden;
  height: 100px;
}
.logo-carousel,
.slick-list,
.slick-slide,
.slide {
  height: 100%;
}

/* responsive */
@media only screen and (max-device-width: 768px) {
  .logoSection {
    width: 180px;
    height: 180px;
    margin: auto;
  }
  .logoWrapper,
  .ellipse {
    width: 160px;
  }
  .logoWrapper {
    height: auto;
  }
  .ellipse {
    height: 20px;
  }
  .slick-arrow {
    top: 35%;
  }
}

@media only screen and (max-device-width: 355px) {
  .buttonWrapper {
    gap: 5px;
    font-size: 15px;
  }
  .buttonWrapper > .primary-button,
  .buttonWrapper > .secondary-button {
    padding: 7px 5px !important;
  }
}
@media (min-device-width: 1024px) and (max-device-width: 1120px) {
  .sectionsWithPadding {
    padding: 0 80px;
  }
  .bannerImageWrapper {
    height: 430px;
  }
  .software {
    margin: 110px 80px 80px 80px;
  }
  .testimonials {
    margin: 0 80px;
  }
  .companyImages {
    margin: 40px 80px;
  }
}
@media (min-device-width: 1121px) and (max-device-width: 1279px) {
  .sectionsWithPadding {
    padding: 0 100px;
  }
  .software {
    margin: 110px 100px 80px 100px;
  }
  .testimonials {
    margin: 0 100px;
  }
  .companyImages {
    margin: 40px 100px;
  }
}
@media only screen and (max-device-width: 1023px) {
  .sectionsWithPadding {
    padding: 0 40px;
  }
  .software {
    margin: 110px 40px 80px 40px;
  }
  .buttonWrapper > .primary-button,
  .buttonWrapper > .secondary-button {
    padding: 7px 10px;
  }
  .testimonials {
    margin: 0 40px;
  }
  .reviewData {
    padding: 20px;
  }
  .quotes {
    font-size: 24px;
  }
  .reviewData {
    font-size: 16px;
  }
  .card {
    width: 240px;
    height: 240px;
  }
  .cardImage {
    width: 180px;
    height: 120px;
  }
}
@media (min-device-width: 650px) and (max-device-width: 850px) {
  .bannerDescription {
    font-size: 18px;
    line-height: 25px;
    margin: 20px 0px 20px 0px;
  }
  .buttonWrapper {
    gap: 5px;
    font-size: 14px;
  }
  .bannerText {
    margin-top: 20px;
  }
}

@media (min-device-width: 851px) and (max-device-width: 920px) {
  .bannerImageWrapper {
    height: 420px;
  }
}
@media (min-device-width: 921px) and (max-device-width: 1023px) {
  .bannerImageWrapper {
    height: 425px;
  }
}

@media (min-device-width: 1024px) and (max-device-width: 1050px) {
  .buttonWrapper > .primary-button,
  .buttonWrapper > .secondary-button {
    padding: 10px 15px;
  }
}

@media only screen and (max-device-width: 539px) {
  .companyImages {
    padding-bottom: 0px;
  }
  .card {
    width: 100%;
  }
}
@media only screen and (max-device-width: 850px) {
  .banner,
  .bannerImageWrapper {
    height: 315px;
  }
  .title {
    font-size: 21px;
  }
  .bannerHeading {
    font-size: 24px;
    line-height: 31px;
  }
  .about {
    flex-flow: column;
    padding: 30px 20px;
    gap: 0px;
  }
  .description {
    text-align: center;
  }
  .buttonCenter {
    justify-content: center;
  }
  .description {
    font-size: 18px;
    line-height: 28px;
  }
  .logoWrapper,
  .ellipse {
    margin: auto;
  }
  .companyImages {
    margin: 40px;
  }
  .clientWrapper {
    margin-top: 20px;
  }
}

@media only screen and (max-device-width: 768px) {
  .readMoreButton {
    background: var(--primaryColor);
    padding: 10px 35px 10px 25px;
  }

  .readMoreButton:after {
    opacity: 1;
    right: 15px;
    top: 10px;
  }
}

@media (min-device-width: 651px) and (max-device-width: 719px) {
  .bannerText {
    margin-top: 15px;
  }
  .bannerImageWrapper {
    height: 290px;
  }
  .bannerDescription {
    font-size: 16px;
    margin: 10px 0;
  }
  .buttonWrapper {
    font-size: 13px;
  }
  .bannerText {
    width: 44%;
  }
}

@media only screen and (max-device-width: 650px) {
  #homeSection {
    background: none;
  }
  .sectionsWithPadding {
    padding: 0 20px;
  }
  .testimonials {
    margin: 0 20px;
  }
  .software {
    margin: 40px 20px 40px 20px;
  }
  .companyImages {
    margin: 40px 20px;
  }
  .bannerImageWrapper {
    display: none;
  }
  .bannerText {
    width: 100%;
    margin-top: 25px;
  }
  .banner,
  .bannerImageWrapper {
    height: auto;
  }
  .banner {
    min-height: auto;
  }
  .tabNameWrapper {
    width: 100%;
    margin-top: 20px;
  }
  .about {
    border-radius: 10px;
  }
}

@media only screen and (min-device-width: 1441px) {
  .sectionsWithPadding {
    padding: 0 150px;
  }
  .bannerImageWrapper {
    width: 53%;
  }
  .software {
    margin: 110px 150px 80px 150px;
  }
  .testimonials {
    margin: 0 150px;
  }
  .companyImages {
    margin: 40px 150px;
  }
}

@media only screen and (min-device-width: 1600px) {
  .sectionsWithPadding {
    padding: 0 200px;
  }
  .software {
    margin: 110px 200px 80px 200px;
  }
  .testimonials {
    margin: 0 200px;
  }
  .companyImages {
    margin: 40px 200px;
  }
}

@media only screen and (min-device-width: 1700px) {
  .sectionsWithPadding {
    padding: 0 250px;
  }
  .software {
    margin: 110px 250px 80px 250px;
  }
  .testimonials {
    margin: 0 250px;
  }
  .companyImages {
    margin: 40px 250px;
  }
}
@media only screen and (min-device-width: 1750px) {
  .sectionsWithPadding {
    padding: 0 300px;
  }
  .software {
    margin: 110px 300px 80px 300px;
  }
  .testimonials {
    margin: 0 300px;
  }
  .companyImages {
    margin: 40px 300px;
  }
}
@media only screen and (min-device-width: 1800px) {
  .sectionsWithPadding {
    padding: 0 350px;
  }
  .software {
    margin: 110px 350px 80px 350px;
  }
  .testimonials {
    margin: 0 350px;
  }
  .companyImages {
    margin: 40px 350px;
  }
}
@media only screen and (min-device-width: 1900px) {
  .sectionsWithPadding {
    padding: 0 400px;
  }
  .testimonials {
    margin: 0 400px;
  }
  .companyImages {
    margin: 40px 400px;
  }
}

@media only screen and (max-device-width: 480px) {
  .buttonWrapper > a {
    width: 50%;
    text-align: center;
  }
  .cardWrapper {
    margin-top: 20px;
  }
  .about {
    margin: 40px 0;
  }
  .outSource {
    margin-bottom: 40px;
  }
  .logoSection {
    width: 120px;
    height: 120px;
    margin: auto;
  }
  .logoWrapper,
  .ellipse {
    width: 100px;
  }
  .logoWrapper {
    height: auto;
  }
  .ellipse {
    height: 10px;
  }
  .tabs {
    position: relative;
  }
  .tabNameWrapper {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .tabWrapper {
    font-size: 14px;
  }
  .readMoreButton {
    z-index: 0;
  }
  .reviewerName {
    font-size: 16px;
  }
  .reviewerCompany {
    font-size: 14px;
  }
  .description {
    font-size: 16px;
    line-height: 24px;
  }
  .slick-arrow {
    top: 20%;
  }
  .container {
    height: 50px;
  }
  .leftButton,
  .rightButton,
  .slick-arrow {
    width: 25px;
    height: 25px;
  }
}
