.partners-section{
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #060606;
  box-sizing: border-box;
  padding: 5vw 6vw;
  padding-bottom: 8vw;
}

.partners-info-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partners-info-title {
  color: var(--tertiaryHeadingColor);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: var(--superheadingFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  margin-bottom: 4vw;
}

.official-partners-container{
  width: 60%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.official-partners-wrapper{
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.official-partner-container-row1{
  width: 100%;
  height: 17vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.official-partner-container-row2{
  width: 100%;
  height: 10vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

.official-partner-container-row3{
  width: 100%;
  height: 18vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

.official-partner-container-row1 a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.official-partner-container-row2 a{
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.official-partner-container-row3 a{
  width: calc(100%/3);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.official-partner-container-row3 a:nth-child(3){
  width: 13%;
}

.official-partner-container-row1 img{
  width: 100%;
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}


.official-partner-container-row2 img{
  width: 80%;
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}

.official-partner-container-row3 img{
  width: 80%;
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}

.official-partner-container-row3 a:nth-child(3) img{
  width: 100% !important;
}

.official-partner-container-row1 a:hover img,
.official-partner-container-row2 a:hover img,
.official-partner-container-row3 a:hover img{
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

@media(max-width: 600px){
  .partners-section{
    padding-top: 15vw;
    padding-bottom: 25vw;
  }
  
  .partners-info-title {
    margin-bottom: 15vw;
  }

  .official-partners-container{
    width: 95%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .official-partner-container-row1{
    height: 25vw;
  }

  .official-partner-container-row2{
    height: 17vw;
  }

  .official-partner-container-row3{
    height: 24vw;
  }

  .official-partner-container-row2 a{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .official-partner-container-row3 a{
    width: calc(100%/3);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .official-partner-container-row3 a:nth-child(3){
    width: 13%;
  }

  .official-partner-container-row1 img{
    width: 100%;
  }


  .official-partner-container-row2 img{
    width: 95%;
  }

  .official-partner-container-row3 img{
    width: 100%;
  }
}