@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
.content .welcom {
    width: var(--container);
    margin: 64px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    row-gap: 16px;
    font-family: "Cormorant Garamond", serif;
    cursor: default;
}
.content .welcom h2 {
    grid-column: 1;
    font-size: 25px;
    font-weight: 700;
    color: #333;
}
.content .welcom h1 {
    grid-column: 1;
    font-size: 50px;
    font-weight: 700;
}
.content .welcom span {
    margin-top: 15px;
    grid-column: 2;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .2px;
}
.content .about {
    width: 100%;
    margin: 200px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    height: 800px;
}
.content .about .left {
    position: relative;
    height: 100%;
}
.content .about .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}
.content .about .left.fade img {
    -webkit-mask-image: radial-gradient(130% 130% at 85% 50%, #000 60%, transparent 100%);
    mask-image: radial-gradient(130% 130% at 85% 50%, #000 60%, transparent 100%);
}
.content .about .right {
    background: rgb(var(--maincolor));
    color: #fff;
    padding-left: 64px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 18px;
}
.content .about .right h3 {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: .95;
}
.content .about .right h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #fff;
    margin-top: 12px;
}
.content .about .right h2 {
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.1;
    font-weight: 700;
    margin: 6px 0 4px;
}
.content .about .right span {
    color: rgba(266,255,255,.88);
    font-size: 16px;
    line-height: 1.7;
}
.content .about .right a {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: .95;
}
.content .about .right a::after {
    content: "→";
    transform: translateX(0);
    transition: transform .2s ease;
}
.content .about .right a:hover::after {
    transform: translateX(4px);
}


@media (max-width:1150px) {
    .content .welcom {
        width: auto;
    }
}
@media (max-width:1000px) {
    .content .about {
        display: block;
        height: 500px;
    }
    .content .about .right {
        padding: 0 40px 0 40px;
    }
}
@media (max-width:900px) {
    .content .welcom {
        display: block;
        margin-left: 20px;
    }
    .content .welcom h2 {
        font-size: 18px;
        margin-bottom: 7px;
    }
    .content .welcom h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }
}
@media (max-width:670px) {
    .content .about .right h2 {
        font-size: 20px;
    }
}
