/*
** Theme Variables
*/
:root {
    --green: #399c39;
    --red: #dc3232;
    --white: #ffffff;
    --dark: #17171B;
    --black: #000000;

    --primary:    #7D2011;
    --primary-a:  #69180b;

    --body: var(--primary);

    --gray: rgba(242, 241, 248, 0.2);
    --lightyellow: #F2EEE6;
    
    --link: var(--primary);
    --link-a: var(--primary-a);

    --formfieldbg: transparent;
    --formfieldplaceholder: rgba(125, 32, 17, 0.5);
    --formfieldborder: rgba(125, 32, 17, 0.12);
    --formtextcolor: var(--body);

    --siteradius: 12px;

    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 180px
}

/*
** Fonts
*/

@font-face {
    font-family: 'maeda';
    src: url('../fonts/Maeda-Regular.woff2') format('woff2'),
        url('../fonts/Maeda-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'montserrat-sb';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*
** Font Icons
*/
@font-face {
    font-family: 'mg';
    src:  url('../fonts/icons/mg.ttf?n6gvsq') format('truetype'),
        url('../fonts/icons/mg.woff?n6gvsq') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'mg';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-angle-down:before {
    content: "\e907";
}
.icon-calendar:before {
    content: "\e905";
}
.icon-pin:before {
    content: "\e906";
}
.icon-down:before {
    content: "\e900";
}
.icon-fb:before {
    content: "\e901";
}
.icon-in:before {
    content: "\e902";
}
.icon-tw:before {
    content: "\e903";
}
.icon-yt:before {
    content: "\e904";
}
section#locations + iframe {
    width: 100%;
    display: block;
}

/*
** Custom Reset
*/
*,:after,:before { -webkit-box-sizing: border-box; box-sizing: border-box }
img { max-width: 100%; height: auto; vertical-align: top; }
a, span, i, label { display: inline-block; }
a { color: var(--link); text-decoration: none; transition: 0.3s ease-in-out; }
a:hover { color: var(--link-a); }
a:focus { outline: none; }
strong, b { font-family: 'montserrat', sans-serif; font-weight: 700; }

header ul,
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p:last-child,
ul:last-child,
li:last-child {
  margin-bottom: 0;
}

button,
button:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

input:focus {
    outline: none;
    box-shadow: none;
}

ul, ol { padding-left: 20px; }

li { margin-bottom: 10px; }


/*
** Globals
*/

/*Typo*/
body {
    font-family: 'montserrat', sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: var(--body);
    margin: 0;
    background-color: var(--lightyellow);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'maeda', serif;
    font-style: normal;
    font-weight: normal;
    margin-top: 0;
    color: var(--body);
}

h1, .h1 { --fsize: 48px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); margin-bottom: 20px; }
h2, .h2 { --fsize: 48px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); margin-bottom: 20px; }
h3, .h3 { --fsize: 32px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 16px; }
h4, .h4 { --fsize: 24px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 16px; }
h5, .h5 { --fsize: 22px; font-size: var(--fsize); line-height: calc(var(--fsize) + 6px); margin-bottom: 12px; }
h6, .h6 { --fsize: 20px; font-size: var(--fsize); line-height: calc(var(--fsize) + 6px); margin-bottom: 10px; }

p { margin-top: 0; }

img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Form Fields */
form {
    --fieldsize: 52px;
    --fieldpadds: 0 32px;
    --fieldtop: 15px;
    --fieldfsize: 18px;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="num"],
input[type="tel"],
input[type="url"],
input[type="file"],
select,
textarea {
    font-family: 'montserrat', sans-serif;
    font-size: var(--fieldfsize);
    line-height: calc(var(--fieldsize) - 2px);
    width: 100%;
    height: var(--fieldsize);
    padding: var(--fieldpadds);
    border-radius: var(--siteradius);
    background-color: var(--formfieldbg);
    border: 1px solid var(--formfieldborder);
    outline: 0 !important;
    vertical-align: top;
    color: var(--formtextcolor);
}

input::placeholder,
textarea::placeholder {
    color: var(--formfieldplaceholder);
}

textarea {
    padding-top: var(--fieldtop);
    line-height: 26px;
    height: 112px;
    resize: none;
}

select {
    width: 100%;
    padding-right: 42px;
    background-image: url('../images/angle-down.svg');
    background-size: 10px;
    background-position: right 20px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
}

/*Background Utilities*/
.bg--primary { background-color: var(--primary); color: var(--lightyellow); }
.bg--isdark, .bg--isdark h2, .bg--isdark h3 { color: var(--white); }

/*Text Utilities*/
.text-rg { font-family: 'montserrat', sans-serif; }
.text-sb { font-family: 'montserrat-sb', sans-serif; }
.text-hd { font-family: 'maeda', serif; }

.text-upercase { text-transform: uppercase; }

.text--ltyellow { color: var(--lightyellow); }

.font-24 { font-size: 24px; line-height: 30px; }
.font-22 { font-size: 22px; line-height: 28px; }
.font-18 { font-size: 18px; line-height: 24px; }
.font-16 { font-size: 16px; line-height: 24px; }
.font-14 { font-size: 14px; line-height: 22px; }
.font-12 { font-size: 12px; line-height: 15px; }

/*Image*/
.mgimg, .mgimg img { border-radius: var(--siteradius); }

/*
** Buttons
*/
.bttn {
    --btnsize: 52px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'montserrat', sans-serif;
    font-size: 18px;
    line-height: calc(var(--btnsize) - 2px);
    width: 342px;
    max-width: 100%;
    height: var(--btnsize);
    padding: 0 24px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: var(--siteradius);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.bttn-primary {
    color: var(--white);
    background-color: var(--primary);
}

.bttn-primary:hover {
    color: var(--white);
    background-color: var(--primary-a);
}

/*Other Utilities*/
.list-unstyled, .list-unstyled ul, .list-unstyled ol { padding: 0; margin: 0; list-style: none; }
.transition { transition: 0.3s ease-in-out; }
.unlink { pointer-events: none; cursor: none; }
.siteradius { border-radius: var(--siteradius); }

/*
** Bootstrap Extends & Overrides
*/
.container, .container-fluid, .row>* { padding-left: 20px; padding-right: 20px; }
.row { margin-left: -20px; margin-right: -20px; }
.gx-0.row>* { padding-left: 0; padding-right: 0; }
.gx-0.row { margin-left: 0; margin-right: 0; }

.visually-hidden,
.sr-only {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    white-space: nowrap!important;
    border: 0!important;
}

.overflow-hidden { overflow: hidden; }

/*
** WP Overrides
*/
.screen-reader-text { position: absolute; visibility: hidden; opacity: 0; }


/*
** Header
*/
.sub-menu { display: none; }

.site-header {
    font-family: 'montserrat', sans-serif;
    position: sticky;
    top: 0;
    padding: 20px 0;
    /* border-bottom: 1px solid rgba(23, 23, 27, 0.1); */
    transition: all 0.3s ease;
    z-index: 15;
}

.site-header.siteheader-sticky {
    padding: 10px 0;
}

.custom-logo {
    width: auto;
    height: 60px;
    transition: all 0.2s ease;
}

.siteheader-sticky .custom-logo {
    height: 50px;
}

.site-header .row {
    align-items: center;
}

.colheadright {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 30px;
}

.headernav {
    display: inline-flex;
    align-items: center;
    column-gap: 30px;
}

.headernav li { margin-bottom: 0; }

.headernav a {
    padding: 10px 5px;
    color: var(--lightyellow);
}

.headernav a:hover,
.headernav .current-menu-ancestor>a,
.headernav .current-menu-parent>a,
.headernav .current-menu-item>a {
    color: var(--white);
}

/*Site Menu Toggle*/
.site-menutoggle {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    position: relative;
    margin-bottom: 0;
}

.site-menutoggle span {
    display: block;
    width: 33px;
    height: 5px;
    margin-bottom: 5px;
    position: relative;
    background: var(--lightyellow);
    border-radius: 6px;
    transform-origin: 5px 5px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    z-index: 1;
}

.site-menutoggle span:last-child {
    margin-bottom: 0;
}

.site-menutoggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

.site-menutoggle input:checked~span {
    margin: 0;
    opacity: 1;
    transform: rotate(45deg) translate(-8px, -12px);
}

.site-menutoggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(1px, 20px);
    transform: rotate(-45deg) translate(-2px, 13px);
}

.site-menutoggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
    transition: 0s;
}

/*
** Common Section
*/
section.section,
.site-footer {
    --padds: 120px;
    padding-top: var(--padds);
    padding-bottom: var(--padds);
}

footer.section.site-footer { --padds: 80px; }

.section-head { margin-bottom: 80px; }

/*Intro Video*/
.mgvideo {
    position: relative;
    width: 100%;
    height: 100vh;
    max-width: 100%;
    overflow: hidden;
}

.mgvideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mgvid-sm { display: none; }

/*Grab Passes*/
.mgpasses .row { row-gap: 30px; }

.mgp-media img {
   
    overflow: hidden;
}

.mgp-cont {
    width: 592px;
    max-width: 100%;
    padding-left: 40px;
}

.mgp-icp {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

.mgp-item + .mgp-item { margin-top: 40px; }

.mgp-venue { flex: 1 0 100%; max-width: 100%; }

.mgp-item-2 {
    display: flex;
    gap: 30px;
}

.mgp-price .mgp-icp span {
    display: flex;
    white-space: nowrap;
    gap: 0px;
}

.mgp-date {
    flex: 1 0 auto;
}

.mgp-paynow {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(125, 32, 17, 0.12);
}

.bgart-topbtm {
    background-image: url('../images/tart.svg'), url('../images/bart.svg');
    background-repeat: repeat-x;
    background-position: top center, bottom center;
}

.bgart-btm {
    background-image: url('../images/bart.svg');
    background-repeat: repeat-x;
    background-position: bottom center;
}

/*Glimpse*/
.glimpse {
    background-image: url('../images/glimpse-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.galls {
    display: grid;
    gap: 12px;
}

.scroller-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll 800s var(--adirect, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --adirect: reverse;
}

.scroller[data-direction="left"] {
  --adirect: forwards;
}

.scroller[data-speed="fast"] {
  --adura: 20s;
}

.scroller[data-speed="slow"] {
  --adura: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/*About Us*/
section.abtus {
    --botsetup: 250px;
    position: relative;
    padding-bottom: calc(var(--botsetup) + 20px);
}

.abtus::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--botsetup);
    background-image: url('../images/garba-art.webp');
    background-position: bottom center;
    background-repeat: repeat-x;
    background-size: auto 100%;
    opacity: 0.06;
}

/*Sponsors*/
.sponsors {
    background-image: url('../images/sponsors-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sponsors .section-head { margin-top: -20px; }
.sponsors .scroller-inner { gap: 60px; }
.sponsors .scroller-inner img { width: auto; max-height: 150px;border-radius: 30px;}

/*Locations*/
.mgmap {
    --btmoffset: 48px;
    position: relative;
    padding-bottom: var(--btmoffset);
    overflow: hidden;
}

.mgmap iframe {
    width: 100%;
    max-width: 100%;
    height: 565px;
}

/*FAQs*/
.faqsec {
    background-image: url('../images/faqs-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: repeat-y;
    overflow: hidden;
}

.faqsec h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    cursor: pointer;
}

.faqsec-btn i { transition: 0.3s ease-in-out; }

.faqsec h2 .icon-down {
    font-size: 16px;
}

.faqlist {
    display: none;
    margin: 0 auto;
    padding-top: 30px;
}

.faqitem {
    padding: 15px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--siteradius);
    background: transparent;
}

.faqitem + .faqitem { margin-top: 20px; }

.faqhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faqbody {
    font-size: 16px;
    display: none;
    padding: 10px 0 0;
}

.faqhead h3 {
    font-size: 22px;
    line-height: 28px;
}

.faqbttn {
    font-size: 10px;
    line-height: 28px;
    font-weight: bold;
    transform: rotate(0deg);
    transform-origin: center center;
    transition: all .3s ease-in-out;
}

.faqopen .faqbttn, .faqsec-btn.active i { transform: rotate(180deg); }

/*Inquiry*/
.row-mginq { row-gap: 50px; }

.mginq-media img { border-radius: 20px; transform: rotate(-3.83deg); }

.mginq form .row { row-gap: 20px; }

.iti, .wpcf7-form-control-wrap { display: block; }

.wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.3;
    padding: 8px 5px 3px;
    margin-top: -4px;
    color: var(--red);
    border-radius: 0px 0px 10px 10px;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.4em;
    padding: 8px 10px;
    margin: 20px 0 0 0;
    border: 0;
    border-radius: 5px;
    background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: var(--green);
    color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output {
    color: #ffffff;
    background: var(--red);
}

.wpcf7-spinner {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateX(110px) translateY(-15px);
}

.mginq label { display: block; }

input.wpcf7-not-valid, textarea.wpcf7-not-valid { border-color: var(--red); }

.mginq .col-bttn { margin-top: 20px; }

/*Footer*/
.site-footer {
    background-image: url('../images/footer-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.foo-row { row-gap: 30px; }

.foo-logo img {
    width: auto;
    height: 139px;
    padding-left: 82px;
    margin-bottom: 40px;
}

.foocopy {
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(242, 238, 230, 0.2);
}

.partlist { column-gap: 40px; }

.socialnav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.socialnav li { margin: 0; }

.socialnav a {
    --socSize: 72px;
    font-size: 24px;
    width: var(--socSize);
    height: var(--socSize);
    line-height: var(--socSize);
    margin: 0;
    text-align: center;
    color: var(--lightyellow);
    border: 1px solid rgba(242, 238, 230, 0.2);
    border-radius: var(--socSize);
}

.socialnav a:hover { background-color: var(--lightyellow); color: var(--primary); }
.scroller-inner img {object-fit: cover;object-position: center;}