* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

.content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: url(../img/header_bg.png) no-repeat center;
    background-size: cover;
    padding-bottom: 1px;
}

header .content {}

header .top {
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

header .top .left {
    display: flex;
    flex-wrap: wrap;
}

header .top .left .logo {
    margin-right: 32px;
}

header .top .left .logo a {}

header .top .left .logo a img {}

header .top .left .desc {
    max-width: 294px;
    color: #545e67;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

header .top .left .desc p {}

header .top .right {
    display: flex;
}

header .top .right .phone {
    margin-right: 46px;
}

header .top .right .phone a {
    margin-top: 3px;
    display: block;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 21px;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    margin-bottom: 14px;
}

header .top .right .phone p {
    color: #555e68;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 13px;
}

header .top .right .link {}

header .top .right .link a {
    border-radius: 24px;
    background-color: #e6ab1f;
    background-image: linear-gradient(to top, #de4313 0%, #fec163 100%);
    width: 230px;
    text-align: center;
    height: 48px;
    text-decoration: none;
    display: block;
    text-shadow: 0 1px 5px rgba(202, 78, 29, 0.5);
    color: #ffffff;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding-left: 28px;
    position: relative;
    box-shadow: 0px 3px 0 #ca5221;
    overflow: hidden;
}

header .top .right .link a::before {
    content: '';
    width: 14px;
    height: 14px;
    background: url(../img/phone_link_before.png) no-repeat center;
    position: absolute;
    left: calc(50% - 85px);
    top: calc(50% - 7px);
}

header .mid {
    margin-top: 156px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

header .mid .left {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

header .mid .left .separator {
    width: 100%;
    height: 5px;
    background-color: #fbb45b;
    margin-top: 19px;
    width: 61px;
}

header .mid .center {
    margin-left: 36px;
}

header .mid .center h1 {
    color: #20252a;
    font-family: "Muller Regular";
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 50px;
}

header .mid .center h1 span {
    font-family: "Muller Extra Bold";
    font-weight: 700;
}

header .mid .center ul {
    list-style: none;
    margin-bottom: 110px;
}

header .mid .center ul li {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 27px;
    padding-left: 27px;
    position: relative;
}

header .mid .center ul li span {
    color: #20252a;
    font-size: 16px;
    font-family: "Gotham Pro";
    font-weight: 700;
}

header .mid .center ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: url(../img/header_ul_before.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 2px;
}

header .mid .right {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

header .mid .right a {}

.video_link {
    width: 200px;
    height: 200px;
    position: relative;
    text-align: center;
}

.video_link .big {
    width: 200px;
    height: 200px;
    position: absolute;
    background-color: #ffffff;
    opacity: 0.4;
    left: 0;
    top: 0;
    border-radius: 50%;
    animation: big_anim 2s infinite ease-in-out;
    transition: .3s all ease-in-out;
}

.video_link .big_1 {
    z-index: 2;
    position: absolute;
    width: 154px;
    height: 154px;
    background-color: #ffffff;
    opacity: 0.5;
    border-radius: 50%;
    left: calc(50% - 154px / 2);
    top: calc(50% - 154px / 2);
    animation: big_anim_1 2s infinite ease-in-out;
    transition: .3s all ease-in-out;
}

.video_link .small {
    z-index: 3;
    position: absolute;
    width: 108px;
    background-color: #ffffff;
    height: 108px;
    left: calc(50% - 108px / 2);
    top: calc(50% - 108px / 2);
    border-radius: 50%;
}

.video_link img {
    margin-top: 85px;
    position: relative;
    z-index: 4;
}

@keyframes big_anim {
    from {
        opacity: 0.1;
    }

    25% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.4;
    }

    75% {
        opacity: 0.2;
    }

    to {
        opacity: 0.1;
    }
}

@keyframes big_anim_1 {
    from {
        opacity: 0.15;
    }

    25% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 0.3;
    }

    to {
        opacity: 0.15;
    }
}

header .bot {
    margin-bottom: 178px;
}

header .bot .item {
    max-width: 684px;
    position: relative;
    padding-left: 98px;
    height: 133px;
}

header .bot .item::before {
    content: '';
    width: 43px;
    position: absolute;
    left: 0;
    border-left: 18px solid #fbb45b;
    height: calc(100% - 18px * 2);
    border-top: 18px solid #fbb45b;
    border-bottom: 18px solid #fbb45b;
    top: 6px;
}

header .bot .item::after {
    content: '';
    width: calc(100% - 234px - 61px - 38px - 70px);
    position: absolute;
    right: 0;
    border-right: 18px solid #fbb45b;
    height: calc(100% - 18px * 2);
    border-bottom: 18px solid #fbb45b;
    top: 24px;
}

header .bot .item p {
    max-width: 466px;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 41px;
    position: relative;
}

header .bot .item p span {
    font-weight: 700;
}

header .bot .item a {
    width: 234px;
    display: block;
    border-radius: 32px;
    background-color: #ffffff;
    background-image: linear-gradient(to top, #de4313 0%, #fec163 100%);
    text-align: center;
    height: 63px;
    text-shadow: 0 1px 5px rgba(202, 78, 29, 0.5);
    color: #ffffff;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 700;
    line-height: 63px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    text-decoration: none;
    padding-right: 28px;
    position: relative;
    overflow: hidden;
}

header .bot .item .blur {
    content: '';
    position: absolute;
    width: 86px;
    height: 90px;
    background: url(../img/header_link_before.png) no-repeat center;
    left: 54px;
    top: 54px;
}

header .bot .item .border {
    width: 67px;
    height: 18px;
    position: absolute;
    right: 0;
    background-color: #fbb45b;
    top: 6px;
}

header .bot .item a::after {
    content: '';
    position: absolute;
    background: url(../img/header_link_after.png) no-repeat center;
    width: 13px;
    height: 9px;
    top: calc(50% - 9px / 2);
    left: calc(50% + 50px);
}

.clients {
    padding-bottom: 130px;
    position: relative;
}

.clients .content {}

.clients h2 {
    max-width: 600px;
    color: #20252a;
    font-size: 40px;
    line-height: 50px;
    font-family: "Muller Regular";
    font-weight: 400;
    margin: 131px auto 0;
    text-align: center;
}

.clients h2 span {
    color: #20252a;
    font-family: "Muller Regular";
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Muller Extra Bold";
    font-weight: 700;
}

.clients .items {}

.clients .items .item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 84px;
    position: relative;
    z-index: 1;
}

.clients .items .item .left {
    width: calc(50% - 15px);
    position: relative;
}

.clients .items .item .left img {
    max-width: 100%;
    z-index: 1;
    position: relative;
}

.clients .items .item .right {
    width: calc(50% - 15px);
    padding-left: 85px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.clients .items .item .right h3 {
    color: #20252a;
    font-family: "Muller Extra Bold";
    font-size: 26px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 48px;
}

.clients .items .item .right p {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 38px;
}

.clients .items .item .right p.gray {
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 10px;
    font-style: italic;
    line-height: 22px;
}

.clients .items .item .right p:last-child {
    margin-bottom: 0;
}

.clients .items .item .right ul {
    list-style: none;
}

.clients .items .item .right ul li {
    padding-left: 26px;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 15px;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 23px;
    position: relative;
}

.clients .items .item .right ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: url(../img/header_ul_before.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 2px;
}

.clients .items .item:nth-child(2n) {
    flex-direction: row-reverse;
}

.clients .items .item:nth-child(2n) .right {
    padding-left: 0;
    padding-right: 112px;
}

.clients::after {
    content: '';
    width: 128px;
    height: 140px;
    top: 570px;
    right: 90px;
    position: absolute;
    background: url(../img/clients_after.png) no-repeat center;
}

.clients .items .item:nth-child(1) .left::before {
    content: '';
    width: 267px;
    height: 254px;
    background: url(../img/clients_before.png) no-repeat center;
    position: absolute;
    left: -166px;
    top: -98px;
}

.work {
    background: #fafbf9;
    padding: 130px 0;
    position: relative;
}

.work .content {}

.work h2 {
    text-align: center;
    color: #20252a;
    font-family: "Muller Regular";
    font-size: 40px;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 84px;
}

.work .itmes {}

.work .items .item {
    display: none;
}

.work .items .item.active {
    display: flex;
}

.work .items .item .left {
    width: 55%;
    position: relative;
}

.work .items .item .left .left_top {
    border-top: 1px solid #fbb45b;
    border-left: 1px solid #fbb45b;
    left: 30px;
    top: 24px;
    position: absolute;
    height: 40px;
    z-index: 2;
    width: calc(100% - 5px);
}

.work .items .item .left .left_bot {
    width: 35%;
    height: 42px;
    border-left: 1px solid #fbb45b;
    border-bottom: 1px solid #fbb45b;
    left: 30px;
    bottom: 24px;
    position: absolute;
    z-index: 10;
}

.work .items .item .left .right_bot {
    position: absolute;
    background-color: #fbb45b;
    bottom: 24px;
    left: calc(50% + 67px);
    height: 1px;
    width: 121%;
    z-index: 2;
}

.work .items .item .left .slider {
    box-shadow: 0 3px 15px rgba(142, 130, 110, 0.3);
    border-radius: 7px;
    background-color: #000000;
    overflow: hidden;
}

.work .items .item .left .slider img {}

.work .items .item .left .slider .owl-nav {}

.work .items .item .left .slider .owl-nav .owl-prev {
    position: absolute;
    width: 48px;
    height: 99px;
    font-size: 0;
    background: url(../img/owl_prev.png) no-repeat center;
    top: calc(50% - 99px / 2);
    left: 0;
}

.work .items .item .left .slider .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 99px;
    font-size: 0;
    background: url(../img/owl_next.png) no-repeat center;
    top: calc(50% - 99px / 2);
    right: 0;
}

.work .items .item .left .slider .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.work .items .item .left .slider .owl-dots .owl-dot {
    width: 11px;
    height: 11px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin: 0 5px;
}

.work .items .item .left .slider .owl-dots .owl-dot.active {
    background-color: #ffffff;
}

.work .items .item .right {
    padding-left: 47px;
    width: 45%;
}

.work .items .item .right h3 {
    color: #20252a;
    font-family: "Muller Extra Bold";
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 15px;
}

.work .items .item .right .desc {
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-style: italic;
    line-height: 14px;
    margin-bottom: 20px;
}

.work .items .item .right .line {
    display: flex;
    justify-content: space-between;
}

.work .items .item .right .item_small {
    margin-bottom: 10px;
    width: 100%;
}

.work .items .item .right .item_small .gray {
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 700;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.work .items .item .right .item_small .black {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    max-width: 302px;
}

.work .items .item .right .item_small .black span {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 16px;
    font-weight: 700;
    line-height: 13px;
    text-transform: uppercase;
}

.work .items .item .right .line .item_small {
    width: auto;
}

.work .items .item .right .line .item_small .gray {}

.work .items .item .right .line .item_small .black {}

.work .items .item .right .separator {
    width: 67px;
    height: 1px;
    background-color: #ced0d3;
    margin-bottom: 10px;
}

.work .items_nav {
    margin-top: 37px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.work .items_nav .prev {
    height: 63px;
    line-height: 62px;
    border-radius: 32px;
    padding: 0 31px 0 60px;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    text-decoration: none;
    position: relative;
    border: 1px solid #ced0d3;
    color: #6f7883;
    width: 260px;
}

.work .items_nav .prev::before {
    content: '';
    position: absolute;
    left: 32px;
    height: 9px;
    width: 13px;
    top: calc(50% - 9px / 2);
    background: url(../img/items_nav_prev.png) no-repeat center;
    transform: rotate(0deg);
}

.work .items_nav .prev:hover {
    color: #20252a;
    border: 1px solid #fbb45b;
}

.work .items_nav .prev:hover::before {
    background: url(../img/items_nav_next.png) no-repeat center;
    transform: rotate(180deg);
}

.work .items_nav .nums {
    margin: 3px 26px;
    width: 56px;
    height: 56px;
    background: url(../img/nums_bg.png) no-repeat center;
}

.work .items_nav .nums p {
    text-align: center;
    line-height: 54px;
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.work .items_nav .nums p span {
    font-family: "Gotham Pro";
    font-weight: 500;
    text-transform: uppercase;
    color: #0c0c0c;
    font-size: 12px;
}

.work .items_nav .next {
    height: 63px;
    line-height: 62px;
    border-radius: 32px;
    padding: 0 60px 0 31px;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    text-decoration: none;
    position: relative;
    border: 1px solid #ced0d3;
    color: #6f7883;
    width: 260px;
}

.work .items_nav .next::before {
    content: '';
    position: absolute;
    right: 32px;
    height: 9px;
    width: 13px;
    background: url(../img/items_nav_prev.png) no-repeat center;
    transform: rotate(180deg);
    top: calc(50% - 9px / 2);
}

.work .items_nav .next:hover {
    border: 1px solid #fbb45b;
    color: #20252a;
}

.work .items_nav .next:hover::before {
    background: url(../img/items_nav_next.png) no-repeat center;
    top: calc(50% - 9px / 2);
    transform: rotate(0deg);
}

.work::before {
    content: '';
    width: 179px;
    height: 94px;
    background: url(../img/work_before.png) no-repeat center;
    top: 117px;
    right: 64px;
    position: absolute;
}

.work::after {
    content: '';
    position: absolute;
    bottom: 300px;
    left: 32px;
    width: 137px;
    height: 136px;
    background: url(../img/work_after.png) no-repeat center;
}

.project {
    padding: 131px 0;
}

.project .content {}

.project .items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.project .items .left {
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.project .items .left h2 {
    color: #20252a;
    font-size: 40px;
    line-height: 46px;
    font-family: "Muller Regular";
    font-weight: 400;
    margin-bottom: 30px;
}

.project .items .left h2 span {
    font-family: "Muller Extra Bold";
    font-weight: 700;
}

.project .items .left .desc {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 22px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 50px;
}

.project .items .left .text {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 35px;
}

.project .items .left .line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.project .items .left .line .line_left {
    width: 194px;
    margin-left: -18px;
    text-align: center;
}

.project .items .left .line .line_left img {}

.project .items .left .line .line_left p {
    width: 194px;
    text-align: center;
    height: 43px;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 700;
    line-height: 43px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: url(../img/project_line_text.png) no-repeat center;
    margin-top: -4px;
}

.project .items .left .line .line_right {
    width: calc(100% - 194px - 10px);
}

.project .items .left .line .line_right p {
    margin-top: 20px;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.project .items .left .line .line_right ul {
    list-style: none;
}

.project .items .left .line .line_right ul li {
    margin-top: 36px;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    padding-left: 27px;
    position: relative;
}

.project .items .left .line .line_right ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: url(../img/header_ul_before.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 2px;
}

.project .items .right {
    width: 457px;
    position: relative;
    margin-top: 124px;
}

.project .items .right .right_in {
    height: calc(100% - 14px);
    box-shadow: 0 7px 33px 2px rgba(171, 176, 187, 0.1);
    border-radius: 15px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    padding: 12px;
}

.project .items .right::before {
    content: '';
    width: 562px;
    height: 566px;
    position: absolute;
    top: -244px;
    right: -261px;
    background: url(../img/project_right_before.png) no-repeat center;
}

.project .items .right::after {
    content: '';
    background: url(../img/project_right_after.png) no-repeat center;
    width: 136px;
    height: 250px;
    position: absolute;
    top: 97px;
    left: -101px;
}

.project .items .right .right_in .right_border {
    height: 100%;
    border-radius: 15px;
    border: 1px solid rgba(206, 208, 211, 0.3);
    background-color: #ffffff;
    padding: 54px 36px;
}

.project .items .right .right_in .right_border .big {
    color: #000000;
    font-family: "Muller Extra Bold";
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    margin-bottom: 36px;
}

.project .items .right .right_in .right_border .line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 8px;
    margin-bottom: 23px;
}

.project .items .right .right_in .right_border .line .item {
    text-align: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.project .items .right .right_in .right_border .line .item .icon {
    height: 24px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 13px;
}

.project .items .right .right_in .right_border .line .item .icon p {}

.project .items .right .right_in .right_border .line .item .icon p img {}

.project .items .right .right_in .right_border .line .item a {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    padding-bottom: 1px;
    text-decoration: none;
    border-bottom: 1px solid #ced0d3;
}

.project .items .right .right_in .right_border .line .item.active a {
    color: #e04c19;
    border-bottom: transparent;
}

.project .items .right .right_in .right_border input {
    width: 100%;
    height: 75px;
    line-height: 75px;
    border-radius: 10px;
    background-color: #f9f9f9;
    border: none;
    padding: 0 41px;
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 27px;
}

.project .items .right .right_in .right_border button {
    height: 75px;
    line-height: 75px;
    width: 100%;
    text-align: center;
    border-radius: 38px;
    background-color: #000000;
    background-image: linear-gradient(to top, #de4313 0%, #fec163 100%);
    display: block;
    text-shadow: 0 1px 5px rgba(202, 78, 29, 0.5);
    color: #ffffff;
    font-family: "Gotham Pro";
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.97px;
    cursor: pointer;
    box-shadow: 0px 3px 0 #ca5221;
    border: none;
    position: relative;
    overflow: hidden;
}

.project .items .right .right_in .right_border .small {
    margin-top: 44px;
    text-align: center;
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
}

.project .items .right .right_in .right_border .small a {
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    color: #60a2f8;
    text-decoration: none;
}

.project .items .right .right_in_bot {
    height: 100%;
    position: absolute;
    top: 0;
    width: calc(100% - 28px * 2);
    left: 28px;
    box-shadow: 0 7px 33px 2px rgba(171, 176, 187, 0.1);
    border-radius: 15px;
    background-color: #ffffff;
}

.gotovy {
    padding-bottom: 130px;
}

.gotovy .content {}

.gotovy .items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gotovy .items .left {
    width: calc(50% - 15px);
    position: relative;
}

.gotovy .items .left img {
    max-width: 100%;
}

.gotovy .items .right {
    width: calc(50% - 15px);
    padding-left: 85px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.gotovy .items .right h2 {
    color: #20252a;
    font-family: "Muller Extra Bold";
    font-size: 26px;
    font-weight: 400;
    line-height: 31px;
    margin-bottom: 48px;
}

.gotovy .items .right .small {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 36px;
}

.gotovy .items .right .big {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 17px;
    font-weight: 700;
    line-height: 15px;
    margin-bottom: 39px;
}

.gotovy .items .right a {
    width: 266px;
    display: block;
    border-radius: 32px;
    background-color: #ffffff;
    background-image: linear-gradient(to top, #de4313 0%, #fec163 100%);
    text-align: center;
    height: 63px;
    text-shadow: 0 1px 5px rgba(202, 78, 29, 0.5);
    color: #ffffff;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 700;
    line-height: 63px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    text-decoration: none;
    padding-right: 28px;
    position: relative;
    box-shadow: 0 2px 0 #ca5221;
    overflow: hidden;
}

.gotovy .items .right a::after {
    content: '';
    position: absolute;
    background: url(../img/header_link_after.png) no-repeat center;
    width: 13px;
    height: 9px;
    top: calc(50% - 9px / 2);
    right: 46px;
}

.team {}

.team .content {}

.team h2 {
    color: #20252a;
    font-size: 40px;
    line-height: 50px;
    font-family: "Muller Regular";
    font-weight: 400;
    text-align: center;
    max-width: 717px;
    margin: 0 auto 87px;
}

.team h2 span {
    font-family: "Muller Extra Bold";
    font-weight: 700;
}

.team .slider {}

.team .slider .item_out {
    margin-top: 46px;
}

.team .slider .item_out .item {
    border-radius: 10px;
    background-color: #f9f9f9;
    padding: 31px 23px;
}

.team .slider .item_out .item .item_top {
    margin-top: -77px;
    background: url(../img/team_item_top.png) no-repeat center bottom;
    position: relative;
}

.team .slider .item_out .item .item_top img {
    width: auto;
    margin: 0 auto;
    max-width: 100%;
}

.team .slider .item_out .item .item_top::after {
    content: '';
    width: 22px;
    height: 37px;
    left: 24px;
    bottom: -18px;
    background: url(../img/team_item_top_after.png);
    position: absolute;
}

.team .slider .item_out .item ul {
    margin-top: 30px;
    list-style: none;
}

.team .slider .item_out .item ul li {
    margin-top: 19px;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    padding-left: 23px;
    position: relative;
}

.team .slider .item_out .item ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: url(../img/header_ul_before.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 1px;
}

.team .slider .item_out .item_bot {
    margin-top: 32px;
    padding-left: 47px;
}

.team .slider .item_out .item_bot .name {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    margin-bottom: 18px;
}

.team .slider .item_out .item_bot .small {
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
}

.team .slider .item_out_1 {
    margin-top: 82px;
}

.team .slider .owl-nav {}

.team .slider .owl-nav .owl-prev {
    width: 47px;
    height: 47px;
    position: absolute;
    top: 141px;
    border-radius: 7px;
    border: 1px solid #ced0d3;
    background-color: #ffffff;
    left: calc(-71px - 47px);
    background: url(../img/team_slider_prev.png) no-repeat center;
    font-size: 0;
}

.team .slider .owl-nav .owl-next {
    width: 47px;
    height: 47px;
    position: absolute;
    top: 141px;
    border-radius: 7px;
    border: 1px solid #ced0d3;
    background-color: #ffffff;
    right: calc(-71px - 47px);
    background: url(../img/team_slider_next.png) no-repeat center;
    font-size: 0;
}

.team .slider .owl-nav .owl-prev:hover {
    border: 1px solid #fbb45b;
}

.team .slider .owl-nav .owl-next:hover {
    border: 1px solid #fbb45b;
}

.faq {
    padding: 120px 0 130px 0;
}

.faq .content {}

.faq h2 {
    color: #20252a;
    font-size: 40px;
    line-height: 50px;
    font-family: "Muller Regular";
    font-weight: 400;
    max-width: 654px;
    text-align: center;
    margin: 0 auto 63px;
}

.faq h2 span {
    font-family: "Muller Extra Bold";
    font-weight: 700;
}

.faq .items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.faq .items .left {
    margin-top: 20px;
    width: 40%;
}

.faq .items .left a {
    display: block;
    box-shadow: 0 0 10px 1px rgba(171, 176, 187, 0.15);
    border-radius: 5px;
    background-color: #ffffff;
    height: 54px;
    line-height: 54px;
    padding: 0 26px;
    margin-bottom: 17px;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}

.faq .items .left a::after {
    content: '';
    position: absolute;
    background: url(../img/faq_left.png) no-repeat center;
    width: 14px;
    height: 10px;
    right: 27px;
    top: calc(50% - 5px);
}

.faq .items .left a.active,
.faq .items .left a:hover {
    border-radius: 5px;
    background-color: #ffffff;
    background-image: linear-gradient(to top, #de4313 0%, #fec163 100%);
    text-shadow: 0 1px 5px rgba(202, 78, 29, 0.5);
    color: #ffffff;
    font-family: "Gotham Pro";
    font-size: 15px;
    font-weight: 400;
}

.faq .items .left a.active::after,
.faq .items .left a:hover::after {
    content: '';
    background: url(../img/faq_left_active.png);
}

.faq .items .right {
    margin-top: 20px;
    width: calc(55% - 15px);
    position: relative;
}

.faq .items .right .big_img {
    width: 100%;
    position: relative;
    margin-bottom: -5px;
    border-radius: 10px;
}

.faq .items .right .video_link {
    position: absolute;
    left: calc(50% - 130px / 2);
    top: calc(50% - 130px / 2);
    width: 130px;
    height: 130px;
}

.faq .items .right .long {
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #ffffff;
    line-height: 51px;
    height: 51px;
    border-radius: 0 10px 0 10px;
    padding: 0 39px;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 15px;
    font-weight: 400;
}

.faq .items .right .video_link .big {
    width: 130px;
    height: 130px;
}

.faq .items .right .video_link .big_1 {
    width: 100px;
    height: 100px;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
}

.faq .items .right .video_link .small {
    width: 70px;
    height: 70px;
    left: calc(50% - 70px / 2);
    top: calc(50% - 70px / 2);
}

.faq .items .right .video_link img {
    margin-top: 55px;
}

.faq .items .right .right_out {
    position: relative;
    box-shadow: 0 3px 19px 1px rgba(171, 176, 187, 0.15);
    border-radius: 10px;
}

.faq .items .right .right_out::before {
    width: 171px;
    content: '';
    height: 354px;
    background: url(../img/faq_right_after.png) no-repeat center;
    top: -14px;
    right: -109px;
    position: absolute;
}

.contacts {
    padding-bottom: 90px;
}

.contacts .content {}

.contacts h2 {
    color: #20252a;
    font-family: "Muller Regular";
    font-size: 40px;
    font-weight: 400;
    line-height: 29px;
    text-align: center;
    margin-bottom: 30px;
}

.contacts .items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contacts .items .left {
    margin-top: 60px;
}

.contacts .items .left .separator {
    width: 68px;
    height: 3px;
    background-color: #febd34;
}

.contacts .items .left .small_item {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.contacts .items .left .small_item .item_left {
    margin-right: 22px;
}

.contacts .items .left .small_item .item_left img {
    margin-top: 2px;
}

.contacts .items .left .small_item .item_right {}

.contacts .items .left .small_item .item_right .black {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 13px;
    font-weight: 500;
    line-height: 11px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 12px;
}

.contacts .items .left .small_item .item_right .gray {
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.contacts .items .right {
    margin-top: 60px;
    width: 653px;
}

.contacts .items .right h3 {
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 22px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 10px;
}

.contacts .items .right .line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contacts .items .right .line input {
    margin-top: 17px;
    width: calc(50% - 37px / 2);
    border-radius: 5px;
    background-color: #f9f9f9;
    border: none;
    height: 43px;
    line-height: 43px;
    padding: 0 25px;
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 15px;
    font-weight: 400;
}

.contacts .items .right textarea {
    margin-top: 17px;
    height: 87px;
    width: 100%;
    border-radius: 5px;
    background-color: #f9f9f9;
    border: none;
    padding: 17px 26px;
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    resize: none;
}

.contacts .items .right button {
    margin-top: 17px;
    width: 231px;
    display: block;
    float: right;
    border-radius: 26px;
    background-color: #ffffff;
    background-image: linear-gradient(to top, #de4313 0%, #fec163 100%);
    border: none;
    height: 52px;
    line-height: 52px;
    text-shadow: 0 1px 5px rgba(202, 78, 29, 0.5);
    color: #ffffff;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    box-shadow: 0 2px 0 #ca5221;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.map {
    border: none;
}

footer .top {
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 36px;
}

footer .top .left {
    display: flex;
    flex-wrap: wrap;
}

footer .top .left .logo {
    margin-right: 32px;
}

footer .top .left .logo a {}

footer .top .left .logo a img {}

footer .top .left .desc {
    max-width: 294px;
    color: #545e67;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

footer .top .left .desc p {}

footer .top .right {
    display: flex;
}

footer .top .right .phone {
    margin-right: 46px;
}

footer .top .right .phone a {
    margin-top: 3px;
    display: block;
    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 21px;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    margin-bottom: 14px;
}

footer .top .right .phone p {
    color: #555e68;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 13px;
}

footer .top .right .link {}

footer .top .right .link a {
    border-radius: 24px;
    background-color: #e6ab1f;
    background-image: linear-gradient(to top, #de4313 0%, #fec163 100%);
    width: 230px;
    text-align: center;
    height: 48px;
    text-decoration: none;
    display: block;
    text-shadow: 0 1px 5px rgba(202, 78, 29, 0.5);
    color: #ffffff;
    font-family: "Gotham Pro";
    font-size: 12px;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding-left: 28px;
    position: relative;
    box-shadow: 0px 3px 0 #ca5221;
    overflow: hidden;
}

footer .top .right .link a::before {
    content: '';
    width: 14px;
    height: 14px;
    background: url(../img/phone_link_before.png) no-repeat center;
    position: absolute;
    left: calc(50% - 85px);
    top: calc(50% - 7px);
}

.video_link:hover .big,
.video_link:hover .big_1 {
    animation: none;
}

header .top .right .link a:hover,
header .bot .item a:hover,
.project .items .right .right_in .right_border button:hover,
.gotovy .items .right a:hover,
.contacts .items .right button:hover,
footer .top .right .link a:hover {
    background-image: linear-gradient(to top, #de4313 50%, #fec163 100%);
}

.pop_up_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    display: none;
    cursor: pointer;
}

.pop_up_bg.active {
    display: block;
}

.pop_up {
    width: 350px;
    height: 395px;
    left: calc(50% - 350px / 2);
    top: calc(50% - 200px);
    position: fixed;
    z-index: 11;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    display: none;
}

.pop_up.active {
    display: block;
}

.pop_up .close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 10px;
}

.pop_up .close::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    transform: rotate(-45deg);
}

.pop_up .close::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

.pop_up h2 {
    color: #000000;
    font-family: "Muller Extra Bold";
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    margin-bottom: 27px;
}

.pop_up input {
    width: 100%;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    background-color: #f9f9f9;
    border: none;
    padding: 0 21px;
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 27px;
}

.pop_up button {
    height: 50px;
    line-height: 50px;
    width: 100%;
    text-align: center;
    border-radius: 38px;
    background-color: #000000;
    background-image: linear-gradient(to top, #de4313 0%, #fec163 100%);
    display: block;
    text-shadow: 0 1px 5px rgba(202, 78, 29, 0.5);
    color: #ffffff;
    font-family: "Gotham Pro";
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.97px;
    cursor: pointer;
    box-shadow: 0px 3px 0 #ca5221;
    border: none;
}

.pop_up button:hover {
    background-image: linear-gradient(to top, #de4313 50%, #fec163 100%);
}

.pop_up .small {
    margin-top: 27px;
    text-align: center;
    color: #6f7883;
    font-family: "Gotham Pro";
    font-size: 11px;
    font-weight: 400;
    line-height: 19px;
}

.pop_up .text {
    margin-bottom: 27px;
    text-align: center;
    color: #000000;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
}

.pop_up .small a {
    color: #60a2f8;
    text-decoration: none;
}

.pop_up_send {
    width: 350px;
    height: 200px;
    left: calc(50% - 350px / 2);
    top: calc(50% - 100px);
    position: fixed;
    z-index: 11;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    justify-content: center;
    flex-direction: column;
    display: none;
}

.pop_up_send.active {
    display: flex;
}

.pop_up_send .close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 10px;
}

.pop_up_send .close::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

.pop_up_send .close::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    transform: rotate(-45deg);
}

.pop_up_send .small {
    color: #000000;
    font-family: "Muller Extra Bold";
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

header .top .right .link a::after {
    content: '';
}

.work .items .item .left .slider {
    height: 475px;
    overflow: hidden;
}

.btn__blik {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

@-webkit-keyframes sheens {

    0%,
    79% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
        transform: rotateZ(60deg) translate(-5em, 7.5em)
    }

    80% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
        transform: rotateZ(60deg) translate(-5em, 7.5em)
    }

    95% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: rotateZ(60deg) translate(1em, -11em);
        transform: rotateZ(60deg) translate(1em, -11em)
    }

    to {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: rotateZ(60deg) translate(1em, -9em);
        transform: rotateZ(60deg) translate(1em, -9em)
    }
}

@keyframes sheens {

    0%,
    79% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
        transform: rotateZ(60deg) translate(-5em, 7.5em)
    }

    80% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
        transform: rotateZ(60deg) translate(-5em, 7.5em)
    }

    95% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: rotateZ(60deg) translate(1em, -11em);
        transform: rotateZ(60deg) translate(1em, -11em)
    }

    to {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: rotateZ(60deg) translate(1em, -9em);
        transform: rotateZ(60deg) translate(1em, -9em)
    }
}

.btn__blik:after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(229, 172, 142, 0)), color-stop(50%, rgba(255, 255, 255, .7)), color-stop(50%, rgba(229, 172, 142, 0)));
    background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, .7) 50%, rgba(229, 172, 142, 0));
    -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
    -ms-transform: rotate(60deg) translate(-5em, 7.5em);
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-animation: sheens 3s infinite;
    animation: sheens 3s infinite;
    z-index: 1;
}


.fancybox-content {max-width: 800px !important;}

.project .items .right .right_in .right_border .line .item .icon p .off {display: block;margin: 0 auto;}
.project .items .right .right_in .right_border .line .item .icon p .on {display: none; margin: 0 auto;}
.project .items .right .right_in .right_border .line .item.active .icon p .off {display: none;}
.project .items .right .right_in .right_border .line .item.active .icon p .on {display: block;}

.p-5 h2 {    color: #000000;
    font-family: "Muller Extra Bold";
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 36px;}
.p-5 p {    color: #20252a;
    font-family: "Gotham Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;}

.project .items .right .right_in .right_border .line .item:nth-child(2).active a {color: #54cc61;}
.project .items .right .right_in .right_border .line .item:nth-child(3).active a {color: #834995;}
.project .items .right .right_in .right_border .line .item:nth-child(4).active a {color: #31a8db;}