/* common border radius */
/* disable text selection */
section.gt-block.services .services__item {
  width: 100%;
  display: flex;
  min-height: 400px;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  section.gt-block.services .services__item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  section.gt-block.services .services__item {
    min-height: unset;
    flex-direction: column-reverse;
  }
}
section.gt-block.services .services__item:last-child {
  margin-bottom: 0px;
}
section.gt-block.services .services__item:nth-child(2n+1) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  section.gt-block.services .services__item:nth-child(2n+1) {
    flex-direction: column-reverse;
  }
}
section.gt-block.services .services__item-content {
  width: 31%;
  background-color: #FFEAB9;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  section.gt-block.services .services__item-content {
    width: 35%;
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  section.gt-block.services .services__item-content {
    width: 100%;
    padding: 20px;
  }
}
section.gt-block.services .services__item-content-title {
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 992px) {
  section.gt-block.services .services__item-content-title {
    margin-bottom: 15px;
  }
}
section.gt-block.services .services__item-content-text {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.gt-block.services .services__item-content-text {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  section.gt-block.services .services__item-content-text {
    margin-bottom: 15px;
  }
}
section.gt-block.services .services__item-content-cta {
  text-align: center;
}
section.gt-block.services .services__item-illustration {
  width: 69%;
}
@media screen and (max-width: 1200px) {
  section.gt-block.services .services__item-illustration {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  section.gt-block.services .services__item-illustration {
    width: 100%;
  }
}
section.gt-block.services .services__item-illustration img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  section.gt-block.services .services__item-illustration img {
    height: 150px;
    object-position: center center;
  }
}
