/*
Theme Name: Blackbird
Author: Mher Martirosyan
Version: 1.0
*/

@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Extrabold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-UltraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --resizable-size: calc((1vw + 1vh) / 2);
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
}

body {
    font-family: 'Gilroy', sans-serif;
    background-color: #000;
    color: #fff;
    position: relative;
}

.bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    height: 900px;
    object-position: bottom;
}

/* header */
header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 64px 45px 35px 52px;
    /* z-index: 1; */
}
.header__banner {
    background: #0066FF;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding-top: 8px;
}
.header__nav {
    list-style: none;
    display: flex;
    gap: 41px;
    padding-right: 124px;
    padding-top: 17px;
}
.header__nav li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}
.header__nav li a::after {
    content: '';
    background: #fff;
    height: 2px;
    width: 0;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    transition: all .4s;
}
.header__nav li  a:hover:after {
    width: 100%;
}
.header__btn {
    border: 2px solid #0066FF;
    border-radius: 12px;
    padding: 16px 21px 19px;
    margin-top: 13px;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: #fff;
    text-decoration: none;
}
header.open .menu-item__dropdown {
    visibility: visible;
    right: 0;
}
.menu-item__dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow-y: scroll;
    position: fixed;
    visibility: hidden;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 60px 45px;
    transition-duration: .25s;
    background: rgba(0, 0, 0, 0.67);
    backdrop-filter: blur(15px);
    z-index: 5;
}
.header-burger-menu {
    display: none;
}

.lead-form-message {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 600;
}

.lead-form-message.is-hidden {
    display: none;
}

.lead-form-message--success {
    color: #4ade80;
}

.lead-form-message--error {
    color: #f87171;
}

.contact-form {
    position: relative;
}

.contact-form.is-overlay-active > *:not(.lead-form-overlay) {
    filter: blur(3px);
    opacity: 0.35;
    pointer-events: none;
    transition: filter .25s ease, opacity .25s ease;
}

.lead-form-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 20;
}

.contact-form.is-overlay-active .lead-form-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lead-form-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 24px;
}

.lead-form-overlay__content {
    position: relative;
    z-index: 1;
    width: min(90%, 520px);
    background: rgba(6, 10, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 34px 28px;
    text-align: center;
}

.lead-form-overlay__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}

.contact-form.is-overlay-result .lead-form-overlay__close {
    opacity: 1;
    pointer-events: auto;
}

.lead-form-overlay__spinner {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top-color: #0066ff;
    animation: leadOverlaySpin .8s linear infinite;
}

.lead-form-overlay__title {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 10px;
}

.lead-form-overlay__subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.contact-form.is-overlay-result .lead-form-overlay__spinner {
    display: none;
}

.contact-form.is-overlay-success .lead-form-overlay__title {
    color: #4ade80;
}

.contact-form.is-overlay-error .lead-form-overlay__title {
    color: #f87171;
}

@keyframes leadOverlaySpin {
    to {
        transform: rotate(360deg);
    }
}


/* main */
.bb-intro {
    position: relative;
}
.bb-antiaircraft {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quality-awards {
    max-width: 342px;
    margin-right: 33px;
}
.bb-antiaircraft__pic {
    margin-top: -76px;
}
.bb-antiaircraft__text {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    text-transform: uppercase;
    max-width: 450px;
    font-size: 20px;
    font-weight: 500;
}
.bb-antiaircraft__text b {
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    padding-top: 4px;
}
.new {
    color: #FF7700;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 103%;
    padding-bottom: 11px;
    margin-top: -10px;
}
.order-btn {
    font-size: 16px;
    font-weight: 500;
    background: #0066FF;
    border-radius: 12px;
    padding: 18px 50px;
    color: #fff;
    text-decoration: none;
    margin-top: 40px;
}
.bb-wing-7-10 {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    top: 25%;
    left: 0;
}
.bb-wing-13-15 {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    top: 24%;
    right: 0;
}
.bb-wing-7-10__text {
    max-width: 330px;
    margin-bottom: -120px;
    z-index: 1;
    padding-right: 130px;
}
.bb-wing-13-15__text {
    max-width: 440px;
    margin-bottom: -135px;
    z-index: 1;
    padding-left: 230px;
}
.bb-wing-7-10__text .item-name, .bb-wing-13-15__text .item-name {
    font-size: 14px;
    gap: 6px;
}
.bb-wing-7-10__text .item-name b, .bb-wing-13-15__text .item-name b {
    font-size: 36px;
}
.made-in {
    display: flex;
    margin-top: -10px;
}

/* about */
#about-bb {
    display: flex;
    flex-direction: column;
    padding-left: 150px;
    position: relative;
    z-index: 1;
    padding-top: 110px;
}
.bb22 {
    position: absolute;
    top: 49px;
    right: 0;
    width: 90%;
}
.about-bb__text {
    max-width: 528px;
    position: relative;
    z-index: 1;
}
.about-bb__text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    max-width: 454px;
    padding-left: 28px;
}
.about-bb__text p:last-child {
    margin-top: 34px;
    max-width: 414px;
}
.about-bb__text img {
    padding-bottom: 71px;
}
.about-bb__partners {
    padding-top: 157px;
    padding-right: 120px;
    display: flex;
    gap: 35px;
    position: relative;
    z-index: 1;
    padding-left: 24px;
    max-width: 1440px;
}
.about-bb__partners span {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    max-width: 220px;
}
.about-bb__partners ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-around;
    gap: 12px;
}

.about-bb__partners ul li {
  width: calc(21% - 9px);
}

.about-bb__partners ul li:nth-child(n + 5) {
  width: calc(19% - 9px);
}

/* .about-bb__partners ul li:first-child, .about-bb__partners ul li:nth-child(2), .about-bb__partners ul li:nth-child(3) {
    margin-right: 55px;
} */

/* contact */
#contact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 106px 0 74px;
    z-index: 1;
}
.contact-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 825px;
}
.contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    max-width: 823px;
    border-radius: 14px;
    width: 100%;
    padding: 36px 102px 46px;
}
form p {
    display: flex;
    flex-direction: column;
    padding-top: 45px;
    gap: 26px;
}
.contact-form__text {
    text-align: center;
    display: flex;
    flex-direction: column;
}
.contact-form__title {
    font-size: 48px;
    line-height: 100%;
    color: #fff;
    font-weight: 700;
    padding-bottom: 10px;
}
.contact-form__subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
}
form p span input {
    border: 2px solid #f5f5f5;
    height: 79px;
    width: 100%;
    background: unset;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding:0 33px;
    color: #fff;
    font-size: 16px;
}
form p span input::placeholder {
    color: #767676;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}
#send {
    background: #0066FF;
    width: 264px;
    height: 62px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin: auto;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    margin-top: 10px;
}

/* footer */
footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .copyright {
    text-align: center;
    padding: 35px 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    color: #fff;
}


@media (max-width: 1279px) {
    header {
        padding: 64px 30px 35px;
    }
    .header__logo {
        max-width: 230px;
    }
    .header__btn {
        padding: 16px 15px 19px;
    }
    .header__nav {
        padding-right: 0;
        gap: 30px;
    }

    .bb-wing-7-10__text .item-name b, .bb-wing-13-15__text .item-name b {
        font-size: 26px;
    }
    .bb-wing-13-15 {
        top: 41%;
        width: 380px;
    }
    .bb-wing-13-15__text {
        max-width: 290px;
        margin-bottom: -85px;
        padding-left: 130px;
    }
    .bb-wing-7-10 {
        top: 41%;
        width: 360px;
    }
    .bb-wing-7-10__text {
        max-width: 230px;
        margin-bottom: -80px;
        padding-right: 90px;
    }

    #about-bb {
        padding-left: 40px;
    }
    .about-bb__partners {
        padding-top: 110px;
        padding-right: 70px;
    }
    .about-bb__text {
        max-width: 400px;
    }
    .about-bb__text p {
        font-size: 18px;
    }
    .about-bb__text p:last-child {
        max-width: 370px;
    }
    .about-bb__partners span {
        font-size: 18px;
        max-width: 200px;
    }
}

@media (max-width: 1024px) {
    header {
        justify-content: center;
    }
    .header__nav, .header__btn {
        display: none;
    }
    .bb-wing-7-10, .bb-wing-13-15 {
        display: none;
    }


    .header-burger-menu {
        width: 35px;
        height: 35px;
        position: fixed;
        left: 40px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 6;
    }
    .header-burger-menu::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid #fff;
        border-radius: 9px;
        transition: all 0.3s ease;
        opacity: 1;
    }
    .header-burger-menu span,
    .header-burger-menu span::before,
    .header-burger-menu span::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .header-burger-menu span::before {
        transform: translateY(-8px);
    }
    .header-burger-menu span::after {
        transform: translateY(8px);
    }
    header.open .header-burger-menu::after {
        opacity: 0;
    }
    header.open .header-burger-menu span {
        background: transparent;
    }
    header.open .header-burger-menu span::before {
        transform: rotate(45deg);
        width: 100%;
    }
    header.open .header-burger-menu span::after {
        transform: rotate(-45deg);
        width: 100%;
    }
    .menu-overlay .menu-overlay__background {
        display: none;
    }
    .menu-item__dropdown > a {
        position: absolute;
        max-width: 230px;
        top: 55px;
    }
    .menu-item__dropdown {
        padding: 55px 20px;
    }
    .mob-header__nav {
        display: flex;
        flex-direction: column;
        text-align: center;
        list-style: none;
        gap: 40px;
    }
    .mob-header__nav li a {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        line-height: 100%;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.3s ease;
        position: relative;
    }
    .mob-header__nav li a::after {
        content: '';
        background: #fff;
        height: 2px;
        width: 0;
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        transition: all .4s;
    }
    .mob-header__nav li a:hover:after {
        width: 100%;
    }

    /* about */
    .bb22 {
        position: relative;
        width: 100%;
        top: unset;
        margin: -40px 0 -110px;
    }
    .about-bb__text {
        order: -1;
        max-width: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-bb__text img {
        max-width: 450px;
    }
    .about-bb__text p {
        text-align: center;
        padding-left: unset;
        max-width: 520px;
    }
    .about-bb__text p:last-child {
        max-width: 340px;
    }
    .about-bb__partners {
        padding: 0 40px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-bb__partners span {
        max-width: 290px;
    }

    /* contact */
    #contact {
        margin: 0 40px;
    }
    .contact-form {
        padding: 36px 40px 46px;
    }
}

@media (max-width: 767px) {
    .bg-1 {
        height: 745px;
    }
    header {
        padding: 55px 30px 62px;
    }
    .header__banner {
        font-size: 14px;
    }
    .quality-awards {
        max-width: 264px;
        margin: 0;
        order: -1;
    }
    .new {
        order: -1;
        z-index: 1;
        margin: 24px 0 -5px;
    }
    .bb-antiaircraft__text {
        padding-top: 5px;
        font-size: 16px;
    }
    .bb-antiaircraft__text b {
        font-size: 40px;
    }
    .made-in {
        display: none;
    }
    .order-btn {
        margin-top: 60px;
    }

    /* about */
    #about-bb {
        padding: 64px 0 0;
    }
    .about-bb__text img {
        max-width: 240px;
        padding-bottom: 30px;
    }
    .about-bb__text p {
        max-width: unset;
        padding: 0 45px;
        font-size: 16px;
    }
    .about-bb__text p:last-child {
        max-width: 390px;
        padding: 0 45px;
        margin-top: 30px;
    }
    .about-bb__partners span {
        font-size: 16px;
    }
    .about-bb__partners ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .about-bb__partners ul li, .about-bb__partners ul li:nth-child(n + 5) {
        width: unset;
    }

    /* contact */
    #contact {
        padding: 0;
    }
    .contact-form {
        padding: 50px 25px 83px;
    }
    .contact-bg {
        height: 785px;
    }
    .contact-form__title {
        font-size: 40px;
    }
    .contact-form__subtitle {
        font-size: 16px;
    }
    form p span input::placeholder {
        font-size: 16px;
    }
    form p span input {
        padding: 0 24px;
    }
    #send {
        font-size: 16px;
    }
    .contact-form__subtitle {
        max-width: 260px;
        margin: auto;
    }

    /* footer */
    footer .copyright {
        padding: 35px 0 24px;
    }
}

@media (max-width: 430px) {
    .header__banner {
        font-size: 12px;
        padding-top: 5px;
    }
    header {
        padding: 55px 20px 62px;
    }
    .header-burger-menu {
        left: 20px;
        width: 32px;
        height: 31px;
    }
    .header__logo {
        max-width: 180px;
    }
    .bb-antiaircraft__pic {
        margin-top: -45px;
    }
    .bb-antiaircraft__text b {
        font-size: 32px;
    }

    .about-bb__text p, .about-bb__text p:last-child, .about-bb__partners {
        padding: 0 30px;
    }
    .bb22 {
        margin: -30px 0 -80px;
    }

    #contact {
        margin: 0 30px;
    }
    .contact-form__title {
        font-size: 32px;
    }
    #send {
        max-width: 264px;
        width: 100%;
        font-size: 14px;
    }

    .menu-item__dropdown > a {
        max-width: 180px;
    }
}




/* catalog */
.bg-catalog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    height: 400px;
    object-position: bottom;
}
.catalog {
    padding-top: 115px;
    position: relative;
    z-index: 1;
}
.catalog h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}
.catalog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 50px;
    padding: 150px 104px;
    max-width: 1440px;
    margin: auto;
}
.catalog__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 100px rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    position: relative;
    height: 100%;
}
.catalog__label {
    position: absolute;
    top: -31px;
    color: #FF7700;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 103%;
    left: 50%;
    transform: translateX(-50%);
}
.item-main-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item-bg {
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    z-index: -1;
}
.item-main-photo {
    min-height: 220px;
    height: 220px;
}
.item-title {
    margin: 23px 25px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 120%;
    text-transform: uppercase;
    min-height: 125px;
}
.item-title b {
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
}
.characteristics__list {
    display: flex;
    flex-direction: column;
    padding: 0 25px;
    height: 100%;
}
.characteristics__type {
    color: #FCDE2B;
    border-bottom: 1px solid #FCDE2B;
    padding-bottom: 9px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    padding-top: 26px;
}
.characteristics__list ul {
    list-style: none;
    padding-top: 10px;
}
.characteristics__list ul li {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    gap: 30px;
}
.characteristics__list ul li span:first-child {
    flex: 1;
}
.characteristics__list ul li span:nth-child(2) {
    font-weight: 700;
    text-align: right;
    width: 40%;
}
.more-photo {
    padding: 41px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}
.catalog-drone {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 560px;
    z-index: 1;
}
.get-offer {
    display: none;
    width: 264px;
    height: 62px;
    background: #0066FF;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1400px) {
    .catalog__list {
        max-width: 1260px;
        padding: 150px 20px;
        gap: 60px 20px;
    }
}

@media (max-width: 1279px) {
    .catalog__list {
        padding: 150px 20px;
        gap: 60px 20px;
    }
    .item-title b {
        font-size: 30px;
    }
    .item-title {
        min-height: 111px;
    }
    .catalog-drone {
        max-width: 320px;
    }
}

@media (max-width: 1024px) {
    .catalog__list {
        grid-template-columns: repeat(2, 1fr);
        padding: 150px 40px;
        gap: 70px 40px;
        max-width: 780px;
    }
    .catalog-drone {
        max-width: 270px;
    }
}

@media (max-width: 767px) {
    .catalog__list {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 20px 40px;
    }
    .get-offer {
        display: flex;
        margin: 43px auto 53px;
    }
    .catalog__label {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
    }
    .catalog__item {
        overflow: hidden;
    }
    .item-main-info {
        cursor: pointer;
    }
    .catalog__item .characteristics__list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease;
        opacity: 0;
    }
    .catalog__item.active .characteristics__list {
        max-height: 1500px;
        opacity: 1;
    }
    .item-bg {
        min-height: 502px;
    }
    .catalog-drone {
        display: none;
    }
}

@media (max-width: 500px) {
    .catalog {
        padding-top: 0;
    }
    .catalog h1 {
        font-size: 40px;
        padding: 0 25px;
    }
    .bg-catalog {
        height: 200px;
    }
    .catalog__list {
        padding: 64px 25px;
    }
}

@media (max-width: 400px) {
    .catalog__list {
        padding: 64px 20px;
    }
    .item-title {
        min-height: unset;
        margin: 23px 15px 20px;
    }
    .item-bg {
        min-height: 400px;
    }
    .item-title {
        font-size: 14px;
    }
    .item-title b {
        font-size: 28px;
    }
    .catalog__list {
        gap: 10px 40px;
    }
    .item-main-photo {
        min-height: 180px;
        height: 180px;
    }
    .get-offer {
        width: 210px;
        font-size: 14px;
        height: 51px;
    }
    .more-photo { 
        padding: 41px 0 10px;
    }
}
