.section.hero {
    padding-top: 3vw;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.hero__content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.hero__tag {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 100;
}

.hero__headline {
    font-size: 60px;
    text-transform: uppercase;
}

.hero__clauses {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__clause {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 100;
    text-transform: capitalize;
}

.hero__clause i {
    font-size: 32px;
}

.hero__reviews {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero__reviews li a {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero__reviews li a i.fa-facebook {
    color: #3776f6;
    font-size: 48px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    font-size: 18px;
    color: gold;
}

.hero__reviews li a .typo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__reviews li a .typo p {
    font-size: 16px;
    font-weight: 100;
    white-space: nowrap;
}

.hero .bark-logo {
    width: 64px
}

/* RIGHT  */

.hero__right {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    min-width: 0;
}

/* RIGHT  SWIPER */

.hero__portfolio {
    position: relative;
    height: 240px;
}

.swiper__arrow {
    position: absolute;
    top: calc(50% - 20px);
    left: -60px;
    z-index: 2;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-green);
    border-radius: 200px;
    cursor: pointer;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-green);
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.5);
}

.swiper__arrow_right,
.swiper__arrow_right-responsive {
    right: -60px;
    left: initial;
}

.swiper.hero__swiper {
    display: block;
    height: 200px;
    z-index: 1;
}

.swiper.hero__swiper-responsive {
    height: 240px;
}

.swiper-slide {
    width: 100%;
    border: 1px solid var(--color-red);
    overflow: hidden;
    position: static;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    border-radius: 5px;
}


/* RIGHT OWNER  */

.hero__owner {
    border-radius: 5px;
    padding: 20px;
    background: var(--color-green-gradient);
    display: flex;
    gap: 20px;
    color: #fff;
}

.owner__avatar {
    width: calc(var(--index) * 14);
    height: calc(var(--index) * 6);
    border-radius: calc(var(--index) * 6);
    overflow: hidden;
    object-fit: cover;
}

.owner__typo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.owner__name {
    text-transform: uppercase;
    font-size: 20px;
}

.owner__vision {
    font-weight: 100;
    font-size: 18px;
}

.owner__sign {
    align-self: flex-end;
    width: 200px;
}

/* FORM */

.hero__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    margin-bottom: -70px
}

.form__title {
    text-transform: uppercase;
    color: var(--color-black);
    font-size: 24px;
}

.hero__fields {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.field-wrapper {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #252525;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding-right: 16px;
    color: var(--color-black);
}

.field-wrapper .form__field {
    width: 100%;
    font-size: 16px;
    color: var(--color-black);
}

.field-wrapper i {
    color: var(--color-green-dark);
}

.form__field_submit {
    width: 100%;
    background: var(--color-green-dark-gradient);
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.form__field_submit:hover {
    background: var(--color-green-dark-hover);
}


.hero__portfolio_responsive {
    display: none;
}

@media (max-width: 1350px) {
    .hero__headline {
        font-size: 48px;
    }

    .hero__content,
    .hero__clause,
    .hero__tag {
        font-size: 18px;
    }

    .hero__reviews li a .typo p {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .hero__portfolio {
        display: none;
    }

    .hero__portfolio_responsive {
        display: block;
        padding: 0 40px;
    }

    .hero__portfolio_responsive .hero__portfolio {
        display: block;
    }

    .hero__portfolio_responsive .hero__portfolio {
        height: 300px;
    }

    .swiper.hero__swiper-responsive {
        height: 250px;
    }

    .hero__owner {
        flex-direction: column;
    }

    .owner__avatar {
        width: 150px;
        height: 150px;
        border-radius: 150px;
        align-self: center;
    }

    .hero__content {
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
    }

    .owner__sign {
        margin-top: 20px;
    }
    .hero__reviews {
        gap: 20px;
    }

    .hero__reviews li a {
        gap: 10px;
    }

    .stars i {
        font-size: 14px;
    }

    .hero__clause i {
        font-size: 24px;
    }

    .hero__clause {
        gap: 14px;
    }
}

@media (max-width: 1000px) {
    .hero__tag,
    .owner__name {
        font-size: 18px;
    }

    .owner__vision {
        font-size: 16px;
    }

    .form__title {
        text-align: center;
    }

    .hero__headline {
        font-size: 42px;
    }

    .hero__fields {
        grid-template-columns: 1fr;
    }

    .hero__content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .section.hero {
        padding-bottom: 3vw;
    }

    .owner__sign {
        width: 150px;
    }

    .hero__content,
    .hero__clause,
    .hero__tag {
        font-size: 16px;
    }

    .hero__form {
        margin-bottom: 0;
    }
}

@media (max-width: 868px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero__owner {
        flex-direction: row;
    }


    .owner__avatar {
        width: 200px;
        height: 120px;
        border-radius: 100px;
        align-self: flex-start;
    }
}

@media (max-width: 700px) {
    .hero__portfolio_responsive .hero__portfolio {
        height: 250px;
    }

    .hero__portfolio_responsive {
        padding: 0 40px;
    }

    .swiper.hero__swiper-responsive {
        height: 200px;
    }

    .owner__sign {
        margin-top: 0;
    }

    .owner__avatar {
        width: 280px;
    }

    .hero__form {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .hero__portfolio_responsive .swiper__arrow {
        display: none;
    }

    .hero__portfolio_responsive {
        padding: 0;
    }

    .hero__portfolio_responsive .hero__portfolio {
        height: 230px;
    }

    .swiper.hero__swiper-responsive {
        height: 180px;
    }

    .owner__avatar {
        width: 400px;
    }
}

@media (max-width: 460px) {
    .hero__headline {
        font-size: 36px;
    }

    .hero__tag {
        font-size: 12px;
    }

    .hero__content, .hero__clause {
        font-size: 14px;
    }

    .stars i, .hero__reviews li a .typo {
        gap: 8px;
    }

    .stars i, .hero__reviews li a .typo p {
        font-size: 12px;
    }

    .hero__reviews {
        gap: 10px;
    }
}

@media (max-width: 390px) {
    .hero .bark-logo {
        width: 48px;
    }

    .hero__reviews li a i.fa-facebook {
        font-size: 36px;
    }

    .hero__clauses {
        margin: 14px 0;
        gap: 10px;
    }

    .hero__owner {
        padding: 10px;
        gap: 10px;
    }

    .owner__avatar {
        width: 400px;
        height: 110px;
        align-self: flex-start;
    }

    .owner__name {
        font-size: 16px;
    }

    .owner__vision {
        font-size: 14px;
    }

    .hero__portfolio_responsive .hero__portfolio {
        height: 200px;
    }

    .swiper.hero__swiper-responsive {
        height: 150px;
    }

    .hero__form {
        padding: 10px;
        gap: 10px;
    }

    .hero__fields {
        gap: 10px;
    }

    .form__title  {
        font-size: 20px;
    }

    .form__field_submit {
        font-size: 16px;
    }

    .owner__typo {
        gap: 6px;
    }
}

@media (max-width: 360px) {
	.hero__headline {
        font-size: 32px;
    }
	
    .hero__reviews {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero .bark-logo {
        width: 36px;
    }

    .hero__reviews li a {
        gap: 6px;
    }

    .hero__reviews {
        gap: 20px;
    }
}