*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
* {
	font-family: inherit;
    font-weight: inherit;
	color: inherit;
}
body.lock {
	overflow: hidden;
}
body {
    font-weight: 300;
	color: rgba(29, 64, 59, 0.78);
	font-family: 'AauxNextComp';
}
body, h1, h2, h3, h4, h5, h6, p {
	padding: 0;
	margin: 0;
}
a {
	text-decoration: none;
	color: inherit;
	outline: none;
}
ul {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
}
.error {
    margin-bottom: 5px;
    color: #b11b1b;
    font-weight: bold;
    font-size: 14px;
}
main {
	overflow: hidden;
}
button {
    border: none;
	cursor: pointer;
	outline: none;
}
input {
    outline: none;
}
b {
    font-weight: 700;
}
.title {
    font-size: 82px;
    line-height: 97.7%;
    font-weight: 600;
    color: #102226;
    position: relative;
}
.title::before {
    content: '';
    position: absolute;
    left: -10px;
    top: -42px;
    width: 109px;
    height: 97px;
    background-image: url('../img/icons/title.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    z-index: -1;
}
.subtitle {
    font-size: 50px;
    line-height: 131.7%;
    color: #1D403B;
    font-weight: 600;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding-left: 62px;
    padding-right: 62px;
}
.logo {
    width: 99px;
    transition: .3s;
}
.logo img {
    width: 100%;
    height: auto;
    transition: .3s;
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-top: 34px;
    transition: .3s;
}
.header.fix {
    position: fixed;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #fff;
}
.header.fix .logo {
    width: 80px;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-l {
    display: flex;
    align-items: center;
}
.header-l span {
    display: block;
    font-size: 32px;
    line-height: 92.7%;
    margin-left: 10px;
}
.header-r {
    display: flex;
    align-items: center;
}
.menu {
    margin-right: 9.931vw;
}
.menu-list {
    display: flex;
    align-items: center;
}
.menu-list__item {
    transition: .2s;
}
.menu-list__item.active {
    border-bottom: 1px solid #26534D;
}
.menu-list__item:not(:last-child) {
    margin-right: 3.611vw;
}
.menu-list__item:not(.active):hover {
    transform: scale(1.1);
}
.menu-list__link {
    font-size: 18px;
    line-height: 131.7%;
    color: #26534D;
    font-weight: 600;
}
.btn {
    background: #26534D;
    border-radius: 5px;
    padding: 12px 43px;
    font-size: 18px;
    line-height: 21px;
    color: #ECE8DA;
    transition: .3s;
}
.btn:hover {
    background: #193a36;
}
.burger {
    width: 30px;
    height: 15px;
    position: relative;
    display: none;
    cursor: pointer;
    z-index: 2;
}
.burger span, .burger span::before, .burger span::after {
    width: 100%;
    position: absolute;
    height: 3px;
    background-color: #26534D;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.burger span {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.burger span::before {
    content: "";
    top: -8px;
    -webkit-transition: top .2s .2s,-webkit-transform .2s cubic-bezier(.23,1,.32,1);
    transition: top .2s .2s,-webkit-transform .2s cubic-bezier(.23,1,.32,1);
    -o-transition: top .2s .2s,-o-transform .2s cubic-bezier(.23,1,.32,1);
    -moz-transition: top .2s .2s,transform .2s cubic-bezier(.23,1,.32,1),-moz-transform .2s cubic-bezier(.23,1,.32,1);
    transition: top .2s .2s,transform .2s cubic-bezier(.23,1,.32,1);
    transition: top .2s .2s,transform .2s cubic-bezier(.23,1,.32,1),-webkit-transform .2s cubic-bezier(.23,1,.32,1),-moz-transform .2s cubic-bezier(.23,1,.32,1),-o-transform .2s cubic-bezier(.23,1,.32,1);
}
.burger span::after {
    content: "";
    bottom: -8px;
    -webkit-transition: bottom .2s .2s,-webkit-transform .2s cubic-bezier(.23,1,.32,1);
    transition: bottom .2s .2s,-webkit-transform .2s cubic-bezier(.23,1,.32,1);
    -o-transition: bottom .2s .2s,-o-transform .2s cubic-bezier(.23,1,.32,1);
    -moz-transition: bottom .2s .2s,transform .2s cubic-bezier(.23,1,.32,1),-moz-transform .2s cubic-bezier(.23,1,.32,1);
    transition: bottom .2s .2s,transform .2s cubic-bezier(.23,1,.32,1);
    transition: bottom .2s .2s,transform .2s cubic-bezier(.23,1,.32,1),-webkit-transform .2s cubic-bezier(.23,1,.32,1),-moz-transform .2s cubic-bezier(.23,1,.32,1),-o-transform .2s cubic-bezier(.23,1,.32,1);
}
.burger.active span {
    background: rgba(255,255,255,0);
}
.burger.active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top .2s,-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: top .2s,-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -o-transition: top .2s,-o-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -moz-transition: top .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-moz-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: top .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: top .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-moz-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-o-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
}
.burger.active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: bottom .2s,-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: bottom .2s,-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -o-transition: bottom .2s,-o-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -moz-transition: bottom .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-moz-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: bottom .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: bottom .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-moz-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-o-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
}
.menu-wrapper {
    display: none;
}








.hero {
    position: relative;
    padding-top: 150px;
    /* padding-bottom: 249px; */
}
.hero-row {
    display: flex;
    align-items: flex-start;
}
.hero__title {
    width: 419px;
    min-width: 419px;
    margin-top: 4.653vw;
}
.hero__title::before {
    content: none;
}
.hero__abs {
    position: absolute;
    bottom: 0;
    left: 13.889vw;
    width: 91.875vw;
    max-width: 1323px;
    height: auto;
    z-index: -1;
}
.hero-r {
    position: relative;
    left: -3.542vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-r::before {
    content: '';
    position: absolute;
    top: -150px;
    bottom: 0;
    left: 100px;
    right: 134px;
    background: #ECE8DA;
    z-index: -2;
}
.hero__pic {
    width: 62.778vw;
    max-width: 904px;
    height: auto;
}

.hero-bottom {
    padding: 95px 0 105px;
    background: #ECE8DA;
}
.hero-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 100px;
    max-width: 992px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.hero-box__title {
    text-align: center;
    margin-bottom: 1px;
}
.hero-box__text {
    font-size: 26px;
    line-height: 131.7%;
    text-align: center;
    margin-top: 1px;
    font-weight: 500;
}


.team {
    padding-top: 181px;
}
.team-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 53px;
    margin-top: 60px;
}
.team-top {
    position: relative;
    max-height: 322px;
    height: 22.361vw;
    display: flex;
    align-items: flex-end;

}
.team-top:nth-child(odd) {
    background-color: #ECE8DA;
}
.team-top:nth-child(even) {
    background-color: #E0EAE8;
}
.team-top img {
    width: 100%;
    height: auto;
}
.team-box__title {
    text-align: center;
    margin-top: 21px;
}
.team-box__text {
    font-size: 24px;
    line-height: 131.7%;
    text-align: center;
}


.works {
    padding-top: 185px;
}
.works-block {
    max-width: 919px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 71px;
}
.works-box {
    padding-top: 55px;
    padding-bottom: 55px;
    border-top: 1px solid #D9D9D9;
}
.works-box:last-child {
    border-bottom: 1px solid #D9D9D9;
}
.works-box__title {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}
.works-box__text {
    font-size: 28px;
}


.gallery {
    padding-top: 147px;
}
.gallery__title {
    color: #1D403B;
}
.gallery-slider {
    margin-top: 59px;
}
.gallery-slide {
    max-width: 57.847vw;
    width: 100%!important;
    height: 38.750vw;
    border-radius: 20px;
    overflow: hidden;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-arrows {
    position: absolute;
    left: 20.139vw;
    right: 20.139vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}
.gallery__arr {
    cursor: pointer;
    width: 8.333vw;
}
.gallery__arr img {
    width: 100%;
    height: auto;
}


.blog {
    padding-top: 188px;
}
.blog-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog__title {
    color: #1D403B;
}
.blog-r {
    display: flex;
    align-items: center;
    transition: .3s;
}
.blog-r span {
    font-size: 26px;
    line-height: 131.7%;
    color: #1D403B;
    font-weight: 600;
    margin-right: 5px;
    transition: .3s;
}
.blog-r:hover {
    text-decoration: underline;
}
.blog-r img {
    transition: .3s;
}
.blog-r:hover img {
    transform: translateX(5px);
}
.blog-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 53px;
    margin-top: 55px;
}
.blog-box {
    border: 1px solid #72716E;
    padding: 23px 23px 32px;
}
.blog-box_top {
    max-height: 392px;
    height: 27.222vw;
    filter: grayscale(100%);
    margin-bottom: 28px;
}
.blog-box_top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog__date {
    font-size: 24px;
    line-height: 131.7%;
    color: #1D403B;
    font-weight: 600;
}
.blog__text {
    font-size: 40px;
    line-height: 99.7%;
    color: #1D403B;
    margin-top: 20px;
    margin-bottom: 28px;
    font-weight: 600;
}



.contact {
    padding-top: 141px;
    color: #fff;
}
.contact-wrapper {
    background: #26534D;
    padding-top: 62px;
}
.contact__title {
    text-align: center;
    color: #fff;
}
.form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 100px;
    grid-row-gap: 30px;
    font-family: 'Lato', sans-serif;
}
.form-box {
    width: 100%;
}
.form-box span {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 24px;
    display: block;
}
.form__inp {
    display: block;
    width: 100%;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #D5D5D5;
    border-radius: 10px;
    background: transparent;
    outline: none;
}
.form__inp::placeholder {
    color: #fff;
    transition: .3s;
}
.form__inp:focus::placeholder {
    opacity: 0;
}
.textarea {
    resize: none;
    height: 150px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.form-b {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.form__btn {
    margin-top: 30px;
    width: 100%;
    height: 58px;
    background: #FFFFFF;
    border-radius: 10px;
    font-family: 'AauxNextComp';
    font-weight: 600;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 0.005em;
    color: #26534D;
}

.footer {
    padding-top: 75px;
    padding-bottom: 57px;
    color: #fff;
    background: #26534D;
}
.footer p {
    font-size: 20px;
    line-height: 190.5%;
    text-align: center;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.65);
}









@media(max-width: 1300px) {
    .menu-list__item:not(:last-child) {
        margin-right: 2.611vw;
    }
    .menu {
        margin-right: 8.931vw;
    }
    .hero__pic {
        width: 57.778vw;
    }
    .hero__title {
        width: 330px;
        min-width: 330px;
    }
    
    .title {
        font-size: 68px;
    }
    .hero-r {
        left: 0;
    }
    .hero__abs {
        width: 82.875vw;
        height: auto;
    }


    .gallery-slide {
        max-width: 60.847vw;
    }


    .blog-row {
        grid-gap: 35px;
    }
    .blog__text {
        font-size: 39px;
    }


    .form {
        grid-column-gap: 85px;
    }
}

@media(max-width: 1200px) {
    .menu {
        margin-right: 4.931vw;
    }
    .hero__title {
        width: 270px;
        min-width: 270px;
    }
    .title {
        font-size: 55px;
    }
    .team-row {
        grid-gap: 35px;
    }
}

@media(max-width: 1100px) {
    .subtitle {
        font-size: 45px;
    }
}

@media(max-width: 991px) {
    .header {
        padding-top: 15px;
    }
    
    .logo, .header.fix .logo {
        width: 60px;
    }
    .header-l span {
        font-size: 25px;
    }
    .burger {
        display: block;
    }
    .menu-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.7);
    }
    .header-r {
        position: fixed;
        transform: translateX(100%);
        z-index: 1;
        width: 250px;
        height: 100vh;
        right: 0;
        top: 0;
        background: #fff;
        transition: .3s;
        display: block;
        padding: 40px;
        overflow: hidden;
        overflow-y: auto;
    }
    .header-r.active {
        transform: translateX(0);
    }
    .menu-list {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-list__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .menu-list__link {
        font-size: 25px;
    }
    .btn {
        margin-top: 40px;
        width: 100%;
    }



    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-row {
        flex-direction: column;
        align-items: center;
    }
    .hero__title {
        margin-top: 0;
        width: 100%;
        text-align: center;
    }
    .hero-r {
        margin-top: 50px;
    }
    .hero-r::before {
        left: 0;
        right: 0;
        top: -20px;
    }
    .hero__abs {
        width: 93.875vw;
        left: 5.889vw;
    }


    .hero-bottom {
        padding: 70px 0;
    }
    .hero-block {
        grid-gap: 70px;
    }
    .hero-box__text {
        font-size: 22px;
    }


    .team {
        text-align: center;
    }
    .team__title {
        display: inline-block;
    }
    .team-box__title {
        font-size: 35px;
    }


    .works {
        text-align: center;
    }
    .works-block {
        text-align: left;
    }
    .works__title {
        display: inline-block;
    }
    .works-box {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .works-box__title {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .works-box__text {
        font-size: 22px;
    }


    .gallery .container {
        text-align: center;
    }
    .gallery__title {
        display: inline-block;
    }


    .blog-row {
        grid-gap: 15px;
    }
    .blog-box {
        padding: 15px 15px 20px;
    }
    .blog__text {
        font-size: 30px;
    }


    .form {
        grid-column-gap: 40px;
    }
}



@media(max-width: 740px) {
    .team-row {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 80px;
        margin-top: 110px;
    }
    .team-top {
        height: 185px;
    }
}
@media(max-width: 670px) {
    .title {
        font-size: 40px;
    }
    .subtitle {
        font-size: 30px;
    }
    .title::before {
        width: 60px;
        height: 70px;
        bottom: 0;
        top: unset;
    }


    .blog-row {
        grid-template-columns: 1fr;
    }
    .blog-box_top {
        height: 60vw;
    }
}
@media(max-width: 500px) {
    .subtitle {
        font-size: 24px;
    }

    .header-r {
        width: 100%;
    }


    .hero {
        padding-top: 125px;
    }
    .title {
        font-size: 35px;
    }
    .hero__pic {
        width: 100%;
    }
    .hero__abs {
        width: 124.875vw;
        left: 0;
    }
    

    .hero-box__text {
        font-size: 16px;
    }
    .hero-bottom {
        padding: 40px 0;
    }
    .hero-block {
        grid-gap: 40px;
    }



    .team {
        padding-top: 100px;
    }
    .team__title {
        text-align: center;
    }

    .team-row {
        grid-column-gap: 15px;
    }

    .works {
        padding-top: 100px;
    }
    .works-box__title {
        font-size: 25px;
    }
    .works-box__text {
        font-size: 16px;
    }
    

    .gallery {
        padding-top: 100px;
    }
    .gallery-slide {
        max-width: 85.847vw;
        border-radius: 10px;
    }
    .gallery-arrows {
        left: 7.139vw;
        right: 7.139vw;
    }
    .gallery__arr {
        width: 11.333vw;
    }


    .blog {
        padding-top: 100px;
    }
    .blog-row {
        margin-top: 40px;
    }
    .blog-box {
        padding: 10px 10px 20px;
    }
    .blog__text {
        font-size: 25px;
    }
    .blog__date {
        font-size: 16px;
    }
    .blog-r span {
        font-size: 18px;
    }



    .contact {
        padding-top: 81px;
    }
    .form {
        grid-template-columns: 1fr;
    }
    .form-box span, .form__inp {
        font-size: 14px;
    }
    .footer p {
        font-size: 16px;
    }
    
}
@media(max-width: 390px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .team-row {
        grid-row-gap: 45px;
    }
    .team-top {
        height: 160px;
    }

    .blog-r span {
        font-size: 16px;
    }
    .blog-r img {
        width: 17px;
    }
}