@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);

/*reset CSS*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;

}

:root {
    --body-color: #ddd;
    --sidebar-color: #ddd;
    --primary-color: #ddd;
    --primary-color-light: #ddd;
    --primary-font-size: 19px;
    --htext-font-size:25px;
    --primary-font-weight:normal;
    --htext-font-weight:700;
    --h2text-font-weight:600;
    --hcontainer-font-size: bold;
    --font-color: #757575;
    --sidebar-font-size: 15px;
    --primary-body-font-size: 25px;
    --secundary-body-font-size: 19px;
    --primary-body-font-size-mobile: 15px;
    --secundary-body-font-size-mobile: 13px;
    --sidebar-font-color: #757575;
    --sidebar-font-weight: 500;
    --text-hover-color: #e86610;
    --icon-fontsize: 20px;
    --icon-height-top: 14px;
    --sidebar-icon-distance-left: -7px;
    --sidebar-width-submenu: 200px;
    --header-height: 70px;
    --sidebar-width: 290px;
    --sidebar-background-color: #fff;
    --sidebar-low-height: 130px;
    --home-background-mobile-border-radius: 0px 100px 100px 0px;

    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
    --tran-08: all 0.8s ease;
}

/* html, */

body {
    background-color: inherit;
    position: relative;
    height: 100%;
    overflow-x: hidden;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: overlay;
}

::-webkit-scrollbar {
    width: 10px;
    -webkit-transition: var(--tran-03);
    transition: var(--tran-03);
    background: transparent;
    position: relative;
    display: block;

}

::-webkit-scrollbar-thumb {
    background-color: #757575;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #C2C2C2;

}

.container {
    position: absolute;
    width: 100vw;
    height: 100%;
    /* z-index: 2; */
}

.footer-container {
    position: relative;
}
.bannertext {
    position: relative;
    margin-top: var(--header-height);
    width: 100%;
    min-height: 30px;
    height: 100px;
    z-index: 2;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 40px;
    font-size: var(--primary-font-size);
    color: #757575;
    font-weight: 500;
}

/* ------------------------------------------------------------------------------------------------------------ */
/* FRAMEWORK!! */
.header {
    position: fixed;
    width: 100vw;
    background-color: #fff;
    height: var(--header-height);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.1);
    z-index: 11;
}

.header-img {
    height: 70px;
    position: fixed;
    left: 18%;
    top: 0px;
}

.header-img img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.header-img-right {
    height: 50px;
    width: 36.65px;
    position: fixed;
    top: 10px;
    right: 15px;
}

.header-img-right img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.menu .menu-button {
    list-style: none;
    font-size: var(--icon-fontsize);
    color: var(--sidebar-font-color);
    position: fixed;
    left: 23px;
    cursor: pointer;
    top: var(--icon-height-top);
}



.sidebar {
    position: fixed;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: var(--sidebar-width);
    height: calc(100% - var(--header-height));
    /* top: var(--header-height); */
    bottom: 0px;
    left: 0px;
    box-shadow: 10px 0px 10px -5px rgba(0, 0, 0, 0.1);
    transition: var(--tran-08);
    z-index: 5;

}


.sidebar-high {
    position: fixed;
    width: var(--sidebar-width);
    top: var(--header-height);
    bottom: var(--sidebar-low-height);
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--sidebar-background-color);
    padding: 4px 5px 0px 16px;
    color: var(--text-hover-color);
    z-index: 0;
}

.sidebar-low {
    position: fixed;
    width: var(--sidebar-width);
    top: calc(100% - var(--sidebar-low-height));
    bottom: 0%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--sidebar-background-color);
    padding: 10px 30px 20px 30px;
    color: #ee6f24;
    box-shadow: 0px -5px 10px -5px rgba(0, 0, 0, 0.1);

}

.sidebar.active {
    left: -290px;
    transition: var(--tran-08);
}

.sidebar-high .nav {
    overflow-y: scroll;
    top: var(--header-height);
    bottom: var(--sidebar-low-height);
    padding: 7px;
}

.lang-menu {
    position: fixed;
    right: 12%;
    top: var(--icon-height-top);
    background-color: #fff;
    border-radius: 8px;
    margin-right: 10px;
    cursor: pointer;
}


.lang-menu ul li a {
    padding: 12px 8px 12px 8px;
    border-radius: 8px;
    margin: 0px -7px 5px 5px;

}

.header .menu ul.active {
    border-radius: 8px;
    box-shadow: 0px 20px 50px -10px rgba(0, 0, 0, 0.1);
}

.header .menu ul.active #language,
.header .menu ul.active #lang-icon {
    color: #e86610;
}

.header .menu ul.active #lang-arrow {
    color: #e86610;
    transform: rotate(180deg);
    transition: var(--tran-03);
}

.menu ul li {
    position: relative;
    left: var(--sidebar-icon-distance-left);
    list-style: none;
    margin-bottom: 2px;
}

.menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--sidebar-font-size);
    font-weight: var(--sidebar-font-weight);
    color: var(--sidebar-font-color);
    text-decoration: none;
    padding: 12px 8px;
    border-radius: 8px;
}

.menu ul li>a:hover,
.menu ul li:active>a {
    color: var(--text-hover-color);
    background-color: #f6f6f6;
    transition: var(--tran-03);

}

.menu ul li .icon {
    font-size: var(--icon-fontsize);
}

.menu ul li .text {
    flex: 1;
}

.menu ul li .arrow {
    font-size: 16px;
    transition: var(--tran-03);
}

.menu ul li.active .arrow {
    transform: rotate(180deg);
    transition: var(--tran-03);
}

.menu .sub-menu {
    display: none;
    margin-left: 20px;
    padding-left: 20px;
    padding-top: 5px;
    border-left: 1px solid #f6f6f6;
}

.menu .sub-menu li a {
    padding: 10px 8px;
    font-size: 13px;
}

.sidebar-low {
    display: flex;
    flex-direction: column;


}

.sidebar-low .social-menu {
    display: flex;
    flex-direction: row;
    gap: 10px;
    position: relative;

}

.sidebar-low .menu {
    position: relative;
    left: -7px;
}

.sidebar-low .menu ul {
    height: 40px;
}

.sidebar-low .menu ul li a {
    padding: 8px;
}

.lower-text-sidebar {
    position: absolute;
    bottom: 23px;
    left: 27px;

}

.lower-text-sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.lower-text-sidebar ul li {
    color: var(--sidebar-font-color);
    font-size: 10px;
}

.lower-text-sidebar ul li a {
    color: var(--sidebar-font-color);
    font-size: 11px;
    font-weight: 400;

}


/* ----------------------------------------------------------------------------- */
/* FOOTER */
.footer {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: var(--secundary-body-font-size);
    font-weight: 500;
}

.upper-footer {
    position: relative;
    height: 190px;
    width: 100%;
    background-color: #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.upper-footer ul li a {
    text-decoration: none;
    color: var(--font-color);
}

.upper-footer ul li a:hover {
    text-decoration: none;
    color: #e86610;
}

.lower-footer {
    position: relative;
    height: 40px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #c2c2c2;
    font-size: var(--primary-body-font-size-mobile);
    color: #666666;
}

.footer-container-1 ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    font-size: 30px;
    gap: 20px;
}

.footer-container-2 ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    gap: 5px;
}

.footer-container-3 ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.lower-footer ul li a {
    text-decoration: none;
    color: #666666;
}

.lower-footer ul li a:hover {
    text-decoration: none;
    color: #e86610;
}

/* ----------------------------------------------------------------------------- */
/* HOMEPAGE */
.home-container {
    position: relative;
    margin-top: var(--header-height);
    background-image: url(https://github.com/WC2024-media/website_images/blob/main/achtergrond%20lang%202-100.jpg?raw=true);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;

    height: 750px;
    background-color: #eeeeee;
    display: flex;
    z-index: 0;
    flex-direction: column;
    justify-content: center;


}

.home-background {
    /* background-color: #e7ecef;
    background-color: #CCE5F5; */
    background-color: #fff;
    position: relative;
    top: 0px;
    left: 8%;
    height: 500px;
    width: 92%;
    border-top-left-radius: 600px;
    border-bottom-left-radius: 600px;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);

    margin: 0;
    padding: 0;
}
.home-left {
    width: 500px;
}


.home-wheel {
    position: relative;
    margin-left: -1px;
    height: 100%;
    border-radius: 600px;


}

.home-wheel img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
    width: auto;
}

.wheel {
    transform: translateX(0px) rotate(0turn);
    transition: var(--tran-08);
    background-color: white;
    border-radius: 50%;
}

.wheel:hover {
    transform: translateX(-8%) rotate(-0.05turn);
    transition: var(--tran-08);
}

.home-logo {
    -webkit-transform: translate(15%, -190%);
        -ms-transform: translate(15%, -190%);
            transform: translate(15%, -190%);
    height: 35%;

}

.home-logo img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
}

.home-right {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 3%;


}

.column-right {
    list-style: none;
    font-size: var(--primary-body-font-size);
    color: var(--font-color);
    font-weight: 500;
    align-items: flex-start;
}

.column-right ul {
    list-style: none;

}

.text1 {
    display: flex;
    flex-direction: row;
    gap: 6px;
    position: relative;
    margin-bottom: 3px;
}

.welcome {
    color: var(--text-hover-color);
    font-weight: bold;
    font-size: 70px;
    position: relative;
    bottom: -12px;

}

.text1_1 {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: flex-end;



}

.text2 {
    font-size: var(--secundary-body-font-size);
    display: flex;
    flex-direction: row;
    gap: 7px;
    margin-bottom: 20px;
    margin-top: 4px;
}

.wef {
    -webkit-text-decoration-line: none;
            text-decoration-line: none;
    color: #e86610;
    font-weight: 600;

}


.home-click-message {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 40px;

}

.buttons li a button {
    padding: 7px 70px;
    background-color: transparent;
    border: 4px solid #e86610;
    border-radius: 30px;
    font-size: var(--primary-body-font-size);
    color: var(--font-color);
    font-weight: 600;
    transition: var(--tran-03);
    text-decoration: none;
}

.buttons li a button:hover {
    background-color: #e86610;
    color: #fff;
    transition: var(--tran-03);
}

.text4 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: var(--primary-body-font-size);
    margin-top: 15%;
}

.text4 li a button {
    padding: 0px 40px;
    background-color: transparent;
    border: 4px solid #e86610;
    border-radius: 30px;
    font-size: var(--secundary-body-font-size);
    color: var(--font-color);
    font-weight: 600;
    transition: var(--tran-03);
    margin-top: -3px;

}

.text4 li a button:hover {
    background-color: #e86610;
    color: #fff;
    transition: var(--tran-03);
}

.home-background-mobile {
    display: none;
    visibility: hidden;
}


.home-container-2 {
    background-color: #fff;
    position: relative;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    color: #757575;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 50px 0px 0px 0px;
    align-items: center;
    justify-content: center;
}

.home-container-2 img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.home-container-2 h1 {
    font-weight: 500;
    font-size: 40px;
    font-weight: bold;
    color: #e86610;
}


.home-container-2 ul li {
    display: inline-block;
    font-size: 30px;
    color: #e86610;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
}

.home-container-2 li span {
    display: block;
    font-size: 70px;
}

.home-container-2 #home_countdown {
    font-size: 30px;
}

.countdown-button {
    align-items: center;
    justify-content: center;
}

.countdown-button button {
    text-decoration: none;
}

.home-container-3 {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #eeeeee;
    margin-top: -5px;
    display: flex;
    flex-direction: row;
    z-index: 0;
}

.hc-3-left {
    /* padding: 30px; */
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    /* margin-right: 50px; */


}

.hc-3-left ul {
    list-style: none;
    margin-left: 10%;

}

.hc-3-left ul li {
    margin-top: 15px;
    font-size: var(--secundary-body-font-size);
    font-weight: 500;
    color: #757575;
    text-align: justify;
}

.hc-3-right {
    position: absolute;
    height: 100%;
    width: 100%;
}

.hc-3-right img {
    height: 120%;
    position: absolute;
    bottom: 0px;
    right: 10%;
    z-index: -1;
}

#message-from-us {
    font-size: 40px;
    font-weight: bold;
    color: #e86610;
    text-align: left;

}

.home-container-4 {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #fff;
    margin-top: 0px;
    display: flex;

}

.hc-4-left {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8%;
    width: 800px;
}

.hc-4-right {
    padding: 30px;
    width: 100%;
    margin-left: 15%;
    display: flex;
    align-items: center;
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;

}

.home-video {
    width: 80%;
    height: 60%;
}

.home-video iframe {
    height: 100%;
    width: 100%;
}

.hc-4-right ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    width: 70%;
    text-align: center;
}

.hc-4-right ul li {
    font-size: 50px;
    font-weight: bold;
    color: #e86610;
    max-width: 500px;
    text-align: center;
}

.home-container-5 {
    height: 200px;
    background-color: #ddd;
}

.hc-3-right img {
    height: 30%;
    right: -300%;
}

/* ----------------------------------------------------------------------------- */
/* GENERAL PAGE DESIGN */

.page-header {
    position: relative;
    margin-top: var(--header-height);
    height: 200px;
    width: 100%;
    background-image: url(https://github.com/WC2024-media/website_images/blob/main/oranje%20achtergrond.jpg?raw=true);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: bold;
    color: #e86610;
}
.under-construction {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--primary-body-font-size);
    font-weight: 700;
    color: #e86610;
    margin-top: 100px;
}
.htext {
    font-size: var(--htext-font-size);
    font-weight: var(--htext-font-weight);
    color: #e86610;
}
.h2text {
    color: #e86610;
    font-size: var(--primary-font-size);
    font-weight: var(--h2text-font-weight);
}
/* .text {
    font-size: var(--primary-font-size);
    font-weight: var(--primary-font-weight);
} */
.link {
    color: #e86610;
}
.link:hover {
    color: #757575;
    transition: var(--tran-03);
}
.b_orange {
    font-weight: 600;
    color: #e86610;
}
.b {
    font-weight: 500;
}
.no_break {
    word-break: keep-all;
    white-space: nowrap;
}
.alinea_margin_20 {
    margin-top: 20px;
}



/* ----------------------------------------------------------------------------- */
/* CONTACT-PAGE */
.contact-container-1 {
    position: relative;
    background-color: #fff;
    width: 100%;
    height: 700px;
    min-height: 700px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 1;
    flex: 2;
    font-size: var(--primary-font-size);
}

.contact-container-1 h2 {
    font-size: var(--htext-font-size);
    font-weight: bold;
    color: #e86610;
    margin-bottom: 20px;

}

.cc-2-left {
    position: relative;
    margin-top: 50px;
    height: 400px;
    display: flex;
    flex-direction: column;
    padding: 60px;
    background-color: #f6f6f6;
    border-radius: 50px;

}

.cc-2-left ul {
    list-style: none;
}

.cc-2-right {
    height: 800px;
    display: flex;
    width: 600px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 60px 0px 60px;
}

.cc-2-right ul {
    list-style: none;
    width: 450px;
}

.contact-socials {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
    /* margin-top: 50px; */
    border-radius: 50px;

}

.contact-socials ul {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    font-size: 50px;
    gap: 50px;
    justify-content: center;

}

.contact-socials ul li {
    height: 50px;
    width: 50px;
}

.contact-socials ul li a {
    color: #757575;
    border-radius: 8px;
    display: block;
    height: 50px;
    width: 50px;
}

.contact-socials ul li>a:hover {
    color: #e86610;
    background-color: #fff;
    transition: var(--tran-03);
}

.mail-header {
    color: #e86610;
    font-weight: 600;
    margin-bottom: 1px;
}

.mail-adress {
    margin-bottom: 20px;
    color: #757575;
    font-weight: 500;

}

.mail-adress a {
    text-decoration: none;
    color: #757575;
}

.mail-adress a:hover {
    color: #e86610;
    transition: var(--tran-03);
}

.contact-image {
    position: absolute;
    bottom: 0px;
    display: flex;
}

.contact-image img {
    height: 350px;
    -o-object-fit: contain;
       object-fit: contain;
}
/* ----------------------------------------------------------------------------- */
/* SWE-PAGE */

.swe-container-1 {
    flex: 2;
    font-size: var(--primary-font-size);
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    justify-content: center;
    color: #757575;
    
}
.swec-1-left{
    padding: 0px 100px;
    display: flex;
    flex-direction: column;
    max-width: 800px;
}
.swec-1-left .htext {
    margin-top: 15px;
}
.swec-1-left ul{
    list-style: none;
    margin-bottom: 10px;
}
.swec-1-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
    max-width: 600px;
    padding-right: 100px;
}
.swec-1-right i {
    color: #e86610;
}
.swec-1-right img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.swe-container-2 {
    flex: 2;
    font-size: var(--primary-font-size);
    display: flex;
    flex-direction: row;
    margin: 50px 0px;
    justify-content: center;
    color: #757575;
    
    
}
.swec-2-left {
    display: flex;
    flex-direction: column;
    padding: 0px 100px;
    max-width: 800px;
}
.swec-2-left .htext {
    margin-top: 15px;
}

.swec-2-right {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    padding-right: 100px;
}
.swec-2-right .htext {
    margin-top: 15px;
}
/* ----------------------------------------------------------------------------- */
/* MG-PAGE */
.mg-container-1 {
    position: relative;
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 100px 0px 100px 0px;
}
.mg-video {
    max-width: 560px;
    width: 80vw;
    height: 315px;
}
.mg-video iframe {
    width: 100%;
    height: 100%;
}
/* ----------------------------------------------------------------------------- */
/* DISCLAIMER-PAGE */
.disc-container-1 {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #757575;
    font-weight: var(--primary-font-weight);
    font-size: var(--primary-font-size);
    margin-bottom: 100px;
}
.cookie-statement {
    display: flex;
    flex-direction: column;
    width: 80vw;
    max-width: 900px;
    margin-top: 100px;
}
.cookie-statement a {
    text-decoration: none;
    color: #e86610;
    
}
.cookie-statement a:hover {
    color: #757575;
    
}
.cookie-statement .h2text {
    margin-top: 15px;
}
.marg15{
    margin-top: 15px;
}

/* ----------------------------------------------------------------------------- */
/* VENUE-PAGE */
.venue-container-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    flex: 2;
    margin-bottom: 100px;
    color: #757575;
    font-weight: var(--primary-font-weight);
    font-size: var(--primary-font-size);
    
}
.vc-1-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-right: 100px;
    max-width: 500px;
    width: 80vw;
    overflow-wrap: break-word;
    
}
.vc-1-left .htext {
    margin-top: 15px;
}
.vc-1-left a {
    text-decoration: none;
    color: #e86610;
}
.vc-1-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vc-1-right img{
    max-width: 500px;
    width: 80vw;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.maps {
    width: 80vw;
    max-width: 500px;
    height: 400px;
    align-self: center;


}
.maps iframe {
    width: 100%;
    height: 100%;
}

/* ----------------------------------------------------------------------------- */
/* TICKET-PAGE */
.ticket-container-1 {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 2;
    margin-bottom: 100px;
    margin-top: 50px;
    color: #757575;
    font-weight: var(--primary-font-weight);
    font-size: var(--primary-font-size);
    gap: 100px;
    padding: 0px 50px;
}
.ticket-container-1 ul {
    list-style: none;
}
.tc-1-left {
    max-width: 500px;
}


@media only screen and (max-width: 320px) {

    /* FRAMEWORK!! */
    .container {
        width: 100%;
        min-height: 100vh;
    }

    .lang-menu #language {
        visibility: hidden;
        display: none;
    }

    .lang-menu {
        right: 0px;
    }

    .header-img {
        height: 55px;
        top: 10px;
    }

    .header-img-right {
        display: none;
    }

    .sub-header {
        left: 0px;
        flex-direction: column;
    }

    .home-container {
        display: flex;
        justify-content: start;

    }

    .home-background {
        position: relative;
        left: 50vw;
        transform: translateX(calc(-42vw));
        height: 250px;
        width: 100vw;
        border-radius: 600px 0px 0px 600px;
        background-color: #fff;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
        margin: 25px 0px 25px 0px;
    }
    .home-left{
        width: 250px;
    }

    .home-right {
        display: none;
    }

    .home-background-mobile {
        display: flex;
        justify-content: start;
        align-items: center;
        visibility: visible;
        background-color: #fff;
        position: relative;
        left: 50vw;
        transform: translateX(-53%);
        height: 360px;
        width: calc(100vw);
        max-width: 100%;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    }

    .home-right-mobile {
        position: relative;
        margin: 0;
        margin-left: 5%;
        padding: 0;
        display: flex;
        justify-content: center;
        /* align-items: ; */
    }

    .column-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        font-size: var(--secundary-body-font-size);
    }

    .text1 {
        flex-direction: column;
        align-items: start;
        margin-top: -20px;
        width: 300px;
        /* margin-bottom: 0px; */
    }

    .welcome {
        font-size: 50px;
    }

    .text4,
    .buttons,
    .text3 {
        flex-direction: row;
    }

    .buttons {
        gap: 10px;
        flex-direction: row;
        align-items: center;
    }

    .buttons li a button {
        padding: 1px 20px;
        border: 4px solid #e86610;
        font-size: var(--secundary-body-font-size);
    }

    .column-right span {
        width: 300px;
        text-align: start;
    }

    .text2 {
        font-size: var(--primary-body-font-size-mobile);
        display: flex;
        width: 300px;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 10px;
        margin-top: 4px;
        text-align: start;

    }

    .text4 {
        margin-top: 3%;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        font-size: var(--secundary-body-font-size);
    }

    .home-container-2 h1 {
        width: 300px;
    }

    #countdown {
        width: 300px;
    }

    .home-container-2 ul li {
        font-size: 20px;
    }

    .home-container-2 li span {
        font-size: 60px;
    }

    .home-container-3 {
        width: 100%;
    }

    .hc-3-right {
        display: none;
    }

    .home-container-3 {
        flex-direction: column;
    }

    .hc-3-left {
        width: 100%;
    }

    .hc-3-left ul {
        margin: 0px 0px;
    }

    .hc-3-left ul li {
        text-align: center;
        margin: 0px 0px 20px 0px;
        padding: 0px;
    }

    #message-from-us {
        text-align: center;
    }

    .home-container-4 {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;

    }

    .hc-4-left {
        width: 80%;
        height: 70%;
        padding: 0px;
        margin: 0px;
    }

    .hc-4-right ul li {
        font-size: 40px;
        text-align: center;

    }

    .hc-4-right {
        padding: 40px 0px 0px 0px;
        width: 100%;
        margin-left: 0px;
        justify-content: center;
        text-align: center;

    }

    .hc-4-right ul {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .contact-container-1 {
        flex-direction: column;
        height: 800px;
        min-height: 950px;
        align-items: center;
        gap: 0px;
        font-size: 16px;

    }

    .cc-2-left {
        text-align: center;
        padding: 40px 20px 0px 20px;
        height: 360px;
        margin: 50px 0px 0px 0px;
        width: 300px;
        align-items: center;

    }

    .cc-2-right {
        height: 50%;
        width: 50%;
        padding: 0px;
        text-align: center;
        margin: 50px 0px 0px 0px;

    }

    .cc-2-right ul {
        width: 310px;
    }
    .contact-image img{
        height: 190px;
    }
    .swe-container-1 {
        flex-direction: column;
        align-items: center;
    }
    .swec-1-right {
        align-items: center;
    }
    .swec-1-right,
    .swec-2-right,
    .swec-2-left,
    .swec-1-left {
        padding: 0px;
        width: 80vw;
        max-width: 600px;

    }
    .swec-1-right img {
        margin-top: 50px;
        width: 80vw;
    }
    .swe-container-2 {
        flex-direction: column;
        align-items: center;
    }
    .venue-container-1 {
        flex-direction: column;
    }
    .vc-1-right {
        margin-top: 50px;
    }
    .vc-1-left {
        margin: 0px;
    }
    .ticket-container-1 {
        flex-direction: column;
        gap: 0px;
    }

}

@media only screen and (min-width: 320px) {

    /* FRAMEWORK!! */
    .container {
        width: 100%;
        min-height: 100vh;
    }

    .lang-menu #language {
        visibility: hidden;
        display: none;
    }

    .lang-menu {
        right: 0px;
    }

    .header-img {
        height: 55px;
        width: 109.65px;
        top: 10px;
    }

    .header-img-right {
        display: none;
    }

    .sub-header {
        left: 0px;
        flex-direction: column;
    }

    .home-container {
        display: flex;
        justify-content: start;

    }

    .home-background {
        position: relative;
        left: 50vw;
        transform: translateX(calc(-42vw));
        height: 250px;
        width: 92vw;
        border-radius: 600px 0px 0px 600px;
        background-color: #fff;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
        margin: 25px 0px 25px 0px;
    }
    .home-left{
        width: 250px;
    }
    .home-right {
        display: none;
    }

    .home-background-mobile {
        display: flex;
        justify-content: start;
        align-items: center;
        visibility: visible;
        background-color: #fff;
        position: relative;
        left: 50vw;
        transform: translateX(-52%);
        height: 360px;
        width: calc(100vw);
        max-width: 100%;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    }

    .home-right-mobile {
        position: relative;
        margin: 0;
        margin-left: 6%;
        padding: 0;
        display: flex;
        justify-content: center;
        /* align-items: ; */
    }

    .column-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        font-size: var(--secundary-body-font-size);
    }

    .text1 {
        flex-direction: column;
        align-items: start;
        margin-top: -20px;
        width: 300px;
        /* margin-bottom: 0px; */
    }

    .welcome {
        font-size: 50px;
    }

    .text4,
    .buttons,
    .text3 {
        flex-direction: row;
    }

    .buttons {
        gap: 10px;
        flex-direction: row;
        align-items: center;
    }

    .buttons li a button {
        padding: 1px 20px;
        border: 4px solid #e86610;
        font-size: var(--secundary-body-font-size);
    }

    .column-right span {
        width: 300px;
        text-align: start;
    }

    .text2 {
        font-size: var(--primary-body-font-size-mobile);
        display: flex;
        width: 300px;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 10px;
        margin-top: 4px;
        text-align: start;

    }

    .text4 {
        margin-top: 7%;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        font-size: var(--secundary-body-font-size);
    }

    .home-container-2 h1 {
        width: 300px;
    }

    #countdown {
        width: 300px;
    }

    .home-container-2 ul li {
        font-size: 20px;
    }

    .home-container-2 li span {
        font-size: 60px;
    }

    .hc-3-right {
        display: none;
    }

    .home-container-3 {
        flex-direction: column;
    }

    .hc-3-left {
        width: 100%;
        padding: 15px;
    }

    .hc-3-left ul {
        margin: 0px 20px;
    }

    .hc-3-left ul li {
        text-align: center;
    }

    #message-from-us {
        text-align: center;
    }

    .home-container-4 {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;

    }

    .hc-4-left {
        width: 80%;
        height: 140%;
        padding: 0px;
        margin: 0px;
    }

    .hc-4-right ul li {
        font-size: 40px;
        text-align: center;
        width: 100%;
    }

    .hc-4-right {
        display: flex;
        padding: 40px 0px 0px 0px;
        margin: 0px;
        width: 100%;
        justify-content: center;
    }

    .contact-container-1 {
        flex-direction: column;
        height: 800px;
        min-height: 950px;
        align-items: center;
        gap: 0px;
        font-size: 16px;

    }

    .cc-2-left {
        text-align: center;
        padding: 40px 20px 30px 20px;
        height: 350px;
        margin: 50px 0px 0px 0px;
        width: 330px;
        align-items: center;

    }

    .cc-2-right {
        height: 50%;
        width: 50%;
        padding: 0px;
        text-align: center;
        margin: 50px 0px 0px 0px;

    }

    .cc-2-right ul {
        width: 330px;
    }
    .contact-image img{
        height: 190px;
    }
    .swe-container-1 {
        flex-direction: column;
        align-items: center;
    }
    .swec-1-right {
        align-items: center;
    }
    .swec-1-right,
    .swec-2-right,
    .swec-2-left,
    .swec-1-left {
        padding: 0px;
        padding-right: 0px;
        width: 80vw;
        max-width: 600px;

    }
    .swec-1-right img {
        margin-top: 50px;
        width: 80vw;
    }
    .swe-container-2 {
        flex-direction: column;
        align-items: center;
    }
    .venue-container-1 {
        flex-direction: column;
    }
    .vc-1-right {
        margin-top: 50px;
        gap: 50px;
    }
    .vc-1-left {
        margin: 0px;
        margin-top: 50px;
    }
    .maps {
        margin-top: 50px;
    }

}

@media only screen and (min-width: 350px) {

    /* FRAMEWORK!! */
    .container {
        width: 100%;
        min-height: 100vh;
    }

    .lang-menu #language {
        visibility: hidden;
        display: none;
    }

    .lang-menu {
        right: 0px;
    }

    .header-img {
        top: 10px;
    }

    .header-img-right {
        display: none;
    }

    .sub-header {
        left: 0px;
        flex-direction: column;
    }

    .home-container {
        display: flex;
        justify-content: start;

    }

    .home-background {
        position: relative;
        left: 50vw;
        transform: translateX(calc(-42vw));
        height: 250px;
        width: 92vw;
        border-radius: 600px 0px 0px 600px;
        background-color: #fff;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
        margin: 25px 0px 25px 0px;
    }

    .home-right {
        display: none;
    }

    .home-background-mobile {
        display: flex;
        justify-content: start;
        align-items: center;
        visibility: visible;
        background-color: #fff;
        position: relative;
        left: 50vw;
        transform: translateX(-55%);
        height: 360px;
        width: calc(100vw);
        max-width: 100%;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    }

    .home-right-mobile {
        position: relative;
        margin: 0;
        margin-left: 9%;
        padding: 0;
        display: flex;
        justify-content: center;
        /* align-items: ; */
    }

    .column-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        font-size: var(--secundary-body-font-size);
    }

    .text1 {
        flex-direction: column;
        align-items: start;
        margin-top: -20px;
        width: 300px;
        /* margin-bottom: 0px; */
    }

    .welcome {
        font-size: 50px;
    }

    .text4,
    .buttons,
    .text3 {
        flex-direction: row;
    }

    .buttons {
        gap: 10px;
        flex-direction: row;
        align-items: center;
    }

    .buttons li a button {
        padding: 1px 20px;
        border: 4px solid #e86610;
        font-size: var(--secundary-body-font-size);
    }

    .column-right span {
        width: 300px;
        text-align: start;
    }

    .text2 {
        font-size: var(--primary-body-font-size-mobile);
        display: flex;
        width: 300px;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 10px;
        margin-top: 4px;
        text-align: start;

    }

    .text4 {
        margin-top: 7%;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        font-size: var(--secundary-body-font-size);
    }

    .home-container-2 h1 {
        width: 300px;
    }

    #countdown {
        width: 300px;
    }

    .home-container-2 ul li {
        font-size: 20px;
    }

    .home-container-2 li span {
        font-size: 60px;
    }

    .hc-3-right {
        display: none;
    }

    .home-container-3 {
        flex-direction: column;
    }

    .hc-3-left {
        width: 100%;
        padding: 15px;
    }

    .hc-3-left ul {
        margin: 0px 20px;
    }

    .hc-3-left ul li {
        text-align: center;
    }

    #message-from-us {
        text-align: center;
    }

    .home-container-4 {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;

    }

    .hc-4-left {
        width: 80%;
        height: 140%;
        padding: 0px;
        margin: 0px;
    }

    .hc-4-right ul li {
        font-size: 40px;
        text-align: center;
        width: 100%;
    }

    .hc-4-right {
        display: flex;
        padding: 40px 0px 0px 0px;
        margin: 0px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hc-4-right ul {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .contact-container-1 {
        flex-direction: column;
        height: 800px;
        align-items: center;
        gap: 0px;


    }

    .cc-2-left {
        text-align: center;
        padding: 60px 60px 0px 60px;
        height: 400px;
        margin: 50px 0px 0px 0px;

    }

    .cc-2-right {
        height: 50%;
        width: 50%;
        padding: 0px;
        text-align: center;
        margin: 50px 0px 0px 0px;

    }

}

@media only screen and (min-width: 380px) {

    /* FRAMEWORK!! */
    .container {
        width: 100%;
        min-height: 100vh;
    }

    .header-img-right {
        display: flex;
    }

    .lang-menu {
        right: 55px;
    }

    .lang-menu #language {
        visibility: visible;
        display: flex;
    }

    .home-container {
        display: flex;
        justify-content: start;

    }

    .home-background {
        position: relative;
        left: 50vw;
        transform: translateX(calc(-35vw));
        height: 250px;
        width: 85vw;
        border-radius: 600px 0px 0px 600px;
        background-color: #fff;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
        margin: 30px 0px 30px 0px;
    }

    .home-right {
        display: none;
    }

    .home-background-mobile {
        display: flex;
        justify-content: start;
        align-items: center;
        visibility: visible;
        background-color: #fff;
        position: relative;
        left: 50vw;
        transform: translateX(-55%);
        height: 360px;
        width: calc(100vw);
        max-width: 100%;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    }

    .home-right-mobile {
        position: relative;
        margin: 0;
        padding: 0;
        margin-left: 15vw;
        transform: translate(-5%);
        display: flex;
        justify-content: center;
        /* align-items: ; */
    }

    .column-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        font-size: var(--secundary-body-font-size);
    }

    .text1 {
        flex-direction: column;
        align-items: start;
        margin-top: -20px;
        width: 300px;
        /* margin-bottom: 0px; */
    }

    .welcome {
        font-size: 50px;
    }

    .column-right span {
        width: 300px;
        text-align: start;
    }

    .text4,
    .buttons,
    .text3 {
        flex-direction: row;
    }

    .buttons {
        gap: 4%;
    }

    .buttons li a button {
        padding: 1px 30px;
        border: 4px solid #e86610;
        font-size: var(--secundary-body-font-size);
    }

    .text2 {
        font-size: var(--primary-body-font-size-mobile);
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 10px;
        margin-top: 4px;
        align-items: start;
    }

    .text4 {
        margin-top: 7%;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        font-size: var(--secundary-body-font-size);
    }

    .text4 li a button {
        padding: 1px 20px;
        font-size: var(--secundary-body-font-size);
    }

    .home-container-2 h1 {
        width: 300px;
    }

    #countdown {
        width: 300px;
    }

    .home-container-2 ul li {
        font-size: 20px;
    }

    .home-container-2 li span {
        font-size: 60px;
    }

    .home-container-3 {
        padding-bottom: 20px;
    }

    .hc-3-right {
        display: none;
    }

    .home-container-3 {
        flex-direction: column;
    }

    /* .hc-3-right img {
        height: 85%;
        right: -55%;
    } */
    .hc-3-left {
        width: 100%;
        padding: 20px 30px;
    }

    .hc-3-left ul {
        margin: 0px 20px;
    }

    .hc-3-left ul li {
        text-align: center;
    }

    .home-container-4 {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;

    }

    .hc-4-left {
        width: 80%;
        height: 140%;
        padding: 0px;
        margin: 0px;
    }

    .hc-4-right ul li {
        font-size: 40px;
        text-align: center;
        justify-content: center;
    }

    .hc-4-right {
        padding: 40px 0px 0px 0px;
    }
    .hc-4-right ul li span {
        text-align: center;
    }

    .contact-container-1 {
        flex-direction: column;
        height: 1000px;
        align-items: center;
        min-height: 980px;
        gap: 0px;

    }

    .cc-2-left {
        text-align: center;
        padding: 60px 40px 0px 40px;
        height: 400px;
        margin: 50px 0px 0px 0px;
        align-items: center;
        width: 370px;
    }

    .cc-2-right {
        height: 50%;
        width: 50%;
        padding: 0px;
        text-align: center;
        margin: 50px 0px 0px 0px;
    }
    .cc-2-right ul {
        width: 370px;
    }


    .contact-socials {
        margin: 0px;
    }

    .contact-image img {
        height: 230px;
    }

}

@media only screen and (min-width: 600px) {

    /* FRAMEWORK!! */
    .container {
        width: 100%;
        height: 100vh;
    }

    .header-img {
        left: 100px;
    }

    .lang-menu {
        right: 50px;
    }

    .home-container {
        display: flex;
        justify-content: start;

    }

    .home-background {
        position: relative;
        left: 50vw;
        transform: translateX(calc(-20vw));
        height: 250px;
        width: 70vw;
        border-radius: 600px 0px 0px 600px;
        background-color: #fff;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
        margin: 30px 0px 30px 0px;
    }

    .home-right {
        display: none;
    }

    .home-background-mobile {
        display: flex;
        justify-content: start;
        align-items: center;
        visibility: visible;
        background-color: #fff;
        position: relative;
        left: 50vw;
        transform: translateX(-52%);
        height: 300px;
        width: calc(100vw - 2%);
        max-width: 100%;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    }

    .home-right-mobile {
        position: relative;
        margin: 0;
        padding: 0;
        margin-left: 15vw;
        transform: translate(-10%);
        display: flex;
        justify-content: center;
        /* align-items: ; */
    }

    .column-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        font-size: var(--secundary-body-font-size);
    }

    .text1 {
        flex-direction: row;
        align-items: normal;
        margin-top: -20px;
        width: auto;
        /* margin-bottom: 0px; */
    }

    .welcome {
        font-size: 50px;
        bottom: -7px;
    }

    .column-right span {
        width: auto;
        text-align: center;
    }

    .text4,
    .buttons,
    .text3 {
        flex-direction: row;
    }

    .buttons {
        gap: 40px;
    }

    .buttons li a button {
        padding: 1px 40px;
        border: 4px solid #e86610;
        font-size: var(--secundary-body-font-size);
    }

    .text2 {
        font-size: var(--primary-body-font-size-mobile);
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 10px;
        margin-top: 4px;
        align-items: start;
    }

    .text4 {
        margin-top: 5%;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        font-size: var(--secundary-body-font-size);
    }

    .home-container-2 h1 {
        width: auto;
    }

    #countdown {
        width: 450px;
    }

    .home-container-2 ul li {
        font-size: 30px;
    }

    .home-container-2 li span {
        font-size: 70px;
    }

    .home-container-3 {
        padding-bottom: 0px;
    }

    .hc-3-right {
        display: none;
    }

    .home-container-3 {
        flex-direction: column;
    }

    .hc-3-left {
        width: 100%;
        padding: 40px 60px;
    }

    .hc-3-left ul {
        margin: 0px 40px;
    }

    .hc-3-left ul li {
        text-align: center;
    }

    .home-container-4 {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;

    }

    .hc-4-left {
        width: 80%;
        height: 140%;
        padding: 0px;
        margin: 0px;
    }

    .hc-4-right ul li {
        font-size: 40px;
        text-align: center;
    }

    .hc-4-right {
        padding: 40px 0px 0px 0px;
    }

    .contact-container-1 {
        flex-direction: column;
        height: 1000px;
        align-items: center;
        gap: 0px;
        min-height: 1050px;
        font-size: var(--primary-font-size);

    }

    .cc-2-left {
        text-align: center;
        padding: 60px 60px 0px 60px;
        height: 400px;
        margin: 50px 0px 0px 0px;
        width: 450px;

    }

    .cc-2-right {
        height: 50%;
        width: 50%;
        padding: 0px;
        text-align: center;
        margin: 50px 0px 0px 0px;

    }

    .cc-2-right ul {
        width: 450px;
    }

    .contact-socials {
        margin: 0px;
    }

    .contact-image img {
        height: 290px;
    }

}

@media only screen and (min-width: 768px) {

    /* FRAMEWORK!! */
    .container {
        width: 100%;
    }

    .home-container {
        display: flex;
        justify-content: start;

    }

    .home-background {
        position: relative;
        left: 50vw;
        transform: translateX(calc(-15vw));
        height: 250px;
        width: 65vw;
        border-radius: 600px 0px 0px 600px;
        background-color: #fff;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
        margin: 30px 0px 30px 0px;
    }
    
    .home-right {
        display: none;
    }

    .home-background-mobile {
        display: flex;
        justify-content: start;
        align-items: center;
        visibility: visible;
        background-color: #fff;
        position: relative;
        left: 50vw;
        transform: translateX(-54%);
        height: 300px;
        width: calc(100vw - 4%);
        max-width: 100%;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    }

    .home-right-mobile {
        position: relative;
        margin: 0;
        margin-left: 15vw;
        transform: translate(-10%);
        padding: 0;
        display: flex;
        justify-content: center;
        /* align-items: ; */
    }

    .column-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        font-size: var(--secundary-body-font-size);
    }

    .text1 {
        flex-direction: row;
        align-items: normal;
        margin-top: -20px;
        /* margin-bottom: 0px; */
    }

    .welcome {
        font-size: 50px;
        bottom: -7px;

    }

    .column-right span {
        width: auto;
        text-align: normal;
    }


    .buttons {
        gap: 40px;
    }

    .buttons li a button {
        padding: 1px 40px;
        border: 4px solid #e86610;
        font-size: var(--secundary-body-font-size);
    }

    .text2 {
        font-size: var(--primary-body-font-size-mobile);
        display: flex;
        flex-direction: row;
        gap: 7px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-bottom: 10px;
        margin-top: 4px;
    }

    .text4 {
        margin-top: 10%;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        font-size: var(--secundary-body-font-size);
    }

    #countdown {
        width: auto;
    }

    .home-container-3 {
        flex-direction: column;
    }

    .hc-3-left {
        width: 100%;
    }

    .hc-3-left ul {
        margin: 0px 40px;
    }

    .hc-3-left ul li {
        text-align: center;
    }

    .hc-3-right {
        display: flex;
    }

    #message-from-us {
        text-align: center;
    }

    .home-container-4 {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;

    }

    .hc-4-left {
        width: 80%;
        height: 140%;
        padding: 0px;
        margin: 0px;
    }

    .hc-4-right ul {
        font-size: 40px;
        text-align: center;
        justify-content: center;

    }

    .hc-4-right {
        padding: 40px 0px 0px 0px;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .contact-container-1 {
        flex-direction: column;
        height: 1000px;
        align-items: center;
        gap: 0px;

    }

    .cc-2-left {
        text-align: center;
        padding: 60px 60px 0px 60px;
        height: 400px;
        margin: 50px 0px 0px 0px;
    }

    .cc-2-right {
        height: 50%;
        width: 50%;
        padding: 0px 60px 0px 60px;
        margin: 50px 0px 0px 0px;
    }

    .contact-socials {
        margin: 0px;
    }

    .contact-image img {
        height: 290px;
    }
    
}

@media only screen and (min-width: 1100px) {

    /* FRAMEWORK!! */
    .container {
        width: 100%;
    }

    .home-container {
        justify-content: center;
    }

    .home-background {
        position: relative;
        height: 380px;
        left: 40px;
        width: calc(100% - 40px);
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        transform: none;
    }
    .home-left{
        width: 380px;
    }

    .home-right {
        display: flex;
    }

    .column-right {
        font-size: var(--primary-body-font-size);
        align-items: flex-start;
    }

    .text1 {
        flex-direction: row;
        margin-bottom: 0px;
        align-items: normal;
    }

    .welcome {
        font-size: 70px;
        bottom: -10px;
    }

    .text2 {
        font-size: var(--secundary-body-font-size);
        display: flex;
        flex-direction: row;
        gap: 7px;
        margin-bottom: 20px;
        margin-top: 4px;
    }

    .buttons li a button {
        padding: 7px 70px;
        border: 4px solid #e86610;
        font-size: var(--primary-body-font-size);
    }

    .text4 {
        font-size: var(--primary-body-font-size);
        margin-top: 5%;
        flex-direction: row;
        gap: 10px;
    }

    .text4 li a button {
        padding: 2px 30px;
        border: 4px solid #e86610;
        font-size: var(--secundary-body-font-size);
        margin-bottom: 3px;
    }

    .home-background-mobile {
        display: none;
        visibility: hidden;
    }

    .home-container-3 {
        flex-direction: row;
    }

    .hc-3-left {
        width: 70%;
    }

    .hc-3-right {
        height: 100%;
        right: 5%;
    }

    .hc-3-right img {
        height: 110%;
        right: -5%;
    }

    .hc-3-left ul li {
        text-align: left;
    }

    #message-from-us {
        text-align: left;
    }

    .hc-4-right ul li {
        font-size: 40px;
    }

    .home-container-4 {
        display: flex;
        flex-direction: row;
        align-items: center;

    }

    .hc-4-left {
        width: 80%;
        height: 80%;
        padding: 0px;
        margin-left: 10%;
    }

    .hc-4-right ul li {
        font-size: 40px;
        text-align: center;
    }

    .hc-4-right {
        padding: 40px 0px 0px 0px;
    }

    .contact-container-1 {
        flex-direction: row;
        height: 650px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        min-height: 700px;
    }

    .cc-2-left {
        text-align: left;
        padding: 60px 60px 0px 60px;
        margin-top: 50px;
    }

    .cc-2-right {
        height: 100%;
        width: auto;
        margin-top: 50px;
    }

    .contact-image img {
        height: 350px;
    }
    /* .swe-container-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .swec-1-left {
        max-width: 1500px;
    } */
    
    
}

@media only screen and (min-width: 1370px) {

    /* FRAMEWORK!! */
    .container {
        width: 100%;
    }

    #background-image {
        height: 700px;
    }

    .home-background {
        height: 500px;
        left: 90px;
        width: calc(100% - 90px);
    }
    .home-left{
        width: 500px;
    }

    .column-right {
        font-size: var(--primary-body-font-size);
    }

    .welcome {
        font-size: 70px;
        bottom: -10px;
    }

    .text2 {
        font-size: var(--secundary-body-font-size);
    }

    .buttons li a button {
        padding: 7px 70px;
        border: 4px solid #e86610;
        font-size: var(--primary-body-font-size);
    }

    .text4 {
        font-size: var(--primary-body-font-size);
        margin-top: 15%;
    }

    .text4 li a button {
        padding: 2px 30px;
        border: 4px solid #e86610;
        font-size: var(--secundary-body-font-size);
        margin-bottom: 3px;
    }

    .hc-3-right {
        height: 100%;
        right: 10%;
    }

    .hc-4-left {
        width: 80%;
        height: 100%;
        padding: 0px;
        margin-left: 10%;
    }

    .hc-4-right {
        padding: 0px;
    }
    .swe-container-1 {
        flex-direction: row;
        /* align-items: center; */
    }
    .swe-container-2 {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .swec-2-left,
    .swec-1-left {
        padding: 0px 100px;
        width: auto;
        max-width: 800px;
    }
    .swec-1-right,
    .swec-2-right {
        padding-right: 100px;
    }
    .venue-container-1 {
        flex-direction: row;
        justify-content: center;
    }
    .vc-1-right {
        margin-left: 100px;
        gap: 10px;
    }
    .maps {
        margin-top: 190px;
        height: 333px;
    }
    .ticket-container-1 {
        flex-direction: row;
        text-align: start;
        gap: 100px;
    }
}

@media only screen and (min-width: 1700px) {

    /* FRAMEWORK!! */
    .container {
        width: 100%;
        min-height: 100vh;
    }

    .home-container {
        justify-content: center;
        height: 900px;
    }

    .home-background {
        height: 600px;
        left: 320px;
        width: calc(100% - 120px);
    }
    .home-left {
        width: 600px;
    }
    .contact-container-1 {
        flex-direction: row;
        height: 650px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 10%;

    }


}