/* Font Family :: START */

@font-face {
    font-family: Roboto-Black;
    src: url(../fonts/roboto/Roboto-Black.ttf);
}

@font-face {
    font-family: Roboto-Bold;
    src: url(../fonts/roboto/Roboto-Bold.ttf);
}

@font-face {
    font-family: Roboto-Light;
    src: url(../fonts/roboto/Roboto-Light.ttf);
}

@font-face {
    font-family: Roboto-Medium;
    src: url(../fonts/roboto/Roboto-Medium.ttf);
}

@font-face {
    font-family: Roboto-Regular;
    src: url(../fonts/roboto/Roboto-Regular.ttf);
}

@font-face {
    font-family: Roboto-Thin;
    src: url(../fonts/roboto/Roboto-Thin.ttf);
}

/* Font Family :: END */

/*Defaul CSS :: START*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "Roboto-Light", Arial, sans-serif;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    color: #231f20;
    font-weight: 400;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    zoom: 1;
}

/* 
 @media (min-width: 1920px) {
    .container {
        max-width: 95%;
    }
} */

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 90%;
    }
}

html {
    font-size: 16px;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 75%/150% "Roboto-Medium", Arial, sans-serif;
    background-color: var(--thm-white);
    color: #231f20;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
    /* padding: 0 !important; */
}

ol,
ul {
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
    color: #231f20;
    font-size: 17px;
    font-weight: 400;
    font-family: "Roboto-Light", Arial, sans-serif;
    cursor: pointer;
}

/* 2) Heading */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: normal;
    color: #231f20;
    font-weight: 500;
    font-family: "Roboto-Medium", Arial, sans-serif;
}

h1 {
    font-size: 2.5em;
    line-height: 1.25em;
    /*24px, 30px*/
}

h2 {
    font-size: 1.6667em;
    line-height: 1.25em;
    /*20px, 35px*/
}

h3 {
    font-size: 1.5em;
    line-height: 1.2222em;
    /*18px, 22px*/
}

h4 {
    font-size: 1.3333em;
    line-height: 1.25em;
    /*16px, 20px*/
}

h5 {
    font-size: 1.1666em;
    line-height: 1.1428em;
    /*14px, 16px*/
}

h6 {
    font-size: 1em;
}

p {
    font-size: 1.25em;
    line-height: 1.1428em;
    font-family: "Roboto-Light", Arial, sans-serif;
    color: #231f20;
    font-weight: 400;
    line-height: 25px;
    font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1600 - 300)));
}

.f-bold {
    font-family: "Roboto-Bold", Arial, sans-serif !important;
}

.f-medium {
    font-family: "Roboto-Medium", Arial, sans-serif !important;
}

.f-regular {
    font-family: "Roboto-Regular", Arial, sans-serif !important;
}

.f-light {
    font-family: "Roboto-Light", Arial, sans-serif !important;
}

.f-600 {
    font-weight: 600;
}

.f-900 {
    font-weight: 900;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}

.btn:focus {
    box-shadow: none;
}

.transition {
    transition: all 0.3s ease-in-out;
}

section p,
section a,
section a:hover {
    font-size: calc(17px + (22 - 18) * ((100vw - 300px) / (1600 - 300)));
    line-height: 30px;
}

/*Defaul CSS :: END*/

/*Global Variable Define CSS :: START*/

:root {
    --theme-black: #231f20;
    --theme-color: #dc3127;
    --theme-hover: #231f20;
    --theme-white: #fff;
    --theme-text: #5a6a85;
}

/*Global Variable Define CSS :: END*/

/*Header Section CSS :: START*/

.navbar-nav li:hover>ul.dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
}

img.site-branding {
    /* max-height: 60px; */
    height: auto;
    width: auto;
}

.main-heder-section .main-heder .row .col {
    padding: 0;
}

.main-heder-section {
    background: #dee0e3;
    padding: 0 !important;
}

.main-heder-section a.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-heder-section .container {
    max-width: 90%;
}

.main-heder ul.navbar-nav>li {
    margin: 0 5px;
}

.main-heder ul.navbar-nav li a span,
.main-heder ul.navbar-nav li a .main-heder ul.navbar-nav li a span,
.main-heder ul.navbar-nav li a {
    color: var(--theme-black);
    font-family: "Roboto-Light", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    background-color: transparent !important;
    padding: 0;
    /* padding-left: 0.5rem; */
    padding-right: 0 !important;
    margin: 0;
}

.drivenscan_menu.active a span {
    color: black !important;
}

.main-heder ul.dropdown-menu {
    background-color: #dee0e3;
}

.main-heder ul.navbar-nav .drivenscan_menu a {
    font-weight: 900;
    font-size: 20px;
}

.nav-item.active>a,
.nav-item.active a span,
.nav-item.active a.active {
    color: var(--theme-color) !important;
    font-size: 20px;
    font-family: "Roboto-Medium", Arial, sans-serif !important;
}

.main-heder ul.navbar-nav li a:hover {
    color: var(--theme-color) !important;
    background: transparent;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
}

.main-heder ul .lanuage_header {
    color: Var(--thm-white);
}

.main-heder .lanuage_header a {
    font-size: 16px;
    font-weight: bold;
    background: var(--theme-color);
    color: white;
    padding: 8px 10px;
}

/*Header Section CSS :: END*/

/*Home Page CSS :: START*/

/*Slider Section CSS :: START*/

.main-slider {
    position: relative;
}

.main-slider-section .row {
    vertical-align: middle;
    align-items: center;
}

.main-slider-section img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 10px);
    object-fit: contain;
    object-position: bottom;
}

/*Slick Dots CSS :: START*/
.slick-dots {
    text-align: center;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slick-dots li {
    margin: 0 0.25rem;
}

.slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: var(--theme-white);
    text-indent: -9999px;
}

.slick-dots li.slick-active button {
    background-color: var(--theme-color);
}

/*Slick Dots CSS :: END*/

/*Slider Section CSS :: END*/

/*--Breadcrumb Section CSS :: START--*/

.breadcrumb a:hover {
    font-weight: 400;
    font-size: calc(16px + (22 - 16) * ((100vw - 300px) / (1600 - 300))) !important;
    font-family: "Roboto-Regular", Arial, sans-serif;
}

.breadcrumb a {
    font-size: calc(16px + (22 - 16) * ((100vw - 300px) / (1600 - 300)));
}

.breadcrumb a b {
    font-weight: 600;
    font-family: "Roboto-Medium", Arial, sans-serif;
}

.breadcrumb a b span {
    color: var(--theme-color);
    font-weight: 900;
}

/*--Breadcrumb Section CSS :: END--*/

/*About us Section CSS :: START*/

#about_us_main .about_us_text_content h2 {
    font-family: "Roboto-Light", Arial, sans-serif;
    font-weight: 600;
}

.about_us_text_content h2 {
    font-size: calc(25px + (40 - 50) * ((100vw - 300px) / (1600 - 300)));
}

.about_us_text_content h2 span {
    font-weight: 900;
    font-size: calc(25px + (45 - 30) * ((100vw - 300px) / (1600 - 300)));
    color: var(--theme-black);
    font-family: "Roboto-Medium", Arial, sans-serif;
}

.about_us_text_content h2 span b {
    color: var(--theme-color);
    font-weight: 900;
    font-family: "Roboto-Bold", Arial, sans-serif;
}

.about_us_text_content p b {
    font-size: calc(16px + (22 - 16) * ((100vw - 300px) / (1600 - 300)));
    font-weight: 900;
}

.theme_btn {
    padding: 0px 13px;
    color: var(--theme-white);
    font-size: calc(16px + (22 - 18) * ((100vw - 300px) / (1600 - 300)));
    background: var(--theme-color);
    border-radius: 0px;
}

.theme_btn:hover {
    color: var(--theme-white);
}

.theme_btn i {
    color: var(--theme-white);
    margin-left: 20px;
}

/*About us Section CSS :: END*/

/* Industry sectors Section CSS :: START */

.industry_sectors_main {
    background: var(--theme-color);
}

.industry_sectors .industry_sectors_heading h2,
.industry_sectors .industry_sectors_heading p {
    margin: 15px;
}

.industry_sectors .industry_sectors_heading h2 {
    color: var(--theme-black);
    font-weight: 900;
    font-size: calc(35px + (50 - 45) * ((100vw - 300px) / (1600 - 300)));
}

.industry_sectors_main .industry_sectors_heading p,
.industry_sectors_main .industry_sectors_heading strong {
    color: var(--theme-white);
    line-height: 35px;
}

.industry_sectors_heading,
.industry_sectors_content_row {
    position: relative;
}

.industry_sectors_main .industry_sectors_content_row::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--theme-white);
}

.industry_sectors_main .industry_sectors_content_row::before {
    content: "";
    position: absolute;
    width: 1px;
    right: 0;
    top: 2px;
    height: 95%;
    background: var(--theme-white);
}

.industry_sectors_main .industry_sectors_content_row.border_none::before {
    content: unset;
}

.industry_sectors_main .industry_sectors_second_row .industry_sectors_content_row::after {
    content: none;
}

.industry_sectors_content_row .content_visible {
    width: 100%;
}

.industry_sectors_content_row .content_visible h2 {
    color: white;
    font-size: calc(28px + (45 - 45) * ((100vw - 300px) / (1600 - 300)));
    font-weight: 600;
    margin-top: 25px;
}

.industry_sectors_content_row .content_visible img {
    opacity: 0.5;
    width: 90%;
    margin: 0 auto;
    display: block;
}

.content_notvisible h2 {
    color: #e03b2e;
    font-weight: 600;
}

.content_notvisible p {
    line-height: 28px;
    font-size: calc(16px + (22 - 18) * ((100vw - 300px) / (1600 - 300)));
    /* word-break: break-all; */
    margin-top: 20px;
    font-weight: 600;
}

.content_notvisible {
    padding: 15px;
    width: calc(100% - 30px);
    position: absolute;
    top: 48%;
    left: 50%;
    background: #ffffffab;
    height: 95%;
    margin: 0 auto;
    justify-content: center;
    display: inline-block;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out 0s;
    width: 95%;
    margin-top: 5px;
}

.industry_sectors_content_row:hover .content_visible h2 {
    opacity: 0;
}

.industry_sectors_content_row:hover .content_notvisible {
    opacity: 1;
    visibility: visible;
}

.industry_sectors_second_row .industry_sectors_content_row:hover .content_notvisible {
    top: 50%;
}

/* Industry sectors Section CSS :: END */

/*--Press releases Section CSS :: START */

.press_releases_main {
    box-shadow: 1px 1px 15px 1.5px rgb(114 98 98 / 40%);
    padding: 80px;
}

.press_releases_main .press_releases_heading h2 {
    font-size: calc(33px + (45 - 30) * ((100vw - 300px) / (1600 - 300)));
    font-weight: 900;
}

.press_releases_main .press_releases_card .card {
    border: none;
}

.press_releases_main .press_releases_card .card-body {
    padding: 0;
}

.press_releases_main .press_releases_card .card-footer {
    background: transparent;
    border: none;
}

.press_releases_main .press_releases_card .card-body h5 {
    font-size: calc(22px + (30 - 30) * ((100vw - 300px) / (1600 - 300)));
}

.press_releases_main .press_releases_card .card-body p,
.press_releases_main .press_releases_card .card-body span {
    font-size: calc(18px + (25 - 27) * ((100vw - 300px) / (1600 - 300)));
}

.press_releases_main .press_releases_card .card-body .theme_btn {
    width: 100%;
    padding: 2px;
}

.press_releases_main .press_releases_card .card-footer .theme_btn i {
    float: right;
}

/*Modal Popup On Button Click*/

.modal-open,
.modal.fade.show {
    padding-right: 0 !important;
}

.model_press_release .modal-body h2 {
    font-size: calc(18px + (45 - 30) * ((100vw - 300px) / (1600 - 300)));
    font-weight: 900;
}

.model_press_release .theme_btn {
    padding: 5px 10px;
    font-size: 18px;
    border-radius: 5px;
}

/*Modal Popup On Button Click*/

/*--Press releases Section CSS :: END */

/*--Footer Section CSS:: START */

.bottom_footer {
    position: relative;
    overflow: hidden;
}

.bottom_footer::before {
    content: "";
    position: absolute;
    width: 100%;
    left: -100px;
    top: 17%;
    height: 100%;
    background-image: url(../media/footer-shape-1.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 19%;
    overflow: hidden;
}

.bottom_footer_main .row {
    vertical-align: middle;
}

.bottom_footer_main {
    background: #000000;
    color: var(--theme-white);
}

.bottom_footer_main .bottom_footer_first h5,
.bottom_footer_main .bottom_footer_first p,
.bottom_footer_main .bottom_footer_second ul li,
.bottom_footer_main .bottom_footer_second h5,
.bottom_footer_main .bottom_footer_second h6,
.bottom_footer_main .bottom_footer_second p {
    color: var(--theme-white);
}

.bottom_footer_main .bottom_footer_second p {
    font-size: calc(15px + (22 - 18) * ((100vw - 300px) / (1600 - 300)));
}

.bottom_footer_main .bottom_footer_first p {
    font-size: calc(20px + (18 - 18) * ((100vw - 300px) / (1600 - 300)));
}

.bottom_footer_main .bottom_footer_second ul li {
    padding-bottom: 2px;
}

.bottom_footer_main .bottom_footer_second ul a {
    color: var(--theme-white);
    font-size: calc(15px + (22 - 18) * ((100vw - 300px) / (1600 - 300)));
}

.bottom_footer_main .bottom_footer_second ul a:hover li {
    color: var(--theme-color);
}

.imprint_row_footer {
    padding: 0 90px;
}

#top-scroll i {
    text-align: center;
    margin: 8% 0;
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.arrow {
    text-align: center;
}

.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.footer_contact_info ul li {
    margin-bottom: 5px;
}

.footer_contact_info ul li a {
    padding-left: 0.3em;
    margin-bottom: 10px;
}

.footer_contact_info ul li:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    margin-left: 5px;
    margin-right: 10px;
}

.footer_contact_info ul li:nth-child(1):before {
    background-image: url(../media/icons/phone-white.png);
}

.footer_contact_info ul li:nth-child(2):before {
    background-image: url(../media/icons/email-white.png);
}

.contact_info_row {
    margin-top: -28%;
}

/*--Footer Section CSS:: END */

/*Home Page CSS :: END*/

/*DriveNscan Page CSS :: START*/

/*Video Section CSS :: START*/
.video_section_main {
    box-shadow: 1px 1px 15px 1.5px rgb(114 98 98 / 15%);
    /* padding: 80px; */
}

.video_section_main .video_content iframe {
    width: 100%;
    height: 80vh;
}

.video_section_main .video_content video {
    width: 100%;
    height: 80vh;
}

/*Video Section CSS :: END*/

/*How Scanner Work CSS :: START*/
.how_scanner_work_content_imprints h3 {
    font-size: calc(18px + (20 -18) * ((100vw - 320px) / (2500 - 320)));
}

.how_scanner_work_content_imprints h4 {
    font-size: calc(12px + (20 -15) * ((100vw - 320px) / (2500 - 320)));
}

.how_scanner_work_content_imprints h2 {
    font-size: calc(20px + (30 -25) * ((100vw - 320px) / (2500 - 320)));
    font-weight: 700;
    text-align: center;
}

.bold_text {
    font-weight: bolder;
}

.how_scanner_work_content_imprints p {
    font-size: calc(11px + (15 -10) * ((100vw - 320px) / (2500 - 320)));
}

.how_scanner_work_content h2 {
    font-size: calc(25px + (45 - 30) * ((100vw - 300px) / (2500 - 300)));
}

.how_scanner_work_content p b,
.how_scanner_work_content p b span {
    font-weight: 900;
    font-family: "Roboto-Bold";
}

.how_scanner_work_content p span {
    color: var(--theme-color);
}

#drivenscan_page .inner_content h2 {
    font-family: "Roboto-Light";
    font-weight: 600;
}

/*How Scanner Work CSS :: END*/

/*QR Code Section CSS :: START*/

.inner_content h2 {
    font-size: calc(35px + (45 - 30) * ((100vw - 300px) / (1600 - 300)));
}

.inner_content p b,
.inner_content p b span {
    font-weight: 900;
    font-family: "Roboto-Regular";
}

.inner_content p b span {
    color: var(--theme-color);
}

/*QR Code Section CSS :: END*/

/* customers_logo CSS:: START */

.customers_logo {
    width: 50%;
}

/* customers_logo CSS :: END */

/*--Statistics Section CSS :: START */

.statistics_main {
    background: var(--theme-color);
}

.statistics_main .statistics_content h3 {
    font-size: calc(35px + (45 - 30) * ((100vw - 300px) / (1600 - 300)));
    color: Var(--theme-white);
}

.statistics_main .statistics_content p {
    color: var(--theme-white);
    font-family: "Roboto-Bold", Arial, sans-serif;
    font-size: calc(18px + (22 - 12) * ((100vw - 300px) / (1600 - 300)));
}

.statistics_main .statistics_content::before {
    content: "";
    position: absolute;
    width: 1px;
    right: 0;
    top: 2px;
    height: 95%;
    background: var(--theme-white);
}

.statistics_main .statistics_content:last-child:before {
    content: none;
}

/*--Statistics Section CSS :: END */

/*--DRIVEnSCAN facts Section  CSS:: START--*/

.drivenscan_facts_main .drivenscan_facts_heading h2 b {
    font-weight: 900;
    font-family: "Roboto-Bold", Arial, sans-serif;
}

.drivenscan_facts_main .drivenscan_facts_heading h2 b span {
    color: var(--theme-color);
    font-family: "Roboto-Bold", Arial, sans-serif;
}

.drivenscan_facts_main .drivenscan_facts_content {
    padding: 0 30px;
}

.drivenscan_facts_main .drivenscan_facts_content .row {
    background: #e6e7e9;
    /* vertical-align: middle;
    align-items: center; */
}

.drivenscan_facts_main .drivenscan_facts_content p b {
    font-weight: 900;
}

/* .drivenscan_facts_main .drivenscan_facts_content .drivenscan_facts_heading_bg h4
{
    text-transform: capitalize;
} */
.drivenscan_facts_main .drivenscan_facts_content .drivenscan_facts_heading_bg h4 {
    background: var(--theme-color);
    padding: 5px 10px;
    color: var(--theme-white);
    margin: 0;
}

.drivenscan_facts_main .drivenscan_facts_content ul li {
    font-family: "Roboto-Light", Arial, sans-serif;
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1600 - 300)));
    margin-left: 10px;
    /* word-break: break-all; */
    font-weight: 600;
}

.drivenscan_facts_main .drivenscan_facts_content ul li {
    position: relative;
    /* text-transform: capitalize; */
}

.drivenscan_facts_main .drivenscan_facts_content ul li::before {
    content: "\f13e";
    display: inline-block;
    margin-left: -1.1em;
    width: 1.3em;
    font-family: "Material Design Icons";
    color: var(--theme-color);
    position: absolute;
    top: 2px;
}

/*--DRIVEnSCAN facts Section  CSS:: END--*/

/*DriveNscan Page CSS :: END*/

/*About Us Page CSS :: START*/

/*Our Goals Section CSS :: START*/

.our_goals_main,
.our_goals_main .about_drivenscan_left {
    padding: 0;
}

.our_goals_main .our_goals_heading {
    background: var(--theme-color);
}

.our_goals_main .our_goals_heading h2 {
    font-size: calc(40px + (45 - 30) * ((100vw - 300px) / (1600 - 300)));
}

.our_goals_main .about_drivenscan_left h2 {
    font-size: calc(30px + (45 - 30) * ((100vw - 300px) / (1600 - 300)));
    margin-bottom: 50px;
}

.our_goals_main .about_drivenscan_content {
    /* padding: 10px 0  0 80px; */
    margin: 10px 70px 0;
}

.our_goals_main .about_drivenscan_content p {
    padding-bottom: 10px;
    font-weight: 600;
}

/*Our Goals Section CSS :: END*/

/*Team Section CSS :: START*/

.team_section_main .card {
    border: none;
}

.team_section_main .about_drivenscan_left p {
    font-size: 17px;
}

/*Team Section CSS :: END*/

/*About Us Page CSS :: END*/

/*APP Page CSS :: START*/

.intuitive_main .row {
    vertical-align: middle;
    align-items: center;
}

/*Software Integration CSS :: START*/
.software_integration_content {
    color: white;
}

.software_integration_row .software_integration_content h2 {
    font-size: calc(35px + (45 - 30) * ((100vw - 300px) / (1600 - 300)));
    color: var(--theme-white);
    /* word-break: break-all; */
}

.software_integration_row .software_integration_content img {
    height: auto;
    width: 250px;
    margin: 0 auto;
}

.software_integration_row .software_integration_content.third::before {
    background: transparent;
}

.software_integration_row .software_integration_content::before {
    content: "";
    position: absolute;
    width: 1px;
    right: 0;
    top: 2px;
    height: 95%;
    background: var(--theme-white);
}

.software_integration_row .card {
    width: 100%;
    border: none;
    background-color: transparent;
}

/*Software Integration CSS :: END*/

/*APP Page CSS :: END*/

/*Contact Us Page CSS :: START*/

.contact_form_main {
    vertical-align: middle;
    align-items: center;
}

.contact_form_main .contact_form_content_left {
    background: #d1d2d4;
}

.contact_form_content_left .form-check {
    padding-left: 25px;
}

.contact_form_content_left .form-check input {
    width: 21px;
    height: 21px;
    margin-top: 0.15rem;
}

.contact_form_content_left .form-check label {
    padding-left: 15px !important;
    font-size: 18px;
}

.contact_form_content_left input,
.contact_form_content_left textarea {
    height: 70px;
    font-size: 19px;
    padding: 0;
    margin-bottom: 8px;
    padding-left: 15px;
    font-weight: 600;
    color: black;
}

.error {
    color: red;
    font-weight: bold !important;
    padding-left: 15px;
    margin-top: 5px;
    /* margin-left: 27px; */
}

.contact_form_content_left input[type="text"]::placeholder,
.contact_form_content_left input[type="number"]::placeholder,
.contact_form_content_left input[type="email"]::placeholder {
    color: black;
}

.contact_form_content_left textarea {
    min-height: 150px;
}

.contact_form_content_right .name-adi,
.contact_form_content_right .name-adi span {
    font-family: "Roboto-Bold", Arial, sans-serif;
}

.google_map .google_map_content {
    margin: 0 auto;
}

.contact_form_content_right .name-adi span {
    color: var(--theme-color);
}

.contact_info p,
.contact_info p a {
    font-weight: 600;
}

.phone_info p::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url(../media/icons/phone.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    margin-left: 5px;
    margin-right: 10px;
}

.phone_info p:nth-child(2):before {
    background-image: url(../media/icons/email.png);
}

.phone_info p {
    /* padding-left: 0.3em; */
    margin-bottom: 10px;
}

.contact_address .f-bold::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url(../media/icons/location.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    margin-left: 5px;
    margin-right: 10px;
}

.contact_address .address_details {
    margin-left: 40px;
}

.form_error {
    color: red;
    text-align: left;
    margin: 5px 0;
    padding-left: 65px;
}

/*Contact Us Page CSS :: END*/

/*Haliscanner Page CSS :: START*/

.main-hail-section img {
    display: block;
    width: 100%;
    max-height: 99vh;
    object-fit: contain;
    object-position: bottom;
}

/*Haliscanner Page CSS :: END*/

/* Blog Page Css :: Start */
.blog-section .card {
    box-shadow: 1px 1px 15px 1.5px rgb(114 98 98 / 15%);
    display: grid;
}

.blog-section .card,
.blog-section .card img {
    border-radius: 0 !important;
}

.blog-section .card img {
    min-height: 280px;
    /* max-height: 300px; */
    object-fit: cover;
    width: 100%;
}

.blog-section span,
.blog-section h5 {
    color: #a6a5a5 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    font-family: "Roboto-Medium", Arial, sans-serif;
}

.blog-section .card .card-text {
    font-size: 21px;
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-family: "Roboto";
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    min-height: 150px;
    -webkit-box-orient: vertical;
}

.blog-section .blog-btn {
    padding: 10px 13px;
    border-radius: 8px;
    min-width: 150px;
    font-size: 17px;
    /* position: absolute; */
    bottom: 10px;
}

/* Blog Page Css :: End */

.video-section video {
    width: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    display: block;
    width: 100%;
    /* padding: 20px; */
}

.content-title {
    display: block;
    margin-bottom: 40px;
    font-size: 25px;
    line-height: 27px;
    font-family: Helvetica, sans-serif;
}

.gallery {
    position: relative;
    display: block;
    margin: auto;
    border-radius: 4px;
    overflow: hidden;
}

.gallery .slick-list {
    overflow: hidden;
}

.gallery .slick-slide {
    outline: none !important;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-family: Helvetica, sans-serif;
    line-height: 40px;
    text-align: center;
    background-color: #e6e6e6;
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-arrow:hover {
    background: #d0dfe6;
}

.gallery-arrow.mod-prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.gallery-arrow.mod-next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

/* .gallery-item { */
.blog-section .content {
    position: relative;
    float: left;
    vertical-align: middle;
    text-align: center;
    border: 3px solid #191a1a;
}

.gallery-item img {
    width: 100%;
    height: 500px;
}

.gallery-img-holder {
    display: inline-block;
}

.gallery-img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.slick-lightbox .slick-arrow {
    z-index: 10;
}

.video-section video {
    width: 100%;
    object-fit: cover;
}

/*Lightgallery CSS :: START*/
.lg-slide .lg .lg-autoplay-button,
.lg-slide .lg .lg-fullscreen,
.lg-slide .lg #lg-download,
.lg-slide .lg #lg-share,
.lg-slide .lg #lg-actual-size {
    display: none;
}

/*Lightgallery CSS :: END*/

/*Exibition Modal CSS :: START*/
.modal#exibition_modal_popup .modal-dialog {
    width: 90%;
    max-width: calc(100% - 25%);
}

.modal#exibition_modal_popup .modal_close {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    border: none;
    z-index: 999999999;
    opacity: 01;
    width: 30px;
    height: 30px;
    line-height: 0;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    outline: none;
}

/*Exibition Modal CSS :: END*/

section .breadcrumb.bg-white {
    margin: 0;
    bottom: 0;
}

.card_image_wrapper .inner_card_image_wrapper {
    background-color: white;
    box-shadow: 1px 1px 15px 1.5px rgb(114 98 98 / 40%);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.card_image_wrapper .inner_card_image_wrapper img {
    width: 100%;
    height: 300px;
    min-height: 300px;
    object-fit: cover;
}

.card_image_wrapper .icon_image_wrapper {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: #A62826;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 10px 10px;
}

.card_image_wrapper .icon_image_wrapper img {
    width: 80%;
    height: auto;
    min-height: auto;
}

.card_image_wrapper .text_image_wrapper {
    margin-top: 10px;
    text-align: center;
    margin-bottom: 0;
}

.card_image_wrapper .text_image_wrapper p {
    font-size: 18px;
}


.main-slider .slick-arrow {
    position: absolute;
    top: 50%;
    margin: -20px 0px 0px 0px;
    z-index: 10;
    font-size: 0;
    width: 80px;
    height: 80px;
    border: none !important;
    border-radius: 10%;
    box-shadow: none !important;
    outline: none !important;
}

.main-slider .slick-arrow.slick-prev {
    left: 25px;
    background: white url("../media/long-arrow-left.png") 0 0 / 50% no-repeat;
    background-position: center;
}

.main-slider .slick-arrow.slick-next {
    right: 25px;
    background: white url("../media/long-arrow-right.png") 0 0 / 50% no-repeat;
    background-position: center;
}

img.uni-scanner {
    width: 50%;
    text-align: center;
}