*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #000000;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 100%;
}

section{
    padding-top: 65px;
    padding-bottom: 65px;
}

h1,h2,h3{
    margin-bottom: 48px;
    font-family: 'Work Sans', sans-serif;
}

h1{
    font-size: 96px;
    font-weight: 600;
    line-height: 113px;
}
h2{
    font-size: 64px;
    font-weight: 600;
    line-height: 75px;
    text-transform: uppercase;
}

h3{
    font-size: 48px;
    font-weight: normal;
    line-height: 56px;
}
p{
    font-size: 16px;
    margin-bottom: 24px;
}

a{
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}
@media screen and (max-width: 576px){
    h1{
        font-size: 48px;
        line-height: 56px;
    }
    h2{
        font-size: 32px;
        line-height: 38px;
    }
    
    h3{
        font-size: 24px;
        line-height: 28px;
    }
    p{
        font-size: 8px;
        margin-bottom: 12px;
    }
    
    a{
        font-size: 18px;
    }
}

a:hover{
    color: #beda10;
}

.anchors{
    visibility: hidden;
    position: relative;
    top:0;
}

.button{
    /* display: block; */
    background-color: #8279bb;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 12px;
    border: none;
    border-radius: 37px;
}

.button:hover{
    background-color: #beda10;
    color: #070514;

}

.input-label{
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}
.input-label span{
    font-size: 18px;
    font-weight: 400;
}

.input-field,.input-textarea{
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    color: #757575;
    background-color: #0e0062;
    padding: 12px 16px;
    width: 100%;
    border: none;
    border-radius: 30px;
    margin-top: 8px;
    margin-bottom: 16px;
}
.input-textarea{
    height: 100px;
}
.input-radio, .input-label-radio::before {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 50%;
    content: '';
    vertical-align: bottom;
    border: 2px solid #757575;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}
.input-radio-divider{
    margin-bottom: 16px;
}
.input-radio-divider::after{
    margin-bottom: 32px;
}

.input-radio:checked, .input-label-radio::before {
    background-color: #0e0062;
}
.upload-fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.upload-fields .input-field {
    max-width: calc(50% - 10px);
    /* margin-right: 5px; */
}

.container{
    width: 80%;
    max-width: 1145px;
    margin-right: auto;
    margin-left: auto;

}

.hero{
    height: 100vh;
    background: rgb(7,5,20);
    background: linear-gradient(0deg, rgba(7,5,20,1) 0%, rgba(16,26,98,1) 32%);
}

.hero-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-cta{
    align-self: flex-end;
}

/* HEADER */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(7,5,20);
    background: linear-gradient(180deg, rgba(7,5,20,1) 0%, rgba(15,25,93,0.2638305322128851) 32%);
    z-index: 5;
}
.header-container{
    display: flex;
    flex-wrap: wrap;
}
.logo{
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase;
    margin-right: 64px;
}
.menu ul{
    list-style-type: none;
    display: flex;
}
.menu ul li{
    margin-right: 24px;
}
.menu ul li a{
    font-size: 24px;
}

.works-menu {
    position: sticky;
    top: 0;
}

@media screen and (max-width: 768px){
    .works-menu {
        display: none;
    }
}

.works-menu ul {
    list-style-type: none;
    display: flex;
}
.works-menu ul li{
    margin-right: 24px;
}

.works{

}

.works-item{
    margin-bottom: 96px;
}

.works-item-tags{
    font-size: 24px;
    color: #beda10;
}

.work-info{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.work-info-label{
    width: 200px;
    flex-grow: 0;
    flex-shrink: 1;
    text-transform: uppercase;
    font-weight: 600;
}

.work-info-content{
    width: 70%;
    flex-grow: 1;
    flex-shrink: 1;
}

.images{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.images img{
    width: 400px;
    max-width: 100%;
    margin-bottom: 24px;
}

.image-right{
    align-self: flex-end;
}

.image-left{
    align-self: flex-start;
}

.contacts{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacts-content{
    display: flex;
    justify-content: center;
    column-gap: 64px;
}

.contacts-about,.contacts-form{
    width: 40%;
    flex-grow: 0;
    flex-shrink: 1;
}

@media screen and (max-width: 768px){
    .contacts-content{
        flex-direction: column;
    }
    .contacts-content,.contacts-form{
        width: 100%;
    }
}

.footer{
    /* background: rgb(7,5,20);
    background: linear-gradient(0deg, rgba(7,5,20,1) 0%, rgba(16,26,98,1) 32%); */
    background: rgb(7,5,20);
    background: linear-gradient(180deg, rgba(7,5,20,1) 0%, rgba(14,0,98,1) 100%);
    padding-top: 24px;
    padding-bottom: 24px;
}

.copyright{
    color: #757575;
}

.back-to-top{
    background-image: url('images/arrow-up.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #757575;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    display: none;
}

.insertcsv{
    
}

