.text-shadow {
    text-shadow: 0 0 30px #0004;
}

.float-deco {
    position: absolute;
    bottom: calc(100% - 1px);
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 1;
}

.deco {
    width: 100%;
    z-index: 1;
}

.block-quote {
    width: 100%;
    background: linear-gradient(
        90deg, #7ac2 0%, transparent 200px,
        transparent calc(100% - 200px), #7ac2 100%);
    border-radius: 10px;
    position: relative;
    padding: 20px 50px;
}

.block-quote::before,
.block-quote::after {
    content: '';
    position: absolute;
    top: 0;
    width: 7px;
    height: 100%;
    background-color: #7ac;
}

.block-quote::before {
    left: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.block-quote::after {
    right: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.img {
    height: 340px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.img.border {
    outline: 10px solid #fff3;
}

.full-img-hold {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    outline: 10px var(--bg-dark);
}
.full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.full-img-hold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg) 0%, #fff0 15%, #fff0 85%, var(--bg) 100%);
    z-index: 1;
}

.big-card-hold {
    width: 100%;
    height: auto;
    position: relative;
}

.big-card-hold.small {
    width: 33%;
    flex: 1 0 auto;
}

.big-card-hold.big .big-card {
    padding: 20px 50px;
}

.big-card-hold::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background-color: var(--fg);
    border-radius: 15px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid var(--fg-light);
}

.big-card-hold.dark-bg::before {
    background-color: var(--fg-dim);
    border: 1px solid var(--fg-dark);
}

.big-card {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--fg-bright);
    border-radius: 15px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 25px 15px;
    border: 1px solid var(--fg-dim);
    display: flex;
    flex-direction: column;
    gap: 20px
}

.big-card-hold.small .big-card {
    padding: 15px;
}

.big-card-title {
    font-family: var(--head);
    text-align: center;
    font-weight: bold;
    font-size: var(--h4);
}

.big-card-txt {
    height: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: relative;
}

.big-card-img {
    width: 100%;
    height: 100%;
}

.big-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1.5;
    border-radius: 10px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.big-card-num {
    pointer-events: none;
    position: absolute;
    top: 4px;
    left: 14px;
    font-size: var(--h2);
    font-family: var(--head);
    font-weight: bold;
    opacity: .5;
}

.button {
    overflow: hidden;
    display: block;
    width: fit-content;
    font-size: var(--h5);
    font-family: var(--body);
    font-weight: bold;
    border: none;
    border-radius: 50px;
    background-color: var(--root);
    padding: 13px 23px;
    cursor: pointer;
    transform: scale(1);
    transition: .5s cubic-bezier(.2, 2, .7, 1);
    border: 5px solid var(--root);
}

.button.hover:hover {
    transform: scale(1.1);
    background-color: var(--bg-3);
    border-radius: 20px;
}

.button span {
    display: block;
    transform: scale(1);
    transition: .5s cubic-bezier(.2, 2, 0, 1);
}

.button.hover:hover span {
    transform: scale(1.1);
}

.button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -43px;
    width: 30px;
    height: 100%;
    background-color: #fffd;
    transform: skewX(-30deg);
}

.button:hover::after {
    animation: shine .8s cubic-bezier(.9, 0, .2, 1);
}

.button-2 {
    position: relative;
    overflow: hidden;
    display: block;
    width: fit-content;
    font-size: var(--h5);
    font-family: var(--body);
    font-weight: bold;
    border: none;
    border-radius: 50px;
    background-color: var(--fg-light);
    padding: 13px 23px;
    cursor: pointer;
    transition: .5s cubic-bezier(.2, 2, .7, 1);
    border: 5px solid var(--fg-dim);
}

.button-2.hover:hover {
    background-color: var(--bg-3);
    border-radius: 20px;
}

.button-2 span {
    display: block;
    transform: scale(1);
    transition: .5s cubic-bezier(.2, 2, 0, 1);
}

.button-2.hover:hover span {
    transform: scale(1.1);
}

.button-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: -43px;
    width: 30px;
    height: 100%;
    background-color: #fffd;
    transform: skewX(-30deg);
}

.button-2:hover::after {
    animation: shine .8s cubic-bezier(.9, 0, .2, 1);
}

@keyframes shine {
    0% {left: -43px}
    100% {left: calc(100% + 13px)}
}

.speech {
    padding: 20px;
    border-radius: 20px;
    position: relative;
    background-color: var(--root);
}

.speech::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0px;
    height: 0px;
    transform: translateY(-50%);
    border-left: var(--root);
    border-right: transparent;
    border-top: transparent;
    border-bottom: transparent;
    border-width: 10px;
    border-style: solid;
}

.services {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.services h3 {
    line-height: normal;
}
.service-item {
    width: 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 30px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border: 1px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 10px 10px 0 var(--fg-dim);
}
.service-txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

.service-img {
    max-width: 200px;
    max-height: 200px;
    flex: 0 0 auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    min-width: 0;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.line {
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--fg-dim) 25%,
        var(--fg-dim) 75%,
        transparent 100%);
}

.prices {
    width: 100%;
    display: flex;
    padding: 30px;
    background-color: var(--root);
    border-radius: 40px;
    border: 1px solid var(--fg);
    flex-direction: column;
}

.price {
    width: 100%;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--fg);
    padding: 20px 0;
    font-family: "mont", sans-serif;
}

.prices .price:last-child {
    border: none;
}

.price-txt {
    width: 100%;
}

.price-amt {
    width: fit-content;
    flex: 0 1 auto;
    text-align: right;
}

.box {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 10px 10px 0 var(--bg-dim);
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review {
    width: 100%;
    padding: 20px;
    background-color: var(--root);
    border-radius: 10px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid var(--fg-dark);
    box-shadow: 10px 10px 0 var(--fg-dim);
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.review-stars {
    width: 100%;
    height: 24px;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
}
.review-stars svg {
    height: 100%;
}
.review-stars path {
    fill: var(--fg);
    stroke: var(--fg-dark);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.review-name {
    color: var(--fg-dark)
}

.icon {
    display: block;
}
.icon svg {
    display: block;
    width: 50px;
    height: 50px;
}

.title-size {
    font-size: 40px;
    color: hsl(var(--fg-h), 10%, 40%);
    font-family: "mont", sans-serif;
}

.colors {
    font-family: "mont", sans-serif;
    display: flex;
    flex-direction: column;
}

.colors > div > span {
    color: #d328a0;
}
.priv h2 {
    line-height: normal;
}

.links {
    width: 100%;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.link {
    width: fit-content;
    color: #983b7c;
    position: relative;
}
.link.mute {
    color: #000;
}

.link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 2px;
    background-color: #983b7c;
    border-radius: 10px;
    transition: .3s cubic-bezier(1,0,0,1);
}
.link:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.services-2 {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: var(--bg);
    padding: 40px;
    border-radius: 20px;
}
.services-2-list {
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: "mont", sans-serif;
}
.services-2-img {
    width: 80px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.services-2-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}