@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --site-color:#FFFFFF;
    --site-text-color:#FFFFFF;
    --site-background-color:#000000;
    --site-hover-color:#FFFFFF;
    --site-button-color:#FFFFFF;
    --site-primary-font: itc-avant-garde-gothic-pro, sans-serif;
    --site-secondary-font:'Ubuntu', sans-serif;
    --site-white-color:#FFFFFF;
    --site-black-color:#000000;
    --font-weight-light:300;
    --font-weight-regular:400;
    --font-weight-medium:500;
    --font-weight-bold:700;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: var(--site-primary-font);
    font-size: 18px;
    color: var(--site-white-color);
    background: var(--site-background-color);
    width: 100vw;
    margin: 0 auto;
    overflow-x: hidden;
 
    position: relative;
  
    font-weight: var(--font-weight-light);
    text-transform: lowercase;
    
}
body.overflow{
    overflow: hidden;
}
img{
    width: 100%;
    height: auto;
}
a {
    transition: 0.5s ease-in-out;
}
a:hover{
    opacity: 0.7;
}
.main-wrapper.active{
    left: -100%;
}
.poster_wrap{
max-width:80%;
margin:0 auto;
}
.main-wrapper {
    position: relative;
    width: 100%;
    left: 0;
    transition: 1s;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    position: fixed;
    top: 2vw;
    z-index: 102;
    left: 2vw;
    width: 94vw;

}
.site-logo {
    width: 4.3229vw;
}
.nav-wrapper .nav-items {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap:3vw;
}

.nav-wrapper .nav-items a {
    color:var(--site-white-color);
    font-weight: var(--font-weight-medium);
    font-size: 1.3021vw;
    text-decoration: none;
    line-height: 1.6146vw;
}
.nav-wrapper .nav-items a:hover, .footer a:hover{
    color:var(--site-hover-color);
}

.overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    background: var(--listen-overlay-color);
    align-items: center;
    justify-content: center;
    transition: 0.5s linear all;
    cursor: pointer;
}
.slider-overlay-content {
    color: #fff;
    text-align: center;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.slider-overlay-content a, .footer-actions a {
    border: 0.1vw solid;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    width: 9.011vw;
    border-radius: 0.2604vw;
    height: 3.334vw;
    line-height: 3.334vw;
    display: flex;
    justify-content: center;
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: 0.5s ease-in-out;
    text-decoration: none;
    font-size: 1.5625vw;
   
}
.slider-overlay-content a{
    margin: 0 auto;
}
.slider-overlay-content a:hover, .footer-actions a:hover{
    background: #fff;
    border-color: #fff;
    color: var(--listen-color);
    opacity: 1;
}
section.home {
    background: var(--album-color);
    height: 100vh;
    padding: 0 2vw;
    transition: 2.2s linear all;
}
section.merch{
    background: #0D625C;
    padding: 6vw 2vw;
}
.merch-items-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding-bottom: 12vw;
}
.merch-items-grid-wrapper:last-child{
    padding-bottom: 0;
}
.merch-content-section:not(.first){
    padding-left: 9vw;
}
.merch-image {
    width: 23.23vw;
}
.merch-image:not(.first){
    float: right;
}
.merch-image a img{
    transition: 0.7s;
}
.merch-image a:hover{
    opacity: 1;
}
.merch-image a:hover img{
    transform: scale(1.1);
}
.section-title {
    font-size: 2.6042vw;
    line-height: 3.2292vw;
}

.tickets-btn{
    position: absolute;
    top: 82vh;
    left: calc(50% - 5vw);
}

.merch-desc,.latest-desc {
    font-size: 2.0833vw;
    line-height: 2.6042vw;
    opacity: 0.5;
    padding: 2vw 0;
}
.order-1{
    order: 1;
}
.order-2{
    order: 2;
}
.order-minus1{
    order: -1;
}
.button{
    border: 0.1vw solid #05124D;
    cursor: pointer;
    color: #fff;
    width: 10.2083vw;
    border-radius: 0.2604vw;
    font-size: 1.5625vw;
    height: 3.4896vw;
    line-height: 3.4896vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: lowercase;
    background: #05124D;
    transition: .5s ease-in-out;
}
.button:hover{
    opacity: .5;
}
section.tour{
    background: #051149;
    padding: 6vw 2vw;
    position: relative;
    z-index: 1;
    
   
}

.border-section{
    background-size: cover;
    position: absolute;
    top: 0;
    width: 62vw;
    height: 100%;
    left: -37vw;
    overflow: hidden;
    z-index: -1;
    border-radius: 100%;
    border: 12vw solid #11687F;
}
section.tour .section-title{
   padding: 2vw 0;
   text-align: center;
}
.tour-wrapper{
    width: 90vw;
    margin: 0 auto;
}
.latest-wrapper {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
}
section.latest{
    background: url(./../images/grunge.png) no-repeat center #3076B6;
    background-size: cover;
    padding: 6vw 0;
}

.latest-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5vw;
    align-items: center;
}
.latest-wrapper-image-section {
    width: 26.7708vw;
}
.latest-section-wrapper{
    width: 80vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;

}
.latest-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.58fr;
    padding-left: 2vw;
    
}
.latest-right-content{
    width: 100%;
    height: 100%;
    background: #11687F;
    border-bottom-left-radius: 62%;
    padding-top: 7vw;
    overflow: hidden;
}
.latest-image-section {
    width: 85%;
    margin-left: auto;
    overflow: hidden;
    background: #06364d;
    margin-bottom: -1vw;
}
.latest-left-content .section-title{
    padding: 7vw 0;
}
section.signup{
    background: #051149;
    text-align: center;
    height:100vh;
    display:flex;
    align-items: center;
}
.signup-section-content-wrapper {
    width: 70vw;
    margin: 0 auto;
    padding-top: 2.5vw;
}

.signup-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr;
}
/* Mailing List */
.form-section .heading {
    font-size: 1.5625vw;
    line-height: 1.9271vw;
    padding: 2vw 0;
    width: 36.1458vw;
    margin: 0 auto;
}

.mlform form {
    width: 100%;
    margin: 0 auto;
}
.mlform {
    width: 37.5000vw;
    margin: 0 auto;
}
.input-fields {
    display: flex;
    gap: 1vw;
}
.fieldWrap {
    padding-bottom: 1vw;
    position: relative;
    width: 100%;
}

.fieldWrap input,
.fieldWrap select {
    background: #1c4d7c4d;
    border: 0.1vw solid #1c4d7c4d;
    color: #ffffff4d;
    border-radius: 0.2604vw;
    font-size: 1.5625vw;
    height: 3.4896vw;
    line-height: 3.4896vw;
    min-height: 60px;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    width: 100%;
    padding: 0 2vw;
    -webkit-appearance: none;
    appearance: none;
    text-align: left;
    text-transform: lowercase;
    font-family: var(--site-primary-font);
   
}
.submit1 {
    width: 20.4167vw;
}
input[type="submit"]{
    background-color: #3076B6;
    color: var(--site-color);
    border: 0.1vw solid #3076B6;
    border-radius: 0.2604vw;
    font-size: 1.5625vw;
    height: 3.4896vw;
    line-height: 3.4896vw;
    min-height: 67px;
    width:100%;
    display:block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    padding: 0 2vw;
    margin: 0 auto;
    text-align: center;
    text-transform: lowercase;
    font-family: var(--site-primary-font);
    
    
}
input[type="submit"]:hover{
    opacity: .5;
}
.custom-field-section {
    margin-bottom: 2vw;
}
.fieldWrap .errored {
    border: 1px solid #ff0000;
}

.input-error {
    position: relative;
    bottom: -2px;
    width: 100%;
    left: 0;
    color: #ff0000;
    font-size: 16px;
    text-transform:lowercase;
    display: block;
    text-align: left;
}
.fadeOut {
    display: none;
}
.fadeIn {
    display: block;
}

.thankyou {
    font-size: 2.084vw;
    text-align: center;
    padding: 0;
    text-transform: lowercase;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--site-text-color);
    opacity: .2;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--site-text-color);
    opacity: .2;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--site-text-color);
    opacity: .2;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: var(--site-text-color);
    opacity: .2;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: var(--site-text-color) !important;
    /* -webkit-text-fill-color: var(--site-background-color); */
    /* -webkit-box-shadow: 0 0 0px 1000px var(--site-background-color) inset; */
}

div.terms {
    text-align: center;
    padding-top: 1vw;
    color: #fff;
}
div.terms a {
    color: #fff;
}


.terms-view {
    width: 100%;
    font-size: 1.0417vw;
    padding-top: 1vw;
    padding-left: 0;
    text-align: center;
    text-transform: lowercase;
    line-height: 1.3021vw;
}
.terms-view a{
    color: var(--site-color);
    text-decoration:underline;
    transition: 0.5s ease-in-out;
}

.terms-view a:hover{
  opacity: 0.5;
}
section.video{
    display: none !important;
    position: relative;
    background: url(./../images/background-slide.png),url(./../images/grunge.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    left: 0;
    display: block;
    transform: translateY(0);
    transition: 1s linear all;
}
section.video.active{
    transform: translateY(-100%);
  
}
section.video.active.hide{
    display: none;
}
video.position{
    position: relative;
}
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    object-fit: cover;
}
section.video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.owl-carousel .owl-item{
    opacity: 0.7;
}
body .nav-btn {
    width: 3.4896vw;
}
body .nav-btn svg{
    width: 100%;
    height: auto;
    transition: .5s ease-in-out;
}
body .nav-btn svg rect {
    fill: rgb(0 0 0 / 70%);
    transition: .5s ease-in-out;
}
body .nav-btn svg path{
    transition: .5s ease-in-out;
}
body .owl-theme .owl-nav {
    width: 27.5vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 2vw;
}
body .owl-theme .owl-nav [class*=owl-]{
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    transition: .5s ease-in-out;
    opacity: .5;
}
body .owl-theme .owl-nav [class*=owl-]:hover{
    opacity: 1;
    background: transparent;
    transition: .5s ease-in-out;
}

body .owl-theme .owl-nav [class*=owl-]:hover .nav-btn svg rect {
    fill: rgb(0 0 0);
  
}



body .owl-carousel .owl-item {
    transform: scale(0.8);
    transition: .5s linear all;
}
body .owl-carousel .owl-item:hover{
    opacity: 0.5;
}
.owl-carousel .owl-item.active.center:hover .overlay{
    opacity: 1;
}
.owl-carousel .owl-item.active.center{
    opacity: 1;
    transform: scale(1);
}
section.listen {
    background: url(./../images/grunge.png) no-repeat center var(--listen-color);
    transition: 1s linear all;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section.listen::after{
    content: "";
    background: url(./../images/grunge.png) no-repeat center;
    background-size: cover;
}
.listen-section-title{
    font-size: 2.6042vw;
    text-align: center;
    padding: 2.3vw 0;
}
.listen-title{
    font-size: 1.5625vw;
    text-align: center;
    padding: 1vw 0;
    display: none;
    line-height: 1.9271vw;
}
.owl-item.active.center .listen-title {
    display: block;
}

.image-section{
    position: relative;
   
}
.footer {
    width: 100%;
    text-align: center;
    background: #051149;
    margin-top: -1vw;
    padding: 1vw 0;
    font-family: var(--site-primary-font);
}
.socials-nav, .footer-bottom {
    padding-bottom: 1vw;
}
.socials-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 1vw;
}
.socials-nav ul li {
    display: flex;
}
.socials-nav ul a {
    font-size: 1.263vw;
    transition: 0.5s ease-in-out;
    color: var(--site-color);
}
.copyright-links {
    font-size: 0.7813vw;
    line-height: 0.8854vw;
    
}
.copyright-links span.link {
    display: inline-block;
}
.copyright-links a {
    color: var(--site-color);
    transition: 0.5s ease-in-out;
    text-decoration: none;
    font-family: var(--site-primary-font);
}

.site-name .menu-text{
    display:none;
}
span.sep {
    padding: 1vw;
}

#close-wrapper {
    display: none;
}
.sidepanel {
    display: none;
}
.desktop-only{
    display: block;
}
.mobile-only{
    display: none;
}
.site-logo img.logo{
    display: none;
}
.site-logo img.logo.active{
    display: block;
}

.sidebar {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background: transparent;
    background-size: cover;
    overflow-x: hidden;
    transition: 0.5s;
    display: block;
}

.sidebar-content-wrapper {
    padding: 0 3vw;
    height: 100%;
    
}
.section-content-wrapper {
    position: relative;
    text-align: center;
}
.closebtn {
    position: absolute;
    color: var(--site-color);
    font-size: clamp(3vw, 3vw, 5vw);
    top: 0;
    right: 1vw;
    line-height: clamp(3vw, 3vw, 5vw);
    text-decoration: none;
    transition: .5s ease-in-out;
}

.closebtn:hover {
    opacity: 0.5;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 45vw;
    margin: 0 auto;
    animation: fadeIn 0.5s;
    -webkit-animation: fadeIn 0.5s;
    -moz-animation: fadeIn 0.5s;
    -o-animation: fadeIn 0.5s;
    -ms-animation: fadeIn 0.5s;
    position: relative;
}

.sidebar-content .signup-section-content-wrapper{
    width: 100%;
    background: #05124D;
    border: 1px solid #fff;
    padding: 2.5vw 0;
}
.sidebar.active .section-title{
    display: none;
}
.popup-title{
    display: none;
    font-size: 2.042vw;
    line-height: 3.292vw;
}
.sidebar.active .popup-title{
    display: block;
    padding-bottom: 2vw;
}
.sidebar.active .heading{
    display: none;
}

@media only screen and (max-width: 1024px)  and (orientation: portrait){
    .mobile-only{
        display: block;
    }
    .nav-wrapper .nav-items.desktop-only{
        display: none;
    }
    .desktop-only{
        display: none;
    }
    .mobile-menu{
        width: 8.2564vw;
        cursor: pointer;
        z-index: 9;
    }
    .site-logo {
        width: 12.5641vw;
        z-index: 9;
    }
    .header-wrapper {
        top: 6vw;
        z-index: 102;
        left: 5vw;
        width: 90vw;
    }
    
    .menu-icon{
        width: 9.4872vw;
        transform: rotate(45deg);
        transition: 1s;
    }
    .menu-icon.active{
        transform: none;
    }
    .menu-icon.active rect{
        fill: var(--site-white-color);
        transition: 1s;
    }
    .menu-icon rect {
        fill: var(--site-background-color);
       
    }
    .arrow-down-icon {
        width: 3.0769vw;
        margin: 0 auto;
    }
    /* The sidepanel menu */
    .sidepanel {
        height: 100vh;
        width: 100vw;
        position: fixed;
        z-index: 5;
        top: 0;
        left: 100%;
        background-color:var(--site-white-color);
        overflow-x: hidden;
        transition: 1s;
        display: block;
        
       
    }
    .sidepanel.open{
        left: 0;
    }
    
    .sidepanel .mobile-menu-items a {
        padding: 0;
        text-decoration: none;
        font-size: 6.4103vw;
        line-height: 8.7179vw;
        color: var(--site-black-color);
        font-weight: var(--site-primary-font);
        display: block;
        transition: 0.3s;
        padding-bottom: 8vw;
      
    }
    .sidepanel .mobile-menu-items a.active{
        font-family: var(--site-primary-font-bold);
    }
    .mobile-menu-wrapper {
        display: grid;
        /* grid-template-rows: 2fr 1fr; */
        grid-template-columns: 1fr;
        height: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .mobile-menu-items {
        height: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .mobile-menu-footer {
        display: flex;
        gap: 3vw;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        position: absolute;
        bottom: 5vw;
        width: 100%;
    
    }
    .mobile-menu-footer .socials-nav ul a,.mobile-menu-footer .copyright-links, .mobile-menu-footer .copyright-links a{
        color: var(--site-black-color);
    }
    
    .header-content-wrapper{
        font-size: 7.6923vw;
        width: 100%;
        flex-direction: column;
    }
    .left-items a {
        width: 30.5128vw;
        padding-left: 3vw;
    }
    .header-items.right {
        padding-right: 3vw;
    }
    .socials-nav ul{
        gap: 5vw;
    }
    .socials-nav ul a {
        font-size: 4.6154vw;
    }
    .copyright-links {
        font-size: 2.5641vw;
        line-height: 3.5897vw;
    }
    .footer-bottom .copyright-text{
        padding: 2vw 0;
        display: inline-block;
    }
    section.video{
        background: url(./../images/mobile-background-slider.png),url(./../images/grunge.png) no-repeat center;
        background-size: cover;
    }
    section.latest,section.signup,section.listen{
        padding: 16vw 0;
    }
    section.listen {
        margin-top: -3vw;
    }
    .listen-slider {
        width: 90vw;
        margin: 0 auto;
    }
    .listen-title {
        font-size: 5.8974vw;
        padding: 4vw 0;
        line-height: 7.1795vw;
    }
    .image-section {
        padding-bottom: 6vw;
    }
    body .owl-theme .owl-nav{
        width: 100%;
        position: absolute;
        bottom: 0;
    }
    body .nav-btn {
        width: 13.5897vw;
       
    }
    .latest-grid{
        grid-template-columns: 1fr;
    }
    .input-fields{
        flex-direction: column;
        gap: 0;
    }
    .signup-section-content-wrapper {
        width: 90vw;
        margin: 0 auto;
    }
    .closebtn{
        font-size: clamp(15vw, 15vw, 5vw);
        line-height: clamp(3vw, 15vw, 5vw);
        top: 3vw;
        right: 3vw;
    }
    .fieldWrap {
        width: 100%;
        padding-bottom: 2vw;
    }
    .submit {
        padding-top: 10vw;
    }
    .mlform {
        width: 100%;
    }
    .signup-section-content-wrapper .mlform {
        width: 90%;
    }
    
    .input-error{
        text-align: center;
    }
    .terms-view {
        width: 100%;
        font-size: 3.042vw;
        line-height: 3.302vw;
        padding-top: 4vw;
    }
    .copyright-links {
        font-size: 2.5641vw;
        line-height: 3.3333vw;
        text-transform: capitalize;
        font-family: var(--site-primary-font);
        padding: 2vw 0;
    }
    .socials-nav ul{
        gap:5vw;
    }
    .socials-nav ul a {
        font-size: 5.263vw;
    }
    
    section.latest .section-title, section.signup .section-title, .listen-section-title, section.tour .section-title {
        font-size: 7.6923vw;
        text-align: center;
        text-transform: lowercase;
        padding-bottom: 6vw;
        line-height: 9.4872vw;
        width: 100%;
    }
    .form-section .heading {
        font-size: 5.8974vw;
        line-height: 7.1795vw;
        padding: 8vw 0;
        width: 81.5385vw;
    }
    .thankyou{
        font-size: 5.8974vw;
        line-height: 7.1795vw;
    }
    .fieldWrap input, .fieldWrap select,input[type="submit"]{
        font-size: 5.8974vw;
        height: 13.5897vw;
        line-height: 13.5897vw;
        text-align: center;
        min-height: auto;
    }
    
    section.merch{
        text-align: center;
        padding: 80vw 0;
        padding-top: 30vw;
    }
    .merch-items-grid-wrapper{
        grid-template-columns: 1fr;
        padding-bottom: 50vw;
    }
    .merch-content-section {
        width: 81.5385vw;
        margin: 0 auto;
    }
    .section-title{
        width: 63.0769vw;
        padding-bottom: 15vw;
    }
    .merch-image {
        width: 81.5385vw;
        margin: 0 auto;
    }
    .merch-image:not(.first){
        float: none; 
    }
    .merch-title{
        font-size: 6.4103vw;
        line-height: 7.4359vw;
        text-align: left;
        padding-top: 5vw;
        width: 100%;
    }
    .merch-desc, .latest-desc{
        font-size: 5.8974vw;
        line-height: 7.1795vw;
        text-align: left;
        padding: 5vw 0;
        text-align: center;
    }
    .button{
        width: 100%;
        height: 13.5897vw;
        line-height: 13.5897vw;
        font-size: 5.8974vw;
        border-radius: 1.2821vw;
    }
    .mobile-order1 {
        order: 1;
    }
    .merch-content-section:not(.first) {
        padding-left: 0;
    }
   
    .latest-left-content {
        background: #11687f;
        padding: 0 10vw;
       
    }
    .latest-image-section{
        padding-right: 6vw;
        background: #11687f;
    }
    .tour-wrapper, .latest-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0;
    }
    .latest-right-content {
        border-bottom-left-radius: 100%;
    }
    .border-section{
        display: none;
    }
   
    section.tour .section-title {
        width: 39.7436vw;
        margin: 0 auto;
        display: block;
        padding-top: 20vw;
        padding-bottom: 7vw;
    }
    .latest-left-content .section-title {
        padding: 7vw 0;
        display: block;
        margin: 0 auto;
        width: 52.8205vw;
    }
    .latest-title{
        font-size: 6.4103vw;
        line-height: 7.4359vw;
        width: 81.5385vw;
        display: block;
        margin: 0 auto;
    }
    
    .latest-wrapper-image-section {
        width: 100%;
    }
    section.signup,section.listen{
        height: auto;
        padding: 10vw 0;
    }
    div.terms {
        padding-top: 2vw;
        font-size: 5vw;
    }
    .tickets-btn .button{
        width:30.2083vw;
    }
    .tickets-btn{
        top: 74vh;
        left:calc(50% - 15vw);
    }
    .sidebar-content{
        width: 90vw;
    }
    .sidebar.active .popup-title{
        margin: 0 auto;
        padding: 6vw 0;
        font-size: 6vw;
        line-height: 8vw;
        padding-top: 12vw;
       
    }

.slider-overlay-content a{    
font-size: 6vw;
    width: 32vw;
    height: 11vw;
}

}


@media only screen and (max-width: 1024px)  and (orientation: landscape){
    .tickets-btn .button{
        width:30.2083vw;
    }
    .sidebar{
        height: 90%;
        overflow: auto;
        top: 2vw;
    }
    .popup-title {
        font-size: 4.042vw;
        line-height: 3.292vw;
    }
    .sidebar-content {
        width: 100%;
        justify-content: inherit;
       
    }
    .signup-section-content-wrapper {
        width: 90vw;
        margin: 0 auto;
    }
    .closebtn {
        font-size: clamp(5vw, 4vw, 5vw);
        line-height: clamp(5vw, 4vw, 5vw);
        top: 1vw;
    }
    .tickets-btn{
        top: 74vh;
        left:calc(50% - 15vw);
    }

    .nav-wrapper .nav-items a {
        font-size: 2.0417vw;
    }
    
    section.latest .section-title, section.signup .section-title, .listen-section-title, section.tour .section-title {
        font-size: 4.6923vw;
        text-transform: lowercase;
        padding-bottom: 3vw;
        line-height: 6.4872vw;
        width: 100%;
    }
    section.latest .latest-content .section-title{
        padding-bottom: 0;
    }
    .merch-desc, .latest-desc {
        font-size: 2.8974vw;
        line-height: 4.1795vw;
        padding-bottom: 2vw;
      
    }
    .button {
        width: 25vw;
        height: 6.5897vw;
        line-height: 6.5897vw;
        font-size: 2.8974vw;
        border-radius: 0.6821vw;
    }
    .copyright-links {
        font-size: 1.4813vw;
        line-height: 0.8854vw;
    }
    body .owl-theme .owl-nav {
        width: 48vw;
    }
    .form-section .heading {
        font-size: 2.8974vw;
        line-height: 3.1795vw;
        padding: 4vw 0;
        width: 61.5385vw;
    }
    .mlform .fieldWrap input{
        text-align: left;
    }
    .fieldWrap input, .fieldWrap select, input[type="submit"] {
        font-size:2.8974vw;
        height: 8.5897vw;
        line-height: 8.5897vw;
        text-align: center;
    }
   
    .input-error {
        font-size: 2.1026vw;
    }
    .mlform {
        width: 67.5vw;
        margin: 0 auto;
    }
    .fieldWrap{
        width: 100%;
    }
    .terms-view {
        width: 100%;
        font-size: 1.417vw;
        padding-top: 2vw;
        line-height: 2.021vw;
    }
    .listen-title {
        font-size: 3.563vw;
        padding: 2vw 0;
    }
    body .nav-btn {
        width: 4.052vw;
    }
    .listen-slider {
        width: 100vw;
        margin: 0 auto;
    }
    .socials-nav ul{
        gap:2vw;
    }
    .socials-nav ul a {
        font-size: 2.263vw;
    }
    section.signup,section.listen{
        height: auto;
        padding: 5vw 0;
    }
    div.terms {
        padding-top: 2vw;
        font-size: 2.5vw;
    }
    
}
@media only screen and (min-width: 768px) and (max-width: 1024px)  and (orientation: portrait){
    .menu-icon {
        width: 5.487vw;
    }
    .site-logo {
        width: 7.564vw;
        z-index: 9;
    }
    .mobile-menu-footer{
        bottom: 2vw;
    }
    .listen-slider{
        width: 100vw;
    }
    body .owl-theme .owl-nav {
        width: 90% !important;
        left: 5%;
    }

    .signup-section-content-wrapper .section-title, .popup-title{
        margin: 0 auto;
        padding: 2vw 0;
        font-size: 4vw;
        line-height: 8vw;
        padding-top: 6vw;
       
    }
    .form-section .heading {
        font-size: 3.8974vw;
        line-height: 5.1795vw;
        padding: 8vw 0;
        width: 81.5385vw;
    }
    .fieldWrap input, .fieldWrap select, input[type="submit"] {
        font-size: 4.8974vw;
        height: 11.5897vw;
        line-height: 11.5897vw;
        text-align: center;
    }
}

