@font-face {
    font-family: "Menlo";
    src: url("./Fonts/Menlo-Regular.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "XanderSalikin";
    src: url("./Fonts/Salikin.ttf") format('truetype'), url('./Fonts/Salikin.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

.blur-background {
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.sliding-nav-container h4 {
    font-family: 'XanderSalikin';
    color: black;
    text-shadow: 2px 2px #adadad;
    font-size: 47px;
    letter-spacing: 10px;
    text-align: center;
    padding-top: 10px;
    margin: 0;
    -webkit-transition: .35s;
    transition: .35s;
}

.sliding-nav-container a {
    text-decoration:none;
}

.sliding-nav-hover {
    padding-top: 21px;
}

.sliding-nav-hover:after {
    width: 50%;
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 3px;
    background: #000;
    -webkit-transition: .35s;
    transition: .35s;
}

.sliding-nav-hover:hover h4 {
    text-shadow: 2px 2px #D05A5E;
}

.sliding-nav-hover:hover:after {
    background: #D05A5E;
}

body {
    font-family: 'Menlo', sans-serif;
    font-weight: normal;
    line-height: 1.7;
    letter-spacing: -1px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

a {
    color: #D05A5E;
}

main {
    transition: .35s;
    background-color: white;
    color: black;
}

.main-nav {
    width: 100%;
    height: 110px;
}

.navbar {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    transition: .35s;
    background-color: white;
    color: black;
    width: 100%;
    height: 110px;
}

.sliding-nav {
    width: 100%;
    background-color: #888a8d8c;
    height: 100%;
    position: absolute;
    z-index: 6;
    left: -100%;
}

.show-sliding-nav {
    left: 0;
}

.sliding-nav-container {
    margin: 20px 30px 0 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sliding-nav-container .cross {
    color: white;
    font-size: 51px;
    float: left;
    cursor: pointer;
    position: relative;
    padding: 25px;
}

.stop-scroll {
    height: 100%;
    overflow: hidden;
    position: relative;
}

@keyframes changeColor {
    0% {
        background-color: #D05A5E;
    }
    50% {
        background-color: #9957A3;
    }
    100% {
        background-color: #D05A5E;
    }
}

.small-main-nav {
    height: 55px;
}

.small-header {
    height: 50px;
}

.small-header:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0px;
    right: 0px;
    height: 4px;
    background: #D05A5E;
    animation: changeColor ease;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-fill-mode: both;
}

.header-logo {
    height: 100px;
    content: url("./Images/Xander-Full.svg");
}

.small-header .header-logo {
    content: url("./Images/Xander-X.svg");
    height: 50px;
}

#hamburger-selector {
    margin-left: 10%;
    cursor: pointer;
}

.hamburger-logo {
    height: 25px;
    content: url("./Images/Icons/Hamburger.svg");
}

.image-text-banner {
    height: 600px;
    background-position: center center;
    background-size: cover;
    font-family: 'XanderSalikin';
}

.backgroud-color-banner {
    background-position: center center;
    background-size: cover;
    /* font-family: 'XanderSalikin'; */
    font-family: 'Menlo', sans-serif;
    background: #D05A5E;
    animation: changeColor ease;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-fill-mode: both;
    text-align: center;
}

.color-opaque-banner {
    width: 100%;
    background-color: #a2a2974a;
}

.color-banner-text {
    width: 100%;
    padding: 20px 0;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.color-banner-text i {
    font-size: 70px;
    margin-bottom: 20px;
}

.color-banner-text h4 {
    font-size: 30px;
    letter-spacing: 10px;
    text-align: center;
    margin: 0 10% 0 10%;
}

.color-banner-text h5 {
    font-size: 15px;
    letter-spacing: 2px;
}

.image-button-banner {
    height: 542px;
    background-position: center 0;
    background-size: cover;
}

.image-button-banner .content{
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.image-button-banner h3 {
    font-weight: bold;
    font-size: 35px;
    line-height: 40px;
}

.opaque-banner {
    width: 100%;
    height: 100%;
    background-color: #a2a2974a;
}

.quote-left {
    height: 60px;
    padding-bottom: 15px;
    content: url(./Images/Icons/quote-left.svg);
}

.quote-left-black {
    height: 40px;
    padding-bottom: 10px;
    content: url(./Images/Icons/quote-left-black.svg);
}

.quote-left-shaddow {
    height: 60px;
    padding-bottom: 15px;
    content: url(./Images/Icons/quote-left-shaddow.svg);
}

.down-arrow {
    height: 8px;
    content: url(./Images/Icons/arrow.svg);
}

.instagram-logo {
    height: 20px;
    content: url(./Images/Icons/instagram.svg);
}

.linkedin-logo {
    height: 20px;
    content: url(./Images/Icons/linked-in.svg);
}

.cross-logo {
    height: 35px;
    content: url(./Images/Icons/cross.svg);
}

.copyright-logo {
    height: 12px;
    content: url(./Images/Icons/copyright.svg);
}

.banner-text {
    width: 100%;
    height: 100%;
    color: white;
    text-shadow: 2px 2px #D05A5E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-text i {
    font-size: 70px;
    margin-bottom: 20px;
}

.banner-text h4 {
    font-size: 47px;
    letter-spacing: 10px;
    text-align: center;
    margin: 0 10% 0 10%;
}

.banner-text h5 {
    font-size: 20px;
    letter-spacing: 2px;
}

.image-text-box {
    height: 392px;
    width: 300px;
    background-color: white;
    float: right;
    margin: 75px 50px 75px 50px;
}

.image-text-box:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 10px;
    background: #D05A5E;
    animation: changeColor ease;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-fill-mode: both;
}

.line {
    background-color: black;
    color: black;
    align: center;
    height: 2px;
    margin: 15px auto;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.banner-signature {
    width: 100%;
}

.banner-signature h5 {
    float: right;
    margin: 0 10% 0 0;
}

.switch {
    margin-right:8%;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #a650c1;
}

input:focus + .slider {
    box-shadow: 0 0 1px #a650c1;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.container {
    display: block;
    padding: 50px 0 50px 0;
}

.main-content {
    margin: 0 10%;
}

.main-content-split {
    content: "";
    position: absolute;
    width: 80%;
    height: 3px;
    background: #898a8d;
}

.coloured-button {
    width: 200px;
    height: 50px;
    background: #D05A5E;
    animation: changeColor ease;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-fill-mode: both;
    text-align: center;
    cursor: pointer;
}

.coloured-button span {
    display: inline-block;
    padding: 8px 0;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.black-button {
    width: 200px;
    height: 50px;
    background-color: #000;
    text-align: center;
    cursor: pointer;
}

.black-button span {
    display: inline-block;
    padding: 8px 0;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.fifty-fifty {
    width: 100%;
    display: flex;
}

/* .fifty-fifty div {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
} */

.fifty-fifty p {
    margin: 2px;
    text-align: center;
}

.fifty-fifty h3 {
    font-weight: bold;
    text-decoration: underline;
    font-size: 33px;
    text-align: center;
}

/* .spotify-banner {
    zoom: 200%;
}

.spotify-banner iframe{
    transition: .35s;
    position: absolute;
    border: 0;
} */

.main-footer {
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.main-footer .container {
    font-size: 14px;
    height: 150px;
    letter-spacing: -1.5px;
    display: flex;
    padding: unset;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    max-width: 700px;
    padding-top: 20px;
}

.main-footer li {
    display: inline-block;
    margin: 0 10px;
}

.main-footer li a {
    text-decoration: none;
}

.footer-icons {
    display: flex;
}

.footer-icons li {
    display: flex;
    font-size: 30px;
    background: #a650c1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    align-items: center;
    justify-content: center;
}

.footer-icons li:nth-child(2n+0) {
    background: #D05A5E;
}

.footer-icons li:hover {
    border-radius: 5px;
    -webkit-transform: rotate(45deg) scale(0.8);
    transform: rotate(45deg) scale(0.8);
}

.social-btn {
    padding: 10px;
}

.footer-icons a {
    font-size: 20px;
    color: white
}

.footer-nav {
    display: inline-block;
    float: right;
}

.footer-text {
    display: inline-block;
    color: #898a8d;
    float: left;
}

.footer-left {
    flex: 1;
    display: inline-block;
}

.footer-right {
    display: inline-block;
}

.hide {
    display: none!important;
}

/* DARKMODE */

.dark-mode {
    background-color: #3d3d39;
    color: white!important;
}

.dark-open-button {
    border: 3px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.5);
}

.dark-mode-light{
    background-color: #656464;
    color: white;
}

.header-dark .header-logo {
    content: url(./Images/Xander-Full-white.svg);
}

.header-dark.small-header .header-logo {
    content: url(./Images/Xander-X-white.svg);
}

.icon-dark {
    filter: invert(1);
}

.iframe-dark {
    filter: invert(0.8);
}

.cls_002-dark {
    color: white!important;
}

.cls_003-dark {
    color: white!important;
}

.cls_007-dark {
    color: white!important;
}

.cls_008-dark {
    color: white!important;
}

.cls_009-dark {
    color: white!important;
}

.ucomms-built {
    text-decoration: none;
    position: absolute;
    color: black;
    background-color: black;
    width: 100%;
}

.ucomms-built span {
    filter: invert(0.15);
    position: relative;
    margin: 0 20px;
    bottom: 35px;
    font-family: 'BebasNeue-Regular';
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.ucomms-built img {
    filter: invert(0.15);
    height: 20px;
    position: absolute;
    left: 0;
    margin: -15px 20px 0 20px;
}

#cookie-bar-prompt-content {
    display: none!important;
}

#cookie-bar-prompt {
    background: #000;
    background: rgba(0,0,0,.4);
    height: 100%;
    left: 0;
    line-height: 1.5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9998;
}

#cookie-bar {
    background: #45484d;
    background: -moz-linear-gradient(top,rgba(30,30,30,.95) 0,rgba(0,0,0,.95) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(30,30,30,.95)),color-stop(100%,rgba(0,0,0,.95)));
    background: -webkit-linear-gradient(top,rgba(30,30,30,.95) 0,rgba(0,0,0,.95) 100%);
    background: -o-linear-gradient(top,rgba(30,30,30,.95) 0,rgba(0,0,0,.95) 100%);
    background: -ms-linear-gradient(top,rgba(30,30,30,.95) 0,rgba(0,0,0,.95) 100%);
    background: rgba(0,0,0,.95);
    box-shadow: 2px 2px 5px rgba(0,0,0,.6);
    left: 0;
    line-height: 1.5;
    margin: 0;
    padding: 10px 3px;
    position: fixed;
    width: 90%;
    z-index: 9999;
    bottom: 10px!important;
    margin-left: 5%;
    border-radius: 10px;
}

#cookie-bar p{
    font-family: 'Menlo', sans-serif;
    font-size: 20px;
    margin: 4px 0 0 20px;
    color: white;
}

#cookie-bar-button {
    border-bottom: 1px solid #222;
    background-color: #D05A5E;
    border-radius: 5px;
    color: #000!important;
    cursor: pointer;
    display: inline-block;
    float: right;
    font-weight: 700;
    line-height: 1;
    margin-right: 20px;
    margin-top: 2px;
    padding: 5px 10px 6px;
    position: relative;
    text-decoration: none;
}

#cookie-bar a{
    font-family: 'Menlo', sans-serif;
    line-height: 1.7;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

@media only screen and (max-width: 1136px) {
    #language-dropdown {
        right: 0;
    }
}
@media only screen and (max-width: 700px) {
    .main-footer .container {
        flex-direction: column-reverse;
    }
    .footer-icons {
        margin-top: 25px;
        padding: 0;
    }
    .footer-icons li {
        margin: 0 10px 0 10px;
    }
    .footer-icons a {
        font-size: 35px;
    }
    .footer-left {
        flex: 1;
    }
    .footer-right {
        flex: 1;
    }
    .fifty-fifty {
        flex-direction: column;
    }
    .fifty-fifty div {
        width: 100%;
    }
    .spotify-banner {
        height: 50px;
    }
    .sliding-nav-hover:after {
        width: 80%;
    }
    .switch {
        margin-right: 2%;
    }
}

@media only screen and (max-width: 550px) {
    .image-text-box {
        width: 80%;
        margin: 75px 10% 75px 10%;
    }
    .image-text-box:before {
        width: 80%;
    }
    .spotify-banner iframe {
        width: 150px;
    }
}

@media only screen and (max-width: 450px) {
    .footer-nav {
        padding: 0;
    }
    .footer-text {
        float: none;
        display: block;
    }
    .banner-text i {
        font-size: 40px;
    }
    .banner-text h4 {
        font-size: 30px;
    }
    .banner-signature {
        font-size: 15px;
    }
}
