.history {
  padding: 30px;
}

.history .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #001f8d;
}

.history .content ul {
  list-style: none;
  padding: 0;
}

.history .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.history .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.history .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.history .content ul p {
  font-size: 15px;
}

.history .content p:last-child {
  margin-bottom: 0;
}

.history .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.history .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.history .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.history .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.history .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



.recognition {
  padding: 20px;
}

.recognition .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.recognition .content ul {
  list-style: none;
  padding: 0;
}

.recognition .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.recognition .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.recognition .content p:last-child {
  margin-bottom: 0;
}





.gallery {
  margin-top: 40px;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #fff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #222425;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}


.eventss {
  padding: 60px;

}

.events-details .eventss-list {
  padding: 10px 30px;
  border: 1px solid #d3dff3;
  margin-bottom: 20px;
}

.events-details .eventss-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #c2cbdf;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.events-details .eventss-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.events-details .eventss-list a:hover {
  border-color: var(--color-primary);
}

.events-details .eventss-img {
  margin-bottom: 20px;
}

.events-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
}

.events-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.events-details p {
  font-size: 15px;
}

.events-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.events-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.events-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}


.sister .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #001f8d;
}

.sister .content ul {
  list-style: none;
  padding: 0;
}

.sister .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.sister .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.sister .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.sister .content ul p {
  font-size: 15px;
}

.sister .content p:last-child {
  margin-bottom: 0;
}

.sister .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.sister .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.sister .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.sister .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.sister .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.prof {
  padding-top: 80px;
}

.prof .prof-item+.prof-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .prof .prof-item+.prof-item {
    margin-top: 40px;
  }
}

.prof .prof-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #001973;
}

.prof .prof-item ul {
  list-style: none;
  padding: 0;
}

.prof .prof-item ul li {
  padding-bottom: 10px;
}

.prof .prof-item ul li:last-child {
  padding-bottom: 0;
}

.prof .prof-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.prof .prof-item p:last-child {
  margin-bottom: 0;
}

/* table */


table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}



/* Cata bUTTON */
.wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrapper a {
  display: block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-family: sans-serif;
  text-decoration: none;
  color: #333;
  border: 2px solid #333;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all .35s;
}

.wrapper a span {
  position: relative;
  z-index: 2;
}

.wrapper a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ff003b;
  transition: all .35s;
}

.wrapper a:hover {
  color: #fff;
}

.wrapper a:hover:after {
  width: 100%;
}



/* sticky sidebar */


.sticky-icon {
  z-index: 999;
  position: fixed;
  top: 50%;
  right: 0%;
  width: 220px;
  display: flex;
  flex-direction: column;
}

.sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  transition: all 0.8s;
}

.sticky-icon a:hover {
  color: #FFF;
  transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
  transform: rotate(360deg);
}

/*.search_icon a:hover i  {
transform:rotate(360deg);}*/
.Facebook {
  background-color: #2C80D3;
  color: #FFF;
}



.whatsapp {
  background-color: #53c5ff;
  color: #FFF;
}

.call {
  background-color: #e96b56;
  color: #FFF;
}


.sticky-icon a span {

  height: 40px;
  width: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
}

.sticky-icon a span.bi-facebook {
  background-color: black;
  color: white;
}

.sticky-icon a span.bi-call {
  background-color: black;
  color: white;
}

.sticky-icon a span.bi-whatsapp {
  background-image: -webkit-linear-gradient(top, rgb(0, 255, 110), rgb(0, 255, 42));
  color: white;
}


/* All Team */

.team2 .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

.team2 .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team2 .team-member .social a {
  transition: color 0.3s;
  color: white;
  background: #e96b56;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team2 .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team2 .team-member .social a:hover {
  background: #f4a496;
}

.team2 .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team2 .team-member .member-info {
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(black, 0.1);
  background: white;
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}

.team2 .team-member .member-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 24px;
  color: #9FA6B2;
}

.team2 .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #808080;
}

.team2 .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #808080;
}

.team2 .team-member:hover .social {
  opacity: 1;
}



