
.section-padding {
    padding-top: 150px;
}

.section-padding-second {
    padding-top: 80px;
  }
  
  @media only screen and (max-width: 768px) {
  
      .section-padding {
        padding-top: 80px;
      }
      .section-padding-second {
        padding-top: 60px;
      }
    }

/*partner hero section text*/

.partner-hero-highlight {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
}

.partner-hero-heading {
    font-size: 56px;
    font-weight: 900;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.partner-hero-sub-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: .5rem;
}

.partner-hero-text {
    color: var(--secondary-black);
}
/*section heading*/
.partner-section-heading {
    font-size: 41px;
    font-weight: 900;
}

@media only screen and (max-width:992px) {
  .partner-hero-heading {
    font-size: 40px;
}
.partner-section-heading {
    font-size: 36px;
}
}

@media only screen and (max-width:768px) {
    .partner-hero-heading {
      font-size: 36px;
  }
  .partner-section-heading {
    font-size: 32px;
}
}

@media only screen and (max-width:576px) {
    .partner-hero-highlight {
        text-align: center;
    }
    .partner-hero-heading {
        font-size: 32px;
        text-align: center;
    }
    .partner-hero-sub-heading {
        font-size: 20px;
        text-align: center;
    }
    .partner-hero-text {
        text-align: center;
    }
    .partner-section-heading {
        font-size: 28px;
    }
}

/*register form card*/

.form-card {
    background-color: #ffffff;
    box-shadow: 0 6px 10px 0 #d9171a1e;
    transition: 0.3s;
    width: 70%;
    height: fit-content;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    padding: 1.5rem;
  }
  
  .form-card:hover {
    color: var(--primary-color);
    box-shadow: 0 10px 18px 0 #d9171a1e;
    transition: .5s;
  }

  @media only screen and (max-width:576px) {
    .form-card {
        width: 90%;
    }
  }

/**/

.input-bg {
    background-color: var(--accent-color);
}

  .submit-btn {
    font-size: 1rem;
    color: var(--white-color);
    background-color: var(--primary-color);
  }





/*Select 2 customize*/
  .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 12px;
  }

  .select2-container .select2-selection--single {
    height: 45px;
}

  .select2-container--default .select2-selection--single {
    background-color: var(--accent-color);
    border: 0;
    border-radius: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {

    line-height: 40px;
}

  .select2-dropdown {
    background-color: var(--white-color);
    padding: .8rem;
    border: 0;
    border-radius: 12px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 24px;
}

.select2-results__option {
    padding: 10px;
    padding-bottom: 12px;
    user-select: none;
    -webkit-user-select: none;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-results__option--selected {
    background-color: var(--accent-color);
    border-radius: 8px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
}

/**/
.icon-size {
    font-size: 32px;
}


/**/
.player-size {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
}

.green-color {
    color: #00AC1D;
}
.red-color {
    color: #d9171a;
}
.blue-color {
    color: #0078D7;
}
.orange-color {
    color: #FF5722;
}

.bg-green {
    border-radius: 1rem;
    background-color: #00ac1d4b;
}

.bg-red {
    border-radius: 1rem;
    background-color: #d9171a4f;
}

.bg-blue {
    border-radius: 1rem;
    background-color: #0076d749;
}

.bg-orange {
    border-radius: 1rem;
    background-color: #ff562249;
}

.bg-orange-light {
    background-color: #FFEEE9;
}

.text-white {
    color: var(--white-color);
}


.partner-img {
    width: 80px;
    aspect-ratio: 1 / 1;
    border-radius: .8rem;
}

/*button design css*/
.btn {
    color: var(--white-color);
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px 0 #d9171a50;
    border: none;
    padding: .8rem 2rem;
    border-radius: 2rem;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .05rem;
    cursor: pointer;
    transition: .5s;
  }

  .btn:hover {
    color: var(--white-color);
    padding: .8rem 2.3rem;
    box-shadow: 0 10px 18px 0 var(--primary-color);
    transition: .5s;
  }

.partner-text-area {
    width: 100%;
    padding: 1rem;
    border: 0;
    border-radius: .8rem;
    background-color: var(--accent-color);
}


.text-green {
    color: #00AC1D;
}