:root{
    --pr-color: #fff;
    --second-color: #161616;
    --color-1-1: #BE2518;
    --color-1-2: #ffffffc2;
    --cubicbz: cubic-bezier(.9,0,.1,1);
    --fz-big:60px;
    --pd: 50px;
    --background: #101010;
    --on-background: #f2f2f2;
}

* {
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    margin: 0;
    padding: 0;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-thumb{
    background: rgba(242, 242, 242, .1);
    border-radius: 1rem;
}

body{
    background: var(--background);
    color: var(--on-background);
}


/* Nav Start */

header{
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 3;
}

.tottle{
    padding: 0 1rem;
    color: var(--on-background);
    text-transform: uppercase;
    text-shadow: 0 5px 10px rgba(0, 87, 255, 0.15), 0 -5px 10px rgba(255, 90, 0, 0.1), 0 -5px 25px rgba(255, 255, 255, 0.3);
    font-size: 1em;
}

nav{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(242, 242, 242, .05);
    border: 1px solid rgba(242, 242, 242, .1);
    height: 48px;
    padding-left: 6px;
    padding-right: 6px;
    backdrop-filter: blur(15px);
    font-family: 'Exo 2', sans-serif;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: all .3s;
}

nav > a{
    color: var(--on-background);
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    width: 80px;
    height: 36px;
    text-decoration: none;
    display: flex;    
    font-family: 'Exo 2', sans-serif;
    transition: all .3s ;
}

.text-nav-toggle{
    font-weight: 500;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: .2px;
    line-height: 18px;
    text-align: center;
}

nav:hover{
    background-color: rgba(242, 242, 242, .075);
    border: 1px solid rgba(242, 242, 242, .2);
}

nav > a:hover{
    background-color: rgba(242, 242, 242, .05);
    text-shadow: 0 5px 10px rgba(0, 87, 255, 0.15),
    0 -5px 10px rgba(255,90,0,0.1),
    0 -5px 25px rgba(255,255,255,0.3);
}

/* Nav End */

/* Contact-Form Start */

.contact-section{
    z-index: 1;
    background-image: radial-gradient(circle closest-corner at 50% 0, rgba(242, 242, 242, .15), rgba(0, 0, 0, 0));
    flex-direction: row;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 70px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.contact-form{
    z-index: 3;
    position: relative;
}

.glare-item-top.outer-edge{
    z-index: 1;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgba(255, 255, 255, 0.8) 35%, #fff 50%, rgba(255, 255, 255, 0.8) 65%, rgba(0, 0, 0, 0) 95%);
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.glare-item-top {
    height: 1px;
    margin-bottom: -1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, #fff 50%, rgba(0, 0, 0, 0) 90%);
}

.contact-outline {
    backdrop-filter: none;
    outline-offset: -1px;
    background-image: radial-gradient(circle farthest-side at 50% 0, rgba(242, 242, 242, 0.2), rgba(0, 0, 0, 0));
    border-radius: 24px;
    outline: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 0, 0, 0.2), 0 30px 120px rgba(0, 0, 0, 0.8);
}

.glare-item-top.contact-inner{
    height: 2px;
    margin-bottom: -2px;
}

.contact-main {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(242, 242, 242, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1), 0 0 12px rgba(0, 0, 0, 0.4);
}

.form-contact{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    grid-row-gap: 1rem;    
}

.contact-title h1{
    letter-spacing: -2px;
    text-shadow: 0 5px 10px rgba(0, 87, 255, 0.15), 0 -5px 10px rgba(255, 90, 0, 0.1), 0 -5px 25px rgba(255, 255, 255, 0.3);
    font-family: 'Exo 2', sans-serif;
    font-size: 3em;
    line-height: 90%;
    font-weight: 500;
    padding-bottom: 1rem;
}

.name-number-contact{
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
}

.input-wrap{
    width: 100%;
    position: relative;
}

.contact-input{
    width: 100%;
    padding: .75rem 1.35rem .75rem 1.35rem;
    border-radius: 1rem;
    border: 1px solid rgba(242, 242, 242, .1);
    background: rgba(0, 0, 0, .15);
    color: var(--on-background);
    font-size: 1em;
    font-weight: 400;
    font-family: 'Exo 2', sans-serif;
    outline: none;
    transition: .3s;
}

.contact-input:hover,
.contact-input:valid{
    background-color: rgba(242, 242, 242, .075);
    border: 1px solid rgba(242, 242, 242, .2)
}

textarea.contact-input{
    resize: none;
    width: 100%;
    min-height: 150px;
}

textarea.contact-input ~ #icon{
    top: .75rem;
    transform: none;
}

#icon{
    position: absolute;
    right: calc(1.35rem + 2px);
    top: 50%;
    transform: translateY(-50%);
    color: var(--on-background);
    text-shadow: 0 5px 10px rgba(0, 87, 255, 0.15), 0 -5px 10px rgba(255, 90, 0, 0.1), 0 -5px 25px rgba(255, 255, 255, 0.3);
    font-family: 'Exo 2', sans-serif;
    line-height: 90%;
}

.btn-send{
    border: 1px solid rgba(242, 242, 242, .1);
    border-radius: 5rem;
    background: rgba(242, 242, 242, 0.05);
    padding: .25rem;
    outline: none;
    transition: .3s;
}

.btn-send:hover{
    background-color: rgba(242, 242, 242, .075);
    border: 1px solid rgba(242, 242, 242, .2)
}

.btn-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    font-size: 2em;
    color: var(--on-background);
    text-shadow: 0 5px 10px rgba(0, 87, 255, 0.15), 0 -5px 10px rgba(255, 90, 0, 0.1), 0 -5px 25px rgba(255, 255, 255, 0.3);

}

.btn-icon i{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-icon p{
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: 'Exo 2', sans-serif;
}

/* Contact-Form End */

/* Section Footer Start */
.section-footer{
    border-top: 1px solid rgba(242, 242, 242, 0.1);
    justify-content: center;
    padding-top: 88px;
    padding-bottom: 80px;
    display: flex;
    position: relative;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.container-footer {
    grid-row-gap: 64px;
    flex-direction: column;
    width: 882px;
    display: flex;
}

.footer-top-wrapper {
    justify-content: space-between;
    display: flex;
}

.footer-links-column-wrapper {
    grid-column-gap: 48px;
    display: flex;
}

.footer-bottom-wrapper {
    grid-column-gap: 48px;
    flex: 1;
    justify-content: space-between;
    align-self: stretch;
    align-items: flex-end;
    display: flex;
}

.footer-bottom-left {
    grid-row-gap: 4px;
    flex-direction: column;
    flex: 1;
    align-self: stretch;
    align-items: flex-start;
    display: flex;
}

.text-footer-copyright {
    letter-spacing: .2px;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.text-under-copyright {
    opacity: .5;
    letter-spacing: .2px;
    text-transform: none;
    font-family: 'Exo 2', sans-serif;
}

.footer-bottom-right {
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    align-self: stretch;
    align-items: flex-end;
    display: flex;
}

.text-last-updated {
    opacity: .5;
    letter-spacing: .2px;
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

/* Section Footer End */

@media screen and (max-width: 479px) {
    header{
        justify-content: center;
        padding: 2rem 1rem;
    }
    .tottle{
        display: none;
    }
    .section-footer {
        padding: 64px 16px 48px;
    }
    .container-footer {
        grid-row-gap: 48px;
    }
    .footer-top-wrapper {
        grid-row-gap: 48px;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links-column-wrapper {
        grid-column-gap: 16px;
    }
    .footer-links-column {
        grid-row-gap: 12px;
        width: 96px;
    }
    .footer-bottom-wrapper {
        grid-row-gap: 32px;
    }
    .footer-bottom-left {
        grid-row-gap: 8px;
    }
    .text-footer-copyright {
        font-size: 14px;
        line-height: 18px;
    }
    .text-under-copyright {
        font-size: 12px;
        line-height: 16px;
    }


}

@media screen and (max-width: 767px) {
    .section-footer {
        padding: 48px 24px;
    }
    .footer-bottom-wrapper {
        grid-row-gap: 48px;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom-right {
        align-items: flex-start;
    }    
    .contact-section{
        padding: 160px 1rem 75px 1rem;
    }

    .name-number-contact {
        flex-direction: column;
        grid-row-gap: 1rem;
    }
}

@media screen and (max-width: 991px) {
    .section-footer {
        padding-left: 48px;
        padding-right: 48px;
    }
    .container-footer {
        width: 100%;
    }
    .footer-links-column-wrapper {
        grid-column-gap: 32px;
    }
    .footer-links-column {
        width: 80px;
    }
    .footer-bottom-wrapper {
        grid-column-gap: 0px;
    }
}