/* ----------------------- Contacts ------------------------- */

.contacts__label{
    color: rgba(255, 255, 255, 0.55);
    font-size: 2em;
    line-height: 1;
}

.contacts__phone{
    display: inline-block;
    padding-left: 5em;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.contacts__phone span{
    font-size: 3.75em;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1;
}

.contacts__mail{
    display: inline-block;
    padding-left: 5.5em;
    position: relative;
    text-decoration: none;
}

.contacts__mail span{
    font-size: 3em;
    line-height: 1;
}

.contacts__phone:before,
.contacts__mail:before{
    background: url(/assets/i/sprite.svg) no-repeat;
    -webkit-background-size: 100em 100em;
    background-size: 100em 100em;
    content: "";
    display: block;
    font-size: 1.7em;
    height: 3em;
    left: -0.5em;
    margin: -1.5em 0;
    position: absolute;
    top: 50%;
    width: 3em;
}

.contacts__phone:before{background-position: -51.3em -22em;}
.contacts__mail:before{background-position: -54.8em -22em;}

.contacts__socials {
    position: relative;
    white-space: nowrap;
}

.contacts__social {
    background: url(/assets/i/sprite.svg) no-repeat;
    -webkit-background-size: 100em 100em;
    background-size: 100em 100em;
    display: inline-block;
    font-size: 2.25em;
    height: 2.4em;
    opacity: 0.8;
    width: 2.4em;
}

.contacts__social.vk{background-position: -19.7em -4.9em;}
.contacts__social.tw{background-position: -22.4em -4.9em;}
.contacts__social.fb{background-position: -25.1em -4.9em;}
.contacts__social.ig{background-position: -19.7em -10.4em;}

.contacts__social + .contacts__social {
    margin-left: 1em;
}

.contacts__office-title p{
    font-size: 4em;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
}

.contacts__office-address p{
    font-size: 2em;
    letter-spacing: -0.05em;
    line-height: 1.6;
    margin: 0;
}

.contacts__office-address strong{
    font-size: 1.37em;
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1;
}

.contacts__office-worktime{
    margin-top: 1em;
}

.contacts__office-worktime .subtitle{
    font-size: 1.7em;
    font-weight: 500;
    line-height: 1.65;
}

.contacts__office-worktime p{
    font-size: 2em;
    margin: 0;
    line-height: 1.6;
}

.contacts__office-worktime em{
    display: inline-block;
    font-style: normal;
    vertical-align: top;
}

.contacts__office-worktime strong{
    font-weight: 500;
}

.contacts__office-btn,
.contacts__office-btn_img_open{
    cursor: pointer;
    display: inline-block;
    font-size: 1.5em;
    padding-left: 5.2em;
    position: relative;
}
.contacts__office-btn_img_open{
    margin-top: 4em;
}
.contacts__office-btn .icon,
.contacts__office-btn_img_open .icon{
    height: 4em;
    left: 0;
    margin-top: -2em;
    position: absolute;
    -webkit-transition: -webkit-transform 100ms ease-in-out;
    -moz-transition: -moz-transform 100ms ease-in-out;
    -ms-transition: -ms-transform 100ms ease-in-out;
    -o-transition: -o-transform 100ms ease-in-out;
    transition: transform 100ms ease-in-out;
    width: 4em;
    top: 50%;
}

.contacts__office-btn:active .icon,
.contacts__office-btn_img_open:active .icon{
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

.contacts__office-btn .icon:before,
.contacts__office-btn_img_open .icon:before{
    background-color: #c34527;
    content: "";
    display: block;
    height: 3em;
    left: 50%;
    margin: -1.5em 0 0 -1.5em;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 3em;
}

.contacts__office-btn .icon:after,
.contacts__office-btn_img_open .icon:after{
    background: url(/assets/i/sprite.svg) no-repeat -55.8em -0.5em;
    -webkit-background-size: 100em 100em;
    background-size: 100em 100em;
    content: '';
    display: block;
    height: 4em;
    left: 50%;
    margin:-2em;
    position: absolute;
    top: 50%;
    width: 4em;
}

.contacts__office-btn span,
.contacts__office-btn_img_open span{
    color: #ffffff;
    display: inline-block;
    font-size: 1.5em;
    line-height: 1;
    margin-top: -0.1em;
}

.contacts__popup{
    height: 100%;
    left: 0;
    opacity: 1;
    position: fixed;
    top: 0;
    -webkit-transform: translate(-110%, 0);
    -moz-transform: translate(-110%, 0);
    -ms-transform: translate(-110%, 0);
    -o-transform: translate(-110%, 0);
    transform: translate(-110%, 0);
    -webkit-transition: -webkit-transform 750ms ease, opacity 750ms linear, visibility 750ms linear;
    -moz-transition: -moz-transform 750ms ease, opacity 750ms linear, visibility 750ms linear;
    -ms-transition: -ms-transform 750ms ease, opacity 750ms linear, visibility 750ms linear;
    -o-transition: -o-transform 750ms ease, opacity 750ms linear, visibility 750ms linear;
    transition: transform 750ms ease, opacity 750ms linear, visibility 750ms linear;
    visibility: hidden;
    width: 100%;
    z-index: 50;
}

.contacts__popup.visible{
    background-color: #fff;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    visibility: visible;
}

.contacts__map{
    bottom: -40px;
    height: auto;
    left: 0;
    position: absolute;
    top: -40px;
    width: 100%;
}

.contacts__map .gm-style-pbc + div{
    background: url(/assets/images/parts/map_lines.png) no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

/* ---------------------------------------------------------- */


/* --------------------- Projects Map ----------------------- */

body.projects-map .footer{
    display: none;
}

.projects__map{
    bottom: -40px;
    height: auto;
    left: 0;
    margin-bottom: 7em;
    position: absolute;
    top: -40px;
    width: 100%;
}

.projects__map .gm-style-pbc + div{
    background: url(/assets/images/parts/map_lines.png) no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

.projects__group-label {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    overflow: visible !important;
    cursor: pointer;
}

.projects__group-label-icon {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -15px;
    opacity: 0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.projects__map-cluster {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
}

.projects__map-cluster-text {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -12px;
    background-color: #3e4656;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    font-size: 0;
    text-align: center;
    white-space: nowrap;
}

.projects__map-cluster-text:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.projects__map-cluster-text > span {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
}

.projects__group-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.pmap__filters{
    background-color: #5d687c;
    margin: -7em 0;
    position: relative;
}

/*.pmap__filters-overflow{*/
    /*display: none;*/
    /*overflow: hidden;*/
/*}*/

/*.pmap__filters.opened .pmap__filters-overflow{*/
    /*display: block;*/
/*}*/

.pmap__filters-btn{
    background-color: #cb4829;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: block;
    height: 7em;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.pmap__filters-btn:before{
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.pmap__filters-btn .icon{
    background: url(/assets/i/sprite.svg) no-repeat -82.8em -0.5em;
    -webkit-background-size: 100em 100em;
    background-size: 100em 100em;
    display: inline-block;
    height: 4em;
    margin: 0.2em 1em 0 -2em;
    position: relative;
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -ms-transition: -ms-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease;
    vertical-align: middle;
    width: 4em;
}

/*.pmap__filters.opened .pmap__filters-btn .icon{*/
    /*-webkit-transform: rotate(180deg);*/
    /*-moz-transform: rotate(180deg);*/
    /*-ms-transform: rotate(180deg);*/
    /*-o-transform: rotate(180deg);*/
    /*transform: rotate(180deg);*/
/*}*/

.pmap__filters-btn .label{
    display: inline-block;
    font-size: 2em;
    font-weight: 500;
    line-height: 1;
    position: relative;
    text-transform: uppercase;
    vertical-align: middle;
}

.pmap__filters .content__padding{
    padding-top: 3.5em;
}

.projects__filters.disabled{
    display: none;
}

.projects__map-close{
    top: 11.5em;
}

/* ---------------------------------------------------------- */


/* ----------------------- Feedbacks ------------------------ */

.feedback__form{
    background: url(/assets/m/images/bg/feedback.jpg) no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

.feedback__bg{
    background-color: #536475;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
}

.feedback__scroll{
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

.feedback__content{
    margin: 0 auto;
    max-width: 60em;
    padding: 4.5em;
}

.feedback__title{
    display: inline-block;
    padding-bottom: 4.1em;
    position: relative;
    vertical-align: bottom;
    white-space: nowrap;
}

.feedback__title:after{
    background-color: #c34527;
    bottom: 0;
    content: "";
    display: block;
    height: 0.5em;
    left: 0;
    position: absolute;
    width: 24.2em;
}

.feedback__title span{
    display: inline-block;
    font-size: 3.9em;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.05em;
    white-space: normal;
}

.feedback__title strong{
    font-weight: bold;
}

.feedback__form-text{
    margin: 0 5em 5em 0;
}

.feedback__form-text p{
    font-size: 2em;
    line-height: 1.3em;
}

.feedback__fields{
    margin-top: 8em;
    position: relative;
}

.feedback__field{
    margin-top: 6em;
    position: relative;
    width: 100%;
}

.feedback__field-label{
    bottom: 100%;
    left: 0;
    position: absolute;
}

.feedback__field-label span{
    color: rgba(255, 255, 255, 0.57);
    font-size: 2em;
    line-height: 2;
}

.feedback__field input,
.feedback__field label,
.feedback__field textarea{
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    display: block;
    font-family: inherit;
    font-size: 2.5em;
    font-weight: 300;
    height: auto;
    letter-spacing: -0.03em;
    line-height: 1.2;
    padding: 0.75em 1em;
    position: relative;
    text-align: left;
    -webkit-transition: opacity 300ms linear, visibility 300ms linear, background 300ms linear, border 100ms linear;
    -moz-transition: opacity 300ms linear, visibility 300ms linear, background 300ms linear, border 100ms linear;
    -ms-transition: opacity 300ms linear, visibility 300ms linear, background 300ms linear, border 100ms linear;
    -o-transition: opacity 300ms linear, visibility 300ms linear, background 300ms linear, border 100ms linear;
    transition: opacity 300ms linear, visibility 300ms linear, background 300ms linear, border 100ms linear;
    width: 100%;
}

.feedback__field textarea{
    height: 8em;
    resize: none;
}

.feedback__field input:hover,
.feedback__field textarea:hover{
    border-color: rgba(83, 100, 117, 0.4);
}

.feedback__field input:focus,
.feedback__field textarea:focus{
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(83, 100, 117, 0.4);
}


.feedback__field.error input,
.feedback__field.error textarea{
    opacity: 0;
}

.feedback__field label{
    border-color: #cb4829;
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
}

.feedback__field.error label{
    opacity: 1;
    visibility: visible;
}

.feedback__sended{
    opacity: 0;
    text-align: center;
    -webkit-transition: opacity 500ms linear, visibility 500ms linear;
    -moz-transition: opacity 500ms linear, visibility 500ms linear;
    -ms-transition: opacity 500ms linear, visibility 500ms linear;
    -o-transition: opacity 500ms linear, visibility 500ms linear;
    transition: opacity 500ms linear, visibility 500ms linear;
    visibility: hidden;
    white-space: nowrap;
}

.feedback__sended:before{
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.feedback__sended-text{
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    width: 40em;
}

.feedback__sended-text p{
    font-size: 2.5em;
    font-weight: 300;
    line-height: 1.3;
}

.feedback__send{
    background-color: #cb4829;
    cursor: pointer;
    display: block;
    height: 8em;
    position: absolute;
    right: 0;
    top: 8em;
    -webkit-transition: opacity 500ms linear, visibility 500ms linear;
    -moz-transition: opacity 500ms linear, visibility 500ms linear;
    -ms-transition: opacity 500ms linear, visibility 500ms linear;
    -o-transition: opacity 500ms linear, visibility 500ms linear;
    transition: opacity 500ms linear, visibility 500ms linear;
    width: 8em;
}

.feedback__send:before{
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    opacity: 0;
    position: relative;
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -ms-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
    width: 100%;
}

.feedback__send:hover:before{
    opacity: 0.15;
}

.feedback__send:after{
    background: url(/assets/i/sprite.svg) no-repeat -54.8em -22em;
    -webkit-background-size: 100em 100em;
    background-size: 100em 100em;
    content: "";
    display: block;
    font-size: 1.5em;
    height: 3em;
    left: 50%;
    margin: -1.5em;
    position: absolute;
    top: 50%;
    width: 3em;
}

.feedback__send span{
    color: rgba(255, 255, 255, 0.87);
    font-size: 1.5em;
    left: 100%;
    line-height: 1;
    margin-left: 1.65em;
    margin-top: -0.5em;
    position: absolute;
    top: 50%;
    -webkit-transition: transform 500ms ease-in-out;
    -moz-transition: transform 500ms ease-in-out;
    -ms-transition: transform 500ms ease-in-out;
    -o-transition: transform 500ms ease-in-out;
    transition: transform 500ms ease-in-out;
}

.feedback__send:hover span{
    -webkit-transform: translate(1em, 0);
    -moz-transform: translate(1em, 0);
    -ms-transform: translate(1em, 0);
    -o-transform: translate(1em, 0);
    transform: translate(1em, 0);
}

.feedback__form.success .feedback__content,
.feedback__form.success .feedback__send{
    opacity: 0;
    visibility: hidden;
}

.feedback__form.success .feedback__sended{
    opacity: 1;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
    visibility: visible;
}

.feedback__scroll-hint{
    display: none;
}



/* ---------------------------------------------------------- */