

/*===========================================*/
/*== ==FOLD 1 - Header Styling - Desktop== ==*/
/*===========================================*/
.fold-1-header {
  position: relative;
  background: rgb(175, 9, 49);
  background: linear-gradient(
    118deg,
    rgb(180, 10, 49) 0%,
    rgb(128, 4, 33) 87%,
    rgb(94, 1, 23) 100%
  );
  padding: 70px 0 50px 0;
  z-index: 1;
}

.accreditation-item {
  margin: 0 auto;
  width: 250px;
  height: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accreditation-item img {
    object-fit: contain;
    max-height: 120px;
}

.fold-1-header::before {
  content: "";
  background: url(/wp-content/uploads/2023/02/texture-light.png);
  position: absolute;
  background-repeat: no-repeat;
  background-position: right;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.fold-1-header .banner {
  text-align: center;
  z-index: 3;
}

.fold-1-header .title {
  font-size: 42px;
  color: var(--text-light);
  margin: 0;
  padding: 0;
  z-index: 5;
}

/*==================================================*/
/*== ==FOLD 2 - Accreditation Styling - Desktop== ==*/
/*==================================================*/
.fold-2 {
  position: relative;
  padding: 50px 0;
}

.accreditations {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0px;
  column-gap: 100px;
}

.accreditation-item::before {
    content: '\2b';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: white;
    background: #b10932a8;
    border-radius: 20px;
    pointer-events:none;
    transform: translatex(-50%) translatey(-50%);
    top: 50%;
    left: 49%;
    opacity: 0;
    transition: all 500ms ease;
}

.accreditation-item:hover::before {
    opacity:0.8;
}