body {
	font-family: 'Roboto', sans-serif;
}
a {
	text-decoration: none; 
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}



header {
    position: absolute;
    top: 0;
    left: 0;
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 13px;
    border-bottom: 1px solid #fff;
    z-index: 10;
}
.logo {
    margin-left: 53px;
}
.logo img {
    margin-top: 28px;
}
.header-right {
    display: flex;
    align-items: center;
}
.header-mail {
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}
.header-phone {
    color: #fff;
    font-weight: 500;
    margin-left: 40px;
}
.header-language {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
    background: #fff;
    border-radius: 50px;
    outline: 4px solid #d9d9d9;
    outline-offset: -7px;
    font-size: 14px;
    color: #363636;
    font-weight: 700;
}
.header-button {
    margin-left: 10px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: #EB803E;
    border-radius: 50px;
    width: 140px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    border: 1px solid #fff;
    display: none;
}

header.scroll {
    position: fixed;
    background: #799370;
    border: none;
}
header.scroll .menu-button img {
    content: url(../img/menu-open.png);
}
header.scroll .logo img {
    content: url(../img/logo-secondary.png);
    margin-top: 0;
}
header.scroll .header-button {
    display: flex;
}



.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    display: flex;
    justify-content: center;
    border-right: 1px solid #799370;
    background: #fff;
    z-index: 9;
}
.sidebar-inner {
    height: 100%;
    width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}
.sidebar-ind {
    width: 20px;
    height: 1px;
    background: #D9D9D9;
    margin: 36px 0;
    position: relative;
}
.sidebar-ind.active {
    background: #799370;
}
.sidebar-ind:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #D9D9D9;
    left: -23px;
    top: -2px;
}
.sidebar-ind.active:before {
    width: 7px;
    height: 7px;
    background: #799370;
    border: 1px solid #799370;
    outline: 1px solid #fff;
    outline-offset: -2px;
}
.telegram {
    position: absolute;
    bottom: 61px;
}
.instagram {
    position: absolute;
    bottom: 24px;
}


.menu {
    position: fixed;
    z-index: 12;
    background: #fff;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    left: -300px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.menu.active {
    left: 0;
}
.menu-top {
    display: flex;
    align-items: center;
    margin-top: 18px;
    margin-left: 13px;
}
.menu-close img {
    margin-right: 30px; 
}
.menu-content {
    margin-left: 37px;
    display: flex;
    flex-direction: column;
}
.menu-item {
    color: #363636;
    padding: 25px 0 25px 30px;
    position: relative;
}
.menu-item.active {
    color: #000;
    font-weight: 700;
}
.menu-item:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #D9D9D9;
    left: 0;
    top: 33px;
}
.menu-item.active:before {
    width: 7px;
    height: 7px;
    background: #799370;
    border: 1px solid #799370;
    outline: 1px solid #fff;
    outline-offset: -2px;
}
.menu-bottom {
    margin-left: 26px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}
.menu-telegram {
    font-size: 14px;
    color: #242424;
    font-weight: 700;
}
.menu-telegram img {
    margin-right: 20px; 
}
.menu-instagram {
    font-size: 14px;
    color: #242424;
    font-weight: 700;
}
.menu-instagram img {
    margin-right: 20px; 
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 11;
    background: #00000054;
    display: none;
}
.menu-overlay.active {
    display: block;
}


#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero-background .row {
    height: 100vh;
}
.hero-background .col-md-8 {
    background: url(../img/hero-bg.jpg) no-repeat center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.hero-content .container {
	height: 100vh; 
}
.hero-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.hero-title {
	font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 52px;
    margin-bottom: 40px;
    color: #242424;
}
.hero-button {
    font-size: 14px;
    background: #EB803E;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    color: #fff;
}



#about {
    overflow: hidden;
    position: relative;
}
.about-left {
    text-align: end;
    padding-top: 150px;
    background: #EDEFEC;
}
.about-image {
    width: 100%;
}
.about-right {
    padding-top: 150px;
    padding-left: 80px;
    position: relative;
    z-index: 2;
}
.main-title {
	font-family: 'Inter', sans-serif;
    color: #242424;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.main-text {
    color: #646464;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 20px;
}
.about-row {
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #BFBFBF;
}
.about-row.last {
    border-bottom: 1px solid #BFBFBF;
}
.about-row img {
    width: 44px;
    margin-right: 34px;
}
.about-row p {
    color: #363636;
    margin: 0;
}
#logo-bg {
    position: absolute;
    bottom: -166px;
    right: -300px;
}



#direction {
    padding-top: 140px;
    padding-bottom: 60px;
    overflow: hidden;
}
.direction-left {
    display: flex;
    justify-content: end;
}
.direction-left-inner {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.direction-left-inner .main-title {
    font-size: 26px;
    margin-bottom: 38px;
}
.direction-block {
    position: relative;
    border-radius: 8px;
    margin-bottom: 40px;
}
.direction-block img {
    width: 100%;
    border-radius: 8px;
}
.direction-block p {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}
.direction-block span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(121,147,112,1) 0%, rgba(242,238,232,0) 60%);
    z-index: 1;
    border-radius: 0 0 8px 8px;
}

#advantages {
    padding: 80px 0 130px;
    background: #EDEFEC;
}
.advantages .main-title {
    margin-bottom: 60px; 
}
.advantages-block {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.advantages-block img {
    margin-right: 30px;
}
.advantages-block p {
    font-size: 18px;
    color: #363636;
    font-weight: 600;
    margin: 0;
}


#solutions {
    overflow: hidden;
    position: relative;
}
.solutions-content {
    padding: 100px 0 80px;
    position: relative;
    z-index: 2;
}
.solutions .main-title {
    margin-bottom: 20px; 
}
.solutions-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px; 
}
.solutions-content-row .main-text {
    margin-bottom: 0; 
}
.solutions-inner {
    position: relative;
}
.solutions-inner img {
    width: 100%;
    border-radius: 8px;
}
.solutions-inner p {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}
.solutions-inner span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(121,147,112,1) 0%, rgba(242,238,232,0) 60%);
    z-index: 1;
    border-radius: 0 0 8px 8px;
}
.swiper.mySwiper {
    overflow: inherit;
}
.swiper-controls {
    position: relative;
    display: flex;
    margin-top: 50px;
}
.swiper-controls-inner {
    position: relative;
    width: 160px;
    height: 64px;
}
.swiper-button-prev, .swiper-button-next, .swiper-pagination {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: auto !important;
}
.swiper-button-prev, .swiper-button-next {
    width: 64px;
    height: 64px;
    border: 2px solid #EB803E;
    border-radius: 8px;
    opacity: 1 !important;
}
.swiper-button-next {
    right: 0 !important;
}
.swiper-button-prev:after, .swiper-button-next:after {
    display: none;
}
.swiper-pagination {
    bottom: 20px !important;
}
.swiper-pagination-bullet {
    background: #fff;
    border: 1px solid #363636;
    opacity: 1;
    margin: 0 21px !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #799370;
    border: none;
}
.solutions-background {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #EDEFEC;
}



#map {
    padding-top: 70px;
}
.map-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    margin-bottom: 20px;
    background: #F5F5F5;
    border-radius: 8px;
    color: #000;
    width: 100%;
    border: none;
    -webkit-transition: all ease 0.3s;
       -moz-transition: all ease 0.3s;
        -ms-transition: all ease 0.3s;
         -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
}
.map-button:hover {
    color: #fff;
    background: #EB803E;
}
.map-button.active {
    color: #fff;
    background: #EB803E;
}
.map-bottom {
    position: relative;
}
.map-image {
    margin-top: 60px;
    position: relative;
}
.compass {
    position: absolute;
    top: 0;
    left: 0;
}
.map-image svg {
    width: 100%;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
.map-image path {
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.map-image path:hover {
    fill: #EB803E;
}
.map-image path.active {
    fill: #EB803E;
}
.map-text {
    position: absolute;
    top: 30px;
    left: 200px;
    color: #B7B7B7;
    font-size: 14px;
}
.map-text span {
    font-size: 20px;
    font-weight: 600;
}
.map-info {
    position: absolute;
    width: 280px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 15px #00000029;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all ease 0.3s;
       -moz-transition: all ease 0.3s;
        -ms-transition: all ease 0.3s;
         -o-transition: all ease 0.3s;
            transition: all ease 0.3s;
}
.map-info.active {
    opacity: 1;
    z-index: 2;
}
.map-info:before {
    content: url(../img/polygon-1.png);
    position: absolute;
    bottom: -20px;
    left: 50px;
}
.map-info-title {
    font-family: 'Inter';
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.map-info-text {
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: #757575;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 0;
}
.map-info.map-astana {
    top: -20px;
    left: 690px;
}
.map-info.map-almaty {
    top: 273px;
    left: 816px;
}
.map-info.map-aktobe {
    top: 110px;
    left: 366px;
}
.map-info.map-aksai {
    top: 88px;
    left: 271px;
}
.map-info.map-oral {
    top: 233px;
    left: 232px;
}
.map-info.map-atyrau {
    top: 210px;
    left: 247px;
}
.map-info.map-kulsary {
    top: 370px;
    left: 286px;
}
.map-info.map-aktau {
    top: 321px;
    left: 231px;
}
.map-info.map-zhanozen {
    top: 498px;
    left: 272px;
}
.map-info.map-kyzylorda {
    top: 264px;
    left: 538px;
}
.map-info.map-shymkent {
    top: 379px;
    left: 648px;
}
.map-info.map-oskemen {
    top: 115px;
    left: 944px;
}
.map-info.map-pavlodar {
    top: 44px;
    left: 820px;
}
.map-info.map-kulsary:before, .map-info.map-zhanozen:before, .map-info.map-oral:before {
    content: url(../img/polygon-2.png);
    bottom: auto;
    top: -13px;
}
@media (max-width: 1399px) {
    .map-info.map-astana {
        top: -20px;
        left: 601px;
    }
    .map-info.map-almaty {
        top: 273px;
        left: 726px;
    }
    .map-info.map-aktobe {
        top: 110px;
        left: 276px;
    }
    .map-info.map-aksai {
        top: 85px;
        left: 183px;
    }
    .map-info.map-oral {
        top: 237px;
        left: 142px;
    }
    .map-info.map-atyrau {
        top: 215px;
        left: 157px;
    }
    .map-info.map-kulsary {
        top: 370px;
        left: 197px;
    }
    .map-info.map-aktau {
        top: 321px;
        left: 141px;
    }
    .map-info.map-zhanozen {
        top: 492px;
        left: 182px;
    }
    .map-info.map-kyzylorda {
        top: 264px;
        left: 449px;
    }
    .map-info.map-shymkent {
        top: 379px;
        left: 558px;
    }
    .map-info.map-oskemen {
        top: 115px;
        left: 855px;
    }
    .map-info.map-pavlodar {
        top: 44px;
        left: 730px;
    }
}
@media (max-width: 767px) {
    .map-info.map-astana {
        top: -20px;
        left: 601px;
        display: none;
    }
    .map-info.map-almaty {
        top: 273px;
        left: 726px;
        display: none;
    }
    .map-info.map-aktobe {
        top: 110px;
        left: 276px;
        display: none;
    }
    .map-info.map-aksai {
        top: 85px;
        left: 183px;
        display: none;
    }
    .map-info.map-oral {
        top: 237px;
        left: 142px;
        display: none;
    }
    .map-info.map-atyrau {
        top: 215px;
        left: 157px;
        display: none;
    }
    .map-info.map-kulsary {
        top: 370px;
        left: 197px;
        display: none;
    }
    .map-info.map-aktau {
        top: 321px;
        left: 141px;
        display: none;
    }
    .map-info.map-zhanozen {
        top: 492px;
        left: 182px;
        display: none;
    }
    .map-info.map-kyzylorda {
        top: 264px;
        left: 449px;
        display: none;
    }
    .map-info.map-shymkent {
        top: 379px;
        left: 558px;
        display: none;
    }
    .map-info.map-oskemen {
        top: 115px;
        left: 855px;
        display: none;
    }
    .map-info.map-pavlodar {
        top: 44px;
        left: 730px;
        display: none;
    }
}



#contacts {
    overflow: hidden;
    background: #F9F9F9;
    padding-top: 400px;
    margin-top: -300px;
}
.contacts-left {
    padding-top: 80px;
    padding-right: 150px;
}
.contacts .main-title {
    font-size: 24px;
    margin-bottom: 14px;
}
.contacts-left .main-text {
    margin-bottom: 17px;
}
.contacts-right {
    position: relative;
}
.contacts-card {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    width: 300px;
    height: 90px;
    display: flex;
    padding: 20px;
}
.contacts-card p {
    margin: 0;
    font-weight: 600;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    font-size: 12px;
    font-weight: 500;
    color: #363636;
}
input {
    height: 48px;
    border: none;
    border-radius: 4px;
    margin-bottom: 18px;
    padding-left: 20px;
    font-size: 14px;
}
input[type="submit"] {
    background: #EB803E;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.form-submit.hide {
    display: none;
}
.form-submitted {
    height: 48px;
    margin: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: #EB803E;
    border-radius: 8px;
    color: #fff;
}
.form-submitted.show {
    display: flex;
}
.contacts-main {
    padding-top: 30px;
}
.contacts-text {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}
.contacts-text a {
    color: #222;
    font-weight: 600;
}
.contacts-right iframe {
    width: 100%;
    height: 688px;
}



footer {
    height: 70px;
    padding: 0 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #BFBFBF;
}
footer p, footer a {
    font-size: 10px;
    color: #363636;
    margin: 0;
}



.modal-content {
    padding: 40px 50px;
    position: relative;
    background: #F9F9F9;
}
.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}



@media (max-width: 767px) {
    .container-left, .container-right {
        padding-left: 12px;
        padding-right: 12px;
    }
    header {
        padding: 0 20px;
    }
    .header-mail, .header-phone, .sidebar, header.scroll .header-button {
        display: none;
    }
    .menu-button img {
        content: url(/img/menu-open.png);
    }
    .logo {
        margin-left: 30px;
    }
    .logo img {
        content: url(/img/logo-secondary.png);
        margin-top: 0;
    }
    .header-language {
        width: 54px;
        height: 54px;
    }
    .menu-top {
        margin-left: 20px;
    }
    .hero-background .row {
        flex-direction: column-reverse;
    }
    .hero-background .col-md-4 {
        height: 30vh;
    }
    .hero-background .col-md-8 {
        height: 70vh;
    }
    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .hero-inner {
        padding-top: 20vh;
    }
    #about {
        padding-bottom: 40px;
    }
    .about-image {
        content: url(../img/about-image-mobile.jpg);
    }
    .about-left {
        padding-top: 80px;
    }
    .about-right {
        padding-top: 40px;
    }
    .main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    #logo-bg {
        bottom: -111px;
        right: -255px;
        width: 528px;
    }
    #direction {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .direction-left {
        justify-content: center;
    }
    .direction-left-inner .main-title {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: center;
    }
    .direction-block p {
        padding: 16px 10px;
        font-size: 12px;
    }
    #advantages {
        padding: 50px 0 60px;
    }
    .advantages .main-title {
        margin-bottom: 40px;
        text-align: center;
    }
    .solutions-content {
        padding: 50px 0;
    }
    .swiper-pagination {
        display: none;
    }
    .solutions-content-row {
        flex-direction: column;
        align-items: start;
    }
    .solutions-content-row .main-text {
        margin-bottom: 20px;
    }
    .solutions-inner p {
        padding: 20px 24px;
        font-size: 14px;
    }
    .compass, .map-text {
        display: none;
    }
    .map-image {
        margin-top: 0;
    }
    .map-image svg {
        height: 180px;
    }
    .map-info {
        padding: 10px;
    }
    .map-info-title {
        font-size: 12px;
    }
    .map-info-text {
        font-size: 10px;
    }
    #contacts {
        padding-top: 60px;
        margin-top: -90px;
    }
    .contacts-left {
        padding-bottom: 30px;
    }
    .contacts-main {
        padding-bottom: 50px;
    }
    footer {
        height: 50px;
        padding: 0 12px;
        border-top: none;
    }
    .modal-content {
        padding: 20px 25px;
    }
}




@media (min-width: 576px) {
    .container-left {
        padding-left: calc(50vw - 270px);
    }
    .container-right {
        padding-right: calc(50vw - 270px);
    }
}
@media (min-width: 768px) {
    .container-left {
        padding-left: calc(50vw - 360px);
    }
    .container-right {
        padding-right: calc(50vw - 360px);
    }
}
@media (min-width: 992px) {
    .container-left {
        padding-left: calc(50vw - 480px);
    }
    .container-right {
        padding-right: calc(50vw - 480px);
    }
}
@media (min-width: 1200px) {
    .container-left {
        padding-left: calc(50vw - 570px);
    }
    .container-right {
        padding-right: calc(50vw - 570px);
    }
}
@media (min-width: 1400px) {
    .container-left {
        padding-left: calc(50vw - 660px);
    }
    .container-right {
        padding-right: calc(50vw - 660px);
    }
}