:root{
    --methodologyBulletWidthClosed: 33vw;
    --methodologyBulletWidthOpen: 74vw;
    --spotifyUserPrimaryColor: #c94873;
    --spotifyDefaultBackgroundColor: #121212;
    --spotifyGreenColor: #3be477;
}



#presentationSection{
    width: 85.39%; 
    height: 540px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin-bottom: 100px;
}
#background1{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#presentationLeftBox{
    align-items: center;
    width: 50%;
}

#presentationrightBox{
    width: 50%;
    background-color: #3bb1c2;
    border-radius: 100px 0 100px 0;
    overflow: hidden;
    position: relative;
}
.rightBoxUpPart{
    display: flex;
    justify-content:space-between;
    position: relative;
    overflow: visible;
    height: 100%;
    z-index: 1;
}

#presentationContent{
    display: flex;
    justify-content:space-between;
    align-items: flex-start;
    margin: 0 auto;
}
.presentationTitleText{
    width: fit-content;
    margin: 0 auto;
    margin-top: 23%;
    align-items: center;
    margin-bottom: 5px;
    color: #123739;
}

.methodologytitleText{
        width: min-content;
    margin: 0 auto;
    margin-top: 23%;
    align-items: center;
    margin-bottom: 5px;
    color: #123739;
}
#ProfileImageIndex{
    width: 360px;
    background-color: transparent;
    margin-top: auto;
    min-width: 297px;
}

.backgroundStyle{
    width: 0px;
    overflow: visible;
    right: 0;   
}
#ImgbackgroundStyle1{
    width: 670px;
    position: absolute;
    bottom: 0;
    z-index: 0;
    right: 0;
}
#ImgbackgroundStyle2 {
    width: 125px;
    position: absolute;
    top: 0;
    z-index: 0;
    margin-left: 2vw;
    margin-top: 45px;
}
#ImgbackgroundStyle3{
    width: 268px;
    position: absolute;
    z-index: 0;
    margin-bottom: 283px;
}
#ImgbackgroundStyle4 {
    width: 125px;
    position: absolute;
    top: 46px;
    right: 7vw;
    z-index: 0;
}
#ImgbackgroundStyle5 {
    width: 715px;
    position: absolute;
    z-index: 0;
    bottom: -46px;
    right: -4vw;
    transform: rotate(8deg);
}
#mCloseButtonBox{
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: rgba(228, 228, 228, 0.288);  
    position: absolute;
    z-index: 0;
    margin: 30px;
    display: flex;
    cursor: pointer;
}
#mCloseButton{
    margin: auto;
    width: 14px;
}
.presentationSubText{
    width: 67%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.4;
}
.methodologySubText{
    width: 67%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.4;
}
#presentationSocial{
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    width: fit-content;
    margin-top: 1%;
}
.presentationSocialImg{
    width: 22px;
    margin: 5px 6px;
    cursor: pointer;
}

.socialHideDef{
    opacity: 0.5;
}
.socialHideAni{
    animation-name: socialHideAnim;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes socialHideAnim{
    from{
        opacity: 0.9;
    }
    to{
        opacity: 0.5;
    }
}
.socialShowAni{
    animation-name: socialShowAnim;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes socialShowAnim{
    from{
        opacity: 0.5;
    }
    to{
        opacity: 0.9;
    }
}

#methodologySection{
    width: 85.39%; 
    height: 560px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
}
#methodologyrightBox{
    align-items: center;
    
    overflow-x: hidden;
}
.rightBoxClosed{
    width: 100%;
}
.rightBoxClosedAni{
    animation-name: rightBoxClosedAni;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes rightBoxClosedAni{
    from{
        width: 50%;
    }
    to{
        width: 100%;
    }
}

.rightBoxOpen{
    width: 50%;
}
.rightBoxOpenAni{
    animation-name: rightBoxOpenAnim;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes rightBoxOpenAnim{
    from{
        width: 100%;
    }
    to{
        width: 50%;
    }
}

.rightBoxFullClosed{
    width: 100%;
}
.rightBoxFullClosedAni{
    animation-name: rightBoxFullClosedAnim;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes rightBoxFullClosedAnim{
    from{
        width: 50%;
    }
    to{
        width: 0%;
    }
}
.rightBoxFullOpenAni{
    animation-name: rightBoxFullOpenAnim;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes rightBoxFullOpenAnim{
    from{
        width: 0%;
    }
    to{
        width: 50%;
    }
}

.rightBoxBlurOn{
    animation-name: rightBoxBlurOn;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes rightBoxBlurOn{
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}
.rightBoxBlurOff{
    animation-name: rightBoxBlurOff;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes rightBoxBlurOff{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}



.leftBoxclosed{    
    width: 0%;
}

.leftBoxClosedAni{
    animation-name: leftBoxClosedAni;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes leftBoxClosedAni{
    from{
        width: 50%;
    }
    to{
        width: 0%;
    }
}

.leftBoxOpen{
    width: 50%;
}
.leftBoxOpenAni{
    animation-name: leftBoxOpenAnim;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes leftBoxOpenAnim{
    from{
        width: 0%;
    }
    to{
        width: 50%;
    }
}
.leftBoxFullOpen{
    width: 100%;
}
.leftBoxFullOpenAni{
    animation-name: leftBoxFullOpenAnim;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes leftBoxFullOpenAnim{
    from{
        width: 50%;
    }
    to{
        width: 100%;
    }
}
.leftBoxFullCloseAni{
    animation-name: leftBoxFullCloseAnim;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes leftBoxFullCloseAnim{
    from{
        width: 100%;
    }
    to{
        width: 50%;
    }
}

#methodologyInsideLeftBox{
    background-color: #3bb1c2;
    border-radius: 0 100px 0 100px;
    
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}




.mInsideClose{
    height: 0px;
}
.mInsideCloseAni{
    animation-name: mInsideCloseAni;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes mInsideCloseAni{
    from{
        height: 560px;
    }
    to{
        height: 0px;
    }
}
.mInsideOpen{
    height: 560px;
}
.mInsideOpenAni{
    animation-name: mInsideOpenAni;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes mInsideOpenAni{
    from{
        height: 0px;
    }
    to{
        height: 560px;

    }
}





.methodologyLeftBoxClose{
    width: 40%;
}
.methodologyLeftBoxCloseAni{
    animation-name: leftBoxCloseAni;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.8, 0.01, 0.17, 1);
    animation-fill-mode: forwards;
}
@keyframes leftBoxCloseAni{
    from{
        width: 100%;
    }
    to{
        width: 40%;
    }
}
.methodologyLeftBoxOpen{
    width: 100%;
}
.methodologyLeftBoxOpenAni{
    animation-name: leftBoxOpenAni;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.8, 0.01, 0.17, 1);
    animation-fill-mode: forwards;
}
@keyframes leftBoxOpenAni{
    from{
        width: 40%;
    }
    to{
        width: 100%;
    }
}
.methodologyImgStyle{
    width: 50px;
    min-width: 50px;
}
.methodologyImgCircle{
    border: 3px solid #45f5ec;
        position: relative;
    border-radius: 43px;
    overflow: hidden;
    height:  86.8px;
    padding: 16px;
    margin: 10px;
    width: fit-content;
    cursor: pointer;
    background-color: #3bb1c269;
}
.methodologyImgCircleDiv{
    width: fit-content;
    overflow: hidden;
    display: grid;
}
.methodologyImgCircle:hover{
    background-color: #37a6b769;
}
.mImageCircleClose{
        width: 83px;
}
.mImageCircleCloseAni{
    animation-name: circleCloseAni;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.8, 0.01, 0.17, 1);
    animation-fill-mode: forwards;
}
/*CHANGE ON SCREEN*/
@keyframes circleCloseAni{
    from{
        width: var(--methodologyBulletWidthClosed);
    }
    to{
        width: 83px;
    }
}
.mImageCircleOpen{
    width: var(--methodologyBulletWidthClosed);
}
.mImageCircleOpenAni{
    animation-name: circleOpenAni;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.8, 0.01, 0.17, 1);
    animation-fill-mode: forwards;
}
/*CHANGE ON SCREEN*/
@keyframes circleOpenAni{
    from{
        width: 83px;
    }
    to{
        width: var(--methodologyBulletWidthClosed);
    }
}
/*CHANGE ON SCREEN*/
#methodologyImages{
   margin-left: 3vw;
    margin-top: 50px;
    position: relative;
    overflow: visible;
    z-index: 1;
    width: fit-content;
}

.methodTitle{
    text-align: center;
    margin-bottom: 5px;
    margin-top:70px;
}
#discoverPresentationButton{
    margin: 0 auto;
    margin-top: 25px;
    padding: 20px 42px;
    border-radius: 12px;
    border: 0px solid #ffffff;
    background-image: linear-gradient(to right, #36a3b4, #48d4ea);
    box-shadow: 0 0 10px rgb(0 0 0 / 42%);
    display: flex;
    cursor: pointer;
}



.bRotateOn{
    animation-name: bRotateOn;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.8, 0.01, 0.17, 1);
    animation-fill-mode: forwards;
}
@keyframes bRotateOn{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(90deg);
    }
}
.bRotateOff{
    animation-name: bRotateOff;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.8, 0.01, 0.17, 1);
    animation-fill-mode: forwards;
}
@keyframes bRotateOff{
    from{
        transform: rotate(90deg);
    }
    to{
        transform: rotate(0deg);
    }
}
#pButtonText{
    color: white;
    font-size: 22px;
    margin-right: 10px;
}
#discoverPresentationButton:hover{
    background-image: linear-gradient(to right, #349baa, #46cade);
}
.blurArrow{
    width: 14px;
    margin-top: 10px;
}
.blurArrowBox{
    background-color: rgba(228, 228, 228, 0.288);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 27px;
    height: 27px;
    border-radius: 20px;
    align-items: center;
}
.methodologyTextBox{
    position: absolute;
    height: 58px;
        width: 30vw;
    max-width: 364px;
    align-items: center;
    display: flex;
    cursor: pointer;
}
.methodologyText{
    color: white;
    margin-left: 10px;
}
.textHide{
    opacity: 0;
}
.textShow{
    opacity: 1;
}
.textHiddenAni{
    animation-name: textHiddeAni;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.8, 0.01, 0.17, 1);
    animation-fill-mode: forwards;
}
@keyframes textHiddeAni{
    from{
        opacity: 1; 
    }
    to{
        opacity: 0;
    }
}
.textShowAni{
    animation-name: textShowAnim;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes textShowAnim{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.mFullOpen{
    animation-name: mFullOpen;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
/*CHANGE ON SCREEN*/
@keyframes mFullOpen{
    from{
        width: var(--methodologyBulletWidthClosed);  
        height: 86.8px;
    }
    to{
        height: 474px;
        width: var(--methodologyBulletWidthOpen);
    }
}
.mFullClose{
    animation-name: mFullClose;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
/*CHANGE ON SCREEN*/
@keyframes mFullClose{
    from{
        height: 474px;
        width: var(--methodologyBulletWidthOpen);
    }
    to{
        width: var(--methodologyBulletWidthClosed);
        height: 86.8px;
    }
}
.removeMarginAni{
    animation-name: removeMarginAni;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes removeMarginAni{
    from{

    }
    to{
        margin-top: 50px;
    }
}

.addMarginAni2{
    animation-name: addMarginAni2;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes addMarginAni2{
    from{
        margin-top: 50px;
    }
    to{
       margin-top: 146.8;
    }
}
.addMarginAni3{
    animation-name: addMarginAni3;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes addMarginAni3{
    from{
        margin-top: 50px;
    }
    to{
        margin-top: 243.6px;
    }
}
.addMarginAni4{
    animation-name: addMarginAni4;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes addMarginAni4{
    from{
        margin-top: 50px;
    }
    to{
        margin-top: 340.4px;
    }
}
.addMarginAni5{
    animation-name: addMarginAni5;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@keyframes addMarginAni5{
    from{
        margin-top: 50px;
    }
    to{
        margin-top: 437.2px;
    }
}

.textInsideBoxStyle {
    line-height: 1.4;
    color: white;
    width: 100%;

}
.textInsideBox{
    
    margin: 77px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.textInsideBoxImg{
    width: 50%;
    text-align: center;
}
#m_Section1Img{
    width: 265px;
    margin-top: -20px;
}
#m_Section2Img{
    width: 100%;
}
#m_Section3Img{
    width: 275px;
    margin-top: -5px;
}
#m_Section4Img{
    width: 275px;
    margin-top: -15px;
    margin-left:-35px;
}


.activeMethodologyOnPhone{
    margin-bottom: 515px !important;
} 



.spotifySection {
    
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(var(--spotifyUserPrimaryColor), var(--spotifyDefaultBackgroundColor));
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    margin-top: 40px;
    width: 100%;
}
.spotifySectionEpisodes {
    
    display: flex;
    flex-direction: column;
    background-color: var(--spotifyDefaultBackgroundColor);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    padding-bottom: 30px;
    width: 100%;
}

.spotifyContainer{
    width: 85.39%;
    margin: 0 auto;
        max-width: 880px;
}

#spotifyOverview{
    display: flex;
    margin: 50px 0 20px;
}

#spotifyOverviewTexts h1,
#spotifyOverviewTexts h2,
#spotifyOverviewTexts h3,
#spotifyOverviewTexts h4,
#spotifyOverviewTexts h5,
#spotifyOverviewTexts h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#buttonGoSpotify {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1d;
    background-color: var(--spotifyGreenColor);
    text-decoration: none;
    padding: 15px 27px;
    margin-top: 22px;
    width: fit-content;
    border-radius: 28px;
    box-shadow: 0px 0px 20px 11px rgb(0 0 0 / 22%);
    transition: 0.3s;

    white-space: nowrap;   /* ✅ Keep the text in one line */
    text-align: center;
}

#buttonGoSpotify:hover{
    filter: brightness(1.1);
    padding: 16px 28px;
}

.spotifyShowPublisher{
    font-size: 16px;
    font-weight: 600;
    color: #f1f1f1;
        margin-bottom: 2px;

}
.spotifyShowTitle {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.spotifyShowDescription{
    font-size: 17px;
    margin: 0 0 8px 0;
    color: #dedede;
    font-weight: 400;
}

#spotifyShowMoreBtn{
    text-decoration: none;
    font-size: 17px;
    margin: 0 0 8px 0;
    color: #dededeaa;
    font-weight: 100;
}

#spotifyShowLessBtn{
        text-decoration: none;
    font-size: 17px;
    margin: 0 0 8px 0;
    color: #dededeaa;
    font-weight: 100;
}

#spotifyShowImage {
    width: 185px;
    height: fit-content;
    box-shadow: 0px 0px 20px 11px rgb(0 0 0 / 22%);
    border-radius: 5px;
}


#spotifyDescripition{
        margin: 30px 0;

}

#spotifyDescripition h3, 
#spotifyDescripition h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
#spotifyAbout {
    font-size: 22px;
    margin-bottom: 7px;
    font-weight: 600;
}

#spotifyOverviewTexts{
    padding: 0.5% 3% 0;
    height: fit-content;
    margin: auto 0;
    display: flex;
    flex-direction: column;
}

.episodeDisplay{
    height: 400px;
    overflow: auto;
}

.episodeDisplay::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
}

.episodeDisplay::-webkit-scrollbar-track {
    background: var(--spotifyDefaultBackgroundColor);        /* color of the tracking area */
}

.episodeDisplay::-webkit-scrollbar-thumb {
    background-color: #747474;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid var(--spotifyDefaultBackgroundColor);  /* creates padding around scroll thumb */
}

.episodeDisplay::-webkit-scrollbar-thumb:hover {
    background-color: #a3a3a3; /* lighter color on hover */
}

.episodeTableHeader{
    display: flex;
    justify-content: space-between;
    padding: 12px 27px 5px 12px;
}

.episodeTableHeaderLeft{
    display: flex;
}


.episode-row{
    display: flex;
    justify-content: space-between;
}

.episode-row-left{
    display: flex;
}

.episode-card {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.episode-card:hover {
  background-color: #2a2a2a;
  cursor: pointer;
}


.episode-image {
  width: 160px;
  height: 160px;
  object-fit: cover;
}


.episode-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}


.episode-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.episode-index {
    font-size: 16px;
    font-weight: 300;
    color: #ffffffd6;
    margin-right: 1.5vw;
    width: 20px;
    cursor: default;
}

.index-number{
    font-size: 16px;
    font-weight: 300;
    color: #ffffffd6;
}

.playButton{
    width: 12px;
    height: fit-content;  
    display: none;  
    transform: translateY(5px);
}

.episode-card:hover .index-number{
    display: none;
}
.episode-card:hover .playButton{
    display:block;
}




.episode-time {
    font-size: 16px;
    font-weight: 300;
    color: #ffffffd6;
}

.episode-meta {
  font-size: 14px;
  color: #b3b3b3;
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

/* Description */
.episode-description {
  font-size: 14px;
  color: #b3b3b3;
  line-height: 1.4;
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
}


/*Phone adjustements*/
@media (max-width: 870px) {
    
    #presentationrightBox {
        width: 46%;
        height: 80%;
        margin-top: 30px;
    }
    #presentationLeftBox {
            width: 43%;
    }
    .presentationTitleText {
       margin-top: 20px;
    }
    .presentationSubText {
        margin: 0;
        width: 100%;
    }
    h1 {
    font-size: 50px;
    }
    #ProfileImageIndex {
        width: 200px;
        transform: translate(-25px, 0px);
        min-width: auto;
    }
    #ImgbackgroundStyle1 {
    width: 415px;
    }
    #ImgbackgroundStyle2 {
    width: 78px;
    margin-top: 8px;
    right: 0;
    }
    #presentationSection {
    height: 395px;
    }
    #presentationSection {
        margin-bottom: 0;
    }
    .methodTitle {
    font-size: 38px;
    }
    .leftBoxclosed{    
    width: 0%;
    }

    #methodologySection{
        flex-direction: column-reverse;
    }


    .leftBoxClosedAni{
        animation-name: leftBoxClosedAni;
        animation-duration: 0.2s;
        animation-iteration-count: 1;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }
    @keyframes leftBoxClosedAni{
        from{
            width: 100%;
        }
        to{
            width: 0%;
        }
    }

    .leftBoxOpen{
        width: 100%;
        margin-bottom: -357px;
    }
    .leftBoxOpenAni{
        animation-name: leftBoxOpenAnim;
        animation-duration: 0.2s;
        animation-iteration-count: 1;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }
    @keyframes leftBoxOpenAnim{
        from{
            width: 0%;
        }
        to{
            width: 100%;
        }
    }
    .leftBoxFullOpen{
         margin-bottom: -357px;
    }
    .leftBoxFullOpenAni{
         margin-bottom: -357px;
        animation-name: none;
    }

    .leftBoxFullCloseAni{
         margin-bottom: -357px;
        animation-name: none;
    }
    #methodologyrightBox{
        opacity: 1 !important;
    }
    .rightBoxClosedAni{
        animation-name: none;
    }
    .rightBoxOpenAni{
        animation-name: none;
    }
    .rightBoxOpen{
        width: 100%;
    }

    .rightBoxFullClosed{
    width: 100%;
    }
    .rightBoxFullClosedAni{
        animation-name: none;
        opacity: 1 !important;
    }
    .rightBoxFullOpenAni{
        animation-name: none;
    }
    .rightBoxBlurOn{
        animation-name:none;
    }

    .mImageCircleOpen {
        width: var(--methodologyBulletWidthOpen);
    }
    @keyframes circleOpenAni{
        from{
            width: 83px;
        }
        to{
            width: var(--methodologyBulletWidthOpen);
        }
    }
    @keyframes circleCloseAni{
        from{
            width: var(--methodologyBulletWidthOpen);
        }
        to{
            width: 83px;
        }
    }
    @keyframes mFullOpen{
        from{
            height: 86.8px;
        }
        to{
            height: 474px;
            width: var(--methodologyBulletWidthOpen);
        }
    }
    @keyframes mFullClose{
        from{
            height: 474px;
            
        }
        to{
            width: var(--methodologyBulletWidthOpen);
            height: 86.8px;
        }

    }
    .methodologyTextBox {
        width: 63vw;
        max-width: none;
    }

    .spotifyShowTitle {
        font-size: 26px;
    }
    .spotifyShowDescription {
        font-size: 16px;
    }
    .spotifyShowType {
        font-size: 15px;
    }
    .spotifySection{
        margin-top: -125px;
    }
    .episode-title {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    #presentationLeftBox {
        width: 50%;
    }
    #presentationrightBox {

        height: 83%;
    }
    #spotifyShowImage{
       width: 36%;
    }
    #buttonGoSpotify {
        margin-top: 12px;
        font-size: 14px;
        padding: 12px 24px
    }
    .TitlePhone{
        font-size: 40px;
    }

}