.wcl-banner {
    background-color: #ffffff;
    overflow: hidden;
}

.wcl-banner__wrapper {
    display: grid;
    gap: 100px;
    padding: 75px 0;
}

@media only screen and (max-width: 1600px) {
    .wcl-banner__wrapper {
        gap: 80px;
    }
}

@media only screen and (max-width: 1440px) {
    .wcl-banner__wrapper {
        gap: 60px;
    }
}

@media only screen and (max-width: 1280px) {
    .wcl-banner__wrapper {
        gap: 40px;
        padding: 60px 0;
    }
}

@media only screen and (max-width: 1024px) {
    .wcl-banner__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
    }
}

.wcl-banner__info {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 1024px) {
    .wcl-banner__info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

.wcl-banner__content {
    width: 100%;
    max-width: 575px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media only screen and (max-width: 1350px) {
    .wcl-banner__content {
        padding-right: 40px;
    }
}

@media only screen and (max-width: 1024px) {
    .wcl-banner__content {
        max-width: 725px;
        padding-right: 0;
    }
}

.wcl-banner__title {
    margin-bottom: 52px;
    padding-right: 36px;
}

.wcl-banner__title span {
    position: relative;
    font-size: 40px;
    line-height: 1.4;
    font-weight: 500;
    padding-bottom: 25px;
}

@media only screen and (max-width: 1280px) {
    .wcl-banner__title span {
        font-size: 36px;
    }
}

@media only screen and (max-width: 1024px) {
    .wcl-banner__title span {
        font-size: 32px;
    }
}

@media only screen and (max-width: 768px) {
    .wcl-banner__title span {
        font-size: 30px;
    }
}

@media only screen and (min-width: 769px) {
    .wcl-banner__wrapper:hover .wcl-banner__title span:before {
        background-color: #84a4bb;
        width: calc(100% + 40px);
    }

    .wcl-banner__wrapper:hover .wcl-banner__title span::after {
        right: -47px;
    }
}

@media only screen and (max-width: 500px) {
    .wcl-banner__title span {
        font-size: 25px;
        padding-bottom: 20px;
    }
}

.wcl-banner__title span:before {
	content: "";
	position: absolute;
	display: inline-block;
	width: calc(100% - 5px);
	left: 0;
	height: 2px;
	background-color: var(--black);
	bottom: 0;
	transition: all 1s;
} 
.wcl-banner__title span:after {
	content: "";
	position: absolute;
	display: inline-block;
	background: url('../../images/banner-tag.svg') no-repeat center center / contain;
	width: 56px;
	height: 33px;
	right: 0;
	bottom: 0;
	transition: all 1s;
	transform: translateX(100%);
}

@media only screen and (max-width: 500px) {
    .wcl-banner__title span::after {
        width: 44px;
        height: 30px;
        bottom: -3px;
    }
}

.wcl-banner__text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wcl-banner__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-top: 15px;
}

@media only screen and (max-width: 1024px) {
    .wcl-banner__buttons {
        justify-content: center;
    }
}

@media only screen and (max-width: 500px) {
    .wcl-banner__buttons {
        flex-direction: column;
    }
}

.wcl-banner__img-wrapper {
    width: 100%;
    max-width: 1800px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    .wcl-banner__img-wrapper {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
}

.wcl-banner__img {
    position: relative;
    z-index: 2;
    align-self: center;
    justify-self: end;
    grid-column: 2 / 3;
    width: 100%;
    max-width: 725px;
    height: auto;
    padding: 0 12px;
    aspect-ratio: 725 / 425;
    border-radius: 66px;
    box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

@media only screen and (max-width: 1440px) {
    .wcl-banner__img {
        padding: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .wcl-banner__img {
        aspect-ratio: 4 / 3;
    }
}

.wcl-banner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease-in-out;
}

.wcl-banner__img:hover img {
    transform: scale(1.1);
}

.wcl-banner__info,
.wcl-banner__img-wrapper {
    grid-area: 1/1;
}

@media only screen and (max-width: 1024px) {
    .wcl-banner__info,
    .wcl-banner__img-wrapper {
        grid-area: unset;
    }
}