/*
    Theme Name: Cottege_theme
*/
@font-face {
    font-family: HelveticaNeueCyr;
    src: url(./fonts/HelveticaNeueCyr-Medium.otf);
}
@font-face {
    font-family: HelveticaNeueCyrBold;
    src: url(./fonts/helveticaneuecyr-bold.otf);
}
@font-face {
    font-family: HelveticaNeueRom;
    src: url(./fonts/HelveticaNeueCyr-Roman.otf);
}
@font-face {
    font-family: HelveticaNeueLight;
    src: url(./fonts/helveticaneuecyr-light.otf);
}
@font-face {
    font-family: MyriadProRegular;
    src: url(./fonts/MyriadProRegular.otf);
}
@font-face {
    font-family: MyriadProSemiBold;
    src: url(./fonts/MyriadProSemiBold.otf);
}
.fll {
    float: left;
}
.flr {
    float: right;
}
.txt_center {
    text-align: center;
}
.clear:after {
    content: "";
    display: block;
    clear: both;
}
.wrapper_1280 {
    box-sizing: border-box;
    width: 1280px;
    margin: 0 auto;
}


body,
html {
    margin: 0;
    font-family: "HelveticaNeueCyr", "Trebuchet MS", sans-serif;
}
a {
    color: #fff;
}
h2 {
    display: inline-block;
    margin: 20px 0 10px;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
}
h2:before,
h2:after {
    content: "";
    display: inline-block;
    width: 48px;
    height: 19px;
}
h2:before {
    margin-right: 29px;
    background: url("./images/pre_text.png")no-repeat 50%;
}
h2:after {
    margin-left: 29px;
    background: url("./images/after_text.png")no-repeat 50%;
}
p {
    line-height: 22px;
    font-size: 18px;
}
.btn_style {
    display: block;
    width: 210px;
    margin: 0 auto;
    padding: 15px 0;
    border: none;
    border-radius: 4px;
    background-color: #33cc66;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    color: #fff;
}
.btn_style:hover {
    background: #5fd092;
    cursor: pointer;
    background: -moz-linear-gradient(top, #5fd092 0%, #2e9d5c 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #5fd092), color-stop(100%, #2e9d5c));
    background: -webkit-linear-gradient(top, #5fd092 0%, #2e9d5c 100%);
    background: -o-linear-gradient(top, #5fd092 0%, #2e9d5c 100%);
    background: -ms-linear-gradient(top, #5fd092 0%, #2e9d5c 100%);
    background: linear-gradient(to bottom, #5fd092 0%, #2e9d5c 100%);
}


#loader-wrapper {
    display: table;
    position: fixed;
    top: 0;
    left: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    z-index: 1003;
    transition: all 1s ease;
    background-color: #343434;
}
#loader-wrapper div {
    display: table;
    top: 0;
    left: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    z-index: 1004;
    transition: all 2s ease;
    -webkit-animation: blink1 2s linear infinite;
    animation: blink1 2s linear infinite;
    background: url("./images/logo.png")no-repeat 50% 50%;
}
@-webkit-keyframes blink1 {
    0% {opacity: 1; }
    50% { opacity: 0.1; }
    100% { opacity: 1; }
}
@keyframes blink1 {
    0% { opacity: 1; }
    50% { opacity: 0.1; }
    100% { opacity: 1; }
}
svg:not(:root) {
    overflow: hidden;
}
svg {
    position: absolute;
    width: 273px;
    height: 33px;
    top: 50%;
    left: 50%;
    margin-top: -16.5px;
    margin-left: -136.5px;
}
body.home {
    background: url("./images/home_bg_top.jpg")no-repeat 50% 0;
}
body {
    background: url("./images/bg_top.jpg")no-repeat 50% 0;
}
.logo {
    width: 110px;
    margin-top: 24px;
}
.top_nav {
    margin: 28px 4px 0 14px;
    padding: 0;
}
.top_nav  li {
    position: relative;
    display: inline-block;
    list-style: none;
}
.top_nav a {
    font-family: "HelveticaNeueCyr", "Trebuchet MS", sans-serif;
    font-size: 15px;
    text-decoration: none;
}
.top_nav >li > a {
    padding: 4px 23px;
    border-right: 1px solid #7b7b7b;
}
.sub-menu {
    position: absolute;
    z-index: 999;
    display: none;
    top: 20px;
    left: -30px;
    width: 250px;
    padding: 27px 0 0 0;
}
.sub-menu li {
    position: relative;
    display: block;
    padding: 8px 8px 8px 25px;
    background-color: rgba(38, 38, 38, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.sub-menu li:first-of-type:before {
    content: '';
    position: absolute;
    top: -13px;
    left: 55px;
    width: 24px;
    height: 13px;
    background: url("./images/arrow_top.png")no-repeat;
}
.sub-menu li:last-of-type {
    border: none;
}
.sub-menu a {
    font-family: "HelveticaNeueLight", "Trebuchet MS", sans-serif;
    font-size: 14px;
    color: #c6c6b7;
}
.menu-item-has-children:hover > .sub-menu {
    display: block;
}
.top_nav > .current-menu-item > a,
.top_nav li:hover > a,
.login_btn:hover {
    color: #33cc66;
    cursor: pointer;
}
.login_btn {
    margin-top: 25px;
    padding: 3px 30px;
    color: #fff;
    font-size: 15px;
}
.reg_btn {
    margin-top: 17px;
    padding: 10px 20px 10px 41px;
    background: url(./images/key.png)no-repeat 14px 50% #2c9b5a;
    border-radius: 6px;
    font-size: 15px;
    color: #fff;
}
.reg_btn:hover {
    background: #5fd092;
    cursor: pointer;
    background: url(./images/key.png)no-repeat 14px 50%, -moz-linear-gradient(top, #5fd092 0%, #2e9d5c 100%);
    background: url(./images/key.png)no-repeat 14px 50%, -webkit-gradient(left top, left bottom, color-stop(0%, #5fd092), color-stop(100%, #2e9d5c));
    background: url(./images/key.png)no-repeat 14px 50%, -webkit-linear-gradient(top, #5fd092 0%, #2e9d5c 100%);
    background: url(./images/key.png)no-repeat 14px 50%, -o-linear-gradient(top, #5fd092 0%, #2e9d5c 100%);
    background: url(./images/key.png)no-repeat 14px 50%, -ms-linear-gradient(top, #5fd092 0%, #2e9d5c 100%);
    background: url(./images/key.png)no-repeat 14px 50%, linear-gradient(to bottom, #5fd092 0%, #2e9d5c 100%);
}

/*********************************LOGIN AND REG MODAL*************************************/
.modal_login_reg {
    position: relative;
}
.modal_login_reg > div.modal_active {
    display: block;
}
.modal_login_reg > div {
    display: none;
}
.modal_login_reg p {
    margin-bottom: 0;
    line-height: 30px;
    text-align: center;
}
.modal_login_reg input[type='email'],
.modal_login_reg input[type='text'],
.modal_login_reg input[type='password'] {
    box-sizing: border-box;
    width: 100%;
    padding: 20px 95px 20px 74px;
    margin: 14px 0;
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    color: #3add74;
    background: url(./images/mail.png)no-repeat 20px 50% #fff;
}
.modal_login_reg input[type='password'] {
    background: url("./images/key_2.png")no-repeat 20px 50% #fff;
}
.modal_login_reg form ::-webkit-input-placeholder {color:#3add74;}
.modal_login_reg form ::-moz-placeholder          {color:#3add74;}
.modal_login_reg form :-moz-placeholder           {color:#3add74;}
.modal_login_reg form :-ms-input-placeholder      {color:#3add74;}
.wrap_password {
    position: relative;
}
.forgot {
    position: absolute;
    right: 23px;
    top: 34px;
    cursor: pointer;
}
.remember_me {
    display: block;
    text-align: center;
}
.remember_me input {
    display: none;
}
.remember_me div {
    display: inline-block;
    padding: 2px 0 3px 31px;
    margin: 7px 0;
    color: #57586a;
    cursor: pointer;
}
.remember_me input[type='checkbox']+div {
    background: url(./images/check.png)no-repeat 0 0;
}
.remember_me input[type='checkbox']:checked+div {
    background: url(./images/check.png)no-repeat 0 -29px;
}
.remember_me div a {
    font-size: 13px;
    color: #57586a;
}
.form_btn {
    display: flex;
    justify-content: space-around;
    margin-top: 12px;
}
.form_btn > div,
.form_btn > input {
    width: 187px;
    padding: 20px 0;
    font-size: 20px;
    border: 1px solid #34cc67;
    border-radius: 6px;
    text-align: center;
    color: #57586a;
    cursor: pointer;
}
.alert_msg {
    position: absolute;
    margin-top: -5px;
    color: red;
    font-size: 14px;
}
.form_btn > input {
    background-color: #34cc67;
    color: #fff;
}
.g-recaptcha {
    overflow: hidden;
}
.g-recaptcha > div {
    margin: 3px auto 22px;
}
.back {
    position: absolute;
    left: 29px;
    top: 29px;
    width: 28px;
    height: 20px;
    background: url(./images/arrow_back.png)no-repeat 50% 50%;
    cursor: pointer;
}




/*Фон слайдера*/
.slider {
    width:230px;
    height:11px;
    background:url(slider-bg.png);
    position:relative;
    margin:0;
    padding:0 10px;
}

/*Стиль кнопки слайдера*/
.ui-slider-handle {
    width:24px;
    height:24px;
    position:absolute;
    top:-7px;
    margin-left:-12px;
    z-index:200;
    background:url(slider-button.png);
}

/*Элемент div результата, в котором выводится значение слайдера*/
#slider-result {
    font-size:50px;
    height:200px;
    font-family:Arial, Helvetica, sans-serif;
    color:#fff;
    width:250px;
    text-align:center;
    text-shadow:0 1px 1px #000;
    font-weight:700;
    padding:20px 0;
}

/*Полоска заполнителя слайдера*/
.ui-widget-header {
    background:url(fill.png) no-repeat left;
    height:8px;
    left:1px;
    top:1px;
    position:absolute;
}

a {
    outline:none;
    -moz-outline-style:none;
}



/**********************************************************************/
.header_tel {
    margin-top: 25px;
    color: #fff;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
}
.home .title_wrapper {
    height: 538px;
}
.title_wrapper {
    overflow: hidden;
    height: 180px;
    margin-bottom: 175px;
    text-align: center;
}
.title_page {
    display: inline;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    text-align: center;
    text-transform: uppercase;
    white-space:pre;
    color: #fff;
}
.title_page h1 {
    position: relative;
    display: inline-block;
    margin-top: 74px;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    letter-spacing: 2px;
    font-size: 46px;
}
.home .title_page h1 {
    margin: 192px 0 22px;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    font-size: 74px;
}
.home .title_page h1+div {
    display: inline-block;
    padding: 3px 24px 0 0;
    line-height: 34px;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    font-size: 48px;
}
.typed-cursor{
    opacity: 1;
    position: relative;
    top: -7px;
    font-size: 37px;
    color: #fff;
    -webkit-animation: blink 0.8s infinite;
    -moz-animation: blink 0.8s infinite;
    animation: blink 0.8s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.about_creator {
    padding: 0 570px 30px 0;
    background: url(./images/iPad.jpg)no-repeat 96% 0,
    url(./images/leaves.jpg)no-repeat 0 100%;
}
.about_creator p:last-of-type {
    margin-bottom: 0;
}

.learn_more {
    overflow: hidden;
    margin-bottom: 50px;
    background: url("./images/learn_more_bg11.jpg")no-repeat 50% 0;
    background-position: left bottom;
    background-attachment: fixed;
    text-align: center;
}
.learn_more .wrapper_1280 {
    margin: 50px auto 55px;
    padding: 31px 0;
    background-color: rgba(0, 0, 0, 0.7);
}
.learn_more p {
    text-align: center;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    font-size: 24px;
    color: #fff;
}
.learn_more input[type="tel"] {
    display: block;
    width: 425px;
    margin: 34px auto;
    padding: 17px 0;
    border: none;
    border-radius: 6px;
    text-align: center;
    font-size: 24px;
    color: #b8b8b8;
}
.learn_more form p:not(.form_text) {
    margin: 0;
}
.learn_more form div.wpcf7-response-output {
    margin: 14px 150px 0;
    padding: 0.3em 1em;
    color: #fff;
}
.learn_more form span.wpcf7-not-valid-tip {
    margin-top: -30px;
    font-size: 12px;
}

.about_project {
    padding: 0 20px 0 20px;
}
.about_project > .fll {
    width: 720px;
}
.about_project > .fll > a {
    margin: 26px 0;
}
.about_project > .flr {
    width: 460px;
    height: 460px;
    margin: -14px 10px 0 0;
    background: url("./images/info_box_bg.png")no-repeat 50% 50%;
}
.info_wrapper {
    position: relative;
    z-index: 10;
}
.info_wrapper > div {
    position: absolute;
    width: 76px;
    height: 76px;
    margin: -14px 10px 0 0;
    cursor: pointer;
}
.info_wrapper > div:nth-child(1) {
    left: 192px;
    top: -12px;
    background: url("./images/info8.png")no-repeat;
}
.info_wrapper > div:nth-child(2) {
    left: 308px;
    top: 104px;
    background: url("./images/info4.png")no-repeat;
}
.info_wrapper > div:nth-child(3) {
    left: 408px;
    top: 206px;
    background: url("./images/info5.png")no-repeat;
}
.info_wrapper > div:nth-child(4) {
    left: 90px;
    top: 313px;
    background: url("./images/info7.png")no-repeat;
}
.info_wrapper > div:nth-child(5) {
    left: 194px;
    top: 424px;
    background: url("./images/info1.png")no-repeat;
}
.info_wrapper > div:nth-child(6) {
    left: 308px;
    top: 315px;
    background: url("./images/info2.png")no-repeat;
}
.info_wrapper > div:nth-child(7) {
    left: 84px;
    top: 101px;
    background: url("./images/info3.png")no-repeat;
}
.info_wrapper > div:nth-child(8) {
    left: -27px;
    top: 209px;
    background: url("./images/info6.png")no-repeat;
}
.info_wrapper > div > div {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: -1;
    left: -61px;
    top: -88px;
    width: 197px;
    box-shadow: 0 0 10px #b8b8b8;
    transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
}
.info_wrapper > div:hover > div {
    visibility: visible;
    opacity: 1;
}
.info_wrapper img {
    display: block;
    width: 100%;
}
.info_wrapper img+div {
    padding: 45px 0 30px;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    background-color: #fff;
    text-align: center;
    font-size: 18px;
}

.new_format {
    margin-bottom: 30px;
    padding: 80px 0;
    background: url(./images/learn_more_bg2.jpg)no-repeat 50% 0;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    font-size: 44px;
    color: #fff;
}

.home_gallery {
    padding-bottom: 48px;
    background: url("./images/leaves2.jpg")no-repeat 96% 100%;
}
.home_gallery .wrapper_1280 > .fll {
    width: 900px;
}
.home_gallery .wrapper_1280 > .flr {
    width: 320px;
}
.home_gallery .wrapper_1280 > .fll h2,
.home_gallery .wrapper_1280 > .flr h2 {
    margin-bottom: 57px;
}
.home_gallery .wrapper_1280 > .flr h2:before {
    margin-right: 5px;
}
.home_gallery .wrapper_1280 > .flr h2:after {
    margin-left: 5px;
}
.gallery_wrapper > a {
    position: relative;
    display: block;
}
.gallery_wrapper img {
    width: 100%;
    margin-bottom: 10px;
}
.gallery_wrapper a:hover:before {
    content: "";
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border-radius: 50%;
    background: url("./images/search.png")no-repeat 50% 50% #2c9b5a;
}
.home_gallery .wrapper_1280 > .flr > a {
    display: block;
    padding: 5px 0 0 38px;
    background: url(./images/next.png)no-repeat 0 50%;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    color: #0f0f0f;
}
.home_gallery .wrapper_1280 > .flr > a:hover {
    color: #2c9b5a;
}

div.learn_more2 {
    margin-bottom: 33px;
    background: url("./images/learn_more_bg33.jpg")no-repeat 50% 0;
    background-position: left bottom;
    background-attachment: fixed;
}
div.learn_more2 .wrapper_1280 {
    position: relative;
    margin: 78px auto 45px;
    background: url("./images/mobile.png")no-repeat 50% 50% rgba(0, 0, 0, 0.7);
}
.learn_more2 p:first-of-type {
    position: absolute;
    left: 0;
    top: 28px;
    width: 475px;
    padding: 70px 0 0 50px;
    line-height: 28px;
}
.learn_more2 form {
    float: right;
    width: 562px;
    margin: 28px 0 32px 0;
}
div.learn_more2 input[type="tel"] {
    margin: 34px auto 20px;
}
.learn_more2 form div.wpcf7-response-output {
    position: absolute;
    right: 16px;
    width: 500px;
    margin: 8px 0 0;
}
.learn_more2 form span.wpcf7-not-valid-tip {
    margin-top: -21px;
}
.investments {
    padding-bottom: 40px;
}
.investments > .fll {
    position: relative;
    width: 401px;
    height: 399px;
    margin: 30px 0 0 30px;
    background: url(./images/steps.png)no-repeat 50% 50%;
}
.investments > .fll >div {
    position: absolute;
    width: 106px;
    text-align: center;
    font-size: 14px;
}
.investments > .fll >div:nth-child(1) {
    top: 87px;
    left: 34px;
    color: #fff;
}
.investments > .fll >div:nth-child(2) {
    width: 103px;
    top: 80px;
    right: 30px;
}
.investments > .fll >div:nth-child(3) {
    top: 274px;
    left: 29px;
}
.investments > .fll >div:nth-child(4) {
    top: 286px;
    right: 40px;
    color: #fff;
}
.investments > .flr {
    width: 774px;
    padding-top: 28px;
}
.investments .btn_style {
    margin: 38px 0 0 0;
}

.learn_more3 {
    margin-bottom: 0;
    background: url("./images/learn_more_bg44.jpg")no-repeat 50% 0;
    background-position: left bottom;
    background-attachment: fixed;
}
.learn_more3.learn_more .wrapper_1280 {
    margin: 74px auto 50px;
    padding: 20px 0;
}
/**********************************************************************/
/*
    PAGE ABOUT US
*/
.about_objects.about_creator {
    height: auto;
    margin: 51px auto 50px;
    padding: 31px 0 0 0;
    background: none;
}
.plan_box {
    margin-top: 50px;
}
.plan_box > .clear {
    margin-top: 25px;
    border: 2px solid #2c9b5a;
    border-radius: 3px;
}
.plan_img {
    width: 50%;
}
.plan_img img {
    display: block;
    max-width: 600px;
}
.plan_txt {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding-left: 50px;
}
.plan_txt li {
    margin-bottom: 3px;
    padding-left: 8px;
    line-height: 22px;
    font-size: 18px;
}
.video_wrap {
    box-sizing: border-box;
    position: relative;
    width: 900px;
    margin: 31px auto 18px;
    height: 550px;
    padding: 30px 119px 148px 121px;
    background: url(./images/tv.png)no-repeat 50% 50%;
}
.video_wrap iframe{
    position: absolute;
    width: 660px !important;
    height: 371px!important;
    z-index: -1;
}

.facts_about .owl-carousel {
    margin: 25px 0 39px;
    border: 2px solid #2c9b5a;
    border-radius: 3px;
}
.facts_about .item > .fll {
    box-sizing: border-box;
    width: 50%;
    padding: 10px 25px 0 43px;
}
.facts_about .item > .flr {
    width: 48%;
}
.facts_about .item > .flr img {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}
.facts_about .item > .fll h3 {
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    margin-bottom: 34px;
    font-size: 24px;
}
.owl-dots {
    position: absolute;
    bottom: 28px;
    left: 43px;
}
.owl-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    border-radius: 50%;
    background-color: #c1c1c1;
}
.owl-dot.active,
.owl-dot:hover {
    background-color: #2c9b5a;
}
.perspectives {
    margin-bottom: 75px;
}
/**********************************************************************/
/*
    PAGE VACANSI
*/
.vakanci_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 9px;
}
.vakanci {
    position: relative;
    display: inline-block;
    width: 265px;
    height: 464px;
    margin-bottom: 61px;
    background: url("./images/vakanci_bg.png")no-repeat 50% 0;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    text-align: center;
    color: #fff;
}
.vakanci_num {
    margin-top: 23px;
    font-size: 22px;
}
.vakanci h3 {
    margin: 73px 0 12px;
    text-transform: uppercase;
    font-size: 20px;
}
.vakanci_short_desc {
    padding: 0 17px;
    line-height: 19px;
    font-family: "HelveticaNeueCyr", "Trebuchet MS", sans-serif;
}
.vakanci_more {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
}
.dm-modal .modal_content.vakanci_modal {
    width: 1185px;
    padding: 174px 113px 50px;
}
.modal_content h3,
.vakanci_modal h4 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    color: #2c2e49;
}
.vakanci_modal h4 {
    margin: 27px 0 31px;
    padding-bottom: 15px;
    border-bottom: 1px solid #34cc67;
}
.modal_content h3 {
    text-align: center;
    font-size: 20px;
}
.vakanci_modal ul {
    overflow: hidden;
}
.vakanci_modal li {
    list-style-image: url("./images/li_style.png");
    margin-bottom: 11px;
    font-size: 18px;
}
.send_resume {
    display: block;
    width: 190px;
    margin: 25px auto 0;
    border-radius: 6px;
    padding: 21px 0;
    background-color: #34cc67;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
.vakanci_modal .resume_form {
    display: block !important;
}
.resume_form h4 {
    text-align: center;
}
.resume_form form p:first-of-type {
    width: 0;
}
.resume_form form p {
    margin: 0;
    text-align: center;
}
.resume_form form p input[type="text"],
.resume_form form p input[type="email"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 90%;
    padding: 17px 20px;
    margin-left: 11px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    color: #b8b8b8;
}
.resume_form form p:nth-child(3),
.resume_form form p:nth-child(4) {
    display: inline-block;
    width: 49.4%;
}
.resume_form label {
    position: relative;
    display: inline-block;
    margin-top: 30px;
}
.resume_form span.wpcf7-not-valid-tip {
    position: absolute;
    width: 400px;
    text-align: left;
    left: 40px;
    bottom: -20px;
    font-size: 14px;
}
.file_add {
    padding: 5px 0 5px 40px;
    background: url(./images/file_add.png)no-repeat 0 50%;
    color: #656565;
    cursor: pointer;
}
.file_add:hover {
    color: #262626;
}
.vakanci_modal  input[type="file"] {
    display: none !important;
}
/**********************************************************************/
/*
    PAGE FAQ
*/
.faq_wrap {
    margin-bottom: 48px;
}
.faq_categories {
    padding-top: 16px;
    margin-bottom: 52px;
    border-bottom: 1px solid #7c7c7c;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    color: #7c7c7c;
}
.faq_categories > div {
    display: inline-block;
    padding-bottom: 45px;
    cursor: pointer;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}
.faq_categories > div:nth-child(2) {
    margin: 0 62px;
}
.faq_category_active {
    position: relative;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    color: #262626;
}
.faq_category_active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 6px;
    right: 6px;
    border-bottom: 5px solid #2c9b5a;
}
.faq_content > div {
    display: none;
}
.faq_content > div.faq_content_active {
    display: block;
}
.qustion_title {
    position: relative;
    margin-bottom: 3px;
    padding: 0 70px 0 26px;
    border-radius: 5px;
    background-color: #2c9b5a;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
}
.qustion_title > p {
    display: inline-block;
}
.qustion_title:after {
    content: "+";
    position: absolute;
    right: 28px;
    top: 12px;
    height: 37px;
    width: 37px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    font-size: 30px;
    color: #2c9b5a;
    cursor: pointer;
}
.answer_open.qustion_title:after {
    content: "-";
}
.qustion_content {
    display: none;
}
.qustion_content p {
    padding: 14px 0 17px;
    margin: 0;
    line-height: 21px;
}
/**********************************************************************/
/*
    PAGE INVESTICII
*/
.investicii_text {
    padding-bottom: 60px;
    background: url(./images/leaves.jpg)no-repeat 0 100%;
}
.investicii_text > .fll,
.investicii_text .txt_center {
    width: 66%;
}
.investicii_text > .flr {
    width: 25%;
}
.investicii_text > .flr img {
    min-width: 100%;
    max-width: 100%;
    margin: 14px 0;
}
.calc_wrapper {
    padding-bottom: 62px;
    background-color: #2c9b5a;
}
.calc_wrapper h2 {
    margin: 56px 0 40px;
    color: #fff;
}
.calc_wrapper h2:before {
    background: url("./images/pre_text_white.png")no-repeat 50%;
}
.calc_wrapper h2:after {
    background: url("./images/after_text_white.png")no-repeat 50%;
}
.deposit_amount_box,
.monthe_count_box {
    position: relative;
    width: 465px;
    margin-right: 133px;
    font-family: "MyriadProRegular", arial, sans-serif;
    font-size: 20px;
    color: #e5e5e5;
}
#slider_1_upd,
#slider_2_upd {
    position: absolute;
    top: 36px;
    right: -133px;
    display: block;
    width: 95px;
    font-family: "MyriadProSemiBold", arial, sans-serif;
    text-align: center;
    font-size: 21px;
    color: #203143;
}
.deposit_amount_box > .clear,
.monthe_count_box > .clear {
    position: relative;
    bottom: -13px;
}
.result_box {
    clear: both;
    width: 320px;
    margin: 0 auto;
    padding-top: 43px;
    font-family: "MyriadProRegular", arial, sans-serif;
    font-size: 20px;
    color: #e5e5e5;
}
.result_month_title {
    text-align: center;
}
.result_box_wrap {
    position: relative;
    margin-top: 15px;
    padding: 19px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.15);
}
.result_box_wrap:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    right: 20px;
    display: block;
    height: 1px;
    border-bottom: 1px dashed #fff;

}
#result,
#percent {
    font-family: "MyriadProSemiBold", arial, sans-serif;
    font-size: 21px;
    color: #fb6762;
}
.result_sum_box {
    margin-bottom: 26px;
}
.ref_table {
    color: #f6f4ee;
}
.ref_table td {
    padding: 10px 0;
}
.ref_table th {
    font-weight: 400;
}
.ref_result {
    padding: 10px 0;
    background-color: #25844d;
    box-shadow: 0 1px 5px #494949;
    text-align: center;
}
.ref_table input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 0 8px 10px;
    color: #979797;
}
.ref_table input:focus {
    color: #2e2e2e;
}
.ref_table tr td:nth-child(1) {
    width: 340px;
    padding-left: 60px;
}
.ref_table tr td:nth-child(2) {
    width: 100px;
}
.ref_table tr td:nth-child(3) {
    width: 75px;
    text-align: center;
}
.ref_table tr td:nth-child(4) {
    width: 250px;
    text-align: right;
}
.ref_table tr td:nth-child(5) {
    width: 60px;
    text-align: center;
}
.ref_table tr td:nth-child(6) {
    width: 100px;
}
.ref_table tr td:nth-child(7) {
    width: 72px;
    padding-left: 15px;
}
.ref_table tr td:nth-child(8) {
    width: 100px;
}
.ref_table tr td:nth-child(9) {
    padding-left: 15px;
}


.investments_page.investments {
    margin-top: 55px;
}
.investments_page.investments > .flr {
    width: 827px;
    padding-top: 61px;
}
.investments_advantages {
    list-style: none;
    font-size: 18px;
}
.investments_advantages li {
    margin-bottom: 23px;
}
.investments_advantages span {
    color: #2c9b5a;
}
/**********************************************************************/
/*
    PAGE GALLERY
*/
#gallery_content {
    height: 757px;
    margin-bottom: 35px;
}
.albums_sections h2 {
    margin: 20px 0 50px;
}
.albums_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 68px;
}
.albums_wrap .album {
    position: relative;
    width: 405px;
    height: 222px;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}
.albums_wrap .album:hover:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: url("./images/eye.png")no-repeat 50% 40% rgba(255, 255, 255, 0.4);
    cursor: pointer;
}
.albums_wrap .album.album_active .album_active_wrapper {
    visibility: visible;
    opacity: 1;
}
.album_active_wrapper {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -8px;
    top: -3px;
    right: -4px;
    bottom: -4px;
    z-index: 1000;
    background-color: #2c9b5a;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
}
.album_active_wrapper div {
    margin: 67px 21px 0;
    padding: 26px 0;
    border-radius: 4px;
    background-color: #fff;
    color: #262626;
    text-align: center;
    letter-spacing: 0.6px;
}
.albums_wrap .album img {
    width: 100%;
    min-width: 100%;
    border-radius: 5px;
    overflow: hidden;
}
.photo_count {
    position: absolute;
    left: 17px;
    top: 16px;
    z-index: 1001;
    padding: 3px 35px 3px 0;
    background: url(./images/img_count.png)no-repeat 100% 50%;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    font-size: 20px;
    color: #fff;
}
.album_title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    padding: 15px 20px;
    background-color: #2c9b5a;
    border-radius: 0 0 5px 5px;
    font-family: "HelveticaNeueCyrBold", "Trebuchet MS", sans-serif;
    text-transform: uppercase;
    color: #fff;
}
.album_title h3 {
    margin: 5px 0 0;
    font-size: 16px;
}

/*--------------------------------------------------------*/
/*
    PAGE contacts
*/
.contacts_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 35px;
}
.contacts_wrap > div {
    width: 190px;
    padding-top: 140px;
    font-family: "MyriadProSemiBold", arial, sans-serif;
    text-align: center;
    font-size: 21px;
}
.contacts_tel {
    background: url("./images/contact_phone.png")no-repeat 50% 0;
}
.post_adress {
    background: url("./images/contact_mail.png")no-repeat 50% 0;
}
.adress {
    background: url("./images/contact_adress.png")no-repeat 50% 0;
}
.soc_box {
    background: url("./images/contact_soc.png")no-repeat 50% 0;
}
.soc_box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.soc_box a {
    text-decoration: none;
    color: #262626;
}
.soc_box a:hover {
    color: #2c9b5a;
}
/*--------------------------------------------------------*/
/*
    PAGE vakanci
*/
.vakanci_wrap {
    font-family: "MyriadProRegular", arial, sans-serif;
}
.vakanci_text {
    padding: 10px 0 62px;
    text-align: center;
    font-size: 24px;
}
.vakanci_wrap form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 76px;
}
.vakanci_wrap form input.wpcf7-text,
.vakanci_wrap form textarea {
    box-sizing: border-box;
    width: 355px;
    padding: 0 0 11px 20px;
    border: none;
    outline: none;
    border-bottom: 1px solid #2c9b5a;
    font-family: "MyriadProRegular", arial, sans-serif;
    font-size: 24px;
    color: #262626;
}
.vakanci_wrap form > .textarea {
    width: 100%;
}
.vakanci_wrap form textarea {
    width: 100%;
    max-width: 1280px;
    height: 42px;
    margin-top: 60px;
    appearance: none;
    -webkit-appearance: none;
}
.vakanci_wrap form .textarea+p {
    width: 100%;
}
.vakanci_wrap form input[type="submit"] {
    display: block;
    width: 100%;
    margin: 14px 0 33px;
    padding: 21px 0;
    background-color: #2c9b5a;
    font-family: "MyriadProRegular", arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 24px;
    color: #fff;
    border: none;
    outline: none;
}
.vakanci_wrap form ::-webkit-input-placeholder {color:#262626;}
.vakanci_wrap form ::-moz-placeholder          {color:#262626;}
.vakanci_wrap form :-moz-placeholder           {color:#262626;}
.vakanci_wrap form :-ms-input-placeholder      {color:#262626;}

/*--------------------------------------------------------*/

/*
    PAGE NEWS
*/
.news_wrap {
    margin: 0 -14px;
}
.one_news {
    float: left;
    width: 408px;
    height: 580px;
    margin: 0 13px 45px;
    border: 1px solid #cdcdcd;
}
.one_news:hover {
    box-shadow: 0 0 8px #999;
}
.one_news_img {
    height: 257px;
}
.one_news img {
    width: 100%;
    height: 100%;
}
.one_news h3 {
    max-height: 60px;
    padding: 0 20px;
    font-weight: 400;
    font-size: 22px;
}
.one_news h3 a {
    text-decoration: none;
    color: #0f0f0f;
}
.one_news_date {
    margin: 0 0 17px 20px;
    font-family: "HelveticaNeueRom", "Trebuchet MS", sans-serif;
    color: #c1c1c1;
}
.one_news_date:before {
    content: "";
    width: 17px;
    height: 17px;
    margin: 0 15px -4px 0;
    display: inline-block;
    background: url(./images/time.png)no-repeat 0 50%;
}
.one_news_txt {
    overflow: hidden;
    height: 115px;
    padding: 0 20px;
    line-height: 30px;
    font-family: "HelveticaNeueRom", "Trebuchet MS", sans-serif;
    font-size: 18px;
    color: #494949;
}
.one_news > a {
    display: inline-block;
    margin: 20px 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #494949;
    text-transform: uppercase;
    text-decoration: none;
    color: #494949;
}
.one_news > a:hover {
    border-bottom: 1px solid #2c9b5a;
    color: #2c9b5a;
}
.tf_pagination .inner {
    display: flex;
    justify-content: center;
    margin: 10px 0 80px;
}
.page-numbers {
    display: block;
    width: 17px;
    height: 17px;
    margin: 0 6px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    color: #c1c1c1;
}
.page-numbers.current {
    color: #2c9b5a;
}
.page-numbers:hover {
    color: #000;
}
.next.page-numbers {
    background: url(./images/arrow_pagination.png)no-repeat 100% 4px;
}
.next.page-numbers:hover {
    background: url(./images/arrow_pagination.png)no-repeat 100% -24px;
}
.prev.page-numbers {
    background: url(./images/arrow_pagination.png)no-repeat 0 4px;
}
.prev.page-numbers:hover {
    background: url(./images/arrow_pagination.png)no-repeat 0 -24px;
}
.full_news {
    margin-bottom: 80px;
}
.full_news h1 {
    margin-bottom: 25px;
    font-size: 24px;
}
.single_img {
    max-width: 480px;
    margin: 0 50px 15px 0;
}
.single_img img {
    width: 100%;
}
.single_txt p {
    margin: 35px 0;
    line-height: 30px;
    font-family: "HelveticaNeueRom", "Trebuchet MS", sans-serif;
    color: #494949;
}

/*--------------------------------------------------------*/


footer {
    width: 1084px;
    margin: 0 auto;
    text-align: center;
}
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer ul li {
    float: left;
    padding: 4px 30px;
}
footer ul li:nth-child(1),
footer ul li:nth-child(2),
footer ul li:nth-child(5),
footer ul li:nth-child(6) {
    border-right: 1px solid #7b7b7b;
}
footer ul li:not(.footer_logo) {
    margin-top: 28px;
    padding: 4px 30px;
}
footer ul a {
    color: #0f0f0f;
    text-decoration: none;
    font-size: 18px;
}
footer ul a:hover {
    color: #33cc66;
}
.footer_logo {
    padding: 25px 51px 2px;
}
.copy,
.copy+div {
    line-height: 24px;
    font-size: 18px;
}
.license_link {
    display: inline-block;
    padding: 5px 0 30px;
    font-size: 13px;
    color: #b8b8b8;
}
.license_link:hover {
    color: #000;
}

.dm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(113, 112, 112, 0.78);
    display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.dm-table {
    display: table;
    width: 100%;
    height: 100%;
}
.dm-cell {
    display: table-cell;
    padding: 0 1em;
    vertical-align: middle;
    text-align: center;
}
.dm-modal {
    position: relative;
    display: inline-block;
    max-width: 1185px;
    color: #cfd8dc;
    text-align: left;
    -webkit-animation: fade .8s;
    -moz-animation: fade .8s;
    animation: fade .8s;
}
.dm-modal .close:hover, .dm-modal .close {
    opacity: 0.8;
}
.dm-modal .close {
    position: absolute;
    top: 22px;
    right: 31px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    background: url("./images/cancel.png")no-repeat 50% 50%;
    cursor: pointer;
}

.modal_content {
    display: none;
}
.dm-modal .modal_content {
    display: block;
    box-sizing: border-box;
    width: 595px;
    padding: 174px 60px 50px;
    border-radius: 6px;
    background: url(./images/logo3.png)no-repeat 50% 55px #bbfed3;
    font-family: "Arial", arial, sans-serif;
    color: #000;
}
@media screen and (max-width: 1366px) {
    .about_project > .flr {
        margin: -14px 30px 0 0;
    }
}