/* Main styles */

body{
    background: #0C0C0C;
}

    /* Paddings */

    .top_padding{
        width: 100%;
        height: 120px;
    }

    .padding_between_blocks{
        width: 100%;
        height: 200px;
    }

    /* Paddings END*/

/* Main styles END */

/* Grid styles */

.main_container{
    width: 100%;
    max-width: 1216px;
    margin: 0;
    padding: 0;
    position: relative;
}

section{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.row{
    display: flex;
    justify-content: space-between;
}

.col-1{width: 8%;}
.col-2{width: 16%;}
.col-3{width: 24%;}
.col-4{width: 33%;}
.col-5{width: 41%;}
.col-6{width: 50%;}
.col-7{width: 58%;}
.col-8{width: 66%;}
.col-9{width: 75%;}
.col-10{width: 83%;}
.col-11{width: 92%;}
.col-12{width: 100%;}

/* Grid styles END */

/* Text styles */

.section_header{
    color: #FFAD00;
    padding-bottom: 24px;
}

.orange_text{
    color: #FFAD00;
}

.listing li{
    margin-bottom: 40px;
    position: relative;
}

/* Text styles END*/


/* ------------- HEADER ----------------- */

.header{
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;    
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1;
    box-sizing: border-box;
    padding: 0 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    width: 80px;
}
.logo img{
    width: 100%;
}

.navbar{
    display: flex;
    justify-content: flex-end;
}

.navbutton{
    margin-left: 56px;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    line-height: 110%;
}



/* ------------- HEADER END ------------- */

/* ------------- SECTIONS --------------- */

/* Main video */

#main .main_video{
    width: 100%;
    height: auto;
    margin-top: 100px;
}

/* Big message */

#big_message .secondary_message{
    margin-top: 100px;
}

/* About us*/

#about_us .minimized_text{
    color: #8C8C8C;
}

#about_us .divider{
    width: 100%;
    height: 1px;
    background: #FFAD00;
    margin: 32px 0;
}

/* Pluses*/

.listing li::before{
    content: "";
    width: 72px;
    height: 1px;
    position: absolute;
    left: -96px;
    top: 24px;
    background: #FFAD00;
} 

#pluses img{
    width: 100%;
}

#pluses .row{
    align-items: center;
}

/*About work*/

.table_block.first{
    padding: 0px 0 40px 32px;
}

.table_block.last{
    padding: 40px 0 0 32px;
    border-bottom: none;
}


.table_block{
    box-sizing: border-box;
    padding: 40px 0 40px 32px;
    border-bottom: #222222 1px solid;
    border-left: #222222 1px solid;
    margin-left: -40px;
}


.table_block_header{
    padding-bottom: 24px;
}

#about_work .section_header{
    padding-bottom: 56px;
}

/*secondary_message*/

#secondary_message .row{
    padding-top: 56px;
}

#secondary_message .divider{
    width: 100%;
    height: 1px;
    background: #FFAD00;
    margin-top: 10px;
}

#secondary_message .row .col-6:first-child{
    padding-right: 50px;
}

/* Photo message */

#photo_message .main_container{
    background: url(../img/02.jpg);
    min-height: 900px;
}

.center_container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* We offer */

#we_offer h1{
    padding: 36px 0;
}

/* Contacts */

.key{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #A1A1A1;
    ;
}
.value{
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 27px;
}

#contacts .contact{
    margin-bottom: 40px;
}


.form-group {
    position: relative;
    width: 100%;
}

.form-group label {
    position: absolute;
    top: 0;
    font-size: 12px;
    opacity: 1;
    transform: translateY(-20px);
    transition: all 0.2s ease-out;
}

#contacts .headers{
    padding-bottom: 56px;
}

.form-group input{
    padding-bottom: 10px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #2F2F2F;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    width: 100%;
    position: relative;
    outline:none;
}

.form-group input:placeholder-shown + label {
    opacity: 0;
    transform: translateY(0);
}

.form .contact{
    margin-bottom: 64px !important;
}

.submit{
    background: #FFAD00;
    border: none;
    outline:none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    min-width: 195px;
    min-height: 50px;
}


/* ------------- SECTIONS END ----------- */

