:root {
    --mn-color: #990000;
    --sub-color: #000;
    --mn-font: 'Roboto', sans-serif;
    --sub-fonts: 'Roboto Condensed', sans-serif;
}

html {
    height: 100%;
}

body {
    font-family: var(--mn-font);
    height: 100%;
}

iframe {
    border: 0;
}

.btn-main {
    background-color: #e5e5e5;
    color: var(--sub-color);
    font-family: var(--sub-fonts);
    font-size: 18px;
    font-weight: 600;
    border-radius: 20px;
    padding: 0.5em 1.5em;
    transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.btn-main:hover {
    background-color: #fff;
}

.sub-btn {
    background-color: var(--mn-color);
    color: #fff;
    border: 1px solid var(--mn-color);
    border-radius: 20px;
    padding: 0.5em 1.2em;
    box-shadow: 0 0 12px -3px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    min-width: 100px;
}

.sub-btn:hover {
    background-color: #fff;
    color: var(--mn-color);
    font-weight: 600;
    box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.4);
}

.btn-custom-main {
    border: 2px solid var(--mn-color);
    color: var(--mn-color);
    font-family: var(--sub-font);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 20px;
    box-shadow: inset 0px 0px 0 0px var(--mn-color);
    transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.btn-custom-main:hover {
    box-shadow: inset 0px 0px 0 50px var(--mn-color);
    color: #fff;
}

.main_title {
    text-align: center;
    font-size: 38px;
    font-family: var(--sub-fonts);
    font-weight: 600;
    color: var(--mn-color);
    text-transform: uppercase;
    position: relative;
}

.main_title::before {
    content: '';
    border-bottom: 3px solid var(--sub-color);
    position: absolute;
    left: 0;
    right: 0;
    width: 90px;
    bottom: -5px;
    margin: auto;
}

.sub_main_title {
    text-align: center;
    font-size: 40px;
    font-family: var(--sub-fonts);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.sub_main_title::before {
    content: '';
    border-bottom: 3px solid #fff;
    position: absolute;
    left: 0;
    right: 0;
    width: 90px;
    bottom: -5px;
    margin: auto;
}

/* ======================== Home page Start ======================== */

/* Navigation Start */

.nav_top_content_wrapper .nav_top_content {
    margin: 0.5em 0;
}

.nav_top_content_wrapper .nav_top_content>i {
    margin-right: 0.2em;
    color: #fff;
}

.nav_top_content_wrapper .nav_top_content a,
.nav_top_content_wrapper .nav_top_content {
    color: #fff;
    text-decoration: none;
    font-family: var(--mn-font);
}

.nav_top_wrapper {
    background-color: var(--mn-color);
}

.nav_top_logo {
    max-width: 180px;
    width: 100%;
}

.customNavbar {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

.customNavbar .navbar-brand>img {
    max-width: 200px;
    width: 100%;
}

.customNavbar .navbar-nav .nav-item .nav-link,
.customNavbar .dropdown-menu .dropdown-item {
    font-family: var(--sub-fonts);
    font-weight: 500;
    font-size: 18px;
    color: var(--mn-color);
    background-color: transparent;
}

.customNavbar .navbar-nav .active>.nav-link,
.customNavbar .navbar-nav .nav-link.active,
.customNavbar .navbar-nav .nav-link.show,
.customNavbar .navbar-nav .show>.nav-link,
.customNavbar .navbar-nav .nav-link:hover {
    color: var(--sub-color);
    font-weight: 500;
}

.customNavbar .navbar-nav .navlinkActive {
    color: var(--sub-color) !important;
    font-weight: 500 !important;
}

.customNavbar .navbar-nav .nav-item+.nav-item {
    margin-left: 0.5em;
}

.customNavbar .navbar-collapse {
    justify-content: flex-end;
}

.nav_top_content_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: var(--mn-color);
}

/* Navigation End */

/* Home Start */

.home_banner_wrapper {
    position: relative;
    background: url(../images/home_banner.png) no-repeat top;
    background-size: cover;
    height: 650px;
    color: #fff;
}

.home_banner_wrapper::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.home_banner_title {
    font-family: var(--sub-fonts);
    font-size: 40px;
    max-width: 600px;
}

/* Home End */

/* Product Info Start */

.product_title {
    color: var(--mn-color);
}

.product_description {
    font-size: 20px;
    text-align: justify;
}

.product_info_media_wrapper {
    height: 300px;
}

.product_info_image {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox Config Start */

.ekko-lightbox .modal-header {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.ekko-lightbox .modal-header .modal-title {
    display: none;
}

.ekko-lightbox .modal-header .close span {
    font-size: 40px;
    font-weight: 300;
}

.ekko-lightbox .ekko-lightbox-nav-overlay a {
    color: #525252;
}

.ekko-lightbox .ekko-lightbox-nav-overlay a span {
    padding: 0;
}

.prf_img_wrap {
    max-height: 200px;
    margin: 1em 0;
}

.prf_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Lightbox Config End */

/* Read More Button Start */

a.readmore_btn {
    position: relative;
    display: inline-block;
    width: 25.6em;
    height: 6.3em;
    overflow: hidden;
    vertical-align: middle;
    text-align: left;
    text-decoration: none;
    line-height: 3em;
    font-size: 1rem;
    color: var(--sub-color);
    cursor: pointer;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

a.readmore_btn svg {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

a.readmore_btn svg g line,
a.readmore_btn svg g polyline,
a.readmore_btn svg g circle {
    fill: none;
    stroke: var(--sub-color);
}

a.readmore_btn svg g line,
a.readmore_btn svg g polyline {
    stroke-miterlimit: 10;
}

a.readmore_btn svg g circle {
    display: block;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 0.066em;
    stroke-dasharray: 200;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset ease-out 0.5s;
}

a.readmore_btn font {
    z-index: 2;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: var(--sub-fonts);
    font-size: 1.4em;
    color: var(--sub-color);
}

a.readmore_btn:hover {
    -webkit-transform: translateZ(0) translateX(0.5em);
    transform: translateZ(0) translateX(0.5em);
}

a.readmore_btn:hover svg g circle {
    stroke-dashoffset: 200;
}

/* Read More Button End */

.product_info_main_wrapper>.row+.row {
    margin-top: 5em;
}

.product_info_main_wrapper .row:nth-of-type(odd) .product_info_content_wrapper {
    padding-left: 4em;
}

.product_info_main_wrapper .row:nth-of-type(even) .product_info_content_wrapper {
    padding-right: 4em;
}

/* Product Info End */

/* Voice call Question start */

.voice_call_que_wrapper {
    margin-top: 5em;
    position: relative;
}

.voice_call_que_media_wrapper {
    background: url(../images/voice-call.jpg) no-repeat center fixed;
    width: 100%;
    height: 100%;
    display: flex;
    background-size: cover;
    justify-content: center;
    align-items: center;
    position: relative;
}

.voice_call_que_media_wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    opacity: 0.7;
}

.voice_call_que_content_wrapper {
    color: #fff;
    text-align: center;
    padding: 6em 5em 3em;
    max-width: 80%;
    z-index: 1;
}

.voice_call_que_title {
    color: #fff;
    margin-bottom: 1em;
}

.voice_call_que_content {
    color: #fff;
    font-size: 20px;
}

/* Voice call Question End */

/* Technical Support Start */

.technical_support_content {
    display: block;
    padding: 2em;
    border: 1px solid var(--mn-color);
    transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.technical_support_content_title {
    color: var(--sub-color);
    font-family: var(--sub-fonts);
    font-weight: 500;
    margin-top: 0.5em;
    margin-bottom: 0;
    text-decoration: none;
}

.technical_support_media_image {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.technical_support_media_image.api {
    background: url('../images/api.svg') no-repeat center;
}

.technical_support_media_image.live-demo {
    background: url('../images/live-demo.svg') no-repeat center;
}

.technical_support_media_image.video {
    background: url('../images/video.svg') no-repeat center;
}

.technical_support_media_image.download {
    background: url('../images/download.svg') no-repeat center;
}

.technical_support_wrapper:hover .technical_support_content {
    background-color: var(--sub-color);
    transform: rotateY(180deg);
    text-decoration: none;
}

.technical_support_wrapper:hover .technical_support_content_title {
    transform: rotateY(-180deg);
    color: #fff;
}

.technical_support_wrapper:hover .technical_support_media_image.api {
    transform: rotateY(-180deg);
    background: url('../images/api-active.svg') no-repeat center;
}

.technical_support_wrapper:hover .technical_support_media_image.live-demo {
    transform: rotateY(-180deg);
    background: url('../images/live-demo-active.svg') no-repeat center;
}

.technical_support_wrapper:hover .technical_support_media_image.video {
    transform: rotateY(-180deg);
    background: url('../images/video-active.svg') no-repeat center;
}

.technical_support_wrapper:hover .technical_support_media_image.download {
    transform: rotateY(-180deg);
    background: url('../images/download-active.svg') no-repeat center;
}

/* Technical Support End */

/* Features Voice call Start */

.features_vcall_list>li+li {
    margin-top: 1.5em;
}

.features_vcall_list>li {
    font-size: 16px;
    color: var(--mn-color);
}

.features_vcall_list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.features_vcall_left_content .features_vcall_list {
    text-align: right
}

.features_vcall_left_content .features_vcall_list>li {
    position: relative;
    padding-right: 2em;
}

.features_vcall_left_content .features_vcall_list>li::after {
    content: '\f18e';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 4px;
    right: 0;
    font-size: 20px;
}

.features_vcall_right_content .features_vcall_list>li {
    position: relative;
    padding-left: 2em;
}

.features_vcall_right_content .features_vcall_list>li::before {
    content: '\f190';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 4px;
    left: 0em;
    font-size: 20px;
}

/* Features Voice call End */

/*Other Product Start*/

.OtherProduct {
    position: relative;
    margin-bottom: 4em;
}

.OtherProduct .owl-nav>button.owl-prev {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 40px;
    margin: 0;
    width: 40px;
    height: 100%;
    line-height: 0;
    background-color: rgba(153, 0, 0, 0.5);
    color: #fff;
    border: 0;
    outline: none;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.OtherProduct:hover .owl-nav>button.owl-prev {
    background-color: rgba(153, 0, 0, 1);
}

.OtherProduct .owl-nav>.owl-prev>span {
    margin-top: -3px;
    display: block;
}

.OtherProduct .owl-nav>button.owl-next {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 40px;
    margin: 0;
    width: 40px;
    height: 100%;
    line-height: 0;
    background-color: rgba(153, 0, 0, 0.5);
    color: #fff;
    border: 0;
    outline: none;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.OtherProduct:hover .owl-nav>button.owl-next {
    background-color: rgba(153, 0, 0, 1);
}

.OtherProduct .owl-nav>.owl-next>span {
    margin-top: -3px;
    display: block;
}

/*Other Product End*/

/*Footer Start */

.footer_wrapper {
    padding: 5em 0em 0em;
}

.footer_title {
    margin-bottom: 0.5em;
}

.footer_title a {
    color: var(--mn-color) !important;
    font-family: var(--sub-font);
    font-weight: 600;
    margin-bottom: 1em;
    font-size: 18px;
    text-transform: uppercase;
}

.footer_title a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.footer_list_wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_list_wrapper>li>a {
    font-size: 16px;
    color: var(--sub-color);
    font-family: var(--sub-font);
    text-transform: capitalize;
}

.footer_list_wrapper>li>a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.footer_list_wrapper>li+li {
    margin-top: 0.3em;
}

.footer_newsletter_wrapper .form-group .form-control {
    border-radius: 0;
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid rgba(65, 64, 66, 0.5);
    padding-left: 0;
    padding-right: 0;
    outline: none;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.footer_newsletter_wrapper .form-group .form-control:focus {
    box-shadow: none;
    border-bottom: 2px solid rgba(65, 64, 66, 1)
}

.footer_newsletter_wrapper .btn-custom-main {
    font-size: 14px;
}

.footer_social_list_wrapper {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
}

.footer_social_list_wrapper>li+li {
    margin-left: 1em;
}

.footer_social_list_wrapper>li>a {
    color: var(--sub-color);
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(65, 64, 66, 0.4);
}

.footer_social_list_wrapper>li>a:hover {
    background-color: rgba(65, 64, 66, 0.05);
    text-decoration: none;
}

.footer_company_name_title {
    text-align: center;
    margin-top: 0.5em;
    font-size: 18px;
    font-family: var(--sub-fonts);
    color: var(--mn-color);
    margin-bottom: 0.2em;
}

.footer_address_content {
    font-size: 16px;
    text-align: justify;
}

.footer_logo_wrapper {
    max-width: 170px;
    margin: 0 auto;
}

.footer_contact_wapper {
    text-align: left;
}

.footer_contact,
.footer_contact>a {
    font-size: 16px;
    color: var(--sub-color);
    font-family: var(--sub-font);
    text-decoration: none;
    margin-bottom: 0.2em;
    display: inline-block;
    margin-left: 15px;
    position: relative;
}

.footer_contact>i {
    color: var(--mn-color);
    margin-right: 0.2em;
    position: absolute;
    margin-left: -15px;
    top: 3px;
}

.footer_social_contact {
    text-align: center;
    margin-top: 0.5em;
}

.footer_social_contact>a {
    width: 35px;
    height: 35px;
    background-color: var(--mn-color);
    border: 1px solid var(--mn-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.footer_social_contact>a+a {
    margin-left: 0.5em;
}

.footer_social_contact>a:hover {
    border-color: var(--mn-color);
    background-color: transparent;
    color: var(--mn-color);
}

.btn-fotrcopy {
    font-size: 12px !important;
    position: absolute;
    right: 15px;
}

.company_rights_wrapper {
    text-align: center;
    margin: 0;
    padding: 1.2em 0;
    background-color: var(--mn-color);
    color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
}

.company_rights_wrapper .company_rights {
    color: #fff;
    background-color: #fff;
    text-decoration: none;
}

/*Footer End */

/* ======================== Home page End ======================== */

/* ======================== Product page Start ======================== */

.sub_banner_main_wrapper {
    position: relative;
    height: 350px;
    width: 100%
}

.sub_banner_wrapper {
    background: url('../images/sub_banner.jpg') no-repeat center;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
}

.sub_banner_wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.sub_banner_content_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub_banner_content {
    color: #fff;
    text-transform: uppercase;
    font-family: var(--sub-fonts);
    font-weight: 600;
    font-size: 40px;
    position: relative;
}

.sub_banner_content::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: -5px;
    width: 70%;
    height: 2px;
    margin: auto;
    border-bottom: 2px solid #fff;
}

/* ======================== Product page End ======================== */

/* ======================== About page Start ======================== */

.abt_org_main_wrapper {
    margin-top: 4em;
}

.abt_org_content_wrapper,
.abt_ph_content {
    padding-left: 15px;
    padding-right: 15px;
}

.abt_org_content {
    text-align: center;
    margin-top: 1em;
    color: var(--sub-color);
    max-width: 80%;
    margin: auto;
}

.abt_org_content_list_wrapper {
    padding: 0;
    list-style: none;
    max-width: 480px;
    margin: auto;
    text-align: left;
    margin-top: 2em;
}

.abt_org_content_list_wrapper>li {
    position: relative;
    padding-left: 2em;
    font-size: 18px;
}

.abt_org_content_list_wrapper>li+li {
    margin-top: 0.8em;
}

.abt_org_content_list_wrapper>li::before {
    content: '\f18e';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 20px;
    color: var(--mn-color);
}

.abt_media_wrapper {
    text-align: center;
    max-width: 170px;
    margin: 1em auto;
    width: 100%;
}

.abt_work_main_wrapper {
    margin-top: 6em;
}

.abt_work_media_wrapper {
    text-align: center;
    max-width: 100px;
    margin: auto;
    width: 100%;
}

.abt_work_title {
    text-align: center;
    font-family: var(--sub-fonts);
    margin: 0.5em auto 0 auto;
    font-size: 20px;
    max-width: 80%;
}

.abt_work_content {
    margin: 2em 0 0;
}

.abt_stgth_wrapper {
    background: url('../images/abt-stregth.png') no-repeat fixed center;
    background-size: cover;
    width: 100%;
    height: auto;
    padding-top: 2em;
    padding-bottom: 2em;
    position: relative;
    z-index: 1;
    margin-top: 6em;
}

.abt_stgth_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.abt_stgth_content_wrapper .main_title,
.abt_stgth_content_wrapper .main_title::before {
    color: #fff;
    border-color: #fff;
}

.abt_stgth_content {
    text-align: center;
}

.abt_stgth_media_wrapper {
    width: 100px;
    height: 110px;
    margin: auto;
}

.abt_stgth_media_wrapper>img {
    max-width: 100%;
}

.abt_stgth_title_content {
    color: #fff;
    text-transform: uppercase;
    font-family: var(--sub-fonts);
    font-size: 24px;
}

.abt_stgth_content_description {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    padding: 0 2em;
    text-align: justify;
    text-align-last: center;
}

.abt_ph_wrapper {
    margin-top: 6em;
}

.abt_ph_list_wrapper {
    padding: 0;
    list-style: none;
    text-align: left;
    margin-top: 2em;
}

.abt_ph_list_wrapper>li {
    position: relative;
    padding-left: 2em;
    font-size: 18px;
}

.abt_ph_list_wrapper>li::before {
    content: '\f18e';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 20px;
    color: var(--mn-color);
}

.abt_ph_list_content {
    font-size: 16px;
    margin-bottom: 1em;
}

/* ======================== About page End ======================== */

/* ======================== Download page Start ======================== */

.download_modems_list {
    margin-top: 4em;
    margin-bottom: 3em;
}

.download_modems_list .main_title {
    font-size: 35px;
}

.top_border {
    border: 4px solid var(--mn-color);
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.modems_box_wrapper:hover .top_border {
    opacity: 1;
}

.modems_box_wrapper:hover .modems_box_content {
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.3);
}

.modems_box_wrapper {
    margin: 1em 0;
}

.modems_box_content {
    background-color: #fefefe;
    padding: 1em;
    text-align: center;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: column;
    position: relative;
    box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.modems_box_content iframe {
    width: 100%;
    max-width: 100%;
}

.modems_title {
    color: var(--mn-color);
    font-size: 24px;
    font-family: var(--sub-fonts);
    font-weight: 600;
}

.modems_support_title {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--sub-fonts);
    color: var(--sub-color);
}

/* ======================== Download page End ======================== */

/* ======================== Live Demo page Start ======================== */

.live_aud_wrapper {
    margin: 4em auto 2em;
}

.bulk_sms_sub_title {
    margin-top: 1.5em;
    font-weight: 500;
    margin-bottom: 1em;
    font-size: 18px;
}

.bvs_sub_title {
    font-weight: 400;
    margin: 0;
    font-size: 16px;
}

.modems_box_content form {
    width: 80%;
}

.live_text_call_wrapper .modems_box_content {
    height: auto;
}

.live_text_call_wrapper .modems_box_content textarea {
    resize: none;
}

/* ======================== Live Demo page End ======================== */

/* ======================== Video page Start ======================== */

.video_box_wrapper .modems_box_content {
    height: auto;
}

.video_box_wrapper .modems_title {
    margin-bottom: 1em;
}

.video_box_wrapper .modems_btn_wrapper {
    margin-top: 1em;
}

/* ======================== Video page End ======================== */

/* ======================== Pricing Box Start ======================== */

.pricing_box_list_wrapper .modems_box_content {
    height: 300px;
}

.pricing_sub_price {
    text-align: right;
    font-weight: 400;
}

.pricing_gst_wrapper {
    display: flex;
}

.pricing_gst_name {
    font-weight: 400;
    font-size: 14px;
    margin-right: 1em;
}

.pricing_gst_plus_sign {
    line-height: 1.1;
    margin-right: 0.5em;
}

.pricing_sub_gst_price {
    font-weight: 400;
}

.pricing_final_price {
    border-top: 2px dotted #ddd;
}

.pricing_final_price_amt {
    margin-top: 0.5em;
    font-size: 20px;
    color: var(--mn-color);
    font-family: var(--sub-fonts);
    font-weight: 600;
}

/* ======================== Pricing Box End ======================== */

/* ======================== Clients Page Start ======================== */

.clients_main_wrapper {
    max-width: 300px;
    width: 100%;
}

/* ======================== Clients Page End ======================== */

/* ======================== Other Product Page Start ======================== */

.otherproduct_img_wrapper .clients_main_wrapper {
    height: 150px;
}

.otherproduct_img_wrapper .clients_main_wrapper img {
    height: 100%;
    object-fit: contain;
}

/* ======================== Other Product Page End ======================== */

/* ======================== USB Devices Page Start ======================== */

.usb_devices_slider_content {
    height: 300px;
}

.usb_devices_slider_content>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.UsbDevices_Slider .owl-item {
    transform: scale(0.9);
    position: relative;
}

.UsbDevices_Slider .owl-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.UsbDevices_Slider .owl-item.center {
    transform: scale(1);
}

.UsbDevices_Slider .owl-item.center::before {
    background-color: rgba(0, 0, 0, 0);
}

.UsbDevices_Slider>.owl-nav {
    position: absolute;
    top: 15%;
    display: block;
    right: 0;
    left: 0;
}

.UsbDevices_Slider>.owl-nav>button.owl-prev {
    font-size: 8em;
    color: #fff;
    left: 0.2em;
    position: absolute;
    outline: none;
}

.UsbDevices_Slider>.owl-nav>button.owl-next {
    font-size: 8em;
    color: #fff;
    position: absolute;
    right: 0.2em;
    outline: none;
}

/* ======================== USB Devices Page End ======================== */

/* ======================== Bulk Voice Call Page Start ======================== */

.wht_bu_call_wrapper {
    margin-top: 2em;
    margin-bottom: 2em;
}

.wht_bu_call_title_wrapper {
    margin-bottom: 2em;
}

.wht_bu_call_content {
    font-size: 16px;
    text-align: justify;
}

.wht_bu_call_main_wrapper {
    background-attachment: fixed;
    position: relative;
    background-color: #990000;
    z-index: 1;
}

.bu_call_det_main_wrapper {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    z-index: 1;
    /* background: url(../images/bg-texture.png) repeat center; */
}

.bu_call_det_main_wrapper::before {
    content: '';
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.bu_call_det_wrapper {
    padding-top: 3em;
    background-color: #fff;
}

.bu_call_det_title_wrapper {
    margin-bottom: 2em;
}

.bu_call_det_use_list_wrapper {
    padding: 0;
    list-style: none;
    text-align: left;
}

.bu_call_det_use_list_wrapper>li {
    position: relative;
    padding-left: 2em;
    font-size: 18px;
}

.bu_call_det_use_list_wrapper>li::before {
    content: '\f18e';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 20px;
    color: var(--mn-color);
}

.bu_call_det_use_wrapper {
    margin-top: 3em;
}

.bu_call_spro_main_wrapper .panel-group .panel {
    border-radius: 0;
    box-shadow: none;
    border-color: #EEEEEE;
    background-color: #fff;
}

.bu_call_spro_main_wrapper .panel-default>.panel-heading {
    padding: 0;
    border-radius: 0;
    color: #212121;
    background-color: #FAFAFA;
    border-color: #EEEEEE;
}

.bu_call_spro_main_wrapper .panel-title {
    font-size: 14px;
    margin-bottom: 0;
}

.bu_call_spro_main_wrapper .panel+.panel .panel-title {
    margin-top: 1em;
}

.bu_call_spro_main_wrapper .panel-title>a {
    display: block;
    padding: 15px;
    text-decoration: none;
}

.bu_call_spro_main_wrapper .panel-title>a:hover {
    color: var(--mn-color);
}

.bu_call_spro_main_wrapper .more-less {
    float: right;
    color: #212121;
}

.bu_call_spro_main_wrapper .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #EEEEEE;
}

.bu_call_spro_main_wrapper {
    background-color: var(--mn-color);
    padding-top: 2em;
    padding-bottom: 2em;
}

.bu_call_spro_panel_title {
    font-family: var(--sub-fonts);
    font-weight: 600;
    color: var(--mn-color);
    font-size: 20px;
}

.brix_panel_body_wrapper {
    padding: 0 1em 1em;
    text-align: justify;
    font-size: 16px;
}

.tts_main_wrapper {
    margin-top: 3em;
}

.tts_content_description {
    font-size: 18px;
    margin-top: 1em;
    text-align: justify;
}

/* ======================== Bulk Voice Call Page End ======================== */

/* ======================== Voip Page Start ======================== */

.voip_prd_pg_box_wrapper .voip_prd_pg_box_video_frame {
    width: 100%;
    height: 350px;
    border: 0;
}

.prd_use_sub_title {
    font-size: 22px;
}

.bu_call_det_use_wrapper .prd_use_sub_title~.prd_use_sub_title {
    margin-top: 1.5em;
}

/* ======================== Voip Page End ======================== */

/* ======================== API Page Start ======================== */

.api_tarea {
    width: 100%;
    background-color: #f1f2f3;
    white-space: pre-line;
    margin: 0;
    padding: 0;
    height: 120px;
}

.api_tarea>code {
    white-space: normal;
    max-width: 100%;
    word-break: break-all;
    text-align: left;
    word-wrap: break-word;
    padding: 1em 1em 0;
    display: block;
}

/* ======================== API Page End ======================== */

/* ======================== Contact page Start ======================== */

.main_sub_banner_wrapper {
    background: url('../images/sub_banner_1.jpg') no-repeat center;
    background-size: cover;
    width: 100%;
    height: 350px;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.main_sub_breadcrumb_wrapper ol.breadcrumb {
    background-color: transparent;
    padding: 0.5em 1em;
    margin-top: 2em;
    border: 1px solid #fff;
}

.main_sub_banner_wrapper .breadcrumb-item:not(.active) a {
    color: #fff;
    font-weight: 600;
}

.main_sub_banner_wrapper .breadcrumb-item.active {
    color: #fff;
    opacity: 0.7;
}

.main_sub_banner_wrapper::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.main_sub_banner_title {
    font-size: 35px;
    color: #fff;
    margin: 0;
}

.contact_info_section_wrapper {
    margin-top: 3em;
}

.contact_info_content_wrapper {
    text-align: center;
}

.cnct_form_wrapper {
    max-width: 600px;
}

.contact_info_details {
    margin: 0 0 0.2em 0;
}

.contact_info_details:first-of-type {
    margin-top: 1em;
}

.contact_info_content_wrapper>i.fa {
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: var(--mn-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 22px;
    border-radius: 50%;
}

.contact_map_wrapper {
    width: 100%;
    height: 400px;
}

/* ======================== Contact page End ======================== */

/* ======================== Responsive Css Start Start ======================== */

@media screen and (max-width:1200px) {
    /* ========== Home page Css Start Start ========== */
    .customNavbar .navbar-nav .nav-item .nav-link,
    .customNavbar .dropdown-menu .dropdown-item {
        font-size: 16px;
    }
    /* ========== Home page Css Start End ========== */
}

@media screen and (max-width:1024px) {
    /* ========== Home page Css Start Start ========== */
    .customNavbar .navbar-nav .nav-item .nav-link,
    .customNavbar .dropdown-menu .dropdown-item {
        font-size: 14px;
    }
    .customNavbar .navbar-nav .nav-item+.nav-item {
        margin-left: 0;
    }
    .home_banner_wrapper {
        height: 500px;
    }
    .main_title,
    .home_banner_title,
    .sub_main_title,
    .download_modems_list .main_title {
        font-size: 35px;
    }
    .product_info_media_wrapper {
        height: 250px;
    }
    .product_title {
        font-size: 26px;
    }
    .voice_call_que_content_wrapper {
        max-width: 100%;
    }
    .product_description,
    .voice_call_que_content {
        font-size: 18px;
    }
    .product_info_main_wrapper .row:nth-of-type(odd) .product_info_content_wrapper {
        padding-left: 2em;
    }
    .product_info_main_wrapper .row:nth-of-type(even) .product_info_content_wrapper {
        padding-right: 2em;
    }
    .technical_support_content_title {
        font-size: 22px;
    }
    .features_vcall_list>li+li {
        margin-top: 1em;
    }
    .technical_support_wrapper {
        margin-bottom: 30px;
    }
    /* ========== Home page Css Start End ========== */
}

@media screen and (max-width:991px) {
    /* ========== Home page Css Start Start ========== */
    .features_voice_call_mid_con_wrap {
        order: 1;
    }
    .features_voice_call_lft_con_wrap {
        order: 2
    }
    .features_voice_call_rit_con_wrap {
        order: 3;
    }
    .features_vcall_left_content .features_vcall_list>li {
        padding-left: 2em;
        padding-right: 0;
    }
    .features_vcall_left_content .features_vcall_list {
        text-align: left;
    }
    .features_vcall_left_content .features_vcall_list>li::after {
        right: unset;
        left: 0;
    }
    .features_vcall_right_content .features_vcall_list>li::before {
        content: '\f18e';
    }
    .features_vcall_right_content,
    .features_vcall_list {
        margin-top: 1em;
    }
    .features_vcall_media_wrapper {
        height: 250px;
    }
    .features_vcall_media_wrapper>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .footer_title {
        margin-bottom: 0.3em;
        margin-top: 1em;
    }
    /* ========== Home page Css Start End ========== */
    /* ========== About us page Css Start Start ========== */
    .abt_stgth_content_wrapper .abt_stgth_content+.abt_stgth_content {
        margin-top: 2em;
    }
    .abt_stgth_content_description {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    /* ========== About us page Css Start End ========== */
}

@media screen and (max-width:768px) {
    /* ========== Home page Css Start Start ========== */
    .nav_top_content_wrapper {
        flex-flow: column;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* ========== Home page Css Start Start ========== */
}

@media screen and (max-width:736px) {
    /* ========== Home page Css Start Start ========== */
    .nav_top_content_wrapper {
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-left: 15px;
    }
    .main_title,
    .home_banner_title,
    .sub_main_title,
    .download_modems_list .main_title {
        font-size: 30px;
    }
    .btn-main {
        font-size: 16px;
    }
    .home_banner_wrapper {
        height: 350px;
    }
    .product_info_main_wrapper .row:nth-of-type(odd) .product_info_content_wrapper {
        padding-left: 15px;
        margin-top: 1em;
    }
    .product_info_media_wrapper {
        height: 200px;
    }
    .product_info_main_wrapper .row:nth-of-type(even) .product_info_content_wrapper {
        padding-right: 15px;
        order: 2;
        margin-top: 1em;
    }
    .product_description,
    .voice_call_que_content {
        font-size: 16px;
    }
    .voice_call_que_title {
        margin-bottom: 0.5em;
    }
    .footer_wrapper {
        padding-top: 2em;
    }
    /* ========== Home page Css Start End ========== */
    /* ========== Bulk Voice Call page Css Start Start ========== */
    .bu_call_spro_panel_title {
        font-size: 18px;
    }
    /* ========== Bulk Voice Call page Css Start End ========== */
    /* ========== About us page Css Start Start ========== */
    .abt_stgth_media_wrapper {
        width: 80px;
        height: 90px;
    }
    .abt_work_media_wrapper {
        max-width: 80px;
    }
    .abt_work_title {
        max-width: 300px;
    }
    /* ========== About us page Css Start End ========== */
    /* ========== Contact us page Css Start Start ========== */
    .contact_info_details:first-of-type {
        margin-top: 0.5em;
    }
    .contact_info_section_wrapper .contact_info_content_wrapper+.contact_info_content_wrapper {
        margin-top: 2em;
    }
    /* ========== Contact us page Css Start End ========== */
}

@media screen and (max-width:600px) {
    /* ========== Home page Css Start Start ========== */
    .voice_call_que_content_wrapper {
        padding: 6em 2em 3em;
    }
    .main_title,
    .home_banner_title,
    .sub_main_title,
    .download_modems_list .main_title {
        font-size: 26px;
    }
    .product_title {
        font-size: 22px;
    }
    /* ========== Home page Css Start End ========== */
    /* ========== Bulk Voice Call page Css Start Start ========== */
    .bu_call_spro_panel_title {
        font-size: 16px;
    }
    .tts_content_description {
        font-size: 16px;
    }
    .bu_call_det_use_list_wrapper>li>p {
        font-size: 16px;
    }
    /* ========== Bulk Voice Call page Css Start End ========== */
    /* ========== Voip page Css Start Start ========== */
    .modems_title {
        font-size: 20px
    }
    .prd_use_sub_title {
        font-size: 18px;
    }
    /* ========== Voip page Css Start End ========== */
    /* ========== Other Product page Css Start Start ========== */
    .otherproduct_img_wrapper .clients_main_wrapper {
        height: 100px;
    }
    /* ========== Other Product page Css Start End ========== */
    /* ========== USB Devices page Css Start Start ========== */
    .UsbDevices_Slider>.owl-nav>button.owl-prev,
    .UsbDevices_Slider>.owl-nav>button.owl-next {
        font-size: 6em;
    }
    .usb_devices_slider_content {
        height: 230px;
    }
    /* ========== USB Devices page Css Start End ========== */
    /* ========== Pricing page Css Start Start ========== */
    .pricing_final_price_amt {
        font-size: 18px;
    }
    /* ========== Pricing page Css Start End ========== */
}

@media screen and (max-width:568px) {
    /* ========== Home page Css Start Start ========== */
    .OtherProduct {
        max-width: 90%;
        margin: auto;
    }
    /* ========== Home page Css Start End ========== */
}

@media screen and (max-width:480px) {
    /* ========== Home page Css Start Start ========== */
    .company_rights_wrapper {
        flex-flow: column wrap;
    }
    .btn-fotrcopy {
        position: relative;
        right: 0;
        margin-top: 1em;
    }
    .main_title,
    .home_banner_title,
    .sub_main_title,
    .download_modems_list .main_title {
        font-size: 22px;
    }
    .voice_call_que_content_wrapper {
        padding: 3em 1em 3em;
    }
    .voice_call_que_wrapper {
        margin-top: 3em;
    }
    /* ========== Home page Css Start End ========== */
    /* ========== Voip page Css Start Start ========== */
    .bu_call_det_use_list_wrapper>li>p {
        font-size: 14px;
    }
    /* ========== Voip page Css Start End ========== */
    /* ========== About us Css Start Start ========== */
    .abt_org_content {
        max-width: 100%;
        padding: 0 1em;
    }
    .abt_org_content_list_wrapper>li {
        font-size: 16px;
    }
    .abt_ph_list_content {
        font-size: 14px
    }
    .abt_work_main_wrapper {
        margin-top: 4em;
    }
    .abt_work_title {
        font-size: 18px;
    }
    .abt_stgth_content_description {
        padding: 0 0;
    }
    /* ========== About us Css Start End ========== */
}

@media screen and (max-width:340px) {
    /* ========== Home page Css Start Start ========== */
    .main_title,
    .home_banner_title,
    .sub_main_title,
    .download_modems_list .main_title {
        font-size: 20px;
    }
    /* ========== Home page Css Start End ========== */
    /* ========== About us page Css Start Start ========== */
    .abt_org_content {
        padding: 0;
    }
    /* ========== About us page Css Start End ========== */
}

/* ======================== Responsive Css Start End ======================== */