*,
*::before,
*::after {
    box-sizing: border-box;
}

ul[class],
ol[class] {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1;
}

ul[class],
ol[class] {
    list-style: none;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}
:focus {
    outline: none;
}
body {
    background: #292929;
    font-family: "Open Sans";
}

.wrap {
    width: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

.sidebar {
    border-right: 1px solid rgba(239, 239, 239, 0.05);
    display: flex;
    text-align: center;
    width: 100px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background: #292929; */
    background-image: url(../img/crosses.svg);
    background-position: left -43px bottom -43px;
    background-repeat: no-repeat;
    z-index: 15;
}

.face-book {
    cursor: pointer;
}

.sidebar span,.sidebar .about{
    letter-spacing: 0.38px;
    color: #7a7a7a;
    display: table;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding-bottom: 100px;
    position: relative;
}

.sidebar span:after, .sidebar .about:after {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #7a7a7a;
    width: 2px;
    height: 40px;
    content: "";
}

.sidebar:hover span:after, .sidebar:hover .about:after {
    background: #48ab41;
    transition: 0.3s;
}

.sidebar:before {
    content: "";
    width: 15px;
    height: 15px;
    z-index: 1;
    position: absolute;
    top: 93px;
    left: 92px;
    background: url(../img/cross_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sidebar:after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    z-index: 1;
    bottom: 118px;
    left: 92px;
    background: url(../img/cross_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.content {
    /* height: 100vh; */
    /* min-height: calc(var(--vh, 1vh) * 100); */
    display: flex;
    flex-direction: column;
}

header {
    border-bottom: 1px solid rgba(239, 239, 239, 0.05);
    display: flex;
    padding: 19px 0 18px;
    z-index: 14;
    background: #292929;
    position: fixed;
    width: 100%;
}

main {
    /* flex: 1 0 auto; */
    /* z-index: 2; */
}

footer {
    flex-shrink: 0;
    border-top: 1px solid rgba(239, 239, 239, 0.05);
    height: 126px;
    z-index: 14;
    background: #292929;
    width: 100%;
    position: fixed;
    bottom: 0;
    display: none;
}

@media (max-width: 769px) { 
    footer {
        display: flex; 
    }  
}

.container {
    padding: 0 0 0 190px;
    width: 1726px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.logo {
    cursor: pointer;
}

.logo img {
    height: 63px;
}

.logo img:last-child {
    display: none;
}

.mobile_menu_btn {
    display: none;
}

ul.menu {
    margin: 0px 40px;
    margin-left: auto;
    font-size: 16px;
    line-height: 22px;
    display: flex;
}

.menu_wrap {
    margin-left: auto;
    position: relative;
}

.menu li {
    margin: 0px 10px;
    color: #efefef;
    position: relative;
}

.menu li a {
    opacity: 0.5;
    transition: 0.3s;
    position: relative;
    display: inline-block;
    font-size: 15px;
}

.menu li.active:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 63px;
    border-radius: 3px;
    bottom: -40px;
    left: 0;
    background: #48ab41;
    transition: 0.3s;
}

/* .menu_active_item_line {
    position: absolute;
    height: 3px;
    width: 63px;
    border-radius: 3px;
    bottom: -40px;
    left: 39px;
    background: #48ab41;
    transition: 0.3s;
} */

.menu li.active a,
.menu li a:hover {
    color: #ececec;
    opacity: 1;
    transition: 0.3s;
}

.order_top_btn {
    border: 2px solid #48ab41;
    border-radius: 16px;
    padding: 14px 50px 13px;
    cursor: pointer;
    transition: border 0.3s;
    margin-left: 80px;
    color: #ffffff;
    position: relative;
}

.order_top_btn:hover {
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border 0.3s;
}

.order_top_btn:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border 0.3s;
}

.order_top_btn:hover:before {
    border: 2px dashed #48ab41;
}

.lang {
    color: rgba(239, 239, 239, 0.5);
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-right: 43px;
    position: relative;
    transition: color 0.3s;
}

.lang:hover {
    color: #ffffff;
    transition: color 0.3s;
}

.lang_flags {
    position: absolute;
    right: 0;
    top: -7px;
    width: 30px;
    border-radius: 15px;
    border: 2px solid #515151;
    transition: border 0.3s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: 13px;
    cursor: pointer;
}

.lang:hover .lang_flags {
    border: 2px solid #48ab41;
    transition: border 0.3s;
}

.lang_flag {
    overflow: hidden;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    margin: 4px;
    display: none;
}

.lang_flag.active {
    display: block;
}
.lang_flags.active .lang_flag {
    display: block;
}

.sidebar_icon {
    margin: 20px 0;
}

.sidebar_icon path {
    fill: #7a7a7a;
    transition: 0.3s;
}

.sidebar_icon path.a {
    fill: none;
}

.sidebar:hover span, .sidebar:hover .about {
    color: #48ab41;
    transition: 0.3s;
}

.sidebar:hover {
    color: #48ab41;
    transition: 0.3s;
}

.sidebar:hover .c {
    fill: #708cff;
    transition: 0.3s;
}

.sidebar:hover .b {
    fill: #63c95c;
    transition: 0.3s;
}

.sidebar:hover .a {
    fill: white;
    transition: 0.3s;
}

.tags {
    margin-top: 35px;
    display: flex;
    width: 100%;
}

.tag {
    font-size: 40px;
    line-height: 80px;
    font-weight: 300;
    color: #c6c6c6;
    margin-right: 40px;
    position: relative;
    z-index: 0;
}

.tag:before {
    background: #333333;
    position: absolute;
    left: -13px;
    top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    content: "";
    z-index: -1;
}

.tag span {
    color: #a7c816;
}

.main_slider {
    height: 100%;
    max-height: 100vh;
}

.slide_main {
    height: 100%;
}

.slide_main {
    background-image: url(../img/home_bg.png);
    background-repeat: no-repeat;
    background-position: top 50% left 1000px;
    background-size: auto 424px;
}
.slide_services {
    background-image: url(../img/uslugi_bg.png);
    background-repeat: no-repeat;
    background-position: top 50% left 1500px;
    background-size: auto 424px;
}
.slide_technologies {
    background-image: url(../img/uslugi_bg.png);
    background-repeat: no-repeat;
    background-position: top 50% left 1500px;
    background-size: auto 424px;
}
.slide_form {
    display: table;
    background-image: url(../img/form_bg.png);
    background-repeat: no-repeat;
    background-position: top 50% left 1000px;
    background-size: auto 424px;
    opacity: 0;
    z-index: 1 !important;
}
.slide_main h1 {
    margin-top: 187px;
    font-size: 64px;
    line-height: 80px;
    font-weight: 500;
    letter-spacing: 2.56px;
    color: #ececec;
    text-transform: uppercase;
}

.slide_main h1 span {
    color: #a7c816;
}

.main_slider_navigation {
    display: flex;
    align-items: center;
}

.main_slider_navigation_prev {
    border: 2px solid #48ab41;
    width: 46px;
    height: 46px;
    border-radius: 23px;
    position: relative;
    transition: 0.3s;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_slider_navigation_prev svg path,
.main_slider_navigation_next svg path {
    transition: 0.3s;
    fill: rgba(255, 255, 255, 0.5);
}

.main_slider_navigation_prev:hover svg path,
.main_slider_navigation_next:hover svg path {
    transition: 0.3s;
    fill: rgba(255, 255, 255, 1);
}

.main_slider_navigation_prev.disabled svg path,
.main_slider_navigation_next.disabled svg path {
    transition: 0.3s;
    fill: rgba(255, 255, 255, 0.1);
}

.main_slider_navigation_prev.disabled,
.main_slider_navigation_next.disabled {
    border: 2px solid rgba(81, 81, 81, 0.3);
    pointer-events: none;
    cursor: default;
}

.main_slider_navigation_prev:before {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    border: 4px solid transparent;
    opacity: 0;
    border-radius: 25px;
    display: block;
}

.main_slider_navigation_prev:hover {
    border: 2px dashed transparent;
    transition: 0.3s;
}

.main_slider_navigation_prev:hover:before {
    border: 2px dashed rgba(72, 171, 65, 1);
    opacity: 1;
    transition: 0.3s;
    transform: rotate(90deg);
}

.main_slider_navigation_next {
    border: 2px solid #48ab41;
    width: 46px;
    height: 46px;
    border-radius: 23px;
    position: relative;
    margin-left: 10px;
    transition: 0.3s;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_slider_navigation_next:before {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    border: 2px dashed rgba(72, 171, 65, 1);
    opacity: 0;
    border-radius: 25px;
    transition: 0.3s;
    display: block;
}

.main_slider_navigation_next:hover {
    border: 2px dashed transparent;
    transition: 0.3s;
}

.main_slider_navigation_next:hover:before {
    border: 2px dashed rgba(72, 171, 65, 1);
    opacity: 1;
    transition: 0.3s;
    transform: rotate(90deg);
}

.main_slider_navigation_page > span {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 1.2px;
    color: #48ab41;
    overflow: hidden;
    display: inline-block;
    position: relative;
    top: 9px;
    height: 50px;
}

.main_slider_navigation_page > span span {
    transition: transform 0.3s;
    display: block;
}

.main_slider_navigation_page {
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    letter-spacing: 0.48px;
    color: #666666;
    flex-shrink: 0;
}

.main_slider_navigation {
    width: 100%;
}

.main_slider_navigation_line {
    margin-left: 80px;
    margin-right: 80px;
    width: 100%;
}

.slide_main_order_btn {
    margin-top: 60px;
    /* border: 2px solid rgba(72, 171, 65, 1); */
    background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect rx='16' ry='16' width='100%' height='100%' style='fill: none; stroke: rgba(72, 171, 65, 1); stroke-width: 4; stroke-dasharray: 5 0'/></svg>");
    padding: 19px 93px 19px 50px;
    position: relative;
    border-radius: 16px;
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
}

.slide_main_order_btn:hover {
    transition: 0.3s;
    background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect rx='16' ry='16' width='100%' height='100%' style='fill: none; stroke: rgba(72, 171, 65, 1); stroke-width: 4; stroke-dasharray: 5 5'/></svg>");
}

.slide_main_order_btn svg {
    fill: #ffffff;
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
}

.form_btn {
    margin-top: 20px;
    /* border: 2px solid rgba(72, 171, 65, 1); */
    background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect rx='16' ry='16' width='100%' height='100%' style='fill: none; stroke: rgba(72, 171, 65, 1); stroke-width: 4; stroke-dasharray: 5 0'/></svg>");
    padding: 19px 93px 19px 50px;
    position: relative;
    border-radius: 16px;
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    transition: 0.3s;
    background-color: transparent;
    border: none;
}

.form_btn:hover {
    transition: 0.3s;
    background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect rx='16' ry='16' width='100%' height='100%' style='fill: none; stroke: rgba(72, 171, 65, 1); stroke-width: 4; stroke-dasharray: 5 5'/></svg>");
}

.form_btn svg {
    fill: #ffffff;
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
}

.main_slider {
    position: relative;
}

.main_slider h2 {
    margin-top: 78px;
    font-size: 50px;
    line-height: 86px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ececec;
    opacity: 0.2;
    width: 100%;
}

.services_cols {
    margin-top: 78px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.services_cols a{
    border-bottom: 1px dashed #c6c6c6;
}
.services_cols a:hover{
    color: #ffffff;
}

.linkunderline{
    border-bottom: 1px dashed #c6c6c6;
}
.linkunderline:hover{
    color: #ffffff;
}

.services_col {
    width: 460px;
}

.services_icon {
}

.services_h3 {
    margin-top: 53px;
    font-size: 32px;
    line-height: 80px;
    color: #c6c6c6;
    font-weight: 500;
}

.services_ul {
    margin-top: 48px;
}

.services_ul li {
    font-weight: 300;
    font-size: 18px;
    line-height: 40px;
    color: #c6c6c6;
    opacity: 0.6;
    display: block;
    position: relative;
    padding-left: 40px;
}

.services_ul li:before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    content: "";
    background: #48ab41;
    border-radius: 2px;
    width: 10px;
    height: 2px;
}

.slide {
    position: absolute;
    height: 100%;
    /* opacity: 0; */
    z-index: 0;
    transition: 0.3s;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transform: translateX(0%);
    /* display: none; */
}

/* .slide.active {
    opacity: 1;
    z-index: 2;
    transition: 0.3s;
    max-height: 100%;
    display: table;
} */

.slide .container {
    min-height: 100%;
    /* height: 100%; */
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 126px;
}

.bg_line {
    border-left: 1px solid rgba(239, 239, 239, 0.05);
    height: 100%;
    position: absolute;
    width: 1px;
    top: 0;
}

.bg_line1 {
    left: 570px;
}

.bg_line2 {
    left: 1020px;
}

.bg_line3 {
    left: 570px;
}

.technologies_cols {
    margin-top: 58px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.technologies_h3 {
    font-size: 32px;
    line-height: 80px;
    color: #c6c6c6;
    position: relative;
    padding-left: 40px;
    width: 100%;
    font-weight: 500;
}

.technologies_h3:before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    content: "";
    width: 22px;
    height: 22px;
    background-image: url(../img/technologies_h3_bg.svg);
}

.technologies_col_1 {
    width: 440px;
}

.technologies_ul {
    margin-top: 48px;
}

.technologies_ul li {
    font-weight: 300;
    font-size: 16px;
    line-height: 40px;
    color: #c6c6c6;
    opacity: 0.6;
    display: block;
    position: relative;
    padding-left: 40px;
}

.technologies_ul li:before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    content: "";
    background: #48ab41;
    border-radius: 2px;
    width: 10px;
    height: 2px;
}

.technologies_col_2 {
    width: calc(100% - 440px);
    display: flex;
    flex-wrap: wrap;
}

.technologies_ul {
    width: 250px;
}

.technologies_col_2 .technologies_ul:last-child {
    width: 100%;
    margin-top: 54px;
    display: flex;
}

.technologies_col_2 .technologies_ul:last-child li {
    padding-right: 110px;
}

.clients {
    width: 100%;
}
.clients .list_dots {
    margin-top: 120px;
}

.client_list {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    transition: 0.3s;
    opacity: 0;
}

.client_list.active {
    display: flex;
    opacity: 1;
    transition: 0.3s;
}

.client_list_row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.clients_mobile {
    display: none;
}

.technologies_wrap {
    display: flex;
    flex-wrap: wrap;
}

.client {
    margin-top: 86px;
    display: flex;
    align-items: center;
    max-width: 25%;
}

.client img {
    display: inline-block;
    max-height: 97px;
    /* mix-blend-mode: lighten; */
    filter: grayscale(1);
    transition: 0.3s;
}
/* .de .client { */
/* margin-top: 30px; */
/* align-items: center; */
/* width: calc(33.33% - 50px); */
/* max-width: none; */
/* } */

/* .de .client_list_row{ */
/* flex-wrap: wrap; */
/* justify-content: normal; */
/* } */
/* .de .client img { */
/* max-height: 170px; */
/* } */

.client img:hover {
    filter: grayscale(0);
    transition: 0.3s;
}
.client {
    margin-right: 50px;
    background: #292929;
}

.main_slider_navigation_line {
    display: flex;
}

.main_slider_navigation_line span {
    flex-shrink: 0;
    width: 50px;
    background: #efefef;
    border-radius: 3px;
    opacity: 0.2;
    margin-right: 30px;
    height: 2px;
    transition: 0.3s;
    display: block;

}

.main_slider_navigation_line span a {
   display: block;
   height: 2px;
}

.main_slider_navigation_line span:last-child {
    margin-right: 0;
}

.main_slider_navigation_line span.active {
    width: 100%;
    background: #48ab41 0% 0% no-repeat padding-box;
    border-radius: 3px;
    opacity: 1;
    transition: 0.3s;
    flex-shrink: 1;
}

.team_wrap {
    display: flex;
}

.team_item_big {
    opacity: 0;
    margin-top: 120px;
    width: 700px;
    transition: 0.3s;
    display: none;
}

.team_item_big.active {
    opacity: 1;
    transition: 0.3s;
    display: flex;
}

.team_item_big_img {
    width: 244px;
    height: 244px;
    float: left;
    flex-shrink: 0;
}

.team_item_big_img img {
    width: 244px;
    height: 244px;
    border-radius: 244px;
}

.team_item_big_info {
    padding-left: 40px;
    margin-top: 30px;
}

.team_item_big_post {
    color: #48ab41;
    font-size: 14px;
    font-weight: 500;
}

.team_item_big_name {
    margin-top: 5px;
    color: #c6c6c6;
    font-size: 30px;
    font-weight: 500;
}

.team_item_big_bio {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.team_item_big_bio_item {
    width: 200px;
    margin-top: 12px;
}

.team_item_big_bio_item span:first-child {
    font-size: 16px;
    color: #5a5a5a;
    width: 100px;
    display: inline-block;
}

.team_item_big_bio_item span:last-child {
    font-size: 16px;
    color: #b2b2b2;
    font-weight: 500;
    display: inline-block;
}

.team_item_big_technologies {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
}

.team_item_big_technologie {
    margin-right: 5px;
    background: #343434;
    border-radius: 4px;
    padding: 4px 8px;
    color: #b2b2b2;
    font-size: 12px;
    margin-bottom: 5px;
}

.team_list {
    display: none;
    flex-wrap: wrap;
    margin-left: 75px;
    transition: 0.3s;
    opacity: 0;
}

.team_list.active {
    display: flex;
    opacity: 1;
    transition: 0.3s;
}

.team_item {
    width: 120px;
    margin: 0 25px;
    opacity: 0.5;
    transition: 0.3s;
    padding-bottom: 40px;
    cursor: pointer;
}

.team_item_img {
    width: 120px;
    height: 120px;
    position: relative;
}

.team_item_img:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px dashed #48ab41;
    transition: 0.3s;
    border-radius: 140px;
}

.team_item:hover .team_item_img:before,
.team_item.active .team_item_img:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    transition: 0.3s;
    transform: rotate(90deg);
}

.team_item_img img {
    width: 120px;
    height: 120px;
    border-radius: 120px;
    filter: grayscale(100%);
}

.team_item_name {
    color: #c6c6c6;
    font-size: 18px;
    margin-top: 16px;
    text-align: center;
}

.team_item_post {
    margin-top: 3px;
    color: #48ab41;
    font-size: 12px;
    text-align: center;
}

.green_big_text {
    color: #a7c816 !important;
}

.team_item:hover .team_item_img img,
.team_item.active .team_item_img img {
    filter: grayscale(0%);
    transition: 0.3s;
}

.team_item:hover,
.team_item.active {
    opacity: 1;
    transition: 0.3s;
}
.menu_social {
    display: none;
}
.team_slider {
    width: calc(100% - 700px);
}

.list_dots {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.list_dots span.active {
    border: 2px solid #48ab41;
    cursor: pointer;
}

.list_dots span {
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 10px;
    transition: 0.3s;
    border: 2px solid #515151;
    border-radius: 20px;
    position: relative;
}

.list_dots span:after {
    content: "";
    width: 10px;
    height: 10px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    border-radius: 10px;
    display: block;
}

.list_dots span.active:after {
    background: #48ab41;
}

.form_wrap {
    display: flex;
    position: absolute;
    height: 100%;
    min-height: 0%;
    opacity: 0;
    z-index: 0;
    transition: 0.3s;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(0%);
    pointer-events: all;
}

.wrap.active .slide {
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.wrap.active .form_wrap {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.form {
    display: flex;
    width: 780px;
    flex-wrap: wrap;
    padding-top: 100px;
}

.form_wrap .container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 197px;
}

.form_input {
    width: 240px;
    margin-top: 30px;
}

.form_input + .form_input {
    margin-left: 20px;
    margin-top: 30px;
}

.form_input input:focus::placeholder {
    color: transparent;
    transition: 0.3s;
}

.form_input input::placeholder {
    color: #c6c6c6;
    transition: 0.3s;
}
.form_textarea textarea:focus::placeholder {
    color: transparent;
    transition: 0.3s;
}

.form_textarea textarea::placeholder {
    color: #c6c6c6;
    transition: 0.3s;
}

.form_input input {
    width: 100%;
    height: 60px;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    background: #2e2e2e;
    border-radius: 16px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    border: none;
    outline: none;
    color: #c6c6c6;
}

.form_textarea {
    width: 500px;
    margin-top: 20px;
}

.form_textarea + label {
    margin-top: 20px;
    margin-left: 20px;
    border: 1px dashed #4b4b4b;
    height: 140px;
    box-sizing: border-box;
    background: #2e2e2e;
    display: flex;
    width: 240px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 25px 35px;
    color: #666666;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
}

.form_textarea + label span span {
    color: #48ab41;
}

.form_textarea + label input {
    display: none;
}

.form_textarea textarea {
    color: #c6c6c6;
    width: 100%;
    height: 140px;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    background: #2e2e2e;
    border-radius: 16px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    border: none;
    outline: none;
    resize: none;
}

.form h2 {
    font-size: 50px;
    line-height: 44px;
    letter-spacing: 2px;
    color: #ececec;
    width: 100%;
    opacity: 1;
}

.form h3 {
    font-size: 30px;
    line-height: 44px;
    letter-spacing: 1.2px;
    color: #ececec;
    width: 100%;
}

.form_social {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}

.form_social_text {
    color: #ececec;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.38px;
    display: inline-block;
    display: flex;
    align-items: center;
}

.form_social_text:after {
    content: "";
    width: 40px;
    margin-left: 60px;
    margin-right: 40px;
    height: 2px;
    border-radius: 2px;
    background: #7a7a7a;
    display: inline-block;
}

.form_social a{
    color: #7a7a7a;
    transition: 0.3s;
}

.form_social_icon {
    width: 20px;
    height: 20px;
    margin: 20px;
    display: inline-block;
    position: relative;
}

.form_social_icon svg {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.form_social_icon:hover svg {
    transform: scale(0.8);
    transition: 0.3s;
}

.form_social_icon:before {
    content: "";
    position: absolute;
    top: -0px;
    right: -0px;
    bottom: -0px;
    left: -0px;
    border: 2px dashed rgba(72, 171, 65, 1);
    opacity: 0;
    border-radius: 25px;
    transition: 0.3s;
    display: block;
}

.form_social_icon:hover:before {
    border: 2px dashed rgba(72, 171, 65, 1);
    opacity: 1;
    transition: 0.3s;
    transform: rotate(90deg);
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
}

.form_social_icon path {
    fill: #7a7a7a;
    transition: 0.3s;
}

.form_social_icon_telegram:hover .c {
    fill: #708cff;
    transition: 0.3s;
}

.form_social_icon_vhatsapp:hover .b {
    fill: #63c95c;
    transition: 0.3s;
}

.form_social_icon_viber:hover .a {
    fill:white;
    /*fill: #c26fdb;*/
    transition: 0.3s;
}

.wrap.active .slide_form {
    opacity: 1;
    z-index: 3;
    pointer-events: all;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
    background-color: #292929;
    border-radius: 4px;
}

::-webkit-scrollbar {
    width: 4px;
    height: 0px;
    background-color: rgba(239, 239, 239, 0.05);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(239, 239, 239, 0.05);
}

.vacacies_list {
    font-size: 24px;
    line-height: 39px;
    letter-spacing: 0px;
    color: #48ab41;
}
.vacacies_list li {
    margin-top: 30px;
    padding-left: 50px;
    position: relative;
    cursor: pointer;
}
.vacacies_list li:before {
    content: "";
    width: 10px;
    height: 2px;
    position: absolute;
    background: #48ab41;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.modal_title {
    font-size: 50px;
    line-height: 44px;
    letter-spacing: 2px;
    color: #ececec;
    opacity: 0.8;
}
.modal {
    top: 0;
    left: 0;
    display: none;
    z-index: 100;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
}
.modal_body_wrap {
    background: #292929;
    padding: 80px;
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    position: relative;
    overflow: auto;
    height: 100vh;
    border-left: 1px solid #343434;
    border-right: 1px solid #343434;
}
.modal_close {
    position: absolute;
    right: 69px;
    top: 69px;
    background-image: url(../img/btn_close.svg);
    background-size: 28px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 2;
}
.modal.active {
    display: flex;
}
.modal_info {
    margin-top: 75px;
    display: flex;
    flex-wrap: wrap;
}
.modal_info ul {
    margin: 0;
    padding: 0;
}
.modal_info ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
}
.modal_info ul li:before {
    content: "";
    width: 10px;
    height: 2px;
    position: absolute;
    background: #48ab41;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.modal_info_left {
    width: 50%;
    padding-right: 150px;
}
.modal_info_right {
    width: 50%;
    padding-right: 150px;
}
.modal_info_title {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #c6c6c6;
}
.modal_info_text {
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin-top: 20px;
}

.modal_info_text + .modal_info_title {
    margin-top: 30px;
}
.modal_body_wrap::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px black;
    background-color: rgba(239, 239, 239, 0.2);
    border-radius: 2px;
}

.modal_body_wrap::-webkit-scrollbar {
    width: 2px;
    height: 0px;
    background-color: rgba(41, 41, 41, 0.5);
}

.modal_body_wrap::-webkit-scrollbar-thumb {
    background-color: rgba(72, 171, 65, 1);
}
.modal_top_form {
    margin-top: 35px;
    display: flex;
}
.modal_top_form_btn {
    width: 190px;
    border: 2px solid #48ab41;
    border-radius: 16px;
    color: #ffffff;
    display: flex;
    font-size: 16px;
    height: 46px;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: border 0.3s;
}

.modal_top_form_btn:hover {
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border 0.3s;
}

.modal_top_form_btn:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border 0.3s;
}

.modal_top_form_btn:hover:before {
    border: 2px dashed #48ab41;
    transition: border 0.3s;
}

.modal_top_form_text {
    margin-left: 30px;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    width: 300px;
}
.modal_form_title {
    margin-top: 60px;
    font-size: 24px;
    line-height: 30px;
    color: #c6c6c6;
    padding-bottom: 14px;
}
.modal_form_input {
    margin-top: 20px;
    width: 240px;
    margin-right: 20px;
    display: inline-flex;
}
.modal_form_input_long {
    width: 450px;
    margin-right: 0px;
}
.modal_form_delimiter {
    width: 70px;
    display: inline-flex;
    text-align: center;
    color: #666666;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300px;
    text-align: center;
    justify-content: center;
}
.modal_form_input input {
    width: 100%;
    height: 60px;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    background: #2e2e2e;
    border-radius: 16px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    border: none;
    outline: none;
    color: #c6c6c6;
}
.modal_form_input input:focus::placeholder {
    color: transparent;
    transition: 0.3s;
}

.modal_form_input input::placeholder {
    color: #c6c6c6;
    transition: 0.3s;
}
.modal_form_file {
    width: 240px;
    height: 60px;
    display: inline-flex;
    padding: 0 20px;
    box-sizing: border-box;
    background: #2e2e2e;
    border-radius: 16px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    border: none;
    outline: none;
    color: #48ab41;
    cursor: pointer;
    align-items: center;
}
.modal_form_file img {
    margin-right: 20px;
    width: 13px;
    height: auto;
}
.modal_form_file input {
    display: none;
}
.modal_form_textarea {
    width: 760px;
    margin-top: 20px;
}
.modal_form form {
    font-size: 0;
}
.modal_form_textarea textarea {
    color: #c6c6c6;
    width: 100%;
    height: 140px;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    background: #2e2e2e;
    border-radius: 16px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    border: none;
    outline: none;
    resize: none;
}

.modal_form_textarea textarea:focus::placeholder {
    color: transparent;
    transition: 0.3s;
}

.modal_form_textarea textarea::placeholder {
    color: #c6c6c6;
    transition: 0.3s;
}
.modal_form_btn_block {
    margin-top: 30px;
    display: flex;
    align-items: center;
}
.modal_form_btn {
    margin-right: 30px;
}
.modal_vacancy {
    display: none;
}
.modal_vacancy.active {
    display: block;
}

.form_yes_slide {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: #292929;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.form_yes_wrap {
    position: relative;
    max-width: 80%;
}
.form_yes_title {
    font-size: 60px;
    line-height: 86px;
    font-weight: 600;
    letter-spacing: 2.56px;
    color: #ececec;
    text-transform: uppercase;
}
.form_yes_subtitle {
    text-align: left;
    font: normal normal normal 30px/44px Open Sans;
    letter-spacing: 1.2px;
    color: #ececec;
}

/* Клиенты */

.new-clients {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.new-client {
    width: 25%;
    text-align: center;
    position: relative;
    padding-bottom: 80px;
}

.new-client::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 1px;
    background: #efefef;
    opacity: 0.05;
}

.new-client:nth-child(4n + 4)::after {
    display: none;
}

.new-client:nth-child(-n + 3)::after {
    height: calc(100% + 180px);
}

.new-client__img {
    height: 203px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.new-client__img > img {
    /*filter: grayscale(100%);*/
    /*transition: 1s;*/
}

.new-client:hover .new-client__img > img {
    /*transition: 1s;*/
    /*filter: grayscale(0%);*/
}

.new-client__title {
    font-size: 20px;
    margin-top: 10px;
    opacity: 0.6;
    color: #c6c6c6;
}

.new-client:hover .new-client__title {
    opacity: 1;
}

@media (max-width: 992px) {
    .new-client {
        width: 33.333%;
    }

    .new-client:nth-child(4n + 4)::after {
        display: block;
    }

    .new-client:nth-child(3n + 3)::after {
        display: none;
    }

    .new-client:nth-child(-n + 3)::after {
        height: 100%;
    }

    .new-client:nth-child(-n + 2)::after {
        height: calc(100% + 180px);
    }
}

@media (max-width: 769px) {
    .new-client {
        width: 50%;
        padding-bottom: 47px;
    }

    .new-client::after {
        display: none !important;
    }

    .new-client__img {
        padding: 0 10px;
        height: 155px;
    }

    .new-client__title {
        font-size: 14px;
        color: #c6c6c6;
        line-height: 20px;
    }
}

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

.portfolio__maincontent {
    display: none;
}

.portfolio__maincontent.active {
    display: block;
    animation: opacity ease 1s;
}


.portfolio__list {
    display: flex;
    border-bottom: 1px solid rgba(239, 239, 239, 0.05);
    margin-top: 50px !important;
    margin-bottom: 31px !important;
    width: 100%;
}

.portfolio__list > li {
    padding-bottom: 20px;
    margin-right: 40px;
    position: relative;
}

.portfolio__list > li.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    background-color: #48ab41;
    height: 3px;
    border-radius: 2px;
}

.portfolio__list > li > span {
    color: #ececec;
    opacity: 0.5;
    cursor: pointer;
}

.portfolio__list > li.active > span {
    opacity: 1;
}

/* Портфолио элементs*/

.portfolio__items {
    width: 100%;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1vw;
}



/* .item:nth-of-type(2) {
    grid-row: span 2;
  }
   */

.portfolio__item {
    background: #07285a;
    display: flex;
    min-height: 350px;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    /* background-repeat: no-repeat;
    background-size: auto 100%;
    background-position-x: right;
    background-position-y: center; */
}

.portfolio__item__logo {
    max-width: 176px;
}

.portfolio__item__logo > img {
    width: 100%;
}

.portfolio__item__intro {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio__item__image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.portfolio__item__image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.portfolio__item__image img {
    position: relative;
    max-height: 100%;
}
.portfolio__item__image img._tablet,
.portfolio__item__image img._mobile {
    display: none;
}
.portfolio__item:nth-of-type(7n+1),
.portfolio__item:nth-of-type(7n+7) {
    height: 450px;
}
.portfolio__item:nth-of-type(7n+3),
.portfolio__item:nth-of-type(7n+5) {
    height: 380px;
}
.portfolio__item:nth-of-type(7n + 2) .portfolio__item__image,
.portfolio__item:nth-of-type(7n + 4) .portfolio__item__image,
.portfolio__item:nth-of-type(7n + 6) .portfolio__item__image {
    width: 100%;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 185px;
}
.portfolio__item:nth-of-type(7n + 3) .portfolio__item__image,
.portfolio__item:nth-of-type(7n + 5) .portfolio__item__image {
    width: auto;
    left: 40%;
    bottom: 0;
    top: 0;
    right: 0;
}

/*
.portfolio__item:nth-of-type(7n - 5) .portfolio__item__image,
.portfolio__item:nth-of-type(7n - 3) .portfolio__item__image,
.portfolio__item:nth-of-type(7n - 1) .portfolio__item__image {
    position: static;
    height: auto;
    width: 100%;
}
*/

.portfolio__item:nth-of-type(7n - 6) {
    grid-column: span 2;
}

.portfolio__item:nth-of-type(7n - 5) {
    grid-row: span 2;
    flex-direction: column-reverse;
}

.portfolio__item:nth-of-type(7n - 3) {
    grid-row: span 2;
    flex-direction: column-reverse;
}

.portfolio__item:nth-of-type(7n - 1) {
    grid-row: span 2;
    flex-direction: column-reverse;
}

.portfolio__item:nth-of-type(7n) {
    grid-column: span 2;
}

.portfolio__item:nth-child(7n - 6) {
    background-color: #07285a;
}

.portfolio__item:nth-child(7n - 5) {
    background-color: #4d51a7;
}
.portfolio__item:nth-child(7n - 4) {
    background-color: #005f9f;
}
.portfolio__item:nth-child(7n - 3) {
    background-color: #0f7367;
}

.portfolio__item:nth-child(7n - 2) {
    background-color: #5f0900;
}
.portfolio__item:nth-child(7n - 1) {
    background-color: #005f9f;
}

.portfolio__item:nth-child(7n) {
    background: #3b3b3b;
}

.portfolio__item__textcontent {
    padding-left: 20px;
    padding-bottom: 20px;
}

.portfolio__item__title.one {
    font-size: 14px;
    line-height: 19px;
    color: #a9a9a9;
}

.portfolio__item__title.two {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 5px;
    color: #ffffff;
}

.portfolio__item__title.tree {
    font-size: 16px;
    line-height: 21px;
    color: #ffffff;
    margin-bottom: 15px;
}

.portfolio__item__tags {
    display: flex;
}

.portfolio__item__tags > span {
    display: flex;
    background: #343434;
    height: 22px;
    line-height: 22px;
    padding: 0 8px;
    font-size: 12px;
    margin-right: 5px;
    cursor: pointer;
    color: #b2b2b2;
}

@media (max-width: 1200px) {
    .portfolio__item:nth-of-type(7n+1),
    .portfolio__item:nth-of-type(7n+7) {
        height: 350px;
    }
    .portfolio__item:nth-of-type(7n+3),
    .portfolio__item:nth-of-type(7n+5) {
        height: 280px;
    }
}
@media (max-width: 992px) {
    .portfolio__items {
        display: flex;
        flex-direction: column;
        grid-gap: 5vw
    }

    /*.portfolio__item:nth-of-type(7n - 5) .portfolio__item__image,
    .portfolio__item:nth-of-type(7n - 3) .portfolio__item__image,
    .portfolio__item:nth-of-type(7n - 1) .portfolio__item__image {
        position: absolute;
        height: 100%;
        width: auto;
    }*/

    .portfolio__items .portfolio__item .portfolio__item__image {
        width: 60%;
        top: 20px;
        right: 0;
        bottom: 20px;
        left: auto;
        text-align: center;
    }
    .portfolio__item {
        flex-direction: column !important;
    }
    .portfolio__items .portfolio__item {
        height: 450px;
    }
    .portfolio__item__image img._tablet {
        display: block;
    }
    .portfolio__item__image img._desktop {
        display: none;
    }
}

@media (max-width: 769px) {

    .portfolio__items {
        grid-gap: 7vw;
    }
    .portfolio__items .portfolio__item {
        height: auto;
        display: block;
        min-height: auto;
    }
    .portfolio__items .portfolio__item .portfolio__item__image {
        position: relative;
        width: 100%;
        height: 195px;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        overflow: hidden;
    }
    .portfolio__items .portfolio__item .portfolio__item__image img {
        max-height: 90%;
    }
    .portfolio__item__intro {
        height: auto;
        display: block;
    }
    .portfolio__item__textcontent {
        background: #292929;
        padding-top: 15px;
        padding-left: 0;
        padding-bottom: 0;
        padding-right: 0;
    }
    .portfolio__item__logo {
        position: absolute;
        left: 0;
        top: 0;
        max-width: 120px;
    }
    .portfolio__item__title.one {
        color: #48AB41;
    }
    .portfolio__item__title.two {
        color: #C6C6C6;
    }
    .portfolio__item__title.tree {
        color: #B2B2B2;
    }
    .portfolio__list {
        flex-direction: column;
    }
    .portfolio__list > li {
        margin-bottom: 20px;
    }
    .portfolio__list > li:last-child {
        margin-bottom: 0;
    }
    .portfolio__item__image img._tablet {
        display: none;
    }
    .portfolio__item__image img._mobile {
        display: block;
    }
}

/* Достижения */

.awards__content {
    display: flex;
    justify-content: space-between;
    margin-top: 78px;
}

.awards__title {
    font-size: 50px;
    line-height: 68px;
    margin-bottom: 56px;
    color: #ececec;
    opacity: 0.2;
}

.awards__maincontent {
    display: none;
}

.awards__maincontent.active {
    display: block;
    opacity: 1;
    animation: opacity ease 1s;
}

@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.awards__col.left {
    width: 100%;
    max-width: 370px;
    margin-right: 100px;
}

.awards__items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 120px;
}

.awards__item {
    width: calc(50% - 20px);
    max-width: 370px;
    margin-left: 20px;
    margin-bottom: 20px;
    border: 38px solid #333333;
}
.awards__item img {
    width: 100%;
}

ul.awards__list {
    margin-left: 60px;
    position: relative;
}

ul.awards__list::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 10px;
    height: 100%;
    border-left: 1px dashed rgba(239, 239, 239, 0.15);
    z-index: 1;
}

ul.awards__list > li {
    margin: 0;
    padding: 0;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    font-size: 18px;
    line-height: 25px;
    color: #c6c6c6;
    opacity: 0.6;
    padding-left: 40px;
}

ul.awards__list > li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3.5px;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: rgba(239, 239, 239, 0.15);
    z-index: 2;
}

ul.awards__list > li > span {
    cursor: pointer;
}

ul.awards__list > li.active {
    opacity: 1;
}
ul.awards__list > li.active > span {
    color: #48AB41;
    font-size: 30px;
}

ul.awards__list > li.active::after {
    left: -4.6px;
    margin-top: -7.5px;
    height: 15px;
    width: 15px;
    background: #48AB41;
}





@media (max-width: 992px) {
    .awards__col.left {
        margin-right: 29px;
    }
}

@media (max-width: 769px) {

    .awards__content {
        flex-direction: column;
    }

    .awards__col.left {
        margin-right: 0;
    }

    .awards__items {
        margin-top: 40px;
    }

    .awards__item {
        width: calc(50% - 20px);

    }

    .awards__col.left {
        margin-right: 0;
    }

    ul.awards__list {
        margin-left: 0;
    }
    .awards__item {
        border: 15px solid #333333;
    }

}

@media (max-width: 576px) {
    .awards__item {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
}






.portfolio__fillter-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 31px !important;
}


.portfolio__fillter-list > li {
    margin-right: 10px;
    margin-bottom: 10px;
}


.portfolio__fillter-list > li > a  {
    color: #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    /* background-color: #fff; */
    border-radius: 10px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 24px;
    display: block;
    border: 1px solid #48ab41;
}

.portfolio__fillter-list > li > a:hover {
    border: 1px dashed #48ab41;
    transition: border 0.3s;
}
.portfolio__fillter-list > li > a.active {
    background: #48ab41;
}

.form-closer {
    display: block;
    background-image: url(../img/btn_close.svg);
    background-size: 28px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 2;
    float: right;
    margin-left: 20px;
}

.btn {
    display: inline-block;
    border: 2px solid #48ab41;
    border-radius: 16px;
    padding: 14px 50px 13px;
    cursor: pointer;
    transition: border 0.3s;
    color: #ffffff;
    position: relative;
}
.btn:hover {
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border 0.3s;
}
.btn:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border 0.3s;
}
.btn:hover:before {
    border: 2px dashed #48ab41;
}

.textpage {
    padding-top: 78px;
    color: #666666;
    line-height: 1.25;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}
.textpage__content {
    width: 40%;
}
.textpage__aside {
    width: 60%;
    text-align: center;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.textpage__aside img {
    margin-bottom: 20px;
    max-width: 70%;
}
.textpage h1,
.textpage h2,
.textpage h3 {
    color: #ECECEC;
    letter-spacing: normal;
    opacity: 1;
}
.textpage h1:first-child,
.textpage h2:first-child,
.textpage h3:first-child,
.textpage p:first-child,
.textpage ul:first-child {
    margin-top: 0;
}
.textpage h1 {
    font-size: 50px;
    margin: 50px 0 30px;
    font-weight: bold;
}
.textpage h2 {
    font-size: 50px;
    margin: 50px 0 30px;
    font-weight: bold;
}
.textpage h3 {
    font-size: 40px;
    margin: 50px 0 30px;
    font-weight: bold;
}
.textpage p {
    margin: 20px 0;
}
.textpage ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}
.textpage ul li {
    display: block;
    padding-left: 50px;
    position: relative;
    margin: 10px 0;
}
.textpage ul li:before {
    content: " ";
    display: block;
    background: #48AB41;
    width: 10px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 10px;
    margin-top: -1px;
}

.center {
    text-align: center;
}

.center .container .textpage{
    width: 100%;
    display: block;
}