@media (max-width: 576px){
    .carousel-wrapper #carouselExampleIndicators {
        width: 80% !important;
      }
    .awards-banner-wrapper-title #header-title{
        font-size: 2em;
    }
}
#header {
    padding-top: 9rem;
    width: 100%;
    text-align: center;
}
#header .awards-banner-wrapper-title {
    background-image: linear-gradient(to bottom right, #329cd2, #500d34);
    background-size: cover;
    background-position: center center;
    background-color: #f0f0f0;
    width: 75%;
    border-radius: 2rem;
    z-index: 2;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    }
#header-title {
    color: white;
    font-weight: 600;
    font-size: 3.75em;
    display: inherit;
    border-radius: 0;
    background: none;
    box-shadow: none;
    border-style: none;
    margin-bottom: 0;
}
.image-award-wrapper{
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.awarded-gold-medal-text{
    background-image: linear-gradient(to bottom right, #5b66bb, #25cfb2);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 75px;
}
.awards-text-summary{
    color: white;
}
.grand-jamboree-photos-title{
    background-image: linear-gradient(to bottom right, #f07f4f, #f3af5d);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-align: center;
    margin-bottom: 30px;
}
/* ----------------spin divider --------------- */
.awards-divider {
    position: relative;
    max-width: 100%;
    margin: 60px auto;
    width: 350px;
}
.awards-divider span {
    background-color: #fff;
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 100%;
    margin-bottom: -25px;
    margin-left: -25px;
    left: 50%;
    border-radius: 100%;
    box-shadow: 0 3px 5px #37aac7;
}
.awards-divider-mask {
    height: 10px;
    overflow: hidden;
}
.awards-divider-mask:after {
    width: 100%;
    height: 20px;
    margin: -20px auto 0;
    display: block;
    content: '';
    border-radius: 100px / 10px;
    box-shadow: 0 0 7px #37aac7;
}
.join-adventure-icon-prop{
    animation-name: spin;
    animation-timing-function: linear; 
    animation-duration: 6000ms;
    animation-iteration-count: infinite;
  }
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
}
}