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

::selection {
    background: #ECE920;
    color: #000;
    text-shadow: none;
}

html {
    scroll-behavior: smooth;
    background: None;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

body::before {
    position: fixed;
    content: "";
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url(../misc/bg.png);
    background-size: cover;
    background-position: center;
    z-index: -10;
}

body {
    color: aliceblue;
}

a {
    color: #ECE920;
    text-decoration: none;
}

strong {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    color: #ECE920;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
}

h3, h4 {
    margin-bottom: 15px;
}

/*--------------------------------------------------*\
  FORM ELEMENTS
\*--------------------------------------------------*/

input, textarea{
    outline: none;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

input[type=text], textarea {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: #000;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

/*--------------------------------------------------*\
  BUTTONS
\*--------------------------------------------------*/

.button {
    display: block;
    font-family: 'Syne', sans-serif;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 1) !important;
    background-color: #000;
    text-align: center;
    color: #fff;
}

.button:hover {
    background: linear-gradient(90deg, #ECE920, #1BE4E5);
    border: none !important;
    color: #000;
    border: none;
    padding: 12px;
    cursor: pointer;
}

/*--------------------------------------------------*\
  ANIMATIONS
\*--------------------------------------------------*/

@keyframes gradient { 
    0%   { background-position: 0 0; }
    100% { background-position: -200% 0; }
}

/*--------------------------------------------------*\
  MOBILE - 
\*--------------------------------------------------*/

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

    /*----------------------------------------*\
        MOBILE - GLOBAL
    \*----------------------------------------*/

    .wrap-content {
        width: calc(100% - 40px);
        max-width: 1000px;
        margin-inline: 20px;
    }

    .glass-box {
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        overflow: hidden;
    }

    .glass-box:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        background-image: url(../misc/noise.png);
        background-repeat: repeat;
        top: 0;
        left: 0;
        opacity: 0.2;
        pointer-events: none;
    }

    /*----------------------------------------*\
        MOBILE - HEADER
    \*----------------------------------------*/

    #wi-header {
        position: fixed;
        top: 10;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 50;   
    }
    
    #wi-header #wi-logo {
        height: 40px;
    }

    #wi-header .nav-wrapper {
        display: flex;
        height: 90px;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .wi-border {
        width: 100%;
        height: 10px;
        background: linear-gradient(90deg, #ECE920, #1BE4E5, #ECE920);
        background-size: 200% auto;
        background-position: 0 100%;
        animation: gradient 2s infinite;
        animation-fill-mode: forwards;
        animation-timing-function: linear;
    }

    .wi-border {
        width: 100%;
        height: 10px;
        background: linear-gradient(90deg, #ECE920, #1BE4E5, #ECE920);
        background-size: 200% auto;
        background-position: 0 100%;
        animation: gradient 2s infinite;
        animation-fill-mode: forwards;
        animation-timing-function: linear;
    }

    #wi-space {
        height: 100px;
    }

    /*----------------------------------------*\
        MOBILE - FOOTER
    \*----------------------------------------*/

    #footer .footer-content {
        padding-block: 20px;
    }

    /*----------------------------------------*\
      MOBILE - HOME
    \*----------------------------------------*/

    #wi-content {
        padding-block: 20px;
    }

    #wi-content .title-box {
        height: 100vh;
        background-size:cover;
        background-position: center;
        padding-top: 140px;
        padding-bottom: 30px;
    }

    #wi-content .title-box .title-content {
        display: flex;
        height: 100%;
        flex-direction: column;
        font-size: 1.5em;
        align-items: center;
        justify-content: space-around;
    }

    #wi-content .title-box .title-content .arrow{
        font-size: 2em;
    }

    #wi-content .sections  {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #wi-content .box .box-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    #wi-content .box img {
        display: block;
        width: 100%;
    }

    #wi-content #contact-box {
        margin-top: 20px;
    }

    /*----------------------------------------*\
      MOBILE - CONTACT
    \*----------------------------------------*/

    #wi-contact {
        padding-top: 120px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form .form-top {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

}   

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

    /*----------------------------------------*\
        DESKTOP - GLOBAL
    \*----------------------------------------*/

    .wrap-content {
        margin-inline: auto;
    }

    #wi-content .sections {
        flex-direction: row;
        align-items: stretch;
    }

    #wi-content .sections .box{
        flex-basis: 0;
        flex-grow: 1;
    }
    
    .hide-desktop {
        display: none;
    }

    /*----------------------------------------*\
      DEKTOP - CONTACT
    \*----------------------------------------*/

    .sections .form  {
        flex-basis: 0;
        flex-grow: 2;
    }

    .sections .location  {
        flex-basis: 0;
        flex-grow: 1;
    }

}