.page-template-dl {
    --green: #396;
    --green-dk: #056B38;
    --orange: #f05a2a;
    --orange-dk: #b3467d;
    --white: #fff;
    --black: #333;
    --smoke-white: #f3f3f3;
    --gray-lt: #e2ede8;
    --gray: #eee;
    --gray-dk: #ddd;
    --gray-dk2: #ccc;
    --blue-lt: #323AA2;
    --blue-dk: #192237;
    --yes: #0c0;
    --no: #c00;
    
    input[type="submit"] {
        border-radius: 5px;
        background-color: var(--orange);
        color: var(--white);
        transition: all 0.3s;
        &:hover {
            background-color: var(--gray-lt);
            color: var(--black);
        }
    }

    p:empty {
        display:none !important;
    }

    h1 {
        font-weight: 700 !important;
    }
    h2 {
        color: var(--black) !important;
    }
    h3 {
        font-weight: 700;
        color: var(--black);
        font-size: 28px;
    }

    @keyframes logoslider {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    .cust-logos {
        clear: both;
        .logo-head {
            color: rgba(0, 0, 0, 0.7);
            text-align: center;
            margin-bottom: 10px;
        }
        .logos {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            .logo-slide {
                animation: 30s logoslider infinite linear;
                display: inline-flex;
                height: 50px;
                margin: 0 -2px;
                span {
                    min-height: 100%;
                    margin: 0 25px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    img {
                        width: 100%;
                        filter: invert();
                    }
                }
            }
        }
    }
    .gform_legacy_markup_wrapper .top_label .gfield_label {
        margin-bottom: 0 !important;
    }
    .gform_footer {
        text-align: right;
    }

    .section {
        &.expect {
            margin-top: 80px !important;
            h2 {
                font-weight: 700;
                font-size: 30px;
            }
            p {
                margin: 0 0 5px;
            }
            .features {
                margin-top: 40px;
                .wp-block-column {
                    padding: 30px;
                    background-color: var(--gray);
                    h3 {
                        font-size: 24px !important;
                        line-height: 1.5em;
                    }
                    p {
                        font-size: 1.1em;
                    }
                }
            }
        }
        &.trust {
            padding: 40px 0;
            background-color: var(--gray);
        }
        &.learn-more {
            margin: 40px 0 !important;
            h2 {
                font-weight: 700;
                font-size: 28px;
            }
            .row {
                border-bottom: solid 1px var(--gray);
                h3 {
                    font-weight: 400;
                    font-size: 24px;
                    color: var(--black);
                }
            }
        }
        &.download_banner {
            background: linear-gradient(277.18deg, var(--blue-dk) 0%, var(--blue-lt) 135.45%) !important;
            padding: 10px 0;
            color: var(--white);
            h1, h2 {
                color: var(--white) !important;
            }
            h1 {
                font-size: 40px;
                margin: 0;
            }
            
            .btn {
                display: inline-block;
                margin: 10px 10px 0 0;
                border-radius: 5px;
                background-color: var(--orange);
                color: var(--white) !important;
                text-decoration: none;
                transition: background-color 0.2s;
                font-size: 14px;
                font-weight: bold;
                padding: 8px 18px !important;
                white-space: nowrap;
                box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.2);
        
                &.demo {
                    background-color: var(--smoke-white) !important;
                    color: var(--black) !important;
                }
        
                &:hover {
                    background-color: var(--white) !important;
                    color: var(--black) !important;
                }
            }
            img {
                max-height:300px;
                width: auto !important;
            }
        }
        &.learn {
            position: relative;
            background-color: var(--blue-dk);
            padding: 80px 0 80px 0;
            color: var(--white);
            .learn-left {
                padding-right: 40px;
                h4 {
                    color: rgba(255,255,255,0.4);
                    font-weight: 400 !important;
                    margin-left: 20px !important;
                }
                .use-case {
                    background-color: var(--white);
                    padding: 20px 20px 10px 20px;
                    border-bottom: solid 1px var(--gray);
                    gap: 0;
                    position: relative;
                    h3 {
                        color: var(--green);
                        font-size: 18px;
                        font-weight: 700;
                        padding-bottom: 10px;
                        &::after {
                            content: "❯";
                            position: absolute;
                            top: 20px; right: 20px;
                            transition:all 0.1s;
                        }
                    }
                    p {
                        display:block;
                        overflow: hidden;
                        color: var(--black);
                        max-height: 0;
                        transition: all 0.5s;
                        margin: 0;
                        a {
                            display:block;
                            margin-top: 10px;
                            color: var(--orange) !important;
                            font-weight: 700;
                            font-size: 14px;
                        }
                    }
                    &:hover {
                        padding-bottom: 20px;
                        h3::after {
                            transform: rotate(90deg);
                        }
                        p {
                            max-height: 5000px;
                        }
                    }
                }
            }
            .learn-right {
                padding-left: 40px;
                h3 {
                    color: var(--white);
                    font-size: 24px;
                    line-height: 28px;
                    margin-top: 0 !important;
                    padding-top: 0 !important;
                }
                .exp-blocks {
                    display: flex;
                    flex-direction: row;
                    gap: 20px;
                    .exp {
                        padding-right: 20px;
                        flex-basis: 33%;
                        p {
                            font-size: 14px;
                        }
                        p.sub-head {
                            color: var(--orange);
                            font-weight: 700;
                            font-size: 18px;
                            line-height: 20px;
                        }
                    }
                }
                
            }
            &::before {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 80px;
                background-image: url(../webp/bots.webp);
                background-repeat: no-repeat;
                opacity: 0.5;
                background-size: cover;
            }
        }
        &.features {
            h3 {
                font-size: 18px !important;
            }
            .wp-block-column {
                border: solid 1px var(--gray);
                padding: 20px 20px 0 20px;
                border-radius: 10px;
                &.download {
                    font-size: 18px;
                    padding: 0;
                    a {
                        width: 100%;
                        height: 100%;
                        border-radius: 10px;
                        background-color: var(--orange);
                        color: var(--white) !important;
                        display: block;
                        padding: 20px;
                    }
                }
            }
        }
        &.features2 {
            .wp-block-separator {
                border-top: none !important;
                width: 80%;
                margin-left: 0;
            }
            p {
                width: 90%;
            }
            margin-top: 100px;
            h3 {
                padding-top: 0;
            }
        }
        &.compare {
            padding: 80px 0;
            background-color: var(--gray);
            .wp-block-column {
                display:flex;
                gap: 120px;
                .block-left, .block-right {
                    flex-basis: 50%;
                }
            }
            h2 {
                color: var(--black) !important;
                font-weight: 700;
                text-align: left;
            }
            .controls a.btn {
                padding: 10px 20px;
                border-radius: 5px;
                white-space: nowrap;
                background-color: var(--orange);
                color: var(--white);
                font-weight: 700;
                transition: all 0.3s;
                font-size: 14px;
                &:hover {
                    background-color: var(--white) !important;
                    color: var(--black) !important;
                }
            }
            .table {
                display: flex;
                flex-direction: column;
                gap: 0px;
                .row {
                    display: flex;
                    flex-direction: row;
                    min-height: 50px;
                    gap: 0px;
                    border-bottom: solid 1px var(--gray-dk2);
                    justify-content: center;
                    align-items: center;
                    .feat, .c1, .c2 {
                        padding: 5px 10px 5px 10px;
                    }
                    .feat {
                        width: 50%;
                        font-size: 14px;
                        padding-left: 0;
                    }
                    .c1, .c2 {
                        width: 25%;
                    }
                    .c1 {
                        color: var(--yes);
                        text-align:center;
                        font-size: 20px;
                    }
                    .c2 {
                        color: var(--no);
                        text-align:center;
                        font-size: 20px;
                    }
                    &.h {
                        align-items: flex-end;
                        font-size: 14px;
                        line-height: 16px;
                        font-weight: 700;
                        border-bottom: none;
                        color: var(--black);
                        .feat, .c1, .c2 {
                            color: var(--black);
                            font-size: 14px;
                        }
                    }
                }
            }
        }
        &.faq {
            padding: 80px 0;
            background-color: var(--white);
            p.intro {
                max-width: 50%;
            }
            .controls {
                .btn {
                    background-color: var(--gray);
                    padding: 5px 15px;
                    display: inline-block;
                    text-decoration: none;
                    border-radius: 5px;
                    font-weight: 400;
                    margin-right: 10px;
                    margin-bottom: 10px;
                    color: var(--black);
                    i {
                        margin-right: 10px !important;
                    }
                    &.getting-started {
                        background-color: var(--green) !important;
                        color: var(--white) !important;
                    }
                    &.download {
                        background-color: var(--orange) !important;
                        color: var(--white) !important;
                    }
                }
            }
            .kb-links {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap !important;
                margin-top: 40px;
                .link {
                    flex: 1 0 20%;
                    padding: 20px;
                    background-color: #eee;
                    max-width: 23%;
                    display: flex;
                    flex-direction: column;
                    p {
                        flex: 1;
                    }
                }
            }
        }
        &.download {
            background-color: var(--blue-dk);
            color: var(--smoke-white);
            .btn {
                width: 180px !important;
                display: inline-block;
                margin: 10px 10px 0 0;
                border-radius: 5px;
                background-color: var(--orange);
                color: var(--white) !important;
                text-decoration: none;
                transition: background-color 0.2s;
                font-size: 14px;
                font-weight: bold;
                padding: 8px 18px !important;
                white-space: nowrap;
                box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.2);

                &.demo {
                    background-color: var(--smoke-white) !important;
                    color: var(--black) !important;
                }
        
                &:hover {
                    background-color: var(--white) !important;
                    color: var(--black) !important;
                }
            }
        }
    }
    h3.features { padding-top: 0 !important; }
}

@media screen and (min-width: 1920px) {
    
}
@media screen and (max-width: 1919px) {
    
}
@media screen and (max-width: 1297px) {
    
}
@media screen and (max-width: 1080px) {
    
}
@media screen and (max-width: 768px) {
    #vid-player2 {
        width: 600px !important;
        height: 341px !important;
    }
    .page-template-dl {
        .section {
            &.download_banner {
                .img {
                    display: none;
                }
            }
            &.learn {
                .learn-right {
                    padding:0 10px !important;
                }
            }
            &.compare {
                .compare {
                    flex-direction: column;
                    gap: 20px;
                }
            }
            &.faq {
                .intro {
                    max-width: unset !important;
                }
                .controls {
                    .btn {
                        margin-bottom: 10px;
                    }
                }
                .link {
                    max-width: 46% !important;
                }
            }
        }
    }
}

@media screen and (max-width: 480px) {
    .page-template-dl {
        .section {
            &.learn {
                .exp-blocks {
                    flex-direction: column !important;
                }
            }
            &.faq {
                .link {
                    max-width: 100% !important;
                }
            }
        }
    }
}