.estimate--container {
    max-width: 1060px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 992px) {
    .estimate--container {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
}

.estimate--list {
    display: flex;
    flex-direction: column;
}

.estimate--list>div {
    padding: 24px 0;
}

.estimate--list>div:not(:last-child) {
    border-bottom: 0.5px solid var(--blue);
}

.estimate--list>div>p {
    padding-left: 24px;
    position: relative;
}

.estimate--list>div>p::before {
    content: "";
    background: var(--blue);
    width: 14px;
    height: 14px;
    -webkit-mask: url("../images/check.svg") no-repeat center;
    mask: url("../images/check.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    left: 0;
    top: calc(50% - 7px);
}

@media screen and (min-width: 992px) {
    .estimate--list>div>p {
        padding-right: 32px;
    }
}

.estimate .buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0px 0px 24px;
}

@media screen and (min-width: 992px) {
    .estimate .buttons {
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding: 24px 0;
    }
}

.estimate .buttons .btn {
    text-wrap: nowrap;
}

@media screen and (min-width: 992px) {

    .estimate .buttons .btn,
    .estimate .buttons form {
        flex: 1;
    }
}

.estimate--content {
    width: 100%;
}

@media screen and (min-width: 992px) {
    .estimate--content {
        max-width: 49%;
    }
}

@media screen and (min-width: 992px) {
    .estimate--content h2 {
        margin-bottom: 24px;
    }
}

.estimate--aside {
    width: 100%;
    z-index: 2;
}

@media screen and (min-width: 992px) {
    .estimate--aside {
        max-width: calc(51% + 32px);
        margin-left: -32px;
    }
}

.estimate--tile .inner {
    border-radius: 16px;
    background: linear-gradient(180deg, #FFD5C3 0%, #FFD1D9 100%), #DCEDFC;
    box-shadow: 6px 6px 21.6px 0 rgba(0, 0, 0, 0.15);
    padding: 30px 12px;
}

@media screen and (min-width: 992px) {
    .estimate--tile .inner {
        border-radius: 32px;
        flex: 1;
        padding: 30px 21px;
    }
}

.estimate--tile .wrapper {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 992px) {
    .estimate--tile .wrapper {
        flex-direction: row;
        align-items: flex-end;
    }
}

.estimate--tile .hidden-ofa {
    display: none;
    pointer-events: none;
}

@media screen and (min-width: 992px) {
    .estimate--tile .hidden-ofa {
        display: block;
        margin-bottom: 24px;
        width: clamp(0px, 11.38vw, 164px);
        height: auto;
    }
}

.estimate--tile .hidden-ofa-mob {
    height: 136px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (min-width: 992px) {
    .estimate--tile .hidden-ofa-mob {
        display: none;
    }
}

.estimate--tile .btn-more {
    justify-content: center;
    margin-top: 24px;
}

@media screen and (min-width: 992px) {
    .estimate--tile .btn-more {
        margin-top: 40px;
        justify-content: flex-start;
        margin-left: clamp(0px, 11.38vw, 164px);
    }
}

.estimate--tile h5 {
    margin-bottom: 16px;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .estimate--tile h5 {
        text-align: left;
        margin-bottom: 24px;
    }
}

.estimate--tile .item {
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

@media screen and (min-width: 992px) {
    .estimate--tile .item {
        text-align: left;
    }
}

.estimate--tile .item:not(:has(a)) {
    text-align: center;
}

@media screen and (min-width: 992px) {
    .estimate--tile .item:not(:has(a)) {
        text-align: left;
    }
}

.estimate--tile .item:not(:has(a)) div {
    flex: 1;
}

.estimate--tile .item+.item {
    margin-top: 8px;
}

.estimate--tile .item+h5 {
    margin-top: 32px;
}

.estimate--tile .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--blue);
    border: 0.5px solid var(--blue);
    border-radius: 50%;
    transition: all 0.4s ease;
}

@media screen and (min-width: 992px) {
    .estimate--tile .item a {
        width: 32px;
        height: 32px;
    }
}

.estimate--tile .item a::after {
    content: "";
    width: 20px;
    height: 20px;
    background: white;
    transition: all 0.4s ease;
}

@media screen and (min-width: 992px) {
    .estimate--tile .item a::after {
        width: 14px;
        height: 14px;
    }
}

.estimate--tile .item a:hover {
    background: white;
}

.estimate--tile .item a:hover::after {
    background: var(--blue);
}

.estimate--tile .item a.link::after {
    -webkit-mask: url("../images/arrow.svg") no-repeat center;
    mask: url("../images/arrow.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.estimate--tile .item a.dl::after {
    -webkit-mask: url("../images/download.svg") no-repeat center;
    mask: url("../images/download.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.estimate--tile .item p:not(.title) {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.estimate--tile a.item:hover {
    background: var(--blue);
    color: white;
}

.estimate--tile .title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 24px;
}

.estimate--overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(31, 49, 90, 0.6);
    z-index: 11;
    display: flex;
    align-items: flex-start;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

@media screen and (min-width: 768px) {
    .estimate--overlay {
        padding: 0;
        justify-content: flex-end;
    }
}

.estimate--overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.estimate--overlay--inner {
    width: 100%;
    background: white;
    transform: translateX(100%);
    transition: all 0.3s 0.2s ease;
    padding: 24px;
    padding-top: 80px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .estimate--overlay--inner {
        height: 100%;
        max-width: 520px;
    }
}

@media screen and (min-width: 992px) {
    .estimate--overlay--inner {
        padding: 108px 50px 0;
    }
}

.estimate--overlay--inner.active {
    transform: none;
}

.estimate--overlay--inner button {
    height: 32px;
    width: 32px;
    background: var(--blue);
    -webkit-mask: url("../images/close.svg") no-repeat center;
    mask: url("../images/close.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 24px;
    top: 24px;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .estimate--overlay--inner button {
        width: 38px;
        height: 38px;
        right: 38px;
        top: 44px;
    }
}

.estimate--overlay--inner h2 {
    margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .estimate--overlay--inner h2 {
        margin-bottom: 32px;
    }
}

.estimate--overlay--inner .gfield--type-html p {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

.estimate--overlay--inner input[type=submit] {
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    font-style: normal;
    line-height: 26px;
    color: var(--white);
    border-radius: 100px;
    padding: 12px 16px;
    background: var(--blue);
    transition: all 0.4s ease;
    border: 1px solid var(--blue);
    display: flex;
    justify-content: center;
    width: 100%;
}

.estimate--overlay--inner input[type=submit]:hover {
    background: #162140;
    border-color: #162140;
}

/*# sourceMappingURL=style.css.map */