@font-face{
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face{
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face{
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face{
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face{
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

*, *::after, *::before{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline-color: rgba(0, 0, 0, .3);
}
html{
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    overflow-y: scroll!important;
    min-height: 100vh;
    min-width: 320px;
}
body{
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga", "kern";
    text-rendering: optimizelegibility;
    overflow: hidden;
    min-height: 100vh;
    background-color: #fff;
}

/* 
    Bootstrap Custom Styles
*/
.container-800{
    max-width: 800px;
}
.mb-6{
    margin-bottom: 4rem!important;
}
.mb-7{
    margin-bottom: 5rem!important;
}
a{
    text-decoration: none;
}
.navbar-toggler, .navbar-toggler:focus, .navbar-toggler:hover{
    outline: none;
}
/* 
    ###########
*/

/* 
    Header site
*/
.header{
    background-color: #fff;
    width: 100%;
    z-index: 101;
}
.header__section{
    padding: 16px 0;
    transition: .3s linear;
}
.header--sticky{
    position: fixed;
    top: 0;
    bottom: auto;
    z-index: 5;
    box-shadow: 0 0 3px 0 rgba(0,0,0, .2);
}
.header--sticky .header__section{
    padding: 6px 0;
}
.header__navbar{
    position: relative;
}
.header__navbar>.container, .header__navbar>.container-fluid{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo__link{
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-logo__link img{
    max-width: 160px;   
}
.navbar-menu__list{
    color: #333;
}
.navbar-menu__item{
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}
.navbar-menu__item>a{
    color: inherit;
    text-decoration: none;
    transition: .3s linear;
}
.navbar-menu__item>a:hover{
    text-decoration: none;
    color: #ed5338;
}
.navbar-btn__box{
    width: 25px;
    height: 17px;
    display: inline-block;
    position: relative;
}
.navbar-btn__inner, .navbar-btn__inner::after, .navbar-btn__inner::before{
    width: 100%;
    height: 1px;
    border-radius: 0;
    transition: .2s linear;
    display: block;
    position: absolute;
    background: #333;
}
.navbar-btn__inner{
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.navbar-btn__inner::after{
    content: '';
    transform: translate3d(0, 0, 0) rotate(-90deg);
}
.navbar-btn__inner::before{
    content: '';
    top: -10px;
    opacity: 0;
}
.navbar-toggler.collapsed .navbar-btn__inner{
    top: 0;
    transform: none;
}
.navbar-toggler.collapsed .navbar-btn__inner::after{
    top: 9px;
    transform: none;
}
.navbar-toggler.collapsed .navbar-btn__inner::before{
    top: 17px;
    opacity: 1;
}
/* 
    ###########
*/

/* 
    Banner's site
*/
.banner__block{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner__block>.container, .banner__block>.container-fluid{
    z-index: 1;
}
.banner__block::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5)!important;
}
.banner__block--lg{
    width: 100%;
    min-height: 100vh!important;
    padding: 80px 0;
}
.banner__block--sm{
    min-height: 500px;
    padding: 40px;
}
.banner__block--magnif{
    transition: .3s linear;
}
.banner__block--magnif:hover{
    transform-origin: center;
    transform: scale(1.05);
}
.banner__title{
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}
.banner__title--lg{
    font-weight: 700;
    font-size: 65px;
    line-height: 1;
    margin: 20px 0;
}
.banner__title--sm{
    color: rgba(255, 255, 255,.9);
    font-size: 60px;
    font-weight: 400;
}
.banner__text{
    text-align: center;
}
.banner__text--after{
    color: rgba(255, 255, 255, .7);
    font-size: 22px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 35px;
}
.banner__text--before{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 22px;
    margin-bottom: 20px;
}
.banner__link-btn{
    display: flex;
    text-decoration: none;
    padding: 7px 20px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: .3s linear;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
}
.banner__link-btn:hover{
    text-decoration: none;
    background: #c59368;
    color: #fff;
    border-color: #c59368;
}
/* 
    ###########
*/

/* 
    Marketplacement's site
*/
.marketplacement{
    padding-top: 40px;
}
.marketplacement__heading{
    position: relative;
    text-align: center;
    margin-bottom: 120px;
}
.marketplacement__heading::after{
    content: '';
    display: inline-block;
    border-top-style: solid;
    border-color: inherit;
    margin-top: 30px;
    width: 70px;
    border-top-width: 10px;
    border-color: #c59368;
}
.marketplacement__title--before{
    font-size: 15px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}
.marketplacement__title{
    font-size: 50px;
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    line-height: 65px;
    margin-bottom: -10px;
    text-align: center;
}
.marketplacement__card{
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.marketplacement__card:hover{
    text-decoration: none;
}
.marketplacement__logo{
    max-width: 169px;
    transition: .3s linear;
    overflow: hidden;
}
.marketplacement__card:hover .marketplacement__logo{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
}
.marketplacement__logo img{
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.marketplacement__desc{
    max-width: 340px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 30px;
}
.marketplacement__desc-title{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.marketplacement__desc-text{
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #555;
}
/* 
    ###########
*/

/* 
    Node section's site
*/
.node__section{
    padding: 50px 0;
}
.node__text{
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #333;
    text-align: center;
}
/* 
    ###########
*/

/* 
    Worksteps's site
*/
.worksteps{
    padding-top: 50px;
}
.worksteps__title{
    font-size: 30px;
    font-weight: 700;
    line-height: 48px;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
}
.worksteps__item{
    position: relative;
    padding: 25px 10px;
    text-align: left;
}
.worksteps__step{
    position: relative;
    width: 100%;
}
.worksteps__step::before{
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    top: 50%;
    width: 100%;
    height: 0;
    border-top-style: solid;
    border-top-width: 1px;
    border-color: #ccc;
    z-index: -1;
}
.worksteps__step-numb{
    padding: 5px 10px;
    margin-right: auto;
    text-align: center;
    width: 110px;
    background: #ed5338;
    color: #fff;
    border-radius: 20px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s linear;
}
.worksteps__item:hover .worksteps__step-numb{
    background: #fff;
    border-color: #ed5338;
    color: #ed5338;
}
.worksteps__image{
    min-height: 170px;
    min-width: 170px;
    margin-right: 30px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}
.worksteps__image::before{
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    transition: .3s linear;
}
.worksteps__item:hover .worksteps__image::before{
    opacity: 0;
}
.worksteps__image img{
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}
.worksteps__info-title{
    font-size: 23px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.worksteps__info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.worksteps__info-text{
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #999;
    display: flex;
    align-items: center;
}
.worksteps__info-text a{
    font-size: inherit;
    color: #999;
    line-height: inherit;
}
/* 
    ###########
*/

/* 
    Dividing__line's site
*/
.dividing__line{
    padding: 15px 0;
}
.dividing__line hr{
    margin: 0;
    border-color: #ddd;
}
/* 
    ###########
*/

/* 
    Contact's site
*/
.contact__info{
    padding: 40px 0 25px;
}
.contact__col{
    padding: 30px 15px;
    margin-bottom: 15px;
    border-right: 1px solid;
    border-right-color: #333;
}
.contact__col:nth-child(2n){
    border-right: 0px;
}
.contact__link{
    color: #ed5338;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact__link:hover{
    text-decoration: none;
    color: #ed5338;
}
.contact__link:hover .contact__link-text{
    border-color: #ed5338;
}
.contact__link:hover .contact__link-icon{
    transform: scale(1.1);
    transform-origin: center;
}
.contact__link-icon{
    display: block;
    font-size: 50px;
    color: inherit;
    line-height: 1;
    margin-bottom: 20px;
    transition: .3s linear;
}
.contact__link-text{
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    border-bottom: 1px solid transparent;
    transition: .3s linear;
}
/* 
    ###########
*/

/* 
    bitrix24 form's site
*/
.bitrix24__form{
    padding: 40px 0;
}
/* 
    ###########
*/
/* 
    Contact's site
*/
.footer{
    border-top: 1px solid #333;
    background: #555;
}
.container--footer{
    padding: 40px 15px;
}
.footer__copyright{
    font-size: 13px;
    font-weight: 400;
    color: #999;
    margin-bottom: 0;
}
.social__list{
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.social__item{
    margin-right: 10px;
}
.social__item:last-child{
    margin-right: 0;
}
.social__item-link{
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: #bbb;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid #bbb;
    border-width: 1px;
    transition: .3s linear;
}
.social__item-link i{
    font-size: 16px;
    line-height: 1;
    transition: .2s linear;
}
.social__item-link:hover{
    background: #ed5338;
    border-color: transparent;
    border-width: 0px;
    text-decoration: none;
}
.social__item-link:hover i{
    color: #fff;
}
/* 
    ###########
*/

/* 
    Media 1200px
*/
@media (max-width: 1200px){
    .banner__title--sm{
        font-size: 48px;
    }
    .marketplacement__desc{
        max-width: 250px;
    }
}
/* 
    ###########
*/

/* 
    Media 992px
*/
@media (max-width: 992px){
    .marketplacement__desc{
        max-width: 500px;
    }
    .worksteps__step-numb{
        margin-left: auto;
    }
    .worksteps__image{
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    .header__navbar>.container, .header__navbar>.container-fluid{
        flex-wrap: wrap;
    }
    .navbar-collapse{
        width: 100%;
        order: 10;
    }
    .navbar-menu__list{
        padding: 20px 0;
    }
    .navbar-menu__item{
        margin-bottom: 20px;
        font-size: 14px;
    }
    .navbar-menu__item:last-child{
        margin-bottom: 0;
    }
}
/* 
    ###########
*/

/* 
    Media 768px
*/
@media (max-width: 768px){
    .marketplacement__logo{
        margin-left: auto;
        margin-right: auto;
    }
    .marketplacement__desc{
        max-width: 100%;
        padding: 50px 40px;
    }
    .mb-7{
        margin-bottom: 2rem !important;
    }
    .worksteps__info{
        text-align: center;
    }
    .worksteps__image{
        margin-top: 10px;
        min-height: auto;
        min-width: auto;
        max-height: 120px;
        max-width: 120px;
    }
    .social__list{
        margin-top: 20px;
        justify-content: center;
    }
}
/* 
    ###########
*/

/* 
    Media 576px
*/
@media (max-width: 576px){
    .banner__title--lg{
        font-size: 40px;
    }
    .banner__text--after{
        font-size: 20px;
    }
    .banner__title--sm{
        font-size: 36px;
    }
    .marketplacement__title{
        font-size: 36px;
    }
    .contact__col{
        border-right: none;
    }
    .header__section{
        padding: 16px 15px;
    }
    .header--sticky .header__section{
        padding: 6px 15px;
    }
}
/* 
    ###########
*/