@import url('https://fonts.googleapis.com/css?family=Patua+One|Roboto+Condensed|Nunito:200,600|PT+Sans|Open+Sans:ital,wght@0,600;1,400|Roboto:wght@300;400;500|Rajdhani:wght@400;500;600;700|Ubuntu:wght@300;400;500;700|Poppins:200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    font-family: 'Poppins', sans-serif;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.d-none{
    display: none;
}

.disappear-frm-desk{
    visibility: hidden;;
}

.delivery-all i {
    color: #3f3f3f;
    font-size: 20px;
}

p.delivery-all {
    padding: 5px 0px;
    /* background: #cddc39; */
    color: #064906;
}

.pic-box{
    width: 500px;
    height: 430px;
    overflow: hidden;
    position: relative;
}

.pic-box h6 {
    position: absolute;
    top: 24px;
    width: 100%;
    font-size: 24px;
}

.pic-box img{
    width: 100%;
}

.ranger{
    position: relative;
}

.ranger #slider-range{
    margin-top: 12px;
} 

.ranger .ui-widget-content .ui-state-active {
border-color: #ffc107;
background-color: #ffc107;
}

.ranger .ui-widget-content .ui-state-default:focus-visible {
border-color: #dfa804;
}

#ranger-amount {
    margin-bottom: 0;
    text-align: center;
    color: #795548;
    font-weight: 600;
    padding-top: 5px;
}

.ranger .ui-widget-header {
    border: 1px solid #ffecb4;
    background: #ffecb4;
}

/* select tag css */
.box {
    margin-right: 50px;
  }
  
  .box select {
    background-color: #f6f6f6;
    color: #064906;
    width: 200px;
    border: none;
    font-size: 16px;
    -webkit-appearance: button;
    appearance: button;
    border-radius: 0;
    border: 1px solid #d6d6d6;
}

  .box .form-control:focus {
    color: #064906;
    background-color: #f6f6f6;
    border-color: transparent;
    box-shadow: none;
}

  /* .box::before {
    content: "\f13a";
    font-family: "Font Awesome 5";
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 45px;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
  } */
  
  .box:hover::before {
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .box select option {
    padding: 30px;
  }

/* select tag css */
/* home ads code */
#homeads{
    background-color: #fff;
}

#homeads img{
    width: 100%;
}

/* home ads code */
/* custom radio btn css */
/* The container */
.small-text-os {
    font-size: 17px;
    font-weight: 500;
}

.td-pending {
    background-color: #673ab7;
    color: #fff;
}

.td-confirm {
    background-color: #4caf50;
    color: #fff;
}

.td-delivered {
    background-color: #9c27b0;
    color: #fff;
}

.td-cancel {
    background-color: #064906;
    color: #fff;
}

.td-refunded {
    background-color: #3f51b5;
    color: #fff;
}

.warning-msg.checkout-main-page-warning {
    position: absolute;
    bottom: 45px;
    z-index: 123;
    right: 17px;
}

.warning-msg.checkout-main-page-warning .print-warning {
    background: #ff5722;
    border-radius: 8px;
    color: #fff;
}

.qrcode-box img{
    width: 100%;
}

.qrcode-box{
    border-right: 1px solid rgb(163, 163, 163);
}

.order-success-check1 {
    display: flex;
    background-color: #63d19e;
    color: #fff;
    font-size: 17px;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px
}

.order-failed-check2 {
    display: flex;
    background-color: #d16363;
    color: #fff;
    font-size: 17px;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px
}

.order-success-check1 small{
    font-size:17px ;
}

.order-success-check1 span{
    font-size:20px ;
}

.radio-container {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    border: 7px solid #ccc;
}
  
  /* On mouse-over, add a grey background color */
  .radio-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .radio-container input:checked ~ .checkmark {
    background-color: #444444;
    border: none;
}
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radio-container .checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }

/* custom radio btn css */
/* step wrapper */
.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }
  
  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f4f4;
    margin-bottom: 6px;
    border: 2px solid #ccc;
    color: #ccc;
}
  
  .stepper-item.active {
    font-weight: bold;
  }
  
  .stepper-item.completed .step-counter {
    background-color: #ffffff;
    border: 3px solid #ffc107;
    color: #000;
}
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ffc107;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  
  .stepper-item:first-child::before {
    content: none;
  }

  .stepper-item:last-child::after {
    content: none;
  }

/* step wrapper */
/* checkout page */
#guest_checkout .form-control {
    height: 42px;
    border-color: #000000;
    color: #000;
}

.btn-order-place {
    background: #8bc34a;
    color: #fff;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 3px 4px #cacaca;
}

.btn-continue-shopping {
    background: #474747;
    color: #fff;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 3px 4px #cacaca;
}

.btn-continue-shopping:hover {
    color: #f7f7f7;
}

.bank_method svg {
    width: 8%;
    margin-left: 20px;
    color: #333;
}

.code_method svg{
    width: 6%;
    margin-left: 20px;
    color: #333;
}

#payment_choose .checkbox-tools:checked + label {
    background-color: #474747;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

#payment_choose .checkbox-tools:checked + label svg{
    color: #ffc107;
}

.delivery-icon svg{
    width: 4%;
    margin-right: 10px;
}

.delivery-icon, .payment-icon {
    color: #b2b2b2;
    border-bottom: 1px solid;
    margin-bottom: 10px;
    padding-bottom: 5px;
    margin-top: 5px;
    font-size: 13px;
}

.payment-icon svg{
    width: 3%;
    margin-right: 10px;
}

.defaulted-address {
    border: 2px solid #673ab7 !important;
    position: relative !important;
}

.defaulted-address::after {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 12px;
    right: 16px;
    color: #673ab7;
    font-size: 20px;
}

.checkout-addresses .address-type {
    background: #fff8f8;
}

.checkout-address-card {
    box-shadow: 0 1px 2px #ccc;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: grab;
}

.view-success-page-container {
    margin: 10px auto 20px;
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 10px;
    /* box-shadow: 0 1px 3px #d2d2d2; */
}

.view-checkout-page-container {
    margin: 10px auto 20px;
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 0px;
    /* box-shadow: 0 1px 3px #d2d2d2; */
}

.order-details-top {
    background-color: #fcf8f8;
    border-top: 4px solid #074a07;
    border-radius: 10px;
    min-height: 1em;
    padding: 10px 15px 10px;
}

.payment-details svg {
    width: 7%;
    color: #444;
    margin: 0 10px;
}

.payment-details p {
    margin-bottom: 0;
    font-size: 15px;
    text-align: justify;
    padding: 10px;
    background-color: #fcf8f8;
}

.shipping-col {
    background-color: #fff;
    font-family: 'Patua One';
    color: #4caf50;
    padding-left: 10px;
}

.shipping-col .pr-48{
    padding-right: 48px;
}

/* .checkout-items-details{
    padding: 10px;
} */

.order-details-top h3{
    font-size: 18px;
    text-align: left;
    border-bottom: 1px solid #8c8c8c;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.order-details-top ul li:first-child{
    font-family: 'Patua One';
    padding-top: 0px;
}

.order-details-top ul li:last-child {
    font-family: 'Patua One';
    background: rgb(139 195 74 / 20%);
    color: #292929;
    border-bottom-style: solid;
    padding: 10px 10px;
}

/* .checkout-items-details .checkout-items .sub-title {
} */

.checkout-items-details .checkout-items .garndtotal {
    text-align: right;
}

.order-details-top ul li{
    list-style: none;
    border-bottom: 1px dotted #999999;
    padding-bottom: 10px;
    padding-top: 10px;
}

/* .checkout-items-details .checkout-items .p-title {
    padding: 5px 10px;
}

.checkout-items-details .checkout-items .p-quantity {
    padding: 5px 10px;
}

.checkout-items-details .checkout-items .p-price-sp {
    padding: 5px 10px;
}

.checkout-items-details .checkout-items .p-subtotal {
    padding: 5px 10px;
} */

/* checkout page */
/* cart main page */
.cart-main-page-warning{
    position: absolute;
    left: 40%;
}

.cart-main-page-warning .print-warning {
    background: rgb(255 193 7 / 70%);
    border-radius: 6px;
}

.empty-cart-msg-main-page {
    padding: 10px 10px 10px 55px;
    font-size: 1.5em;
    color: #333;
}

.view-cart-page-container {
    margin: 10px auto 20px;
    background: #ffffff;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 1px 6px #d2d2d2;
}

    .cart-page-header{
    margin: auto;
    width: 90%;
    height: 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .cart-page-heading{
    font-size: 18px;
    font-family: 'Open Sans';
    font-weight: 700;
    color: #2F3841;
    }

    .heading-h5 {
        font-size: 18px !important;
        font-family: 'Open Sans' !important;
        font-weight: 600;
        color: #E44C4C !important;
        cursor: pointer;
        border-bottom: 1px solid #E44C4C;
    }

    .cart-page-items{
    margin: auto;
    width: 90%;
    height: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .cart-page-image-box{
    width: 15%;
    text-align: center;
    flex-basis: 10%;
    }

    .cart-page-image-box img{
        width: 100%;
    }

    .cart-page-about-box{
    height: 100%;
    flex-basis: 40%;
    }

    .cart-page-about-title-box{
    padding-top: 5px;
    font-size: 18px;
    font-family: 'Open Sans';
    font-weight: 800;
    color: #202020;
    }

    .cart-page-about-subtitle-box{
    font-size: 14px;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #909090;
    }

    .cart-page-counter{
    width: 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-basis: 12%;
    }

    .counter-button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: 'Open Sans';
    font-weight: 900;
    color: #202020;
    cursor: pointer;
    }

    .cart-page-count{
    font-size: 20px;
    font-family: 'Open Sans';
    font-weight: 900;
    color: #202020;
    }

    .cart-page-price-col{
    height: 100%;
    text-align: right;
    flex-basis: 15%;
    }

    .cart-page-price-amt {
        padding-top: 20px;
        font-size: 17px;
        font-family: 'Open Sans';
        font-weight: 600;
        color: #585858;
    }

    .save{
    padding-top: 5px;
    font-size: 14px;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #1687d9;
    cursor: pointer;
    }

    .cart-page-item-remove{
    font-size: 14px;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #E44C4C;
    cursor: pointer;
    }

    .view-cart-page-container  hr{
    width: 66%;
    float: right;
    margin-right: 5%;
    }

    .cart-page-checkout{
    float: right;
    margin-right: 5%;
    width: 28%;
    }

    .cart-page-total{
    width: 100%;
    display: flex;
    justify-content: space-between;
    }

    .cart-page-subtotal{
    font-size: 18px;
    font-family: 'Open Sans';
    font-weight: 700;
    color: #202020;
    }

    .cart-page-btn-items{
    font-size: 14px;
    font-family: 'Open Sans';
    font-weight: 500;
    color: #909090;
    }

    .cart-page-btm-total-amt{
    font-size: 25px;
    font-family: 'Open Sans';
    font-weight: 900;
    color: #202020;
    }

    .cart-page-chkout-btn {
        margin-top: 5px;
        width: 100%;
        height: 40px;
        border: none;
        background: linear-gradient(to bottom right, #ffc107, #ff9800);
        border-radius: 10px;
        cursor: pointer;
        font-size: 16px;
        font-family: 'Open Sans';
        font-weight: 600;
        color: #fffffd;
    }

/* cart main page */
/* cart box css */
.showAddcartItem {
    position: absolute;
    font-size: 13px;
    background: #ffc107;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    display: none;
}

.showAddcartItem.view{
    display: inline;
}

.cart-box-ul{
    margin: 0;
}

.cart-box-ul-itmes{
    display: inline-block;
}

.cart-drop-box.cart-popup {
    background-color: #f8f7f7;
    margin-top: 22px;
    padding: 10px 10px;
    position: absolute;
    right: 0;
    width: 350px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
    cursor: auto;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    border-radius: 6px;
}

.cart-box-ul-itmes.cart-hover:hover .cart-drop-box.cart-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
}

.cart-drop-box .cart-list {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 12px 0;
}

.cart-drop-box .cart-list > div {
    display: table-cell;
    vertical-align: middle;
}

.cart-drop-box  .cart_qty {
    text-align: left;
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 800;
    width: 20%;
    vertical-align: top !important;
}

.view_cart_items_on_page{
    padding-left: 20px;
}

.checkout_page_move{
    width: 56%;
}

.cart-drop-box  .close-icon{
text-align: right;
}

.cart-drop-box .cart-img {
    width: 70px;
}

.cart-drop-box .cart-img img{
    width: 100%;
}

.cart-drop-box .cart-title {
    padding: 0 10px;
    width: 50%;
}

.fsz-16 {
    font-size: 16px;
}

.cart-title {
    text-align: left;
}

.fsz-14 {
    font-size: 14px;
}

.light-font {
    font-weight: 300;
}

.cart-drop-box .cart-title a {
    color: inherit;
    margin: 0 !important;
}

.cart-drop-box .cart-title .price {
    text-align: left;
    font-size: 13px;
}

.cart-drop-box .price del {
    color: #838383;
    margin-left: 3px;
}

.cart-drop-box .cart-list .close-icon i {
    background-color: #f7f6f2;
    border-radius: 2em;
    cursor: pointer;
    font-size: 22px;
    height: 25px;
    line-height: 23px;
    margin-top: 5px;
    text-align: right;
    width: 25px;
    color: #074a07;
}

.price .clr-txt{
    font-weight: 600;
    color: #795548;
} 

.cart-list + .cart-list {
    border-top: 1px solid #eeeeee;
}

.close-icon.cart-popup {
    width: 8%;
    vertical-align: top !important;
}

.empty_cart_pop {
    text-align: center;
    padding: 10px;
    background: #f8f7f7;
}

.sweet-popup {
    position: absolute;
    left: 70px;
    width: 400px;
    max-width: 100%;
    padding: 10px 10px;
    background-color: rgb(139 195 74 / 79%);
    text-align: center;
    z-index: 999;
    top: 2px;
    border-radius: 25px;
    box-shadow: -1px 3px 14px #09090947;
    transition: all .3s linear;
    opacity: 0;
    visibility: hidden;
}

.sweet-popup.added{
    background-color: rgb(139 195 74 / 79%);
}

.sweet-popup.added .sweet-pop-msg{
    color: rgb(255, 255, 255);
}

.sweet-popup.added::after{
    border-right-color: #8ddc32;
}

.sweet-popup.updated{
    background-color: rgb(255 193 7 / 39%);
}

.sweet-popup.updated::after{
    border-right-color: rgb(255 193 7 / 39%);
}

.sweet-popup.updated .sweet-pop-msg{
    color: rgb(41, 39, 39);
}

.sweet-popup.view-cart-msg{
    opacity: 1;
    visibility: visible;
    left: 25px;
}

.sweet-popup::after {
    position: absolute;
    top: 8px;
    left: -24px;
    content: '';
    border-width: 15px;
    border-style: solid;
    border-top-color: rgb(255 255 255 / 0%);
    border-left-color: rgb(255 255 255 / 0%);
    border-right-color: #8ddc32;
    border-bottom-color: rgb(139 195 74 / 0%);
}

.sweet-pop-msg{
    color: #fff;
}

/* cart box css */
/* account user */
.dash-card {
    border: 1px solid #ececec;
    padding: 10px;
    height: 15em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 30px;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 25%);
    border-radius: .25rem;
    background-color: #ececec;
}

.dash-card a{
    color: #333;
    font-size: 20px;
    font-weight: 500;
}

.dash-card i{
    font-size: 3.5em;
}

.dash-card i.fa-first-order{
    color:#D6336C ;
}

.dash-card i.fa-user-lock{
    color:#FAB005;
}

.dash-card i.fa-map-marker-alt{
    color: #82C91E;
}

.content-field{
    margin-top: 10px;
}

.content-field p{    
    font-size: 15px;
    margin-bottom: 0;
    color: #6c6c6c;
}

.login-security-update .form-control, .addresses-add .form-control{
    height: calc(2.25rem + 10px);
    border: 1px solid #848484;
    border-radius: 0;
}

.print-order a{
    color: inherit;
    font-size: 1.2em;
}

.address-box.dash-card {
    background: #ffffff;
    /* border-style: dotted;
    border-width: 1px;
    border-color: #808080; */
    min-height: 13em;
    height: auto;
    padding: 20px 20px 10px;
    position: relative;
    margin-top: 20px;
}

.fulladdress .checkbox-tools:checked + label, .addresses-add .checkbox-tools:checked + label{
    background-color: #074a07;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 20%);
}

.defaulted-address .checkbox-tools:checked + label, .defaulted-address .checkbox-tools:checked + label{
    background-color: #ffc107 !important;
    color: #000 !important;
}

.setDefault{
    margin-top: 10px;
    text-transform:none !important;
}

.setDefault .checkbox-tools:checked + label, .setDefault .checkbox-tools:not(:checked) + label {
    text-transform: none !important;
}

.add-address{
    font-size: 16px;
    color: #f3564d;
    float: right;
}

.deleteAddress {
    color: #f3564d !important;
    font-size: 7px !important;
    position: absolute;
    right: 15px;
    bottom: 36px;
}

.address-type {
    padding: 5px;
    background: #fff8f8;
    border-radius: 4px;
    margin-bottom: 5px;
}

.fulladdress {
    font-size: 14px;
    font-family: 'Roboto';
    font-weight: 500;
}

#ModalAddAddress .modal-content{
border-radius: 0;
}

#ModalAddAddress{
z-index: 99999999;
}

#ModalAddAddress .modal-body {
    padding: 2rem;
}

.not-found {
    padding: 30px 0;
    font-size: 2em;
    color: #ff9f9f;
    text-align: center;
}

/* account user */
/* Product page css */
.product-decription .sky-tab-content-1{
    font-size: 120%;
    color: #000;
}

.product-big-img img{
    width: 100% !important;
}

.p-title h3 {
    font-size: 2.1em;
}

.p-title .modal-no {
    color: #7c7c7c;
}

.p-description {
    font-size: 14px;
    color: #69696a;
}

.mrp-sp .main-mrp {
    font-size: 1.5em;
    display: block;
}

.mrp-sp .main-mrp.del {
    color: #2b2b2b;
    font-size: 1em;
    text-decoration: line-through;
}

.mrp-sp .main-sp {
    font-size: 1em;
    color: #074a07;
}

.mrp-sp .main-sp::after{
    content:'₹';
}

.p-m-percentage-amt {
    background: #ffc107;
    padding: 3px 10px;
    border-radius: 4px;
    color: #000;
    transform: rotate(326deg);
    position: absolute;
}

.p-m-percentage-amt::after{
    content:' %off';
}

.availability .in-stock {
    color: #328035;
    font-size: 17px;
    font-weight: 500;
}

.availability .out-stock{
    color: #ff5722;
    font-size: 20px;
    font-weight: 500;
}

.add-to-cart-main{
    margin-top: 10px;
}

.main-you-save {
    background: url(../../img/percent_off.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 30px;
    font-size: 14px;
}

.product-img p{
    margin-bottom: .5rem;
}

.qty-select {
    width: 80px;
    height: 35px;
    padding: 5px 10px;
    border-color: #707070;
    border-width: 2px;
    color: #707070;
    border-radius: 4px;
}

.btn-add-cart {
    width: 150px;
    height: 50px;
    background: #000;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    color: #000000 !important;
    border-radius: 4px;
    background-image: linear-gradient(342deg, #cacaca, #cacaca);
    transition: all .3s linear;
}

.btn-add-cart:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked),
[type="radio"]:checked,
[type="radio"]:not(:checked){
	position: absolute;
	left: -9999px;
	width: 0;
	height: 0;
	visibility: hidden;
}

.checkbox-tools:checked + label, .checkbox-tools:not(:checked) + label {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    font-size: 16px;
    margin: 0 auto;
    margin-right: 5px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.checkbox-tools:not(:checked) + label {
    background-color: #dadada;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    color: #000;
}

.checkbox-tools:checked + label{
	background-color: transparent;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-tools:not(:checked) + label:hover{
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-tools:checked + label::before, .checkbox-tools:not(:checked) + label::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-image: linear-gradient(360deg, #F9A825, #F9A825);
    z-index: -1;
}

.warning-msg{
    line-height: 3;
}

.print-warning {
    background: #f8af9b;
    padding: 5px 15px;
    border-radius: 15px;
    opacity: 0;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Product page css */
/* not found page css */
#not-found{
    background-color: #fcfcfc;
    padding: 100px 0;
}

#missing-bg{
    background: url('../../img/missing.png');
    background-position-x: 190px;
    background-size: contain;
    background-repeat: no-repeat;
}

.missing-text{
    font-size: 200%;
}

.missing-text h1{
    font-size: 5em;
    color: #000;
}

.missing-text h3{
    font-size: 1.1em;
    color: #333;
}

.missing-text p{
    font-size: 20px;
    color: rgb(90, 90, 90);
}

.missing-text a{
    font-size: 17px;
    color: rgb(90, 90, 90);
}

/* not found page css */
#featured{
    background-color: #fff;
}

/* featured product setting */
.featured-products {
    position: relative;
    margin-top: 50px;
    border: 1px solid #ebebeb;    
    border-radius: 10px;
    transition: all .3s cubic-bezier(0, 0, 0.44, 1.18);
}

.featured-products::after {
    content: '';
    border-bottom: 3px solid #074a07;
    position: absolute;
    z-index: 999;
    bottom: 0;
    width: 25%;
    opacity: 0;
    transition: all .3s linear;
    left: 0;
}

.featured-products:hover::after{
    left: 36%;
    opacity: 1;
}

.featured-products .fp-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.featured-products .fp-image a{
    display: block;
    position: relative;
}

.featured-products .fp-image img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 293px;
    object-fit: contain;
}

.featured-products .fp-image .fp-hover-img{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    transform: scale(1.1);
    display: none;
}

.featured-products .fp-image:hover img.fp-hover-img {
    opacity: 1;
}

.featured-products .button-head {
    display: inline-block;
    height: 40px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -50px;
    z-index: 9;
    height: 50px;
    line-height: 50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0 10px;
}

.featured-products:hover {
    box-shadow: 0 8px 20px #bebebe;
}

.featured-products:hover .button-head {
    bottom: 10px;
}

.featured-products .button-head .fp-product-action {
    /* position: absolute; */
    left: 0;
    bottom: 0;
    text-align: left;
    z-index: 99;
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    padding-left: 15px;
    text-align: center;
    background: rgb(247, 247, 247,.9);
    border-radius: 10px;
}

.featured-products .button-head .fp-product-action a.addToCart {
    display: block;
    background-color: transparent;
    color: #2f2f2f;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1;
    display: inline-block;
}

.featured-products .f-product-content {
    /* margin-top: 20px; */
    padding: 5px 10px;
}

.featured-products .f-product-content .fp-title a:hover {
    color: #f71d1d;
}

.featured-products .f-product-content .fp-title a {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #000;
}

.featured-products .f-product-price {
    margin: 6px 0 0 0;
}

.featured-products .f-product-price span {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Ubuntu';
}

.featured-products .f-product-price .f-mrp{
    color: #d90000;
    font-size: 18px;
}

.featured-products .f-product-price .f-mrp.del{
    text-decoration: line-through;
    color: #6c6c6c;
    font-size: 14px;
}

.featured-products .f-product-price .f-sp{
    color: #d90000;
    font-size: 20px;
}

.featured-products .f-product-price .f-sp::after{
    content: '₹';
}

.discount-item{
    position: relative;
}

.discount-item .percentage-amt {
    position: absolute;
    color: #fff;
    z-index: 999;
    font-size: 20px;
    top: -15px;
    left: 18px;
}

.discount-item .percentage-amt::after{
    content: '%';
}

.discount-item img.discount-icon {
    position: absolute;
    z-index: 99;
    width: 52% !important;
    left: 6px;
    top: -33px;
    filter: hue-rotate(113deg);
}

/* featured product setting */
.dropdown-home-category{
    position: relative;
}

.drop-down-side-category{
    position: absolute;
    left: 0;
    /* top: 0; */
    background: #fff;
    z-index: 99999;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    height: auto;
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0 0 3px #b6b6b6;
}

.drop-down-side-category ul li a:hover, .drop-down-side-category ul li a.active {
    color: #585858 !important;
    text-decoration: none !important;
    background: rgb(255, 255, 255) !important;
}

.drop-down-side-category ul li a {
    padding: 0 15px !important;
    color: rgb(43, 43, 43) !important;
    display: block !important;
    height: 50px !important;
    line-height: 50px !important;
    border-bottom: 1px solid #ebebeb;
    font-size: 15px !important;
}

.drop-down-side-category ul li a.main-items:last-child{
    border-bottom: none;
}

.drop-down-sub-category a:last-child{
    border-bottom: 1px solid #ebebeb !important;
}

.drop-down-side-category ul li {
    list-style: none;
    width: 300px;
}

.drop-down-side-category ul {
    margin: 0;
    padding: 0;
    display: block !important;
}

.category-field {
    padding: 0 163px 0px 5px !important;
    font-size: 1.3em !important;
}

.main-category-li{
    position: relative;
}

.main-category-li:hover .drop-down-sub-category{
    transform: scaleY(1);
    z-index: 99999;
    opacity: 1;
}

.drop-down-sub-category {
    position: absolute;
    right: -300px;
    background: #fff;
    width: 100%;
    border-left: 4px solid #074a07;
    border-top: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    top: 0;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    z-index: -1;
    opacity: 0;
    transform: scaleY(0);
}

.side-arrow {
    position: absolute;
    right: 15px;
    margin-top: 17px;
}

.active-nav #navBar {
    position: fixed;
    width: 100%;
    z-index: 1234;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    top: 0;
}

 .cart-hover {
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.active-nav .cart-hover {
    position: fixed;
    margin-top: -65px;
    z-index: 99999;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.active-nav #navBar{
    background: #eeeeee;
    border-bottom: 1px solid #e2e2e2;
}

.active-nav #header nav ul li a {
    color: rgb(12, 12, 12);
}

.active-nav #header nav ul li a:hover, .active-nav #header nav ul li a.active {
    color: #ffffff;
    text-decoration: none;
    background: #074a07;
}

.active-nav .category-field {
    padding: 0 137px 0px 30px !important;
    font-size: 1.3em !important;
    background: #074a07;
    color: #fff !important;
}

.drop-down-side-category {
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #ebebeb;
    height: auto !important;
    transform: translateX(-500px);
}

.active-nav .drop-down-side-category {
    transform: translateX(-500px);
}

.active-nav .dropdown-home-category:hover .drop-down-side-category, .dropdown-home-category:hover .drop-down-side-category {
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0px 5px 15px #0000000a;
    transform: translateX(0px);
}

.active-nav a.main-items:last-child{
    border-bottom: none !important;
} 

.cart-box {
    text-align: right;
    margin-top: 15px;
    margin-right: 10px;
}

.cart-box a.wishList{
    color: #074a07;
    font-size: 1.2em;
}

.cart-box a.cart{
    font-size: 1.3em;
}

.cart-box a{
    color: inherit;
}

.cart-box a:first-child{
    margin-right: 20px;
}

.search-box {
    text-align: center;
    position: relative;
    padding: 0 50px;
    margin-top: 8px;
}

.search-box input {
    width: 100%;
    height: 40px;
    border: 1px solid #074a07;
    border-radius: 6px;
    padding: 5px 15px;
}

.search-box input:focus, .search-box input:focus-visible {
    border-color: #074a07;
}

.search-box button {
    position: absolute;
    background-color: #074a07;
    border: none;
    padding: 0px 15px;
    right: 50px;
    border-radius: 0 6px 6px 0;
    height: 38px;
    top: 1px;
    color: #fff;
    cursor: pointer;
}

.autoComplete_wrapper{
    position: relative;
}

.autoComplete_wrapper #autoComplete_list_1 {
    position: absolute;
    background: #fff;
    z-index: 999;
    padding: 5px 10px 10px;
    border: 1px solid #ebebeb;
    box-shadow: 0 1px 4px #6464646b;
    width: 100%;
}

.autoComplete_wrapper .mark, .autoComplete_wrapper mark {
    padding: .2em;
    background-color: #fcfbd5;
    color: #000;
}

#header{
    text-align: left;
}

.no-booiking-available {
    padding: 20px;
    color: #ff5722;
    background: #fcfcfc;
    margin: 15px;
    border: 1px solid #ccc;
}

.pull-left{
    float: left;
}

.mr-20{
    margin-right: 20px;
}

.ml-20{
    margin-left: 20px;
}

.pull-right{
    float: right;
}

.clearfix{
    clear: both;
}

/* login css */
.login-body{
    background-color: #fff;
}

.formFields {
    /* background: #fafafa; */
    padding: 50px;
    margin-top: 5%;
    border: 1px solid #ebebeb;
}

.formFields.loginFields {
    margin-top: 15%;
}

.logoFields{
    text-align: center;
}

.logoFields img{
    width: 230px;
}

.logoFields h1 {
    font-size: 1.4em;
    margin-top: 20px;
    font-family: 'PT Sans' !important;
    font-weight: 500;
}

.formFields .formArea{
    margin-top: 30px;
    font-size: 17px;
}

.formFields .signUpArea{
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.formFields .form-control{
    border-radius: 0;
    font-size: 17px;
    font-family: 'Open Sans';
}

.formFields .form-control::placeholder {
    color: #ccc;
    font-family: 'Open Sans';
    font-size: 17px;
}

#showPasswordPos{
    position: relative;
}

.showHidePassword {
    position: absolute;
    right: 20px;
    top: 40px;
    font-family: 'Open Sans';
    cursor: pointer;
    font-size: 15px;
    color: #2a2760;
    padding: 1px 5px;
    border-radius: 4px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.progressRing{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #d90000;
    transform: scale(0,0);
    animation: progressRing 1s linear infinite;
}

@keyframes progressRing {
    0%{transform: scale(0,0);}
    100%{transform: scale(1,1); opacity: 0;}
}

#createQuick{
    transition: all .3s linear;
    padding: 0 5px;
}

.showOtpAuthArea #createQuick{
    left: -100%;
    position: relative;
}

#OTPAuthentication {
    text-align: center;
    transition: all .3s linear;
    position: absolute;
    top: 0;
    right: -118%;
    opacity: 0;
    visibility: hidden;
}

.showOtpAuthArea #OTPAuthentication{
    right: 0;
    opacity: 1;
    visibility: visible;
}

.OTPField, .forgotOTPField {
    text-align: center;
    border: none;
    background: transparent;
    border-bottom: 1px solid #ccc;
    font-size: 3em !important;
    padding: 30px 5px;
    width: 45%;
}

.OTPField::placeholder, .forgotOTPField::placeholder {
    font-size: 1em !important;
}

#OTPAuthentication .flex-box, .forget-flex-box{
    display: flex;
    justify-content: center;
}

.forget-flex-box{
margin-bottom: 10px;
}

.OTPField:focus, .forgotOTPField:focus {
    box-shadow: none !important;
}

.pos-relative{
    position: relative;
}

.removeTextIntoTextFiled {
    position: absolute;
    right: 10px;
    top: 40px;
    font-size: 20px;
    color: #555;
    cursor: pointer;
}

.loginFormPostion{
    position: relative;
    overflow: hidden;
    padding: 5px;
    box-sizing:border-box;
}

.loginFormPostion #loginQuick{
    transition: all .3s cubic-bezier(0.58, -0.02, 0.26, 0.99);
    position: relative;
    left: 0;
}

.showForgetWindow #loginQuick{
    position: relative;
    left: -102%;
}

#forgetPassword {
    position: absolute;
    width: 100%;
    right: -100%;
    top: 0;
    transition: all .3s cubic-bezier(0.58, -0.02, 0.26, 0.99);
    padding: 5px;
}

.showForgetWindow #forgetPassword{
    right: 0;
}

.backToLogin{
    display: inline-block;
    margin-top: 10px;
}

.loginPageHeading{
    transition: all .3s cubic-bezier(0.58, -0.02, 0.26, 0.99);
}

.doNotRefresh {
    font-size: 1.2em;
    text-align: center;
    display: block;
    font-weight: 500;
    margin-top: 10px;
    font-family: 'PT Sans';
}

/* .doNotRefresh {
    font-size: 1.1em;
    text-align: center;
    display: block;
    font-weight: 500;
    margin-top: 10px;
    font-family: 'PT Sans';
    text-transform: uppercase;
    background: #3f51b5;
    padding: 10px;
    position: relative;
    border-radius: 6px;
    color: #fff !important;
}

.doNotRefresh::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(360deg, rgb(255 255 255 / 17%), rgb(255 255 255 / 64%));
    width: 100%;
    height: 25px;
} */
.resenOTP{
    color: #111;
    font-family: 'PT Sans';
}

/* login css */
/* book appointment */
.underConstruct img{
    width: 350px;
}

.underConstruct h1{
    color: #535353;
    font-size: 2em;
    margin-bottom: 50px;
}

.Appontment-fields{
    padding: 30px 0;
}

.Appontment-fields p{
    font-size: 1.2em;
    color: #393939;
    font-family: 'Ubuntu';
}

/* .selectTimeSlots, .selectDepartmentArea, .selectDoctorsArea, .selectPatientArea, .selectPatientIssue {
    border-top: 1px solid #ccc;
    padding-top: 10px;
} */

.custom-radio {
    margin:  20px 0;
  }

  .radioLabel input[type=radio] {
    -webkit-appearance: none;
}

  .radioLabel input[type=checkbox] {
    -webkit-appearance: none;
}

.radioLabel input[type=radio]:checked + .radioSpan {
    background: #2a2760;
    color: #fff;
}

.radioLabel input[type=checkbox]:checked + .radioSpan {
    background: #2a2760;
    color: #fff;
}

.radioLabel input[type=checkbox]:unchecked + .radioSpan {
    background: #064906;
}

.termsAndCondi .radioSpan {
    background: #064906;
    padding: 5px 10px;
    font-size: 17px;
}

.radioSpan {
    background: #03a9f4;
    padding: 10px 10px;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    font-family: 'PT Sans';
}

.selectDepartmentArea .radioSpan {
    background: #f8f8f8;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    display: inherit;
}

.dateSpan {
    display: block;
    width: 160px;
    font-size: 14px;
    font-family: 'Open Sans';
    font-weight: 500;
    text-align: center;
}

.selectTimeSlots .radioSpan {
    background: #f8f8f8;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: inherit;
    padding: 5px 10px;
    font-size: 17px;
}

.dateSpan.disabled {
    background: #9e9a99;
    color: #565656;
}

.date-carousel .owl-nav {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: -50px;
}

.date-carousel.owl-theme .owl-nav [class*=owl-]:focus{
    border: none !important;
    outline:none;
}

.date-carousel.owl-theme .owl-nav span:focus-visible{
    border: none !important;
    outline:none;
}

.date-carousel.owl-theme .owl-nav [class*=owl-]:hover{
background-color: transparent;
color: #111;
outline: none;
}

.date-carousel .owl-next, .date-carousel .owl-prev {
    font-size: 50px !important;
}

/* .selectDoctorsArea img{
    width: 100%;
    border-radius: 6px 0 0 6px;
} */
.selectDoctorsArea img {
    width: 100%;
    border-radius: 6px 0 0 6px;
    transform: scale(1.3) translateY(13px) translateX(16px);
}

.selectDoctorsArea .doctor-body {
    border: 1px solid #ccc;
    /* padding: 0px; */
    border-radius: 6px;
}

.dr-side {
    padding: 10px 10px 5px 30px;
    /* background: #fff; */
}

.dr-side p {
    font-size: 15px;
    color: #495057;
    margin-bottom: 0;
    font-family: 'Ubuntu';
}

.selectDoctorsArea .radioSpan {
    display: inherit;
    padding: 5px 50px;
    border-radius: 6px;
    background: #f8f8f8;
    margin-top: 15px;
    color: #333;
    border: 1px solid #ccc;
}

.selectDoctorsArea .custom-radio{
    margin: 0;
}

.pd-0{
    padding: 0;
}

.selectDoctorsArea .qualification{
    color: #d90000;
}

.selectPatientIssue, .selectDoctorsArea{
    font-family: 'PT Sans';
    margin-bottom: 20px;
}

#patientID{
    font-family: 'PT Sans';
    margin-bottom: 20px;
}

.selectPatientArea label{
    font-family: 'PT Sans';
}

.rightInstuctionBar ul {
    /* list-style: inside circle; */
    list-style: none;
    font-family: 'PT Sans';
    font-size: 16px;
    font-weight: 500;
}

.side-steps p{
    font-size: 22px;
    font-family: 'PT Sans';
}

.rightInstuctionBar ul li:before {
    content: "";
    float: left;
    margin-top: 9px;
    margin-right: 12px;
    width: 6px;
    height: 6px;
    border: 1px solid #ff5722;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.rightInstuctionBar ul li {
    padding: 10px 10px;
    border-bottom: 1px solid #ccc;
    border-top: none;
    color: #5e5e5e;
}

.rightInstuctionBar ul li:first-child {
    border-top: 1px solid #ccc;
    background: #7d7d7d;
    color: #fff;
}

.instruction1.active,
.instruction2.active,
.instruction3.active,
.instruction4.active,
.instruction5.active,
.instruction6.active,
.instruction7.active,
.instruction8.active{
    background-color: #2a2760;
    color: #fff;
    transition: all .3s linear;
    transform: scale(1.05,1.05);
}

.instruction1.active .badge-danger,
.instruction2.active .badge-danger,
.instruction3.active .badge-danger,
.instruction4.active .badge-danger,
.instruction5.active .badge-danger,
.instruction6.active .badge-danger,
.instruction7.active .badge-danger,
.instruction8.active .badge-danger{
    color: #2a2760;
    background-color: #fefefe;
}

.instruction1.active::before,
.instruction2.active::before,
.instruction3.active::before,
.instruction4.active::before,
.instruction5.active::before,
.instruction6.active::before,
.instruction7.active::before,
.instruction8.active::before{
    border: 1px solid #fff;
}

.instruct-li::before {
    border: 1px solid #fff !important;
}

.consultant_fees{
    font-size: 16px;
    font-family: 'Ubuntu';
    background: #fafafa;
    text-align: center;
    padding: 4px 10px;
    margin-top: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.payment-confirm-form{
    font-family: 'Ubuntu';
    font-size: 16px;
}

.if-doctor-not-avail {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background: #eee;
    text-align: center;
    margin-top: 65px;
}

.previewBookingResult{
    margin-top: 30px;
}

.previewBookingResult p {
    font-size: 1.5em;
    font-family: 'Ubuntu';
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    color: #000;
}

.bottom-text{
    font-size: 1.1em;
    font-family: 'Ubuntu';
}

.verify_payment_form::placeholder{
    color: #161616;
}

/* payment success */
.cover-outer{
    overflow: hidden;
}

.cover-inner{
    max-width: 500px;
    padding: 50px;
    margin: 10% auto;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 .3rem #ccc;
}

.image-placeholder {
    border-bottom: 3px dashed #999;
    padding-bottom: 7px;
    font-family: 'Ubuntu';
    color: #999;
}

.image-placeholder img{
    width: 150px;
}

.image-placeholder h1{
    color: #25D366;
}

.payment-failed .image-placeholder h1{
    color: #f3564d;
}

.payment-failed .image-placeholder{
    border-bottom: none;
}

.bottom-content{
    font-family: 'Ubuntu';
    margin-top: 15px;
}

.bottom-content .table td {
    padding: .75rem;
    vertical-align: top;
    border-top: none;
}

/* receipt css */
.receipt-outer{
    /* position: absolute;
    z-index: 99999; */
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.95);
    /* display: none; */
    font-family: 'Open Sans';
}

.receipt-box{
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 6px;
    box-shadow:  0px 0px .3rem #ccc;
    padding: 50px;
    animation-delay: .5s;
    transition: all 0.3s linear;
    /* transform: translateY(-1000px);
    opacity: 0; */
    border: 3px solid #009688;
    background-color: #fff;
}

.receipt-header {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.receipt-logo{
    text-align: center;
}

.receipt-logo img{
    width: 110px;
}

.receipt-title h1 {
    color: #111;
    text-align: center;
    font-family: 'Ubuntu' !important;
    font-size: 2.1em;
    font-weight: 600;
    text-transform: uppercase;
}

.receipt-contact-no p, .receipt-email p{
    color: #2a2760;
    font-family: 'Ubuntu';
}

.receipt-address{
    color: #464646;
    font-family: 'Open Sans';
    text-align: center;
}

/* book appointment */
/* user profile css */
/* alert box css */
.alert-body{
    position: fixed;
    background-color: rgba(255, 255, 255, 0.397);
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    transition: all .3s linear;
}

.alert-box{
    max-width: 500px;
    padding: 50px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 2px #cfcfcf;
    text-align: center;
    margin: 10% auto;
    transition: all .3s linear;
    transform:translateY(-1000px);
}

.alert-img img{
    max-width: 200px;
}

/* alert box css */
.text-overflow-ellipsis {
    white-space: nowrap;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-content h3 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #fff;
}

.sideNavigation ul{
    list-style:none;
    background-color: #fff;
}

.sideNavigation ul li {
    padding: 10px 15px;
    border: 1px solid #e6d678;
    border-bottom: none;
}

.sideNavigation ul li:first-child {
    background: #673ab7;
    color: #ffffff;
}

.sideNavigation ul li:last-child {
    border-bottom: 1px solid #e6d678;
}

.sideNavigation ul li a {
    color: #111;
    font-size: 17px;
    font-family: 'PT Sans';
}

.sideNavigation ul li span {
    text-align: center;
    font-family: 'PT Sans';
    font-size: 18px;
}

.profile-content{
    font-family: 'PT Sans';
    font-size: 17px;
}

#changePasswordProfile{
    background-color: #fafafa;
    padding: 20px;
}

.text-profile{
    color: #064906 !important;
}

/* user profile css */
.date_time {
    color: #064906;
    font-size: 1.1em;
    font-weight: 600;
    border-right: 2px solid #6c6c6c;
    padding-right: 10px;
}

.departmentName{
    padding-left: 10px;
    color: #4d4d4d;
    font-size: 1.1em;
    font-weight: 600;
}

.likePost{
    cursor: pointer;
    font-size: 1.1em;
}

.achievements-box .serv-content-box p{
    font-size: 17px;
}

.doctors-icon{
    position: relative;
}

.doctors-icon::after {
    content: '';
    position: absolute;
    background-image: url(../../img/scope.png);
    width: 40px;
    height: 40px;
    background-size: contain;
    top: 3px;
}

.departments-page .doctors-icon::after, .department-profile-page .doctors-icon::after {
    top: 38px;
}

#online-book-apointmet{
    background-color: #064906;
    border-radius: 4px;
}

.app-shimmer{
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0)), color-stop(60%, rgba(255, 255, 255, 0.85)), color-stop(100%, rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(
160deg
, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0) 100%);
background-image: linear-gradient(
90deg
, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .3), hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .3), hsla(0, 0%, 100%, 0));
background-repeat: repeat-y;
background-position: -500px 0;
animation: highlight 3.3s linear 2s infinite;
}

@keyframes highlight {
    0%{ background-position: -500px 0;}
    100%{background-position: 500px 0;}
}

.offer-outer-bg {
    padding: 20px 25px;
    background-image: linear-gradient(45deg
, #ECF7FC, #edf2f5);
    position: relative;
    border-radius: 10px;
    min-height: 220px;
}

.offer-outer-bg img {
    max-width: 300px;
    position: absolute;
    right: -21px;
    top: -31px;
    border-radius: 33px;
}

.offer-titile-appointment {
    color: #673ab7;
    margin-left: 50px;
    font-size: 2.1em;
    margin-top: 10px;
}

.tagline-online-appointment {
    margin-bottom: 5px;
    color: #ff5722;
    font-family: 'Open Sans';
    margin-left: 50px;
    padding-right: 20%;
    font-size: 1.1em;
}

#offer-background #online-book-apointmet {
    margin-left: 50px;
    padding: 8px 15px;
    margin-top: 10px;
    display: inline-block;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    background-color: #3f51b5;
}

#userAccount .dropdown-menu {
    z-index: -1;
    display: block !important;
    margin-top: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s linear;
}

.dropdown a:hover {
    color: #333 !important;
}

.show .dropdown-menu{
    z-index: 10000 !important;
    margin-top: 0px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#online-book-apointmet > a{
    color: #fff !important;
}

.site-description{
    display: none;
}

/*20-08-2020*/
.about_heading b, .about_heading strong {
	color: #222d35;
	font-size: inherit;
}

.about_heading{
    font-family: 'PT Sans';
    font-size: 17px;
}

.contact-us-div.getFreeQuotation {
    background: #007bff;
}

.contact-us-div {
	height: 130px;
	background: #222d35;
	margin-bottom: -30px;
}

.contact-us-div h4 {
	line-height: 130px;
	padding: 0 20px;
	font-size: 1.3em;
}

.contact-us-div h4 a {
	color: #fff;
	text-decoration: none;
	padding: 5px 30px;
	border: 2px solid #fff;
	border-radius: 1em;
}

/*20-08-2020*/
.lg-device-off{
    display: none;
}

.video-player {
	box-shadow: 0 0 .25rem #c2c2c2;
	background: #d7d7d7;
}

#myvideo{
    width: 100%;
    height: 250px;
}

.row.service-video h2 {
	text-align: center;
	font-size: 25px;
	margin: 30px 0;
	border-bottom: .001rem solid #ededed;
	padding-bottom: 10px;
}

.paralax-effect {
	background: #fff;
}

.paralax-effect h2{
    color: #111 !important;
}

.service-box{
    margin-top: 30px;
}

.serv-outer-layer {
    box-shadow: 0 0 0.15rem #696969;
    margin-bottom: 20px;
    border: 1px solid #ECF7FC;
    border-radius: 0 0 6px 6px;
}

/* .departments-page .departments-body{
    filter: drop-shadow(0px 0px 3px #333);
} */

.departments-page {
    margin-bottom: 30px;
}

p.department-about {
    font-family: 'Open Sans';
    font-size: .9em;
}

.departments-body {
    margin-bottom: 0;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    box-shadow: 0 0 4px #818181;
}

.departments-body-box{    
    overflow: hidden;
}

.border-time {
    color: #0b0b0b;
    font-family: 'PT Sans';
    margin-bottom: 10px;
    /* padding-bottom: 10px; */
    font-weight: 600;
}

.border-time h5 {
    font-size: 1.3em;
    font-family: 'Poppins' !important;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: #007bff;
    padding: 5px 0;
}

.schedule-header h2{
    font-family: 'Ubuntu' !important;
    font-size: 2.5em;
    text-align: center;
    color: #272727;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.border-time span.d-block hr {
    border-color: rgba(83, 83, 83, 0);
    margin: 5px 0;
}

.border-time span.d-block .timebar {
    background: #c4c4c4;
    padding: 3px 0px;
    color: #000;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.serviceable-areas .col-md-3 {
    border: 1px solid #c4c4c4;
    padding-top: 10px;
}

.home-schedule {
    background: #fff;
    background-image: url(../../img/icons/diet.png);
    border-top: 3px solid #202020;
    background-size: 15%;
    background-repeat: no-repeat;
    background-position: right bottom;
    margin-bottom: -30px;
}

.serv-content-box{
    padding: 15px;
    background-image: linear-gradient(45deg, #ECF7FC,#fff2ee);
    border-radius: 0 0 6px 6px;
}

.serv-content-box h3 {
	font-size: 22px;
	color: #111;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}

.serv-content-box p {
	text-align: justify;
	font-size: 15px;
	font-weight: 400;
	font-family: 'PT Sans';
	color: #444;
}

.serv-img-box img {
	width: 100%;
	filter: grayscale(0);
	transition: all 0.5s ease-in-out;
    cursor: pointer;
/*    border: 5px solid #cec806;*/
}

.departments-body-box img {
	width: 100%;
	transition: all 0.5s ease-in-out;
    cursor: pointer;
    border-radius: 6px;
}

.service-box .col-md-4:hover .serv-img-box img{
    filter: grayscale(1);
}

.department-box .col-md-4:hover .departments-body-box img{
   transform: scale(1.1);
    filter: grayscale(.6);
}

.department-title{
    padding: 10px 10px 10px 5px;
    background: #fff;
}

.department-title h3 {
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.1em;
    margin-top: 5px;
    color: #111;
}

.department-title h4 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.2em;
    margin-top: 0;
    color: #064906;
    font-family: 'Poppins', sans-serif !important;
    margin-bottom: 5px;
    border-top: 1px solid #ccc;
    padding-top: 5px;
}
.product-data-preview .col-12{
    max-width: 50%;
}

.department-title span{
    font-size: 1em;
    font-weight: 600;
    color: #333;
    display: block;
}

.department-title p.degree {
    color: #6c6c6c;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    font-size: 1em;
    font-weight: 600;
}

.department-title p.experience {
    color: #fff;
    font-family: 'Ubuntu';
    margin-bottom: 0;
    font-size: .9em;
    font-weight: 500;
    display: inline-block;
    background-color: teal;
    border-radius: 6px;
    padding: 2px 5px;
    margin-bottom: 5px;
}

/*changes date 19-08-2020*/
.visible.call_now{
    left: -35px;
    opacity: 1;
}

.call_now {
    position: fixed;
    top: 50%;
    left: -250px;
    transition: all 0.5s ease-in-out;
    font-size: 20px;
    background: #e9ecef;
    padding: 5px 13px;
    border-radius: 0 0 6px 6px;
    transform: rotate(-90deg);
    color: #121212;
    opacity: 0;
    font-family: 'Ubuntu';
}

a:hover{
    text-decoration: none;
    color: inherit;
}

.social-media-link a {
	display: inline-block;
	color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-size: 17px;
    font-family: 'Open Sans';
}

.social-media-link a .ti-instagram, .social-media-link a .ti-facebook {
	width: 30px;
	height: 30px;
	vertical-align: middle;
	padding: 7px;
}

.social-media-link a .ti-facebook {
	background: #ddd;
	color: #222d35;
	border-radius: 6px;
}

.social-media-link a .ti-instagram {
	background-image: linear-gradient(to bottom, #fd2d6d, #c70137);
    border-radius: 6px;
}

.top-icon {
	background: #fff;
	padding: 2px 150px;
    border-bottom: 1px solid #d4d4d4;
}

.top-icon a {
    color: #232322;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Poppins';
    margin: 0 0px;
}

.top-icon i{
    color: #074a07;
}

.top-icon .social-box{
    text-align: right;
}

.top-icon .social-box .fa {
	padding: 5px 10px;
	font-size: 20px;
}

.top-icon .social-box {
	text-align: right;
	padding: 5px 0;
}

.contact-box, .account-box {
	padding: 5px 0;
	line-height: 30px;
}

.contact-box {
    text-align: left;
}

.account-box {
    text-align: right;
}

.fa-phone {
	transform: rotateZ(60deg);
	font-size: 1.05em;
}

.account-box .mobile-invisible, .contact-box .mobile-invisible{
    padding: 0 15px;
    opacity: .5;
    font-weight: 100;
}

.heading-title h1 {
	font-weight: 600;
	font-size: 1.3em;
	margin-bottom: 0;
	font-family: 'Poppins' !important;
	display: inline-block;
	margin-left: 1em;
	color: #222d35;
	vertical-align: middle;
}

.get_quote {
	font-family: 'Poppins' !important;
	color: #fff !important;
	background: #222d35;
	border-radius: 2em;
	box-shadow: 0 0 2px #333;
}

/*changes date 19-08-2020*/
.side-menu .social-box a {
	color: #fff;
	text-decoration: none;
}

.side-menu .social-box .fa {
	padding: 5px 10px;
	font-size: 20px;
	background: #fd740a;
	border-radius: 6px;
}

.side-menu .social-box {
	text-align: right;
	padding-top: 1.5rem;
}

.highlight-menu {
	background: #fd740a;
	color: #fff !important;
	border-radius: 0 0 10px 10px;
}

.black-background {
	background: #fff;
}

.black-background h2{
    color: #111 !important;
    position: relative;
}

.read-more{
    font-family: 'Ubuntu';
    color: #111;
}

.read-more:hover {
    color: inherit;
}

.side-image{
    text-align: center;
    margin-top: 40px;
}

.side-image img {
    width: 80%;
    padding: 6%;
/*    box-shadow: 0 0 6px #000;*/
    background: #11faa7cc;
}

/*
.black-background h2::before {
	content: '';
	position: absolute;
	width: 92px;
	height: 3px;
	background: #fd740a;
	margin-left: 5px;
	margin-top: 40px;
}

*/
/*
.black-background .serv-content-box h3,  .black-background .serv-content-box p{
    color: #fff !important;
}

*/
/*changes date 19-08-2020*/
.text-tomato{
    color: #222d35 !important;
}

.job-box{
    margin-top: 0px;
}

.job-box h5{
    margin-bottom: 10px;
}

.job-box label{
    margin-top: 10px;
}

.job-box input, .job-box textarea{
    transition: all 0.2s ease;
}

.job-box input::placeholder, .job-box textarea::placeholder{
    color: rgba(32, 30, 31, 0.81);
}

.job-box input:focus, .job-box textarea:focus{
    border-left: 5px solid #fd740a;
    box-shadow: none;
    outline: none;
}

/*changes date 19-08-2020*/
.job-box .form-control:not(textarea){
    height: 45px;
    border-radius: 0px;
    border-color: #222d35;
    color: #201E1F;
}

.job-box textarea.form-control{
    border-radius: 0px;
    border-color: #222d35;
     color: #201E1F;
}

#workWithUs{
   padding: 0 50px 0 0px; 
}

.side-job-banner {
	background: url(../../img/side_banner.jpg), rgba(0, 0, 0, 0.08);
	height: calc(100% - 0px);
	background-size: cover;
	background-position: bottom;
	background-blend-mode: color;
}

.side-job-banner span {
	font-size: 25px;
	display: block;
	text-align: center;
	line-height: 12;
	font-weight: bold;
	color: tomato;
}

/*changes date 19-08-2020*/
.error-text{
    color: #d90000;
}

.success-text{
    color: green;
    font-weight: bold;
}

#successModal img {
	width: 60px;
}

#successModal .modal-body{
    text-align: center;
}

.text-for-modal p {
	padding: 0 20px;
	color: black;
}

#successModal .modal-content {
	border-radius: 0;
}

#successModal .modal-header {
	border-bottom: none;
}

#successModal .close{
    color: tomato;
    opacity: 1;
}

/*changes date 19-08-2020*/
.staff-require .side-job-banner {
	background: url(../../img/staff.png), rgba(0, 0, 0, 0);
	height: calc(100% - 0px);
	background-size: contain;
	background-position: bottom;
	background-blend-mode: color;
    background-repeat: no-repeat;
}

/*changes date 19-08-2020*/
.staff-require .side-job-banner span {
	font-size: 25px;
	display: block;
	text-align: center;
	line-height: 5;
	font-weight: bold;
	color: #222d35;
}

.btn-danger{
    background-color: tomato;
    border-color: tomato;
}

/*result css code*/
.header {
    background-color: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(0, 0, 0, 0.44);
}

#header .logo_field {
    float: left;
    font-weight: bold;
}

#header .logo_field h3 a {
    color: inherit;
    text-decoration: none;
}

#header .logo_field h3 {
    line-height: 50px;
    font-size: 24px;
    color: #000;
    font-family: 'PT Sans', sans-serif;
    margin-bottom: 0;
    position: relative;
}

/*changes date 19-08-2020*/
/* #header nav {
    float: right;
    padding-top: 10px;
} */

#header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
}

#header nav ul li {
    list-style: none;
}

#navBar {
    padding: 0 150px;
    background: #ffba00;
}

/*changes date 19-08-2020*/
#header nav ul li a {
	height: 50px;
	line-height: 50px;
	padding: 0 15px;
	color: #fff;
	display: block;
	font-family: 'Poppins', sans-serif;
	transition: all 0.5s ease-in-out;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 400;
}

/* #header nav ul li a:last-child{
    padding-right: 0;
} */

#header nav ul li a:hover, #header nav ul li a.active {
    color: #ffffff;
    text-decoration: none;
    background: #000;
}

.menu-toggle {
    color: #fff;
    float: right;
    line-height: 49px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* .breadcrumb {
	background-color: #fff0;
	border-radius: 0;
	border-bottom: 1px solid #dfdfdf;
	padding: 0.75rem 0.25rem 0.5rem 0;
	margin-bottom: 10px;
} */
.breadcrumb {
    background-color: #fff0;
    border-radius: 0;
    border-bottom: 1px solid #dfdfdf;
    padding: 0.75rem 0.25rem .75rem 0;
    margin-bottom: 10px;
    border-top: 1px solid #dfdfdf;
    margin-top: 10px;
}

.breadcrumb-item.active {
    color: #ff5722;
    font-family: 'Open Sans';
}

#bread-nav {
    width: 100%;
}

.logo-placement {
    position: relative;
}

.logo-placement h3 {
    font-family: 'Patua One' !important;
    font-size: 37px;
    color: #ee3e37;
    margin-bottom: 0;
}

.logo-placement a {
    color: inherit;
    text-decoration: none;
}

.main-title {
    display: inline-block;
    margin-left: 27px;
}

.su-title {
	color: #525252;
	font-size: 14px;
	display: inline-block;
	position: absolute;
	bottom: 3px;
	left: 26%;
}

/****************Slider CSS***************************/
/*changes date 19-08-2020*/
/*
.cycle-prev,
.cycle-next {
    font-size: 200%;
    color: #222d35;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    z-index: 9999;
    cursor: pointer;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
    background: #fff;
}

.cycle-prev {
	left: 0%;
	border-radius: 0 1em 1em 0;    
    padding: 3px 15px 5px 10px;
}

.cycle-next {
    right: 0%;
    border-radius: 1em 0em 0em 1em;    
    padding: 3px 15px 5px 15px;
}

#slideshow:hover .cycle-prev,
#slideshow:hover .cycle-next {
    opacity: .85;
    visibility: visible;
    transform: scale(1);
}

*/
#slideshow .cycle-pager-active{
    color: #fff;
    transition: all 0.3s ease-in-out;
}

#slideshow .cycle-pager{
    position: absolute;
    z-index: 123;
    font-size:4em;
    right: 1%;
    top: 45%;
    cursor: pointer;
    transform: rotate(90deg);
    font-family: 'Ubuntu' !important;
    color: #202020;
}

#slideshow {
    width: 100%;
    display: block;
    position: relative;
    margin: 0px auto;
    overflow: hidden;
}

.placeHolder {
    width: 100%;
    /* height: 100vh; */
}

/* .slideOverlay {
    background-image: url(../images/overlay.png);
    background-attachment: fixed;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
} */

#banner {
    border-bottom: 3px solid #222d35;
    position: relative;
    margin-top: 2px;
}

#banner .cycle-overlay {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 600;
	background: rgba(0, 0, 0, 0);
	animation-delay: 1.1s !important;
	height: 100%;
	text-align: center;
	padding-top: 10%;
}

#banner #slideshow h3 {
    text-transform: capitalize;
    /* font-weight: bold; */
    text-align: left;
    color: #202020;
    font-size: 3em;
    display: inline-block;
    position: relative;
    /* font-family: 'Ubuntu', sans-serif !important; */
}

/*
#banner #slideshow h2::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30.5px 0 31.5px 20px;
    border-color: transparent transparent transparent #fff;
}

*/
#banner #slideshow p {
    margin-top: 10px;
    font-weight: bolder;
    color: #fff;
    font-size: 2em;
    display: inline-block;
    position: relative;
    font-family: 'Ubuntu' !important;
    filter: drop-shadow(2px 4px 6px black);
}

/*
#banner #slideshow p::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -20px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 26.5px 0 30.5px 20px;
	border-color: transparent transparent transparent #222d35;
}

*/
.cycle-overlay a {
    background: #074a07;
    padding: 5px 15px;
    font-size: 22px;
    border-radius: 4px;
    color: #fff !important;
    display: inline-block;
    margin-bottom: 20px;
}

.cycle-overlay h3{
    color: inherit;
}

.cycle-overlay span{
    color: inherit;
}

.r-slide {
    padding: 30px 100px;
    background: linear-gradient(180deg, #fffef9, #fafafa);
    border: 5px solid #cacaca;
}

.r-item {
    text-align: center;
}

.r-placeholder {
    width: 80px;
    border: 3px solid #cacaca;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
}

.r-slide h3 {
    font-family: 'Nunito' !important;
    font-weight: bold;
    margin-top: 20px;
}

.r-item p {
    font-family: Nunito;
    font-weight: bold;
}

.quote-form{
    width: 600px;
    position: absolute;
    right: 5%;
    background: #222d35;
    top: 15%;
    z-index: 999;
    padding: 40px 50px;
    border-radius: 1em 0 1em 0;
    border: 5px solid;
    border-left: none;
    border-right: none;
    border-top-color: #222d35;
    border-bottom-color: #fff;
    color: #fff;
    box-shadow: 0 0 2px #333;
    font-family: 'PT Sans';
}

.quote-form .form-control{
    height: 45px;
    border-radius: 0;
}

#admission {
    padding: 50px 0;
    background: #fff;
    background: url(../../img/banner2.jpg), rgba(0, 0, 0, 0.59);
    background-blend-mode: hard-light;
    background-attachment: fixed;
    /*	background-size: contain;*/
    background-position: top;
}

#admission .right-col h4 {
    margin: 0;
    font-size: 2.2em;
}

#admission h4 {
    font-weight: bold;
    font-family: 'Patua One' !important;
    color: #fff;
    font-size: 1.8em;
}

#admission .btn-primary {
    border-radius: 0;
}

#admission p {
    font-weight: bold;
    font-family: 'Patua One' !important;
    margin-bottom: 0;
    color: #201E1F;
    letter-spacing: 4px;
    font-size: 18px;
}

/****************Slider CSS END***********************/
/*code start*/
.header .top-form {
    padding: 0px 10px 15px;
    /* background: rgb(42, 42, 42); */
    transition: all 0.5s ease-in-out;
}

.header .nav-bar-full {
    /* background: #fff; */
    padding: 15px 150px 0;
}

.top-form.visible {
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
	background: #fafafa;
	z-index: 9999;
	top: 0;
	box-shadow: 0 0 3px #414141;
}

.top-form.visible img {
	width: 100px;
}

.top-form.visible h1{
    font-size: .95em;
}

.top-form.visible nav {
	padding-top: 0.5rem !important;
}

.email,
.phone {
    border-right: 2px solid #929090;
    padding-right: 10px;
    margin-right: 5px;
}

.phone-side {
    width: 100%;
    color: #d5d5d5;
    height: 75px;
    line-height: 75px;
}

.phone-side a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.logo_field img {
    width: 45px;
    position: absolute;
    left: -20%;
    top: 3px;
}

.social-icon {
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
    border: 1px solid #c1c1c1;
    /* border-radius: 50%; */
    line-height: 34px;
}

.social-icon .fa:hover {
    color: #007bff;
}

.social-icon .fa {
    transition: 0.5s;
    color: grey;
}

/*changes date 19-08-2020*/
.logo-placement img {
    width: 165px;
    margin-top: 0px;
}

#banner a:hover {
    color: inherit;
}

#banner .btn {
    font-size: 18px;
}

.btn-custom {
    color: #fff;
    background-color: rgba(9, 9, 9, 0.34);
    border-color: #fff;
}

.foot-mid.text-center {
    /*	background: linear-gradient(180deg, #fbfbfa, #f8f8f8);*/
    padding: 15px;
}

.foot-mid h3 {
    font-size: 25px;
    font-family: 'Patua One' !important;
    color: #fff;
}

.appbtn {
    width: 130px;
}

.hr {
	border-top: 1px solid rgb(255, 172, 62);
}

.srviceable-header h2 {
	color: #fff;
	font-size: 20px;
	font-family: 'Poppins' !important;
	margin-bottom: 30px;
}

.serviceable-areas a {
	color: #e7e7e7;
	text-decoration: none;
	font-size: 17px;
	display: inline-block;
	padding-right: 10px;
	border-right: 1px solid;
	padding-left: 10px;
}

.serviceable-areas a:first-child{
    padding-left: 0;
}

.serviceable-areas a:last-child{
    border-right: none;
}

.row.mb-30 {
	margin-bottom: 30px;
}

/*changes date 19-08-2020*/
.footer {
/*	background: #222d35;*/
	background: #ffffff;
    border-top: 3px solid #fdba1a;
}

.foot_pad {
    /*	background: linear-gradient(360deg, #d2d2d2, #fafafa);*/
    padding: 20px 0;
}

.foot_pad p {
    margin-bottom: 0;
    color: #2a2760;
    font-family: 'Open Sans';
}

.foot_pad a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

.foot-top {
    padding: 30px 0 0;
    /*	background: linear-gradient(360deg, #fafafa, #fffef9);*/
}

.foot-top-title {
	font-size: 20px;
	/* text-transform: uppercase; */
	color: #202020;
	font-weight: 600;
}

.foot-top p {
    margin-bottom: 5px;
    color: #111;
    font-size: 15px;
}

.foot-span{
    color: #2a2760;
}

.foot-top p a {
    color: #2a2760;
    text-decoration: none;
/*    font-weight: bold;*/
}

/*changes date 19-08-2020*/
.foot-top p.over-p {
	font-size: 16px;
	/* padding: 0px 15px; */
}

/* .foot-top p.over-p::before {
	content: '-';
	position: absolute;
	left: 16px;
} */

.subscriber {
    margin-top: 20px;
}

.subscriber #subscriber {
    height: 36px;
    border: 1px solid #201E1F;
    padding: 0 0px 0 10px;
    color: #747474;
    transition: all 0.3s ease-in-out;
}

.subscriber #subscriber:focus {
    border-left: 5px solid #007bff;
    border-color: #007bff;
}

.subscriber #scb-btn {
    height: 36px;
    padding: 0px 10px;
    background: #007bff;
    color: #fff;
    border: 1px solid #007bff;
    margin-left: -5px;
    margin-top: -1px;
    cursor: pointer;
}

#requestCallBack {
	margin-top: 1em;
}

#callBackBtn {
	text-transform: uppercase;
}

/*intro part*/
#tesomonials {
	background: #fff;
}

#tesomonials h2, #tesomonials p{
    color: #111 !important;
}

.owl-stage-outer {
	padding-bottom: 10px;
}

.supersaver-carousel .owl-stage-outer {
	padding-bottom: 25px;
}

#tesomonials .client-picture {
	width: 80% !important;
    display: inline-block;
}

.testo-body {
    border-radius: 6px;
    margin-top: 25px;
    min-height: 100px;
}

.client-name {
    border-radius: 0 0 6px 6px;
    position: absolute;
    bottom: 1px;
    width: 99.5%;
    text-align: center;
    padding: 15px;
    background: #FFF2EE;
}

.client-name h6{
    margin-bottom: 0;
    color: #111;
}

.client-msg{
    padding: 25px;
}

.client-msg p {
    text-align: justify;
    padding-top: 0em;
    font-size: 16px;
    color: #1111;
    font-family: 'Ubuntu';
}

.fa-quote-set{
    font-size: 2em !important;
    color: #007bff;
}

#tesomonials h2, .promise-box h2 {
    text-transform: capitalize;
    color: #0f0f0f;
}

.intro,
#promise,
#product,
#blogs {
    padding: 40px 0;
}

#tesomonials {
    padding: 20px 0 40px;
}

#review {
    padding: 30px 0 40px;
}

.intro-box {
    margin-top: 20px;
}

.intro h2,
#promise h2,
#product h2,
#blogs h2, #tesomonials h2 {
    text-align: center;
}

.intro-layer_out {
    min-height: 150px;
    width: 100%;
    box-shadow: 0 0 3px #cacaca;
}

.intro-img img {
    width: 100%;
    height: auto;
}

.intro-text .intro-title {
    padding: 10px 0;
    text-align: center;
    background: #fff;
}

.intro-text .intro-title h3 {
    font-size: 20px;
    display: inline-block;
    margin: 0;
    border: 2px solid goldenrod;
    padding: 7px 10px;
    border-radius: 6px;
    color: goldenrod;
}

.intro-text .intro-desc {
    padding: 10px 34px 10px;
    background: #fcfcfc;
    background: linear-gradient(360deg, #fffef9, #fff);
    min-height: 160px;
}

.intro-text .intro-desc p {
    margin-bottom: 0;
    text-align: justify;
}

.promise-box .promise-content {
    padding: 10px 50px 10px;
    text-align: justify;
    font-family: 'Ubuntu';
    color: #111;
}

.paralax-effect .promise-content p {
    text-align: justify;
    font-size: 1.1em;
    color: #111;
}

.paralax-effect .promise-content h2{
    color: #111;
}

.promise-box .promise-content p {
	text-align: justify;
	font-size: 1.1em;
	font-family: 'Ubuntu';
}

.promise-content img {
	width: 210px;
}

.promise-content h5 {
	text-align: right;
	color: #fff;
}

.img-filed {
    position: relative;
}

span.hover-cover {
    display: block;
    position: absolute;
    top: 0;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 12em;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    line-height: 14;
    transition: all .5s ease-in-out;
    opacity: 0;
}

.img-filed .fa {
    color: #fff;
    font-size: 34px;
    transform: translateY(-100px);
    z-index: -1;
    opacity: 0;
    transition: all .6s ease-in-out;
}

.post:hover span.hover-cover {
    opacity: 1;
}

.post:hover .img-filed .fa {
    opacity: 1;
    z-index: 999;
    transform: translateY(0px);
}

.img-filed img {
    width: 100%;
    height: 12em;
    border-radius: 10px 10px 0 0;
}

.post {
    margin-top: 30px;
    background: #3ab9e2;
    border-radius: 11px 11px 0 0;
}

.data-filed {
    position: relative;
    padding: 0 5px 10px;
}

.data-filed h3 {
    padding: 10px;
    margin: 0;
    color: #fff;
    font-size: 25px;
}

.publish-field {
    padding: 0 5px;
    color: #fff;
    font-size: 17px;
}

#productModal .modal-header {
    background: #ffbf00;
    border-radius: 0;
    background: linear-gradient(360deg, #ffbf00, #ffe085);
}

#productModal .modal-content {
    border-radius: 0;
}

/*
.other-page {
    margin-top: 125px;
    border-top: 5px solid #cacaca;
}

*/

.stamp-img {
    width: 120px;
    opacity: .5;
}

.callus .fas, .mailus .far, .location .fas {
	font-size: 40px;
	color: #000;
}

.text-inner h5 {
    font-size: 22px;
    margin-top: 15px;
    text-transform: capitalize;
    color: #000;
}

.callus .text-inner h5::before {
    content: "\f87b";
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
}

.mailus .text-inner h5::before {
    content: "\f2b6";
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
}

.location .text-inner h5::before {
    content: "\f124";
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
}

.text-inner p {
    margin-bottom: 0;
    color: #333;
    font-family: 'Ubuntu';
}

.text-inner p a {
    color: #484848;
    text-decoration: none;
    font-family: 'Ubuntu';
}

.callus, .mailus, .location {
	margin-bottom: 5px;
	padding: 10px 0px;
}

.contact-form .sub_para {
    color: #909090;
    font-size: 18px;
    opacity: .75;
}

.contact-info input[type="text"], .contact-info input[type="email"], .contact-info textarea {
	outline: none;
	border: 1px solid #1b1b1b;
	padding: 15px 15px;
	background: transparent;
	color: #424242;
	font-size: 15px;
	letter-spacing: 2px;
	width: 50%;
	margin: 2em 0 1em 0em;
	position: relative;
	float: left;
    font-family: 'Ubuntu';
}

.contact-info textarea {
    border: 1px solid #1b1b1b;
    padding: 15px 15px;
    background: transparent;
    color: #424242;
    font-size: 15px;
    width: 100%;
    letter-spacing: 2px;
    min-height: 100px;
    resize: none;
    margin: 1em 0;
    width: 100%;
    width: 100%;
    font-family: 'Ubuntu';
}

.contact-info .font-wendy {
    outline: none;
    border: none;
    padding: 10px 30px;
    background: #FF9800;
    color: #fff;
    font-size: 17px;
    margin: 2em 0;
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    letter-spacing: 1px;
    cursor: pointer;
}

/*Offers*/
.offer-title {
    text-transform: uppercase;
}

.offer-title h3 {
    font-size: 1.8em;
    font-weight: bold;
    padding: 0px 0 10px 0;
    display: inline-block;
    color: #323232;
}

.offers-homepage {
	background: #fff;
}

.offer-cover {
    box-shadow: 0 0 6px #7e7e7e;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 20px 50px 30px;
    background-position: right;
    position: relative;
}

.offer-price {
    text-align: center;
    margin-top: 20%;
}

.mrp {
    display: block;
    font-size: 2em;
    font-weight: 800;
    color: #999;
}

.mrp .cross-mrp {
    text-decoration: line-through;
    font-family: 'Ubuntu' !important;
    color: #424242;
}

.mrp .only-mrp {
    font-family: 'Ubuntu' !important;
    color: #007bff;
    font-size: 1.8em;
}

.price-class {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #868686;
    font-family: 'Ubuntu';
    border-top: 1px solid #ccc;
    margin-top: 0px;
    padding-top: 0px;
    line-height: 50px;
}

.digit-price {
    font-size: 2.5em;
    color: #1face1;
    display: block;
}

.offer-details {
    background-image: linear-gradient(90deg, #79797a, transparent);
    padding: 10px 0 10px 20px;
    /* box-shadow: 0 0 6px #030303; */
    color: #fff;
}

.price-field{
    background-image: linear-gradient(-90deg, #e6e6e6, transparent);
}

.offer-details span{
    font-family: 'Ubuntu';
}

.save-value {
    font-size: .8em;
    background: #eb8181;
    padding: 5px 10px;
    border-radius: 6px;
    color: #fff;
}

/*about Us*/
.about_heading ul, .about_heading div, .about_heading ol{
    text-align: justify;
    font-size: 1.2em;
    color: inherit;
}

.about_heading p{
    text-align: justify;
    font-size: 1em;
    font-family: 'Open Sans';
}

.main-home-about h2, .other-page h2 {
    font-weight: 500;
    line-height: 200px;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
}

.service-main-page h2{
    /* line-height: 600px; */
    font-size: 2.2em;
}

.testo-main-page h2, .offer-main-page h2{
    line-height: 300px;
}

.service-main-page .service-content p {
    font-family: 'Ubuntu';
    font-size: 1.2em;
}

.service-main-page .service-content a{
    font-family: 'Ubuntu';
}

.service-main-page  .serv-outer-layer {
    box-shadow: 0 0 0.15rem #696969;
    margin-bottom: 20px;
     border: none; 
}

.service-main-page .read-more{
    color: #111;
}

.service-main-page .serv-content-box {
    background-image: linear-gradient(to top, #fff,#f8f8f8);
}

.contact-page h2{
    font-size: 2em;
    color: #fff;
    line-height: 150px;
    text-transform: uppercase;
}

.main-home-about h3{
    font-size: 1.4em;
}

/*department fulpage code*/

/*department fulpage code*/
.page-heading {
    background-image: url(../../img/bg-heading-2.jpg),linear-gradient(359deg, rgb(0 0 0), rgb(0 0 0));
    height: 200px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: difference;
}

/* .service-main-page .page-heading {
    background-image: url(../../img/plans.jpg),linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent);
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-position: top;
    background-size: cover;
    height: 100vh;
    filter: grayscale(1);
} */

.testo-main-page .page-heading {
    background-image: url(../../img/bg-heading-2-1.jpg),linear-gradient(359deg, rgb(0 0 0), rgb(0 0 0));
    height: 200px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: difference;
}

.main-contact .contact-heading {
    background-image: url(../../img/bg-heading-2-1.jpg),linear-gradient(359deg, rgb(0 0 0), rgb(0 0 0));
    height: 150px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: difference;
}

.main-contact .profile-heading {
    background-image: linear-gradient(359deg, #fff, #ececec);
    height: 150px;
    width: 100%;
}

.main-contact .product-heading {
    background-image: url(../../img/bg-heading-2.png),linear-gradient(270deg, #ececec, #ffffff);
    height: 150px;
    background-size: 40%;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: difference;
}

.product-page h2 {
    font-size: 2em;
    color: #010101;
    line-height: 150px;
    text-transform: capitalize;
}

.profile-heading h2 {
    font-size: 2em;
    color: #000;
    line-height: 150px;
    text-transform: capitalize;
}

.offer-main-page h2{
    color: #fff;
}

.offer-main-page .offer-heading {
    background-image: url(../../img/bg-heading-2.jpg),linear-gradient(359deg, rgb(0 0 0), rgb(0 0 0));
    height: 200px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: difference;
}

p.offer-pera{
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.grab-offer{
    font-family: 'Ubuntu';
    font-size: 1.1em;
    margin-top: 10px;
}

.offer-heading-form{
    margin-bottom: 0;
}

#offerModal .close {
    z-index: 1;
    margin-top: 5px;
    margin-right: 10px;
    background: #f90;
}

#offerModal .modal-content{
    border-radius: 0;
}

#offerModal .modal-body{    
     font-family: 'Ubuntu';
}

#offerModal .form-control{
    border-radius: 0;
    height: 45px;
    border-color: #202020;
}

#offerModal .form-control::placeholder {
    color: #7c7c7c;
}

#offerModal .form-control:focus {
    border-color: #202020;
    box-shadow: 0 0 0 0.2rem rgba(255,193,7,.49);
}

#offerModal .form-control[readonly] {
    background-color: #ffd10b !important;
    color: #000;
}

.offer-form-price{
    text-align: center;
}

.form-mrp{
    font-size: 2em;
    color: #999;
    font-weight: 800;
    display: block;
}

.offer_rate{
    display: block;
    padding: 10px 20px;
    border: 2px dashed #999;
    color: #1face1;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 10px;
    background: #fafafa;
}

.service-networks .page-heading {
	background-image: url('../../img/service-networks.jpg'),linear-gradient(to bottom, rgb(255, 255, 255), rgb(123, 123, 123));
	background-size: cover;
	background-position: top;
	background-blend-mode: overlay;
	/* margin-top: 2px; */
}

.testo-main-page{
    background: #f9f9f9;
    margin-bottom: -30px;
}

.testo-outer-layer {
	/* border: 3px solid #202020; */
	padding: 30px 10px 10px;
	margin-bottom: 20px;
	min-height: 620px;
	background: #fff;
	box-shadow: 0 0 3px #333;
	position: relative;
	margin-top: 50px;
}

.testo-img-box {
	text-align: center;
	margin-bottom: 10px;
}

.testo-img-box img {
	width: 120px;
}

.testo-content-box {
	padding: 10px;
}

.time-testo{
    color: #969696;
    font-family: 'PT Sans' !important;
    font-size: 1.1em;
    font-weight: 400;
    margin-top: 5px;
}

.testo-content-box p {
	font-family: 'Ubuntu';
	text-align: justify;
	font-size: 15px;
	color: #424242;
}

.testo-content-box h3 {
	margin-bottom: 0;
	font-size: 1em;
	color: #505050;
}

.testo-content-box .fa-quote-right, .testo-content-box .fa-quote-left{
    font-size: 200%;
    color: #007bff;
}

.quote-design {
	text-align: center;
	margin-top: -80px;
	font-size: 3em;
}

.quote-design .fa {
	color: #007bff;
	padding: 25px;
	border: 5px solid #202020;
	border-radius: 50%;
/*	background: #000;*/
	margin-bottom: 20px;
    opacity: .5;
}

.full-service-page .page-heading h2 {
    font-size: 2.3em;
}

.main-contact h5 {
	font-family: 'Open Sans' !important;
	font-size: 1.5em;
	font-weight: bolder;
	color: #222d35;
}

.service-heading h3 {
	font-family: 'Open Sans' !important;
	font-size: 1.1em;
	color: #212121;
}

.service-description p{
    color: #111;
    text-align: justify;
}

.service-title h3{
    color: #007bff;
    font-family: 'Open Sans' !important;
    text-decoration: underline;
}

.loaction-outer {
	background: #f7f7f7;
	padding: 15px 20px;
	margin-bottom: 10px;
	box-shadow: 0 0 .25rem #ccc;
}

.side-portion-services h5, .location-main-page h5 {
	font-family: 'Open Sans' !important;
	font-weight: bold;
	font-size: 1.5em;
	margin-top: 0;
	text-transform: uppercase;
}

.side-portion-services a {
	display: block;
	font-size: 1.1em;
	color: #000;
	margin-bottom: 5px;
	border: 1px solid #aeaeae;
	padding: 5px 15px;
	border-radius: 1em;
	background: #eaeaea;
}

.callnow a, .emailnow a{
    border: 1px solid #202020;
    background: #202020;
    color: #000;
}

.location-main-page a {
	display: block;
	font-size: 1.1em;
	color: #000;
	margin-bottom: 5px;
	border-bottom: 1px solid #fff;
	padding: 5px 0px;
	/* border-radius: 1em; */
	/* background: #222d35; */
}

.service-title.main-location-page h3 {
	color: #484848;
	font-family: 'Open Sans' !important;
	font-size: 2.5em;
	font-weight: bold;
/*	border-bottom: 1px solid #000;*/
	padding-bottom: 5px;
	text-transform: uppercase;
    text-decoration: none;
}

.network-img img {
	width: 100%;
	margin-bottom: 15px;
	border-radius: 1em;
/*	box-shadow: 0 0 2px #333;*/
}

.mapping iframe {
	width: 100%;
	height: 400px;
	border-radius: 1em;
	box-shadow: 0 0 2px #595959;
}

.loaction-outer.main-locatop-outer {
	background: #f7f7f7;
	padding: 25px 30px;
	margin-bottom: 10px;
	box-shadow: 0 0 .25rem #ccc;
}

.mapping h5 {
	font-size: 1.7em;
	font-family: 'Open Sans' !important;
	font-weight: bold;
	margin-bottom: 20px;
	color: #e84333;
	border-top: 1px solid;
	padding-top: 10px;
}

.loaction-warning {
	border: 7px solid #d5a001;
	padding: 20px;
	background: #202020;
	border-radius: 1em;
}

.service-details .service-body {
	padding: 25px;
}

.service-details .serv-img-box img{
    border-radius: 1em;
       border: 1px solid #dadada;
}

.breadcrumb-item a {
	color: #000;
}

.breadcrumb-item a.active {
	color: rgb(1, 113, 187);
    transform: scale(1.3);
}

.quatation-form h3, .quatation-form h4{
    font-family: 'Open Sans' !important;
    font-size: .95em;
}

.quatation-form h3{
    font-size: 1.9em;
    font-weight: bold;
    color: #222d35;
}

.quote-window label{
    font-family: 'Open Sans' !important;
}

.quote-window .form-control:not(textarea){
    height: 50px;
    border-radius: 1em;
}

.quote-window .form-control{
    border-radius: 1em;
    transition: all 0.3s ease-in-out;
    border-color: #464646;
}

.quote-window .form-control:focus{
/*    border-left: 5px solid #202020;*/
    box-shadow: inset 0 0 .5em #202020;
    border-color: #202020;  
    }

.side-window {
	padding: 40px 30px;
	text-align: center;
	font-family: 'Open Sans';
	color: #292828;
	font-size: 1.1em;
	border: 10px solid #f0b400;
    border-radius: 1em;
    margin-top: 2em;
}

/*about Us*/
/*spinner*/
.spin_img {
    width: 130px;
    margin: 20% auto;
}

.spinner {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 9999;
    transition-delay: .2s;
    transition: all .5s ease-in-out;
    background: rgba(255, 255, 255, 0.81);
}

#beforeSend {
    width: 125px;
    opacity: .5;
}

/*spinner*/
/****************Bottom to Top*************/
#backtotop.visible {
    transform: scale(1, 1);
    opacity: 1;
}

/*changes date 19-08-2020*/
#backtotop {
    color: #222d35;
    background-color: rgba(237, 209, 110, 0);
    transition: .8s ease-in-out;
}

#backtotop {
    z-index: 999;
    display: inline-block;
    position: fixed;
    transform: scale(0, 0);
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 30px;
    text-align: center;
    opacity: .8;
    border-radius: 10%;
    cursor: pointer;
}

#backtotop .fa.fa-rocket {
    transform: rotate(-45deg);
}

#backtotop .flame {
    border-top-color: #de5b47 !important;
}

#backtotop .flame {
    height: 0;
    width: 0;
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    margin: -5px auto 0;
    border: 3px solid transparent;
    border-top: 25px solid rgba(0, 0, 0, 0);
    display: none;
}

#backtotop .flame {
    -webkit-transition: all 500ms cubic-bezier(.25, .1, .25, 1);
    -moz-transition: all 500ms cubic-bezier(.25, .1, .25, 1);
    -o-transition: all 500ms cubic-bezier(.25, .1, .25, 1);
    transition: all 500ms cubic-bezier(.25, .1, .25, 1);
    -webkit-transition-timing-function: cubic-bezier(.25, .1, .25, 1);
    -moz-transition-timing-function: cubic-bezier(.25, .1, .25, 1);
    -o-transition-timing-function: cubic-bezier(.25, .1, .25, 1);
    transition-timing-function: cubic-bezier(.25, .1, .25, 1);
}

#backtotop .flame + .flame {
    left: 22px;
    margin: 0;
    border-width: 2px;
    border-top-width: 10px;
}

#backtotop .flame + .flame + .flame {
    left: auto;
    right: 22px;
    margin: 0;
    border-width: 2px;
    border-top-width: 10px;
}

#backtotop:hover {
    -webkit-animation-name: shake-little;
    -ms-animation-name: shake-little;
    animation-name: shake-little;
    -webkit-animation-duration: 100ms;
    -ms-animation-duration: 100ms;
    animation-duration: 100ms;
    -webkit-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -ms-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0s;
    -ms-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-play-state: running;
    -ms-animation-play-state: running;
    animation-play-state: running;
}

#backtotop:hover .flame {
    display: block;
}

@keyframes shake-little {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    2% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    4% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    6% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    8% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    10% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    12% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    14% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    16% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    18% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    20% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    22% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    24% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    26% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    28% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    30% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    32% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    34% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    36% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    38% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    40% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    42% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    44% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    46% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    48% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    50% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    52% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    54% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    56% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    58% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    60% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    62% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    64% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    66% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    68% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    70% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    72% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    74% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    76% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    78% {
        transform: translate(-1px, -1px) rotate(-0.5deg);
    }

    80% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    82% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    84% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    86% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    88% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    90% {
        transform: translate(-1px, 0) rotate(-0.5deg);
    }

    92% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    94% {
        transform: translate(0, -1px) rotate(-0.5deg);
    }

    96% {
        transform: translate(0, 0) rotate(-0.5deg);
    }

    98% {
        transform: translate(0, 0) rotate(-0.5deg);
    }
}

/****************Bottom to Top*************/
/****************Some Default classes*************/
/* ***Cat Background */
.grey {
    background: rgb(202, 202, 202);
    border-color: rgb(202, 202, 202);
    color: #201E1F;
}

.theme {
    background: #007bff;
    border-color: #0e6ace;
    color: #201E1F;
}

.primary {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.green {
    background: rgb(0, 151, 25);
    border-color: rgb(5, 177, 62);
    color: #fff;
}

.orange {
    background: rgb(255, 174, 0);
    border-color: rgb(255, 153, 0);
    color: #201E1F;
}

/* ***Cat Background */
#map {
    padding: 30px 0 0;
    margin-bottom: -30px;
}

#map iframe {
    margin-top: 20px;
}

#map h3 {
    text-align: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

#setting {
    padding: 30px 0 0;
}

.theme-color {
    color: #201E1F !important;
}

.theme-background {
    background: #201e1f !important;
}

.grey-color {
    color: #495057 !important;
}

.light-grey-color {
    color: #666666 !important;
}

.dark-grey-color {
    color: #3f3f3f !important;
}

.dark-theme-color {
    color: #dbb52e !important;
}

.green-color {
    color: rgb(0, 151, 25);
}

.prime-color {
    color: #007bff;
}

.font-Poppins {
    font-family: 'Poppins Condensed', sans-serif !important;
}

.font-patua {
    font-family: 'Patua One', sans-serif !important;
}

.font-nunito {
    font-family: 'Nunito', sans-serif !important;
}

.font-upper {
    text-transform: uppercase !important;
}

.font-captial {
    text-transform: capitalize !important;
}

.font-small-caps {
    font-variant: small-caps !important;
}

.xxl-size-font {
    font-size: 40px !important;
}

.xl-size-font {
    font-size: 30px !important;
}

.l-size-font {
    font-size: 25px;
}

.m-size-font {
    font-size: 20px;
}

.s-size-font {
    font-size: 15px;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-22 {
    font-size: 22px !important;
}

.font-size-28 {
    font-size: 28px !important;
}

.mrg-top-10 {
    margin-top: 10px;
}

.mrg-top-15 {
    margin-top: 15px;
}

.mrg-top-20 {
    margin-top: 20px;
}

.mrg-top-25 {
    margin-top: 25px;
}

.mrg-top-30 {
    margin-top: 0px;
}

.mrg-top-40 {
    margin-top: 40px;
}

.mrg-top-50 {
    margin-top: 50px;
}

/* bottom margin */
.mrg-bottom-10 {
    margin-bottom: 10px;
}

.mrg-bottom-15 {
    margin-bottom: 15px;
}

.mrg-bottom-20 {
    margin-bottom: 20px;
}

.mrg-bottom-25 {
    margin-bottom: 25px;
}

.mrg-bottom-30 {
    margin-bottom: 30px;
}

.mrg-bottom-40 {
    margin-bottom: 40px;
}

.mrg-bottom-50 {
    margin-bottom: 50px;
}

/* padding */
.padding-top-10 {
    padding-top: 10px;
}

.padding-top-15 {
    padding-top: 15px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-50 {
    padding-top: 50px;
}

/* bottom margin */
.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-25 {
    padding-bottom: 25px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

/* heading font style */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
}

.weight-500 {
    font-weight: 500;
}

.weight-600 {
    font-weight: 600;
}

.weight-700 {
    font-weight: 700;
}

.weight-800 {
    font-weight: 800;
}

/****************Some Default classes*************/
/******************Animation Close Icon*********/
.animated-icon1 {
    width: 30px;
    height: 30px;
    top: 7px;
    position: relative;
    margin: 0px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: inline-block;
}

.animated-icon1 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 90%;
    border-radius: 0px;
    opacity: 1;
    right: 0;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.animated-icon1 span {
	background: #222d35;
}

.animated-icon1 span:nth-child(1) {
    top: 5px;
}

.animated-icon1 span:nth-child(2) {
    top: 13px;
}

.animated-icon1 span:nth-child(3) {
    top: 21px;
}

.menu-toggle.open .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.menu-toggle.open .middle-bar {
    opacity: 0;
}

.menu-toggle.open .bottom-bar {
    transform: rotate(-50deg);
    transform-origin: 10% 90%;
}

.menu-toggle.collapsed .top-bar {
    transform: rotate(0);
}

.menu-toggle.collapsed .middle-bar {
    opacity: 1;
}

.menu-toggle.collapsed .bottom-bar {
    transform: rotate(0);
}

.active-nav .menu-toggle {
    position: fixed;
    z-index: 999;
}

.active-nav .cart-hover {
    margin-top: -115px;
    right: 46px;
    /* position: unset; */
}

.flash-button span {
    border-radius: 0;
    display: inline-block;
    -webkit-animation-name: Beats;
    animation-name: Beats;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.flash-button {
    background: #3AB9E2;
    padding: 8px 10px;
    border: none;
    /* border-radius: 15px; */
    font-weight: bold;
}

.reg-open, .res-phone{
   -webkit-animation-name: Beats;
    animation-name: Beats;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite; 
}

/*

@keyframes flash {  
    0% { opacity: 1.0; }
    50% { opacity: 0.4; }
    100% { opacity: 1.0; }
}

//Firefox 1+
@-webkit-keyframes flash {  
    0% { opacity: 1.0; }
    50% { opacity: 0.4; }
    100% { opacity: 1.0; }
}

*/

/*Safari 3-4*/
/*
@-moz-keyframes heartBeat {  
    0% { opacity: 1.0; }
    50% { opacity: 0.4; }
    100% { opacity: 1.0; }
}

*/
@-webkit-keyframes Beats {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes Beats {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/*exclusive animation*/
.player-youtube {
    box-shadow: 0 0 3px #787878;
}

iframe {
    margin-bottom: -6px;
}

.video-section h4,
.image-section h4 {
    margin-bottom: 1rem;
}

.video-title {
    margin: 0;
    text-align: center;
    padding: 10px 5px;
    background: linear-gradient(180deg, #ffefcb, #efefef);
    color: #060606;
}

.img-box {
    position: relative;
}

.img-box span {
    position: absolute;
    left: 0;
    text-align: center;
    width: 92%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.71);
    margin-left: 15px;
    padding: 10px;
    font-size: 20px;
    color: #d9d9d9;
    text-transform: uppercase;
}

.img-container img {
    width: 100%;
    cursor: pointer;
}

.img-container.hood h5 {
    margin: 0;
    padding: 15px 20px;
    background: #fdfdfd;
}

.outer-body {
    /* box-shadow: 0 0 3px #b4b4b4; */
    margin-bottom: 20px;
    background: linear-gradient(180deg, #f8ffd4, #f7f7f7);
    padding: 5px;
}

#outer-hood {
    margin-bottom: 20px;
}

.text-container {
    padding: 10px 20px 10px 0;
}

.text-container h5 {
    font-size: 25px;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
}

.text-container p {
    margin-bottom: 0;
    padding: 10px 0;
    text-align: justify;
    color: #121212;
}

.text-container-hood {
    padding: 0 20px 10px;
    background: linear-gradient(180deg, #fdfdfd, khaki);
}

.text-container-hood p {
    margin-bottom: 0;
    padding: 10px 0;
    text-align: justify;
    color: #121212;
}

#product-video {
    margin-top: 50px;
}

.video-title-product {
    padding: 10px 0;
    border-bottom: 1px solid #1283b5;
}

#video-outer {
    margin-bottom: 20px;
}

.service-main{
    margin-top: 30px;
}

/*changes date 19-08-2020*/
.service-body {
	width: 100%;
	min-height: 1em;
	margin-bottom: 25px;
	box-shadow: 0 0 .08rem #393939;
    background-color: transparent;
}

.full-service-page{
    background-color: #fff;
}

.full-service-page .service-body{
    box-shadow: none;
}

.full-service-page  .service-content h5 {
    text-transform: uppercase;
}

.full-service-page  .service-content p{
    font-family: 'Ubuntu';
    font-size: 1em;
    color: #111;
}

.overflow-hidden{
    overflow: hidden;
}

/*changes date 19-08-2020*/
.service-content {
	min-height: 1em;
	padding: 15px 15px 0px 10px;
	background-color: transparent;
    color: #fff;
}

.service-body .serv-img-box img {
	width: 100%;
/*	transform: scale(1.3);*/
}

.service-main a{
    color: inherit;
}

/*changes date 19-08-2020*/
.service-content h5 {
	color: #373737;
	font-size: 2em;
	font-family: 'Open Sans' !important;
	font-weight: bolder;
}

.service-content p {
	margin: 0;
	text-align: justify;
	word-spacing: normal;
}

.download-body {
    padding: 30px 20px;
    background: #f9fafa;
    margin-bottom: 20px;
}

.download-body h3 {
    font-family: 'Patua One' !important;
    font-size: 27px;
    color: #8c8c8c;
    border-bottom: 1px solid #e7e5e5;
    padding-bottom: 10px;
}

.download-body p {
    font-size: 18px;
}

.upload-date {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #8d8d8d;
}

.blog-list,
.blog-view {
    margin-top: 10px;
}

#blog-body {
    margin-bottom: 30px;
}

.blog-list .blog-img img {
    width: 100%;
}

.blog-list .blog-discription .blog-title h2 {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 5px;
}

.blog-list .blog-publish h5 {
    margin-bottom: 5px;
    color: #898989;
    font-size: 18px;
}

.blog-list .blog-publish h6 {
    margin-bottom: 5px;
    color: #a5a5a5;
}

.blog-list .blog-content p {
    text-align: justify;
    font-size: 17px;
    color: #5d5d5d;
}

/*single blog start*/
.blog-view .blog-img img {
    width: 100%;
}

.blog-view .blog-title {
	padding: 20px 0 5px;
}

.blog-view .blog-content {
    margin-top: 15px;
}

.blog-view .blog-discription .blog-title h2 {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 5px;
}

.blog-view .blog-publish h5 {
    color: #898989;
    font-size: 18px;
}

.blog-view .blog-publish h6 {
    margin-bottom: 5px;
    color: #a5a5a5;
}

.blog-view .blog-content p {
    text-align: justify;
    font-size: 17px;
    color: #5d5d5d;
}

.blog-view .share-foot {
    text-align: right;
    background: #f4f3f3;
    padding: 5px 20px;
    border-radius: 6px;
}

.blog-view .share-foot a {
    color: inherit;
}

.blog-view .share-foot a .fa {
    font-size: 19px;
    color: #9d9d9d;
}

.popular-post h4 {
    margin-bottom: 10px;
    padding: 6px 0;
    color: #3ab9e2;
    font-size: 20px;
    font-family: 'Patua One' !important;
}

.popular-post a {
    color: inherit;
}

.popular-post img {
    width: 100%;
}

#pop-post h6 {
    font-weight: 700;
    padding: 10px 10px 5px;
    color: #000;
    margin-bottom: 0;
}

#pop-post span {
    color: #000;
    padding:  0 10px;
}

#pop-post {
	margin-bottom: 10px;
	background: #faacac;
	padding-bottom: 10px;
}

.albm-cover {
    margin-top: 20px;
    position: relative;
}

.albm-cover a{
    color: #cdcdcd;
}

.albm-cover img{
    width: 100%;
}

#hover-effect :hover .albm-cover .album-overlay {
    transform: translateX(-380px);
    opacity: 0;
    visibility: hidden;
}

#hover-effect :hover .albm-cover .album-overlay h2{
    transform: translateY(-150px);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.albm-cover .album-overlay {
	position: absolute;
	top: 0;
	width: 100%;
	background: rgba(18, 18, 18, 0.43);
	height: 100%;
    transition: all 0.5s ease-in-out;
}

.albm-cover .album-overlay h2 {
	text-align: center;
	font-size: 25px;
	color: #fff;
	line-height: 11;
    transition: all 0.5s ease-in-out;
}

.elem {
	display: inline-block;
	font-size: 0;
	width: 100%;
	border-bottom: none;
	background: #ececec;
	padding: 5px;
	height: auto;
	background-clip: padding-box;
}

.elem > span {
	display: block;
	cursor: pointer;
	height: 0;
	padding-bottom: 70%;
	background-size: cover;
	background-position: center center;
}

.faculty-body{
/*    height: 340px;*/
    overflow: hidden;
    margin-top: 30px;
    background: #fff;
}

.faculty-body img {
	width: 100%;
	border: 5px solid #ee3e37;
}

.faculty-body .bottom-panel {
	padding: 10px 10px;
	text-align: center;
	background: #ee3e37;
}

.faculty-body .bottom-panel h5, .faculty-body .bottom-panel h6 {
	font-family: 'Patua One' !important;
	color: #fff;
}

.img-body{
    width: 120px;
}

.img-body img{
    width: 100%;
    margin-bottom: 10px;
    border: 5px solid #cacaca;
}

.open-pop-backbody{
    transition: all 0.5s ease-in-out;
}

.open-popup {
	position: fixed;
	z-index: 9999;
	width: 325px;
	height: 160px;
	background: #118bc6;
	text-align: center;
	border-radius: 50%;
	box-shadow: 1px 1px 0px #ee3e37, 2px 2px 0px #ee3e37, 3px 3px 0px #ee3e37;
	padding: 21px 0;
	bottom: 15px;
	right: 15px;
	color: #fff;
}

.open-popup a.hide-btn {
	position: absolute;
	right: 0px;
	color: #fff;
	font-size: 22px;
	background: #118bc6;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: block;
	cursor: pointer;
	z-index: 9999;
}

.open-popup h3 {
	font-family: 'Patua One' !important;
	margin-bottom: 0;
	font-size: 24px;
}

.open-popup h1 {
	font-family: 'Patua One' !important;
	margin-bottom: 5px;
}

.open-popup h5 {
	font-family: 'Patua One' !important;
	margin-bottom: 0;
	font-size: 19px;
}

.printResult.text-white {
	display: block;
}

.mobile-off{
    display: block;
}

/******************Animation Close Icon*********/
@media screen and (max-width: 768px) and (min-width: 320px) {
/*new css code*/
.doctor-body .col-md-4{
    flex-basis: 40%;
}

.empty-cart-msg-main-page {
    padding: 10px 10px 10px 15px;
    font-size: 1em;
    text-align: center;
}

.doctor-body .col-md-8{
    flex-basis: 60%;
}

.department-title {
    padding: 15px 20px;
}

.underConstruct img {
    width: 250px;
}

.underConstruct h1 {
    font-size: 1em;
}

.departments-body {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 0 2px #ccc;
}

.offer-outer-bg img {
    max-width: 200px;
    position: relative;
    top: 10px;
    border-radius: 0px;
    left: 20px;
}

.departments-body-box img {
    border-radius: 6px 6px 0 0;
}

.department-box {
    margin-top: 30px !important;
}

.offer-outer-bg {
    padding: 10px 10px;
    text-align: center;
}

.offer-titile-appointment {
    margin-left: 25px;
    font-size: 1.8em;
    text-align: center;
}

.tagline-online-appointment {
    margin-left: 25px;
    padding: 10px;
    text-align: center;
}

.main-contact .contact-heading {
    background-size: contain;
    background-position: left;
    background-blend-mode: color-burn;
}

.map-area h3 {
    color: #3f51b5;
    border-top: 1px solid #3f51b5;
    font-family: 'PT Sans' !important;
    font-weight: 500;
    font-size: 22px;
}

#userAccount .dropdown-menu{
    width: 96%;
}

 a.dropdown-item:last-child {
    border-bottom: none !important;
}

.formFields {
    padding: 20px;
}

.profile-content h3 {
    font-size: 1.1em !important;
}

.dateSpan {
    width: 110px;
}

.Appontment-fields p {
    font-size: 15px;
    color: #333;
    text-align: center;
}

.selectTimeSlots .text-right{
    text-align: left !important;
}

.selectDoctorsArea img {
    width: 100%;
    border-radius: 6px 6px 0 0px;
    transform: scale(1) translateY(0px) translateX(0px);
}

.dr-side p {
    font-size: 15px !important;
    color: #495057 !important;
    text-align: left !important;
}

.rightInstuctionBar{
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 30px;
}

.about_heading p {
    font-size: 15px;
    font-family: 'Open Sans';
}

    .header{
        position: unset !important;
    }

    .logo-placement img {
        width: 120px;
        margin-top: 0px;
    }

    .heading-title h1 {
	font-size: .85em;
	margin-left: 0;
}

.top-icon a {
    font-size: 15px;
    display: inline-block;
    color: #000;
}

.account-box {
    padding: 5px 0;
    line-height: 20px;
    text-align: center;
}

.account-details.account-box a{
    margin: 0 5px;
}

.contact-box {
    text-align: center;
}

.contact-box a:last-child{
    display: none;
}

.contact-box {
    padding: 3px 0;
    line-height: 20px;
    display: none;
}

.top-icon i {
    color: #ffc107;
}

.disappear-frm-desk{
    visibility: visible;;
}

.cart-box a:first-child {
    margin-left: 30px;
}

.cart-box {
    text-align: center;
    margin-top: 5px;
    margin-right: -30px;
    background: #222222;
    margin-left: -30px;
    padding: 5px 0;
}

.mobile-cart-active .cart-drop-box.cart-popup {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-15px) !important;
    -webkit-transform: translateY(-15px) !important;
    -ms-transform: translateY(-15px) !important;
    z-index: 999;
}

.cart-box-ul-itmes.cart-hover:hover .cart-drop-box.cart-popup {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
}

.active-nav .cart-box {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999;
    right: 0;
    margin: 0;
    top: 0;
    background: #000;
    padding: 7px 0;
}

.active-nav .cart-box .disappear-frm-desk{
    display: none;
}

.autoComplete_wrapper #autoComplete_list_1 {
    display: none;
}

.cart-drop-box.cart-popup{
    width: 100%;
}

.cart-box a {
    color: #fff;
    font-size: 1.1em;
}

.active-nav .cart-hover {
    margin-top: -115px;
    right: 46px;
    position: unset;
}

.cart-box a.cart {
    font-size: 1.1em;
}

.cart-box a.wishList {
    color: #fff;
    font-size: 1.1em;
}

.cart-box .search-mobile {
    font-size: 1.1em;
}

/* .car-products{
    padding: 0 20px;
} */
.car-products{
    padding: 0 0px;
}

.featured-products .f-product-content .fp-title a {
    font-size: 10px;
    font-weight: 500;
    margin: 0;
    color: #000;
    word-break: break-all;
}

.featured-products .f-product-price .f-sp {
    color: #d90000;
    font-size: 16px;
    display: block;
}

/* .discount-item .percentage-amt {
    font-size: 17px;
    top: -16px;
} */
.discount-item .percentage-amt {
    font-size: 11px;
    top: -3px;
    left: 14px;
}

.featured-products .button-head {
    height: 35px;
    line-height: 35px;
}
.featured-products .fp-image img {
    height: auto;
    object-fit: contain;
}
.featured-products .f-product-price .f-mrp.del {
    font-size: 14px;
}

.main-contact .product-heading {
    height: 80px;
    background-size: 55%;
}

.product-page h2 {
    font-size: 20px;
    line-height: 80px;
}

.product-basic-details.ml-3{
    margin-left: 0 !important;
    margin-top: 20px;
}

.product-basic-details .p-title h3 {
    font-size: 20px;
}

.btn-add-cart {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-image: linear-gradient(90deg, #ccc, #cacaca);
}

.checkbox-tools:checked + label {
    background-color: transparent;
    box-shadow: 0 2px 7px 0 rgb(0 0 0 / 20%);
    color: #000;
}

.checkbox-tools:checked + label::before, .checkbox-tools:not(:checked) + label::before {
    background-image: linear-gradient(360deg,#ffc107, #f5d016);
}

.sky-tabs .typography p {
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 20px;
    text-align: left;
}

.sky-tabs > ul > li {
    padding: 10px 5px 10px;
}

.sky-tabs > input:checked + label span span {
    background: #ffc107;
    color: #000;
    padding: 5px 20px;
}

.sky-tabs-response-to-icons > label {
    font-size: 100% !important;
}

.sky-tabs > label {
    line-height: 30px;
}

.showAddcartItem {
    background: #e7e7e7;
    color: #000;
}

.sweet-popup {
    width: 100%;
    padding: 10px 5px;
    background-color: rgb(139 195 74 / 79%);
    text-align: center;
    border-radius: 10px;
    z-index: 999999;
}

.checkout_page_btn{
    color: #000 !important;
}

.cart_page_btn{
    color: #fff !important;
}

.sweet-popup.updated {
    left: 0;
}

.sweet-popup.added {
    background-color: rgb(139 195 74 / 79%);
    left: 0;
}

.sweet-popup::after {
    position: absolute;
    top: 8px;
    left: -24px;
    content: '';
    border-width: 15px;
    border-style: solid;
    border-top-color: rgb(255 255 255 / 0%);
    border-left-color: rgb(255 255 255 / 0%);
    border-right-color: #8ddc32;
    border-bottom-color: rgb(139 195 74 / 0%);
    display: none;
}

.stepper-wrapper {
    font-size: 13px;
}

.stepper-item .step-counter {
    width: 25px;
    height: 25px;
}

.stepper-item.completed .step-counter {
    background-color: #ffffff;
    border: 2px solid #ffc107;
    color: #000;
}

.stepper-item.completed::after {
    top: 12px;;
}

.stepper-item::before {
    top: 12px;
}

.stepper-item::after {
    top: 12px;
}

.cart-page-about-title-box {
    font-size: 12px;
    font-weight: 600;
}

.cart-page-image-box {
    width: 40%;
    text-align: center;
    flex-basis: 15%;
}

.cart-page-about-subtitle-box {
    font-size: 12px;
    font-weight: 500;
}

.cart-page-counter {
    width: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-basis: 20%;
}

.cart-page-price-amt {
    padding-top: 10px;
    font-size: 13px;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #585858;
}

.cart-page-price-amt .light-font{
    font-size: 12px !important;
}

.counter-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: 'Open Sans';
    font-weight: 900;
    color: #202020;
    cursor: pointer;
}

.cart-page-item-remove {
    font-size: 13px;
}

.view-cart-page-container  hr {
    width: 90%;
    float: none;
    margin-left: 13px;
    margin-right: 0;
}

.cart-page-checkout {
    float: none;
    margin-right: 0;
    width: 100%;
    padding: 0 20px;
}

.view-checkout-page-container {
    padding: 20px 5px;
}

#payment_choose .checkbox-tools:checked + label {
    background-color: #474747;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    color: #fff;
}

.checkout-user-details{
    margin-top: 20px;
}

.warning-msg.checkout-main-page-warning {
    position: absolute;
    bottom: -45px;
    z-index: 123;
    right: 0;
}

.warning-msg.checkout-main-page-warning .print-warning {
    background: #ff9e7f;
    color: #000;
    width: 100%;
    display: inline-block;
    padding: 0 10px;
    line-height: 2;
    border-radius: 23px;
    text-align: center;
}

.view-success-page-container {
    padding: 10px 5px 20px;
}

.view-success-page-container .step-name{
    font-size: 10px;
}

.view-success-page-container .col-md-6.border-right.p-5 {
    padding: 2rem!important;
    border-right: none !important;
}

.view-success-page-container .qrcode-box {
    border: 1px solid rgb(163, 163, 163);
}

.view-success-page-container .bank_details_show.mt-5 {
    margin: 0 !important;
    padding: 0px 30px 30px;
}

.view-success-page-container .card {
    border: none !important;
}

/* 
.category-field{
} */

    #setting {
	padding: 0px 15px 0;
}

    .quatation-form h3 {
	font-size: 1.5em;
}

    .service-title h3 {
	font-size: 1.2em;
}

    .contact-us-div h4 a {
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.contact-us-div h4 {
	padding: 20px 20px;
	font-size: 1.05em;
	text-align: center;
	line-height: inherit;
}

    .text-about.about_heading h3 {
	font-size: 1.1em;
}

    .serviceable-areas a {
	font-size: .9em;
	padding-right: 5px;
	padding-left: 0px;
}

    .service-details .service-body {
	padding: 25px 15px;
}

/*new css code*/
    .job-box h5 {
	margin-top: 20px;
	font-size: 17px;
}

    .mobile-off{
    display: none;
}

.top-icon {
    padding: 0px 10px;
    text-align: center;
    padding-bottom: 3px;
    padding-top: 3px;
    background: #fff;
}

.search-box {
    padding: 0 0px;
    margin-top: 5px;
}

.search-box .form-group{
    margin-bottom: 0;
}

#search-box-col {
    transition: all .3s linear;
    transform: scaleY(0);
    height: 0;
    opacity: 0;
}

.search-show#search-box-col {
    transform: scaleY(1);
    height: 50px;
    opacity: 1;
}

.search-box button {
    right: 0px;
    top: 0;
    height: 39px;
}

    .promise-box .promise-content p {
	font-size: 1em;
	word-spacing: -2px;
}

    .intro h2, #promise h2, #product h2, #blogs h2, #tesomonials h2 {
	font-size: 1.5em;
}

    .serv-content-box h3 {
	font-size: 20px;
	text-align: center;
}

    .serv-content-box {
	padding: 25px;
}

    #header {
        padding: 0 20px;
        background: rgba(147, 158, 162, 0);
        transition: all 0.5s ease-in-out;
    }

    #header .logo_field h3 {
        font-size: 20px;
        padding: 0 0 0 20px;
        position: static;
    }

    #header nav ul li a {
        padding: 0 15px;
    }

  .menu-toggle {
	display: block;
	position: absolute;
	right: 23px;
	top: 2px;
    transition: all 0.5s ease-in-out;
}

.active-nav .menu-toggle {
    position: fixed;
    z-index: 9999;
    top: -3px;
}

.active-nav .animated-icon1 span {
    background: #ffffff;
}

    .page-heading {
	height: 120px !important;
}

.fix-navbar .menu-toggle {
	top: 0px;
	z-index: 99999999;
	position: fixed;
}

#navBar {
    background: #1d2f41;
}

.active-nav #header nav ul li a:hover, .active-nav #header nav ul li a.active {
    color: #ffffff;
    background: #262e33;
}

.active-nav .category-field {
    padding: 0 137px 0px 20px !important;
    background: #262e33 !important;
}

.category-field {
    padding: 0 137px 0px 20px !important;
}

#header nav ul li {
    text-align: left;
}

.fix-navbar #header {
	padding: 0 20px;
	background: rgba(0, 0, 0, 0.69);
	height: 100vh;
	position: fixed;
	top: 0;
	z-index: 99999;
}

.fix-navbar .animated-icon1 span {
	background: #f8f8f8;
}

   .fix-navbar .menu-toggle.open .top-bar {
	transform: rotate(40deg);
	transform-origin: 5% 10%;
}

  .fix-navbar .menu-toggle.open .bottom-bar {
	transform: rotate(-45deg);
	transform-origin: 15% 90%;
}

 .service-content {
	padding: 15px 10px;
}

    .intro, #promise, #product, #blogs, #tesomonials {
	padding: 10px 0 20px;
}

    .owl-carousel {
	margin: 0;
}

    #myvideo {
	height: 250px;
}

    .staff-require .side-job-banner {
	background-position: bottom left;
}

staff-require {
	margin-bottom: 15px;
}

    .staff-require .side-job-banner span {
	font-size: 21px;
	color: tomato;
}

    #workWithUs {
	padding: 0 0px 0 0px;
}

    .side-job-banner {
	background-size: contain;
	background-position: bottom left;
	background-blend-mode: color;
	background-repeat: no-repeat;
	margin-top: 15px;
}

.side-job-banner span {
	font-size: 20px;
	line-height: 10;
	color: black;
	padding: 0 30px;
	text-align: right;
}

/*
    #header nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        background: linear-gradient(180deg, #eaeaea, #b0afa7);
        height: calc(100vh - 50px);
        transition: 0.5s;
        z-index: 99999;
    }

*/
#header nav {
	position: fixed;
	top: 0;
	left: -100%;
	width: 75%;
	background: linear-gradient(180deg, #f8f8f8, #ffffff);
	height: calc(100vh - 0px);
	transition: 0.5s;
	z-index: 99999;
	opacity: 0;
}

.drop-down-side-category {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    border: none;
    height: auto !important;
    transform: translateX(0px);
    box-shadow: none;
    position: unset;
}

.drop-down-side-category {
    height: auto !important;
    background-image: linear-gradient(180deg, #252d34, #262e33);
    box-shadow: none !important;
    border-bottom: none;
}

.drop-down-side-category ul li {
    width: 100%;
}

    #header nav.active {
        left: 0;
        opacity: 1;
    }

    #header nav ul {
        display: block;
        text-align: center;
    }

    #header nav ul li a {
        border-bottom: 1px solid rgba(0, 0, 0, .2);
        color: #fff !important;
        font-size: 14px !important;
    }

    .logo_field img {
        width: 40px;
        left: 0;
        top: 5px;
    }

    .mail_res {
        display: none;
    }

    .email.flash-button {
        border-radius: 4px;
        padding: 6px 10px;
        margin: 0;
    }

    .phone-side {
        width: 100%;
        text-align: center !important;
        color: #fff;
    }

    .phone-side a {
        float: none;
        font-size: 15px;
        color: #fff;
        margin: -5px 0 0px;
        display: inline-block;
    }

   .header .top-form {
	padding: 0px 0px;
	background: transparent;
}

    .header .nav-bar-full {
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 0 !important;
    padding: 7px 20px 0;
}

    .social-icon .fa {
        color: #fff;
    }

    .social-icon {
        border: 1px solid #fff;
        display: none !important;
    }

    .phone {
        border-right: 2px solid transparent;
        padding: 6px;
        border-radius: 6px;
    }

    #slideshow {
        margin-top: 0px;
    }

    .placeHolder {
        width: 100%;
        height: auto;
    }

   #banner #slideshow h2 {
	font-size: 2em;
}

    #banner .cycle-overlay {
	padding-top: 8%;
    width: 100%;
}

.cycle-overlay a {
    background: #ccc;
    padding: 3px 10px;
    font-size: 13px;
    border-radius: 4px;
    color: #010101 !important;
    margin-bottom: 10px;
}

#banner #slideshow h3 {
    font-size: 20px;
}

.featured-products {
    margin-top: 30px;
}

/* .discount-item img.discount-icon {
    width: 40% !important;
} */
.discount-item img.discount-icon {
    width: 48% !important;
    top: -14px;
}

    #banner .btn {
        font-size: 11px;
        padding: 5px 10px;
    }

#banner #slideshow p {
    font-size: 16px;
    padding: 0;
    margin: 0;
}

    #banner #slideshow p::after {
	right: -14px;
	border-width: 19.5px 0 30.5px 15px;
}

#banner #slideshow h2::after {
	right: -16px;
	border-width: 21.5px 0 23.5px 16px;
	border-color: transparent transparent transparent #fff;
}

.main-contact .profile-heading {
    background-image: linear-gradient(359deg, #fff, #ececec);
    height: 100px;
}

.profile-heading h2 {
	line-height: 100px;
    font-size: 1.8em;
}

.logo-placement {
    padding-bottom: 5px;
}

    .contact-page h2.text-center.heading{
        color: #2a2760;
    }

    .other-page.full-service-page h2.heading{
        color: #2a2760;
        font-size: 1.1em;
    }

    .breadcrumb-item.active {
        font-size: 15px;
    }

    .breadcrumb-item a {
        color: #424242 !important;
        font-size: 14px;
    }

    .warning-msg {
        line-height: 3;
        position: absolute;
        z-index: 9999;
        width: 100%;
    }

    .foot-top {
        padding: 30px 10px 10px;
    }

    .row.mt-4{
        margin-top: .5rem !important;
    }

    .service-title.main-location-page h3 {
	font-size: 1.5em;
}

    .loaction-outer.main-locatop-outer {
	padding: 25px 20px;
	margin-bottom: 10px;
}

    .mapping h5 {
	font-size: 1.2em;
}

    .loaction-warning {
	margin: 0 15px;
}

    .contact-us-div {
	height: 150px;
}

.foot-top-title {
    font-size: 18px;
    color: #064906;
    font-weight: 500;
    margin-top: 10px;
}

.foot-top p.over-p {
    font-size: 15px;
}

    .btn.viewProduct {
        top: 40%;
        left: 26%;
    }

    .intro-layer_out {
        margin-bottom: 10px;
    }

    .intro-img {
        text-align: center;
    }

    .intro-img img {
        width: 75%;
    }

    #banner {
	margin-top: 0px;
    border-bottom: 2px solid #222d35;
    padding-top: 0;
}

    .cycle-prev,
    .cycle-next {
        margin-top: -32px;
        background: rgba(19, 129, 178, 0);
        padding: 3px 10px 5px 10px;
        border-radius: 6px;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease-in-out;
        transform: scale(1);
        font-size: 280%;
    }

    .video-section h4,
    .image-section h4 {
        margin-bottom: .8rem;
        font-size: 120%;
        color: #474747;
    }

    .text-container {
        padding: 0px 10px 10px 10px;
    }

    .text-container h5 {
        font-size: 18px;
        padding: 13px 0;
        margin: 0;
        font-weight: bold;
    }

    .logo-placement h3 {
	font-size: 40px;
	font-weight: bold;
}

    .main-title {
	margin-left: 35px;
}

    .su-title {
	left: 32%;
	font-weight: 400;
}

  .res-phone {
	color: #fff;
	position: absolute;
	margin-top: 13px;
	left: 20px;
	font-size: 15px;
	font-family: 'Patua One';
	display: block;
}

    .open-pop-backbody {
	display: none;
}

    .side-left {
	display: none;
}

    .side-right {
	width: 100%;
	float: left;
	border-left: 1px solid #cacaca;
}

#header nav ul li a:hover, #header nav ul li a.active {
    background: #343a40;
}

.category-field {
    color: #fff !important;
    background: linear-gradient(45deg, #313131, #222d35);
}

.active-nav .drop-down-side-category {
    transform: translateX(0px);
}

.drop-down-sub-category{
    display: none;
}

    .intro, #promise, #product, #blogs {
	padding: 25px 0;
}

    .promise-box .promise-content {
	padding: 10px 15px 10px;
}

    .r-slide {
	padding: 30px 30px 50px;
}

    .col-md-6.right-col {
	margin-bottom: 10px;
}

    #admission {
	padding: 50px 15px;
	background-size: cover !important;
	background-position: right;
}

    .faculty-body {
	height: auto;
	margin-top: 20px;
}

    .course-content {
	padding: 25% 15px;
}

    .download-body p {
	font-size: 15px;
}

    .blog-list .blog-discription .blog-title h2 {
	font-size: 25px;
	padding: 10px 0;
}

    .blog-view .blog-publish h5 {
	font-size: 16px;
}

    .blog-view .blog-content p {
	font-size: 16px;
}

    #mobileView {
	padding: 0 5px;
	border: 5px solid #cacaca;
    display: block;
}

    .data-filed h3 {
	padding: 10px 5px 5px;
	font-size: 20px;
}

    .publish-field {
	color: #eee;
	font-size: 15px;
}

/*free lecture css code*/
.free_video_after_effect::after {
	margin-top: -12%;
	left: 8%;
}

.free-lecture-video img.subject_thumbs {
    height: 230px;
}

    .free-lecture-video .overlay {
    height: 230px;
}

    .video-hover:hover .free-lecture-video .overlay img.play_icon {
	margin-top: 25%;
}

    .display-video .modal-header .modal-title {
	font-size: 17px;
}

    .iframe_body iframe {
	height: 300px;
}

    .main-player iframe {
	width: 100%;
	height: 325px;
}

    .video-placeholder {
	width: 100%;
	height: 330px;
}

    .main-player .first-title {
	font-size: 19px;
}

    .publish-time {
	font-size: 16px;
	margin-top: 5px;
}

    .pop_video_h1 {
	font-size: 22px;
	color: #2e72bb;
	margin-top: 20px;
}

    .free-lecture-video span.timeago {
	margin-top: 5px;
}

    .free-lecture .overlay h3 {
	line-height: 8;
}

    .lg-device-off {
	display: block;
	text-align: center;
	margin-bottom: .5rem;
}

    .lg-device-off img{
        width: 75%;
    }

    #header nav {
	padding-top: 1px;
    background-image: linear-gradient(180deg, #252d34, #262e33);
}

    #slideshow .cycle-pager {
    font-size: 2em;
    top: 38%;
}

    .offer-title h3 {
    font-size: 1em;
    font-weight: 400;
    padding: 0px 0 10px 0;
}

    .offer-cover {
    padding: 20px 30px 30px;
    background-position: bottom;
}

    .offer-price {
    margin-top: 5%;
    margin-bottom: 5%;
}

    .price-field {
    background-image: linear-gradient(-90deg, #ffffff, transparent);
}

    .digit-price {
    font-size: 2em;
}

    .mrp {
    font-size: 1.8em;
    font-weight: 400;
    font-family: 'ubuntu';
}

    .offer-details {
    background-image: linear-gradient(90deg, #080808, transparent);
    padding: 20px 0 20px 20px;
}

    .side-image {
    text-align: center;
    margin-top: 10px;
}

    .client-msg p {
    padding-top: 0em;
    font-size: 1em;
    font-family: 'Ubuntu';
}

    .side-image img {
    width: 45%;
}

    .offer_rate {
    font-size: 2em;
}

    .offer-main-page .offer-heading{
     height: 130px;
    }

    p.offer-pera {
    font-size: 1.1em;
    font-weight: 400;
    color: #424242;
    text-align: center;
}

    .service-main-page .page-heading{
        height: 120px;
    }

    .service-main-page .page-heading h2{
        color: #2a2760;
        font-size: 1.1em;
        line-height: 120px;
    }

    .full-service-page .breadcrumb a{
        color: #2a2760  !important;
    }

    .full-service-page .page-heading{
        height: 120px;
    }

    .full-service-page .service-content h5 {
    font-size: 1.5em;
}

    .departments-page .page-heading{
        height: 120px;
    }

    .departments-page .page-heading h2{
        color: #2a2760;
        font-size: 1.1em;
        line-height: 120px;
    }

    .department-profile-page .page-heading{
        height: 130px;
    }

    .image-area{
        margin-bottom: 20px;
    }

    .certificates h5.cert-heading{
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .certs img{
        height: auto;
    }

    #certModal .close, #offerModal .close {
    z-index: 9;
    font-size: 2em;
    opacity: 1;
    right: -4px;
    top: -30px;
    height: 30px;
    width: 30px;
    background: #c00c0c;
    border-radius: 50%;
}

    #offerModal .close {
    right: -16px;
    top: -16px;
}

    .testo-main-page .page-heading{
        height: 130px;
    }

    .testo-main-page .page-heading h2{
        color: #fff;
    }

    .mobile-invisible{
        display: none;
    }

    .call_now_mobile {
    transition: all .3s ease-in-out;
    font-size: 2.5em;
    color: #fff;
    text-align: center;
    height: 50px;
    width: 50px;
    line-height: 0;
    padding: 0;
    margin: 0;
    position: fixed;
    z-index: 9999;
    bottom: 30px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

    .call_now_mobile.visible{
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

.whatsapp .fa-whatsapp {
    line-height: 30px;
    padding: 0;
    margin: 0;
    height: 28px;
    width: 28px;
    background: #25D366;
    border-radius: 50%;
    margin-right: 1px;
}

.bottom-menu {
    transition: all .3s ease-in-out;
    font-size: 2em;
    color: #d2d6d7;
    text-align: center;
    height: 50px;
    width: 50px;
    line-height: 0;
    padding: 0;
    margin: 0;
    position: fixed;
    z-index: 999999;
    bottom: 15px;
    right: 10px;
}

    .bottom-menu:hover, .bottom-menu:visited, .bottom-menu:active {
        color: #ebebeb;
    }

.call-options {
    position: fixed;
    z-index: 9999;
    bottom: 24px;
    width: 100%;
    left: 0;
    background: rgba(86, 86, 86, .47);
    padding: 4px 0 0 0px;
    text-align: center;
    border-radius: 2em;
    transition: all 0.5s ease-in-out;
    transform: scaleY(0);
    opacity: 0;
}

    .call-options a {
    font-size: 2em;
    padding: 0 10px;
    color: #fff;
}

    .call-options.active{
       transform: scaleY(1);
        opacity: 1; 
    }
}

@media screen and (max-width: 1450px) and (min-width: 768px){
  #banner #slideshow p::after {
	border-width: 26.5px 0 28.5px 20px;
}  

    #header nav ul li a{
        padding: 0 14px;
        height: 30px;
        line-height: 30px;
    }

    #banner .cycle-overlay {
	left: 5%;
}

    #banner #slideshow p {
	font-size: 16px;
}

    .heading-title h1 {
	font-size: 1.2em;
}

    .logo-placement img {
	width: 90px;
	margin-top: 0px;
}

    .other-page.full-service-page h2.heading{
        color: #fff;
        font-size: 20px;
    }

    #header nav {
        float: none;
        padding-top: 0;
        padding: .5rem 0;
    }
}