#sponsors-section {
  width: 100%;
}

#sponsors-section > h2 {
  font-size: 36px;
  color: #222222;
  font-family: "Quicksand", sans-serif;
}

#sponsors-section .owl-carousel {
  overflow: hidden;
}

#sponsors-section .owl-carousel .owl-nav {
  display: none;
}

#sponsors-section .owl-carousel .item {
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  margin: 10px;
  cursor: pointer;
}

#sponsors-section .owl-carousel .item:hover img {
  opacity: 1;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

#sponsors-section .owl-carousel .item img {
  opacity: 0.4;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

h5 {
  float: left;
  width: 100%;
  margin: 0;
  margin-bottom: 30px;
}

h5 ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  text-align: center;
}

h5 ul li {
  position: relative;
  display: inline-block;
  color: #777777;
  padding: 0px 12px 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  margin: 0px 10px 8px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  font-family: "Quicksand", sans-serif;
}

h5 ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #e60a80;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 0px;
}

h5 ul li::after {
  position: absolute;
  content: '/';
  right: -14px;
  top: 1px;
  font-size: 14px;
  color: #222222;
}

h5 ul li:hover::before {
  width: 100%;
}

h5 ul li.active {
  color: #222222;
}

h5 ul li.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #e60a80;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
}

#cards-section.wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#cards-section.wrapper .card {
  margin: 1.6%;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
  max-width: 30%;
}

#cards-section.wrapper .card > div {
  width: 100%;
  position: relative;
}

#cards-section.wrapper .card > div img {
  width: 100%;
  border-radius: 10px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#cards-section.wrapper .card > div:hover .overlay,
#cards-section.wrapper .card > div:hover .arrow-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  pointer-events: all;
}

#cards-section.wrapper .card > div:hover .overlay {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

#cards-section.wrapper .card > div:hover .arrow-link {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#cards-section.wrapper .card > div .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  opacity: 0;
  pointer-events: none;
  border-radius: 10px;
}

#cards-section.wrapper .card > div .overlay i:not(.fa-arrow-right) {
  font-size: 18px;
  padding: 16px;
  background-color: #06009c;
  color: #fff;
  cursor: pointer;
  position: relative;
  margin: 0 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#cards-section.wrapper .card > div .overlay i:not(.fa-arrow-right)::after {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: calc(50% + 3px);
  left: calc(50% + 3px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#cards-section.wrapper .card > div .overlay i:not(.fa-arrow-right):hover {
  background-color: #fff;
  color: #06009c;
}

#cards-section.wrapper .card > div .overlay i:not(.fa-arrow-right):hover::after {
  top: calc(50% + 2px);
  left: calc(50% + 2px);
  background-color: #06009c;
}

#cards-section.wrapper .card > div .arrow-link {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  text-decoration: none;
  position: absolute;
  bottom: -30px;
  right: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
  opacity: 0;
  pointer-events: none;
}

#cards-section.wrapper .card > div .arrow-link:hover {
  background-color: #06009c;
}

#cards-section.wrapper .card > div .arrow-link:hover .fa-chevron-right {
  color: #fff;
}

#cards-section.wrapper .card > div .arrow-link .fa-chevron-right {
  font-size: 20px;
  color: #06009c;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#cards-section.wrapper .card > h3 {
  margin: 0;
  margin-top: 25px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
  font-family: "Quicksand", sans-serif;
  text-align: center;
  width: 100%;
}

#cards-section.wrapper .card > h3 small {
  font-weight: 300;
}

#cards-section.wrapper .card > h3 a {
  text-decoration: none;
  color: #222222;
}

@media (max-width: 800px) {
  .wrapper .card {
    margin: 1%;
    margin-bottom: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 48%;
            flex: 1 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 500px) {
  .wrapper .card {
    margin: 0;
    margin-bottom: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
/*# sourceMappingURL=portfolio-pages.css.map */