@-webkit-keyframes fade_move_down {
    0% {
        -webkit-transform: translate(0, -10px) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 10px) rotate(0deg);
        opacity: 0;
    }
}

@-moz-keyframes fade_move_down {
    0% {
        -moz-transform: translate(0, -10px) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -moz-transform: translate(0, 10px) rotate(0deg);
        opacity: 0;
    }
}

@keyframes fade_move_down {
    0% {
        transform: translate(0, -10px) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 10px) rotate(0deg);
        opacity: 0;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #000;
    position: relative;
}

.loader {
    border: 4px solid #f3f3f3;
    /* Light grey */
    border-top: 4px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-left: 18px;
    margin-bottom: 2px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.text-blue {
    color: #23A8E0;
}

.bold-text {
    font-weight: 700;
}

input,
textarea {
    background-color: #D9D9D9 !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    border: none !important;
    color: #000 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
}

input::placeholder,
textarea::placeholder {
    color: #737373 !important;
}

input,
textarea:focus {
    box-shadow: none !important;
}

.btn {
    font-size: 24px;
    line-height: normal;
    font-weight: 400;
    padding: 10px 30px;
    transition: all 0.3s;
    border-radius: 10px !important;
}

.btn-primary {
    background-color: #23A8E0 !important;
    border-color: #23A8E0 !important;
}

.btn-primary:hover {
    background-color: #1784b3 !important;
    border-color: #1784b3 !important;
}

/* Header Css Start */
.navbar {
    /* padding: 30px; */
    background: #fff;
    padding: 30px 64px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.navbar .navbar-brand {
    padding: 0px;
    margin: 0px;
}

.navbar .navbar-brand img {
    /* height: 70px; */
    height: 40px;
}

.navbar .navbar-nav .nav-link {
    font-size: 18px !important;
    color: #000;
    transition: all 0.5s;
    padding: 0px 20px;
    font-weight: 600;
}

.navbar .navbar-nav .nav-link.active {
    color: #23A8E0;
}

.navbar .navbar-nav .nav-link:hover {
    color: #23A8E0;
}

.navbar .navbar-nav .nav-link:focus {
    color: #23A8E0;
}

.navbar-light .navbar-toggler {
    color: #23A8E0;
    border-color: #23A8E0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-light .navbar-toggler-icon {
    background-image: url('../img/Humburger-menu.svg');
}

/* Header Css End */

/* Hero Banner Css Start */
.hero-banner {
    /* background-image: url('../img/Banner-bg-modify.jpg'); */
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: left, bottom; */
    height: calc(100vh - 190px);
    margin-top: 100px;

}

.hero-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

/* Hero Banner Css End */

/* About Us Css Start */
.about-us {
    padding: 30px 64px 0px;
}

.about-us h1 {
    /* font-size: 70px; */
    font-size: 36px;
    font-weight: 400;
    margin: 0px;
    text-transform: capitalize;
    text-align: center;
}

.about-us p {
    /* font-size: 32px; */
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    margin: 0px;
    text-align: left;
    margin-top: 30px;
    text-align: justify;
}

/* About Us Css End */

/* Sensor Insight Css Start */
.sensor-insight {
    padding: 30px 64px;
    /* padding: 70px; */
}

.sensor-insight h2 {
    /* font-size: 64px;
    line-height: 87px; */
    font-size: 36px;
    line-height: normal;
    margin: 0px;
    margin-bottom: 30px;
    text-align: center;
}

.sensor-insight .insight-blue-shape {
    min-width: 800px;
    width: 800px;
    margin: 0px auto 30px;
}

.sensor-insight .insight-blue-shape video {
    overflow: hidden;
    overflow-clip-margin: unset;
    object-fit: cover;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.sensor-insight p {
    font-size: 20px;
    /* font-size: 24px; */
    font-weight: 400;
    line-height: normal;
    margin: 0px;
    margin-bottom: 20px;
    text-align: left;
}

.sensor-insight img {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    border-radius: 8px;
}

/* Sensor Insight Css End */

/* Pricing Css Start */
.pricing {
    padding: 30px 64px;
    background-color: #EAF1FF;
}

.pricing h2 {
    font-size: 36px;
    line-height: normal;
    margin: 0px;
    margin-bottom: 30px;
    text-align: center;
}

.price-box {
    background-color: #D7DADF;
    border-radius: 20px;
    text-align: center;
}

.price-box-amount {
    border-radius: 20px 20px 0px 0px;
    padding: 30px 20px 20px;
}

.price-box-amount .price-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700
}

.price-box-amount .amount-main h4 {
    font-size: 70px;
    line-height: 60px;
    margin: 0px;
    color: #fff;
    font-weight: 700;
}

.price-box-amount .amount-main .dollar-sign {
    font-size: 32px;
    line-height: 32px;
    margin: 0px;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: end;
    align-items: end;
    margin-right: 5px;
}

.price-box-amount .amount-main .month-text {
    font-size: 22px;
    line-height: 22px;
    margin: 0px;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: top;
    align-items: top;
    margin-left: 5px;
}

.price-box-amount p {
    color: #fff;
    font-size: 16px;
    margin: 0px;
    line-height: 18px;
    margin-top: 20px;
    font-weight: 600;
}
.price-box-amount p:last-child{
    color: #fff;
    font-size: 12px;
    margin: 0px;
    line-height: 14px;
    margin-top: 20px;
    font-weight: 600;
}

.price-box-amount {
    position: relative;
    background-color: #6B6C6D;
}

.price-box-amount::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #6B6C6D;
    transform: translate(-50%, 100%);
}

.price-box-amount.active::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #23A8E0;
    transform: translate(-50%, 100%);
}

.price-box-amount.active {
    background-color: #23A8E0;
    border-radius: 20px 20px 0px 0px;
}

.price-box-listing {
    padding: 50px 20px;
}

.price-box-listing ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.price-box-listing ul li {
    color: #666666;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 18px;
    font-weight: 600;
    border-bottom: 1px solid #737373;
    padding-bottom: 10px;
}

.price-box-listing ul li:last-child {
    margin-bottom: 0px !important;
}

/* Pricing Css End */

/* Applications Css Start */
.applications-main {
    padding: 30px 64px;
}

.applications-main h2 {
    font-size: 36px;
    line-height: normal;
    margin: 0px;
    margin-bottom: 30px;
    text-align: center;
}

.applications-carousel .owl-stage-outer .owl-stage {
    display: flex;
    align-items: stretch;
    display: flex;
}

.applications-carousel .owl-stage-outer .owl-stage .owl-item {
    display: flex;
}
.applications-carousel .owl-stage-outer .owl-stage .owl-item .item{
    display: flex;
    width: 100%;
}

.applications-carousel .owl-stage-outer .owl-stage .owl-item .box-card {
    background-color: #EAF1FF;
    /* background-color: #D7DADF; */
    padding: 20px;
    border-radius: 20px;
    width: 100%;
}

.applications-carousel .owl-stage-outer .owl-stage .owl-item .box-card .box-image{
    border-radius: 8px;
    margin-bottom: 20px;
}
.applications-carousel .owl-stage-outer .owl-stage .owl-item .box-card .box-image img{
    border-radius: 8px;
}
.applications-carousel .owl-stage-outer .owl-stage .owl-item .box-card .box-content h4 {
    color: #000;
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 12px;
    text-align: center;
}

.applications-carousel .owl-stage-outer .owl-stage .owl-item .box-card .box-content p {
    color: #666666;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0px;
}

.applications-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.applications-carousel .owl-dots button.active {
    background-color: #23A8E0 !important;
}

.applications-carousel .owl-dots button {
    background-color: rgba(25, 25, 26, .10) !important;
    height: 14px;
    width: 14px;
    min-width: 14px;
    margin: 0px 10px !important;
    border-radius: 10px;
}

/* Applications Css End */

/* Get In Touch Css Start */
.get-touch {
    padding: 30px 64px;
}

.get-touch h2 {
    font-size: 36px;
    line-height: normal;
    margin: 0px;
    margin-bottom: 12px;
    text-align: center;
}

.get-touch p {
    font-size: 20px;
    line-height: normal;
    margin: 0px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
}

.get-touch form {
    min-width: 500px;
    width: 500px;
    /* min-width: 690px;
    width: 690px; */
    margin: 0px auto;
}

.scroll-down-animation {
    position: fixed;
    left: 50%;
    bottom: 50px;
    display: block;
    text-align: center;
    /* font-size: 20px; */
    z-index: 100;
    text-decoration: none;
    text-shadow: 0;
    width: 40px;
    height: 40px;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 4s ease-in-out infinite;
    -moz-animation: fade_move_down 4s ease-in-out infinite;
    animation: fade_move_down 4s ease-in-out infinite;
    cursor: pointer;
}

.scroll-down-animation img {
    background-color: #fff;
    border-radius: 50px;
    padding: 15px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.3);
}

.inverted-scroll-up-animation {
    transform: rotate(180deg);
}

/* Get In Touch Css End */


/* Footer Css Start  */

.footer {
    padding: 64px;
    background-color: #EAF1FF;
}

.footer p {
    color: #000;
    font-size: 18px;
    line-height: normal;
    /* margin: 0px 10px !important; */
    font-weight: 300;
    display: flex;
    align-self: center;
}

.footer .glass-logo {
    display: flex;
    align-self: center;
    max-width: 300px;
}

.footer .kaidu-logo {
    display: flex;
    align-self: center;
}


/* Footer Css End  */