@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");


:root {
    scroll-behavior: smooth;
    --gradientred: #b80b0b;
    --gradient: linear-gradient(
        45deg,
        rgb(169 70 70),
        rgba(0, 0, 0, 0.8)
    ) !important;
    --white: #ffffff;

    --fs14: 14px;
    --fs13: 13px;
}
body {
    font-family: sans-serif !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* background-color: red; */
}
.inputgroup {
    width: 150px;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}
.text-danger{
    color: #912e36 !important;
}
.jobCode{
    font-weight: bold !important;
}
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.2, 1.2);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.2, 1.2);
    }
}

.carousel-inner img {
    -webkit-animation: zoom 9s;
    animation: zoom 9s;
}

#main-carouserBox .carousel-inner .carousel-item {
    position: relative;
}

#main-carouserBox .carousel-inner .carousel-item .text--holder {
    position: absolute;
    z-index: 999;
    /* border: 1px solid red; */
    width: 500px;
    left: 100px;
    top: 100px;
}
#main-carouserBox .carousel-inner .carousel-item .text--holder h2 {
    font-size: 58px;
    font-weight: bolder;
    color: #3eff00;
    letter-spacing: 3px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    #main-carouserBox .carousel-inner .carousel-item .text--holder {
        position: absolute;
        z-index: 999;
        /* border: 1px solid red; */
        width: 345px;
        left: 20px;
        top: 30px;
    }

    /* #main-carouserBox .carousel-inner .carousel-item .text--holder h2 {
        font-size: 40px;
        font-weight: bolder;
        color: #961423;
        letter-spacing: 3px;
        line-height: 1.6;
    } */
    #main-carouserBox .carousel-inner .carousel-item .text--holder h2 {
        font-size: 30px;
        font-weight: bolder;
        color: #3eff00;
        letter-spacing: 3px;
        line-height: 1.6;
    }
}

/* **************************NAVBAR START************************** */

.top-header {
    /*background: #961423;*/
        background: linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
}

.top-header a {
    color: #ffff;
    font-size: 16px;
}

.top-header a:hover {
    color: #efefee !important;
    transition: 0.5s linear;
}

.social_icon a i {
    background-color: #ffff;
    padding: 4px;
    border-radius: 8px;
    color: #1589d1;
    font-size: 19px !important;
}

.social_icon a i:hover {
    rotate: 45deg;
    transition: 0.2s linear;
}

.fa-whatsapp {
    color: #18ad01;
}

.fa-twitter {
    color: #1589d1;
}

.navbar {
    /* background: #ded5d5; */
    /* border-bottom: 1px solid var(--red); */
    box-shadow: var(--box-shadow);
    padding: 3px 12px;
    height: 58px;
}

.navbar-brand img {
    height: 45px;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid #961423;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: #961423;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #100f0f !important;
    font-weight: 500;
    transition: all 200ms linear;
    font-size: 15px;
}

.nav-link:hover {
    color: #961423 !important;
}

.nav-item.active {
    color: #39f314 !important;
    background-color: rgba(232, 232, 22, 0.578) !important;

    border-radius: 10px;
}

.nav-link {
    position: relative;
    margin: 0px 16px;
    font-weight: 600;
    display: inline-block;
}

.navbar .btn-primary {
    border: 2px solid #0a0a0a;
    background: none;
    color: #0a0a0a;
    border-radius: 8px;
}

.navbar .btn-primary:hover {
    /* border: 2px solid; */
    background: #961423;
    color: rgb(248, 243, 243);
}

.navbar .btn-secondary {
    border-radius: 8px;
    background: #961423;
    border: none;
}

@media (max-width: 576px) {
    .navbar .btn {
        padding-left: 17px;
        /*margin-left: 54px;*/
        /*margin-bottom: 27px;*/
    }

    .navbar-brand img {
        height: 45px;
    }

    .navbar .btn-secondary {
        border-radius: 8px;
        color: #fff;
        /* background: #961423; */
        border: 1px solid white;
    }

    .navbar .btn-primary {
        border: 2px solid #fff;
        background: none;
        color: #fff;
        border-radius: 8px;
    }

    .nav-link {
        color: #ffff !important;
        font-weight: 500;
        transition: all 200ms linear;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .navbar .btn {
        padding-left: 17px;
        /*margin-left: 50px;*/
        /*margin-top: 13px;*/
        /*margin-bottom: 27px;*/
    }

    .navbar-brand img {
        height: 45px;
    }

    .navbar .btn-secondary {
        border-radius: 8px;
        color: #fff;
        /* background: #961423; */
        border: 1px solid white;
    }

    .nav-link {
        color: #ece8e8 !important;
    }

    .navbar .btn-primary {
        border: 2px solid #fff;
        /* background: none; */
        color: #fff;
        /* border-radius: 8px; */
    }
}

@media screen and (max-width: 840px) {
    .navbar {
        display: block;
    }

    .navbar-toggler {
        margin-top: 10px;
    }

    .nav-item {
        margin: 10px 40px;
    }

    .navbar-collapse {
        position: absolute;
        background: linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8));
        height: 100vh;
        width: 232px;
        left: -240px;
        top: 58px;
        box-shadow: var(--box-shadow);
        padding-top: 10px;
        padding-bottom: 10px;
        transition: 0.3s linear;
    }

    .navbar-collapse.show {
        top: 58px;
        left: 0px;
    }

    .nav-item.active {
        background: transparent !important;
    }
}

/* **************************NAVBAR END************************** */

/* counter Section  */

.counter-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OUR VALUE SECTION  ****************   */

@media (max-width: 576px) {
    .value h2 {
        text-align: center;
    }
}
/* circle counter***** */
.progress {
    width: 115px !important;
    height: 115px !important;
    background-color: white !important;
    display: block !important;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

.progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 7px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}

.progress > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 7px;
    border-style: solid;
    position: absolute;
    top: 0;
    border-color: #961423;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 75px;
    border-bottom-right-radius: 75px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress .progress-right {
    right: 0;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 75px;
    border-bottom-left-radius: 75px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.progress .progress-value {
    display: flex;
    border-radius: 50%;
    font-size: 56px;
    text-align: center;
    line-height: 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 300;
}

.progress .progress-value div {
    margin-top: 10px;
}

.progress .progress-value span {
    font-size: 12px;
    text-transform: uppercase;
}

/* This for loop creates the 	necessary css animation names
  Due to the split circle of progress-left and progress right, we must use the animations on each side.
  */
.progress[data-percentage="10"] .progress-right .progress-bar {
    animation: loading-1 1.5s linear forwards;
}

.progress[data-percentage="10"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="20"] .progress-right .progress-bar {
    animation: loading-2 1.5s linear forwards;
}

.progress[data-percentage="20"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="30"] .progress-right .progress-bar {
    animation: loading-3 1.5s linear forwards;
}

.progress[data-percentage="30"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="40"] .progress-right .progress-bar {
    animation: loading-4 1.5s linear forwards;
}

.progress[data-percentage="40"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="50"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="50"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="60"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="60"] .progress-left .progress-bar {
    animation: loading-1 1.5s linear forwards 1.5s;
}

.progress[data-percentage="70"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="70"] .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.5s;
}

.progress[data-percentage="80"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="80"] .progress-left .progress-bar {
    animation: loading-3 1.5s linear forwards 1.5s;
}

.progress[data-percentage="90"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="90"] .progress-left .progress-bar {
    animation: loading-4 1.5s linear forwards 1.5s;
}

.progress[data-percentage="100"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="100"] .progress-left .progress-bar {
    animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(36);
        transform: rotate(36deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(72);
        transform: rotate(72deg);
    }
}

@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(108);
        transform: rotate(108deg);
    }
}

@keyframes loading-4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(144);
        transform: rotate(144deg);
    }
}

@keyframes loading-5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180);
        transform: rotate(180deg);
    }
}
/* **************************Footer START************************** */

#footer {
    /*background: #961423;*/
        background: linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
}

#footer h5 {
    color: #ffff;
    font-size: 16px;
    font-weight: bold;
}

#footer a {
    text-decoration: none;
    color: rgb(231, 231, 231);
    font-size: 14px;
}
#footer p{
    color: rgb(231, 231, 231);
    font-size: 14px;
}

#footer li {
    /*margin-bottom: 10px;*/
    color: #ffff;
    font-size: 14px;
}

#footer a:hover {
    color: #ffff;
    transition: 0.3s ease-in-out;
}

#footer i {
    color: #ffffff;
    font-size: 14px;
}

#footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgb(231, 231, 231);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

#footer .btn-primary {
    border: 2px solid white;
    background: none;
    color: white;
}

#footer .btn-primary:hover {
    border: 2px solid;
    background: #ffff;
    color: black;
}

#footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    /* margin-right: 10px; */
}

#footer .btn.btn-link:hover {
    color: rgb(238, 245, 239);
    letter-spacing: 1px;
    box-shadow: none;
}

#footer .btn-sign {
    background: var(--red);
    color: #ffff;
    margin-left: 5px;
}

#footer input {
    border: 2px solid var(--red);
    color: var(--red);
}

.footer-bottom {
    background: #ffff;
    /* color: #ffff; */
    font-size: 14px;
}

.footer-bottom a {
    color: var(--black);
}

/* **************************Footer END************************** */

/****************************************** slider start************************ */
#slider {
    background-image: url(/user/image/nilesh-one.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 560px !important;
    width: 100%;
}

#slider .reach {
    color: #f0f7ff;
    font-size: 40px;
    font-weight: 600;
}

@media (max-width: 576px) {
    #slider .reach {
        font-size: 25px;
    }

    #slider .talent {
        font-size: 18px;
    }

    #slider {
        background-image: url(/user/image/nilesh-two.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

#slider .talent {
    color: #f0f7ff;
    font-size: 22px;
}

#slider img {
    width: 100%;
    height: 520px;
}

@media (max-width: 820px) {
    #slider .bottom-img {
        flex-direction: row;
        display: flex;
        justify-content: space-around;
    }

    .info {
        margin-top: 58px;
    }
}

@media (max-width: 576px) {
    #slider img {
        /* width: 100%; */
        height: 270px;
    }

    #slider {
        height: 628px !important;
    }

    #slider .bottom-img {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    #slider .button-hero {
        /* display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column; */
    }
}

#slider .start {
    background-color: #0b255a;
    border: 2px solid white;
    font-weight: 600;
    color: #ffffff !important;
    font-size: 16px;
    padding-left: 15px;
    padding-right: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
}

#slider .chat {
    border: #f1f2f3 2px solid;
    font-size: 15px;
    font-weight: 600;
    color: #f2f3f5 !important;
    padding-left: 15px;
    padding-right: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
}

@media (max-width: 576px) {
    #slider .chat {
        padding-left: 19px !important;
        padding-right: 18px !important;

        margin-left: -10px;
    }

    #slider .start {
        padding-left: 25px !important;
        padding-right: 20px !important;
        /* font-size: 15px !important; */
    }

    #slider {
        height: 491px !important;
    }
}

@media (max-width: 1025px) and (min-width: 992px) {
    #slider .start {
        padding-left: 36px !important;
        padding-right: 44px !important;
    }

    #slider .chat {
        padding-left: 36px !important;
        padding-right: 44px !important;
    }
}

@media (max-width: 768px) {
    #slider .chat {
        padding-left: 40px;
        padding-right: 40px;
        font-size: 15px;
    }

    #slider .start {
        padding-left: 46px;
        font-size: 16px;
        margin-left: -10px;
        padding-right: 50px;
    }

    #slider {
        height: 430px !important;
    }
}

#slider .chat:hover {
    background-color: #010e4b;
    color: #ffffff !important;
}

/****************************************** slider end************************ */

/* ************company start***************** */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    /* height:220px; */
    /* width: 220px; */
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* ************company end***************** */

/* <!-- section-one start--> */
#section-one h3 {
    font-weight: 600;
    font-family: math;
}

#section-one p {
    /* font-weight: 600; */
    letter-spacing: 1px;
}

#section-one .btn-tertiary {
    /* border: #961423 2px solid !important;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    color: #961423 !important; */
    /* height: 50px; */
    font-size: 16px;
    border-radius: 5px;
    border: 1px #961423 solid;
    color: #ffff;
     background:linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
}

@media (max-width: 576px) {
    .none {
        display: none;
    }

    #section-one .btn-tertiary {
        padding-left: 70px;
        padding-right: 70px;
    }

    #section-one img {
        height: 270px !important;
    }

    #section-one h3 {
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    #section-one img {
        height: 425px;
    }
}

#section-one .btn-tertiary:hover {
    border: #961423 2px solid !important;
    /*background-color: #961423 !important;*/
    color: #ffff !important;
    background:linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
}

/* <!-- section-one end--> */

/* <!-- section two start===== --> */
#section-two .btn-tertiary {
    /* border: #961423 2px solid !important;
    padding-left: 14px;
    font-size: 18px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #961423 !important; */
    /*  */
    font-size: 16px;
    border-radius: 5px;
    border: 1px #961423 solid;
    color: #ffff;
      background:linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
}

@media (max-width: 576px) {
    #section-two .btn-tertiary {
        padding-left: 70px;
        padding-right: 70px;
    }

    #section-two img {
        height: 270px !important;
    }

    #section-two h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    #section-two img {
        height: 425px;
    }
}

#section-two .btn-tertiary:hover {
    border: #961423 2px solid !important;
    /*background-color: #961423 !important;*/
    color: #ffff !important;
    background:linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
}

#section-two h3 {
    font-weight: 600;
    font-family: math;
}

#section-two p {
    /* font-weight: 600; */
    letter-spacing: 1px;
}

/* <!-- section two end===== --> */

/* <!-- section-three start--> */
#section-three h3 {
    font-weight: 600;
    font-family: math;
}

#section-three p {
    /* font-weight: 600; */
    letter-spacing: 1px;
}

#section-three .btn-tertiary {
    /* border: #961423 2px solid !important;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    color: #961423 !important; */
    font-size: 16px;
    border-radius: 5px;
    border: 1px #961423 solid;
    color: #961423;
}

@media (max-width: 576px) {
    #section-three .btn-tertiary {
        padding-left: 70px;
        padding-right: 70px;
    }

    #section-three h3 {
        font-size: 23px;
    }

    #section-three img {
        height: 226px !important;
    }
}

@media (max-width: 768px) {
    #section-three img {
        height: 425px;
    }
}

#section-three .btn-tertiary:hover {
    border: #961423 2px solid !important;
    /* background-color: #961423 !important; */
    background-color: #010e4b !important;
    color: #ffff !important;
}

/* <!-- section-three end--> */

/* <!-- section four start===== --> */
#section-four .btn-tertiary {
    border: #010e4b 2px solid !important;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    /* width: 200px !important; */
    color: #010e4b !important;
}

#section-four .btn-tertiary:hover {
    border: #010e4b 2px solid !important;
    background-color: #010e4b !important;
    color: #ffff !important;
}

#section-four h3 {
    font-weight: 600;
    font-family: math;
}

#section-four p {
    font-weight: 600;
    letter-spacing: 1px;
}

/* <!-- section four end===== --> */

/* <!-- section-five= start --> */

#five .testimonial {
    /* background: #010e4b; */
    padding: 30px 32px 10px 90px;
    margin: 50px 20px 50px 157px;
    border-radius: 0 100px 100px 0;
    color: #fff;
    position: relative;
    /* border: 5px solid #d0ab6d; */
}

#five .testimonial .pic {
    width: 210px;
    height: 210px;
    line-height: 200px;
    border-radius: 50%;
    border: 8px solid #010e4b;
    position: absolute;
    top: -15px;
    left: -120px;
    overflow: hidden;
}

#five .testimonial .pic img {
    width: 100%;
    height: 100%;
}

#five .testimonial .testimonial-info {
    display: inline-block;
    width: 35%;
    float: left;
    font-size: 20px;
    font-weight: 700;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 28px 25px;
    margin: 0;
    border-right: 1px solid rgb(46, 230, 14);
}

@media (max-width: 768px) {
    #five .testimonial .testimonial-info {
        font-size: 30px;
        width: 100%;
    }

    #five .testimonial .testimonial-info small {
        font-size: 24px !important;
    }

    #five .testimonial .pic {
        top: 56px;
    }

    #five .testimonial .description {
        width: 100% !important;
        font-size: 25px !important;
    }
}

#five .testimonial .testimonial-info small {
    display: block;
    font-size: 12px;
    color: #0b0b0b;
    margin-top: 5px;
}

#five .testimonial .description {
    display: inline-block;
    width: 65%;
    font-size: 15px;
    color: #0b0b0b;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    padding: 28px 0 28px 28px;
    position: relative;
}

#five .testimonial .description:before {
    content: "\f10d";
    font-family: fontawesome;
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 20px;
    color: #010e4b;
}

#five .testimonial .description:after {
    content: "\f10e";
    font-family: fontawesome;
    font-size: 20px;
    color: #010e4b;
    position: absolute;
    bottom: 5px;
}

#five .owl-theme .owl-controls .owl-page.active span,
#five .owl-theme .owl-controls .owl-page span {
    width: 25px !important;
    height: 7px !important;
    background: #4d241c !important;
    box-sizing: content-box;
}

#five .owl-theme .owl-controls .owl-page span {
    border: 4px solid transparent;
    background: #d0ab6d !important;
}

@media only screen and (max-width: 767px) {
    #five .testimonial {
        border-radius: 40px;
        margin: 90px 15px 0;
        padding: 100px 40px 30px 40px;
    }

    #five .testimonial .pic {
        position: absolute;
        top: -85px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    #five .testimonial .testimonial-info {
        width: 100%;
        float: none;
        border-right: none;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    #five .testimonial .description {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    #five .testimonial {
        padding: 106px 0px 30px;
    }
}

#five .img-responsive {
    vertical-align: inherit;
}

#five .btn-fourth {
    border: 3px solid #010e4b;
    font-weight: 600;
    color: #010e4b;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (max-width: 576px) {
    #five .btn-fourth {
        padding-left: 81px;
        padding-right: 97px;
    }

    #five .testimonial .testimonial-info {
        font-size: 14px;
        width: 100%;
    }

    #five .testimonial .testimonial-info small {
        font-size: 14px !important;
    }

    #five .testimonial .description {
        width: 100% !important;
        font-size: 15px !important;
    }
}

#five .btn-fourth:hover {
    border: 3px solid #010e4b;
    color: #fff;
    background: #010e4b;
}

#five .studies {
    text-align: center;
}

/* <!-- section-five= end --> */

/* <!-- section-six start- --> */

#six .heading {
    color: #010e4b;
    text-align: center;
}

#six img {
    height: 100px !important;
}

@media (max-width: 576px) {
    #six .img {
        text-align: center;
    }
}

/* <!-- section-six end- --> */

/* <!-- section-seven start --> */
#seven .heading h3 {
    font-weight: 700;
    color: black;
    font-size: 25px;
}

#seven .heading {
    text-align: center;
}

#cards_landscape_wrap-2 {
    text-align: center;
    /* background: #F7F7F7; */
}

#cards_landscape_wrap-2 a {
    text-decoration: none;
    outline: none;
}

#cards_landscape_wrap-2 .card-flyer {
    border-radius: 5px;
}

#cards_landscape_wrap-2 .card-flyer .top {
    height: 270px !important;
}

@media (max-width: 768px) {
    #cards_landscape_wrap-2 .card-flyer .top {
        height: 210px !important;
    }
}

#cards_landscape_wrap-2 .card-flyer .image-box {
    background: #ffffff;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 5px;
}

#cards_landscape_wrap-2 .card-flyer .image-box img {
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    width: 100%;
    height: 210px;
}

#cards_landscape_wrap-2 .card-flyer:hover .image-box img {
    opacity: 0.7;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

#cards_landscape_wrap-2 .card-flyer .text-box {
    text-align: center;
}

#cards_landscape_wrap-2 .card-flyer .text-box .text-container {
    padding: 20px 27px;
}

#cards_landscape_wrap-2 .card-flyer {
    background: #ffffff;
    margin-top: 50px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

@media (max-width: 576px) {
    #cards_landscape_wrap-2 .card-flyer {
        margin-top: 20px;
    }
}

#cards_landscape_wrap-2 .card-flyer:hover {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 50px;
}

#cards_landscape_wrap-2 .card-flyer .text-box p {
    margin-top: 10px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 17px;
    letter-spacing: 1px;
    color: #000000;
    text-align: start !important;
    /* font-weight: 600; */
}

#cards_landscape_wrap-2 .card-flyer .text-box h6 {
    margin-top: 0px;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Roboto Black", sans-serif;
    letter-spacing: 1px;
    color: #00acc1;
}

#seven .line_clamp_one {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

#seven .line_clamp_two {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* <!-- section-seven end --> */

/* <!-- section-eight-start --> */
.start {
    background-color: #010e4b;
    font-weight: 600;
    color: #ffffff !important;
    padding-left: 49px;
    /* padding-right: 50px; */
    padding-top: 15px;
    padding-bottom: 15px;
}

.chat {
    border: #010e4b 2px solid;
    font-weight: 600;
    color: #010e4b !important;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 14px;
    padding-bottom: 14px;
}

@media (max-width: 576px) {
    .chat {
        /* padding-left: 52px !important; */
        padding-right: 54px !important;
        /* margin-left: -10px; */
    }

    .start {
        /* padding-left: 44px !important; */
        padding-right: 36px !important;
    }
}

@media (max-width: 1025px) and (min-width: 992px) {
    .start {
        padding-left: 36px !important;
        padding-right: 44px !important;
    }

    .chat {
        padding-left: 36px !important;
        padding-right: 44px !important;
    }
}

@media (max-width: 768px) {
    .chat {
        /* padding-left: 79px; */
        padding-right: 74px;
        font-size: 23px;
    }

    .start {
        /* padding-left: 70px; */
        font-size: 23px;
        /* margin-left: -10px; */
        padding-right: 58px;
    }
}

.btn_height {
    height: 38px;
    /* width: 127px !important; */
    font-size: 16px;
    border-radius: 11px;
    border: 1px #961423 solid;
    /*background-color: #961423;*/
    color: white !important;
        background: linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
}

.btn_chat {
    height: 38px;
    /* width: 127px !important; */

    font-size: 16px;
    border-radius: 11px;
    border: 1px #961423 solid;
    /* font-weight: 600; */

    color: #961423;
}

.btn_chat:hover {
    background-color: #961423;
    color: #ffffff !important;
}

/* <!-- section-eight-end --> */

/* <!-- about-one section start===== --> */

#about-one .heading h3 {
    font-family: math;
    font-size: 25px !important;
    font-weight: 600;
}

#about-one p {
    /*font-family: math;*/
    /* font-weight: 600; */
}

/* <!-- about-one section end===== --> */

/* <!-- about-section two start== --> */
#about-two {
    background-color: #f9fbff;
}

/* #about-two .img img{
    color: #01a707 !important;
} */
#about-two h2 {
    font-weight: 600;
    font-family: math;
    text-align: center;
}

#about-two .para p {
    color: #961423 !important;
    font-weight: 600;
}

#about-two .description {
    color: #010e4b;
    /* font-weight: 600; */
}

/* <!-- about-section two end== --> */

/* <!-- about-section three start== --> */
#about-three h3 {
    font-size: 35px;
    font-weight: 600;
}

/* .column-reverse{
    flex-direction: column-reverse;
} */

@media (max-width: 576px) {
    #about-three h3 {
        font-size: 29px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .column-reverse {
        flex-direction: column-reverse;
    }
}

#about-three .first {
    /*font-size: 16px;*/
    color: #010e4b;
    /* font-weight: 600; */
}

#about-three .second {
    color: #010619;
    font-size: 16px;
    font-weight: 600;
}

/* <!-- about-section three end== --> */

/* <!-- about-section four start== --> */
#about-four h3 {
    font-size: 35px;
    font-weight: 600;
}

#about-four p {
    /*font-size: 16px;*/
    color: #010e4b;
    /* font-weight: 600; */
}

/* <!-- about-section four end== --> */

/* service one start----- */
#service-one h1 {
    font-size: 30px;
    font-weight: 600;
}

@media (max-width: 576px) {
    #service-one h1 {
        font-size: 24px;
        font-weight: 600;
    }
}

#service-one p {
    font-size: 16px;
    /* color: #010e4b; */
    /* font-weight: 600; */
}

/* service one end----- */

/* service two start----- */
#service-two {
    background-color: #f9fbff;
}

#service-two .big-number {
    display: flex;
}

#service-two .big-number__number {
    margin-right: 2.25rem;
    /* -ms-flex-negative: 0; */
    flex-shrink: 0;
}

#service-two .big-number__number span {
    height: 4.125rem;
    width: 4.125rem;
    background: linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
    border-radius: 50%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2rem;
    letter-spacing: 1.5px;
}

#service-two .text-secondary {
    color: #961423 !important;
        font-size: 18px;
    font-weight: bold;
}

#service-two .big-number__content > :last-child {
    margin-bottom: 0;
}

#service-two h3 {
    line-height: 32px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25em;
}

/* service two end----- */

/* <!-- service three start------- --> */
#service-three .sub-heading {
    /* border-bottom: 1px solid rgb(107, 99, 99); */
    color: #a41c25 !important;
    font-size:18px;
    font-weight:bold;
}

#service-three .icon {
    /* border-bottom: 1px solid rgb(107, 99, 99); */
    color: #a41c25 !important;
    font-size: 43px;
}

#service-three h5 {
    font-weight: 600;
}

#service-three p {
    /* font-weight: 600; */
    /*font-family: math;*/
    /*font-size: 15px;*/
}

#service-three .benefit {
    display: flex;
}

#service-three .benefit__image {
    margin-right: 2.25rem;
}

/* <!-- service three end------- --> */

/* <!-- blog -one start--------- --> */

.input-group {
    position: relative;
}

#blog-one label {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translatey(-50%);
    color: rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

#blog-one input {
    width: 100%;
    padding: 8px 30px 8px 12px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    outline: none;
    font-size: 16px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.06);
    color: #094470;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 1px;
    transition: all 0.2s ease;
}

#blog-one input:focus {
    border-color: #094470;
}

#blog-one input:focus + label {
    transform: scale(1.05) translatey(-50%);
    color: #094470;
}

#blog-one .line_clamp_one {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 25px;
}

#blog-one .card-flyer:hover .line_clamp_one {
    text-decoration: underline;
}

#blog-one .line_clamp_two {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #010e4b;
    letter-spacing: 2px;
    line-height: 27px;
    /* padding: 7px; */
}

/* <!-- blog -one end--------- --> */

/* <!-- contact- section start---------- --> */

#contact .heading h3 {
    color: #961423;
    font-weight: 600;
}

#contact .heading p {
    color: #961423;
    font-weight: 600;
}

#contact ul {
    list-style: none;
}

#contact input {
    overflow: hidden;
}

/* .contact-form {
    width: 80vw;
    display: flex;
    justify-content: space-between;
    background: #fff;
    margin: 50px 0;
} */

/* @media(max-width:576px) {
    .contact-form {

        margin: 25px 0;
    }
} */

/* .contact-form>* {
    width: 50%;
} */

.contact-form .first-container {
    background: linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)),
        url(https://colorlib.com/etc/cf/ContactFrom_v17/images/bg-01.jpg) center
            center/cover no-repeat;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.contact-form .btn-send {
    /*background-color: #961423;*/
    background:linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
    color: #ffffff !important;
    text-align: center;
}

.contact-form .first-container .info-container div {
    margin: 24px 0;
}

@media (max-width: 576px) {
    .contact-form .info-container {
        text-align: center;
    }
}

.contact-form .first-container .info-container div h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: 10px;
}

.contact-form .first-container .info-container div:first-of-type p {
    max-width: 260px;
    color: #ffffff;
}

.contact-form .first-container .info-container div p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}

@media screen and (max-width: 700px) {
    .contact-form {
        flex-direction: column-reverse;
    }

    .contact-form .first-container {
        padding: 40px 0;
    }
}

/* <!-- contact- section end---------- --> */

/* blog-page -one start */
#blog-one-page .line_clamp_one {
    color: #010e4b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
}

#blog-one-page .line_clamp_one:hover {
    text-decoration: underline;
}

#blog-one-page .card:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

#blog-one-page a {
    text-decoration: none !important;
}

#blog-one-page .heading-right {
    font-size: 18px;
    font-family: serif;
    font-weight: 600;
    color: 010e4b;
}

#blog-one-page .paragraph h4 {
    color: #010e4b;
    font-size: 30px;
}

#blog-one-page .paragraph .qus {
    color: #0b0b0b;
    font-size: 24px;
    font-family: "Times New Roman", Times, serif !important;
}

@media (max-width: 576px) {
    #blog-one-page .heading-right h1 {
        font-size: 20px;
        font-weight: 600;
    }

    #blog-one-page .paragraph h4 {
        font-size: 22px;
        font-weight: 600;
    }

    #blog-one-page .paragraph .qus {
        font-size: 18px;
        font-weight: 600;
    }
}

/* end blog page one  */

/* staert hiring start */

.info ul {
    list-style: none;
    padding-left: 0;
}

.info ul li {
    margin-bottom: 6px;
}

.info ul li i {
    margin-right: 20px;
}

.info p {
    color: #010e4b;
}

.info img {
    padding: 10px;
}

.form input {
    border: 2px solid;
    background: white;
    padding: 10px;
}

.form .btn {
    background: #010e4b;
    color: white;
    text-transform: uppercase;
}

.form .btn-lg {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#eight .modal-img img {
    height: 100px !important;
    width: 100%;

}
#eight{
      margin-top: 40px !important;
      background-color:white !important;
}
.btn-send {
    border: 1px solid #010e4b;
    background-color: #ffffff;
    color: #010619 !important;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* staert hiring end */

/* floating start */
#center-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#chat-circle {
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: #010e4b;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: white;
    padding: 28px;
    cursor: pointer;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.6),
        0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.btn#my-btn {
    background: white;
    padding-top: 13px;
    padding-bottom: 12px;
    border-radius: 45px;
    padding-right: 40px;
    padding-left: 40px;
    color: #5865c3;
}

#chat-overlay {
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: none;
}

.chat-box {
    display: none;
    background: #efefef;
    position: fixed;
    right: 30px;
    bottom: 23px;
    width: 350px;
    max-width: 85vw;
    max-height: 100vh;
    border-radius: 5px;
    /*   box-shadow: 0px 5px 35px 9px #464a92; */
    box-shadow: 0px 5px 35px 9px #ccc;
}

.chat-box-toggle {
    float: right;
    margin-right: 15px;
    cursor: pointer;
}

.chat-box-header {
    background: #010e4b;
    height: 70px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: white;
    text-align: center;
    font-size: 20px;
    padding-top: 17px;
}

.chat-box-body {
    position: relative;
    height: 370px;
    height: auto;
    border: 1px solid #ccc;
    overflow: hidden;
}

.chat-box-body:after {
    content: "";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAgOCkiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGNpcmNsZSBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIgY3g9IjE3NiIgY3k9IjEyIiByPSI0Ii8+PHBhdGggZD0iTTIwLjUuNWwyMyAxMW0tMjkgODRsLTMuNzkgMTAuMzc3TTI3LjAzNyAxMzEuNGw1Ljg5OCAyLjIwMy0zLjQ2IDUuOTQ3IDYuMDcyIDIuMzkyLTMuOTMzIDUuNzU4bTEyOC43MzMgMzUuMzdsLjY5My05LjMxNiAxMC4yOTIuMDUyLjQxNi05LjIyMiA5LjI3NC4zMzJNLjUgNDguNXM2LjEzMSA2LjQxMyA2Ljg0NyAxNC44MDVjLjcxNSA4LjM5My0yLjUyIDE0LjgwNi0yLjUyIDE0LjgwNk0xMjQuNTU1IDkwcy03LjQ0NCAwLTEzLjY3IDYuMTkyYy02LjIyNyA2LjE5Mi00LjgzOCAxMi4wMTItNC44MzggMTIuMDEybTIuMjQgNjguNjI2cy00LjAyNi05LjAyNS0xOC4xNDUtOS4wMjUtMTguMTQ1IDUuNy0xOC4xNDUgNS43IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PHBhdGggZD0iTTg1LjcxNiAzNi4xNDZsNS4yNDMtOS41MjFoMTEuMDkzbDUuNDE2IDkuNTIxLTUuNDEgOS4xODVIOTAuOTUzbC01LjIzNy05LjE4NXptNjMuOTA5IDE1LjQ3OWgxMC43NXYxMC43NWgtMTAuNzV6IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIvPjxjaXJjbGUgZmlsbD0iIzAwMCIgY3g9IjcxLjUiIGN5PSI3LjUiIHI9IjEuNSIvPjxjaXJjbGUgZmlsbD0iIzAwMCIgY3g9IjE3MC41IiBjeT0iOTUuNSIgcj0iMS41Ii8+PGNpcmNsZSBmaWxsPSIjMDAwIiBjeD0iODEuNSIgY3k9IjEzNC41IiByPSIxLjUiLz48Y2lyY2xlIGZpbGw9IiMwMDAiIGN4PSIxMy41IiBjeT0iMjMuNSIgcj0iMS41Ii8+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTkzIDcxaDN2M2gtM3ptMzMgODRoM3YzaC0zem0tODUgMThoM3YzaC0zeiIvPjxwYXRoIGQ9Ik0zOS4zODQgNTEuMTIybDUuNzU4LTQuNDU0IDYuNDUzIDQuMjA1LTIuMjk0IDcuMzYzaC03Ljc5bC0yLjEyNy03LjExNHpNMTMwLjE5NSA0LjAzbDEzLjgzIDUuMDYyLTEwLjA5IDcuMDQ4LTMuNzQtMTIuMTF6bS04MyA5NWwxNC44MyA1LjQyOS0xMC44MiA3LjU1Ny00LjAxLTEyLjk4N3pNNS4yMTMgMTYxLjQ5NWwxMS4zMjggMjAuODk3TDIuMjY1IDE4MGwyLjk0OC0xOC41MDV6IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIvPjxwYXRoIGQ9Ik0xNDkuMDUgMTI3LjQ2OHMtLjUxIDIuMTgzLjk5NSAzLjM2NmMxLjU2IDEuMjI2IDguNjQyLTEuODk1IDMuOTY3LTcuNzg1LTIuMzY3LTIuNDc3LTYuNS0zLjIyNi05LjMzIDAtNS4yMDggNS45MzYgMCAxNy41MSAxMS42MSAxMy43MyAxMi40NTgtNi4yNTcgNS42MzMtMjEuNjU2LTUuMDczLTIyLjY1NC02LjYwMi0uNjA2LTE0LjA0MyAxLjc1Ni0xNi4xNTcgMTAuMjY4LTEuNzE4IDYuOTIgMS41ODQgMTcuMzg3IDEyLjQ1IDIwLjQ3NiAxMC44NjYgMy4wOSAxOS4zMzEtNC4zMSAxOS4zMzEtNC4zMSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjEuMjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvZz48L3N2Zz4=");
    opacity: 0.1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    position: absolute;
    z-index: -1;
}

#chat-input {
    background: #f4f7f9;
    width: 100%;
    position: relative;
    height: 47px;
    padding-top: 10px;
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 15px;
    border: none;
    resize: none;
    outline: none;
    border: 1px solid #ccc;
    color: #888;
    border-top: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
}

.chat-input > form {
    margin-bottom: 0;
}

#chat-input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ccc;
}

#chat-input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ccc;
}

#chat-input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ccc;
}

#chat-input:-moz-placeholder {
    /* Firefox 18- */
    color: #ccc;
}

.chat-submit {
    position: absolute;
    bottom: 3px;
    right: 17px;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 50%;
    color: #5a5eb9;
    width: 35px;
    height: 35px;
}

.chat-logs {
    padding: 15px;
    height: 370px;
    overflow-y: scroll;
}

.chat-logs::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.chat-logs::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

.chat-logs::-webkit-scrollbar-thumb {
    background-color: #5a5eb9;
}

@media only screen and (max-width: 500px) {
    .chat-logs {
        height: 40vh;
    }
}

.chat-msg.user > .msg-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    float: left;
    width: 15%;
}

.chat-msg.self > .msg-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    float: right;
    width: 15%;
}

.cm-msg-text {
    background: white;
    padding: 10px 15px 10px 15px;
    color: #666;
    max-width: 75%;
    float: left;
    margin-left: 10px;
    position: relative;
    margin-bottom: 20px;
    border-radius: 30px;
}

.chat-msg {
    clear: both;
}

.chat-msg.self > .cm-msg-text {
    float: right;
    margin-right: 10px;
    background: #5a5eb9;
    color: white;
}

.cm-msg-button > ul > li {
    list-style: none;
    float: left;
    width: 50%;
}

.cm-msg-button {
    clear: both;
    margin-bottom: 70px;
}

/* floating end */
/* INDUSTRY PAGE */
.industry_btn {
    border: #dc2328 solid 2px;
    background: linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
    color: white;
    border-radius: 30px;
}

.industry_btn1 {
    border: #dc2328 solid 2px;
    background-color: white;
    color: #dc2328;
    border-radius: 30px;
}

.single-img {
    position: relative;
    width: 100%;
    float: left;
    margin: 0 1%;
    border-radius: 40px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.image {
    display: block;
    width: 100%;
    height: 240px;
    border-radius: 40px;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 40px;
    background-color: #ca1212a3;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
    margin: auto;
}

.single-img:hover .img-overlay {
    height: 100%;
    border-radius: 40px;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 10px;
    /* font-family: poppins; */
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.6;
    padding: 14px;

    /* font-weight: bold; */
    /* box-sizing: content-box; */
}
.text span {
    font-weight: 300;
}

/* ignore the code below */

.link-area {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    border-radius: 40px;
    background: tomato;
}
.link-area a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
}


.section-heading .heading {
    font-size: 24px;
    font-weight: 600;
    color: #912e36 !important;
}


#industryGallery .sub-heading{
    color: #a41c25 !important;
    font-weight: 700;
}

.blogHeading{
    color: #961423 !important;
}

.callback h3 {
    font-weight: 800;
    /* overflow-x: hidden; */
}

.section-title {
    position: relative;
    left: 60px;
    display: inline-block;
}

@media (max-width: 768px) {
    .section-title {
        left: 57px;
    }

}

.emailus .btn-1 {
    background: linear-gradient(45deg, rgb(169 70 70), rgba(0, 0, 0, 0.8)) !important;
    color: #fff;
    transition: all 0.2s ease-in-out;
}

.emailus .btn-1:hover {
    position: relative;
    top: -3px;
    box-shadow: -6px 14px 12px 2px rgba(90, 90, 90, 0.12);
}




/* <!-- cll back start --> */
.info {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    margin-top: 250px;
    margin-left: 200px;
}


@media (max-width: 768px) {
    .info {
        margin-top: 42px !important;
        margin-left: 2px !important;
    }
}


@media (max-width: 576px) {
    .section-title {
        left: 0px;
    }
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: #961423;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: #961423;
}

.section-title.text-end::after {
    display: none;
}
