@import '../fonts/fonts.css';

.wrapper {
    width: 1400px;
    margin: 0 auto;
}

@media screen and (max-width: 1399px){
    .wrapper {
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1000px) {
    body {
        overflow-x: hidden;
    }
}

/* FEATURES */
.features {
    background: url('../images/features/features.background.svg') no-repeat;
    background-size: contain;
    background-position-x: calc(100% + 80px);
    position: relative;
}

.features .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 25%);
}

.features .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.features .feature .feature__image {
    width: 140px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .feature .feature__image img:hover {
    transform: scaleX(-1);
    transition: .5s;
}

.features .feature .feature__image img {
    display: block;
    object-fit: contain;
}

.features .feature .feature__text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature .feature__text-box .feature__title {
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
    text-transform: lowercase;
}


.feature .feature__text-box .feature__subtitle {
    font-size: 30px;
    line-height: 30px;
    color: #f8c301;
    font-family: "Segoe Print", sans-serif;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .features {
        background: none;
    }

    .features .wrapper {
        grid-template-columns: repeat(2, calc(50% - 20px));
        gap: 30px 20px;
        align-items: center;
        justify-content: center;
    }

    .feature .feature__text-box .feature__subtitle {
        font-size: 26px;
        white-space: nowrap;
    }

    .feature .feature__text-box .feature__title {
        font-size: 14px;
        line-height: normal;
        white-space: nowrap;
    }

    .features .feature .feature__image {
        width: 50%;
        height: 80px;
        margin-bottom: 10px;
    }

    .features .feature .feature__image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }
}

/* CONTENT BOX */
.content-box {
    display: flex;
    flex-direction: column;
    margin: 100px 0;
}

.content-box .content-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-box .content-head-subtitle {
    font-size: 193px;
    line-height: 32px;
    text-transform: uppercase;
    color: #f2f2f2;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
    font-weight: 400;
    white-space: nowrap;
}

.content-box .content-head-title {
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    color: #019949;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
    font-weight: 400;
}

.content-head-icon {
    margin: 30px;
}

@media screen and (max-width: 1000px){
    .content-box .content-head-subtitle {
        font-size: 80px;
    }

    .content-box .content-head-title {
        font-size: 35px;
        line-height: normal;
    }

    .content-head-icon {
        margin-top: 15px;
    }
}
/* GALLERY */
.gallery {
    position: relative;
}

.gallery:before {
    content: url('../images/gallery/gallery.background.svg');
    position: absolute;
    top: -200px;
    left: -100px;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
}


.gallery-slide__image {
    width: 317px;
    height: 317px;
    cursor: pointer;
}

.gallery-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
    transition: all 1s;
}

.gallery-slide__image:hover img {
    filter: brightness(100%);
}

.gallery-controls-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    margin-top: 60px;
}

.gallery-controls__buttons {
    display: flex;
    gap: 30px;
}

.gallery-control-link-box {
    position: absolute;
    right: 0;
}

.gallery-control-link {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #02833f;
    font-weight: bold;
    font-family: "Tahoma", sans-serif;
    text-align: right;
    text-decoration: none;
    gap: 15px;
    border-top: 1px solid #02833f;
    padding-top: 30px;
}

.gallery-control {
    width: 72px;
    height: 72px;
    background-color: #f7c301;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    cursor: pointer;
}

.gallery-control:hover {
    background-color: #d0a301;
}

@media screen and (max-width: 1000px){
    .gallery-slide {
        display: flex;
        justify-content: center;
    }

    .gallery-control-link-box {
        position: static;
    }

    .gallery-controls-box {
        flex-direction: column;
    }

    .gallery:before {
       display: none;
    }
}

/* SERVICES */

.services {
    position: relative;
    background: url('../images/services/services.background.svg') top right no-repeat;
    background-size: 400px;
}

.services .content-body {
    width: 100%;
    display: grid;
    justify-content: center;
    gap: 150px 50px;
    grid-template-columns: repeat(2, calc(50% - 50px));
}

.services-card {
    display: flex;
    flex-direction: column;
}

.services-card .services-head {
    display: flex;
    align-items: center;
    height: 70px;
    width: 100%;
    gap: 20px;
}

.services-card .services-head .services-head__category-color {
    width: 13px;
    height: 45px;
    border-radius: 7px;
    background-color: #f8c301;
}

.services-card .services__title {
    font-size: 32px;
    line-height: 25px;
    text-transform: uppercase;
    color: #019949;
    font-family: "Arial";
    font-weight: 400;
}

.services__image {
    width: 100%;
    height: 568px;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.services__image img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.services-head__btn-box {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-head__btn {
    width: 456px;
    height: 62px;
    border-radius: 31px;
    background-color: #f8c301;
    font-size: 21px;
    line-height: 16px;
    color: #ffffff;
    font-family: "Verdana", sans-serif;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-head__btn:hover {
    background-color: #d0a301;
}

.services__tags-box {
    display: grid;
    grid-template-columns: repeat(3, 192px);
    gap: 15px;
    margin-top: 50px;
}

.service__tag {
    width: 192px;
    height: 66px;
    border-radius: 33px;
    background-color: #f7f7f7;
    border: 1px solid #cbcbcb;
    font-size: 12px;
    line-height: 25px;
    color: #4d4d4d;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:1246px){
    .services__tags-box {
        width: 100%;
        grid-template-columns: repeat(3, 30%);
    }

    .service__tag {
        width: 100%;
        line-height: normal;
        height: 50px;
    }

    .services .content-body {
        grid-template-columns: repeat(1, 100%);
        padding: 0 20px;
    }

    .services-head__btn-box {
        padding: 0 20px;
    }

    .services-head__btn {
        font-size: 18px;
    }

    .services__image  {
        height: 400px;
    }

    .services__image img {
        width: 100%;
        height: 100%;
    }
}

/* Catalog */
.catalog {
    background: url('../images/catalog/catalog.background.svg') no-repeat;
    background-size: contain;
}

.catalog .catalog-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.catalog .catalog-filter {
    width: calc(25% - 20px);
    height: 62px;
    border-radius: 31px;
    background-color: #f7f7f7;
    border: 1px solid #cbcbcb;
    font-size: 14px;
    line-height: 25px;
    color: #5a5a5a;
    font-weight: bold;
    font-family: "Arial";
    padding: 0 20px;
    outline: none;
}

.catalog .catalog-filter option {
    font-size: 14px;
    line-height: 25px;
    color: #000;
    font-weight: bold;
    font-family: "Arial";
    padding: 0 20px;
}

.catalog .catalog-filter option:disabled {
    color: #5a5a5a;
}

.catalog__load-btn {
    width: 100%;
    height: 90px;
    margin-top: 50px;
    background-color: #f7c301;
    font-size: 20px;
    line-height: 18px;
    color: #fefefe;
    font-family: "Segoe Print", sans-serif;
    text-align: center;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.catalog__load-btn:hover {
    background-color: #d0a301;
}

.catalog-products {
    margin-top: 50px;
    display: grid;
    gap: 50px;
    justify-content: center;
    grid-template-columns: repeat(2, 655px);
}

.catalog-product {
    display: flex;
    flex-direction: column;
}

.catalog-product__category-color {
    width: 13px;
    height: 45px;
    border-radius: 7px;
    background-color: #f8c301;
}

.catalog-product-head {
    display: flex;
    align-items: center;
    gap: 20px;
}

.catalog-product__title {
    font-size: 32px;
    line-height: 25px;
    color: #019949;
    font-family: "Arial", sans-serif;
    font-weight: 400;
}

.catalog__delimeter {
    display: flex;
    justify-content: flex-end;
}

.catalog__delimeter > .line {
    width: 233px;
    height: 2px;
    background-color: #298c2b;
}

.catalog-product-gallery {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.product-swiper {
    width: 100%;
    position: relative;
}

.product-slide {
    width: 100%;
    height: 474px;
    background-color: #f7f7f7;
    cursor: pointer;
}

.product-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-slide:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.product-slide:hover:after {
    display: none;
}

.product-pagination {
    width: auto;
    display: flex;
    justify-content: center;
    bottom: 30px;
    position: absolute;
    z-index: 1000;
}

.product-pagination .swiper-pagination-bullet-active {
    background: #f8c301;
}

.product-price {
    width: 248px;
    height: 74px;
    border-radius: 35px;
    background-color: #ffffff;
    position: absolute;
    right: -35px;
    top: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-price .product-price__amount {
    font-size: 22px;
    line-height: 18px;
    color: #298c2b;
    font-family: "Segoe Print", sans-serif;
    text-align: right;
}

.product-price__currency {
    font-weight: 600;
    font-family: sans-serif;
    color: #298c2b;
    font-size: 35px;
}

.product-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-tag {
    width: calc(33.3% - 20px);
    height: 66px;
    border-radius: 33px;
    background-color: #f7f7f7;
    border: 1px solid #cbcbcb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 25px;
    color: #787878;
    font-family: "Arial", sans-serif;
    text-align: center;
}

@media screen and (max-width: 1399px){
    .catalog-products {
        grid-template-columns: repeat(2, calc(50% - 50px));
    }

    .catalog-load__box {
        margin: 0 20px;
    }
}

@media screen and (max-width: 1000px){
    .catalog .catalog-filters  {
        flex-wrap: wrap;
    }

    .catalog .catalog-filter {
        width: calc(50% - 20px);
        white-space: break-spaces;
    }

    .catalog-products {
        grid-template-columns: repeat(1, 100%);
        padding: 0 20px;
    }

    .catalog__load-btn {
        height: 45px;
    }
}

/* About */
.about {
    background: url('../images/about/about.background.png') no-repeat;
    background-size: contain;
    background-position-x: calc(50% + 130px);
    background-position-y: 150px;
}

.about .content-body {
    display: flex;
    gap: 44px;
}

.about__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}

.about__left:after {
    content: url('../images/about/about.clouds.png');
    position: absolute;
    display: block;
    z-index: -1;
    left: 0;
}

.about__left #vk_groups {
    width: 100% !important;
}

.about-left__image {
    z-index: 100;
    width: 503px;
    height: 352px;
    display: block;
    object-fit: cover;
}

.about__middle {
    display: flex;
    flex-direction: column;
    position: relative;
}

.about-middle__list {
    font-size: 18px;
    line-height: 20px;
    color: #4a4a4a;
    font-family: "Arial";
    display: flex;
    flex-direction: column;
    list-style-type: none;
    gap: 30px;
}

.about-middle__list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-middle__list:nth-child(2) {
    margin-left: 110px;
    margin-top: 50px;
}

.about-middle__list:nth-child(2) li {
    flex-direction: row-reverse;
    text-align: right;
}

.about-middle-image {
    position: absolute;
    width: 200px;
    top: 270px;
    left: -100px;
}

.about__right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: center;
}

.about__right img {
    width: 221px;
    height: 187px;
    display: block;
    object-fit: cover;
}

@media screen and (max-width: 1180px){
    .about {
        background: none;
        overflow: hidden;
    }

    .about-middle-image {
        display: none;
    }

    .about .content-body {
        flex-direction: column;
    }

    .about__left, .about__middle, .about__right {
        width: 100%;
    }
    
    .about__left img {
        width: 100%;
    }

    .about__left #vk_groups {
        display: none;
    }

    .about-middle__list {
        padding: 0 20px;
        font-size: 14px;
    }

    .about-middle__list:nth-child(2) {
        margin-left: 0;
    }

    .about-middle__list:nth-child(2) li {
        flex-direction: row;
        text-align: left;
    }

    .about__right {
        flex-direction: row;
        overflow-x: scroll;
    }

    .about__left:after {
        display: none;
    }
}

/* Footer */

.footer .wrapper {
    display: flex;
    flex-direction: column;
}

.footer__top {
    width: 100%;
    height: 694px;
    background: url('../images/footer/background.top_background.svg') center no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-top__btn {
    width: 182px;
    height: 179px;
    background-color: #f7c301;
    margin-top: 100px;
    margin-left: 300px;
}

.footer-top__btn img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer__bottom {
    display: flex;
    width: 100%;
    height: 200px;
    background: url('../images/footer/footer.bottom_background.svg') bottom center no-repeat;
    background-size: contain;
    padding-bottom: 80px;
}

.footer-bottom-box {
    width: 33.3%;
    display: flex;
}

.footer-bottom-box.logobox {
    justify-content: center;
}

.footer-bottom-box .footer-logo {
    margin-top: -80px;
}

.footer-bottom-box.contacts-box {
    justify-content: space-between;
    align-items: flex-end;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__phone {
    font-size: 40px;
    line-height: 16px;
    color: #09aa56;
    font-weight: bold;
    font-family: "Concurso Italian BT NBold", sans-serif;
    font-weight: 400;
    text-decoration: none;
}

.footer__phone span {
    color: #f8c301;
}

.footer__geo {
    font-size: 11px;
    line-height: 16px;
    color: #787878;
    font-family: "Arial", sans-serif;
    text-decoration: none;
}

.seopraim {
    line-height: 13px;
    font-size: 8px;
    font-family: "Tahoma", sans-serif;
    color: red;
    text-decoration: none;
}

.seopraim:before {
    content: 'Разработка сайта ';
    color: #676767;
}

.seopraim:after {
    content: 'Praim';
    color: #676767;
}

.footer-bottom-box.mediabox {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 42px;
    color: #000000;
    font-family: "Verdana", sans-serif;
    justify-content: flex-end;
}

.footer__media {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer__media * {
    text-decoration: none;
}

@media screen and (max-width: 1000px){
    .footer__top {
        background-size: cover;
    }

    .footer-top__btn {
        margin-left: 0;
    }

    .footer__bottom {
        flex-direction: column-reverse;
        align-items: center;
        gap: 50px;
        height: auto;
    }

    .footer-bottom-box.contacts-box {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-bottom-box {
        width: 100%;
        padding: 0 20px;
    }

    .footer-bottom-box .footer-logo {
        margin-top: 20px;
    }

    .footer-bottom-box.mediabox {
        display: none;
    }

    .footer .wrapper {
        padding: 0;
    }
}

/* Last product */
.last-product {
    margin: 80px 0;
}

.last-product .wrapper {
    background: url('../images/last_product/last_product.pin.png') top right no-repeat;
    background-size: 100px;
}

.last-product__big-title {
    font-size: 192px;
    line-height: 32px;
    text-transform: uppercase;
    color: #f2f2f2;
    font-family: "Segoe UI", sans-serif;
    margin-top: 120px;
    font-weight: 400;
}

.last-product-content {
    margin-top: 120px;
    display: flex;
}

.last-product-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.last-product-big-image {
    width: 676px;
    height: 535px;
}

.last-product-big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(50%);
    cursor: pointer;
    transition: all 1s;
    padding-right: 20px;
}

.last-product-big-image:hover img {
    filter: brightness(100%);
}

.last-product-gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 206px);
}

.last-product-gallery__item {
    width: 206px;
    height: 176px;
}

.last-product-gallery__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(50%);
    cursor: pointer;
    transition: all 1s;
}

.last-product-gallery__item:hover img {
    filter: brightness(100%);
}

.last-product-right {
    display: flex;
    flex-direction: column;
    background: url('../images/last_product/last_product.background.png') center no-repeat;
    background-size: cover;
}

.last-product-head {
    display: flex;
    flex-direction: column;
}

.last-product-title {
    width: 454px;
    height: 81px;
    background-color: #f8c301;
    font-size: 39px;
    line-height: 38px;
    text-transform: uppercase;
    color: #fefefe;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 160px;
}

.last-product-subtitle {
    width: 239px;
    height: 52px;
    background-color: #019949;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 38px;
    text-transform: uppercase;
    color: #fefefe;
    font-family: "Segoe UI", sans-serif;
    text-align: right;
    margin-top: -10px;
    margin-left: 60px;
    z-index: 100;
}

.last-product-tags {
    margin-top: 70px;
    padding: 0 100px;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 192px);
}

.last-product-tag {
    width: 192px;
    height: 66px;
    border-radius: 33px;
    background-color: #f7f7f7;
    border: 1px solid #cbcbcb;
    font-size: 14px;
    line-height: 25px;
    color: #787878;
    font-family: "Arial", sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.last-product-text {
    padding-left: 60px;
    margin-top: 60px;
    font-size: 12px;
    line-height: 18px;
    color: #5e5e5e;
    font-family: "Verdana", sans-serif;
}

.last-product__btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.last-product__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #02833f;
    font-weight: bold;
    font-family: "Tahoma", sans-serif;
    text-align: right;
    border-top: 1px solid #02833f;
    padding-top: 25px;
    text-decoration: none;
}

@media screen and (max-width: 1280px){
    .last-product-title {
        width: 400px;
    }

    .last-product-text {
        display: block;
        overflow: hidden;
        width: 80%;
    }

    .last-product__btn-wrapper {
        margin-right: 100px;
        width: 80%;
    }
}

@media screen and (max-width: 1200px) {
    .last-product .wrapper {
        background: none;
    }

    .last-product__big-title {
        font-size: 64px;
    }

    .last-product-content {
        flex-direction: column;
        margin-top: 40px;
    }

    .last-product-big-image {
        width: 100%;
        height: 300px;
        padding: 0 10px;
    }

    .last-product-gallery  {
        grid-template-columns: repeat(3, calc(33.3% - 20px));
        justify-content: center;
    }

    .last-product-gallery__item {
        width: 100%;
        height: 100px;
    }

    .last_product_decor {
        display: none;
    }

    .last-product-big-image img {
        padding-right: 0;
    }

    .last-product-right {
        margin-top: 80px;
    }

    .last-product-title {
        margin-left: 0;
        width: 100%;
        padding: 0 10px;
        font-size: 34px;
    }

    .last-product-head {
        align-items: center;
    }


    .last-product-subtitle {
        margin-left: 0;
    }

    .last-product-tags {
        padding: 0;
        justify-content: center;
        grid-template-columns: repeat(2,calc(50% - 40px));
    }

    .last-product-tag  {
        width: 100%;
    }

    .last-product-text {
        width: 100%;
        padding: 0 10px;
    }

    .last-product__btn-wrapper {
        width: 100%;
        margin-top: 40px;
        margin-right: 0;
        display: flex;
        justify-content: center;
    }
}

/* Cooperation */
.cooperation {
    margin: 80px 0;
    display: flex;
    background: url('../images/cooperation/cooperation.background.png') center no-repeat;
    background-size: contain;
    align-items: center;
    height: 1000px;
}

.cooperation > .wrapper {
    position: relative;
}

.cooperation-form {
    width: 80%;
    height: 860px;
    position: relative;
    background: url('../images/cooperation/cooperation.form_background.png') no-repeat;
    background-size: cover;
    padding: 50px 100px;
}

.cooperation-form:before {
    content: '';
    background: url('../images/cooperation/cooperation.form_top.png');
    display: block;
    width: 100%;
    height: 55px;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: -1;
}

.cooperation__decoration-box {
    position: absolute;
    right: 150px;
    top: 0;
}

.cooperation-form-head-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cooperation-form-head {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: right;
}

.cooperation__title {
    color: #fff;
    font-size: 50px;
    line-height: 45px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
    text-align: right;
}

.cooperation__text {
    font-size: 12px;
    line-height: 16px;
    color: #ffffff;
    font-family: "Verdana", sans-serif;
    text-align: right;
}

.cooperation-form-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.cooperation-form__input {
    width: 100%;
    height: 84px;
    border-radius: 35px;
    background-color: #fefefe;
    border: none;
    outline: none;
    padding: 20px 50px;
}

.cooperation-el {
    position: relative;
}

.cooperation-el span {
    position: absolute;
    right: 30px;
    top: 50%;
    bottom: 50%;
    font-size: 37px;
    line-height: 15px;
    color: #f8c301;
    font-weight: bold;
    font-family: "Tahoma", sans-serif;
}

.cooperation-form__textarea {
    width: 100%;
    height: 100px;
    border-radius: 35px;
    background-color: #fefefe;
    border: none;
    outline: none;
    padding: 20px 50px;
    resize: none;
    font-family: "Tahoma", sans-serif;
}

.cooperation-additions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.cooperation-addition {
    display: flex;
    align-items: center;
    gap: 10px;
}

.approval-label {
    font-size: 11px;
    line-height: 25px;
    color: #d9d9d9;
    font-family: "Arial", sans-serif;
}

.approval-label a {
    color: #fff;
    text-decoration: underline;
}

.cooperation-form input[type="checkbox"] {
    width: 14px;
    height: 14px;
    outline: none;
    cursor: pointer;
}

.cooperation-form__btn-box {
    display: flex;
    margin-top: 50px;
    justify-content: center;
}

.cooperation-form__btn {
    width: 370px;
    height: 82px;
    border-radius: 35px;
    background-color: #ffffff;
    border: 1px solid #c9c9c9;
    font-size: 20px;
    line-height: 18px;
    color: #00ab52;
    font-family: "Segoe Print", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    gap: 20px;
    cursor: pointer;
}

.cooperation-form__btn:hover {
    background-color: #f7f7f7;
}

.cooperation-addition-text {
    font-size: 15px;
    line-height: 13px;
    color: #ffffff;
    font-weight: bold;
    font-family: "Tahoma";
    text-align: right;
    display: flex;
    align-items: center;
    gap: 5px;
}

.input-file {
	position: relative;
	display: inline-block;
}

.input-file input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
.input-file span {
	position: relative;
	display: inline-block;
    width: 112px;
    height: 64px;
    border-radius: 32px;
    background-color: #008640;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 10px;
    overflow: hidden;
    line-height: 18px;
    color: #ffffff;
    font-family: "Tahoma", sans-serif;
}
 
/* Focus */
.input-file input[type=file]:focus + span {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
 
/* Hover/active */
.input-file:hover span {
	background-color: #59be6e;
}
.input-file:active span {
	background-color: #2E703A;
}
 
/* Disabled */
.input-file input[type=file]:disabled + span {
	background-color: #eee;
}

@media screen and (max-width: 1100px) {
    .cooperation-form  {
        width: 100%;
        padding: 10px;
    }

    .cooperation__decoration-box {
        display: none;
    }

    .cooperation__title {
        font-size: 24px;
        line-height: normal;
        text-align: center;
    }

    .cooperation__text {
        text-align: justify;
    }

    .cooperation-form__input {
        height: 54px;
    }

    .cooperation-additions {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .cooperation-form-head-right img {
        width: 100px;
    }
}

/* Main */
.main {
    display: flex;
    flex-direction: column;
}

.main-head {
    display: flex;
    width: 100%;
    flex-direction: column;
    height: 250px;
    align-items: center;
    background: url('../images/main/main.bg_head.png') center no-repeat;
    background-size: contain;
    margin-top: 20px;
}

.header {
    width: 100%;
}

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

.header__text {
    font-size: 13px;
    line-height: 16px;
    color: #787878;
    font-family: "Arial", sans-serif;
}

.header__contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 0;
    align-items: flex-end;
}

.header__phone {
    font-size: 40px;
    color: #09aa56;
    font-weight: bold;
    font-family: "Concurso Italian BT NBold", sans-serif;
    text-decoration: none;
    font-weight: 400;
}

.header__phone span {
    color: #f8c301;
}

.header__geo {
    font-size: 11px;
    color: #787878;
    font-family: "Arial", sans-serif;
    text-decoration: none;
}

.header__contacts, .header__text {
    width: 33.3%;
}

.header__gerb {
    width: 33.3%;
    display: flex;
    justify-content: center;
}

.nav {
    width: 100%;
    height: 73px;
    background: url('../images/nav/nav.background.svg');
}

.nav.fixed {
    position: fixed;
    top: 0;
    z-index: 1100;
}

.nav .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__list {
    display: flex;
    align-items: center;
    list-style-type: none;
    height: 100%;
}

.nav-list__item {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 10px;
}

.nav-list__item:nth-child(n+7) {
    display: none;
}

.nav-list__item a {
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    text-align: center;
    text-decoration: none;
}

.nav-list__item:hover {
    background-color: #f8c301;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
}
.search-link {
    position: relative;
}

.nav-form {
    position: absolute;
    align-items: center;
    background-color: #0aa754;
    padding: 15px 20px;
    left: -30px;
    bottom: -80px;
    gap: 5px;
    display: none;
    z-index: 600;
}

.nav-form.active {
    display: flex;
}

.nav-form button {
    padding: 10px 15px;
    border: none;
    background-color: #efbb01;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
}

.nav-form button:hover {
    background-color: #d5a701;
}

.search-input {
    padding: 10px 15px;
    outline: none;
    border: none;
    border-radius: 4px;
}

.marquee {
    text-decoration: none;
    font-size: 24px;
    line-height: 30px;
    color: #e60000;
    font-weight: 100;
    font-family: sans-serif;
    text-align: center;
    font-style: italic;
    z-index: 500;
    display: block;
    height: 60px;
    margin-top: 10px;
}

.main__content {
    margin-bottom: 80px;
    width: 100%;
    height: 600px;
    background: url('../images/main/main.background.svg') center no-repeat;
    background-size: contain;
}

.main__content .wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.main__consultation {
    position: absolute;
    left: 10%;
    top: 80%;
}

.main__catalog {
    position: absolute;
    right: 10%;
    top: 30%;
}

.mobile-btn-menu {
    width: 53px;
    height: 53px;
    background: none;
    border: none;
    margin-right: 10px;
    display: none;
}

@media screen and (max-width: 1050px){
    .main-head {
        background: none;
    }

    .header .wrapper {
        flex-direction: column;
        gap: 0;
    }

    .header__text {
        width: 100%;
        text-align: center;
    }

    .header__gerb {
        width: 100%;
        margin: 15px 0;
    }

    .header__contacts {
        width: 100%;
        align-items: center;
        padding-top: 0;
    }

    .nav__list {
        display: none;
    }

    .nav .wrapper {
        justify-content: center;
        padding: 10px;
    }

    .marquee-wrapper {
        margin-top: 80px;
    }

    .marquee {
        margin-top: 0;
    }

    .main__content {
        background-size: cover;
        margin-top: -80px;
    }

    .main__content .wrapper {
        flex-direction: column;
        align-items: center;
    }

    .main__consultation {
        bottom: 0;
    }

    .main__catalog {
       top:80%;
       right: 10px;
       width: 151px;
       height: 151px;
    }

    .main__catalog  img {
        width: 100%;
        height: 100%;
    }

    .mobile-btn-menu {
        display: block;
    }

    .nav-form {
        left: -120px;
    }
}

/* Mobile menu */
.mobile__menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    display: flex;
    transform: translateX(-150%);
}

.mobile__menu.active {
    transform: translateX(0%);
}

.mobile-menu-content {
    width: 60%;
    height: 100%;
    background: #fff;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    transform: translateX(-150%);
    transition: all .5s;
}

.mobile__menu.active .mobile-menu-content {
    transform: translateX(0%);
}

.mobile-menu__title {
    font-family: sans-serif;
    text-align: center;
    margin-bottom: 50px;
}

.mobile-menu__link {
    width: 100%;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #009647;
    margin-bottom: 10px;
    font-family: 'Tahoma', sans-serif;
}

/* Support modal */
.support-modal {
    position: fixed;
    z-index: 1300;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.support-modal-content {
    display: flex;
    flex-direction: column;
    background-color: #009647;
    padding: 20px 15px;
    border-radius: 14px;
    color: #fff;
    width: 600px;
}

.support-form {
    display: flex;
    flex-direction: column;
}

.support-modal__title {
    font-family: "Segoe UI", sans-serif;
    text-align: center;
}

.support-modal__text{
    margin: 20px 0;
    font-family: "Verdana", sans-serif;
    text-align: center;
}

.support__field {
    padding: 10px 15px;
    outline: none;
    background: #fff;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: "Verdana", sans-serif;
    color: #000;
}

.support__text {
    padding: 10px 15px;
    outline: none;
    background: #fff;
    border: none;
    border-radius: 4px;
    height: 65px;
    font-family: "Verdana", sans-serif;
    resize: none;
    color: #000;
}

.support__btn {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 4px;
    background-color: #fff;
    color: #00ab52;
    font-family: "Segoe Print";
    outline: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    height: 50px;
}

.support__btn:hover {
    background-color: #f7f7f7;
}

/* Application modal */
.application-modal {
    position: fixed;
    z-index: 1300;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.application-modal-content {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 14px;
    width: 600px;
}

.application-form {
    display: flex;
    flex-direction: column;
}

.application-modal__title {
    text-align: center;
    color: #00ab52;
    font-family: "Segoe UI", sans-serif;
}

.application-form__subtext {
    font-size: 12px;
    font-family: "Verdana", sans-serif;
    margin-top: 10px;
    margin-bottom: 5px;
}

.application__field {
    padding: 10px 15px;
    outline: none;
    border: 1px solid #eee;
    border-radius: 4px;
}

.application__field:focus {
    border: 1px solid #009647;
}

.application-form__list {
    padding: 10px 15px;
    outline: none;
    border: 1px solid #eee;
    border-radius: 4px;
    background: none;
}

.application__btn {
    margin-top: 15px;
    border: none;
    color: #fff;
    background-color: #009647;
    padding: 10px 15px;
    font-family: "Verdana", sans-serif;
    cursor: pointer;
}

.application__btn:hover {
    background-color: #008640;
}

/* GALLERY PAGE */

.gallery-page .content-body {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    gap: 30px 0;
}

@media screen and (max-width: 1000px){
    .gallery-page .content-body {
        grid-template-columns: repeat(2, calc(50% - 30px));
        justify-content: center;
        gap: 30px;
    }

    .gallery-page .content-body .gallery-slide__image {
        height: 217px;
    }
}