.dg {
  display: -ms-grid;
  display: grid;
  gap: 3rem;
}

/*.grid-col-6 {
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
}

.grid-col-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
}*/
.grid-col-4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .grid-col-4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .grid-col-4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.grid-col-3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .grid-col-3 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .grid-col-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.grid-col-2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 576px) {
  .grid-col-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.ac .ac__inner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ac .ac__inner-wrap .ac__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.ac .ac__inner-wrap .ac__content .ac__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ac .ac__inner-wrap .ac__content .ac__count span.timer {
  font-size: 5rem;
  line-height: 1;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}
.ac .ac__inner-wrap .ac__content .ac__count span.suffix {
  font-size: 5rem;
  line-height: 1;
  font-weight: 600;
}
.ac .ac__inner-wrap .ac__content .ac__text {
  font-size: 2rem;
  line-height: 1;
}

.count-image-position-left .ac .ac__inner-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.count-image-position-left .ac .ac__inner-wrap .ac__img {
  margin-right: 2rem;
}
.count-image-position-top .ac .ac__inner-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.count-image-position-top .ac .ac__inner-wrap .ac__img {
  margin-bottom: 2rem;
}
.count-image-position-right .ac .ac__inner-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: right;
}
.count-image-position-right .ac .ac__inner-wrap .ac__img {
  margin-left: 2rem;
}

.category-card {
  position: relative;
  border-radius: 5px;
  padding: 60px 30px;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-height: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category-card .category-card__content-hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.category-card .category-card__content-hover h3 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.category-card .category-card__content-hover p, .category-card .category-card__content-hover a {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #fff;
  opacity: 0;
}
.category-card .category-card__content-hover p {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.category-card .category-card__content-hover a {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.category-card:before {
  content: "";
  background: #FD6578;
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 0;
}
.category-card .category-card__hover-image {
  background: rgba(253, 101, 120, 0.1);
  border-radius: 100%;
  height: 115px;
  width: 115px;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category-card .category-card__hover-image img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  max-width: 100%;
  z-index: 1;
}
.category-card:hover:before {
  width: 120%;
  height: 120%;
  border-radius: 0;
}
.category-card:hover .category-card__content-hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.category-card:hover .category-card__content-hover h3 {
  color: #fff;
}
.category-card:hover .category-card__content-hover p,
.category-card:hover .category-card__content-hover a {
  opacity: 1;
}
.category-card:hover .category-card__content-hover .category-card__hover-image {
  height: 80px;
  width: 80px;
  background: #fff;
}
.category-card:hover .category-card__content-hover .category-card__hover-image img {
  max-width: 50%;
}

.su-event {
  padding: 50px;
  background: #fff;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: flext-start;
      -ms-flex-align: flext-start;
          align-items: flext-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.su-event .su-event__content {
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 576px) {
  .su-event .su-event__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.su-event .su-event__content .su-event__header {
  color: #1f449d;
}
.su-event .su-event__content .su-event__header span {
  color: #fda82b;
}
.su-event .su-event__content .su-event__header p {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 0;
}
.su-event .su-event__content .su-event__body {
  display: block;
  margin-bottom: 6rem;
}
.su-event .su-event__content .su-event__body .su-event__title {
  font-size: 3.5rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 1rem;
}
.su-event .su-event__content .su-event__body .su-event__title a {
  color: #120F2D;
  text-decoration: none;
}
.su-event .su-event__content .su-event__body .su-event__location {
  color: #606060;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.su-event .su-event__content .su-event__body .su-event__location span:not(:last-child) {
  margin-right: 2rem;
}
.su-event .su-event__content .su-event__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 991px) {
  .su-event .su-event__content .su-event__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 991px) {
  .su-event .su-event__content .su-event__footer .su-event__link {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.su-event .su-event__content .su-event__footer .su-event__link a {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  display: inline-block;
  padding: 1.5rem 2.5rem;
  background: #1f449d;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.su-event .su-event__content .su-event__footer .su-event__link a:hover {
  background: #fda82b;
}
.su-event .su-event__content .su-event__footer .su-event__countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 5rem;
  margin-top: -2rem;
}
@media (max-width: 991px) {
  .su-event .su-event__content .su-event__footer .su-event__countdown {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-left: 0;
    margin-bottom: 2rem;
  }
}
.su-event .su-event__content .su-event__footer .su-event__countdown > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 5rem;
  line-height: 1;
  font-weight: 400;
}
@media (max-width: 768px) {
  .su-event .su-event__content .su-event__footer .su-event__countdown > div {
    font-size: 3rem;
    line-height: 1;
    font-weight: 400;
  }
}
.su-event .su-event__content .su-event__footer .su-event__countdown > div:not(:last-child) {
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .su-event .su-event__content .su-event__footer .su-event__countdown > div:not(:last-child) {
    margin-right: 1rem;
  }
}
.su-event .su-event__content .su-event__footer .su-event__countdown > div span:first-child {
  margin-bottom: 2rem;
}
.su-event .su-event__content .su-event__footer .su-event__countdown > div span:last-child {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .su-event .su-event__aside {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 2rem;
  }
}
.su-event .su-event__aside .su-event__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #fff;
  border-radius: 5px;
  padding: 0;
  background: #1f449d;
  overflow: hidden;
}
.su-event .su-event__aside .su-event__date .su-event__day {
  background: #1f449d;
  padding: 0 4.1rem;
  font-size: 2.5rem;
  line-height: 2;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.su-event .su-event__aside .su-event__date .su-event__month {
  padding: 0.5rem 0;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}
.su-event .su-event__aside .su-event__date .su-event__year {
  background: #fda82b;
  padding: 0.3rem 3.4rem;
  font-size: 2rem;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}

.job {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.job .job__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
.job .job__header .job__company-image {
  margin-right: 2rem;
  max-width: 30px;
}
.job .job__header .job__company-image img {
  max-width: 100%;
}
.job .job__header .job__company-name {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}
.job .job__header .job__company-name a {
  color: #120F2D;
}
.job .job__header .job__company-name a:hover {
  color: #fda82b;
}
.job .job__body {
  color: #606060;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
}
.job .job__body p:not(:last-child) {
  margin-bottom: 1rem;
}
.job .job__body .job__position {
  font-weight: 500;
  color: #120F2D;
}
.job .job__body .job__company-name {
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}
.job .job__body .job__company-name a {
  color: #120F2D;
}
.job .job__footer {
  margin-top: auto;
}

.team {
  background: #fff;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}
.team .team__image img {
  max-width: 100%;
  border-radius: 5px;
}
.team .team__body {
  padding: 3rem 0 2rem;
  text-align: center;
}
.team .team__body h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
}
.team .team__body h3 a {
  color: #120F2D;
}
.team .team__body h3 a:hover {
  color: #1f449d;
}
.team .team__body p {
  color: #606060;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 0;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}
.team .team__body .team__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team .team__body .team__social a {
  color: #606060;
  margin: 0 0.5rem;
}
.team .team__body .team__social a i {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 0;
  text-transform: capitalize;
}
.team .team__body .team__social a:hover {
  color: #1f449d;
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3rem 1fr 3rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 992px) {
  .news-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 567px) {
  .news-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.news {
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.news .news__image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.news .news__image img {
  max-width: 100%;
}
.news .news__body {
  padding: 30px;
  color: #606060;
}
.news .news__body .news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
}
.news .news__body .news__meta > div i {
  margin-right: 0.5rem;
}
.news .news__body .news__meta > div:not(:last-child) {
  margin-right: 2rem;
}
.news .news__body .news__content h2 {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.news .news__body .news__content h2 a {
  color: #120F2D;
}
.news .news__body .news__content h2 a:hover {
  color: #1f449d;
}
.news .news__body .news__content p {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 2rem;
}
.news .news__body .news__footer a {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  color: #120F2D;
}
.news .news__body .news__footer a:hover {
  color: #1f449d;
}

.testimonial.owl-carousel .owl-item img {
  width: auto !important;
}
.testimonial .testimonial__item {
  padding: 6rem;
}
@media (max-width: 768px) {
  .testimonial .testimonial__item {
    padding: 1.5rem;
  }
}
.testimonial .testimonial__item .testimonial__image img {
  border-radius: 1rem;
  max-width: 100%;
}
.testimonial .testimonial__item .testimonial__body {
  background: #fff;
  border-radius: 5px;
  padding: 6rem;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .testimonial .testimonial__item .testimonial__body {
    margin-left: 0;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }
}
.testimonial .testimonial__item .testimonial__body .testimonial__quote-img {
  margin-bottom: 2rem;
}
.testimonial .testimonial__item .testimonial__body p {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  color: #606060;
  margin-bottom: 2rem;
}
.testimonial .testimonial__item .testimonial__body h3 {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  color: #120F2D;
}
.testimonial .testimonial__item .testimonial__body span {
  color: #606060;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
}
.testimonial .testimonial__item.style-1 .testimonial__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 700px) {
  .testimonial .testimonial__item.style-1 .testimonial__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.testimonial .testimonial__item.style-1 .testimonial__body .testimonial__content {
  margin-right: 2rem;
}
@media (max-width: 700px) {
  .testimonial .testimonial__item.style-1 .testimonial__body .testimonial__content {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.testimonial .testimonial__item.style-1 .testimonial__body .testimonial__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.testimonial .testimonial__item.style-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .testimonial .testimonial__item.style-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.testimonial .testimonial__item.style-2 .testimonial__image {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 40%;
          flex: 1 0 40%;
}
@media (max-width: 991px) {
  .testimonial .testimonial__item.style-2 .testimonial__image {
    margin-bottom: 2rem;
  }
}
.testimonial .testimonial__item.style-2 .testimonial__body {
  z-index: 1;
  margin-left: -4rem;
}
@media (max-width: 768px) {
  .testimonial .testimonial__item.style-2 .testimonial__body {
    margin-left: 0;
  }
}

.itl-menu-list .menu_class {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .itl-menu-list .menu_class {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.itl-menu-list .menu_class li {
  list-style: none;
}
.itl-menu-list .menu_class li a {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.fixed-header {
  width: 100%;
  left: 0;
  z-index: 9;
  background: rgba(255, 255, 255, 0.25);
}
.fixed-header:not(.elementor-element-edit-mode).elementor-section {
  position: absolute;
}
@media (max-width: 1024px) {
  .fixed-header {
    background: #fff;
    top: 0;
  }
}

.sponsores {
  text-align: center;
}
.sponsores.owl-carousel .owl-item img {
  width: auto !important;
}
.sponsores img {
  margin: 0 auto;
}

.alumnus-subscription-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 560px) {
  .alumnus-subscription-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.alumnus-subscription-form input[type=email] {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 248px;
          flex: 1 0 248px;
  background: #F6FAFD;
  border-color: #F6FAFD;
  border-radius: 1rem 0 0 1rem;
  padding: 0 2rem;
  color: var(--thm-color-text-main);
  font-size: 1.4rem;
  line-height: 1.5;
}
.alumnus-subscription-form input[type=email]::-webkit-input-placeholder {
  color: var(--thm-color-text-main);
}
.alumnus-subscription-form input[type=email]::-moz-placeholder {
  color: var(--thm-color-text-main);
}
.alumnus-subscription-form input[type=email]:-ms-input-placeholder {
  color: var(--thm-color-text-main);
}
.alumnus-subscription-form input[type=email]::-ms-input-placeholder {
  color: var(--thm-color-text-main);
}
.alumnus-subscription-form input[type=email]::placeholder {
  color: var(--thm-color-text-main);
}
@media (max-width: 560px) {
  .alumnus-subscription-form input[type=email] {
    margin-bottom: 2rem;
    -ms-flex-preferred-size: 60px;
        flex-basis: 60px;
    text-align: center;
    border-radius: 1rem;
  }
}
.alumnus-subscription-form input[type=submit] {
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 400;
  padding: 1.9rem 6rem;
}

.events-grid .event__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
}
@media (max-width: 991px) {
  .events-grid .event__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.events-grid .event__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1rem;
}
@media (max-width: 991px) {
  .events-grid .event__thumb {
    margin-right: 0rem;
    margin-bottom: 1rem;
  }
}
.events-grid .event__thumb img {
  border-radius: 1rem;
}
.events-grid .event__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.events-grid .event__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 0.8rem;
  padding-bottom: 1rem;
}
.events-grid .event__header > div:not(:last-child) {
  margin-right: 1rem;
}
.events-grid .event__body h3 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
}
.events-grid .event__body h3 a {
  color: var(--thm-color-text-heading);
}
.events-grid .event__body p {
  font-size: 1.53rem;
  line-height: 1.5;
  font-weight: 400;
}
.events-grid .event__footer {
  margin-top: 0.8rem;
}
.events-grid .event__footer a {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
}

.a-featurebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 0.5rem;
  padding: 60px 30px;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
}
.a-featurebox__header {
  margin-bottom: 2rem;
}
.a-featurebox__body {
  margin-bottom: 2rem;
}
.a-featurebox__body h3 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.a-featurebox__body p {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.a-featurebox__footer a {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.elementor-widget-alumnus_button_addon .alumnus-btn a {
  display: inline-block;
  background: #fff;
  padding: 2rem 4rem;
  border-radius: 5px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #222222;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
}
.elementor-widget-alumnus_button_addon .alumnus-btn a:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: #000;
  border-radius: 1rem;
  margin-right: 1rem;
}

.elementor-align-justify,
.elementor-tablet-align-justify,
.elementor-mobile-align-justify {
  text-align: left;
}
.elementor-align-justify .alumnus-btn a,
.elementor-tablet-align-justify .alumnus-btn a,
.elementor-mobile-align-justify .alumnus-btn a {
  width: 100%;
}

.elixir-wrapper footer {
  margin-top: 8rem;
}

.icon-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.alumni table th {
  background: #eee;
  padding: 2rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
}
.alumni table th:first-child {
  border-radius: 5px 0 0 5px;
}
.alumni table th:last-child {
  border-radius: 0 5px 5px 0;
}
.alumni table tr {
  border-bottom: 1px solid #eee;
}
.alumni table td {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  vertical-align: middle;
  color: var(--thm-color-text-main);
  padding: 2rem 1rem;
}
.alumni .alumni__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.alumni .alumni__profile .alumni__profile-image {
  margin-right: 1.5rem;
}
.alumni .alumni__profile .alumni__profile-image img {
  border-radius: 5px;
}
.alumni .alumni__profile .alumni__profile-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.alumni .alumni__profile .alumni__profile-content h3 {
  color: #120F2D;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 500;
}
.alumni .alumni__profile .alumni__profile-content h3 a:hover {
  color: var(--thm-color-secondary);
}
.alumni .alumni__profile .alumni__profile-content span {
  color: #606060;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
}
.alumni .alumni__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.alumni .alumni__social a {
  color: var(--thm-color-primary);
}
.alumni .alumni__social a:not(:last-child) {
  margin-right: 0.5rem;
}
.alumni .alumni__social a:hover {
  color: var(--thm-color-secondary);
}

.alumnus-copy span {
  color: #fff;
  font-size: 14px;
}
.alumnus-copy span a {
  color: #fff;
}

.alumnus-login a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.alumnus-login a:visited {
  color: #fff;
}
.alumnus-login a i {
  margin-right: 1rem;
}

.alumnus-logged-in-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.alumnus-logged-in-user .alumnus-user-avatar {
  margin-right: 1rem;
}
.alumnus-logged-in-user .alumnus-display-name {
  color: #fff;
}

.alumnus-search {
  position: relative;
}
.alumnus-search input[type=search] {
  background-color: transparent;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 5px 10px;
  color: #fff;
  width: 26px;
  position: relative;
  z-index: 1;
}
.alumnus-search input[type=search]:focus {
  width: 180px;
  color: #fff;
  border-color: #fff;
}
.alumnus-search input[type=search]:focus::-webkit-input-placeholder {
  visibility: visible;
}
.alumnus-search input[type=search]:focus::-moz-placeholder {
  visibility: visible;
}
.alumnus-search input[type=search]:focus:-ms-input-placeholder {
  visibility: visible;
}
.alumnus-search input[type=search]:focus::-ms-input-placeholder {
  visibility: visible;
}
.alumnus-search input[type=search]:focus::placeholder {
  visibility: visible;
}
.alumnus-search input[type=search]::-webkit-input-placeholder {
  color: #fff;
  visibility: hidden;
}
.alumnus-search input[type=search]::-moz-placeholder {
  color: #fff;
  visibility: hidden;
}
.alumnus-search input[type=search]:-ms-input-placeholder {
  color: #fff;
  visibility: hidden;
}
.alumnus-search input[type=search]::-ms-input-placeholder {
  color: #fff;
  visibility: hidden;
}
.alumnus-search input[type=search]::placeholder {
  color: #fff;
  visibility: hidden;
}
.alumnus-search i {
  position: absolute;
  top: 7px;
  right: 7px;
  color: #fff;
  font-size: 12px;
}

.navbar-nav {
  margin: 0;
}
.navbar-nav .dropdown-toggle::after {
  border: 0;
  font-family: "Font Awesome 6 Free";
  content: "\f107";
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  line-height: 1;
  font-weight: 900;
  vertical-align: 0;
  margin-left: 1rem;
}
@media (max-width: 991px) {
  .navbar-nav .dropdown-toggle::after {
    margin-left: auto;
  }
}
@media (max-width: 991px) {
  .navbar-nav .dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: flext-start;
        -ms-flex-pack: flext-start;
            justify-content: flext-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.navbar-nav .nav-link:hover .dropdown-toggle::after {
  color: #f00;
}
/*# sourceMappingURL=alumnus-core.css.map */