:root {
    --vw-unit: calc(100vw / 7);
    --blur-size: calc(100vw / 18);
    --blur-size-sm: calc(100vw / 10);
}

@media (min-width: 1024px) {
    .main-content {
        display: flex;
        align-items: stretch;

        .wy-blury-glow {
            height: auto;
            display: flex;
            flex: 1;
            align-items: center;
            justify-content: center;
        }
    }
}

.wy-blury-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wy-blury-glow:not(.single)::after, .wy-blury-glow::before {
    content: '';
    position: absolute;
    width: var(--vw-unit);
    aspect-ratio: 1 / 1;
    background: #0085ff;
    filter: blur(var(--blur-size-sm));
    will-change: filter, transform;
    user-select: none;
    pointer-events: none;
    border-radius: 50%;
    animation: BluryGlow 3s infinite;
    z-index: -1;
}

.wy-blury-glow:not(.single):after {
    right: -5rem;
    top: calc(100vw / 11);
}

.wy-blury-glow:not(.single):before {
    top: calc(100vw / 3);
    left: 0;
    user-select: none;
    pointer-events: none;
}

@keyframes BluryGlow {
    0%, 100% {
        opacity: .6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.dt-cont {
    display: grid;
    grid-template-columns: max(38%, 484px) auto;
    gap: 85px;
    padding: 30px 0;
}

.dt-left-cont {
    position: relative;

    img {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0px 5px 5px rgba(0,0,0,.2));
    }
}

.dt-free-badge {
    position: absolute;
    z-index: 3;
    bottom: 0;
    right: 0;
    transform: translateX(-50%);
    transform: translate(15%, -80%);
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: .25rem;
    background: rgba(74, 155, 178, 0.85);
    outline: 15px solid rgba(74 155 178 / 30%);
    box-shadow: 0 0 0px 16px rgba(0, 110, 185, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 37px;
    font-weight: 400;
    line-height: 1.14;
    color: #fff;
    transition: 300ms ease all;
    animation: circleBtnAnimationTry 1.5s infinite alternate;
    flex-direction: column;
}

.dt-free-badge .dt-small {
    margin-top: 2px;
    font-weight: 800;
}


@keyframes circleBtnAnimationTry {
    0% {
        border-color: rgba(0, 110, 185, 0.85);
        outline: 40px solid rgba(0, 110, 185, 0.35) !important;
        box-shadow: 0 0 0px 25px rgba(0, 110, 185, 0.15);
    }
    100% {
        border-color: rgba(0, 110, 185, 0.7);
        outline: 50px solid rgba(0, 110, 185, 0.25) !important;
        box-shadow: 0 0 0px 30px rgba(0, 110, 185, 0.1);
    }
}

.dt-page-title {
    color: #1b7e97;
    font-size: 2.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0;
    padding-bottom: 2rem;
    line-height: 1;
    letter-spacing: -.7px;
}

.dt-page-desc {
    color: #1b7e97;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    padding-bottom: 3rem;
    line-height: 1;
    letter-spacing: -.7px;
}

.dt-form .form-control {
    border-radius: 3px;
    border: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);

    border-radius: 8px !important;
    border: 1px solid #ccc;
    box-shadow: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

    padding: 15px 26px;
    height: unset;
    line-height: 1.3;
    font-size: 15px;
    font-weight: 500;
    color: #434343;
}

.dt-form .fa-smile-o {
    display: none !important;
}

.floating-label {
    position: relative;
}

.dt-float-label .form-label {
    position: absolute;
    top: -10px;
    left: 19px;
    padding: 0 8px;
    font-size: 1rem !important;
    color: #333;
    pointer-events: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background: #fff;
    z-index: 2;
}

.dt-form .form-control[readonly] {
    pointer-events: none;
    user-select: none;
}

.dt-float-label .form-label:has( + .form-control[readonly] ) {
    background: linear-gradient(180deg, #fff 0 calc(50% - 4px), #eee calc(50% + 1px) 100%);
}

.dt-form .form-control:focus {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    box-shadow: none;

    border-color: #416eb3;
    border-color: #1b7e97;
}

.dt-form .form-control:-webkit-autofill {
    box-shadow: inset 0 0 0 999px rgb(255, 255, 255) !important;
}

.dt-form .icon-info-circled,
.dt-form .form-group label {
    font-size: 18px;
    color: #416eb3;
    color: #1b7e97;
    font-weight: 600;
    font-style: normal;
}

.dt-form textarea.form-control {
    padding: 15px;
}

.dt-form .form-group {
    margin-bottom: 20px;
}

.dt-btn-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;

    > div > div,
    > div {
        width: 100% !important;
    }
}


.dt-review-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    /*background: linear-gradient(90deg, #1462d0 , #6bbbf4);*/
    background: #37a951;
    background-size: 200% 100%;
    background-position: 0 0;
    border-radius: 11.33px;
    min-width: min(100%, 345px);
    max-width: max-content;
    width: auto;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffff;
    padding: .9rem 2.375rem;
    position: relative;
    transition: 300ms ease all;
    line-height: 1;
    letter-spacing: -.4px;
    gap: 0;

    .dt-review-text {
        padding-left: 4rem;
        margin-right: auto;
        flex: 1;
        max-width: 284px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.dt-circle-btn {
    background: #fff;
    border-radius: 50%;
    padding: .25rem;
    border: 10px solid #FFBF00FF;
    outline: 8px solid rgba(255, 191, 0, 0.25);
    box-shadow: 0 0 0px 16px rgba(255, 191, 0, 0.2);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #434343;
    transition: 300ms ease all;
    will-change: border, outline, box-shadow;
    animation: circleBtnAnimation 1.5s infinite alternate;
    color: #eabb30;
}

.dt-circle-btn:focus,
.dt-circle-btn:hover {
    color: #eabb30;
    color: #434343;
    transform: scale(1.033);
}

@keyframes dtBtnAnimationAlt {
    0% {
        border-color: rgba(55, 169, 81, 0.86);
        box-shadow: 0 0 0px 5px rgba(55, 169, 81, 0.28);
    }
    100% {
        border-color: rgba(55, 169, 81, 0.75);
        box-shadow: 0 0 0px 7px rgba(55, 169, 81, 0.05);
    }
}

.dt-float-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.consultant-error {
    width: 100%;
    color: #812432;
    background-color: #fcdada;
    border: 1px solid #fbcbcb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0;
    border-radius: 3px;
    text-align: center;
}

.dt-review-icon {
    background: #fff;
    border-radius: 50%;
    padding: .5rem;
    /*margin: -1rem;*/
    /*margin-right: 0;*/
    /*margin-left: .75rem;*/
    border: 5px solid rgba(24, 101, 210, 0.86);
    box-shadow: 0 0 0px 5px rgba(24, 101, 210, 0.28);
    transition: 300ms ease all;
    color: #317fdc;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    will-change: border, outline, box-shadow;
    animation: dtBtnAnimationAlt 1.5s infinite alternate;


    width: 100%;
    max-width: 70px;
    height: calc(100% + 2rem);
    max-height: 70px;

    position: absolute;
    right: auto;
    top: auto;
    bottom: auto;
    left: 0;
    margin: 0 0 0 20px;

    .dt-rew-text {
        font-size: 1.25rem;
    }

    .dt-rew-text-sm {
        font-size: .875rem;
    }

    img {
        width: 100%;
        max-width: 40px;
        height: auto;
        aspect-ratio: unset;
        object-fit: contain;
    }

    svg path {
        fill: #317fdc;
        transition: 300ms ease all;
    }
}

.dt-review-btn:focus,
.dt-review-btn:hover {
    background-position: -5rem 0;
    /*background: #1462d0;*/
    color: black;

    .dt-review-icon {
        transform: scale(1.05);
    }
}

.dt-btn-cont > div > div > div:has( > iframe) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dt-right-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .dt-cont {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 5px;
        padding-bottom: 0;
    }

    .wy-blury-glow {
        height: 100%;
        min-height: 82vh;
        min-height: calc(100vh - 135px );
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dt-btn-cont {
        flex-wrap: wrap;
        gap: 20px;
        max-width: calc(100vw - 30px);
        justify-content: center;
    }

    .wy-blury-glow:not(.single):after {
        right: -5rem;
        top: calc(100vw / 11);
    }
    .dt-free-badge {
        font-size: 30px;
        max-width: max-content;
        padding: 1rem;
        transform: translate(0%, -50%);
    }
}

@media (max-width: 834px) {
    .dt-free-badge {
        transform: translate(-30%, -30%);
    }
    .dt-left-cont img {
        max-width: 450px;
        margin: 0 auto;
        display: block;
    }
    .dt-free-badge {
        font-size: 25px;
        padding: 1.5rem;
    }

    .dt-btn-cont > div > div > div:has( > iframe) {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .dt-free-badge {
        font-size: 22px;
        padding: 1.35rem;
        transform: translate(-15%, -10%);
    }
    .dt-page-title {
        font-size: 1.6rem;
        font-size: 1.3125rem;
        text-wrap: balance;
    }
    .dt-page-desc {
        font-size: 1rem;
        padding-bottom: 1.5rem;
    }
    .dt-form .form-control {
        padding: 10px 20px;
        line-height: 1.2;
        font-size: 14px;
    }
    .dt-float-label .form-label {
        font-size: 14px !important;
    }
    .wy-blury-glow::before,
    .wy-blury-glow::after {
        display: none;
    }

    .dt-left-cont img {
        max-height: 160px;
    }
}

@media (max-width: 360px) {
    .dt-page-title {
        font-size: 1.23rem;
        padding-bottom: .5rem;
        text-wrap: auto;
    }
    .dt-review-btn .dt-review-text {
        font-size: 18px;
        padding-left: 3rem;
    }
    .dt-review-icon {
        max-width: 60px;
        max-height: 60px;

        img {
            max-width: 30px;
        }
    }
    .dt-free-badge {
        font-size: 20px;
        padding: 1.2rem;
        transform: translate(-15%, -10%);
    }
    .dt-float-label .form-label {
        left: 18px;
    }
    .dt-form .form-control {
        padding: 15px 20px 10px;
    }
}

/*nw devices*/

@media (max-width: 1024px) {
    .wy-blury-glow::before,
    .wy-blury-glow::after {
        /*display: none;*/
    }



    .wy-blury-glow {
        height: 100%;
        min-height: 82vh;
        min-height: calc(100vh - 135px );
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dt-cont {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 5px;
        padding-bottom: 0;
    }

    .dt-left-cont {
        img {
            max-height: 460px;
            margin-top: 15px;
        }
    }

    .dt-btn-cont {
        flex-wrap: wrap;
        gap: 20px;
        max-width: calc(100vw - 30px);
        justify-content: center;
        justify-content: space-between;
    }

    .wy-blury-glow:not(.single):after {
        right: -5rem;
        top: calc(100vw / 11);
    }
    .dt-free-badge {
        font-size: 30px;
        max-width: max-content;
        padding: 1rem;
        transform: translate(0%, -50%);
    }



    .wy-blury-glow:not(.single):before {
        top: calc(100vw / 4);
        scale: 1.25;
        z-index: 99;
    }

    .dt-free-badge {
        transform: translate(-110%, -20%);



    }
}

@media (max-width: 1023px) {
    transform: translate(-90%, -15%);
    scale: .9;
}
@media (max-width: 834px) {

    .dt-left-cont img {
        max-width: 450px;
        margin: 0 auto;
        display: block;
    }
    .dt-free-badge {
        font-size: 25px;
        padding: 1.5rem;

        transform: translate(-90%, -15%);
        scale: .9;
    }

    .dt-btn-cont > div > div > div:has( > iframe) {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .dt-free-badge {
        scale: .85;
        font-size: 19px;
        padding: 1rem;
        transform: translate(-15%, -10%);
        outline-width: 8px;
        animation: circleBtnAnimationTryMbl 1.5s infinite alternate;
    }
    .wy-blury-glow:not(.single):before,
    .wy-blury-glow:not(.single):after {
        scale: 1;
    }

    .wy-blury-glow {
        min-height: 82vh;
    }
    .dt-page-title {
        font-size: 1.6rem;
        font-size: 1.3125rem;
        text-wrap: balance;
        padding-top: 15px;
    }
    .dt-page-desc {
        font-size: 1rem;
        padding-bottom: 1.5rem;
    }
    .dt-form .form-control {
        padding: 10px 20px;
        line-height: 1.2;
        font-size: 14px;
    }
    .dt-float-label .form-label {
        font-size: 14px !important;
    }
    .dt-left-cont img {
        max-height: 160px;
    }


    .dt-left-cont {
        display: none;
    }

    .dt-btn-cont {
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .dt-page-title {
        font-size: 1.15rem;
        padding-bottom: 1.5rem;
        text-wrap: auto;
    }
    .dt-review-btn .dt-review-text {
        font-size: 18px;
        padding-left: 3rem;
    }
    .dt-review-icon {
        max-width: 60px;
        max-height: 60px;

        img {
            max-width: 30px;
        }
    }
    .dt-free-badge {
        font-size: 20px;
        padding: 1.2rem;
        transform: translate(-15%, -10%);
    }
    .dt-float-label .form-label {
        left: 18px;
    }
    .dt-form .form-control {
        padding: 15px 20px 10px;
    }
}

@media (width: 1024px) and (height: 1366px) {
    .dt-cont {
        grid-template-columns: max-content auto;
    }

    .main-content .wy-blury-glow {
        min-height: unset;
        padding-top: 45px;
    }

    .dt-left-img-cont {
        z-index: 245;
        position: relative;
    }

    .dt-left-cont {
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            max-height: 420px;
            margin-top: 0;
            max-width: 100%;
        }
    }

    .dt-btn-cont {
        flex-wrap: nowrap;
    }

    .dt-review-btn {
        min-width: unset;
        max-width: max-content;
        font-size: 1rem;
        padding: .9rem 2.375rem;
        width: 100%;

        .dt-review-text {
            padding-left: 3rem;
        }
    }

    .dt-review-icon {
        max-width: 60px;
        max-height: 60px;
        margin: 0 0 0 20px;
    }

    .dt-free-badge {
        transform: translate(10%, 0%);
        scale: .7;
    }

    .dt-free-badge {
        transform: translate(-10%, -20%);
        scale: .8;
        padding: 1.25rem;
    }

    .dt-left-img-cont {
        z-index: 245;
        position: relative;
    }

    .dt-page-title {
        text-wrap: balance;
    }

    .wy-blury-glow:not(.single):before {
        top: calc(100vw / 6);
        scale: 1;
    }
}