/* estimate */
.case-estimate {
    text-align: center;
    padding-top:80px;
    padding-bottom: 40px;
}

.case-estimate__tel {
    display: block;
    width: 100%;
    padding: 8px;
    background-color: var(--l-orange);
    border-radius: 6px;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: var(--l-white);
    -webkit-transition: var(--l-transition);
    -o-transition: var(--l-transition);
    transition: var(--l-transition);
}

.case-estimate__tel.bg-white {
    background-color: var(--l-black);
}

.case-estimate__tel:hover {
    background-color: var(--l-orange-dark);
}

.case-estimate__tel:active {
    background-color: var(--l-orange);
}

.case-estimate__email {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: var(--l-black);
    -webkit-transition: var(--l-transition);
    -o-transition: var(--l-transition);
    transition: var(--l-transition);
}

.case-estimate__email:hover {
    color: var(--l-orange);
}

.case-estimate__tel-wrapper {
    height: 50px;
}

.case-estimate__tel-wrapper .case-estimate__tel {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 100%;
    max-width: 50px;
    height: 50px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    -webkit-transition: var(--l-transition);
    -o-transition: var(--l-transition);
    transition: var(--l-transition);
    -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, .14);
            box-shadow: 0 0 32px rgba(0, 0, 0, .14);
}

.case-estimate__tel-wrapper .case-estimate__tel.seen {
    bottom: 75px;
}

.case-estimate__tel-wrapper .case-estimate__tel span {
    display: none;
}

.case-estimate__tel-wrapper img {
    width: 19px;
    height: 18px;
    -webkit-transition: var(--l-transition);
    -o-transition: var(--l-transition);
    transition: var(--l-transition);
}

.case-estimate__tel-wrapper.transform-btn {
    position: relative;
}

.case-estimate__tel-wrapper.transform-btn .case-estimate__tel {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
    border-radius: 6px;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.case-estimate__tel-wrapper.transform-btn .case-estimate__tel span {
    display: block;
}

.case-estimate__tel-wrapper.transform-btn img {
    display: none;
}

@media (min-width: 992px) {
    .case-estimate{
        padding-top: 160px;
        padding-bottom: 80px;
    }
    .case-estimate__tel {
        padding: 21px;
        font-size: 50px;
    }

    .case-estimate__tel-wrapper {
        height: 100px;
    }

    .case-estimate__tel-wrapper .case-estimate__tel {
        max-width: 100px;
        height: 100px;
    }

    .case-estimate__tel-wrapper img  {
        width: 38px;
        height: 36px;
    }

    .case-estimate__tel-wrapper .case-estimate__tel.seen {
        bottom: 85px;
    }

    .case-estimate__tel-wrapper.transform-btn .case-estimate__tel.seen {
        bottom: 0;
    }

    .case-estimate__email {
        font-size: 50px;
    }
}
@media screen and (max-width:570px) {
    .case-estimate .text-large{
        font-size: 1rem;
    }
    .case-estimate__email{
        margin-top: 25px;
        display: block;
        word-wrap: break-word;
    }
    .case-estimate{
        padding-top: 80px;
    padding-bottom: 60px;
    }
}

@media screen and (max-width:374px) {
    .case-estimate__email{
        font-size: 1.5rem;
    }
    
}