/***********************************************
*                                              *
*               font importing                 *
*                                              *
***********************************************/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,600");

@font-face {
    font-family: "Gotham";
    font-style: normal;
    font-weight: 300;
    src: url("../otf/gotham-light.otf") format("opentype");
}

@font-face {
    font-family: "Gotham";
    font-style: normal;
    font-weight: 400;
    src: url("../otf/gotham-medium.otf") format("opentype");
}

@font-face {
    font-family: "Gotham";
    font-style: normal;
    font-weight: 500;
    src: url("../otf/gotham-bold.otf") format("opentype");
}

/***********************************************
*                                              *
*            Bootstrap issues fix              *
*                                              *
***********************************************/

/* fix modal scolling. see http://stackoverflow.com/questions/21024774/twitter-bootstrap-3-modal-on-mobile-scroll-issues */
.modal {
    overflow-y: scroll;
}
/***********************************************
*                                              *
*               General styling                *
*                                              *
***********************************************/

body {
    font-family: Gotham, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    --menu-font-size: 1rem;
    --vertical-spacing: 2.5rem;
    --border-radius: var(--borderRadius-extra-small);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 400;
}

.inner-page {
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
img {
    display: block;
    height: auto;
    max-width: 100%;
}
.btn {
    font-weight: 300;
    padding: 8px 18px;
}
.has-feedback {
    position: static;
}

/* modal video */
.video .modal-dialog {
    width: 80%;
}
.video .modal-content {
    background: none;
    border: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.video .modal-body {
    margin-top: 50px;
}
.video .modal-header {
    padding: 25px 25px 15px 25px;
    text-align: right;
}
.video .modal-header,
#videoModal .modal-footer {
    border: 0;
    background: none;
}
.video .close {
    position: fixed;
    top: 20px;
    right: 20px;
    float: none;
    margin: 0;
    font-size: 36px;
    color: #fff;
    font-weight: 300;
    text-shadow: none;
    opacity: 1;
    z-index: 9999;
}


/* mobile nav animation */

.btn.active,
.btn:active {
    box-shadow: none;
}
.btn.focus,
.btn:focus,
.btn:hover {
    text-decoration: none;
}

h1,
.h1 {
    font-size: 38px;
    margin: 1em;
    font-weight: 300;
    text-align: center;
}

.form-control {
    display: block;
    width: 100%;
    padding-left: 12px;
    height: 50px;
    font-size: 1.4em;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    background-image: none;
    border-radius: var(--border-radius);
    box-shadow: none;
    transition: 0.5s;
    border: 1px solid #d6d6d6;
}
a {
    font-weight: 400;
    color: var(--product-camstreamer-color);
    text-decoration: none;
    transition: 0.2s;
}
a:hover {
    color: var(--product-camoverlay-color);
    text-decoration: none;
    transition: 0.2s;
}
/***********************************************
*                                              *
*          general styling of web              *
*                                              *
***********************************************/

h3 {
    font-weight: 400;
    font-size: 1.3rem;
}
.text-weight-300,
.font-weight-300,
.font-weight-thin {
    font-weight: 300 !important;
}
.text-weight-400,
.font-weight-400,
.font-weight-normal {
    font-weight: 400 !important;
}
.text-weight-500,
.font-weight-500,
.font-weight-bolder {
    font-weight: 500 !important;
}
.text-underline, .text-underline:hover{
    text-decoration: underline;
}
.line-height-2rem {
    line-height: 2rem;
}
.text {
    padding: 0 10px;
    text-align: center;
    font-weight: 300;
    font-size: 1.2em;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}

.bg-dotted {
    background-image: url("../png/bg-dotted.png");
    background-repeat: repeat;
}
.bg-blue-gradient-right {
    background-image: linear-gradient(to right, #3266a4, #294f7d);
}
.bg-blue-gradient-down {
    background: linear-gradient(
        to bottom,
        #163550 50%,
        #467aa8 70%,
        #163550 90%
    );
}
.bg-blue-gradient-down-2-colors-only {
    background: linear-gradient(to bottom, #163550, #467aa8);
}
.bg-gray-gradient-down {
    background-image: linear-gradient(
        to bottom,
        #4b5b6a 50%,
        #8b9baa 70%,
        #4b5b6a 90%
    );
}
.bg-gray-gradient-down-2-colors-only {
    background-image: linear-gradient(to bottom, #4b5b6a, #8b9baa);
}

.bg-cloud-gradient-down {
    background-image: linear-gradient(
        to bottom,
        #00778f 30%,
        #00c8f4 60%,
        #00778f 90%
    );
}
.bg-cloud-gradient-down-2-colors {
    background-image: linear-gradient(to bottom, #00778f, #00c8f4);
}
.bg-cs-gradient-down {
    background-image: linear-gradient(
        to bottom,
        #0e4273 30%,
        #3e86c5 60%,
        #0e4273 90%
    );
}
.bg-cs-gradient-down-2-colors {
    background-image: linear-gradient(to bottom, #0e4273, #3e86c5);
}
.bg-co-gradient-down {
    background-image: linear-gradient(
        to bottom,
        #b58934 30%,
        #ffb934 60%,
        #b58934 90%
    );
}
.bg-csw-gradient-down {
    background-image: linear-gradient(
        to bottom,
        #33255c 30%,
        #72649b 60%,
        #33255c 90%
    );
}
.bg-csc-gradient-down {
    background-image: linear-gradient(
        to bottom,
        #10676b 30%,
        #10b8c3 60%,
        #10676b 90%
    );
}
.bg-ndi-gradient-down {
    background-image: linear-gradient(
        to bottom,
        #111111 30%,
        #646464 60%,
        #111111 90%
    );
}
.text-co-about-page {
    color: #ffb934;
}
.co-flare {
    box-shadow: 0 0 60px #ffb934 !important;
}
.csw-flare {
    box-shadow: 0 0 60px #7670ae !important;
}
.csc-flare {
    box-shadow: 0 0 60px #13a6bd !important;
}
.cs-flare {
    box-shadow: 0 0 60px #3e86c5 !important;
}
.cloud-flare {
    box-shadow: 0 0 60px #00d7fc !important;
}
.ndi-flare {
    box-shadow: 0 0 60px #646464 !important;
}

.bg-gray {
    background-color: #f7f7f7;
}
.bg-dark-gray {
    color: #9b9b9b;
    background-color: #2e2e2e;
}

.bg-dark-gray-gradient-right {
    background-image: linear-gradient(to right, #525151, #292929);
}
.bg-dark-red-gradient-right {
    background-image: linear-gradient(to right, #771424, #511e14);
}
.bg-white {
    color: #000;
    background-color: #fff;
}

.btn-white,
.btn-white:visited,
.btn-white:focus {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    transition: 0.2s;
}
.btn-white:hover,
.btn-white:active {
    color: #000;
    background: #fff;
    transition: 0.2s;
    transform: translate(0px, -2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.btn-white2 {
    color: #000;
    background-color: #fff;
    transition: 0.2s;
}
.btn-white-outline2,
.btn-white-outline2:visited,
.btn-white-outline2:focus {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    transition: 0.2s;
}
.btn-white-outline2:hover,
.btn-white-outline2:active {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
    transition: 0.2s;
}
.btn-default {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.125);
}

.btn-default:hover,
.btn-default:visited,
.btn-default:active,
.btn-default:focus {
    transition: 0.2s;
    color: #000;
    border-color: #fff;
    transform: translate(0px, -2px);
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.btn-blue:hover,
.btn-blue:visited,
.btn-blue:focus,
.btn-blue:visited,
.btn-blue:active,
.btn-blue:focus,
.btn-dark-red:hover,
.btn-dark-red:visited,
.btn-dark-red:focus,
.btn-dark-red:visited,
.btn-dark-red:active,
.btn-dark-red:focus,
.btn-purple:hover,
.btn-purple:visited,
.btn-purple:focus,
.btn-purple:visited,
.btn-purple:active,
.btn-purple:focus,
.btn-orange:hover,
.btn-orange:visited,
.btn-orange:focus,
.btn-orange:visited,
.btn-orange:active,
.btn-orange:focus,
.btn-light-blue:hover,
.btn-light-blue:visited,
.btn-light-blue:focus,
.btn-light-blue:visited,
.btn-light-blue:active,
.btn-light-blue:focus {
    transition: 0.2s;
    transform: translate(0px, -2px);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.btn-cameras {
    width: 100%;
    padding: 15px 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    color: #fff;
    background-color: var(--product-camstreamer-color);
    transition: 0.2s;
}
.btn-cameras:hover {
    background-color: #2575e2;
}
.btn-cameras:hover,
.btn-cameras:visited,
.btn-cameras:active,
.btn-cameras:focus {
    transition: all 200ms ease;
    color: #fff;
}

.btn-map {
    color: #fff;
    margin-bottom: -40px;
    border: none;
    background-color: var(--product-camoverlay-color);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transition: 0.3s;
}

.btn-map:hover,
.btn-map:focus {
    margin-bottom: -34px;
    padding-bottom: 15px;
    transition: 0.3s;
    color: #fff;
}

.message {
    position: absolute;
    display: none;
    text-align: center;
    right: 10px;
    bottom: 0;
    padding: 20px 40px;
    z-index: 99999;
    border-radius: var(--border-radius);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.page-headline {
    text-align: center;
}

.modal-content {
    overflow: hidden;
    border: none;
}

#getTrial-messages,
.email-error {
    color: #a94442;
}

#modal-getfreetrial .row {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.form .form-group .form-control {
    color: #4a4a4a;
    font-weight: 300;
}
.form .form-group .form-control.has-error {
    border: 1px solid #a94442;
}
.form .form-group .label {
    font-weight: 300;
    font-size: 1em;
    color: #222;
}
.form .form-group select {
    height: 50px !important;
}

/* end video modal */

.more {
    font-size: 1.2em;
    color: #7b7b7b;
    text-decoration: none;
    text-align: center;
}
.link {
    color: #7b7b7b;
    text-decoration: none;
    text-align: center;
}
.link:hover {
    color: #4a4a4a;
    text-decoration: underline;
}
.more:hover {
    color: #4a4a4a;
}

.navbar-default .navbar-nav > li > a {
    color: #333;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.video-launch-btn {
    cursor: pointer;
    border: 0;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    outline: 0;
    padding: 0;
    border-radius: var(--border-radius);
    background: transparent;
    transition: 300ms;
}
.video-launch-btn[disabled] {
    cursor: default;
}
.video-launch-btn:hover {
    transform: translateY(-4px);
}
/***********************************************
*                                              *
*               sections of web                *
*                                              *
***********************************************/

/* landing img & video section */

#stream-video-live .text-intro h1 {
    text-align: left;
    font-size: 3em;
    margin: 0;
    font-weight: 300 !important;
}
#stream-video-live .text-intro h3 {
    text-align: left;
    font-weight: 400;
    margin: 0 0 2em 0;
}

/* partner section */

#partner .partner-form {
    font-size: 1.2rem;
}

#partner .partner-form label {
    font-weight: 400;
}

#partner .partner-form .partner-select {
    color: #888;
    border: #888;
    padding-right: 20px;
}

/* solution for */
#solution .card h1 {
    margin: 0;
    text-align: left;
}
#solution .card h1,
#solution .card h5 {
    font-weight: 400;
}
#solution .solution-icon {
    width: 38px;
    margin-top: -5px;
    float: right;
}
#solution ol {
    list-style: none;
    counter-reset: li;
    margin-top: 30px;
    padding-left: 20px;
    line-height: 1.4rem;
}
#solution ol li::before {
    font-size: 1.1rem;
    content: counter(li) ".";
    color: var(--product-camstreamer-color);
    display: inline-block;
    width: 20px;
    margin-left: -20px;
}
#solution ol li {
    margin-top: 1rem;
    counter-increment: li;
}
#solution .link {
    color: #000;
    text-decoration: underline;
}
#solution .card {
    height: 100%;
    background-color: #fff;
    border: 0;
    overflow: hidden;
}
#solution .col-content {
    font-size: 1rem;
}
#solution .col-buttons {
    text-transform: uppercase;
}
#solution .col-content,
#solution .col-buttons {
    padding: 20px 25px;
}

@media (max-width: 679px) {
    #solution .col-content,
    #solution .col-buttons {
        padding: 20px 30px;
    }
}

/* introduction section */

#features .card2 {
    border-radius: var(--border-radius);
    text-align: center;
    background-color: #f7f7f7;
    min-height: 180px !important;
}
.no-break {
    white-space: nowrap;
}
#features .card2 i {
    font-size: 1.8rem;
}
#features .card2 h4 {
    color: #636363;
}

/* pricing section */
.product-headline {
    font-weight: 400;
    margin-top: 2rem;
    font-size: 1.5625rem;
    margin-bottom: 1rem;
}
.product-headline.same-height {
    min-height: 60px;
}
#pricing p.product-claim {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1rem;
    min-height: 55px;
    padding-left: 15px;
    padding-right: 15px;
    color: #000;
}
#pricing p.product-claim a {
    color: #000;
}
#pricing p.product-claim a:hover {
    color: #000;
    text-decoration: underline;
}
#pricing p.bundle-products {
    line-height: 1.6rem;
    font-size: 0.9rem;
    min-height: 102px;
}
#pricing p.text-smaller {
    font-size: 0.875rem;
}
.headline-link {
    color: #000000;
    text-decoration: underline;
}
/* .product-main-card,
.bundle-main-card {
    padding: 0 5px;
} */
.product-main-card .product-card,
.bundle-main-card .product-card {
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    transition: 0.3s;
    background-color: #fff;
}
.product-card {
    position: relative;
}
.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}
.product-card .small-label {
    font-weight: 300;
    font-size: 0.875rem;
    position: absolute;
    top: 15px;
    right: 20px;
    color: #000;
}
.product-card .description {
    font-size: 0.9rem;
    line-height: 1.8rem;
}
.product-card p.same-height {
    min-height: 170px;
}
.custom-badge {
    padding: 0.5rem 1rem;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 0.7rem;
    border-radius: 0.6rem;
    transition: 300ms;
}

.custom-badge:hover {
    transform: scale(1.05);
    transition: 300ms;
}

.btn {
    font-weight: 300;
}

#pricing .partners {
    text-align: center;
    font-weight: 300;
    font-size: 1.2em;
}

/* references section */

#references {
    margin-top: 0 !important;
    margin-bottom: 0;
    padding-bottom: 20px;
}
#references .text-orange {
    color: var(--product-camoverlay-color) !important;
}

/* our customers section */

#customers .customer {
    padding-top: 10px;
    line-height: 6em;
    padding-bottom: 10px;
}
#customers img {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    transition: ease 0.2s;
}

/* what people say about us section */

#comments a.text-white:hover {
    text-decoration: underline;
}

/* features list section */

#feature-list {
    text-align: center;
    padding-bottom: 40px;
    padding-top: 60px;
}
#feature-list .more-btn {
    margin-top: 20px;
}
#feature-list .card9 {
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    min-height: 320px;
    text-align: center;
    padding: 45px 35px 20px 35px;
    transition: 0.5s;
}
#feature-list .card9:hover {
    transition: 0.5s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#feature-list .card9 h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}
#feature-list .card9 p {
    line-height: 1.8;
    font-weight: 300;
}

/* all platforms page */

#all-platforms .platform-list {
    height: auto;
    margin: 20px auto;
    padding-top: 20px;
    padding-bottom: 40px;
    font-weight: 300;
    text-align: center;
    line-height: 2.6;
}
#all-platforms .platform-list .platform {
    white-space: nowrap;
    padding-bottom: 6px;
    padding-top: 8px;
    margin-left: 60px;
    font-size: 1.2em;
    text-decoration: none;
    color: #9b9b9b;
    border-bottom: 2px solid transparent;
}
#all-platforms .platform-list .platform:hover {
    color: #4a4a4a;
    border-bottom: 2px solid var(--product-camoverlay-color);
}

/* categories section */

#category h2 {
    margin-top: 40px;
    font-weight: 300;
}
#category h3 {
    font-weight: 300;
    color: var(--product-camoverlay-color);
}
#category .align-center-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* supported cameras section */

/* carousel section of pricing-hw */

.carousel-inner {
    margin: auto;
    width: 90%;
}
.carousel-control {
    width: 4%;
}

/* support section */


/* contact section */



.axis_logo_footer {
    display: inline-flex;
    margin-top: -20px;
    max-height: 60px;
}

.axis_logo_footer_link {
    text-align: left;
}

/* sub pages  */

.main-page,
#blog,
#download,
#pricing-hw,
#upgrade-cs,
#partners,
#faq,
#release-notes,
#api,
#all-features,
#travel-business,
#all-platforms,
#partners,
#detail-feature,
#camstreamer-about,
#aboutus,
#references {
    margin-top: 55px;
}
#blog .inner-page,
#download .inner-page,
#pricing-hw .inner-page,
#partners .inner-page,
#faq .inner-page,
#release-notes .inner-page,
#api .inner-page,
#all-features .inner-page,
#all-platforms .inner-page,
#partners .inner-page,
#detail-feature .inner-page,
#camstreamer-about .inner-page,
#aboutus .inner-page,
#references .inner-page {
    padding: 40px 0;
}
#faq p.text,
#all-features p.text,
#download p.text,
#all-platforms p.text,
#partners p.text,
#release-notes p.text,
#detail-feature p.text,
#aboutus p.text {
    margin-top: 2em;
}

/* blog */

#blog .blog_posts {
    margin-top: 40px;
}
#blog .blog-header {
    text-align: left;
    margin-bottom: 20px;
    margin-top: 60px;
    margin-left: 0;
    color: #fff;
}
#blog a.btn-orange:hover {
    transform: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: none;
}
#blog .date {
    color: rgba(0, 0, 0, 0.4);
}
#blog hr {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none;
}
#blog h4 {
    margin-top: 10px;
    font-weight: 500;
    color: #444;
}
#blog hr:last-child {
    border-bottom-color: transparent;
}

@keyframes moving {
    0% {
        transform: rotateY(1500deg);
    }
    50% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(-1500deg);
    }
}

#pulse-icon {
    color: var(--product-camstreamer-color);
    font-size: 2em;
    -webkit-animation: moving 20s infinite;
    -moz-animation: moving 20s infinite;
    -o-animation: moving 20s infinite;
    animation: moving 20s infinite;
}

#menu-1:hover #menu-1-title {
    border-bottom: 3px solid rgba(246, 166, 35, 0.6);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.live-preview > img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

label.axis_logo {
    flex-basis: 100%;
}

label.axis_logo:after {
    content: "";
    background-image: url("../png/axis_logo.png");
    background-size: 100% 100%;
    display: inline-flex;
    height: calc(94px / 4);
    width: calc(260px / 4);
    position: relative;
    margin-left: auto;
    top: -5px;
}

/* case study pages */

.case-study {
    margin-bottom: 80px;
    font-size: 1.2em;
    font-weight: 300;
}
.case-study .header {
    text-align: center;
}
.case-study h1 {
    margin-top: 15px;
    margin-bottom: 5px;
}
.case-study small {
    font-size: 1.2em;
    color: var(--product-camstreamer-color);
    font-weight: 400;
}
.case-study .inner-page {
    padding: 30px 0;
}
.case-study p {
    text-align: justify;
}
.case-study .table td,
.case-study .table th {
    border-top: 0;
    vertical-align: middle;
}
.case-study .table tr td {
    padding-top: 15px;
    padding-bottom: 15px;
}
/* about us page */

/* feature detail page */

#detail-feature {
    padding-bottom: 40px;
}
#detail-feature .card {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    padding: 45px 35px 20px 25px;
    transition: 0.5s;
}
#detail-feature .card i {
    font-size: 48px;
}
#detail-feature .card h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
}
#detail-feature .card p {
    font-size: 1.2em;
    line-height: 1.8;
    font-weight: 300;
}
/* all features page */

#all-features {
    padding-bottom: 40px;
}
#all-features .card {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    padding: 45px 35px 20px 25px;
    background-color: #fff;
    transition: 0.5s;
}
#all-features .card:hover {
    transition: 0.5s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#all-features .card i {
    font-size: 32px;
}
#all-features .card h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    color: #636363;
    font-size: 20px;
}
#all-features .card p {
    color: #474747;
    font-size: 1.2em;
    line-height: 1.8;
    font-weight: 300;
}
/* partners page */

#partners .card6 {
    border-radius: var(--border-radius);
    background-color: #f8f8f8;
    padding: 20px 30px 20px 30px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 300;
}
/* faq page */

#faq {
    margin-bottom: 80px;
}
#faq .card7-container {
    margin-top: -40px;
    padding-top: 40px;
}
#faq .card7 {
    margin-top: 40px;
    border-radius: var(--border-radius);
    background-color: #f8f8f8;
    padding: 20px 30px 35px 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 300;
}
#faq .card7 h3 {
    color: #636363;
}
#faq .card7 a {
    font-weight: 400;
}
#faq .card7 p {
    color: #7b7b7b;
    font-size: 1.1em;
}
#faq #faq-camstreamer,
#faq #faq-camoverlay {
    padding: 12px 25px;
}
/* download page */

#camoverlay-download,
#camstreamer-download,
#camscripter-download,
#camswitcher-download {
    padding-top: 100px !important;
}

#download {
    padding-bottom: 40px;
}
#download .row {
    padding-top: 20px;
    padding-bottom: 20px;
}
.content-cameras .col-xs-6,
.content-cameras .col-xs-12,
.content-cameras .col-sm-6,
.content-cameras .col-sm-12 {
    padding-top: 10px;
    padding-bottom: 10px;
}
/* all platforms page */

#all-platforms {
    padding-bottom: 40px;
}
#all-platforms .card10 {
    border-radius: var(--border-radius);
    background-color: #fff;
    padding: 40px;
    font-weight: 300;
}
#all-platforms .card10 i {
    font-size: 32px;
}
#all-platforms .card10 h3 {
    margin-top: 0;
    padding-top: 0;
    color: #636363;
    font-size: 22px;
}
#all-platforms .card10 .col-md-1 img {
    text-align: center;
    width: 50%;
    vertical-align: middle;
}
#all-platforms .card10 .platform-text .row {
    overflow: hidden;
    font-size: 1.1em;
    margin-top: 30px;
}
#all-platforms .card10 .platform-text .row b {
    font-weight: 400;
}
#all-platforms h6 {
    font-weight: 400;
}
#all-platforms .card10 p {
    color: #474747;
    line-height: 1.8;
    font-weight: 300;
}

/* try it step page */

#menu-tryit {
    height: fit-content;
    border-width: 2px;
    padding: 5px 10px;
}
.body-menu #menu-tryit {
    border-color: var(--product-camoverlay-color);
    color: var(--product-camoverlay-color);
}
.body-menu #menu-tryit:hover {
    border-color: var(--product-camoverlay-color);
    background-color: var(--product-camoverlay-color);
    color: #fff !important;
}
.video-menu #menu-tryit:hover {
    background-color: #fff;
    color: var(--product-camoverlay-color) !important;
}

#try-it-steps ul {
    margin: 20px 60px;
    text-align: center;
}
#try-it-steps ul li {
    display: inline-block;
    height: 80px;
    line-height: 79px;
    width: 23%;
    color: #fff;
    text-indent: 50px;
    position: relative;
}
#try-it-steps ul li:before {
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    left: -2px;
    border-style: solid;
    border-width: 40px 0 40px 40px;
    border-color: transparent transparent transparent #fff;
    z-index: 0;
}
#try-it-steps ul li:first-child {
    text-indent: 2%;
}
#try-it-steps ul li:last-child {
    text-indent: 15%;
}
#try-it-steps ul li:first-child:before {
    border-color: transparent;
}
#try-it-steps ul li:last-child a:after {
    border-color: transparent;
}
#try-it-steps ul li a:after {
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    right: -40px;
    border-style: solid;
    border-width: 40px 0 40px 40px;
    border-color: transparent transparent transparent
        var(--product-camstreamer-color);
    z-index: 10;
}
.number {
    font-size: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    padding-left: 7px;
    padding-right: 7px;
    text-align: center;
    margin-right: 10px;
}
#try-it-steps ul li.active a {
    background: var(--product-camoverlay-color);
    z-index: 100;
    transition: none;
}
#try-it-steps ul li.active:last-child a:after {
    border-color: transparent;
}
#try-it-steps ul li.active a:after {
    border-left-color: var(--product-camoverlay-color);
    transition: none;
}
#try-it-steps ul li a {
    display: block;
    transition: none;
    color: #fff;
    background: var(--product-camstreamer-color);
}
#try-it-steps ul li a:hover {
    background: var(--product-camoverlay-color);
    transition: none;
}
#try-it-steps ul li:last-child a:hover:after {
    border-color: transparent;
}
#try-it-steps ul li a:hover:after {
    border-color: transparent transparent transparent
        var(--product-camoverlay-color);
    transition: none;
}
/* upgrade cs page */

#upgrade-cs {
    padding-bottom: 60px;
}
#upgrade-cs .number {
    width: 100%;
    margin: 0 auto;
    float: left;
    font-size: 3em;
    color: var(--product-camstreamer-color);
}
#imageModal .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}
#imageModal .modal-content {
    margin: auto;
    display: block;
}
#imageModal #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}
#imageModal .modal-content,
#imageModal #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
    }
}
@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

#imageModal .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 400;
    transition: 0.3s;
}
#imageModal .close:hover,
#imageModal .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    #imageModal .modal-content {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    #menu-tryit {
        margin: 0 auto;
    }
}


/* responsive */

@media (max-width: 1140px) {
    #try-it-steps ul li {
        width: 230px;
    }
}

@media (max-width: 1090px) {
    #try-it-steps ul li {
        width: 40%;
    }
}

@media (max-width: 850px) {
    #try-it-steps ul {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    #try-it-steps ul li:before {
        border: none;
    }
    #try-it-steps ul li a:after {
        border: none;
    }
    #try-it-steps ul li:first-child:before {
        border: none;
    }
    #try-it-steps ul li:last-child a:after {
        border: none;
    }
    #try-it-steps ul li {
        text-indent: 20% !important;
        width: 50px;
        line-height: 50px;
    }
    #try-it-steps .number {
        border: none;
    }
    #try-it-steps ul li a {
        border-radius: 50%;
    }
    #try-it-steps ul li a span:nth-child(2) {
        display: none;
    }
}
.product-promo img {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 769px) {
    .product-promo img {
        position: relative;
    }
}

@media (max-width: 390px) {
    .web-menu {
        align-items: flex-start;
    }
    .web-menu a.button {
        width: auto;
    }
}

@media (min-width: 768px) {
    .navbar-right {
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    .navigation .dropdown-header {
        white-space: normal;
    }
    label.axis_logo {
        flex-basis: 100%;
    }
    label.axis_logo:after {
        top: 5px;
        left: 20px;
    }
    .axis_logo_footer {
        margin-top: 0;
    }
    #vmap {
        display: none !important;
    }
    iframe {
        height: 250px;
    }
    #product {
        background-image: none;
    }
    #product .camoverlay {
        padding-top: 50px;
    }
    #download_app_list .content-cameras {
        background-color: rgba(0, 0, 0, 0.6);
    }
    #old_list .content-cameras {
        background-color: rgba(0, 0, 0, 0.02);
    }
    #img-gren {
        max-width: 200px;
        margin: 0 auto 20px auto;
    }
    #all-platforms .platform-list .platform {
        margin-left: 20px;
    }

    .video .modal-dialog {
        margin-top: 50%;
        width: 95%;
        max-width: 95%;
    }
    
    h1 {
        font-size: 26px;
    }
    .inner-page {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .mobile-scroll {
        height: 80vh !important;
        overflow-y: scroll;
    }
    #feature-list ul {
        padding-left: 6em;
    }
    #platforms .platform-list .platform {
        white-space: nowrap;
        margin-left: 0;
        margin-right: 20px;
    }
    .img-fluid,
    .thumbnail a > img,
    .thumbnail > img {
        width: 100%;
    }
    #all-platforms .card .col-md-1 img {
        margin: 0 auto 30px auto;
        width: 20%;
    }
    #all-platforms .card h3 {
        text-align: center;
    }
    #platforms {
        background-size: 300%;
        background-position: top 50px center;
    }
    .form .form-group select.form-control {
        padding: 10px 0;
    }
    .form .btn-section {
        text-align: center;
    }
    .partner-form {
        flex-flow: column wrap;
        align-items: unset;
    }
    .partner-form input,
    .partner-form select,
    .partner-form label {
        width: 100%;
    }
    .navigation .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    footer .section {
        float: left;
    }
    footer .socials {
        text-align: left;
    }
    .axis_logo_footer_link {
        text-align: center;
        padding-right: 0;
    }
    .axis_logo_footer_link a {
        margin-left: 0 !important;
    }
    .maps {
        display: none;
    }
    #aboutus .maps {
        display: block;
    }
}
