.site-inner .wrap {
  max-width: 100%;
}

.content .wrap {
  max-width: 1420px;
}

.dj-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dj-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;    
}

.dj-content {
    position: relative;
    height: 100%;
}

.dj-title {
    font-family: "Montserrat-Bold";
    color: #393939;
    font-size: 53px;
    line-height: 60px;
    margin: 0 0 36px;
}

  .cta-black .dj-title {
    color: #fff;
  }

.dj-link-flex {
    text-align: right;
    padding: 0 0 56px;
}

.dj-link {
    display: inline-block;
    font-family: "Montserrat-ExtraBold";
    border: 2px solid #fd675e;
    border-radius: 10px;
    color: #393939;
    letter-spacing: 0.5px;
    font-size: 20px;
    padding: 0 10px;
}

  .cta-black .dj-link {
    color: #fff;
  }

    .dj-link:hover {
        position: relative;
        background: #fd675e;
        color: #fff;
        bottom: 3px;
    }

/* About Service */

#about-service {
    position: relative;
}

#service-flex {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 105px 0;
}

#service-left {
    border-bottom: 4px solid #393939;
    width: 59%;
    margin-right: 146px;
}

#service-left p {
    font-family: "Montserrat-Regular";
    color: #393939;
    font-size: 26px;
    line-height: 32px;
}

    #service-left p:last-child {
        margin: 0 0 56px;
    }

#service-left .dj-link-flex {
    border-bottom: 4px solid #fff;
    padding: 0 0 86px;
    margin-right: 70px;
}

#service-right {
    order: 1;
    width: 41%;
}

#service-right img {
    border-radius: 35px;
    object-fit: cover;
    width: 100%;
    height: 634px;
}

/* Info */

#info,
.info-section {
    position: relative;
    z-index: 2;
}

    .info-section:nth-child(odd) .dj-background {
        background: #fff;
    }

    .info-section:nth-child(even) .dj-background {
        background: #EFEFEF;
    }

    .info-section:last-child .dj-background {
        background: transparent;
    }

    #info-section3 .dj-background {
        background: linear-gradient(180deg, rgba(239,239,239,1) 0%, rgba(239,239,239,1) 50%, rgb(255 255 255) 50%, rgb(255 255 255) 100%);
    }

.info-section .dj-content {
    padding: 105px 0;
}

    .info-section:nth-child(odd) .dj-content {
        background: #EFEFEF;
        border-radius: 150px 0px;
    }
    
    .info-section:nth-child(even) .dj-content {
        background: #fff;
        border-radius: 0 0 0 150px;
    }

#info-flex {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 105px;
}

    #info-flex-add-content:last-of-type #info-flex {
        padding: 0;
    }

#info-left {
    border-bottom: 4px solid #393939;
    width: 59%;
    margin-left: 146px;
}

    #info-flex-add-content:nth-child(even) #info-left {
        margin-left: 0;
        margin-right: 146px;
    }

#info-left p,
#info-left li {
    font-family: "Montserrat-Regular";
    color: #393939;
    font-size: 26px;
    line-height: 32px;
}

    #info-left p:last-child {
        margin: 0 0 78px;
    }

#info-left ul {
    margin: 0 0 28px;
}

#info-left li {
    list-style: disc;
    margin-left: 55px;
    padding: 0 0 15px;
}

    #info-left li:last-child {
        padding: 0;
    }

#info-right {
    width: 41%;
}

    #info-flex-add-content:nth-child(even) #info-right {
        order: 1;
    }

#info-right img {
    border-radius: 35px;
    object-fit: cover;
    width: 100%;
    height: 634px;
}

/* CTA */

.cta {
  position: relative;
  max-width: 900px !important;
  margin: 0 auto;
}

.cta-reviews-flex {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 105px 0 0;
}

.cta-reviews {
  cursor: pointer;
  position: relative;
  text-align: left;
  width: 42%;
}

  .reviews-left {
    order: 0;
  }

  .reviews-right {
    order: 1;
  }

.review-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.review-type {
    z-index: 1;
    display: block;
    font-family: "Montserrat-Black";
    color: #7b9dcb;
    text-transform: uppercase;
    opacity: 35%;
    font-size: 45px;
    line-height: 45px;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    writing-mode: vertical-rl;
    height: max-content;
}

.review-content {
    position: relative;
    width: 86%;
    height: 100%;
    padding: 50px 0 0;
}

    .review-content::after {
      content: "\f140";
      font-family: 'dashicons';
      position: absolute;
      left: -20px;
      bottom: 8px;
      color: #6f159d;
      transition: all 1s ease-out;
      font-size: 55px;
      line-height: 22px;
    }

        .cta-black .review-content::after  {
          color: #fd675e;
        }

        .cta-reviews.active .review-content::after {
            content: "\f142";
        }

.stars .dashicons-star-filled {
    color: #FAAFFF;
} 

.review-name {
    display: block;
    font-family: "Montserrat-Regular";
    color: #6f159d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    margin-left: 30px;
}

        .cta-black .review-name  {
          color: #fd675e;
        }

.review-excerpt,
.review-full {
    font-family: "Montserrat-ExtraBold";
    color: #6f159d;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 30px;
    transition: opacity ease-out;
}


    .review-full {
        display: none;
        opacity: 0;
    }

    .cta-reviews.active .review-full {
        opacity: 1;
    }

    .cta-reviews.active .review-excerpt {
        display: none;
    }

#reviews-link {
    border: 4px solid #FAAFFF;
    border-radius: 50px;
    color: #FAAFFF;
    padding: 1px 24px;
    margin: 0;
}

    #reviews-link:hover {
        background: #FAAFFF;
        color: #fff;
    }

.cta-links {
  text-align: center;
  width: 45%;
}

.cta-links .dj-title {
  display: block;
  font-size: 43px;
  line-height: 60px;
  margin: 0 0 15px;
}

.cta-links .dj-link {
  min-height: auto;
  /* width: 43%; */
  padding: 0 10px;
}

/* Music Videos */

#music .dj-title,
#videos .dj-title {
    text-align: left;
    border-bottom: 2px solid #FD675E;
    color: #D7D7D7;
    font-size: 40px;
    line-height: 54px;
}

#music {
    text-align: center;
    padding: 100px 0 0;    
    margin: 0 0 48px;
}

.mv-items {
    text-align: left;
    margin: 0 0 48px;
}

.mv-items li {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin: 0 18px;
}

#videos {
    text-align: center;
    padding: 100px 0; 
}

#video-items iframe {
    height: 300px;
}

/* Responsive */

@media (max-width: 1550px) {

.content .wrap {
    max-width: 1300px;
}
    
/* About Service */
    
    #service-left {
        margin-right: 96px;
    } 

/* Info */
    
    #info-left {
        margin-left: 70px;
    }
    
        #info-flex-add-content:nth-child(even) #info-left {
            margin-right: 70px;
        }   
}

@media (max-width: 1440px) {

.content .wrap {
    max-width: 1200px;
} 

/* About Service */

    #service-left p {
        font-size: 24px;
        line-height: 28px;
    }
    
/* Info */
    
    #info-flex {
        align-items: flex-end;
    } 

    #info-left p, #info-left li {
        font-size: 24px;
        line-height: 28px;
    }        
}

@media (max-width: 1350px) {

    .content .wrap {
        max-width: 1100px;
    }

/* Music Videos */

    .mv-items li {
        width: 29%;
    }
    
    #video-items iframe {
        height: 200px;
    }    
}

@media (max-width: 1250px) {

.content .wrap {
    max-width: 1000px;
}
    
.dj-title {
    font-size: 49px;
    line-height: 61px;
}

.dj-link {
    font-size: 18px;
}    
    
/* About Service */

    #service-flex {
        padding: 80px 0;
    }
    
    #service-left {
        margin-right: 50px;
    }

    #service-left p {
        font-size: 20px;
        line-height: 24px;
    }    

    #service-right img {
        height: 594px;
    }    

/* Info */
    
    .info-section .dj-content {
        padding: 80px 0;
    }
    
    #info-flex {
        padding: 0 0 80px;
    }
    
    #info-left {
        margin-left: 50px;
    }
    
        #info-flex-add-content:nth-child(even) #info-left {
            margin-right: 50px;
        } 

    #info-left p, #info-left li {
        font-size: 20px;
        line-height: 24px;
    }   

    #info-right img {
        height: 594px;
    }    

/* Reviews */ 
  
    .review-excerpt, .review-full {
        font-size: 20px;
        line-height: 24px;
    }      
}

@media (max-width: 1150px) {

.content .wrap {
    max-width: 900px;
}
    
.dj-title {
    font-size: 45px;
    line-height: 57px;
}    
    
/* About Service */
    
    #service-left {
        width: 55%;
        margin-right: 30px;
    }
    
    #service-right {
        width: 45%;
    }
    
    #service-right img {
        height: 554px;
    }  

/* Info */
    
    #info-left {
        width: 55%;
        margin-left: 30px;
    }
    
        #info-flex-add-content:nth-child(even) #info-left {
            margin-right: 30px;
        }
    
    #info-right {
        width: 45%;
    }
    
    #info-right img {
        height: 554px;
    }    

/* Reviews */
  
    .review-type {
        font-size: 40px;
        line-height: 40px;
    }
    
    .review-content {
        padding: 30px 0 0;
    } 

/* Music Videos */
    
    .mv-items li {
        width: 30%;
        margin: 0 13px;
    }   
}

@media (max-width: 1024px) {

.content .wrap {
    max-width: 90%;
}
    
.dj-title {
    font-size: 41px;
    line-height: 53px;
}  

/* Info */

    .info-section:nth-child(odd) .dj-content {
        border-radius: 100px 0px;
    }
    
    .info-section:nth-child(even) .dj-content {
        border-radius: 0 0 0 100px;
    }    
    

/* Reviews */

  .cta {
      max-width: 90% !important;
  } 

  .cta-links {
      width: 53%;
  }

  .cta-links .dj-title {
    font-size: 41px;
    line-height: 53px;
      margin: 0 0 15px;
  }     

/* Music Videos */
    
    .mv-items li {
        margin: 0 1%;
    }
    
    #video-items iframe {
        height: 160px;
    }    
}

@media (max-width: 900px) {

.dj-title {
    margin: 0 0 28px;
}
    
.dj-link-flex {
    padding: 0 0 28px;
}  
    
/* About Service */

    #service-flex {
        flex-direction: column;
        align-items: center;
        padding: 60px 0;
    }
    
    #service-left {
        width: 100%;
        margin-right: 0px;
    }
    
        #service-left p:last-child {
            margin: 0 0 28px;
        }
    
    #service-right {
        order: 0;
        width: 100%;
        margin: 0 0 40px;
    }

/* Info */
    
    .info-section .dj-content {
        padding: 60px 0;
    }
    
    #info-flex {
        flex-direction: column;
        align-items: center;
        padding: 0 0 60px;
    }
    
    #info-left {
        width: 100%;
        margin-left: 0px;
    }
    
        #info-flex-add-content:nth-child(even) #info-left {
            margin-right: 0px;
        }
    
        #info-left p:last-child {
            margin: 0 0 28px;
        }
    
    #info-right {
        width: 100%;
        margin: 0 0 40px;
    }
    
        #info-flex-add-content:nth-child(even) #info-right {
            order: 0;
        } 

/* Reviews */

  .cta-reviews-flex {
      flex-direction: column;
      padding: 80px 0 0;
  }

  .cta-reviews {
    order: 0 !important;
    width: 100%;
    margin: 0 0 10px;
  }  
  
    .review-type {
        font-size: 45px;
        line-height: 45px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        writing-mode: unset;
    }    

    .review-content {
        width: 100%;
        padding: 22px 0 0;
    }  

  .cta-links {
      width: 100%;
  }

  .cta-links .dj-link {
      min-height: auto;
      width: auto;
      padding: 0 10px;
  }  

/* Music Videos */

    #music {
        padding: 80px 0 0;
    }
    
    .mv-items li {
        width: 100%;
        margin: 0 0 40px;
    }

    #videos {
        padding: 80px 0;
    }  
    
    #video-items iframe {
        height: 360px;
    }      
}

@media (max-width: 768px) {

.content .wrap {
    max-width: 85%;
}
    
.dj-title {
    line-height: 49px;
}  

/* Reviews */
    
    .cta .wrap {
        max-width: 85% !important;
    }
    
    .review-type {
        font-size: 35px;
        line-height: 35px;
    }  

  .cta-links .dj-title {
    line-height: 49px;
  }      
}

@media (max-width: 660px) {

.dj-link-flex {
    text-align: center;
    padding: 0;
}
    
.dj-link {
    font-size: 18px;
} 

/* About Service */

    #service-flex {
        text-align: center;
    }
    
    #service-left {
        border-bottom: 0;
    }
    
    #service-left p {
        font-size: 18px;
    }
    
        #service-left p:last-child {
            margin: 0;
        }

/* Info */

    .info-section:nth-child(odd) .dj-content {
        border-radius: 80px 0px;
    }
    
    .info-section:nth-child(even) .dj-content {
        border-radius: 0 0 0 80px;
    }    
    
    #info-flex {
        text-align: center;
    }
    
    #info-left {
        border-bottom: 0;
    }
    
    #info-left p, #info-left li {
        font-size: 18px;
    }
    
        #info-left p:last-child {
            margin: 0;
        } 

    #info-left li {
        list-style-position: inside;
        margin-left: 0px;
    }

/* Reviews */
    
  .cta-reviews {
    text-align: center;
  }

    .review-background {
        position: unset;
        display: block;
    }  

    .review-type {
        text-align: center;
        margin: -3px 0 0;
    }    

    .review-content {
        padding: 10px 0 0;
    }    
    
    .review-excerpt, .review-full {
        font-size: 18px;
    }   

  .cta-links .dj-link {
      width: 100%;
  }

/* Music Videos */

    #music {
        padding: 60px 0 0;
    } 
    
    #music .dj-title,
    #videos .dj-title {
        text-align: center;
    }   

    #videos {
        padding: 60px 0;
    }   
}

@media (max-width: 550px) {

.dj-title {
    font-size: 36px;
    line-height: 46px;
}

/* About Service */
    
    #service-right img {
        height: 474px;
    }

/* Info */

        .info-section:nth-child(odd) .dj-content {
            border-radius: 60px 0px;
        }
        
        .info-section:nth-child(even) .dj-content {
            border-radius: 0 0 0 60px;
        }    
    
    #info-right img {
        height: 474px;
    }     

/* Reviews */

  .cta-links .dj-title {
      font-size: 36px;
      line-height: 46px;
  }  

/* Music Videos */

    #music {
        padding: 40px 0;
    }
    
    #video-items iframe {
        height: 300px;
    }

    #videos {
        padding: 40px 0;
    }  
}

@media (max-width: 450px) {

.dj-title {
    font-size: 32px;
    line-height: 42px;
}
    
.dj-link {
    display: block;
}
    
/* About Service */
    
    #service-right img {
        height: 394px;
    } 

/* Info */
    
    #info-right img {
        height: 394px;
    }   

/* Reviews */

  .cta-links .dj-title {
      font-size: 32px;
      line-height: 42px;
  }      

/* Music Videos */

    #music .dj-title,
    #videos .dj-title {
        font-size: 37px;
        line-height: 37px;
    }
    
    #video-items iframe {
        height: 230px;
    }    
}

@media (max-width: 350px) {

.dj-title {
    font-size: 28px;
    line-height: 38px;
}
    
/* About Service */
    
    #service-right img {
        height: 354px;
    } 

/* Info */
    
    #info-right img {
        height: 354px;
    } 


/* Reviews */

  .cta-links .dj-title {
      font-size: 28px;
      line-height: 38px;
  }      

/* Music Videos */

    #music .dj-title,
    #videos .dj-title {
        font-size: 27px;
        line-height: 27px;
    }
    
    #video-items iframe {
        height: 200px;
    }   
}