html {
    height: 100%;
}

body {
    position: relative;
    height: 100%;
    margin-top: 64px;
    Font-family: Helvetica, Arial, "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", sans-serif;
}

p {
    font-size: 1rem;
    color: rgba(48, 69, 92, 0.8);
}

/* Header */

.header {
    background-color: #fefefe;
    width: 100%;
    padding-bottom: 0.5rem;
    padding-top: 0.75rem;
    height: 4rem;
    border-bottom: 1px solid #ededed;
}

.header .left-nav {
    float: left;
    padding-top: 0.5rem;
    cursor: pointer
}

.dropdown-btn {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fefefe;
    min-width: 160px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25); /* #ededed; */
}

.dropdown-content a {
    display: block;
}

.dropdown-btn:hover .dropdown-content {
    display: block;
}

.header .left-nav a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.85rem;
    -webkit-transition: color 1s ease-out;
    -moz-transition: color 1s ease-out;
    -o-transition: color 1s ease-out;
    transition: color 1s ease-out;
}

.header .left-nav a:hover {
    color: #280000;
}

.header .right-nav {
    float: right;
    padding-top: 0.5rem;
    cursor: pointer
}

.header .right-nav a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.85rem;
    -webkit-transition: color 1s ease-out;
    -moz-transition: color 1s ease-out;
    -o-transition: color 1s ease-out;
    transition: color 1s ease-out;
}

.header .right-nav a:hover {
    color: #280000;
}

.header a.logo {
    padding-top: 0.1rem;
    margin-right: 2rem;
    float: left;
    padding-bottom: 0.5rem;
    cursor: pointer
}

.right-nav a.signup-btn {
    background-color: #9d1f20;
    color: #fff !important;
    padding: 0.5rem 1.25rem 0.5rem 1.25rem !important;
    border-radius: 0.75rem;
    font-weight: 600;
    margin-left: 0.75rem;
    cursor: pointer;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.right-nav a.signup-btn:hover {
    background-color: #280000;
}

.nav-redtext {
    color: #9d1f20 !important;
    font-weight: 600;
    -webkit-transition: color 1s ease-out;
    -moz-transition: color 1s ease-out;
    -o-transition: color 1s ease-out;
    transition: color 1s ease-out;
}

.nav-redtext:hover {
    color: #000 !important;
}

.mobile-toggle {
    display: none;
}

.close-nav {
    display: none;
}

a.hide-small {
    display: block;
}

@media screen and (min-width: 992px) {
    .overlay, .overlay nav {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .header {
        flex-direction: column;
    }

    .close-nav {
        position: absolute;
        right: 2rem;
        top: 0.15rem;
        display: block;
        color: #fff;
        font-size: 3rem;
    }

    .overlay-content {
        margin: 0 auto;
        display: block;
        text-align: left;
    }

    a.hide-small {
        display: none !important;
    }

    .right-nav a.signup-btn {
        border-radius: 0;
    }

    .right-nav a.signup-btn:hover {
        background-color: transparent;
    }

    .overlay-content .right-nav, .overlay-content .left-nav {
        float: none;
    }

    .overlay-content .right-nav a, .overlay-content .left-nav a {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        padding: 1rem;
        margin: 0 auto;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .overlay-content .dropdown-btn {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .overlay-content .dropdown-btn a {
        font-weight: 600;
        padding-bottom: 0;
        border: none;
    }

    .overlay-content .dropdown-content a {
        font-weight: normal;
    }

    .overlay-content .dropdown-content {
        display: block;
        position: relative;
        background-color: transparent;
    }

    .mobile-toggle {
        display: block;
        float: right;
        margin-right: 1rem;
        cursor: pointer;
        color: #9d1f20;
        font-size: 2rem;
    }

    #overlay {
        position: fixed;
        display: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(161, 0, 0, 0.95);
        z-index: 2;
        cursor: pointer;
        overflow-y: scroll;
    }

    .adformats-item-side {
        padding-top: 9rem;
        padding-left: 0 !important;
    }

}

/* Footer */

.footer {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #280000;
}

.footer-main {
    background-color: #b72b25;
    border-top: 1px solid #fff;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-header-block {
    width: 100%;
    background-color: #9e0b0f;
    border-top: 1px solid #fff;
}

.footer-copyright {
    float: left;
}

.footer-copyright p, .footer-copyright a {
    font-size: 0.75rem;
    color: #fff;
    padding-top: 1.25rem;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-end-links {
    float: right;
}

.footer-end-links a {
    text-decoration: none;
    color: #fff;
    padding-top: 1.25rem;
    padding-bottom: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.75rem;
    display: inline-block;
}

.footer-end-links a:last-child {
    padding-right: 0;
}

.footer-end-links a:hover, .footer-copyright a:hover {
    text-decoration: underline;
    color: #cfcfcf;
}

.footer-line {
    width: 100%;
    height: 30px;
    background-color: #9e0b0f;
    border-top: 1px solid #fff;
}

.footer-line img {
    float: right;
    margin-top: -1.5rem;
}

.footer-question-block {
    border-right: 1px solid #fff;
    padding: 2rem 1.5rem 1.5rem 0;
}

.footer-question-block p {
    font-size: 0.85rem;
    display: inline;
    padding: 0.5rem 0rem 0.5rem 0;
    color: #fff;
}

.footer-question-block a {
    font-size: 0.85rem;
    display: inline;
    padding: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer-question-block a span {
    padding-left: 0.5rem;
}

.footer-newsletter-block {
    padding: 1.5rem 1rem 1.5rem 0;
}

.footer-newsletter-block form label {
    color: #fff;
    padding: 0.65rem 0 0 1rem;
    font-size: 0.85rem;
}

.footer-newsletter-block form input[type="submit"] {
    padding: 0.5rem;
    border-radius: 1rem;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 0.85rem;
    width: 100%;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.footer-newsletter-block form input[type="submit"]:hover {
    background-color: #280000;
}

.footer-newsletter-block form input[type="input"] {
    padding: 0.5rem 1.5rem 0.5rem 1.5rem !important;
    background-color: transparent !important;
    color: #fff !important;
    border: none !important;
    border-bottom: 1px solid #fff !important;
    font-size: 0.85rem;
    margin-right: 1rem;
    margin-left: 0.5rem;
    width: 90%;
}

.footer-social {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-social a {
    font-size: 1rem;
    color: #fff;
    padding-right: 0.45rem;
}

.footer-social a span {
    color: #fff;
    cursor: pointer;
}

.footer-logo-block {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.footer-logo-block p {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding-top: 0.5rem;
}

.footer-nav-links {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.footer-nav-links p {
    color: #fff;
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 0.45rem;
}

.footer-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
}

.footer-nav-links a:hover {
    color: #e1e1e1;
}

.footer-buttons {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.footer-buttons a.footer-signup {
    font-size: 0.85rem;
    color: #fff;
    padding: 0.5rem 2rem 0.5rem 2rem;
    background-color: #9e0b0f;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    text-decoration: none;
}

.footer-buttons a.footer-signup:hover {
    padding: 0.5rem 2rem 0.5rem 2rem;
    background-color: #280000;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    display: block;
    text-decoration: none;
    text-align: center;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.footer-buttons a.footer-login {
    font-size: 0.85rem;
    color: #fff;
    padding: 0.5rem 2rem 0.5rem 2rem;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    text-decoration: none;
}

.footer-buttons a.footer-login:hover {
    color: #280000;
    padding: 0.5rem 2rem 0.5rem 2rem;
    background-color: #fff;
    border: 1px solid #280000;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    display: block;
    text-decoration: none;
    text-align: center;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

@media screen and (max-width: 992px) {
    .footer-end-links {
        clear: both;
        float: none;
        text-align: center;
        padding-bottom: 1.5rem;
        padding-top: 0;
    }

    .footer-copyright {
        clear: both;
        float: none;
        text-align: center;
        padding-top: 1.5rem;
        padding-bottom: 0;
    }

    .footer-copyright p, .footer-copyright a {
        padding: 0;
    }

    .footer-end-links a {
        margin-right: 0.25rem;
    }

    .footer-line img {
        display: none;
    }

    .footer-question-block {
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: block;
        border: none;
        text-align: center;
        padding: 0;
    }

    .mobile-footer-toggle {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .footer-main {
        padding-top: 0;
    }

    .footer-social {
        margin: 0 auto;
    }

    .footer-social a {
        margin: 0.5rem auto;
    }

    .mobile-footer-toggle a {
        width: 100%;
        border: 1px solid #fff;
        background-color: transparent;
        padding: 1rem 4rem 1rem 4rem;
        border-radius: 1rem;
        cursor: pointer;
        text-align: center;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        color: #fff;
        text-decoration: none;
    }

    .voice-index-block a:nth-child(2) {
        text-align: center;
        margin: 0 auto;
        display: block;
        padding-bottom: 2rem;
        padding-top: 0.5rem;
        max-width: 300px;
    }

    .call-to-action-block p {
        text-align: center;
        display: block !important;
    }

    .advertise-block h1, .monetize-block h1 {
        text-align: center;
        padding-bottom: 2rem;
    }
}

@media screen and (min-width: 992px) {
    .call-to-action-block a {
        margin-left: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .call-to-action-block {
        margin-bottom: 3rem;
    }

    .call-to-action-block p {
        margin-bottom: 2rem;
    }
}

.centerfy {
    margin: 0 auto;
    display: block;
}

.adtiming-red-bg {
    background-color: #9d1f20;
}

.space-left {
    padding-left: 1.25rem;
}

.space-right {
    padding-right: 1.25rem;
}

.businesstype-btn {
    margin: 1rem 1rem 0.5rem 1rem;
    padding: 1rem 5rem;
    border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    border-style: none;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
}

.businesstype-btn:hover {
    background-color: #fff;
    color: #9d1f20;
    text-decoration: none;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.home-videobutton {
    background-color: transparent;
    -moz-border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #ffffff;
    display: inline-block;
    cursor: pointer;
    padding: 1rem 4rem;
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #fff;
}

.home-videobuttonCN {
    background-color: transparent;
    -moz-border-radius: 1rem;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    border: 1px solid #ffffff;
    display: inline-block;
    cursor: pointer;
    padding: 1rem 3rem;
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #fff;
}

.home-videobutton:hover, .home-videobuttonCN:hover {
    background-color: #fff;
    color: #9d1f20;
    text-decoration: none;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.adtiming-dark-bg {
    background-color: #280000;
}

h1.homepage-title {
    color: #fff;
    font-weight: 700;
    padding-top: 4.5rem;
}

p.homebanner-text {
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 200;
}

p.homebanner-textCN {
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 200;
    width: 75%;
}

h1.homepage-slogan {
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

p.white-text {
    color: #fff;
}

a.grey-link {
    color: #ccd3d3;
    text-decoration: underline;
    font-weight: bold;
}

p.grey-text {
    color: #ccd3d3;
}

p.small-print-center {
    font-size: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .homebanner-textCN {
        width: 100% !important;
    }
}

@media screen and (max-width: 992px) and (min-width: 768px) {
    h1.homepage-title {
        color: #fff;
        font-weight: 700;
        padding-top: 1.5rem;
        text-align: center;
    }

    .login-signup-submit {
        width: 93% !important;
    }

    .press-title {
        text-align: center;
    }

    .press-name {
        margin-top: 2.5rem;
        margin-bottom: 0;
        text-align: center;
    }

    .press-text {
        margin-bottom: -0.25rem;
        text-align: center;
    }

    .presskit-dl {
        display: block;
        text-align: center;
    }

    .businesstype-btn {
        padding: 1rem 2rem;
        border-radius: 1rem;
        text-align: center;
    }

    p.homebanner-text {
        color: #fff;
        text-align: center;
    }

    p.homebanner-textCN {
        color: #fff;
        text-align: center;
        width: 100%;
    }

    .home-videobutton, .home-videobuttonCN {
        background-color: transparent;
        -moz-border-radius: 1rem;
        -webkit-border-radius: 1rem;
        border-radius: 1rem;
        border: 1px solid #ffffff;
        cursor: pointer;
        padding: 1rem 1rem;
        text-decoration: none;
        margin-top: 1rem;
        margin-bottom: 2rem;
        margin: 0 auto;
        display: block;
        color: #fff;
        text-align: center;
    }

    .businesstype-btn {
        border-radius: 1rem;
        width: 75%;
    }
}

@media only screen and (max-width: 768px) {
    h1.homepage-title {
        color: #fff;
        font-weight: 700;
        padding-top: 2.5rem;
        text-align: center;
        font-size: 2rem;
    }

    p.homebanner-text {
        color: #fff;
        text-align: center;
    }

    p.homebanner-textCN {
        color: #fff;
        text-align: center;
        width: 90%;
        margin: 0 auto;
        display: block;
        padding-bottom: 1.5rem;
    }

    .press-title {
        text-align: center;
    }

    .press-name {
        margin-top: 2.5rem;
        margin-bottom: 0;
        text-align: center;
    }

    .presskit-dl {
        display: block;
        text-align: center;
    }

    .press-text {
        margin-bottom: -0.25rem;
        text-align: center;
    }

    h1.homepage-slogan {
        font-size: 1.75rem;
    }

    .businesstype-btn {
        padding: 1rem;
        border-radius: 0.75rem;
        -moz-border-radius: 0.75rem;
        -webkit-border-radius: 0.75rem;
        font-size: 1rem;
        width: 100%;
        display: block;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 1.5rem;
    }

    .header a.logo {
        margin-left: 1rem;
    }

    .home-videobutton {
        background-color: transparent;
        -moz-border-radius: 1rem;
        -webkit-border-radius: 1rem;
        border-radius: 1rem;
        border: 1px solid #ffffff;
        cursor: pointer;
        padding: 1rem 1rem;
        text-decoration: none;
        margin-top: 1rem;
        margin-bottom: 2rem;
        margin: 0 auto;
        display: block;
        color: #fff;
        text-align: center;
    }

    .current-footage-side {
        z-index: 98;
        position: relative !important;
        height: auto !important;
        width: 100% !important;
    }

    .phone-container-side {
        padding-bottom: 0 !important;
    }

    .current-footage-side video {
        height: auto !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

}

.close-video {
    margin: 1rem;
    color: #fff;
    float: right;
    background-color: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.close-video span {
    font-size: 2rem;
}

.modal-content.transparent-bg {
    background: transparent;
}

.modal-header.video-header {
    border: none;
}

.go-back-btn {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.go-back-btn a {
    color: #fff;
    text-decoration: none;
}

.go-back-btn a:hover {
    color: rgba(255, 255, 255, 0.5);
    -webkit-transition: color 1s ease-out;
    -moz-transition: color 1s ease-out;
    -o-transition: color 1s ease-out;
    transition: color 1s ease-out;
}

.go-back-btn span {
    font-size: 1.25rem;
    padding-right: 0.5rem;
}

.center-block {
    margin: 0 auto;
    display: block;
}

.form-logo {
    padding-bottom: 2.5rem;
    padding-top: 1.5rem;
}

.login-signup-form {
    margin-left: 1rem;
    margin-right: 1rem;
}

.login-signup-form .form-group {
    margin-bottom: 2rem;
}

.login-signup-form label {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    padding-left: 3.25rem;
}

.login-signup-form input::placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
    font-weight: lighter;
}

.login-signup-form input::-webkit-input-placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
}

.login-signup-form input:-moz-placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
}

.login-signup-form input::-moz-placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
}

.login-signup-form input:-ms-input-placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
}

.login-signup-form input[type="input"], .login-signup-form input[type="email"], .login-signup-form input[type="password"] {
    color: #fff !important;;
}

.login-signup-form input[type="input"], .login-signup-form input[type="email"]:focus, .login-signup-form input[type="password"]:focus {
    color: #280000;
    background-color: #fff;
    border: none;
    box-shadow: none;
}

.login-signup-form .adtiming-form-field {
    border: none !important;
    border-bottom: 1px solid #fff !important;;
    background-color: transparent !important;;
}

.login-signup-submit {
    background-color: #fff;
    color: #9d1f20;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
    width: 90%;
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: none;
    border: none;
    cursor: pointer;
    margin-left: 44px;
}

.login-signup-submit:hover {
    background-color: #750601;
    color: #fff;
    text-decoration: none;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.login-signup-form .input-group-text {
    color: #fff;
    border: none;
    background-color: transparent;
    font-size: 1.25rem;
}

.forgot-block {
    margin-left: 2.25rem;
    margin-top: -1.5rem;
}

.login-signup-form p {
    color: #fff;
    font-size: 0.85rem;
    padding: 0.5rem;
    font-weight: 200;
}

.login-signup-form a, .signup-section a {
    color: #fff;
    text-decoration: underline;
    font-size: 0.85rem;
    padding: 0.5rem;
    cursor: pointer;
    font-weight: 200;
}

.login-signup-form a:hover, .signup-section a:hover {
    color: #ccc;
}

.full-video {
    width: 100%;
    height: auto;
}

#rememberUser {
    margin-top: 0;
    height: 2.5rem;
    width: 2.5rem;
}

.custom-control-label {
    padding-top: 0.25rem;
}

.form-check-label.remembermebox {
    padding-left: 4.5rem;
    padding-top: 0.5rem;
}

.custom-control-label:before {
    background-color: transparent;
    border: 1px solid #fff;
    height: 1.5rem;
    width: 1.5rem;
    margin-left: 2rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #000; /* #3cb878; */
    border: 1px solid #fff;
    height: 1.5rem;
    width: 1.5rem;
    margin-left: 2rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    color: #fff;
    height: 1.5rem;
    width: 1.5rem;
    margin-left: 2rem;
}

.login-signup-pages {
    padding-bottom: 0;
    height: 100%;
    display: table;
    width: 100%;
}

.signup-content {
    display: table;
    width: 50%;
    height: 100%;
    float: left;
}

.hero-image-advertise {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://img.adtiming.com/u/web/www/images/advertise/advertise-banner.gif");
    height: 75%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-image-monetize {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://img.adtiming.com/u/web/www/images/monetize/monetize-banner.gif");
    height: 75%;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-image-about {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("https://img.adtiming.com/u/web/www/images/about/about-adtiming-banner.gif");
    height: 70%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-image-careers {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://img.adtiming.com/u/web/www/images/about/adtiming-careers-banner.gif");
    height: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-image-pressmedia {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("https://img.adtiming.com/u/web/www/images/press-media/press-media-banner.gif");
    height: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 2.5rem;
}

.hero-image-advertise-mobile {
    background-image: url("https://img.adtiming.com/u/web/www/images/advertise/bg-mobile-light.png");
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-image-logowall {
    background-image: url("https://img.adtiming.com/u/web/www/images/homepage/logo-wall-light-01.png");
    width: 85%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-image-advertise-mobileone {
    background-image: url("https://img.adtiming.com/u/web/www/images/advertise/bg-mobile.png");
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-image-advertise-mobiletwo {
    background-image: url("https://img.adtiming.com/u/web/www/images/advertise/bg-mobile-01.png");
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-image-contact {
    background-image: url("https://img.adtiming.com/u/web/www/images/contact/adtiming-contact-us-banner.gif");
    height: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 2.5rem;
}

.hero-image-voice {
    background-image: url("https://img.adtiming.com/u/web/www/images/voice/voice-banner.gif");
    height: 55%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 2.5rem;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.hero-text-about {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-text h1, .hero-text-about h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-image-about .hero-text, .hero-text-about h2 {
    font-size: 1.5rem;
    font-weight: bolder;
}

.hero-image-about .hero-text p {
    font-size: 0.85rem;
    padding: 0.5rem;
    font-weight: normal;
    color: #fefefe;
}

.hero-text p, .hero-text-about p {
    font-size: 1rem;
    color: #fff;
    padding-top: 1rem;
}

.hero-text a:hover {
    background-color: #280000;
}

.hero-text a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    outline: 0;
    display: inline-block;
    padding: 0.85rem 3.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 1rem;
    background-color: #9d1f20;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
    margin-top: 1rem;
}

.hero-text-global {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.hero-text-global h1 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: bold;
}

.hero-text-global p {
    color: #fff;
    font-weight: 200;
    text-align: center;
    font-size: 1.25rem;
}

.press-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.presskit-dl {
    padding-top: 1rem;
    color: #555;
    font-size: 0.85rem;
    text-decoration: underline;
}

.press-text {
    color: #b3b3b3;
    font-weight: 400;
    font-size: 0.85rem;
}

.press-name {
    font-weight: bold;
    font-size: 0.85rem;
    color: #b3b3b3;
}

.press-block {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-block {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.contact-block a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
    color: #280000;
}

.contact-block p {
    font-weight: 200;
}

.img-download-link {
    text-align: center;
    display: block;
    color: #b3b3b3;
    padding-bottom: 2rem;
    padding-top: 1rem;
}

.img-download-link:hover {
    color: #9d1f20;
}

.centered {
    margin: 0 auto;
    display: block;
}

.case-margin-below {
    margin-bottom: 0.5rem;
}

hr.press-divider {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
}

.heading-element {
    padding-top: 2.5rem;
}

.heading-element h1 {
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: bold;
    padding-left: 1rem;
}

.heading-element p {
    color: #b3b3b3;
    margin-bottom: 0;
    padding-left: 1rem;
}

.case-study-brief {
    margin-top: 0;
    margin-bottom: 2rem;
}

.case-study-brief p.company {
    font-size: 0.85rem;
    font-weight: 500;
    color: #b3b3b3;
    padding: 0;
    margin: 0;
}

.light-bg {
    background-color: #f9f9f9;
}

.case-study-brief p.category {
    font-size: 0.85rem;
    font-weight: 200;
    color: #b3b3b3;
    padding: 0;
    margin: 0;
}

.case-study-brief a.study-title {
    color: #280000;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 0.25rem;
}

.press-block img {
    border: 1px solid #ededed;
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.press-block img:hover {
    -ms-transform: scale(1.10, 1.10);
    -webkit-transform: scale(1.10, 1.10);
    transform: scale(1.10, 1.10);
}

.container-fluid-full {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0;
}

.img-full-width {
    max-width: 100%;
    min-width: 100%;
    margin: 0 auto;
    height: auto;
}

.case-contents {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: block;
}

.case-contents p {
    font-weight: 200;
}

.case-contents h3 {
    font-weight: 200;
}

.text-centered {
    text-align: center;
}

.policy-block {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.policy-block h1 {
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 1rem;
    color: #9d1f20;
}

.policy-block h2 {
    font-size: 1rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
    color: #9d1f20;
}

.careers-section {
    margin-bottom: 1rem;
}

.careers-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.careers-section p {
    font-weight: 200;
}

.job-positions h2 {
    font-size: 1.25rem;
    font-weight: 300;
    color: #9d1f20;
    letter-spacing: 0.05rem;
    display: block;
    margin: 0;
    cursor: pointer;
}

.job-positions .job-location {
    float: right;
    margin-right: 2.5rem;
    font-size: 1.25rem;
    font-weight: 200;
}

.job-positions p {
    line-height: 1.5rem;
    position: relative;
    overflow: hidden;
    opacity: 1;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    z-index: 2;
    font-weight: 200;
}

.job-positions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-positions ul li {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 0;
    padding-top: 1.5rem;
    border-top: 1px dotted #dce7eb;
}

.job-positions ul li:last-of-type {
    padding-bottom: 0;
}

.job-positions ul li i {
    position: absolute;
    margin-top: 0.25rem;
    transform: translate(-6px, 0);
    right: 0;
}

.job-positions ul li i:before, .job-positions ul li i:after {
    position: absolute;
    content: '';
    background-color: #9d1f20;
    width: 3px;
    height: 9px;
    transition: all 0.3s ease-in-out;
}

.job-positions ul li i:before {
    transform: translate(-2px, 0) rotate(45deg);
}

.job-positions ul li i:after {
    transform: translate(2px, 0) rotate(-45deg);
}

.job-positions ul li input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

.job-positions ul li input[type=checkbox]:checked ~ p {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
}

.job-positions ul li input[type=checkbox]:checked ~ i:before {
    transform: translate(2px, 0) rotate(45deg);
}

.job-positions ul li input[type=checkbox]:checked ~ i:after {
    transform: translate(-2px, 0) rotate(-45deg);
}

.signup-section p.note {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: #fff;
    margin-left: 0.85rem;
}

.signup-section p.note a {
    color: #ccc;
}

.signup-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-left: 0.85rem;
}

.signup-section p {
    color: #fff;
    font-size: 0.85rem;
}

.signup-section h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 200;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.signup-form {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 2rem;
}

.signup-form .form-group {
    margin-bottom: 2rem;
}

.signup-form label {
    color: #ededed;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    line-height: 1.5rem;
}

.signup-form label a {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: normal;
    margin-bottom: 0.25rem;
    text-decoration: underline;
}

.signup-form input::placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
    font-weight: lighter;
}

.signup-form input::-webkit-input-placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
}

.signup-form input:-moz-placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
}

.signup-form input::-moz-placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
}

.signup-form input:-ms-input-placeholder {
    font-size: 0.75rem;
    color: #fd716b !important;
}

.signup-form input[type="input"], .signup-form input[type="email"], .signup-form input[type="password"] {
    color: #fff !important;
}

.signup-form input[type="input"], .signup-form input[type="email"]:focus, .signup-form input[type="password"]:focus {
    color: #280000;
    background-color: #fff;
    box-shadow: none;
}

.signup-form .adtiming-form-field {
    border: none !important;
    border-bottom: 1px solid #fff !important;
    background-color: transparent !important;
}

.signup-submit {
    background-color: #280000;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.signup-submit:hover {
    background-color: #750601;
    color: #fff;
    text-decoration: none;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.signup-form .input-group-text {
    color: #9d1f20;
    border: none;
    background-color: transparent;
    font-size: 1.25rem;
}

.about-block {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-stats {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-block h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: bold;
}

.about-block p {
    font-weight: 200;
}

.about-stats h3 {
    font-size: 2rem;
    font-weight: 200;
    color: #9d1f20;
    text-align: center;
}

.about-stats p {
    font-size: 0.85rem;
    text-align: center;
}

.adtiming-dark-bg {
    background-color: #280000;
}

.black-bg {
    background-color: #000;
}

.timeline {
    line-height: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.timeline h1, .timeline h2, .timeline h3, .timeline h4, .timeline h5, .timeline h6 {
    line-height: inherit;
    font-weight: bold;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-info {
    font-size: 0.85rem;
    font-weight: 200;
    letter-spacing: 0.15rem;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.timeline-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15px;
}

.timeline-marker:before {
    background: #9d1f20;
    border: 3px solid transparent;
    border-radius: 100%;
    content: "";
    display: block;
    height: 1rem;
    position: absolute;
    top: 9px;
    left: 0;
    width: 1rem;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.timeline-marker:after {
    content: "";
    width: 3px;
    background: #9d1f20;
    display: block;
    position: absolute;
    top: 36px;
    bottom: 0;
    left: 6px;
}

.timeline-item:last-child .timeline-marker:after {
    content: none;
}

.timeline-item:not(.period):hover .timeline-marker:before {
    background: transparent;
    border: 3px solid #9d1f20;
}

.timeline-content {
    padding-bottom: 40px;
    font-weight: 200;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.period {
    padding: 0;
}

.period .timeline-info {
    display: none;
}

.period .timeline-marker:before {
    background: transparent;
    content: "";
    width: 15px;
    height: auto;
    border: none;
    border-radius: 0;
    top: 0;
    bottom: 30px;
    position: absolute;
    border-top: 3px solid #9d1f20;
    border-bottom: 3px solid #9d1f20;
}

.period .timeline-marker:after {
    content: "";
    height: 32px;
    top: auto;
}

.period .timeline-content {
    padding: 40px 0 70px;
}

.period .timeline-title {
    margin: 0;
}

h3.timeline-title {
    font-size: 1.5rem;
}

.marker-outline .timeline-marker:before {
    background: transparent;
    border-color: #FF6B6B;
}

.marker-outline .timeline-item:hover .timeline-marker:before {
    background: #FF6B6B;
}

.awards-section p {
    font-size: 0.85rem;
    color: #000;
    text-align: center;
    font-weight: bold;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.awards-section {
    margin-bottom: 5rem;
}

.awards-section img {
    display: block;
    margin: 0 auto;
    padding-bottom: 1rem;
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.awards-section img:hover {
    -ms-transform: scale(1.15, 1.15);
    -webkit-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15);
}

.awards-section h2 {
    padding-bottom: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.awards-section span {
    font-size: 0.85rem;
    font-weight: 200;
    text-align: center;
}

.advertise-block {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.advertise-block h1, .monetize-block h1, .advertise-block-initial h1 {
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 1rem;
}

.advertise-block-initial h2 {
    font-size: 1.25rem;
    font-weight: bold;
}

.advertise-block p, .monetize-block p, .advertise-block-initial p {
    font-weight: 200;
    padding-bottom: 1rem;
}

.monetize-block {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.ad-formats {
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 100;
}

.ad-formats h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
}

.ad-formats h2 {
    color: #ccc;
    font-size: 1.75rem;
    font-weight: 200;
}

.ad-formats a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    display: block;
    font-weight: 200;
    padding-bottom: 0.5rem;
}

.whiteline {
    background-color: #fff;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.logo-heading {
    margin-top: 5rem;
    margin-bottom: 1rem;
}

.logo-heading-index {
    margin-top: 0;
    margin-bottom: 1rem;
    z-index: 13;
    position: relative;
}

.services-block {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.services-block h1, h1.heading-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
    padding-bottom: 1rem;
}

.services-block p {
    text-align: justify;
    font-weight: 200;
    font-size: 0.95rem;
}

.logo-heading h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 2rem;
}

.grey-bg {
    background-color: #f5f5f5;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.call-to-action-block {
    text-align: center;
    margin-top: 1rem;
}

.call-to-action-block p {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    padding-top: 2.5rem;
    text-align: center;
    display: inline-block;
}

.call-to-action-block a {
    display: inline-block;
    color: #fff;
    padding: 0.5rem 2rem 0.5rem 2rem;
    background-color: #9e0b0f;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

.call-to-action-block a:hover {
    background-color: #fff;
    color: #9d1f20;
    border-radius: 1rem;
    text-decoration: none;
    text-align: center;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.voice-block {
    margin-top: 7rem;
    margin-bottom: 0;
}

.voice-heading h1 {
    font-size: 2.5rem;
    font-weight: bold;
    padding-top: 0.5rem;
}

.voice-heading p {
    font-weight: 200;
}

.voice-heading img {
    margin-top: -1.5rem;
}

.voice-title-block {
    padding-top: 3rem;
    margin-bottom: 2rem;
}

.voice-title-block a {
    color: #a0a0a0;
    font-size: 0.85rem;
    font-weight: 200;
    text-decoration: none;
}

.voice-title-block a:hover {
    color: #280000;
    text-decoration: underline;
}

.voice-title-block h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #280000;
    padding-top: 0.5rem;
}

.voice-title-block h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.voice-title-block a.author-link {
    font-weight: bold;
    color: #000;
    padding-left: 0.5rem;
}

.voice-image-header {
    position: relative;
}

.voice-image-header img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.latest-voice-post {
    background-color: transparent;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.latest-voice-post img {
    margin: 0 auto;
    display: block;
    width: 100%;
}

.latest-voice-post .post-intro {
    top: 50%;
    left: 10%;
    transform: translate(-10%, -50%);
    position: absolute;
    width: 50%;
}

.latest-voice-post .post-intro p.new {
    background-color: #000;
    color: #fff;
    padding: 0.5rem 0.5rem 0.25rem 0.5rem;
    font-size: 0.85rem;
    display: inline-block;
}

.latest-voice-post .post-intro a.read {
    background-color: #fff;
    color: #9d1f20;
    padding: 0.65rem 3.5rem 0.5rem 3.5rem;
    font-size: 0.85rem;
    display: inline-block;
    margin-right: 0.25rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
}

.latest-voice-post .post-intro a.read:hover {
    background-color: #000;
    color: #fff;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.latest-voice-post .post-intro h1.heading {
    text-align: left;
    color: #000;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 3.5rem;
}

.latest-voice-post .post-intro h1.heading span {
    display: inline;
    background: #fff;
    color: #000;
    padding: 0.75rem 0.5rem 0.5rem 0.5rem;
    -webkit-box-decoration-break: clone;
    -ms-box-decoration-break: clone;
    -o-box-decoration-break: clone;
    box-decoration-break: clone;
}

.latest-voice-post .post-intro h1.heading span a {
    color: #000;
    text-decoration: none;
}

.latest-voice-post .post-intro h1 a:hover {
    color: #9d1f20;
}

.latest-voice-post .post-intro h2 {
    text-align: left;
    color: #000;
    white-space: pre-wrap;
    font-size: 1rem;
    line-height: 1.75rem;
    margin-top: 1rem;
}

.latest-voice-post .post-intro h2 span {
    display: inline;
    background: #9d1f20;
    color: #fff;
    padding: 0.75rem 0.5rem 0.5rem 0.5rem;
    -webkit-box-decoration-break: clone;
    -ms-box-decoration-break: clone;
    -o-box-decoration-break: clone;
    box-decoration-break: clone;
}

@media (max-width: 576px) {
    .logo-heading img {
        margin: 0 auto;
        display: block;
        width: 100%;
        height: auto;
        padding: 0.5rem;
        margin: 0.25rem;
    }

    .hero-image-careers .hero-text h1, .hero-image-careers .hero-text p, .hero-image-careers .hero-text a {
        display: none;
    }

    .logo-heading .col-sm-1, .col-sm-2 {
        width: 25%;
        display: block;
        position: relative;
    }

    .login-signup-submit {
        background-color: #fff;
        color: #9d1f20;
        text-align: center;
        margin-bottom: 1rem;
        display: block;
        width: 86%;
        padding: 0.75rem;
        border-radius: 1rem;
        box-shadow: none;
        border: none;
        cursor: pointer;
        margin-left: 44px;
    }

    .row .phone-block div.col-lg-8 {
        margin-bottom: 2rem;
    }

    .phone-block h1, .phone-block p {
        text-align: center;
    }

    .adformats-item {
        padding-left: 0 !important;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .adformats-item-side {
        padding-top: 10rem;
        padding-bottom: 2rem;
        padding-left: 0 !important;
    }

    .phone-block {
        padding-bottom: 2rem !important;
    }

}

.press-border {
    border-left: 1px solid #ccc;
}

.nav-pills .nav-link {
    font-size: 1.25rem;
    color: #000;
    font-weight: 200;
}

.nav-pills .nav-link:hover {
    color: #ccc;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #9d1f20;
    background-color: transparent;
    font-weight: bold;
}

.tab-pane {
    padding-left: 2rem;
}

.media-body p {
    font-size: 0.85rem;
    margin-top: -0.15rem;
}

.article-link {
    font-size: 0.75rem !important;
    margin-top: -0.5rem !important;
}

.media-body h5 a {
    color: #000;
}

.media-body h5 a:hover {
    color: #9d1f20;
    text-decoration: none;
}

.press-release-content {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.press-release-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 1rem;
}

.press-date-block {
    font-size: 0.85rem;
    color: #999;
}

.press-release-body h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.all-items-link {
    float: right;
    display: block;
    margin-top: -3rem;
    color: #000;
    text-decoration: none;
    font-weight: 200;
}

.mobile-image-voice img {
    display: none;
}

@media all and (max-width: 992px) {
    .custom-indicators {
        margin: 0 auto;
        display: block;
        text-align: center;
        padding-bottom: 2rem;
    }

    .phone-container {
        padding-top: 30rem;
        padding-bottom: 5rem;
    }

    .phone-container-side {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .reel-arrows {
        margin: 0 auto;
        text-align: center;
        display: block;
    }

    button.reel-nextprev {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    button.reel-nextprev:hover {
        color: #280000;
    }

    button.reel-indicator {
        color: #fff;
        font-size: 0.85rem !important;
        font-weight: 200;
        display: inline-block !important;
    }

    .ad-formats {
        text-align: center;
        padding-bottom: 1rem;
    }
}

@media all and (max-width: 789px) {
    .all-items-link {
        float: none;
        margin-top: 0;
        display: block;
        text-align: center;
        margin-bottom: 1.5rem;
        font-weight: bold;
    }

    .voice-header-block img {
        margin: 0 auto;
        display: block;
    }

    .voice-header-block h1, .voice-header-block p, .voice-header-block a {
        text-align: center;
    }

    .media img {
        display: none;
    }

    .related-content-block h5 {
        text-align: center;
    }

    .related-content-block p {
        text-align: center;
    }

    .related-content-block img {
        padding-bottom: 1rem;
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .phone-container-side {
        height: 0 !important;
    }

    .mobile-image-voice img {
        display: block;
        margin: 0 auto;
        width: 100%;
        height: auto;
        padding-bottom: 1rem;
    }

    .case-study-brief {
        text-align: center;
    }

    .section-title {
        text-align: center;
    }

    .services-block img {
        margin: 0 auto;
        display: block;
    }

    .services-block h1 {
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .services-block p {
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .ad-formats {
        text-align: center;
    }

    .ad-formats a:last-child {
        margin-bottom: 1.5rem;
    }

    .voice-heading img {
        margin: 0 auto;
        display: block;
    }

    .voice-heading h1, .voice-heading p {
        text-align: center;
    }

    .advertise-block {
        text-align: center;
    }

    .contact-block, .advertise-block h1, .advertise-block p, .monetize-block h1, .monetize-block p {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .signup-section {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        text-align: center;
    }

    .monetize-block {
        text-align: center;
    }

    .call-to-action-block {
        text-align: center;
    }

    .press-block span {
        text-align: center;
        display: block;
    }

    .img-download-link {
        padding-bottom: 1rem;
        padding-top: 0.5rem;
    }

    .nav-pills {
        margin-bottom: 2rem;
    }

    #v-pills-tabContent img {
        display: none;
    }

    #v-pills-tab a {
        margin-left: 1rem;
    }

    #v-pills-tab a:first-child {
        margin-bottom: 1.5rem;
    }

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        border-bottom: 1px solid #9d1f20;
        width: 50%;
    }

    .heading-element h1 {
        text-align: center;
    }

    .heading-element p {
        text-align: center;
    }

    .about-block, .careers-section {
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .job-positions span {
        display: none;
    }

    .latest-voice-post .post-intro {
        position: relative;
        width: 100%;
        display: block;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }

    .latest-voice-post .post-intro p.new {
        display: none;
    }

    .latest-voice-post img {
        padding-bottom: 1rem;
    }

    .latest-voice-post .post-intro h1.heading, .latest-voice-post .post-intro h1.heading span {
        font-size: 1.5rem;
        background-color: transparent;
        line-height: normal;
        padding: 0;
    }

    .latest-voice-post .post-intro h2 span {
        background-color: transparent;
        color: #c0c0c0;
        font-weight: normal;
        line-height: normal;
    }

    .latest-voice-post .post-intro a.read {
        background-color: #9d1f20;
        color: #fff;
        width: 100%;
        text-align: center;
    }

    .voice-all-titles {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-text h1, .hero-text-about h1 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .hero-image-about .hero-text, .hero-text-about h2, .hero-text h2 {
        font-size: 1rem;
        font-weight: bolder;
    }

    .hero-image-about .hero-text p {
        font-size: 0.85rem;
        padding: 0.5rem;
        font-weight: normal;
        color: #fefefe;
        font-weight: 200;
    }

    .hero-text p, .hero-text-about p {
        font-size: 0.85rem;
        color: #fff;
        padding-top: 1rem;
        font-weight: 200;
    }

    .voice-title-block h1 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #280000;
    }

    .voice-title-block h2 {
        font-size: 1rem;
        font-weight: 400;
    }

    .hero-text-global {
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-text-global h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .in-the-press img {
        display: none;
    }

}

.all-items-link:hover {
    color: #9d1f20;
    text-decoration: none;
}

.contact-block .form-control::placeholder {
    color: #ccc;
    opacity: 1;
    font-size: 0.85rem;
}

.contact-btn {
    padding: 1rem 5rem 1rem 5rem;
    color: #fff;
    background-color: #9d1f20;
    border: 0;
    margin-top: 1rem;
    cursor: pointer;
    width: 100%;
    border-radius: 1rem;
}

.contact-btn:hover {
    background-color: #280000;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.voice-header-block {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.voice-header-block h1 {
    font-size: 2.5rem;
    color: #000;
    font-weight: bold;
}

.voice-breadcrumbs {
    font-size: 0.85rem;
}

.voice-breadcrumbs a {
    color: #9d1f20;
}

.event-synopsis a {
    font-size: 1rem;
    color: #000;
    font-weight: bold;
    margin-top: 1rem;
}

.event-synopsis img {
    padding-bottom: 1rem;
}

.event-synopsis p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.event-synopsis p.blurb {
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.event-synopsis p.date-location {
    font-weight: 200;
}

.event-synopsis-detail {
    padding-left: 0;
    font-size: 1rem;
}

.event-synopsis {
    margin-bottom: 2rem;
}

.row-scroll {
    overflow: scroll;
    width: 100%;
    margin-bottom: 3rem;
}

.row_inner {
    transition: 450ms -webkit-transform;
    transition: 450ms transform;
    transition: 450ms transform, 450ms -webkit-transform;
    margin: 1rem;
    margin-left: 2.5rem;
    margin-bottom: 3rem;
}

.post-block {
    position: relative;
    display: table-cell;
    width: 300px;
    height: 200px;
    padding-right: 0.5rem;
    cursor: pointer;
    transition: 450ms all;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.post-block-details {
    width: 300px;
    height: auto;
}

.post-block-details a {
    font-size: 0.85rem;
    color: #000;
    display: block;
    font-weight: 200;
    padding: 0.25rem;

}

.post-thumbnail {
    width: 300px;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.row_inner:hover .post-block {
    opacity: 0.3;
}

.row_inner:hover .post-block:hover {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    opacity: 1;
}

.voice-all-titles {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.event-synopsis h2 a {
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

p.new-post-btn {
    color: #fff;
    padding: 0.25rem 1rem 0.25rem 1rem;
    background-color: #9d1f20;
    display: inline;
    font-size: 0.65rem;
    border-radius: 0.5rem;
}

.insights-synopsis p {
    font-size: 0.85rem;
    font-weight: 200;
    margin-bottom: 0.5rem;
}

.insights-synopsis h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000;
}

.insights-synopsis a {
    text-decoration: none;
}

.popular-links-nav {
    display: block;
    padding: 1.5rem;
}

.popular-links-nav a {
    display: block;
    padding-bottom: 0.5rem;
    color: #000;
}

.media {
    margin-bottom: 2rem;
}

.service-item p, .service-item-monetization p {
    font-weight: 200;
}

.service-item-monetization h1 {
    font-weight: bold;
    font-size: 1.25rem;
}

.service-item-monetization, .service-item-light {
    padding-bottom: 2rem;
}

.service-item-monetization img, .service-item-light {
    margin-bottom: 0.5rem;
}

.service-item-light p {
    color: #fff;
    font-weight: 200;
}

.service-item-light h1 {
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-wall {
    padding-bottom: 5rem;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.logo-wall img {
    padding: 0.5rem 0.5rem 0.5rem;
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.logo-wall img:hover {
    -ms-transform: scale(1.15, 1.15);
    -webkit-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15);
}

.voice-index-block img {
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.voice-index-block img:hover {
    -ms-transform: scale(1.08, 1.08);
    -webkit-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
}

.voice-index-block a {
    color: #000;
    font-weight: 200;
    font-size: 0.85rem;
}

.voice-index-block a:nth-child(2) {
    padding-top: 0.5rem;
    display: block;
    text-align: left;
}

.voice-index-block a:hover {
    color: #9d1f20;
    text-decoration: none;
}

.case-study-brief img {
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    margin-bottom: 0.5rem;
}

.case-study-brief img:hover {
    -ms-transform: scale(1.08, 1.08);
    -webkit-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
}

.services-block img {
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.services-block img:hover {
    -ms-transform: scale(1.08, 1.08);
    -webkit-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
}

.voice-image-text {
    width: 70%;
    margin: 0 auto;
    display: block;
}

.voice-image-tag {
    margin-top: -2rem !important;
    width: 75%;
    margin: 0 auto;
    display: block;
}

.voice-image-text p, .voice-image-tag p {
    color: #c3c3c3;
    font-weight: 200;
    font-size: 0.75rem;
    text-align: center;
    padding-top: 0.25rem;
}

.voice-content {
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.voice-content p {
    font-weight: 200;
    line-height: 1.65rem;
}

.voice-content i {
    color: #000;
    font-weight: 300;
}

.voice-content a {
    color: #9d1f20;
    font-weight: 300;
    text-decoration: none;
}

.voice-content a:hover {
    text-decoration: underline;
}

.voice-content img {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.voice-content h2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-weight: 200;
}

.voice-divider {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.related-content-block {
    margin-bottom: 5rem;
}

.related-content-block h3 {
    text-align: center;
    color: #000;
    font-weight: 200;
    padding-bottom: 1rem;
    font-size: 1.5rem;
}

.media img {
    width: 90%;
    height: auto;
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.media img:hover {
    -ms-transform: scale(1.08, 1.08);
    -webkit-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
}

.related-content-block img {
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.related-content-block img:hover {
    -ms-transform: scale(1.08, 1.08);
    -webkit-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
}

.related-content-block h5 {
    font-size: 1rem;
    font-weight: 200;
}

.related-content-block p {
    font-size: 0.85rem;
    font-weight: 200;
}

.related-item {
    padding-bottom: 2rem;
}

.related-content-block a {
    color: #000;
}

.related-content-block img {
    padding-bottom: 1rem;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(184, 40, 32, 0.95);
}

/* Overlay closing cross */
.overlay .overlay-close {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 20px;
    top: 20px;
    overflow: hidden;
    border: none;
    background: url(/images/cross.png) no-repeat center center;
    text-indent: 200%;
    color: transparent;
    outline: none;
    z-index: 100;
}

/* Menu style */
.overlay nav {
    text-align: center;
    position: relative;
    top: 25%;
    height: 60%;
    font-size: 54px;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
}

.overlay ul li {
    display: block;
    height: auto;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.overlay ul li a {
    font-weight: bold;
    display: block;
    color: #fff;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    font-size: 1rem;
}

.overlay ul li:hover,
.overlay ul li a:hover,
.overlay ul li a:focus {
    color: #ccc;
    background-color: #280000;
    text-decoration: none;
}

/* Effects */
.overlay-hugeinc {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
    z-index: 998;
}

.overlay-hugeinc.open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    overflow-y: scroll;
}

.overlay-hugeinc nav {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.overlay-hugeinc nav ul {
    opacity: 0.4;
    -webkit-transform: translateY(-25%) rotateX(35deg);
    transform: translateY(-25%) rotateX(35deg);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
    -webkit-transform: translateY(25%) rotateX(-35deg);
    transform: translateY(25%) rotateX(-35deg);
}

@media screen and (max-height: 30.5em) {
    .overlay nav {
        height: 70%;
        font-size: 34px;
    }

    .overlay ul li {
        min-height: 34px;
    }
}

.global-outreach {
    background-color: #5d090c;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.scan-text {
    background-color: #fff;
    color: #000;
    font-weight: 200;
    text-align: center;
    font-size: 0.85rem;
    padding: 1rem;
}

.press-block span {
    text-align: center;
}

.voice-synopsis a {
    color: #000;
    font-weight: 200;
    text-decoration: none;
    font-size: 1rem;
}

.voice-synopsis a:hover {
    text-decoration: underline;
}

.voice-synopsis img {
    padding-bottom: 0.5rem;
}

.voice-theme-block {
    margin-bottom: 3rem;
}

.adformats-item, .adformats-item-side {
    padding-left: 2rem;
}

.adformats-item h1, .adformats-item-side h1 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
}

.adformats-item p, .adformats-item-side p {
    font-size: 1rem;
    font-weight: 200;
    color: #fff;
}

.break {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.carousel-indicators-advertise {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

ol.carousel-indicators-advertise {
    display: block;
    top: 55%;
    position: absolute;
    left: 0;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

ol.carousel-indicators-advertise li {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 200;
    cursor: pointer;
}

ol.carousel-indicators-advertise li.active-advertise-item {
    font-weight: bold;
}

.carousel-control-advertise {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}

.global-outreach img {
    width: 100%;
    height: auto;
}

.custom-indicators button {
    display: block;
}

.partner-logo-heading h1 {
    font-size: 1.5rem;
    font-weight: 200;
    color: #ccc;
    text-align: center;
    padding-top: 7rem;
    padding-bottom: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.logo-reel {
    height: 150px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 6.5rem;
}

.logo-reel img {
    padding: 1rem 1rem 1rem 10rem;
    height: 150px;
    width: auto;
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.logo-reel img:hover {
    -ms-transform: scale(1.15, 1.15);
    -webkit-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15);
}

button.reel-nextprev {
    font-size: 2rem;
    padding: 1rem;
    color: #fff;
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

button.reel-nextprev:hover {
    color: #280000;
}

button.reel-indicator {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 200;
    padding-top: 0.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

button.reel-indicator:hover {
    color: #ccc;
    -webkit-transition: all ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.activeAdFormat {
    font-weight: bold !important;
}

.initiate {
    -webkit-animation: reelslider 50s linear infinite;
    -moz-animation: reelslider 50s linear infinite;
    -ms-animation: reelslider 50s linear infinite;
    -o-animation: reelslider 50s linear infinite;
    animation: reelslider 50s linear infinite;
}

@keyframes reelslider {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -3750px;
    }

}

@-moz-keyframes reelslider {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -3750px;
    }

}

@-webkit-keyframes reelslider {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -3750px;
    }

}

@-ms-keyframes reelslider {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -3750px;
    }

}

@-o-keyframes reelslider {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -3750px;
    }

}

.dot-pattern {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: transparent url(../images/advertise/pattern.png) repeat top left;
}

.phone-block {
    padding-bottom: 10rem;
    padding-top: 1rem;
}

img.app-icon {
    border-radius: 5px;
}

.forgot-password-block {
    margin-top: 5rem;
}

.forgot-password-block h1 {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}

.forgot-password-block p {
    text-align: center;
    font-weight: 200;
}

.reset-password-btn {
    background-color: #9d1f20;
    padding: 0.5rem 2rem 0.5rem 2rem;
    border-radius: 5px;
    border: none;
    color: #fff;
    cursor: pointer;
    -webkit-transition: background-color ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}

.reset-password-btn:hover {
    background-color: #280000;
}

.four-o-four {
    margin-top: 3rem;
}

.four-o-four h1 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    color: #9d1f20;
}

.four-o-four p {
    font-weight: 200;
    color: #9d1f20;
    text-align: center;
    font-size: 1.3rem
}

button:focus {
    outline: 0;
}

.logo-wall-wrap {
    height: auto;
    width: 100%;
    position: relative;
}

.logo-wall-bg {
    position: relative;
    z-index: 11;
    width: 100%;
    height: auto;
}

.logo-animation {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 50%;
}

.phone-container, .phone-container-side {
    width: 100%;
    height: auto;
}

img.frame {
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.current-footage {
    z-index: 98;
    position: absolute;
    height: 557px;
    width: 267px;
    overflow: hidden;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.current-footage-side {
    z-index: 98;
    position: absolute;
    height: 260px;
    width: 572px;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phone-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.dotting {
    display: inline-block;
    min-width: 2px;
    min-height: 2px;
    box-shadow: 2px 0 currentColor, 6px 0 currentColor, 10px 0 currentColor;
    -webkit-animation: dot 1s infinite step-start both;
    animation: dot 1s infinite step-start both;
    *zoom: expression(this.innerHTML = '......'); /* IE7 */
}

.dotting:before {
    content: '......';
}

/* IE8 */
.dotting::before {
    content: '';
}

:root .dotting {
    margin-right: 8px;
}

/* IE9+,FF,CH,OP,SF */

@-webkit-keyframes dot {
    25% {
        box-shadow: none;
    }
    50% {
        box-shadow: 2px 0 currentColor;
    }
    75% {
        box-shadow: 2px 0 currentColor, 6px 0 currentColor;
    }
}

@keyframes dot {
    25% {
        box-shadow: none;
    }
    50% {
        box-shadow: 2px 0 currentColor;
    }
    75% {
        box-shadow: 2px 0 currentColor, 6px 0 currentColor;
    }
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed !important;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

/*.g-recaptcha {transform:scale(0.9);-webkit-transform:scale(0.9);transform-origin:0 0;-webkit-transform-origin:0 0;}*/

.rc-anchor-checkbox-label-new {
    font-size: 16px !important;
}

.invalidField {
    -webkit-box-shadow: 0 0 5px rgba(255, 0, 0, .3) !important;
    -moz-box-shadow: 0 0 5px rgba(255, 0, 0, .3) !important;
    box-shadow: 0 0 5px rgba(255, 0, 0, .3) !important;
    border: 1px solid red !important
}

/*jquery分页插件end*/
.jPaginate{
    height:34px;
    position:relative;
    color:#a5a5a5;
    font-size:15px;
    width:100%;
}
.jPaginate a{
    line-height:15px;
    height:18px;
    cursor:pointer;
    padding:2px 5px;
    margin:2px;
    float:left;
}
.jPag-control-back{
    position:absolute;
    left:0px;
}
.jPag-control-front{
    position:absolute;
    top:0px;
}
.jPaginate span{
    cursor:pointer;
}
ul.jPag-pages{
    float:left;
    list-style-type:none;
    margin:0px 0px 0px 0px;
    padding:0px;
}
ul.jPag-pages li{
    display:inline;
    float:left;
    padding:0px;
    margin:0px;
}
ul.jPag-pages li a{
    float:left;
    padding:2px 5px;
}
span.jPag-current{
    cursor:default;
    font-weight:normal;
    line-height:15px;
    height:18px;
    padding:2px 5px;
    margin:2px;
    float:left;
    cursor: pointer;
}
ul.jPag-pages li span.jPag-previous,
ul.jPag-pages li span.jPag-next,
span.jPag-sprevious,
span.jPag-snext,
ul.jPag-pages li span.jPag-previous-img,
ul.jPag-pages li span.jPag-next-img,
span.jPag-sprevious-img,
span.jPag-snext-img{
    height:22px;
    margin:2px;
    float:left;
    line-height:18px;
}

ul.jPag-pages li span.jPag-previous,
ul.jPag-pages li span.jPag-previous-img{
    margin:2px 0px 2px 2px;
    font-size:12px;
    font-weight:bold;
    width:10px;

}
ul.jPag-pages li span.jPag-next,
ul.jPag-pages li span.jPag-next-img{
    margin:2px 2px 2px 0px;
    font-size:12px;
    font-weight:bold;
    width:10px;
}
span.jPag-sprevious,
span.jPag-sprevious-img{
    margin:2px 0px 2px 2px;
    font-size:18px;
    width:15px;
    text-align:right;
}
span.jPag-snext,
span.jPag-snext-img{
    margin:2px 2px 2px 0px;
    font-size:18px;
    width:15px;
    text-align:right;
}
/*ul.jPag-pages li span.jPag-previous-img{*/
    /*background:transparent url(../images/previous.png) no-repeat center right;*/
/*}*/
/*ul.jPag-pages li span.jPag-next-img{*/
    /*background:transparent url(../images/next.png) no-repeat center left;*/
/*}*/
/*span.jPag-sprevious-img{*/
    /*background:transparent url(../images/sprevious.png) no-repeat center right;*/
/*}*/
/*span.jPag-snext-img{*/
    /*background:transparent url(../images/snext.png) no-repeat center left;*/
/*}*/
/*jquery分页插件end*/
