/* HEADER HEDAER HEADER HEDAER HEADER */

.logo, .logo img {
    height: 50px;
    display: inline-block;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 24px 32px;

    background: white;
}
.header-group {
    display: flex;
    gap: 64px;
    align-items: center;
}
.header-list {
    display: flex;
    gap: 28px;
    padding: 0;
}
.header-list a {
    color: #212121;
}
.header-group div {
    display: flex;
    gap: 18px;
}











/* MAIN MAIN MAIN MAIN MAIN MAIN MAIN */

main {
    padding: 0px 200px;
}

.section-1 {
    margin-bottom: 10px;
}


.breadcrumbs {
    padding: 0;
    display: inline-flex;
    margin-bottom: 00px;
}
.breadcrumbs li a {
    color: #999999;
}
.breadcrumbs li a:hover {
    color: #212121;
}
.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: #999999;
}

.finder {
    position: relative;
    margin-bottom: 28px;
}
.finder input {
    width: 100%;
    padding: 20px 24px;
    border-radius: 22px;
}
.finder input:focus {
    box-shadow: 0px 0px 32px 0px #dadada;
    transition: all .1s;
}
.finder button {
    position: absolute;
    top: 8px;
    right: 8px;
}

.main-layout {
    display: grid;
    grid-template-columns:  1fr 1fr 1fr;

    grid-template-rows: auto auto;
    grid-auto-flow: row;
    gap: 28px;
}

.main-block {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    background: white;
    border-radius: 22px;
    transition: all .1s;
}
.main-block:hover {
    box-shadow: 0px 0px 32px 0px #dadada;
}

.main-block-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    max-width: 50%;
    padding: 48px;

    z-index: 2;
}
.main-block p {
    color: #999999;
}

.main-img-mask {
    position: absolute;
    right: 0px;
    height: 100%;
    width: 50%;
    clip-path: polygon(65% 0, 100% 0%, 100% 100%, 0% 100%);
}
.main-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}











/* FOOTER FOOTER FOOTER FOOTER FOOTER */

footer {
    padding: 64px 200px;
    background: #212121;
    color: #999999;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-main .logo {
    margin-bottom: 8px;
}

.footer-main p {
    margin: 14px 0;
}

.footer-links-aligner {
    display: flex;
    align-items: center;
}

.footer-links {
    margin-right: 28px;
}
.footer-links p {
    margin: 4px;
}
.footer-icons {
    display: flex;
    gap: 8px;
}

.footer-list {
    list-style-type: none;
    margin: 0;
}
.footer-list li {
    margin: 4px 0;
}
.footer-list a {
    color: #999999;
}.footer-list a:hover {
    color: white;
}
.footer-list li:first-child {
    font-size: 24px;
    margin-bottom: 14px;
}

.footer-info p {
    margin: 0 0 8px 0;
}
.footer-info div {
    display: flex;
    gap: 28px;
}

.footer-link {
    color: white;
}
.footer-link:hover {
    color: #EAEAEA;
}




/* АДАПТАЦИЯ */

/* 2К мониторы */
@media (min-width: 2550px) {
    main {
        padding: 100px 450px;
    }
    footer {
        padding: 64px 450px;
    }
}

/* 4К мониторы */
@media (min-width: 3840px) {
    /* main {
        padding: 100px 650px;
    }
    footer {
        padding: 64px 650px;
    } */
    html {
        zoom: 200%;
    }
}