body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: 'Poppins', sans-serif;
    color: var(--txt-color);
    font-size: 17px;
    font-weight: 300;
    line-height: 29px;
    padding-top: 112px;
    --txt-color: #000;
    --main-color: #e57403;
    --second-color: #303030;
}
* {
    outline: none;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
main {
    position: relative;
}
.wrapper-small {
    padding-left: 6vw;
    padding-right: 6vw;
}
.wrapper {
    padding-left: 9vw;
    padding-right: 9vw;
}
.wrapper-big {
    padding-left: 12vw;
    padding-right: 12vw;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.padds {
    padding-left: 10px;
    padding-right: 10px;
}
.padd-top {
    padding-top: 60px;
}
.marg-top-small {
    margin-top: 30px;
}
.marg-top {
    margin-top: 60px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-top-biggest {
    margin-top: 160px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.w-100 {
    width: 100%;
}
.absolute-link {
    position: relative;
}
.absolute-link .absolute-link__item {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
}

.boxshadow {
    background-color: #fff;
    position: relative;
}
.boxshadow:before {
    content: '';
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: inline-block;
    box-shadow: 0px 0px 18px -6px rgba(0,0,0, 0.5);
    border-radius: 50%;
}

.position-relative {
    position: relative;
}
.section-heading {
    font-size: 42px;
    line-height: 46px;
    font-weight: 500;
    color: var(--txt-color);
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.section-heading:after {
    content: '';
    height: 3px;
    width: 60px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main-color);
}
.page-heading {
    font-size: 42px;
    line-height: 48px;
    font-weight: 500;
    color: #000;
    margin-bottom: 60px;
}
.section-txt {
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.error-wrapper {
    margin-top: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.slick-lightbox .slick-arrow {
    background-color: rgba(200, 200, 200, .8);
    width: 70px;
    height: 45px;
    background-image: url(../assets/right.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    position: absolute;
    top: 50%;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    border: none;
    z-index: 9;
    transform: translateY(-50%);
}
.slick-lightbox .slick-prev {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}
.slick-lightbox .slick-arrow {
    right: 0;
}

.cbtn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
    transition: .3s;
    cursor: pointer;
    border-radius: 16px;
    letter-spacing: 1px;
}
.cbtn:hover {
    color: #fff;
    border-color: var(--second-color);
    background-color: var(--second-color);
}
/* @ @ HEADER @ @ */

/* menu button start */
.nav-icon {
    width: 33px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 999999;
    position: relative;
    display: none;
    margin-left: 10px;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon span:nth-child(1) {
    top: 0px;
}
.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 10px;
}
.nav-icon span:nth-child(4) {
    top: 20px;
}
.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
/* menu button end */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 3px rgba(144,144,144, .6);
    transition: .3s;
    z-index: 999;
}
.scrolled .header {
    padding-top: 15px;
    padding-bottom: 15px;
}
.header__logo {
    padding: 0 15px;
    max-width: 210px;
    flex: 0 0 210px;
}
.header__logo a {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 32px;
}
.header__logo img {
    width: 130px;
    transition: .3s;
}
.scrolled .header__logo img {
    width: 80px;
}
/* menu start */
.header__menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}
.header__menu ul li {
    margin-left: 40px;
}
.header__menu ul li a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
}
/* menu end */
/* @ @ HEADER END @ @ */

/* @ @ BANER START @ @ */
.baner {
    position: relative;
}
.baner__item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.baner__txt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}
.baner__content {
    background-color: rgba(48,48,48,.7);
    color: #fff;
    padding: 40px 40px;
    text-align: left;
    display: block;
    width: 50%;
}
.baner__title {
    font-weight: 400;
    font-size: 52px;
    line-height: 56px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.baner__title:after {
    content: '';
    width: 100px;
    background-color: var(--main-color);
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.baner__link {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}
.baner__item:nth-child(even) .baner__link {
    justify-content: flex-end;
}
.baner__links {
    display: flex;
    flex-wrap: wrap;
}
.baner__item:nth-child(even) .baner__link a {
    margin-left: 20px;
    margin-bottom: 20px;
}
.baner .slick-dots {
    position: absolute;
    bottom: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 8;
    flex-wrap: wrap;
}
.baner .slick-dots li {
    width: 100px;
    max-width: 100%;
    margin: 10px;
    height: 6px;
    background-color: #eaeaea;
    transition: .3s;
    box-shadow: 0px 0px 3px rgba(144,144,144, .3);
    cursor: pointer;
}
.baner .slick-dots li.slick-active {
    background-color: var(--main-color);
}
.baner .slick-dots li button {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    font-size: 0;
    border: none;
    padding: 0;
    background-color: transparent;
    color: transparent;
}
.baner .slick-arrow {
    background-color: rgba(200, 200, 200, .8);
    width: 70px;
    height: 45px;
    background-image: url(../assets/right.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    position: absolute;
    top: 50%;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    border: none;
    z-index: 9;
    transform: translateY(-50%);
}
.baner .slick-prev {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}
.baner .slick-arrow {
    right: 0;
}
/* @ @ BANER END @ @ */
/* @ @ OFFER START @ @ */
.offer__items {
    justify-content: center;
}
.offer__item {
    margin-top: 30px;
    padding: 0 30px;
}
.offer__title {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin: 10px 0 10px 0;
    color: var(--main-color);
}
.offer__txt {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 10px 0;
}
.offer__item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
/* @ @ OFFER END @ @ */
/* @ @ SPECIAL START @ @ */
.special__img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.special__txt {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
.special__txt .cbtn {
    margin-top: 20px;
}
/* @ @ SPECIAL END @ @ */
/* @ @ SERVICES START @ @ */
.services__item {
    margin-top: 40px;
    padding-bottom: 20px;
}
.services__item:not(:last-child) {
    border-bottom: 1px solid rgba(229, 116, 3, .3);
}
.services__item>h3 {
    max-width: 40%;
    flex: 0 0 40%;
}
.services__item>div {
    max-width: 60%;
    flex: 0 0 60%;
    padding-left: 40px;
}
.services__item>div p {
    margin-top: 0;
}
/* @ @ SERVICES END @ @ */
/* @ @ REALIZATIONS START @ @ */
.real {
    background-color: var(--second-color);
    padding-top: 60px;
    padding-bottom: 60px;
}
.real .section-heading {
    color: #fff;
}
.real .section-txt {
    color: #fff;
}
.real .slick-arrow {
    background-color: rgba(200, 200, 200, .8);
    width: 70px;
    height: 45px;
    background-image: url(../assets/right.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    position: absolute;
    top: 50%;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    border: none;
    z-index: 9;
    transform: translateY(-50%);
}
.real .slick-prev {
    left: 5px;
    transform: translateY(-50%) rotate(180deg);
}
.real .slick-arrow {
    right: 5px;
}
.real__item {
    padding: 5px;
}
.real__item>div {
    position: relative;
}
.real__item img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: .3s;
}
.real__item:hover img {
    filter: brightness(50%);
}
.real__title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px 30px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    background-color: rgba(0,0,0, .8);
    padding-bottom: 20px;
    z-index: 2;
}
.real__title:after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 13px;
    right: 30px;
    left: 30px;
    background-color: var(--main-color);
}
/* @ @ REALIZATIONS END @ @ */
/* @ @ INFO START @ @ */
.info__txt {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.info__txt .cbtn {
    margin-top: 20px;
}
/* @ @ INFO END @ @ */
/* @ @ ICONS START @ @ */
.icons__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    padding: 0 60px;
}
.icons__title {
    font-weight: 600;
    color: var(--main-color);
    font-size: 26px;
    line-height: 34px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.icons__txt {
    font-size: 14px;
    line-height: 20px;
}
.icons__txt strong {
    color: var(--main-color);
}
.icons__item figure {
    height: 140px;
    text-align: center;
}
.icons__item figure img {
    width: auto;
    height: 100%;
}
/* @ @ ICONS END @ @ */
/* @ @ CTA START @ @ */
.cta {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--second-color);
    color: #fff;
}
.cta .section-heading {
    font-size: 84px;
    line-height: 85px;
    color: #fff;
    font-weight: 400;
}
.cta__p {
    font-size: 24px;
    line-height: 34px;
}
.cta__txt {
    max-width: calc(100% - 400px);
    flex: 0 0 calc(100% - 400px);
    padding: 0 15px;
}
.cta__link {
    max-width: 400px;
    flex: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    flex-direction: column;
}
.cta__link .cbtn {
    margin: 10px 0;
    min-width: 310px;
    text-align: center;
}
.cta__link .cbtn:hover {
    border-color: var(--main-color);
}
/* @ @ CTA END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    background-color: #fff;
    padding: 20px 0;
}
.footer__bottom {
    color: #929292;
    font-size: 14px;
    line-height: 22px;
    font-size: 13px;
    line-height: 16px;
}
.footer__policy {
    margin: 10px 0;
    display: flex;
    align-items: center;
}
.footer__policy span {
    display: inline-block;
    margin: 0 5px;
}
.footer__copy {
    text-align: right;
    display: flex;
    align-items: center;
    margin: 10px 0;
    justify-content: center !important;
}
.footer__copy span {
    display: inline-block;
    margin-left: 3px;
}
.footer__bottom-sep {
    display: inline-block;
    margin: 0 10px !important;
    color: #eaeaea;
}

/* @ @ FOOTER END @ @ */

/* @ @ MEDIA START @ @  */
@media(min-width: 2400px) {
    main {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper {
        padding-left: 120px;
        padding-right: 12px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-big {
        padding-left: 220px;
        padding-right: 22px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 1440px) {
    .wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .wrapper-big {
        padding-right: 6vw;
        padding-left: 6vw;
    }
    body {
        font-size: 16px;
        line-height: 24px;
    }

    .baner__title {
        font-size: 42px;
        line-height: 46px;
    }

    .real__item img {
        height: 340px;
    }
    .real__title {
        font-size: 22px;
        line-height: 32px;
    }

    .icons__item figure {
        height: 120px;
    }

    .cta .section-heading {
        font-size: 74px;
        line-height: 75px;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
    .baner__content {
        width: 70%;
    }
}
@media(max-width: 1200px) {
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
    .info__txt {
        padding-left: 60px;
    }
    .cta__txt header,
    .info__txt header {
        text-align: left;
    }
    .special__txt .section-heading:after,
    .cta__txt .section-heading:after,
    .info__txt .section-heading:after {
        left: 0;
        transform: none;
    }
    .info__img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}
@media(max-width: 992px) {
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
    body {
        font-size: 15px;
        line-height: 26px;
        padding-top: 75px;
    }
    .section-heading {
        font-size: 32px;
        line-height: 42px;
    }

    .page-heading {
        font-size: 2rem;
        line-height: 150%;
        margin-bottom: 30px;
    }

    .nav-icon {
        display: block;
    }
    .header {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .scrolled .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header__logo {
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header__logo img {
        width: 80px;
    }
    .scrolled .header__logo img {
        width: 60px;
    }
    .header__menu {
        position: fixed;
        top: 0;
        right: -500px;
        width: 400px;
        max-width: 100%;
        box-shadow: 0px 0px 3px rgba(144,144,144, .3);
        padding: 40px;
        background-color: #fff;
        z-index: 9;
        height: 100%;
        overflow: auto;
        transition: .5s;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .menuopened .header__menu {
        right: 0;
    }
    .header__menu ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .header__menu ul li {
        margin: 10px 0;
    }
    
    .info__txt .cbtn {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .icons__item {
        padding: 0 30px;
    }
    .icons__item figure {
        height: 80px;
    }
    .icons__title {
        font-size: 20px;
        line-height: 25px;
    }

    .offer__item {
        padding: 0 15px;
    }
    .offer__item img {
        height: 300px;
    }

    .special__img {
        order: 1;
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    .special__img img {
        width: 500px;
        min-height: initial;
    }
    .special__txt {
        order: 0;
        padding: 0 15px;
        align-items: center;
    }
    .special__txt .section-heading {
        text-align: center;
    }

    .services__item {
        margin-top: 30px;
    }
    .services__item>h3 {
        font-size: 1.3rem;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .services__item>div {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }

    .cta {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .cta__link,
    .cta__txt {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }
    .cta .section-heading {
        font-size: 54px;
        line-height: 55px;
    }
    .cta__p {
        font-size: 20px;
        line-height: 30px;
    }
    .cta__link {
        margin-top: 30px;
    }
}
@media(max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 22px;
    }
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 60px;
    }
    .section-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .baner__item img {
        height: 500px;
    }
    .baner__txt {
        justify-content: center;
    }
    .baner__content {
        width: 95%;
        margin: 0 auto;
    }
    .baner__title {
        font-size: 32px;
        line-height: 36px;
        text-align: center;
    }
    .slick-lightbox .slick-arrow,
    .real .slick-arrow,
    .baner .slick-arrow {
        width: 35px;
        height: 35px;
        background-image: 6px;
    }
    .baner .slick-dots {
        bottom: 10px;
    }
    .baner .slick-dots li {
        width: 50px;
        height: 4px;
    }
    .baner__link {
        justify-content: center !important;
    }

    .offer__item img {
        height: 200px;
    }
    .offer__title {
        font-size: 20px;
        line-height: 30px;
    }

    .services__item>h3 {
        font-size: 1.2rem;
    }

    .icons__title {
        margin-top: 10px;
        font-size: 18px;
    }

    .cta .section-heading {
        font-size: 44px;
        line-height: 45px;
    }
    .cta__p {
        font-size: 18px;
        line-height: 28px;
    }

    .footer__policy {
        justify-content: center;
        text-align: center;
    }
    .footer__copy {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }
    .footer__copy>div {
        margin-bottom: 5px;
    }

    .footer__bottom-sep {
        display: none !important;
    }
    
  }
  @media(max-width: 501px) {
    .real__item img {
        height: 240px;
    }
    .real__title {
        padding: 10px 20px;
        font-size: 18px;
        line-height: 25px;
    }
    .real__title:after {
        left: 20px;
        right: 20px;
    }

    .cta .section-heading {
        font-size: 33px;
        line-height: 35px;
    }
  }
/* @ @ MEDIA END @ @  */