body {
    animation: transitionIn 1s;
    -moz-animation: transitionIn 1s;
    -webkit-animation: transitionIn 1s;
    -o-animation: transitionIn 1s;
    /* animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s; */
}


.header {
    overflow: hidden;
    padding: 20px 10px;
    border-bottom: 1px solid #6398E9;

}


.header a {
    float: left;
    color: #FFFFFF;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
    font-weight: 700;
}

.header img {
    border: 0;
    float: left;
    width: 7.5rem;
    height: 5rem;
}


.header a.logo {
    font-size: 25px;
    font-weight: bold;
}


.header a:hover {
    background-color: #ddd;
    color: black;
}


.header a.active {
    background-color: dodgerblue;
    color: white;
}


.header-right {
    float: right;
    text-align: center;
    margin-top: 1.3rem;
}

.product-banner-container {
    height: 550px;
}


.requestbtn {
    border: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.3em;
    color: #3E4098 !important;
    padding: 7px;
    width: 10.2em;
    background-color: #FFFFFF !important;
}


.hrefbtn {
    float: none !important;
    text-align: center !important;
    font-weight: 700;
    font-size: 1.3em;
    color: #3E4098 !important;
}

.requestbtn a:hover {
    background-color: transparent;
}

.schedule-demo-text {
    font-size: 70px;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    letter-spacing: 0px;
    color: #333333
}

.office-text {
    font-size: 18px;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    letter-spacing: 0px;
    color: #333333
}

.office-desc {
    font-size: 18px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: 0px;
    color: #333333
}

.schedbtn {
    border: none;
    background-color: #FFFFFF !important;
    color: #3E4098 !important;
    border-radius: 5px;
    width: 28.5rem;
    height: 4rem;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0px;
}

.card-label {
    font-style: 13px;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    letter-spacing: 1.1px;
    color: #FFFFFF;
}

.product-banner {
    width: 100%;
    height: 100%;
    background-image: url('../imgs/product-header.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.headerText {
    text-align: center;
    color: #ddd;
    padding-top: 2rem;
}

.headerTag {
    text-align: -webkit-center;
    font-size: 70px;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.headerTag-desc {
    text-align: -webkit-center;
    font-size: 17px;
    font-weight: medium;
    font-style: normal;
    font-variant: normal;
    letter-spacing: 0px;
    color: #FFFFFF;

}

.partner-container {
    height: auto;
    background: #E5E5E5;
}

.footer-section {
    margin-top: 15rem;
    width: 100%;
    height: 165px;
    background-image: url('../imgs/product-footer-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-logo {
    margin-top: 1rem;
    width: 8rem;
}

.footer-span {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.card {
    width: 30rem;
    padding: 30px;
    background: #3E4098 !important;
}

.schedbtn {
    width: 23.5rem;
    border: none;
    background-color: #FFFFFF !important;
    color: #3E4098 !important;
    border-radius: 5px;
    height: 4rem;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0px;
}



/* @media (min-width: 2400px) {
    .customize_container {
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px  !important;
    }
} */


@media (max-width: 425px) {
    .header a {
        float: none;
        display: block;
        text-align: left;
    }

    .header-right {
        float: none;
    }

    .card {
        width: 25.5rem;
        padding: 30px;
        background: #3E4098 !important;
    }

    .schedbtn {
        width: 18.5rem;
        border: none;
        background-color: #FFFFFF !important;
        color: #3E4098 !important;
        border-radius: 5px;
        height: 4rem;
        font-style: normal;
        font-weight: bold;
        letter-spacing: 0px;
    }

}


@media screen and (max-width: 500px) {
    .header a {
        float: none;
        display: block;
        text-align: left;
    }

    .header-right {
        float: none;
    }

}


@keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}

@-moz-keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}


@-webkit-keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}


@-o-keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}

/* 
@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {


    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {


    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {


    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
} */
