.stats-wrapper {
  width: 100%;
  margin: auto;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* FLEX */

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BOX */

.stat-box {
  flex: 1;
  min-width: 250px;
  padding: 35px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid #ececec;
  transition: 0.3s ease;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box:hover {
  background: #fafafa;
}

/* ICON */

.stat-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 30px;
  color: #ff7a00;
}

/* CONTENT */

.stat-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-content p {
  font-size: 20px;
  color: #555555;
  font-weight: 500;
}

/* TABLET */

@media (max-width: 991px) {
  .stat-box {
    width: 50%;
    min-width: 50%;
    border-bottom: 1px solid #ececec;
  }

  .stat-box:nth-child(2) {
    border-right: none;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  section#thavertech-about {
    padding-top: 34px !important;
    padding-bottom: 12px !important;
  }
  .what-we-do-padding {
    padding: 35px 0 !important;
    margin-top: 30px !important;
  }
  .stats-container {
    flex-direction: column;
  }

  .stat-box {
    width: 100%;
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid #ececec;
    padding: 25px 20px;
  }

  .stat-box:last-child {
    border-bottom: none;
  }

  .stat-content h2 {
    font-size: 38px;
  }

  .stat-content p {
    font-size: 17px;
  }

  .stat-icon {
    width: 58px;
    height: 58px;
  }

  .stat-icon i {
    font-size: 26px;
  }
  .about-content {
    padding-left: 0;
    padding-top: 100px;
  }
}

section#thavertech-about {
  padding-top: 60px;
  padding-bottom: 100px;
}

section.inner-banner {
  background: url(../../images/thavertech-banner.jpg) no-repeat top / cover;
}

.thavertech-logo {
  position: absolute;
  right: 0;
  border-radius: 6px;
  width: 109px;
  height: 109px;
  justify-content: center;
  display: flex;
  align-items: center;
  z-index: 99;
  padding: 12px;
  background-color: #0a1f3e;
}

.thavertech-logo img {
  width: 100%;
}

.about-thavertech-quote {
  background-color: #fff;
  position: absolute;
  padding: 20px;
  width: 390px;
  bottom: -12%;
  border: solid 3px var(--primary-color);
  border-radius: 10px;
}

.about-thavertech-quote p {
  font-weight: 600;
  margin-bottom: 0;
}

.about-thavertech-quote::before {
  content: "";
  background-image: url(../../images/quote-02.jpg);
  background-color: #fff;
  width: 50px;
  height: 40px;
  position: absolute;
  top: -20px;
  background-repeat: no-repeat;
}

.ani-left-right {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: LeftRight;
  animation-timing-function: ease-in-out;
}

@keyframes LeftRight {
  0% {
    transform: translate(0px, 0px);
  }

  65% {
    transform: translate(30px, 0);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.background-overlay {
  background-color: #1f2732;
  inset: 0;
  position: absolute;
  opacity: 0.8;
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}

.what-we-do {
  position: relative;
}

.why-us-block {
  position: relative;
  display: block;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.why-us-block .inner-block {
  position: relative;
  display: inline-block;
  width: 50%;
  float: left;
}

.why-us-block .inner-block .content-block {
  position: relative;
  display: block;

  text-align: center;
  padding: 38px 15px 38px 15px;
}

.color2 {
  background-color: rgba(255, 255, 255, 0.2);
}

.why-us-block .inner-block .content-block h4 {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0px;
}

.what-we-do {
  color: #fff;
}

.what-we-do p {
  color: #dbdbdb;
  padding-right: 120px;
}

.what-we-do-padding {
  padding: 60px 0;
  margin-top: 30px;
}

section.why-choose-us {
  padding: 40px 0;
}

.features {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature {
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border: solid 1px #ccc;
    border-radius: 10px;
}
.feature:hover{
background: linear-gradient(135deg, #ffc000ba, #c5182dc4);
    color: #fff;
}
.feature:hover h4{
  font-weight: 600;
}

.feature:hover p{
  color: #fff;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ff7a00;
}

.feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: #333;
}

/* know us */

section.inner-banner {
  background: url("../../images/know-us-bg.png") no-repeat center / cover;
}

section.our-journey {
  padding: 60px 0;
  background-color: #fcebed9c;
}

.h--timeline-container *,
.h--timeline-events * {
  outline: 0;
}

.h--timeline-container,
.h--timeline-events {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.h--timeline-navigation-container ul,
.h--timeline-navigation-container li,
.h--timeline-events ol,
.h--timeline-events li,
.h--timeline-line ol,
.h--timeline-line li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.h--timeline {
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

.h--timeline--loaded {
  opacity: 1;
}

.h--timeline-container {
  height: 100px;
}

.h--timeline-dates {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}

.h--timeline-dates::after,
.h--timeline-dates::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 50px;
}

.h--timeline-dates::before {
  left: 0;
  background: linear-gradient(to right, hsl(36, 200, 94), hsla(36, 200, 94, 0));
}

.h--timeline-dates::after {
  right: 0;
  background: linear-gradient(to left, hsl(36, 200, 94), hsla(36, 200, 94, 0));
}

.h--timeline-line {
  position: absolute;
  z-index: 1;
  left: -20px;
  top: 49px;
  height: 2px;
  background-color: #e8dfd5;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition:
    transform 0.4s,
    -webkit-transform 0.4s;
}

.h--timeline-filling-line {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #0a3027;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}

.h--timeline-date {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
}

.h--timeline-date:hover {
  font-weight: 600;
}

.h--timeline-date::after,
.h--timeline-date::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -8px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: #d1774c;
  background-color: #d1774c;
  transition:
    background-color 0.3s,
    border-color 0.3s,
    top 0.3s;
}

.h--timeline-date::before {
  bottom: -3px;
  height: 9px;
  width: 9px;
  border-width: 0px;
  border-color: transparent;
  background-color: transparent;
  z-index: 2;
}

.h--timeline-date:hover::before,
.h--timeline-date:hover::after {
  transition:
    background-color 0.3s,
    border-color 0.3s,
    top 0.3s;
}

.h--timeline-date:hover::after {
  background-color: #779282;
  border-color: #0a3027;
}

.h--timeline-date--selected {
  pointer-events: none;
}

.h--timeline-date--selected::after {
  background-color: #d1774c;
  border-color: #d1774c;
}

.h--timeline-date--selected::before {
  background-color: #d1774c;
}

.h--timeline-date--older-event::after {
  background-color: #d1774c;
  border-color: #d1774c;
}

.h--timeline-navigation {
  font-size: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: #f0dbbd;
  transition: border-color 0.3s;
}

.h--timeline-navigation::after {
  content: "";
  position: absolute;
  height: 13px;
  width: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(../../images/right-angle.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.h--timeline-navigation:hover {
  border-color: #d1774c;
}

.h--timeline-navigation--prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.h--timeline-navigation--next {
  right: 0;
}

.h--timeline-navigation--inactive {
  cursor: not-allowed;
}

.h--timeline-navigation--inactive::after {
  background-position: 0 -16px;
}

.h--timeline-navigation--inactive:hover {
  border-color: #e8dfd5;
}

.h--timeline-events {
  overflow: hidden;
  transition: height 0.4s;
  padding-bottom: 2rem;
}

.h--timeline-event {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 1px 5%;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.h--timeline-event-content {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #f7f7f7;
  border-radius: 5px;
  box-shadow: 0 0 26px 0 rgba(0, 0, 0, 0.1);
}

.h--timeline-events p {
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2em;
  text-transform: none;
}

.h--timeline-event--selected {
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.h--timeline-event--enter-right,
.h--timeline-event--leave-right {
  -webkit-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}

.h--timeline-event--enter-left,
.h--timeline-event--leave-left {
  -webkit-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}

.h--timeline-event--leave-right,
.h--timeline-event--leave-left {
  animation-direction: reverse;
}

.h--timeline-event-title {
  color: #0a2e26;
  font-size: 24px;
  font-weight: 400;
}

.h--timeline-event-date {
  display: block;
  font-style: italic;
  margin: 0.5rem auto;
  margin: 1rem auto;
}

.h--timeline-event-date::before {
  content: "- ";
}

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

*/ .h--timeline-date::after,
.h--timeline-date::before {
  background-color: #d1774c;
}

.h--timeline-line li:nth-child(even) .h--timeline-date {
  bottom: -48px;
}

.h--timeline-line li .h--timeline-date--selected::after,
.h--timeline-line li .h--timeline-date:hover::after {
  width: 21px;
  height: 21px;
  bottom: -10px;
  background-color: #fff2df;
  border-color: #0a3027;
}

.h--timeline-line li:nth-child(even) .h--timeline-date::after {
  bottom: 40px;
}

.h--timeline-line li:nth-child(even) .h--timeline-date:hover::after,
.h--timeline-line li:nth-child(even) .h--timeline-date--selected::after {
  bottom: 37px;
}

.h--timeline-line li:nth-child(even) .h--timeline-date::before {
  bottom: 45px;
}

.h--timeline-line li:nth-child(odd) .h--timeline-date:hover::before,
.h--timeline-line li:nth-child(odd) .h--timeline-date--selected::before {
  bottom: -3px;
}

.founders-section {
  padding: 50px 0px;
  position: relative;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 160px;
  margin-bottom: 30px;
  position: relative;
}

.founder-card.reverse {
  flex-direction: row-reverse;
}

.founder-image {
  flex: 1;
  position: relative;
  max-width: 370px;
}

.founder-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed #d1774c;
  border-radius: 30px;
  top: 16px;
  left: 16px;
  z-index: -1;
}

.founder-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.founder-content {
  flex: 1;
}

.tag {
    display: inline-block;
    /* padding: 8px 18px; */
    /* background: #ffe4d1; */
    color: #d03625;
    /* border-radius: 50px; */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.founder-content h3 {
  font-size: 28px;
  line-height: 1.1;
  color: #0a3027;
  margin-bottom: 10px;
}

.founder-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.founder-info {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0a3027;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #d1774c;
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .founder-card,
  .founder-card.reverse {
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .founders-section {
    padding: 80px 20px;
  }

  .section-heading {
    margin-bottom: 70px;
  }

  .founder-content p {
    font-size: 16px;
  }

  .founder-info {
    flex-direction: column;
  }

  .founder-image::before {
    display: none;
  }

  .floating-badge {
    right: 15px;
    bottom: 15px;
    padding: 15px 20px;
  }

  .floating-badge h4 {
    font-size: 22px;
  }
}

.life-thavertech {
  background-color: #f3f3f3;
  padding: 60px 0;
}
.life-thavertech .row {
  margin-bottom: 30px;
}

.life-thavertech .row + .row {
  margin-bottom: 30px;
}

.life-gallery {
  position: relative;
}

.gallery-img {
  overflow: hidden;
  border-radius: 30px;
  position: relative;
}

.gallery-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(197, 24, 45, 0.25), transparent);
  z-index: 1;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-img:hover img {
  transform: scale(1.08);
}

.large {
  height: 420px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.small {
  height: 200px;
}

.gallery-grid .gallery-img:nth-child(2) {
  animation-delay: 1.5s;
}

.life-box {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 192, 0, 0.15);
  transition: 0.4s;
}

.life-box:hover {
  transform: translateY(-8px);
  border-color: #ffc000;
}

.life-icon {
  min-width: 65px;
  height: 65px;
  border-radius: 18px;
  /* background: linear-gradient(135deg, #ffc000, #c5182d); */
  background: linear-gradient(
    135deg,
    rgb(255 192 0 / 61%),
    rgb(197 24 45 / 88%)
  );

  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(197, 24, 45, 0.25);
}

.life-box h4 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #111;
}

.life-box p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

/* Responsive */

@media (max-width: 991px) {
  .large {
    height: 320px;
  }

  .small {
    height: 160px;
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    gap: 15px;
  }

  .life-box {
    padding: 20px;
    gap: 15px;
  }

  .life-box h4 {
    font-size: 19px;
  }

  .life-icon {
    min-width: 55px;
    height: 55px;
    font-size: 20px;
  }
}

@media (max-width: 1299px) {
  section#thavertech-about {
    padding-top: 50px;
    padding-bottom: 44px;
  }
  .stat-box {
    flex: 1;
    min-width: 220px;
    padding: 25px 15px;
    gap: 16px;
  }
  .stat-content h2 {
    font-size: 24px;
  }
  .stat-content p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .stat-icon {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
  section#thavertech-about {
    padding-top: 50px;
    padding-bottom: 44px;
  }
  section.our-journey {
    padding: 30px 0;
  }
  .h--timeline-events {
    padding-bottom: 0;
  }
  .founders-section {
    padding: 36px 0px;
  }
  .founder-image {
    max-width: 330px;
  }
  .founder-card {
    gap: 70px;
    margin-bottom: 22px;
  }
  .tag {
    padding: 4px 13px;

    font-size: 11px;

    margin-bottom: 20px;
  }
  .life-thavertech {
    padding: 30px 0;
  }
}

@media (max-width: 991px) {
  .services-title {
    width: 56%;
    margin: 0 auto;
  }
  .life-thavertech {
    padding: 30px 0 0 0;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: repeat(1, 1fr);
  }
  .process-grid {
    gap: 108px 40px;
  }
  .process-line {
    top: 0px;
    height: 1970px;
  }
  .why-us-block .inner-block .content-block h4 {
    font-size: 16px;
  }
  .about-thavertech-quote {
    padding: 18px;
    width: 100%;
    bottom: -14%;
  }
  .why-us-block .inner-block {
    margin-bottom: 10px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .why-us-block .inner-block .content-block {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .what-we-do p {
    padding-right: 0;
  }
  .why-us-block {
    margin-top: 30px;
  }
  .ani-left-right {
    animation: none;
  }
  .process-box h3 {
    margin-top: 12px;
    font-size: 18px;
  }
  .founder-content h3 {
    font-size: 23px;
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 576px) {
  .founder-card {
    gap: 26px;
    margin-bottom: 25px;
  }
  .founder-card,
  .founder-card.reverse {
    flex-direction: column;
    gap: 25px;
  }
  .founders-section {
    padding: 26px 0px;
  }
  .gallery-img {
    overflow: hidden;
    border-radius: 17px;
  }
}

@media screen and (max-width: 479px) {
  .founders-section {
    padding: 26px 0px 0 0;
  }
}

section.inner-banner {
  background: url("../../images/inner-banner.png") no-repeat center top / cover;
}

section.our-webcoderskull {
  margin-top: -50px;
}

.team {
  margin: 40px;
}

.team-member {
  margin: 15px 0;
  padding: 0;
  background-color: #f0f0f0;
  padding: 10px;
  box-shadow: 0 1px 2px #ccc;
}

.team-member figure {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.team-member figure img {
  min-width: 100%;
}

.team-member figcaption p {
  font-size: 15px;
  line-height: 1.7;
}

.team-member figcaption ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-member figcaption ul {
  visibility: visible;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.team-member figcaption ul li {
  display: inline-block;
  padding: 10px;
}

.team-member h4 {
  font-family: "Inclusive Sans";
  text-align: center;
  margin: 10px 0 0;
  padding: 0;
  color: #000;
  font-size: 18px;
}

.team-member h4 + p {
  color: #dc3a04;
  text-align: center;
  font-size: 14px;
}

.team-member figcaption {
  padding: 30px;
  color: transparent;
  background-color: transparent;
  position: absolute;
  z-index: 996;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-member figure:hover figcaption {
  visibility: visible;
  color: #fff;
  background-color: rgb(197, 24, 45, 0.8);
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.row.team-row {
  padding: 0 40px;
}

.team-member figure:hover figcaption ul li a:hover {
  color: rgba(49, 49, 49, 0.97);
}

.team-member figure img {
  -webkit-transform: scale(1) rotate(0) translateY(0);
  -moz-transform: scale(1) rotate(0) translateY(0);
  -o-transform: scale(1) rotate(0) translateY(0);
  -ms-transform: scale(1) rotate(0) translateY(0);
  transform: scale(1) rotate(0) translateY(0);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-member figure:hover img {
  -webkit-transform: scale(1.1) rotate(1deg) translateY(12px);
  -moz-transform: scale(1.1) rotate(1deg) translateY(12px);
  -o-transform: scale(1.1) rotate(1deg) translateY(12px);
  -ms-transform: scale(1.1) rotate(1deg) translateY(12px);
  transform: scale(1.1) rotate(1deg) translateY(12px);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

section.our-webcoderskull {
  color: #fff;
}

.team-member figure img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .row.team-row {
    padding: 0;
  }
}


@media screen and (max-width: 576px) {
  .row.team-row {
    padding:0 20px;
  }
  .team-member {
    margin: 10px 0;
    padding: 10px;
}
}