/*//////////////////////////////////////////////////////////////////*/
/*Общие астройки стилей*/

/*1 Цвет: #353535*/
/*2 Цвет: #f0542d*/
/*3 Цвет: #888888*/

/*//////////////////////////////////////////////////////////////////*/
*
{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;

    -webkit-transition: all .15s ease-out;
         -o-transition: all .15s ease-out;
            transition: all .15s ease-out;

    outline: none;
}
.anim
{
    -webkit-transition: all .3s ease-out;
    -webkit-transition: all .10s ease-out;
         -o-transition: all .3s ease-out;
         -o-transition: all .10s ease-out;
            transition: all .10s ease-out;
}
.none
{
    display: none;
}
.fc
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}
.grid
{
    display: -ms-grid;
    display:     grid;

    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
}
.padding
{
    padding: 0 80px;
}
body
{
    background: #fff;
}

/*//////////////////////////////////////////////////////////////////*/
/*Шапка*/
/*//////////////////////////////////////////////////////////////////*/

header
{
    position: fixed;
    z-index: 10;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 100%;
    height: 80px;

    background: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .07);
            box-shadow: 0 2px 4px rgba(0, 0, 0, .07);

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.logo-name
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 100%;
    height: 100%;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.name
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

/*//////////////////////////////////////////////////////////////////*/
/*Меню для ПК*/
/*//////////////////////////////////////////////////////////////////*/

.category
{
    font-size: 16px;
    font-weight: 500;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    height: 100%;

    list-style: none;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
li
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    height: 100%;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sub
{
    background: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .07);
            box-shadow: 0 2px 4px rgba(0, 0, 0, .07);
}
li ul
{
    position: absolute;
    top: 100%;
    right: -800px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    height: 100%;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
li a
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    height: 100%;
    padding: 0 20px;

    color: #353535;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
li a:hover
{
    color: #f0542d;
}
li:hover ul
{
    right: 0;
}
.sub li
{
    padding: 0 20px 0 40px;
}

/*//////////////////////////////////////////////////////////////////*/
/*Меню для смартфонов*/
/*//////////////////////////////////////////////////////////////////*/
.mob
{
    display: none;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.mob a
{
    font-size: 25px;

    padding: 0 20px;

    color: #353535;
}
.mob a :hover
{
    color: #f0542d;
}
.m-phone
{
    font-size: 16px;
    font-weight: 700;

    display: none;

    width: 180px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.soc-none
{
    display: none;
}
.m-menu a
{
    font-size: 16px;

    padding: 20px 0;
}
.check
{
    font-size: 0;

    width: 60px;
    height: 30px;
    margin: 0 0 0 20px;

    cursor: pointer;

    background: url(../Assets/img/menu1.svg);
    background-repeat: no-repeat;
    background-size: auto;
}

.checkbox
{
    display: none;
}
.checkbox:checked + .check
{
    background-image: url('../Assets/img/close1.svg');
}
.checkbox:checked ~ .m-menu
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.m-menu
{
    position: absolute;
    top: 100%;
    left: 0;

    display: none;
        flex-direction: column;

    width: 100%;
    padding: 10px 0;

    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);

    background: #e6e6e6;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}
.m-menu a
{
    font-weight: 600;

    padding: 10px;
}
.mob a:hover
{
    color: #f0542d;
}

/*//////////////////////////////////////////////////////////////////*/
/*Приветствие*/
/*//////////////////////////////////////////////////////////////////*/

.salutation
{
    position: relative;

    overflow: hidden;

    width: 100%;
    padding: 80px 30px 140px;

    background-color: #fff;
    background-image: url(../Assets/img/bg1.jpg);
    background-attachment: fixed;
    background-position: top left;
    background-size: cover;
}
.s-phone
{
    margin: 40px 0 0;
}
.salutation h2
{
    margin: 40px 0 0;
}
.salutation h4
{
    margin: 5px 0 0;
}
.salutation h6
{
    margin: 30px 0 0;
}
.btns
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 60%;
    margin: 40px 0 0;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.btn
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 300px;
    height: 50px;

    border: 0 solid;
    border-color: #f0542d;
    background: #f0542d;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.btn:hover
{
    border: 2px solid;
    background: #fff;
}
.title-size
{
    margin: 40px 0 0;
}
.sizes
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 550px;
    margin: 40px 0 0;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.size
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-size
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -ms-align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.v-size h4
{
    margin: 0;
}
/*//////////////////////////////////////////////////////////////////*/
/*Бесплатные услуги*/
/*//////////////////////////////////////////////////////////////////*/

.free
{
    position: relative;
    bottom: 40px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 100%;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.box
{
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    width: 400px;
    height: 400px;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}
.img,
.free-imgs
{
    margin: 40px 0;
}
.c-img
{
    height: 100px;
}
.d-img
{
    height: 74px;
}

.main-box
{
    z-index: 1;
    bottom: 40px;

    background: #f9f9f9;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .07);
            box-shadow: 0 5px 20px rgba(0, 0, 0, .07);
}
.free-imgs
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.free-img
{
    height: 100px;
    margin: 0 30px;
}
.arrov-img
{
    height: 60px;
}
.сonsultation
{
    z-index: 0;
    right: 0;
    bottom: 0;

    background: #fff;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .07);
            box-shadow: 0 2px 5px rgba(0, 0, 0, .07);
}
.сonsultation:hover
{
    z-index: 2;
    right: 10px;
    bottom: 10px;

    -webkit-box-shadow: 30px 30px 50px rgba(0, 0, 0, .05);
            box-shadow: 30px 30px 50px rgba(0, 0, 0, .05);
}
.departure
{
    z-index: 0;
    right: 0;
    bottom: 0;

    background: #fff;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .07);
            box-shadow: 0 2px 5px rgba(0, 0, 0, .07);
}
.departure:hover
{
    z-index: 2;
    right: -10px;
    bottom: 10px;

    -webkit-box-shadow: -30px 30px 50px rgba(0, 0, 0, .05);
            box-shadow: -30px 30px 50px rgba(0, 0, 0, .05);
}
.free-mob
{
    display: none;
        flex-direction: column;

    width: 100%;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.free-mob img
{
    height: 40px;
    margin: 0;
}
.free-mob h5
{
    margin: 20px 0 0;
}
.free-mob .box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    width: 100%;
    height: auto;
    padding: 30px 0;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}
.free-mob .uslugi
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    width: 100%;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}


/*//////////////////////////////////////////////////////////////////*/
/*Заголовки*/
/*//////////////////////////////////////////////////////////////////*/

.title
{
    margin: 80px;

    text-align: center;
}
.title img
{
    height: 30px;
    margin: 0 20px;
}
.title p
{
    max-width: 720px;
}
.slash
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin: 40px 0;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.t-line
{
    width: 80px;
    height: 2px;

    border-radius: 50px;
    background: #353535;
}
.p-none .slash
{
    margin: 40px 0 0;
}

/*//////////////////////////////////////////////////////////////////*/
/*Прайс*/
/*//////////////////////////////////////////////////////////////////*/


.price
{
    width: 100%;
}
.price span
{
    font-size: 20px;
    font-weight: 700px;
}
.p-table
{
    width: 1200px;
    margin: 40px 0;
}
.t-row
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 100%;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.size-row
{
    background: rgba(53, 53, 53, .03);
}
.ruller-row
{
    background: rgba(53, 53, 53, .00);
}
.ruller-row:hover
{
    background: rgba(53, 53, 53, .06);
}
.cell
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    height: 80px;

    background: rgba(53, 53, 53, .01);

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.f-column
{
    width: 35%;

    background: rgba(53, 53, 53, .01);
}
.t-column
{
    width: 65%;

    background: rgba(53, 53, 53, .03);
}
.p-ps
{
    margin: 10px 0 0;
}
.a-btn
{
    margin: 80px 0 0;
}

/*//////////////////////////////////////////////////////////////////*/
/*Портфолио*/
/*//////////////////////////////////////////////////////////////////*/

.foto
{
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;

    height: 360px;

    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-decoration: none;

    color: #fff;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.photo
{
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;

    width: 100%;
    height: 100%;

    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    -webkit-transform: scale(1.15) rotate(0deg);
        -ms-transform: scale(1.15) rotate(0deg);
            transform: scale(1.15) rotate(0deg);

    background-position: center;
    background-size: cover;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
}
.photo .fa
{
    font-size: 150px;

    padding: 500px;

    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);

    opacity: 0;
    background: rgba(240, 84, 45, .7);

    fill: #fff;
    -webkit-filter: none;
            filter: none;
}
.foto:hover .photo
{
    -webkit-transform: scale(2) rotate(45deg);
        -ms-transform: scale(2) rotate(45deg);
            transform: scale(2) rotate(45deg);

    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
}
.photo:hover .fa
{
    font-size: 18px;

    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;

    opacity: 1;
}

/*//////////////////////////////////////////////////////////////////*/
/*Преимущества*/
/*//////////////////////////////////////////////////////////////////*/

.advantages
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    max-width: 1000px;

    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.a-box,
.type-box
{
    width: 270px;
    margin: 0 0 60px;
}
.a-box img
{
    height: 50px;
    margin: 0 0 30px;
}
.min-advantage
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.min-box
{
    width: 135px;
}
.min-box img
{
    height: 50px;
    margin: 0 0 30px;
}
.types
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    max-width: 1000px;

    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.type-box img
{
    height: 150px;
    margin: 30px 0 0;
}
.type-box p
{
    padding: 30px;

    text-transform: none;

    border-right: 2px solid rgba(0,0,0,.1);
    border-bottom: 2px solid rgba(0,0,0,.1);
    border-left: 2px solid rgba(0,0,0,.1);
}

/*//////////////////////////////////////////////////////////////////*/
/*Подвал*/
/*//////////////////////////////////////////////////////////////////*/

footer
{
    width: 100%;
    margin: 80px 0 0;

    background: #353535;
}
footer p
{
    margin: 40px 0 40px;
}
.f-name
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.f-line
{
    width: 80px;
    height: 2px;

    border-radius: 50px;
    background: #888;
}
.f-text
{
    margin: 0 40px;
}
.f-advantage
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.f-box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin: 0 30px;

    text-align: left;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.f-box img
{
    height: 30px;
    margin: 0 20px 0 0;
}
.f-box p
{
    margin: 0;
}
.f-phone
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.f-phone p
{
    margin: 20px 15px;
}
.f-mail p
{
    margin: 0 0 20px;
}
.f-soc
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.f-soc a
{
    margin: 0 20px 20px;
}
.cop
{
    margin: 0 0 40px;
}
.margin-bottom
{
    margin-bottom: 80px;
}
