body {
    padding: 0;
    margin: 0;
    background: #ffffff;
    height: initial;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 165%;
    color: #292929;
    font-size: 14px;
}

p {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

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

button {
    outline: none;
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #dcdcdc;
}

::-webkit-scrollbar-thumb {
    background: #77786881;
    border-radius: 10px;
}

*::-webkit-media-controls-start-playback-button {
    display: none!important;
    -webkit-appearance: none;
}

/* variables */

:root {
    --black: #292929;
    --white: #FFFFFF;
    --light: #FCFCFC;
    --grey: #F4F4F4;
    --green: #777868;
  }

/* container */

.container {
    width: 100%;
    max-width: 1600px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

/* header */

.header {
    margin-top: 20px;
}

.header__inner {
    background: var(--grey);
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-left: 28px;
    padding-right: 28px;
    overflow: hidden;
}

.header__inner__logo {
    display: block;
}

.header__inner__nav, .header__inner__language {
    display: flex;
    align-items: center;
}

.header__inner__nav__item {
    text-decoration: none;
    color: var(--black);
    margin-right: 70px;
    transition: .3s;
    font-size: 13px;
}

.header__inner__nav__item:hover {
    color: var(--green);
}

.header__inner__nav {
    background: var(--white);
    border-radius: 15px;
    border: 1px solid #e8e8e8b3;
    padding-top: 25px;
    padding-bottom: 25px;
}

.header__inner__nav__item:first-child {
    margin-left: 70px;
}

.header__inner__language__rec {
    margin-left: 18px;
    margin-right: 18px;
    border-radius: 50px;
    width: 2px;
    height: 2px;
    background: var(--black);
    opacity: .3;
}

.header__inner__language__item {
    text-decoration: none;
    color: var(--black);
    opacity: .3;
    font-size: 13px;
}

.header__inner__language__item.active {
    opacity: 1;
}

.header__inner__language__item, .header__logo {
    transition: .3s;
}

.header__inner__language__item:hover {
    opacity: 1;
}

.header__inner__logo:hover {
    transform: scale(1.05);
}

.header__inner__logo {
    width: 72px;
    height: 47px;
    transition: .3s;
}

.intro__inner__burger {
    display: none;
}

/* intro */

.intro__inner {
    background: var(--grey);
    border-radius: 0 0 15px 15px;
    position: relative;
    height: 650px;
    overflow: hidden;
}

.intro__inner__imgs {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}

.intro__inner__text {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    position: relative;
}

.intro__inner-wrapper {
    position: absolute;
    left: 50%;
    top: 250px;
    transform: translate(-50%, -50%);
}

.path {
    stroke-dasharray: 90;
    stroke-dashoffset: 100;
    animation: dash 4s ease forwards 2.2s;
  }
  
@keyframes dash {
    from {
      stroke-dashoffset: 100;
    }
    to {
      stroke-dashoffset: 0;
    }
}

.intro__inner__effect {
    display: block;
    position: absolute;
    top: 37px;
    left: 7px;
}

.intro__inner__text__uptitle {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.intro__inner__text__title {
     max-width: 380px;
     text-align: center;
     line-height: 165%;
     font-weight: 400;
     font-size: 35px;
     margin-bottom: 30px;
}

.intro__inner__text__btn {
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 14px;
}

.intro__inner__text__btn {
    padding: 20px 80px;
    border-radius: 60px;
    background: conic-gradient(from 90deg at 50% 50%, rgba(119, 120, 104, 1) 0%, rgba(220, 222, 192, 1) 100%);
    text-decoration: none;
    color: #ffffff00;
    transition: .3s;
}

.intro__inner__text__btn:hover {
    color: var(--white);
}

.intro__inner__imgs__left{
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.intro__inner__imgs {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    justify-content: center;
}

.img-left {
    padding-left: 29px;
    margin-bottom: -90px;
    max-width: 650px;
    margin-right: 20px;
}

.img-right {
    padding-right: 28px;
    margin-bottom: -90px;
    max-width: 650px;
    margin-left: 20px;
}

.intro__inner__text {
    margin-bottom: 50px;
}

 .delay {
    animation-delay: .25s;
}

/* .linear-animation {
    animation-timing-function:ease;
}  */

.intro__inner__imgs-wrapper {
    opacity: 0;
    transform: translateY(100%);
    animation: slideFromBottom 1.3s 1.3s forwards;
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro__inner__imgs__item-adaptive {
    display: none;
}

/* about */

.about {
    margin-top: 200px;
    margin-bottom: 200px;
}

.about__inner {
    display: flex;
    justify-content: space-between;
}

.about__inner__text__uptitle {
    opacity: .4;
    margin-bottom: 30px;
}

.about__inner__text__title {
    font-size: 25px;
    font-weight: 300;
}

.about__inner__info {
    font-size: 25px;
    font-weight: 300;
    max-width: 571px;
    line-height: 150%;
}

.about__inner__info span {
    opacity: .4;
}

/* work */

.work {
    background: var(--green);
    padding-top: 200px;
    padding-bottom: 200px;
}

.work__inner__text__uptitle {
    color: var(--light);
    opacity: .4;
}

.work__inner__text__title {
    margin-bottom: 30px;
    color:var(--light);
    font-size: 25px;
    font-weight: 300;
}

.work__inner__text__subtitle {
    max-width: 320px;
    font-size: 14px;
    color: var(--light);
    font-weight: 300;
    margin-bottom: 80px;
}

.work__inner__blocks__item {
    border-radius: 15px;
    width: 100%;
    max-width: 50%;
    display: block;
    background: var(--light);
    transition: .3s;
}

.work__inner__blocks__item:hover {
    transform: scale(1.02);
}

.work__inner__blocks__item__inner__left__num {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #DEDEDA;
    border: 1px solid #BDBDB9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 20px;
}

.work__inner__blocks__item__inner {
    padding: 60px;
}

.work__inner__blocks__item__inner__left__text {
    max-width: 300px;
    margin-top: 30px;
    font-size: 14px;
}

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

.work__inner__blocks__item {
    width: calc(50% - 20px); 
    margin-bottom: 20px;
}

.work__inner__blocks__item:nth-child(5), .work__inner__blocks__item:nth-child(6) {
    margin-bottom: 0;
}

.work__inner__blocks__item__inner {
    display: flex;
    justify-content: space-between;
}

.work__inner__blocks__item:nth-child(2), .work__inner__blocks__item:nth-child(4), .work__inner__blocks__item:nth-child(6) {
    width: 50%;
}

/* contacts */ 

.contacts {
    margin-top: 200px;
    margin-bottom: 80px;
}

.contacts__inner {
    display: flex;
    justify-content: space-between;
}

.contacts__inner__text__uptitle {
    opacity: .4;
}

.contacts__inner__text__title {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 300;
}

.contacts__inner__text__subtitle {
    max-width: 400px;
    font-size: 14px;
    margin-bottom: 70px;
}

.contacts__inner__text__mail, .contacts__inner__text__tel  {
    font-size: 20px;
    color: var(--green);
    font-weight: 300;
    transition: .3s;
    cursor: pointer;
    width: fit-content;
}

.contacts__inner__text__mail:hover, .contacts__inner__text__tel:hover {
    transform: translateX(5px);
}

.contacts__inner__text__tel {
    margin-bottom: 30px;
}

/* form */

.contacts__inner__right {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    border: 1px solid #E8E8E8;
}

.contacts__inner__right__form {
    padding: 70px;
}

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

.contacts__inner__right__form__top__item {
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 25px;
    width: calc(50% - 20px); 
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: .3s;
    margin-bottom: 20px;
}

.contacts__inner__right__form__top__item::placeholder {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.contacts__inner__right__form__top__item.item-email {
    width: 50%;
}

.contacts__inner__right__form__top__item:hover {
    border: 1px solid #c9c9c9;
}

.contacts__inner__right__form__top__item:focus {
    outline: none;
    border: 1px solid #c9c9c9;
}

.contacts__inner__right__form__middle__item {
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 25px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: .3s;
    margin-bottom: 20px;
    width: 100%;
    resize: none;
    max-height: 140px; 
}

.contacts__inner__right__form__middle__item::placeholder {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.contacts__inner__right__form__middle__item:hover {
    border: 1px solid #c9c9c9;
}

.contacts__inner__right__form__middle__item:focus {
    outline: none;
    border: 1px solid #c9c9c9;
}

.contacts__inner__right__form__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contacts__inner__right__form__bottom__text {
    max-width: 280px;
    opacity: .4;
    font-size: 14px;
    font-weight: 300;
}

.contacts__inner__right__form__bottom__btn {
    border-radius: 10px;
    border: none;
    outline: none;
    color: var(--light);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    padding: 25px 120px;
    background: var(--green);
    transition: .3s;
}

.contacts__inner__right__form__bottom__btn:hover {
   background:  #90917e;
}

.work__inner__blocks__item__inner__right {
    position: relative;
}

.work__inner__blocks__item__inner__right__item {
    position: absolute;
    left: 0;
    top: 0;
}

/* footer */

.footer__img {
    max-width: 240px;
    margin-left: 50px;
    margin-bottom: -22px;
    z-index: 10;
}

.footer__inner {
    border-radius: 15px;
    margin-bottom: 20px;
    background: var(--grey);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer__inner__logo {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.footer__inner__copyright {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer__inner__text {
    text-align: center;
    font-weight: 300;
    font-size: 13px;
    max-width: 310px;
    opacity: .6;
    line-height: 155%;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.footer__img.img-adaptive {
    display: none;
}

/* preloader */

.prelaoder {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: var(--white);
    z-index: 20;
    margin-top: -20px;
}

.preloader__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.preloader__inner__item {
    overflow: hidden;
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 15px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__inner__item__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.preloader__inner__item__wrapper__img {
    animation: opacity 2s infinite;
}

@keyframes opacity  {
    0% {
      opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
      opacity: 0;
    }
}

/* burger */

.burger {
    display: none;
}

.header__inner__burger {
    display: none;
}
  