@charset "utf-8";


/* Common Css */

:root {
    --blue: #2d519b;
    --blue-bdr: #718abd;
    --pink: #dc0a84;
    --light-pink: #ffccea;
    --brown: #342424;
    --white: #ffffff;
    --black: #000000;
    --gray: #707070;
    --sky: #e3e8ff;
    --light-gray: #e3dede;
    --more-l-gray: #d3d3d3;
    --more-gray: #e9ecef;
    --al-white: #fbfbfb;
    --dark-gray: #383838;
    --nero: #1d1c1c;
    --box-shadow: #1e1e1e1a;
    --bg2: #eff7ff;
    --border: #d1cbcb;
}

@font-face {
    font-family: segoe;
    src: url("../fonts/segoe-ui.woff") format("opentype")
}

body {

    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

* {
    border: medium none;
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: 900;
    font-size: 55px;
    color: var(--pink);
    margin-bottom: 20px;
}

h1 span {
    color: var(--blue);
}

h2 {
    font-weight: 900;
    font-size: 40px;
    color: var(--pink);
    margin-bottom: 30px;
}

h2 span {
    color: var(--blue);
}

h3 {}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--brown);
}

.bld {
    font-weight: 900;
    font-size: 19px;
    margin-bottom: 16px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

}

a {
    text-decoration: none;
    outline: none !important;
    margin: 0;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: none;
}

textarea {
    resize: none;
    outline: none !important;
    box-shadow: none !important;
    height: 80px;
}

.btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    border-radius: 6px;
    padding: 9px 13px;
    margin-left: 10px;
}

.btn1 img {
    width: 14px;
    margin-right: 5px;
    height: 14px;
    object-fit: contain;
}

.btn1 span {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.btn1:hover {
    background: var(--blue);
}

input,
button {
    outline: none !important;
    box-shadow: none !important;
}

/* header section */
.main-navsec {
    padding: 15px 0;
    position: relative;
    box-shadow: 0 0 9px var(--light-gray);
}

.mn-navgrid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

a.logosec {
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-start;
}

a.logosec img {
    width: 140px;
    margin-right: 15px;
}

a.logosec span p{
    padding-left: 15px;
    border-left: 1px solid var(--more-l-gray);
    font-family: 'segoe';
    font-size: 13px;
    color: var(--gray);
    line-height: 17px;
    margin-bottom: 0;
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--nero) !important;
    line-height: 27px;
}

.dropdown-toggle::after {
    background: url(../images/drop.png)left top no-repeat;
    height: 8px;
    width: 13px;
    background-size: contain;
    border: none !important;
    top: 3px;
    position: relative;
}

.nav-btns a:nth-child(1) {
    background: var(--blue);
}

.nav-btns a:nth-child(1):hover {
    background: var(--pink);
}

.nav-item .dropdown-menu {
    padding: 0;
    border-radius: 0;
    background-color: var(--al-white);
}

.nav-item .dropdown-menu {
    padding: 0;
    border-radius: 0;
    background-color: var(--al-white);
}

.nav-item .dropdown-menu .dropdown-item {
    font-size: 13px;
    line-height: 25px;
    z-index: 99;
}

.nav-item .dropdown-menu .dropdown-item:hover {
    color: var(--black) !important;
    background-color: var(--more-gray) !important;
}

.dropdown-item:active {
    color: var(--black) !important;
    background-color: var(--more-gray) !important;
}

.fixed-top {
    top: -40px;
    transform: translateY(40px);
    transition: transform .3s;
    background: var(--white);
    position: fixed;
}

/* header section end*/

/* Home Banner Section */
.banner-section {
    padding: 65px 0;
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
}

p.bnr-para {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 36px;
    color: var(--nero);
    line-height: 45px;
}

p.bnr-para span {
    font-weight: 700;
    color: var(--pink);
}

.banner-image img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.banner-section a.btn1 {
    margin-top: 25px;
    margin-left: 0;
    padding: 11px 25px;
}

.banner-section a.btn1 span {
    font-size: 24px;
}

.banner-section a.btn1 img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

/* Home Banner Section end*/

/* Home about Section */

.home-about {
    padding: 0 0 65px 0;
}

.home-about h2 {
    text-align: center;
    margin-bottom: 50px;
}

.main-about-sec {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--more-l-gray);
}
.main-about-sec:last-child {
    margin: 0;
    border: none;
    padding: 0;
}
.home-about-img {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}
.home-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-about .home-about-img {
    height: auto;
}
.service-grids .table>:not(caption)>*>*{
    border-bottom-width: 0
}

.service-grids .home-about-text ul {
    list-style-type: circle;
    margin-top: 5px;
    padding-left: 17px;
    display: flex;
    flex-wrap: wrap;
}
.service-grids .home-about-text ul li {
    width: 100%;
    font-size: 14px;
    margin-bottom: 5px;
    padding-right: 25px;
}
.service-grids .home-about-text ul ul{
    margin-top:6px;    
}
.home-about-text p:last-child{
    margin: 0;
}


/* Home about Section end*/

/* Home Trusted Partner*/
.trusted-partner {
    padding: 0 0 65px 0;
}

.trusted-partner h2 {
    text-align: center;
    margin-bottom: 50px;
}

.partner-logo img {
    width: auto !important;
    object-fit: contain;
    height: 96px !important;
    max-width: 100%;
}

/* Home Trusted Partner End*/

/* Home Latest Update*/

.latest-update {
    padding: 35px 0 65px 0;
}

.l-update-head {
    text-align: center;
    margin-bottom: 40px;
}

.l-update-head p {
    color: var(--gray);
}

.l-update-head h2 {
    margin-bottom: 25px;
}

.single-ltupgrid {
    border-radius: 23px;
    overflow: hidden;
}

.latest-update-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.latest-update-text {
    padding: 30px 25px;
    box-shadow: 0px 0px 99px var(--box-shadow);
    border-left: 1px solid var(--pink);
    border-right: 1px solid var(--pink);
    border-bottom: 1px solid var(--pink);
    border-top: none;
    border-radius: 0 0 23px 23px;
    background: var(--white);
}

.latest-update-text .bld {
    color: var(--dark-gray);
}

.latest-update-text p {
    color: var(--gray);
}

.latest-update-text ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.latest-update-text ul li {
    font-size: 15px;
    color: var(--gray);
    font-weight: 400;
    position: relative;
    margin-right: 30px;
}

.latest-update-text ul li a {
    color: var(--blue);
    font-size: 15px;
}

.latest-update-text ul li:nth-child(1)::before {
    position: absolute;
    content: '';
    right: -15px;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--gray);
}

.view-allbtn {
    text-align: center;
    margin-top: 40px;
}

.view-allbtn a {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-transform: capitalize;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: var(--blue);
    padding: 7px 25px;
}

.view-allbtn a img {
    margin-left: 6px;
    height: 20px;
}

.view-allbtn a:hover {
    background: var(--pink);
}

/* Home Latest Update End*/

/* Home SERVICE Start*/
.hm-sevicesec {
    margin: 65px 0;
}

.hm-sr-imgsec {
    position: relative;
    z-index: 1;
    height: 495px;
}

.hm-sr-imgsec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-servgrid {
    border: 1px solid var(--pink);
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 0px 0px 15px var(--box-shadow);
    margin: 15px 0;
}

.serv-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.serv-text {
    padding: 40px 25px;
    background: var(--white);
}

.serv-text .bld {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.serv-text p {
    color: var(--gray);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.serv-text a {
    display: flex;
    margin-top: 20px;
    align-items: center;
    color: var(--blue);
    transition: 0.5s;
}
.serv-text a img{
    width:  15px !important;
    margin-left: 5px;
    position: relative;
    filter: invert(28%) sepia(19%) saturate(3349%) hue-rotate(193deg) brightness(92%) contrast(91%);
    transition: 0.5s;
    left: 0;
}
.serv-text a:hover {
    color: var(--black);
}
.serv-text a:hover img{
    filter: brightness(0);
    left: 5px;
}
.service-description{
    word-break: break-word;
    white-space: pre-wrap;  
    -moz-white-space: pre-wrap;
}

.foo-text a{
    color: #fff; margin-left: 8px;
}
.close{
    color: var(--blue);
    font-size: 18px;;
}

@keyframes bounce {
    0%,{transform: translateX(0);} 
    60% {transform: translateX(-20px);} 
    100% {transform: translateX(0);}
 } 
@keyframes pulse-black {
0% {
    transform: scale(0.75);
    opacity: 0.5;
}

70% {
    transform: scale(0.90);
    opacity: 1;
}

100% {
    transform: scale(0.75);
    opacity: 0.5;
}
}
.hm-sr-imgsec::before {
    position: absolute;
    content: '';
    left: 0;
    top: -38px;
    width: 145px;
    height: 145px;
    background: url(../images/service-bef.png) left top no-repeat;
    background-size: contain;   
    -webkit-animation-duration: 3s;
    animation-duration: 3s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both;
    -webkit-animation-name: pulse-black; 
    animation-name: pulse-black;
    animation-iteration-count: infinite; 
    border-radius: 50%;
}

.hm-sr-imgsec::after {
    position: absolute;
    content: '';
    right: 10px;
    top: 30px;
    width: 39px;
    height: 133px;
    background: url(../images/service-aft.png) left top no-repeat;
    background-size: contain;
    -webkit-animation-duration: 5s;
    animation-duration: 5s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both;
    -webkit-animation-name: bounce; 
    animation-name: bounce;
    animation-iteration-count: infinite;
}

.mn-sr-slide h2 {
    margin-bottom: 40px;
}

.mn-sr-slide {
    position: relative;
    z-index: 2;
    margin-top: -400px;
}

.srv-book-btn {
    margin-top: 35px;
    text-align: center;
}

.srv-book-btn a.btn1 {
    margin-top: 25px;
    margin-left: 0;
    padding: 11px 25px;
}

.srv-book-btn a.btn1 span {
    font-size: 24px;
}

.srv-book-btn a.btn1 img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

/* Home SERVICE End*/

/* Home TESTIMONIAL*/

.hm-testimonials {
    padding: 0px 0 65px 0;
    overflow-x: hidden;
    position: relative;
    margin: 30px 0 0 0;
}

.hm-testimonials::before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    background: url(../images/testim-bg.png)left top no-repeat;
    height: 345px;
    width: 353px;
    background-size: contain;
    z-index: 2;
}
@keyframes bounce1 {
    0%,{transform: translateY(0);} 
    60% {transform: translateY(-30px);} 
    100% {transform: translateY(0);}
 } 
.hm-testimonials::after {
    background: url(../images/tst-aft.png)left top no-repeat;
    position: absolute;
    content: '';
    right: 15px;
    bottom: 165px;
    height: 39px;
    width: 133px;
    background-size: contain;
    -webkit-animation-duration: 5s;
    animation-duration: 5s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both;
    -webkit-animation-name: bounce1; 
    animation-name: bounce1;
    animation-iteration-count: infinite;
}

.main-testsec {
    background: var(--bg2);
    position: relative;
    padding: 80px 0 85px 70px;
    min-height: 495px;
    border-radius: 95px 0 0 95px;
}

.sn-tst-grid {
    position: relative;
    padding-left: 40px;
}

.main-testsec h2 {
    margin-bottom: 55px;
}

p.ts-itl {
    color: var(--dark-gray);
    font-style: italic;
    margin: 0;
}

.reviewersec {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 25px;
}

.reviewersec p {
    margin-left: 20px;
    margin-bottom: 0;
    color: var(--dark-gray);
}

.reviewersec img {
    max-width: 120px;
}

.main-testsec::after {
    position: absolute;
    content: '';
    right: -800%;
    top: 0;
    height: 100%;
    width: 800%;
    background: var(--bg2);
}

.sn-tst-grid::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background: url(../images/quote-icon.png)left top no-repeat;
    width: 29px;
    height: 26px;
    background-size: contain;
}

.test-slider .owl-dots {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 65px;
    bottom: -60px;
}

.test-slider .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 8px;
    background: var(--light-pink);
    margin-left: 9px;
}

.test-slider .owl-dot.active {
    background: var(--blue);
}

/* Home TESTIMONIAL END*/

/* Footer Section */

.upr-mn-ft {
    background: var(--blue);
    padding: 25px 0;
}

.upr-mn-ft h2 {
    font-weight: 700;
    font-size: 30px;
    color: var(--white);
    margin-bottom: 25px;
}

.sn-ftr-ql ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 13px;
}

.sn-ftr-ql ul li::before {
    position: absolute;
    content: '';
    background: url(../images/arrow-right.png)left top no-repeat;
    background-size: contain;
    width: 17px;
    height: 13px;
    left: 0;
    top: 5px;
}

.sn-ftr-ql ul li a {
    font-size: 15px;
    color: var(--white);
    display: block;
}

.sn-ftr-ql ul li a:hover {
    text-decoration: underline;
}

.upr-ftr .col-md-4 .sn-ftr-ql ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.upr-ftr .col-md-4 .sn-ftr-ql ul li {
    width: 49%;
}

.upr-ftr {
/*     padding-bottom: 35px;
    margin-bottom: 35px; */
}

.btm-ftr {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.news-subscribe form {
    width: 340px;
    position: relative;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 50px;
}

.news-subscribe form input[type="email"] {
    width: 100%;
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 55px 10px 20px;
}

.news-subscribe form input[type="submit"] {
    height: 100%;
    outline: none !important;
    box-shadow: none !important;
    background: url(../images/arrow-right-blue.png)left top no-repeat;
    width: 31px;
    background-size: 31px 23px;
    background-position: center;
    position: absolute;
    right: 15px;
}

.ftr-social ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ftr-social ul li {
    margin-right: 20px;
}

.ftr-social ul li a img {
    max-height: 45px;
}

.footer-copy {
    text-align: center;
    padding: 25px 0;
}

.footer-copy p {
    margin: 0;
    font-size: 15px;
    color: var(--gray);
}

/* Footer Section End*/

/* INNER BANNER Section */
.inner-banner-sec {
    padding: 65px 0;
    position: relative;
    min-height: 650px;
    background: url(../images/bg.png)left bottom no-repeat;
    background-size: cover;
}

.inner-banner-sec a.btn1 {
    margin-top: 25px;
    margin-left: 0;
    padding: 11px 25px;
}

.inner-banner-sec a.btn1 span {
    font-size: 18px;
}

.inner-banner-sec a.btn1 img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.inner-banner-sec h1 {
    font-size: 48px;
}

.inr-banner-image-outer {
    position: relative;
}

.inr-banner-image-outer img {
    width: 100%;
}

.innr-bnr-screen {
    position: absolute;
    top: 100px;
    left: 0;
}

.innr-bnr-screen img {
    width: 88%;
}

.innr-screen-place {
    position: absolute;
    bottom: 21%;
    right: 25%;
    width: 62%;
    height: 60%;
    background: var(--sky);
    display: flex;
    justify-content: center;
    align-items: center;
}

.innr-screen-place img {
    width: 130px !important;
}

/* INNER BANNER Section End*/

/* BOOK Demo Section */

.book-demo-sec {
    padding: 65px 0 65px 0;
}

.book-demo-sec h2 {
    text-align: center;
    margin-bottom: 45px;
}

.book-demo-table-sec {
    box-shadow: 0px 0px 50px var(--box-shadow);
    border-radius: 15px;
    overflow: hidden;
}

.book-demo-table-sec a {
    display: block;
    width: 100%;
}
#calendar {
    height: 644px !important;
}
.book-demo-table-sec a img {
    width: 100%;
}
.book-demo-table-sec td {
    height: 50px !important;
}
.fc .fc-timegrid-body {
    min-height: initial;
    position: relative;
    z-index: 1;
}
.fc .fc-button-primary{
    background-color: var(--blue);
    border: none;
}
.fc .fc-button-primary:hover{
    background-color:var(--pink);
}
.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active{
    background-color:var(--pink);
}
.fc-toolbar-title{
    font-weight: 600;
    color: inherit;
    padding-bottom: 5px;
}
.fc .fc-toolbar.fc-header-toolbar{
    padding-bottom: 1.5em;
    border-bottom: 1px solid #ccc;
    padding: 25px;
}
.fc .fc-view-harness-active > .fc-view{
    padding: 25px;

}
.fc-col-header thead th a{
    color: inherit;
    font-weight: 600;
    font-size: 15px;
}
.fc-scrollgrid-sync-table tr td a{
    color: inherit;
}
.fc-h-event, .fc-v-event{
    background-color:#ffeeee;
    border: none;
}
.fc-event-time, .fc-event-title{
    color: #000000;
    font-weight: 600;

}
/* BOOK Demo Section End*/

/* Modal Section*/

#book_a_demo_modal .modal-dialog {
    max-width: 750px;
    margin-top: 65px;
}

.modal-content {
    border-radius: 10px;
    padding: 45px 30px;
}

.modal-header {
    position: relative;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
}

.modal-header .btn-close {
    position: absolute;
    right: 15px;
    top: 0px;
    padding: 0;
    border: none;
}

.modal-header h2 {
    text-align: center;
    width: 100%;
}

.single-modal-form-field label {
    width: 100%;
    font-size: 17px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 700;
}

.single-modal-form-field input, .single-modal-form-field textarea , .single-modal-form-field select{
    border: 1px solid var(--border);
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}


.book-btn {
    text-align: center;
}

.book-btn button {
    background: var(--blue);
    font-size: 17px;
    color: #fff;
    border-radius: 6px;
    padding: 10px 106px;
}

.book-btn button:hover {
    background: var(--pink);
}

#submitModal .modal-content {
    text-align: center;
    padding: 30px;
}

#submitModal .modal-body img {
    max-width: 70px;
    margin-bottom: 10px;
}

#submitModal h2.modal-thanks {
    font-weight: 700;
    font-size: 35px;
}

#submitModal p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

#submitModal a {
    background: var(--blue);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    border-radius: 6px;
    padding: 8px 15px;
    display: inline-block;
}

#submitModal a:hover {
    background: var(--pink);
}

#submitModal .modal-dialog {
    margin-top: 65px;
}

/* Modal Section End*/


/* Style for Data Table  */
.table.dataTable thead tr th, tbody tr td{
    font-size: 14px;
}
table.dataTable tbody tr:hover{
    -moz-box-shadow: 0 0 6px 0 rgba(45, 81, 155 ,1);
    -webkit-box-shadow: 0 0 6px 0 rgba(45, 81, 155, 1);
    box-shadow: 0 0 6px 0 rgba(45, 81, 155 , 1);
}
table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc, table.dataTable thead>tr>th.sorting_asc_disabled, table.dataTable thead>tr>th.sorting_desc_disabled, table.dataTable thead>tr>td.sorting, table.dataTable thead>tr>td.sorting_asc, table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>td.sorting_asc_disabled, table.dataTable thead>tr>td.sorting_desc_disabled{
    cursor: pointer;
    position: relative;
    padding-right: 26px;
    background-color: var(--blue);
    color: #fff;
}
table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:before{
    top: 5px;
    content: "▲";
    content: "▲"/"";
    position: absolute;
    display: block;
    opacity: .5;
    right: 10px;
    line-height: 9px;
    font-size: .8em;
}
table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:after{
    bottom: 10px;
    content: "▼";
    content: "▼"/"";
    position: absolute;
    display: block;
    opacity: .5;
    right: 10px;
    line-height: 9px;
    font-size: .8em;
}
table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_desc:after{
    opacity: 1;
}

.dataTables_length{
    float: left;
    margin-bottom: 5px;
}
.dataTables_length label{
    font-size: 14px;
}
.dataTables_length label select{
    border: 1px solid var(--border);
    padding:5px;
    border-radius: 10px;
    margin: 0 5px;
}
.dataTables_filter{
    float: right;
    margin-bottom: 5px;
}
.dataTables_filter label{
    font-size: 14px;
}
.dataTables_filter label input[type=search]{
    border: 1px solid var(--border);
    padding:5px;
    width: 200px;
    border-radius: 10px;
    margin-left: 10px;
}

.previous{
    margin-right: 10px;
    border: 1px solid var(--border);
    padding:5px 10px;
    font-size: 12px;
    border-radius: 5px;
    background-color:var(--blue);
    color: #fff;
    border: none;
}
.next{
    margin-right: 10px;
    border: 1px solid var(--border);
    padding:5px 10px;
    font-size: 12px;
    border-radius: 5px;
    background-color:var(--blue);
    color: #fff;
    border: none;
}
.disabled{
    background-color: #ccc;
    color: #7c7c7c;
}
.dataTables_wrapper .dataTables_paginate{
    float: right;
    text-align: right;
    padding-top: 0.25em;
    display: flex;
}
.dataTables_wrapper .dataTables_paginate span{
    margin-right: 10px;
}
.dataTables_wrapper .dataTables_paginate span a{
    margin: 0 4px;
}
.dataTables_wrapper .dataTables_info{
    clear: both;
    float: left;
    padding-top: 0.755em;
    font-size: 14px;
}
.whitecard {
    border-radius: 15px;
    box-shadow: 0px 0px 15px var(--box-shadow);
    padding: 25px;
}
.align-item{
    text-align: right;
}


/* Responsive  Css */

@media all and (min-width: 1238px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

@media screen and (min-width: 1351px) {}

@media screen and (min-width: 1200px) and (max-width: 1350.5px) {
    p {
        font-size: 15px;
    }
    
    .bld {
        font-size: 18px;
    }
    .basic-info-content {
        padding: 25px;
        min-height: 380px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199.5px) {
    /* Common */
    h1 {
        font-size: 45px;
    }
    h2 {
        font-size: 30px;
    }
    p {
        font-size: 14px;
        line-height: 19px;
    }
    /* Common End */
    /* header */    
    a.logosec img {
        width: 115px;
    }
    a.logosec span p {
        font-size: 11px;
        line-height: 14px;
    }
    .main-navsec {
        padding: 5px 0;
    }
    .nav-link {
        font-size: 12px;
        line-height: 15px;
    }
    .btn1 {
        border-radius: 6px;
        padding: 9px 9px;
        margin-left: 5px;
    }
    .btn1 span {
        font-size: 12px;
    }
    p.bnr-para {
        font-size: 28px;
        line-height: 38px;
    }
    /* Header End */
    /* Banner Section */
    .banner-section {
        padding: 65px 0;
        min-height: inherit;
    }
    .banner-section a.btn1 span {
        font-size: 20px;
    }
    .banner-section a.btn1 {
        margin-top: 10px;
        margin-left: 0;
        padding: 11px 25px;
    }
    p.bnr-para {
        font-size: 25px;
        line-height: 29px;
    }
    .banner-section a.btn1 img {
        width: 18px;
    }
    /* Banner Section End */
    /* Trusted Partner */
    .trusted-partner {
        padding: 0 0 20px 0;
    }
    /* Trusted Partner End*/
    /* Testimonials */
    .hm-testimonials::before {
        height: 256px;
        width: 260px;
    }
    .main-testsec {
        min-height: 450px;
    }
    .srv-book-btn a.btn1 span {
        font-size: 18px;
    }
    .view-allbtn a {
        font-size: 18px;
    }
    .view-allbtn a img {
        height: 15px;
    }
    /* Testimonials End */
    /* Latest Update */
    .latest-update-img img {
        height: 208px;
    }
    /* Latest Update End*/
    /* Services */
    .serv-img img {
        width: 100%;
        height: 170px;
    }
    .mn-sr-slide {
        margin-top: -348px;
    }
    /* Services End */
    /* Footer */
    .upr-mn-ft h2 {
        font-size: 25px;
    }
    .sn-ftr-ql ul li a {
        font-size: 14px;
    }
    /* Footer End */
    /* Inner Banner */
    .innr-screen-place img {
        width: 90px !important;
    }
    .inner-banner-sec {
        min-height: inherit;
    }
    .innr-screen-place {
        bottom: 20%;
        height: 61%;
    }
    .align-item{
        text-align: left;
        margin-top:10px;
    }
    /* Inner Banner End*/
}

@media screen and (min-width: 768px) and (max-width: 991.5px) {
    /* Common */
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
    }
    p {
        font-size: 14px;
        line-height: 18px;
    }
    /* Common End*/
    /* header */   
    .navbar {
        flex-direction: row;
        justify-content: flex-end !important;
        width: 100%;
    }
    .main-navsec {
        padding: 10px 0;
    }
    a.logosec {
        display: inline-flex;
        align-items: flex-end;
        justify-content: flex-start;
        position: absolute;
        z-index: 99;
    }
    .btn1 {
        margin-left: 0;
        margin-right: 10px;
    }
    a.logosec img {
        width: 125px;
        margin-right: 15px;
    }
    .navbar-toggler {
        right: 0;
        padding: 3px 5px;
        position: absolute;
        z-index: 99;
    }
    .nav-btns {
        margin-right: 42px;
    }
    .navbar-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 64px;
        z-index: 999;
        background: var(--bg2);
        box-shadow: 0px 5px 8px var(--box-shadow);
    }
    .nav-link {
        padding: 7px 15px!important;
        font-size: 12px;
        display: block;
        width: 100%;
    }
    .dropdown-toggle::after {
        position: absolute;
        right: 14px;
        top: 16px;
    }
    .nav-item .dropdown-menu a.dropdown-item {
        padding-left: 25px;
    }
    .nav-item .dropdown-menu {
        z-index: 9999;
        position: relative;
        border: none;
    }
    /* header end */
    /* Banner Start */
    .banner-txt.pe-5 {
        padding-right: 0 !important;
    }
    .banner-section {
        padding: 45px 0;
        min-height: inherit;
    }
    p.bnr-para {
        font-size: 23px;
        line-height: 27px;
    }
    .banner-section a.btn1 {
        margin-top: 5px;
    }
    .banner-section a.btn1 span {
        font-size: 16px;
    }
    .banner-section a.btn1 img {
        width: 17px;
        height: 16px;
        margin-right: 7px;
    }
    /* Banner End */
    /* Partner */
    .trusted-partner h2 {
        text-align: center;
        margin-bottom: 30px;
    }
    .trusted-partner {
        padding: 0 0 15px 0;
    }
    /* Partner End */
    /* About Start */
    .home-about h2 {
        margin-bottom: 30px;
    }
    /* About End */
    /* Testimonial Start */
    .hm-testimonials::before {
        height: 228px;
        width: 228px;
    }
    .main-testsec {
        padding: 60px 0 60px 60px;
        min-height: 420px;
        border-radius: 65px 0 0 65px;
    }
    .srv-book-btn a.btn1 span {
        font-size: 18px;
    }
    .hm-testimonials {
        padding: 0px 0 45px 0;
        margin: 30px 0 0 0;
    }
    /* Testimonial End */
    /* Services */
    .serv-img img {
        height: 200px;
    }
    .mn-sr-slide {
        margin-top: -346px;
    }
    /* Services End */
    /* Latest Update Start */
    .l-update-head {
        text-align: center;
        margin-bottom: 10px;
    }
    .latest-update-img img {
        height: 150px;
    }
    .latest-update-text {
        padding: 25px 15px;
        box-shadow: 0px 0px 19px var(--box-shadow);
    }
    .latest-update-text ul li {
        font-size: 12px;
    }
    .latest-update-text ul li a{
        font-size: 12px;
    }
    .view-allbtn a {
        font-size: 17px;
    }
    .view-allbtn a img {
        width: 15px;
        height: auto;
    }
    /* Latest Update End */
    /* Footer Start */
    .upr-ftr .col-md-3, .upr-ftr .col-md-2, .upr-ftr .col-md-4 {
        flex: 0 0 50%;
        width: 50%;
    }
    .upr-mn-ft h2 {
        font-size: 25px;
        margin-bottom: 15px;
        margin-top: 15px;
    }
    .sn-ftr-ql ul li a {
        font-size: 14px;
    }
    .upr-ftr {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .latest-update {
        padding: 15px 0 45px 0;
    }
    .srv-book-btn a.btn1 {
        margin-bottom: 15px;
    }
    .upr-mn-ft {
        padding: 35px 0;
    }
    .sn-ftr-ql ul li::before {
        width: 14px;
        height: 10px;
        left: 0;
        top: 7px;
    }
    .sn-ftr-ql ul li {
        padding-left: 21px;
        margin-bottom: 10px;
    }
    /* Footer End */
    /* Inner Banner */
    .inner-banner-sec h1 {
        font-size: 40px;
    }
    .inner-banner-sec a.btn1 {
        margin-top: 14px;
        margin-left: 0;
        padding: 11px 25px;
        margin-right: 0;
    }
    .inner-banner-sec a.btn1 span {
        font-size: 15px;
    }
    .innr-bnr-screen {
        top: 58px;
        left: 0;
    }
    .innr-screen-place img {
        width: 84px !important;
    }
    .inner-banner-sec {
        padding: 45px 0;
        min-height: initial;
    }
    .align-item{
        text-align: left;
        margin-top:10px;
    }
    /* Inner Banner End */
}

@media screen and (max-width: 767.5px) {
    /* Common */
    h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    h2 {
        font-size: 25px;
        line-height: 30px;
    }
    p {
        font-size: 15px;
    }
    /* header */
    a.logosec {
        margin-bottom: 10px;
    }
    a.logosec img {
         width: 100px;
         margin-right: 5px;
    }
    a.logosec span p {
        font-size: 10px;
        padding-left: 6px;
        line-height: 13px;
    }
    .mn-navgrid {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar {
        width: 100%;
    }
    .navbar-toggler {
        position: absolute;
        right: 0;
        padding: 3px 5px;
    }
    .navbar-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 50px;
        z-index: 999;
        background: var(--bg2);
        box-shadow: 0px 5px 8px var(--box-shadow);
    }
    .nav-link {
        padding: 7px 15px!important;
        font-size: 12px;
        display: block;
        width: 100%;
    }
    .dropdown-toggle::after {
        position: absolute;
        right: 14px;
        top: 16px;
    }
    .nav-item .dropdown-menu a.dropdown-item {
        padding-left: 25px;
    }
    .nav-item .dropdown-menu {
        z-index: 9999;
        position: relative;
        border: none;
    }
    .nav-btns .btn1 {
        margin-left: 0;
        margin-right: 10px;
    }
    .main-navsec {
        padding: 10px 0 5px 0;
    }

    /* header end */
    /* Banner start */
    .banner-section {
        padding: 35px 0;
        min-height: initial;
    }
    p.bnr-para {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .banner-section a.btn1 img {
        width: 18px;
        height: 18px;
        margin-right: 7px;
    }
    .banner-section a.btn1 span {
        font-size: 15px;
    }    
    .banner-image {
        margin-top: 30px;
    }
    /* Banner end */
    /* ABOUT START */
    .home-about h2 {
        margin-bottom: 20px;
    }
    .home-about-text {
        margin-top: 20px;
    }
    .home-about {
        padding: 0 0 35px 0;
    }
    /* ABOUT End */

     /* START TRUSTED PARTNER */
     .trusted-partner h2 {
        text-align: center;
        margin-bottom: 15px;
    }
     /* END TRUSTED PARTNER */
     /* START HOME SERVICE */
     .hm-sevicesec {
        margin: 0px 0 35px 0;
    }
    .hm-sr-imgsec::before {
        top: -26px;
        width: 101px;
        height: 101px;
    }
    .hm-sr-imgsec::after {
        right: 10px;
        top: 19px;
        width: 24px;
        height: 89px;
    }
    .srv-book-btn a.btn1 img {
        width: 16px;
        height: 14px;
        margin-right: 6px;
    }
    .srv-book-btn a.btn1 span {
        font-size: 15px;
    }
    .srv-book-btn {
        margin-top: 0;
    }
    .mn-sr-slide h2 {
        margin-bottom: 20px;
    }
    .mn-sr-slide {
        margin-top: -410px;
    }
     /* END HOME SERVICE */
     /* START HOME TESTIMONIALS */
     .hm-testimonials::before {
        display: none;
     }
     .hm-testimonials .col-md-10.offset-1 {
        margin-left: 0;
     }
     .sn-tst-grid::before{
        background: none;
     }
     .main-testsec {
        padding: 15px;
        min-height: initial;
        border-radius: 0;
    }
    .test-slider .owl-dots {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
    }
    .hm-testimonials::after {
        display: none;
    }
    .sn-tst-grid {
        padding-left: 0;
    }
    .main-testsec h2 {
        margin-bottom: 30px;
    }
    .sn-tst-grid::before {
        z-index: -1;
        opacity: 0.15;
    }
    .hm-testimonials {
        padding-bottom: 10px;
    }   
    .main-testsec::after {
        display: none;
    }
    /* END HOME TESTIMONIALS */
    /* Start Latest Update */
    .l-update-head {
        text-align: center;
        margin-bottom: 10px;
    }
    .single-ltupgrid {
        margin-bottom: 20px;
    }
    .latest-update-text {
        padding: 20px 15px;
    }
    .view-allbtn {
        margin-top: 10px;
    }
    .view-allbtn a {
        font-size: 15px;
    }
    .view-allbtn a img {
        width: 12px;
        height: auto;
    }
    .latest-update {
        padding: 35px 0 35px 0;
    }
    /* End Latest Update */
    /* Start FOOTER */
    .upr-mn-ft h2 {
        font-size: 24px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .sn-ftr-ql ul li::before {
        width: 12px;
        height: 9px;
    }
    .sn-ftr-ql ul li {
        position: relative;
        padding-left: 18px;
        margin-bottom: 9px;
    }
    .sn-ftr-ql ul li a {
        font-size: 13px;
    }
    .upr-ftr {
        margin-bottom: 0;
    }
    .btm-ftr {
        flex-direction: column;
    }
    .news-subscribe form {
        width: 100%;
    }
    .news-subscribe {
        width: 100%;
    }
    .ftr-social ul li a img {
        max-height: 30px;
    }
    .ftr-social ul li {
        margin-right: 15px;
    }
    .upr-ftr .col-md-4 .sn-ftr-ql ul li {
        width: 100%;
    }
    /* End FOOTER */
    /* Start Inner Banner */
    .inner-banner-sec h1 {
        font-size: 30px;
    }
    .banner-txt p br {
        display: none;
    }
    .inner-banner-sec a.btn1 {
        margin-top: 10px;
    }
    .inner-banner-sec a.btn1 img {
        width: 15px;
        height: 15px;
        margin-right: 6px;
    }
    .inner-banner-sec a.btn1 span {
        font-size: 15px;
    }
    .inner-banner-sec {
        padding: 35px 0;
        min-height: initial;
    }
    .innr-bnr-screen {
        top: 47px;
    }
    .innr-screen-place img {
        width: 60px !important;
    }
    .inr-banner-image-outer {
        margin-top: 25px;
    }
    .book-demo-sec {
        padding: 10px 0 35px 0;
    }
    .banner-txt.pe-5 {
        padding-right: 0 !important;
    }
    /* End Inner Banner */
    /* Modal Start */
    #book_a_demo_modal .modal-dialog {
        max-width: 100%;
        margin-top: 30px;
    }
    .modal-header h2 {
        margin: 0 0 15px 0;
    }
    .modal-content {
        padding: 30px 0;
    }
    .modal-header .btn-close {
        right: 15px;
        top: 0px;
    }
    .single-modal-form-field label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .single-modal-form-field input {
        width: 100%;
        padding: 5px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .book-btn button {
        font-size: 12px;
        padding: 10px 30px;
        margin-top: 10px;
    }
    #submitModal .modal-content {
        text-align: center;
        padding: 30px 0;
    }
    /* Modal End */
    .fc .fc-toolbar {
        flex-direction: column;
    }
    .fc .fc-toolbar-title {
        padding: 15px 0;
        width: 100%;
        font-size: 25px;
    }
    .fc-col-header thead th a {
        font-size: 11px;
    }
    .fc-timegrid-slot-label-cushion.fc-scrollgrid-shrink-cushion {
        font-size: 12px;
    }
    .align-item{
        text-align: left;
        margin-top:10px;
    }
    /* Our Company Page */
    .basic-info-content {
        min-height: initial !important;
    }
    .single-basic-info {
        margin-bottom: 35px;
    }
    .about-text {
        margin-top: 25px;
    }
    .basic-company-info-grid {
        padding-bottom: 25px !important;
    }
    .about-text .single-info {
        padding: 0;
        width: 100% !important;
    }
    .single-about-info {
        margin-bottom: 25px;
    }
    /* Our Company Page end*/
}

@media screen and (min-width: 576px) and (max-width: 767.5px) {
    /* header */
    a.logosec {
        display: inline-flex;
    }
    a.logosec img {
        margin-right: 10px;
        margin-bottom: 0;
    }
    a.logosec span p{
        padding-left: 15px;
        border-left: 1px solid var(--more-l-gray);
        margin-bottom: 0;
        width: auto;
        text-align: left;
    }
    a.logosec {
        display: inline-flex;
        margin-bottom: 15px;
    }
    /* header end */
     /* Testimonials Start */
    .main-testsec {
        padding: 23px;
        min-height: initial;
        border-radius: 15px;
    }
    /* Testimonials End */
    /* Footer */
    .news-subscribe form {
        width: 255px;
    }
    .btm-ftr {
        flex-direction: row;
    }
    .news-subscribe form {
        width: 255px;
        height: 38px;
    }
    .news-subscribe form input[type="submit"] {
        width: 24px;
        background-size: contain;
    }
    /* Footer End */
    /* Modal */
    #book_a_demo_modal .modal-dialog {
        max-width: 88%;
        margin-top: 30px;
    }
    .align-item{
        text-align: left;
        margin-top:10px;
    }
    /* Modal End */
    /* Our Partners */
    .partner-grids .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    /* Our Partners End*/
}

/* Our Partners */
.partner-grids .single-servgrid {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    padding: 25px;
}
.partner-grids .single-servgrid img{
    max-width: 60%;
    width: auto;
    transition: 0.5s;
    max-height: 100%;
    object-fit: contain;
}
.partner-grids .single-servgrid:hover img {
    transform: scale(0.9);
}
/* Our Partners End*/

/* Our Company Page*/
.company-heading {
    padding: 65px  0;
    text-align: center;
}
.company-heading h2 {
    margin-bottom: 20px;
}
.about-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.single-about-info {
    margin-bottom: 65px;
}
.about-text p span {
    color: #000000;
    font-weight: 600;
    letter-spacing: 0;
}
.about-our-company .single-about-info:nth-child(even) .row {
    flex-direction: row-reverse;
}
.single-basic-info {
    border: 1px solid var(--pink);
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 0px 0px 15px var(--box-shadow);
}
.basic-info-content p {
    color: var(--gray);
}
.basic-info-content .bld {
    color: var(--dark-gray);
}
.basic-info-icon {
    height: 250px;
}
.basic-info-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.basic-info-content {
    padding: 25px;
    min-height: 395px;
}

.basic-company-info-grid {
    padding-bottom: 65px;
}
.about-text .our-quality {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-text .single-info {
    width: 49%;
    padding-right: 10px;
    margin-bottom: 10px;
}

.about-text h4 {
    color: #000000;
    font-weight: 600;
    letter-spacing: 0;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

/* Our Company Page end*/
.services {
    padding-top: 65px;;
}
.md-msg-block{
    z-index: 50;
    position: relative;;
}
.md_name{
    font-weight: 600;
    font-style: italic;
}
.wait-msg{
    text-align: center;
    color: var(--pink);
    font-weight: bold;
    display: none;
}