:root {
  --heading-font: "Open Sans", sans-serif;
  /*--sub-font: "Open Sans", sans-serif;*/
  --spacer-10: 10px;
  --spacer-15: 15px;
  --spacer-20: 20px;
  --spacer-25: 25px;
  --spacer-30: 30px;
  --spacer-35: 35px;
  --spacer-40: 40px;
  --spacer-50: 50px;
  --spacer-60: 60px;
  --spacer-70: 70px;
  --font-24: 24px;
  --font-20: 20px;
  --font-18: 18px;
  --font-16: 16px;
  --font-15: 15px;
  --font-14: 14px;
  --font-12: 12px;
  --font-10: 10px;
  --weight-100: 100;
  --weight-200: 200;
  --weight-300: 300;
  --weight-400: 400;
  --weight-500: 500;
  --weight-600: 600;
  --weight-700: 700;
  --weight-800: 800;
  --weight-900: 900;
  --logo-clr: #00205e;
  --logo-primary: #f28020;
}

body {
  font-family: var(--heading-font);
  font-size: var(--font-14);
  font-optical-sizing: auto;
}

a,
a:hover {
  color: currentColor;
  text-decoration: none;
}

button:active {
  opacity: 0.75;
  transition: 0.15s ease;
  transform: scale(0.99) translateY(1px);
}

.container {
  padding: 0 20px;
}

.modal.fade .modal-dialog {
  transform: scale(0.95);
}

.modal.fade.show .modal-dialog {
  transform: scale(1);
}

.modal-backdrop.show {
  opacity: 0.65;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.flash {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #f7f7f7;
}
.flash img {
  width: 65%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spacer {
  margin: var(--spacer-30) 0 var(--spacer-30);
}
.spacer img {
  margin: 0 auto;
  width: 150px;
  display: block;
}

.divider {
  position: relative;
  border-bottom: 1px solid #c1c1c1;
}
.divider::after {
  position: absolute;
  content: attr(data-text);
  background-color: white;
  padding: 0 15px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.footMenu {
  outline: 1px solid #c2c2c2;
  outline-offset: -1px;
  z-index: 111;
}
.footMenu a {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
  z-index: 1;
  padding: 0.5rem 0;
  transition: var(--transition-nrml);
}
.footMenu a.active {
  background-color: rgba(0, 0, 0, 0.05);
  border-top: 2px solid var(--logo-clr);
  color: var(--logo-sclr) !important;
  padding: 0.5rem .315rem;
}
.footMenu a:active {
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 2px solid rgb(97, 97, 97);
}
.footMenu a.active:active {
  background-color: rgba(0, 0, 0, 0.05);
  border-top: 2px solid var(--logo-clr);
}

.mainHeader {
  padding: 0.5rem 0;
  border-bottom: 1px solid #c2c2c2;
}

.appFeatures .appFwrapper {
  /*border: 1px solid #ffe3d5;*/
  position: relative;
}
.appFeatures .appFwrapper span {
  /*background-color: #fff3ed;*/
}
.appFeatures .appFwrapper span i {
  color: var(--logo-clr);
}
.appFeatures .appFwrapper a {
  /*padding: 0.275rem 0;*/
  white-space:nowrap;
  display: block;
  font-size: 12px;
  font-weight: var(--weight-500);
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.logo_clr {
  color: var(--logo-clr) !important;
}

.logo_bgclr {
  background-color: var(--logo-clr) !important;
}

.logo_bclr {
  border-color: var(--logo-clr) !important;
}

.logo_sclr {
  color: var(--logo-primary) !important;
}

.logo_sbgclr {
  background-color: var(--logo-primary) !important;
}

.logo_sbclr {
  border-color: var(--logo-primary) !important;
}

.offcanvas.offcanvas-start {
  width: 70%;
}

.form-control:focus-within, .form-control:focus {
  box-shadow: unset;
  border-color: var(--logo-clr);
}
.form-control:focus-within ~ label, .form-control:focus ~ label {
  color: var(--logo-clr) !important;
  font-weight: var(--weight-600);
}

.form-floating .show_password {
  position: absolute;
  bottom: 12px;
  outline: unset;
  right: 10px;
}

.form-check-input {
  border-color: var(--logo-primary);
}
.form-check-input:focus {
  box-shadow: unset;
}
.form-check-input:checked {
  background-color: var(--logo-primary);
  border-color: var(--logo-primary);
}

.profile-pic {
  height: 100px;
  width: 100px;
  z-index: 1001;
  padding: 0px;
  margin: 0 auto 10px;
}
.profile-pic img {
  border-radius: 50%;
  box-shadow: 0px 0px 5px 0px #c1c1c1;
  cursor: pointer;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.side-menu li a {
  display: flex;
  align-items: center;
}

.side-item {
  padding: 0.6rem 1rem;
  font-size: 15px;
  font-weight: var(--weight-500);
  border-bottom: 1px solid #f1f1f1;
}
.side-item span {
  color: #444;
}
.side-item i {
  position: relative;
  top: 3px;
}

.menu_icons {
  border: 1px solid #dfdfdf;
  width: 35px;
  height: 35px;
  text-align: center;
  display: block;
  border-radius: 6px;
}
.menu_icons i {
  line-height: 38px;
  display: block;
}

.hero_cardDetails {
  height: 210px;
  border-radius: 0.5rem;
  position: relative;
  padding: 20px 20px 25px;
  background: linear-gradient(330deg, rgb(44, 27, 11), rgb(27, 26, 104));
  z-index: 1;
}
.hero_cardDetails::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/india.svg);
  background-position: bottom;
  background-repeat: repeat;
  z-index: -1;
  background-size: contain;
  bottom: 0;
  opacity: 0.1;
  left: 0;
}
.hero_cardDetails::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 50px;
  background-image: url(../images/logow.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0px;
  left: 20px;
}
.hero_cardDetails .hero_innerCard {
  color: white;
}
.hero_cardDetails .avatar_icon {
  width: 30px;
  height: 30px;
  border: 0.7px solid #5a5a5a;
  font-size: 18px;
  border-radius: 4px;
  text-align: center;
  line-height: 36px;
  color: var(--logo-primary);
}
.error{
    color:red;
}
@import url('https://fonts.googleapis.com/css2?family=Anek+Odia:wght@100..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Saira:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anek+Odia:wght@100..800&family=Poppins:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

select::-ms-expand { display: none; }
a{  -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;-ms-transition: all .3s ease;transition: all .3s ease;}
h1 {font-size:30px;color:#222222; margin:0px 0px 20px 0px;padding:0px;line-height: 1.2;font-weight:700;font-family: var(--heading-font);}
h2 {font-size:25px;color:#222222; margin:0px 0px 20px 0px;padding:0px;line-height: 1.2;font-weight:700;font-family: var(--heading-font);}
h3 {font-size:24px;color:#222222; margin:0px 0px 10px 0px;padding:0px;line-height: 1.2;font-weight:700;font-family: var(--heading-font);}
h4 {font-size:22px;color:#222222; margin:0px 0px 20px 0px;padding:0px;line-height: 1.2;font-weight:700;font-family: var(--heading-font);}
h5 {font-size:20px;color:#222222; margin:0px 0px 15px 0px;line-height: 1.4;font-weight:600;font-family: var(--heading-font);}
h6 {font-size:18px;color:#222222;margin:0px 0px 15px 0px;line-height: 1.2;font-weight:700;font-family: var(--heading-font);}
.spacer1pxborder {clear:both;line-height:0;font-size:0;overflow:hidden;height:1px; background: rgba(26,28,38,0.1); margin:20px 0px 20px 0px;width:100%; border:none;}
body {overflow-x:hidden;color:#505050;font-size:15px;line-height:1.4; margin:0px; padding:0px; outline:none;text-decoration:none;list-style:none;box-sizing: border-box;font-family: "Lato", sans-serif;background-color:#fff;font-weight: 400;}
body,html{padding: 0;margin: 0;}
p {color: #222222;font-size: 16px;line-height: 1.4;margin: 0px 0px 20px 0px;font-family: var(--heading-font);font-weight: 400;}
ul, ol {list-style: none;margin: 0;padding: 0;}
a:hover{ text-decoration:none;}
.form-control::-webkit-input-placeholder {color:#222222 !important; opacity:1 !important;}
.form-control::-moz-placeholder {color:#222222 !important; opacity:1 !important;}
.form-control::-ms-input-placeholder {color:#222222 !important; opacity:1 !important;}
.form-control::-moz-placeholder {color:#222222 !important; opacity:1 !important;}
:focus, button:focus {outline-style:none;box-shadow:none;border-color:transparent;}
*:focus {outline: none;}
input:focus{outline:none;}
img{max-width:100%;height:auto; outline:none;}
a{outline:none; border:none;text-decoration: none;}
.fixedhead{position: fixed;top: -40px; animation: slide-down 0.7s; opacity: 1;width: 100%;background: #fff;z-index: 999;left: 0px;box-shadow: 0 1px 7px 0 rgb(227 227 227 / 72%);}
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}
/* ========== Inner banner======= */
.page-title {position: relative;background-repeat: no-repeat;background-position: 50%;background-size: cover;text-align: center;background: linear-gradient(132deg, rgb(25 130 74) -12%, rgb(25 130 74 / 65%) 100%);}
.page-breadcrumb {font-size: 15px;line-height: normal;margin: 5px -5px 10px;}
.page-breadcrumb li {position: relative;display: inline-block;font-size: 15px;line-height: 20px;color: #ecb102;padding: 0 8px;text-transform: capitalize;}
.page-breadcrumb li a {color: #fff;text-transform: capitalize;transition: all .3s ease;}
.title-outer h1{color: #fff;}
.page-breadcrumb li:after {position: absolute;top: 2px;right: -5px;content: "/";font-size: 15px;line-height: 20px;color: #fff;}
.page-breadcrumb li:nth-last-child(1):after{display: none;}
.ani-1 .ani-pl{position: absolute;right: 25px;bottom: 9px;}
.ani-1 .ani-pl2 {position: absolute;left: 15%;top: 20%;-webkit-animation: bounce 5s linear infinite;animation: bounce 5s linear infinite;}
.ani-1 .ani-pl3 {position: absolute;left: -30px;top: 40px;-webkit-animation: bounceX 5s linear infinite;animation: bounceX 5s linear infinite;}
.our-company{padding: 50px 0;background-image: url(../images/testimonial-bg-2.png);background-size: cover;background-repeat: no-repeat;background-position: center;}
.our-company__meida img {height: 350px;width: 100%;object-fit: cover;}
.our-company__meida {overflow: hidden;position: relative;}
.years-experience {background: #2558d3;padding: 20px 15px 31px;border-radius: 0px 0px 20px 20px;margin-top: 20px;}
.years-experience .number {font-size: 64px;font-weight: 700;line-height: 60px;}
.years-experience .number sup {font-size: 40px;font-weight: 400;line-height: 60px;}
.our-company__meida.border-radius {margin-top: 60px;padding-bottom: 6px;border-radius: 20px 20px 0px 0px;}
.our-company__meida .horizental-bar {left: 10px;width: 232px;height: 15px;bottom: 0px;max-width: 100%;position: absolute;background: #00990e;-webkit-animation: move-right 3s linear infinite;animation: move-right 3s linear infinite;}
.sub-title {position: relative;text-transform: uppercase;color: #00990e;font-weight: 700;font-size: 16px;line-height: 26px;padding-left: 55px;display: inline-block;margin-bottom: 14px;}
.sub-title::before{position: absolute;content: "";top: 6px;left: 0;width: 40px;height: 2px;background: #00990e;}
.sub-title::after{position: absolute;content: "";bottom: 6px;left: 0;width: 40px;height: 2px;background: #00990e;}

.btn-one {background: #00990e;color: #ffffff;display: inline-flex;align-items: center;font-size: 16px;line-height: 26px;padding: 17px 43px;text-align: center;font-weight: 700;z-index: 3;position: relative;transition: 0.4s;text-transform: uppercase;overflow: hidden;border-radius: 6px;}
.btn-one:hover{background-color: #2558d3;color: #fff;}
.btn-one i {position: relative;top: 0px;margin-left: 15px;font-size: 13px;}
button.btn-two { border: none;  background: #00990e;text-align: center; display: block;width: 100%; padding: 15px 20px;  border-radius: 5px; color: #fff; font-size: 19px;  font-weight: 500;}
.mid-menu-flex {display: flex;justify-content: space-between;align-items: center;}
.top-logo img {width: 520px;}
.mid-menu {padding: 0px 0;}
.cart { color: #fff;position: relative;}
.cart i{ color: #fff;}
.curr span {display: block; color: #fff;}
.cart span { font-size: 12px; position: absolute; top: -11px; z-index: 22; background: #FF9900;width: 16px; height: 16px; border-radius: 50%;line-height: 16px; text-align: center; right: -10px;}
.log-box li a { color: #fff;}
.log-box li a:hover{color: #ecb102;}
.log-box {display: flex; gap: 10px;color: #fff; align-items: center;}
.call-icon {display: flex;align-items: center;gap: 10px;}
.cl-text span {display: block;}
.cl-text a {color: #363b4d;font-weight: 600;}
.cl-text {text-align: center;}
.call-icon i {font-size: 25px;font-weight: 500;}
.cl-text a:hover {color: #3368e8;}
.right-box { display: flex;align-items: center;gap: 20px;;}
.log-box li {display: inline-block;}
.log-box {display: flex;}
.log-box li{padding: 8px 12px;border-left: 1px solid #686868;margin-left: 80px;}
.curr {display: flex;align-items: center;gap: 10px;}
.curr li img{width: 22px;}
.curr .dropdown-menu{--bs-dropdown-min-width: 0rem;width: 50px;}
.curr .dropdown-menu a{padding:5px 10px; text-align: center;}
.address-block-one .icon {width: 80px;height: 80px;background: #00990e;}
.address-block-one .title {font-size: 24px;padding: 20px 0 5px;}
.address-block-one p {line-height: 1.6em;color: #878787;}
.address-block-one {border: 1px solid #e1e1e1;border-radius: 25px;height: 100%;padding: 25px 15px;}
.contact-us-section .bg-wrapper {border-radius: 40px;padding: 55px 55px 60px;margin-top: 60px;}
.address-block-one a {color: #00990e;text-decoration: underline;font-weight: 500;}
.light-bg {background-color: #edf1ee;}
.title-one h2 {font-weight: 700;font-size: 43px;}
.form-style-one .input-group-meta input {height: 60px;padding: 0 20px;}
.mb-40 {margin-bottom: 40px;}
.mb-30 { margin-bottom: 30px;}
.mb-35 {margin-bottom: 35px;}
.map-banner {height: 600px;}
.mt-120 { margin-top: 120px;}
.contact-us-section {padding: 80px 0;}
.block-feature-one {z-index: 1;position: relative;background-color: #f7f7f7;padding: 60px 0;}
.fq-sec{padding: 50px 0;}
.card-style-two {position: relative;padding: 50px 40px 48px;background: #fff;border: 1px solid #ebf3ee;border-radius: 20px;}
.card-style-two .icon {height: 50px;}
.card-style-two h4 {margin-top: 25px;color: #00990e;}
.accordion-flush .accordion-item {border-radius: 30px;border: 1px solid #e3e3e3 !important;margin-bottom: 20px;}
.accordion-flush .accordion-item .accordion-button.collapsed {border-radius: 30px;}
.accordion-button:focus {z-index: 3;border-color: unset !important;outline: 0 !important;box-shadow: unset !important;}
.accordion-flush .accordion-item .accordion-button:not(.collapsed) {color: #ffffff;background-color: #19824a;border-bottom-left-radius: 0;border-bottom-right-radius: 0;border-top-left-radius: 20px;border-top-right-radius: 20px;}
.accordion-button:not(.collapsed)::after {filter: invert(1) brightness(2.5);}
.registration {padding: 50px 0;position: relative;}
.ani-2 .shape1{right: 2%; bottom: 14%; width: 14.52%; animation: jumpThree 6s infinite linear;position: absolute;}
.commonpage.virtualwarehouse {  max-width: 1050px;}
.ware-li li:before { position: absolute; content: ''; width: 10px; height: 10px; background: #00990e;left: 0;  top: 3px; border-radius: 5px;}
.ware-li li {padding-left: 18px; position: relative; padding-bottom: 7px; font-weight: 500;}
.curr .dropdown button { background: #fff; padding: 1px 4px; border-radius: 5px;}
.curr .dropdown img { width: 21px;}
.footer-first-col p { color: #fff;}
.dropdown-toggle::after { display: inline-block;margin-left: 0; vertical-align: 0.2rem; content: ""; border-top: 0.3em solid #000; border-right: 0.3em solid transparent;border-bottom: 0; border-left: 0.3em solid transparent;}
.color-white {color: #FFF;}
/* ---------------- */
.top-menu {background: #2f2925;padding: 0px 0;}
.top-menu-flex { display: flex;justify-content: space-between; align-items: center;}
.top-icon ul {display: flex;}
.top-icon li {display: flex;color: #fff; font-size: 14px; font-weight: 500; align-items: center;position: relative;padding: 8px 0px;}
.top-icon li:first-child{margin-right: 10px;padding-right: 10px; border-right: 1px solid #686868;}
img { max-width: 100%;height: auto;outline: none;}
.top-icon li a { color: #fff; padding: 0px 10px 0px 10px; text-decoration: none;}
.top-icon li a:hover{color: #00b911;}
.top-menu-navbar a {background-color: #00990E;color: white;padding: 8px 20px;border-radius: 5px;display: block;transition: all .3s ease;border: 1px solid #00990e;}
.top-menu-navbar a:hover{background-color: #00990e00;color: #00b911; border: 1px solid #00b911;}
.top-menu-navbar a:hover img{    filter: brightness(50%) sepia(155) saturate(48) hue-rotate(131deg);}
.top-menu-navbar a img {margin-right: 8px;transition: all .3s ease;}
.top-icon-social { float: right;}
.top-icon-social li { display: inline-block; padding: 0px 0px 0px 15px;color: #fff;font-size: 15px;}
.top-icon-social li a { color: #fff; font-size: 25px;}
ul,
ol {list-style: none; margin: 0; padding: 0;}
.search-btn { border: 1px solid #ba3e11;color: #ba3e11; background: #ba3e11; width: 40px; height: 40px; font-size: 18px;transition: 0.5s ease;}
.wrapper .owl-stage-outer{    height: calc(100% + 30px); margin: -15px;padding: 15px !important;width: calc(100% + 30px);}
.search-btn i { color: white; font-weight: 100;}
.btn-style-one {border: 1px solid #ba3e11;background: #ba3e11; color: #fff; border-radius: 30px;  width: 150px; height: 40px; display: inline-block;transition: 0.5s ease;font-size: 15px;}
.cart-button {padding: 0;}
.mobile-menu { display: none;}
.active-products h5 {margin: 0; color: #fff;}
.link-dropdown {background-color: unset !important;order: none !important;color: black !important;}
ul { margin-bottom: 0 !important;}
.bottom-menu{background-color: #216db9;}

/* ==================banner-section================= */


.inner_about_sec .owl-nav{opacity: 0;transition: all .5s ease;}
.inner_about_sec:hover .owl-nav{opacity: 1;}
.inner_about_sec {position: relative; width: 100%; background-repeat: no-repeat;background-size: cover;background-position: center;}
.inner_about_sec .item{ padding: 0;}
.inner_about_sec .inner_about_sec-inner{position: relative; height: 100vh; width: 100%; background-repeat: no-repeat; background-size: cover;  background-position: center;}
.inner_about_sec-inner1{background-image: url(../images/banner-one.jpg);}
.inner_about_sec-inner2{background-image: url(../images/banner-3.jpg);}
.inner_about_sec .inner_about_sec-inner::before{position: absolute; content: " "; top: 0;left: 0; height: 100%; width: 100%; background-color: rgb(50 53 78 / 75%);}
.inner_about_sec::after{position: absolute; content: "";top: 0; left: 0;height: 100%;width: 100%;}
.inner_about_sec .inner_about_sec-txt{position: absolute; z-index: 9; width: 55%; top: 40%;left: 0;right: 0;margin: 0 auto; }
.inner_about_sec .inner_about_sec-txt .form-select { padding: 15px; border-left: 1px solid #b3b3b3;  border-radius: inherit; width: 55%; color: #818181; border-top: unset; border-right: unset; border-bottom: unset; font-size: 14px;}
.inner-title { position: absolute; top: 40%;left: 0;right: 0; transform: translateY(-100%); margin: auto;text-align: center; max-width: 1129px; display: flex;justify-content: center;z-index: 1;}
.inner-title h1 { color: #fff;}
.inner-title p { color: #fff; font-size: 22px;margin-bottom: 0; margin-top: 10px;}
.active-products { background-color: #19814a; width: 340px; height: 50px; margin-left: 45px; display: flex; justify-content: center; align-items: center;  border-radius: 5px; color: white; margin: auto; font-weight: 700;  margin-bottom: 25px;}
.inner-title div { text-align: center;}
.input-fields { background-color: #d8d8d885; width: 100%; padding:10px 15px; border-radius: 0px; margin: auto; display: flex;backdrop-filter: brightness(0.5);margin-top: 20px;}
.banner-input { border: none; width: 100%; padding: 0 15px;}
/* .banner-input:focus{border: 1px solid #3368e8;} */
.inner-title .form-select{padding: 15px;border-left: 1px solid #b3b3b3;border-radius: inherit;width: 55%;    color: #818181;    border-top: unset;border-right: unset;border-bottom: unset;font-size: 14px;}
.search-btn { width: 80px;height: 54px; border-radius: inherit;}
.input-fields .form-select:focus {border-color: unset; outline: 0; box-shadow: unset; border-left: 1px solid #b3b3b3;}
.banner-card { transition: all .3s ease; display: flex; justify-content: center; gap: 12px; margin-top: 30px;}
.banner-card-div { border: 1px solid white; border-radius: 3px; width: 135px; height: 110px; display: flex; flex-direction: column;justify-content: center; align-items: center; background: #91919145; backdrop-filter: contrast(0.5); overflow: hidden;transition: all .3s ease;}
.banner-card-div:hover img{filter: invert(53%) sepia(14%) saturate(3207%) hue-rotate(332deg) brightness(100%) contrast(80%);    animation: iconTop 0.4s ease-in-out;}
.banner-card-div:hover { background: #121216CC;border: 1px solid #212228;}
.banner-card-div:hover p{color: #fa541c;font-weight: 600;}
.banner-card img {width: 50px;height: 50px; object-fit: contain; transition: all .3s ease;}
.inner-card-div p {font-size: 13px; margin-bottom: 0; margin-top: 10px; color: #fff;}
.inner_about_sec .owl-carousel .owl-prev {left: 40px;background-color: #00990e !important;color: #fff !important; border: #00990e !important;}
.inner_about_sec .owl-carousel .owl-next { right: 40px;background-color: #00990e !important; color: #fff !important;border: #00990e !important;}
.inner_about_sec .owl-prev i, .inner_about_sec .owl-next i { font-size: 16px;}
.owl-prev i, .owl-next i {font-size: 15px !important;}


.banner-section {padding: 0; position: relative;
     /* background-image: linear-gradient(to right, #044554, #004e66, #005d83f2, #00679b,
      #00578b, #00619b, #00609b, #01619b, #006aa3, #0075ab, #005676, #074f67); */

      /* background-image: url(../images/background.jpg); */
      background-color: #104f88;
      background-position: center; background-size: cover;
}
.banner-section::before{position: absolute;content: " "; height: 100%;width: 100%;top: 0;left: 0; 
       /* background: linear-gradient(91deg, #043f4c, transparent, #064f67); */
       background: linear-gradient(91deg, #043f4c, #216db9, #064f67);
    }
.banner-section .shape-1{position: absolute;top: 0;right: 0;height: 100%;width: 35%;object-fit: cover;  }
.banner-section .shape-1 img{width: 100%; filter: contrast(0.5);}
.shape-11{position: absolute;bottom: 0; z-index: -1;left: 0;}

.banner-left h1{font-size: 80px;color: #fff; text-shadow: 0px 7px 7px #242424;}
.banner-right .odishi img{width: 900px;}

.banner-section-inner{position: relative; padding: 180px 0;z-index: 1;}
.banner-right{position: absolute;bottom: 0;     right: -150px;}
/* --------------------marquee------------------ */

.marquee{padding: 15px 0;
    background: #096d41;
    color: #fff;
}
.marquee .marquee-inner{
    display: flex;
    align-items: center;
}
.marquee .marquee-inner h4{
    margin: 0;
    margin-right: 25px;
    color: #ffff;
}
.marquee .marquee-inner span{font-size: 20px;}


/* --------------------End--------------------- */

/* ====================About ======================== */

.about-home {padding: 60px 0;}
.about-home .about-home-left{    display: flex;}
.about-home .about-home-left .about-home-txt{    width: 100%;
    display: flex;
    align-items: center;
    background: #216db9;
    margin-right: 15px;

}
.about-home .about-home-left .about-home-txt h4{
    margin: 0;
    padding: 0px 15px;
    color: #fff;
}
.about-home  .sm-icon{       height: 55px;
    width: 55px;
    background: #216db9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex: 0 0 55px;
}
.about-home  .sm-icon img{width: 40px;
    height: 32px;
    object-fit: contain;
    position: relative;
    top: 2px;
}
.about-home .abt-hm-txt{
    margin: 30px 0;
    border-bottom: 2px solid #216db9;
    padding-bottom: 30px;
}

.about-home .abt-hm-txt p{  
    font-weight: 600;
    font-size: 17px;
    color: #606060;
    text-align: justify;
}
.about-home .about-home-right li{
    display: flex;
    align-items: center;
    width: 90%;
    background: #216db9;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 28px 0 28px 20px;
    position: relative;
}
.about-home  .person-img img{width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #fff;
}

.about-home  .person-img {    position: absolute;
    right: -45px;
}
.about-home .person p{margin: 0; color: #fff; font-size: 15px;}
.about-home .person h5{color: #fff;font-size: 18px;margin-bottom: 8px;}
.about-home .about-home-right-top{margin-right: 40px;}




/* ===============Service================= */

.service-inner{background-image: url();}
.service{  padding: 100px 0; background: #e2f5f5;position: relative;}
.service::before{position: absolute;content: " "; top: 0;left: 0;height: 100%;width: 100%;background-image: url(../images/bg-1.png);background-size: cover;background-position: center;background-repeat: no-repeat;}
.service .gallery-thumbs{height: auto !important;} 
.gallery-top{position: relative; background-image: url(../images/konark.png); height: 100%;width: 100%;background-position: center;background-size: cover;}
.service .srevice-slide-cont{align-items: flex-end;    height: 100%;}
.service .service-text{ padding: 20px;height: 350px; padding-top: 75px;}
.service .service-text h3{font-size: 30px;font-weight: 500;color: #216db9; margin: 0px 0px 20px 0px;}
.service .service-text p{font-size: 18px;}
.service .service-tab{height: 100%; display: flex; flex-direction: column;align-items: center;justify-content: center;}
.service .service-tab h6{margin: 0;color: #fff;font-weight: 400; }
.service  .service-image{text-align: center;}
.service  .service-image img{width: 160px;object-fit: contain;}


/* ==========================Product-causrosal================= */
.product__carousel { display: block; max-width: 100%; margin: 0em auto 0em;}
.product__carousel a {display: block;margin-bottom: 15px;}
.product__carousel .gallery-top { margin-bottom: 10px;height: 550px !important; }
.product__carousel .gallery-top .swiper-slide { position: relative; overflow: hidden;}
.product__carousel .gallery-top .swiper-slide  { position: relative;  display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;}
.product__carousel .gallery-top .swiper-slide a img {width: 100%; height: 100%; object-fit: contain;}
.product__carousel .gallery-top .swiper-slide .easyzoom-flyout img { min-width: 100%; min-height: 100%;}
.product__carousel .swiper-button-next.swiper-button-white,
.product__carousel .swiper-button-prev.swiper-button-white {  color: #ffffff;}
.product__carousel .gallery-thumbs .swiper-slide { position: relative; transition: border .15s linear; border: 2px solid #ebebeb; border-radius: 10px;cursor: pointer;   overflow: hidden;height: 110px;    background: #035531;}
.product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active { border-color: #035531;}
.product__carousel .gallery-thumbs .swiper-slide img {object-fit: contain;height: 50px;width: 50px;}
.product-det-item{overflow: hidden;position: relative;}

.product__carousel .swiper-button-next.swiper-button-white, .product__carousel .swiper-button-prev.swiper-button-white { color: #035531;height: 30px;width: 30px; background: #fff; border-radius: 50px;top: 113%;}
.product__carousel .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after { font-size: 12px;}
.product__carousel .swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after { font-size: 12px;}

/* ====================events======================= */

.events{padding: 100px 0;}
.events .events-item{ padding: 16px; box-shadow: 0 0 10px 0 #d9d9d9;border-radius: 10px; text-align: center;}
.events .events-item .event-item-txt{ padding: 20px 0;}
.events .events-item .event-item-txt p{color: #216db9;}
.events .events-item .event-item-txt .lg-btn{ margin-top: 30px;}
.events .events-item .event-item-txt .lg-btn a{ padding: 12px 35px;background: #035531; border-radius: 50px; color: #fff;-size: 16px; border: 1px solid #035531; transition: all .3s ease;}

.events .events-item .event-item-txt .lg-btn a:hover{background: #fff;color: #035531; border-color: #035531;}
.heading {margin-bottom: 60px;}
.heading h2{margin: 0; font-size: 35px;position: relative;}
.heading h2::before{position: absolute; content: " ";bottom: -20px;left: 0;height: 3px; width: 85px;background-color: #216db9; border-radius: 5px;}
.award{padding-left: 40px;}
.award .award-slider {padding: 60px 30px; box-shadow: 0 0 10px 0 #d9d9d9; border-radius: 10px; background-image: url(../images/back-2.png);  background-position: center;  background-size: cover;  background-repeat: no-repeat;}
.award .award-slider  p{font-size: 17px; line-height: 32px;  text-align: justify; color: #515151;}
.award .award-slider h4{ font-size: 26px; color: #216db9;}
/* =================gallery==================== */

.gallery {padding: 100px 0;background: #edf5ff;   position: relative;}
.gallery .shape-gallery{position: absolute; right: 0; height: 100%; bottom: 0;}    
.gallery .shape-gallery img{height: 100%;}
.gallery .gal-img{width: 100%;height: 280px;}
.gallery .gal-img img{width: 100%;height: 100%;object-fit: cover;}
.gallery .gal-txt{ margin-top: 10px; padding: 15px;  background: #216db9; text-align: center;}
.gallery .gal-txt h4{ margin: 0 ; color: #fff;  font-weight: 400;}
.gallery-tab .nav-pills .nav-link.active, .gallery-tab .nav-pills .show>.nav-link { background: #035531;  color: #fff;  border-color:  #035531;}
.gallery-tab .nav-pills .nav-link{ font-size: 20px; padding: 12px 40px;  background: #fff; border: 2px solid #216db9;color: #000000; font-weight: 600;}
.gallery-tab .nav-pills .nav-item{margin-right: 20px;}
.gallery-tab  .tab-content{margin-top: 30px;}
/* ----------------------announcement-------------------------- */
.announcement{padding: 100px 0;}
.announcement .anou-card{height: 100%;padding: 45px 30px 70px 30px; box-shadow: 0 0 10px 0 #d9d9d9; border-radius: 10px; position: relative;}
.announcement .anou-card::before{position: absolute;  content: "";top: 0;right: 0; height: 120px;  width: 120px; background-image: url(../images/new-shape.png); background-position: center;background-size: cover;}
.announcement .anou-card .shape5{width: 50px; position: absolute; top: 20px; right: 20px;}
.announcement .anou-card li{ margin-bottom: 15px; padding-bottom: 15px;border-bottom: 1px solid #c1c1c1; display: flex;}
.announcement .anou-card li .calender {text-align: center; margin-right: 15px;background: #216db9;height: 100%; border-radius: 5px;padding: 2px 0;border: 1px solid #00000052;}
.announcement .anou-card li .calender p{margin: 0;padding: 3px 15px;color: #fff;}
.announcement .anou-card li .calender .lg-t{font-size: 20px;}
.announcement .anou-card li .calender .sm-t{background: #004991;}
.announcement .anou-card li .ann-cont p{margin: 0;}
.announcement .anou-card .heading h2{ font-size: 28px;}
.announcement .anou-card  .ann-cont p i{font-size: 20px; margin-right: 10px;  color: #216db9;}
.announcement .anou-card  .ann-cont p {margin: 0 0 12px 0;}
.announcement .anou-card  .low-btn{ position: absolute; bottom: 30px;right: 35px;}
.announcement .anou-card  .low-btn a{font-size: 20px;display: flex;align-items: center;color: #035531;}
.announcement .anou-card  .low-btn a:hover{color: #216db9;}
.announcement .anou-card  .low-btn a i{ margin-left: 8px;font-size: 25px;font-weight: 100;}

/* ----------------------watch-event--------------------- */

.watch-event .social-feed{position: relative;    padding: 35px 30px 35px 30px;box-shadow: 0 0 10px 0 #d9d9d9; border-radius: 10px; background-color: #fff;}
.watch-event .social-feed::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 120px;
    width: 120px;
    background-image: url(../images/bg-shape2.png);
    background-position: center;
    background-size: cover;
}
.watch-event .social-feed .shape5{
    width: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.watch-event .social-feed img{width: 100%;}
.watch-event{padding: 100px 0;    background: #eef4ff;}
.watch-event .you-video{margin-right: 35px;}
.watch-event .you-video .vdo{width: 100%; height: 525px;border-radius: 10px;overflow: hidden;}

/* =============inner page one blog================= */
.product-card {width: 100%; /* height: 300px; */ margin-bottom: 20px; padding: 10px;}
.filters { background: #ffffff;;padding: 0px 4px 0 10px;}
.category-select { width: 100%;}
.sortby-main-div {  display: flex;justify-content: end;}
.sortby-box {  display: flex; justify-content: end; align-items: center;  padding-right: 0;}
.sortby-box div {border-radius: 10px; width: 135px;}
.sortby-box span {margin-right: 8px; color: #000000;}
.sortby-box select {color: #000; width: 100%; padding: 5px 0px 5px 12px; border-radius: 5px;border: 1px solid #ba3e11;  color: #8d8d8d;}
.sortby-box .form-select:focus { border-color: #ba3e11; outline: 0;  box-shadow: none;}
.category-card {   display: flex; flex-direction: column; align-items: center;  text-align: center; width: 100%; padding: 20px; margin: 0;}
.category-card i { font-size: 50px;}
.nav-item2 {border: 1px solid black;}
.nav-tabs-links .nav-link { padding: 5px 15px 5px 15px; border-left: 2px solid #ecf4fb;}
.tab-topp{padding: 25px 15px;background: aliceblue;    margin: 0px 0 25px; border-radius: 5px;}
.tab-topp  .tab-top-item{display: flex; align-items: center;    justify-content: end;}
.select-container { position: relative;border-bottom: 1px solid #d6cfcf;  padding: 5px 12px 5px 5px; cursor: pointer;  background: white;}
.select-label { display: block; padding: 5px;}
.options-container { display: none; position: absolute; top: 100%; left: 0; width: 100%;max-height: 150px; overflow-y: auto; border: 1px solid #ccc;background-color: #fff;}
.option-checkbox {display: block; padding: 5px;}
.nav-tabs-product{ background-color: #eff5f5; border-radius: 5px;}
.product-card p{ margin-bottom: 7px;}
.product-card span{ color: #19814a;}
.product-btn-group{ margin-top: 15px; display: flex;justify-content: space-between;border-top: 1px solid #0080006b;padding-top: 15px;}
.add-cart-btn{ background-color: #ba3e11; border: 1px solid #ba3e11;width: 50%; padding: 12px 15px 12px 15px;transition: all .5s ease; color: white;font-size: 16px;}
.add-cart-btn:hover{background-color: rgb(255, 255, 255); color: #ba3e11;}
.details-btn{background-color: #19814a; border: 1px solid #19814a;width: 50%; padding: 12px 15px 12px 15px; transition: all .5s ease; color: white; font-size: 16px;}
.details-btn:hover{background-color: rgb(255, 255, 255); color: #19814a;}
.popularity p{font-size: 16px; font-weight: 300; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #e1dcdc;}
.popularity li{font-size: 16px; font-weight: 300; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #e1dcdc;position: relative; padding-left: 20px;}
.popularity li:last-child { border-bottom: unset; }
.popularity li .popularity-check{position: absolute;left: 0px; top: 4px;}
.popularity p span{color: #3368e8;}
.popularity p:last-child{ border-bottom: none;}
.dropdown-div{display: flex; justify-content: space-between;align-items: center;}
.product-image{position: relative;}
.product-image i{ position: absolute;top: 12px;left: 10px; font-size: 20px;color: #ba3e11;}
.product-image i:hover{color: #19814a;}
.product-price{display: flex; align-items: center;}
/* .left-side-filter{ border: 1px solid #e1dfdf;border-radius: 10px;} */
.filter-product-div{ border-radius: 3px; padding: 8px 20px 10px 20px;}
.left-side-filter h5{padding: 10px 0px 10px 20px;background: #ba3e11; border-radius: 9px 9px 0 0;color: white;font-weight: 500;}
/* .filters .left-side-filter{ border: 1px solid #e1dfdf; border-radius: 10px;  margin-bottom: 25px;} */
.filters .left-side-filter .popularity{  padding: 8px 20px 10px 20px;}
.popularity i{font-size: 20px; margin-right: 8px;}
.left-side-filter h5 i{ margin-right: 8px;}
.filter-product-div .accordion-flush .accordion-item { border-radius: 10px; border: 1px solid #defaff !important; margin-bottom: 15px;}
.filter-product-div .accordion-flush .accordion-item .accordion-button.collapsed {border-radius: 10px; background: aliceblue;}
.category-card h6{ font-weight: 500; margin: 0;padding-top: 8px;}
.filter-product-div .accordion-flush .accordion-item .accordion-button{font-size: 14px;padding: 10px 20px;}
.filter-product-div .accordion-flush .accordion-item .accordion-button i{ margin-right: 8px;}
.filter-product-div .accordion-flush .accordion-item .accordion-button span{margin-left: 10px;color: #ba3e11;}
.filter-product-div .accordion-flush .accordion-item .accordion-button:not(.collapsed) { border-top-left-radius: 10px; border-top-right-radius:10px;}
.accordion-flush .accordion-item .accordion-button:not(.collapsed) span{color: #fff;}
.filters .left-side-filter:nth-child(2){border: 1px solid #ba3e1129;border-radius: 10px;}
.pagination-top {margin: 40px 0;}
.card-cont{position: relative;    padding-top: 40px;}
.card-date{left: 10px;position: absolute;top: -44px; border-radius: 5px 5px 0 0;background: #fff;padding: 12px 20px;}
.card-cont h4{color: #156b3d;}
.pagination-top  .pagination{justify-content: center;}
.pagination-top .page-item:first-child .page-link { background: #19814a; color: white;}
.pagination-top  .page-item:last-child .page-link {background: #ba3e11; color: #fff;}
.pagination-top .active>.page-link, .page-link.active{    background: #ba3e11;}
.pagination-top  .page-link:focus {background-color: #ba3e1126; box-shadow: none;}
.page-link {color: #ba3e11;border: unset;}
.search-bar {width: 100%;}
.search-bar .input-fields{margin: 0;padding: 0;     background-color: aliceblue;backdrop-filter: none;}
.search-bar .search-btn {width: 50px; height: 35px;border-top-right-radius: 5px; border-bottom-right-radius: 5px;}
.tab-topp .tav-txt{    display: flex;justify-content: end; align-items: center;}
.tab-topp .tav-txt p{margin: 0;}
.tab-topp .tav-txt a{color: #000000;}
.tab-topp .tav-txt a:hover{text-decoration: underline   ;}
.tab-topp .tav-txt img{    height: 25px; width: 25px;margin-left: 5px;}
.tab-topp  .row{align-items: center;}
.search-bar .banner-input {border: 1px solid #ba3e11;    border-top-left-radius: 5px; border-bottom-left-radius: 5px;}
.button-div .minus{    width: 25px; height: 25px; background: #ba3e11;border-radius: 4px; border: 1px solid #ba3e11;  display: inline-block; vertical-align: middle;
text-align: center;font-size: 15px;font-weight: bold;color: #fff;}
.button-div .plus { width: 25px; height: 25px; background: #00761f; border-radius: 4px; border: 1px solid #00761f; display: inline-block; vertical-align: middle;text-align: center; font-size: 15px; font-weight: bold;color: #fff;}
.button-div .product_qty_fld input {height: 25px;  width: 25px !important;text-align: center; font-size: 15px;border: 1px solid #ddd;   border-radius: 4px; display: inline-block; vertical-align: middle;}
.tab-topp .nav-tabs-links{gap: 10px;}
.main-div { display: flex; align-items: center; box-shadow: 0px 0px 8px 0px #00000014;padding: 10px; border-radius: 5px;position: relative;}
.tab-topp .nav-item2{  border: none;}
.tab-topp .nav-item2 .nav-link {border-radius: 5px;color: #ba3e11; border: 1px solid #ba3e11;}
.tab-topp .nav-item2 .nav-link:hover{ color: #19824a;border: 1px solid #19824a;}
.tab-topp .nav-item2 .nav-link.active{ color: #19824a;border: 1px solid #19824a;}
.product-page{ padding: 60px 0 0;}
.image-div { width: 350px; margin-right: 25px;    flex: 0 0 350px;position: relative;}
.image-div i{position: absolute;left: 10px;top: 10px;color: #ba3e11;}
.image-div i:hover{color: #19814a;}
.apply-red { border-top: 1px solid #19824a85;padding-top: 15px;align-items: center;display: flex; justify-content: space-between;}
.apply-red .read-more{ width: 50%;text-align: center;padding: 12px 0; background: #ba3e11; cursor: pointer;}
.apply-red .read-more a{color: #fff;}
.apply-red .apply-now{ width: 50%;text-align: center;padding: 12px 0; background: #19824a; cursor: pointer;}
.apply-red .apply-now a{color: #fff;}
.main-div .description{ margin-right: auto;display: flex;flex-direction: column;}
.main-div .button-div{display: flex;flex-direction: column;gap: 15px;padding-right: 30px; text-align: center;}
.tab-content .description p{margin-bottom: 10px;}
.tab-content .description .card-title{    margin-bottom: 15px;font-weight: 500;color: #156b3d;}
.tab-content .description del{    color: red; font-size: 13px;}
.image-div img { width: 100%;}
.btn-group .add-cart-btn { border-radius: 0px;font-size: 13px;padding: 8px 4px 8px 4px;}
.btn-group .details-btn {border-radius: 0px; font-size: 13px;}

.curr ul {display: flex;align-items: center;}
.curr ul .abtn { font-size: 14px; border: 1px solid #fff;color: #fff; height: 25px; width: 25px; display: flex; align-items: center;justify-content: center;border-radius: 5px;}
.curr ul .abtn a{color: #fff;}
.curr ul li a{color: #fff;}
.curr ul li {padding: 8px 12px;border-left: 1px solid #686868;}
.top-icon ul li i{font-size: 25px;}
.nav-top-btns {display: flex;align-items: center;}
.nav-top-btns .five-t img{width: 105px;}
.quick-play a{border: 1px solid #19814a; padding: 5px 15px;border-radius: 5px;color: #fff;background: #19814a;}
.title-outer {text-align: left;position: relative;}
.page-title-inner {position: relative;padding: 80px 0;}
.shape{position: absolute; bottom: 0;left: 0;height: 240px;width: 450px;}
.shape img{opacity: .3;width: 100%;object-fit: cover; height: 100%;}
.shape-2{position: absolute; bottom: 0; right: 0;height: 210px;}
.shape-2 img{ width: 100%;height: 100%;}
.back-btn{position: absolute;bottom: -0;}
.back-btn a{ padding: 10px 25px;background: #ba3e11;color: #fff;}
.back-btn a i{margin-right: 8px;}
.naveen-txt a{color: #000000;font-size: 18px;}
.naveen-txt a span{font-size: 16px;}


.sale-right-tab-btn .nav-link { font-size: 16px;background: #ba3e11; border-top-right-radius: 10px; border-top-left-radius: 10px;    border-bottom: 1px solid #ba3e11;;padding: 12px 15px; width: 100%; margin-right: 2px; color: #ffffff !important;font-weight: 500;}
.sale-right-tab-btn .nav-link:hover{color: #ffffff !important; border-color: #19824a; background: #19824a;}
.sale-right-tab-btn .nav-link.active {position: relative; background-color: #19824a !important; border-color: #dee2e6 #dee2e6 #fff; color: #fff;border: 1px solid #19824a;}
.sale-right-tab-btn .nav-link.active::before{content: "";position: absolute;clip-path: polygon(50% 57%, 0% 100%, 100% 100%);bottom: 0px;transform: translate(-50%, 97%) rotate(180deg);left: 50%;background: #19824a;height: 30px;width: 30px;}
.sale-right-tab-btn ul {gap: 10px;}
.sale-right-tab-btn li {flex: 1 1 auto;}
.sale-right-tab-text{display: flex; flex-direction: column; justify-content: center;align-items: center;padding: 15px;text-align: center;border: 1px solid #cfcfcf; border-bottom-right-radius: 10px; border-bottom-left-radius: 10px;    padding-bottom: 20px;height: 100%;position: relative;overflow: hidden;    border-top: unset;}
.sale-right-tab-text::before{position: absolute;content: " ";background-image: url(../images/odisha-sasan.png);  height: 200px;width: 200px; background-size: cover; background-position: center;opacity: .5; left: 50%; top: 50%;transform: translate(-50%, -60%); opacity: .1;}
.sale-right-tab-text p{font-size: 20px; margin: 0;} 
.sale-right-tab-text .btn-gn { padding: 9px 15px;font-size: 15px;width: 100%; display: block; border-radius: 0;font-weight: 600;background: #19824a;color: #fff; transition: all .3s ease;}
.sale-right-tab-text .btn-gn:hover{background: #ba3e11;}
.sale-right-tab-text .lg-btn {position: absolute;margin: 0 auto; bottom: 0px;left: 50%; transform: translate(-50%, 0px);width: 100%; text-align: center;}
.sale-right-tab-text strong{color: #19824a;font-size: 22px;}
.sale-right{height: 100%;display: flex;  flex-direction: column; justify-content: space-between;}
.sale-right-tab-cont {height: 100%;}
.sale-right-tab-cont .tab-content{ height: 80%;}
.sale-right-tab {height: 380px;}
.sale-right-tab-cont  .tab-pane { height: 100%;}
.sale-right-tab-text ul{position: relative;}
.sign-free {width: 100%;}
.shign-btn{padding: 12px 20px; width: 100%;border: 1px solid;background: #ba3e11; color: #fff; transition: all .3s ease;}
.shign-btn:hover{background-color: #19824a;}
.shign-btn a{color: #fff;}
.sign-free{position: relative;}
.sign-free .form-control{padding: 12px 20px;border-radius: 0;background: whitesmoke;}



.ribbon1 {position: absolute;  top: -6.1px;right: 10px; z-index: 9; }
.ribbon1 span {  position: relative;display: block;text-align: center; background: #ba3e11;font-size: 14px; line-height: 1; padding: 12px 8px 10px;border-top-right-radius: 8px;  width: 90px;color: #fff;}
.ribbon1 span:before {height: 6px; width: 6px; left: -6px;  top: 0; background: #ba3e11;position: absolute;content: "";}
.ribbon1 span:after { height: 6px; width: 8px; left: -8px; top: 0; border-radius: 8px 8px 0 0;background: #C02031;position: absolute;  content: "";}
.ribbon1:after {position: absolute;content: ""; width: 0; height: 0; border-left: 47px solid transparent; border-right: 44px solid transparent; border-top: 13px solid #ba3e11;}
.zero-offer{ width: fit-content;padding: 10px 25px; margin-left: 0px;position: absolute;left: -8px; background: #19824a; bottom: 10px;}
.zero-offer::before{height: 0; width: 0; top: -8.5px;left: 0.1px;    border-bottom: 9px solid #19824a;border-left: 9px solid transparent;    content: "";position: absolute;}
.zero-offer::after{position: absolute;content: " ";height: 0;width: 0;right: -14.5px; border-top: 20px solid transparent; border-bottom: 21px solid transparent; border-left: 15px solid #19824a;top: 0;}
.zero-offer p{color: #fff;margin: 0;}

.news-letter {width: 100%; padding-top: 25px; padding-bottom: 25px; background-color: #19814a;display: flex;justify-content: center;  align-items: center;}
.newsletter-div {display: flex;justify-content: center; align-items: center;color: white; gap: 20px;}
.newsletter-div h5{color: #fff;margin: 0;    font-weight: 300;}
.newsletter-div img{width: 70px; opacity: .2; margin-right: 10px;}
.newsletter-div i {font-size: 40px; color: white; margin-right: 15px;}
.newsletter-div div {display: flex;justify-content: center; align-items: center;}
.newsletter-div p {font-size: 25px;}
.newsletter-div button { width: 170px;height: 48px;background-color: #242734; color: white; border: none; border-top-right-radius: 5px;border-bottom-right-radius: 5px; font-size: 13px;transition: all .5s ease;    border: 1px solid #242734;}
.newsletter-div button:hover{background-color: #b33c10;color: #ffffff;    border: 1px solid #b33c10;}
.newsletter-div input { height: 40px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; width: 100%; padding: 0 60px 0 35px;border: none; position: relative; font-size: 12px;}
.news-input{position: relative;}
.newsletter-div .news-input::before{ position: absolute;  left: 10px; top: 10px; font-family: "Font Awesome 5 Pro";  font-size: 16px; color: #757575;content: '\f0e0'; z-index: 999999;     font-weight: 300;}

.client{overflow: hidden;padding: 60px 0;}
.client .gallery-slider {overflow: hidden;}

.social ul{display: flex;justify-content: space-around;width: 100%;flex-wrap: wrap;  gap: 15px; }
.social ul li{flex: 0 0 45%; display: flex;align-items: center;justify-content: flex-start;border: 1px solid ;padding: 10px 15px;    border-left: 5px solid;}
.social ul li i{font-size: 30px;}
.social ul li small{padding-left: 10px;font-size: 16px;}
.social ul .face-book{border-color: #3b5998 ; color: #3b5998;position: relative;transition: all .3s ease;z-index: 1;}
.social ul .face-book::before{position: absolute;content: ""; top: 0;left: 0;width: 0px;height: 100%;background-color: #3b5998;transition: all .3s ease;    z-index: -1;}

.social ul .pint-rest{color: #fd2b36; border-color: #fd2b36;position: relative;transition: all .3s ease;z-index: 1;}
.social ul .pint-rest::before{position: absolute;content: ""; top: 0;left: 0;width: 0px;height: 100%;background-color: #fd2b36;transition: all .3s ease;    z-index: -1;}
.social ul .twiter{border-color: #55acef; color: #55acef;position: relative;transition: all .3s ease;z-index: 1;}
.social ul .twiter::before{position: absolute;content: ""; top: 0;left: 0;width: 0px;height: 100%;background-color: #55acef;transition: all .3s ease;    z-index: -1;}
.social ul .insta{border-color: #8a38ab; color: #8a38ab;position: relative;transition: all .3s ease;z-index: 1;}
.social ul .insta::before{position: absolute;content: ""; top: 0;left: 0;width: 0px;height: 100%;    background: linear-gradient(45deg, #833AB4, #FD1D1D, #F56040);transition: all .3s ease;    z-index: -1;}

.social ul li:hover{color: #fff;}
.social ul .face-book:hover::before{width: 100%;}
.social ul .pint-rest:hover::before{width: 100%;}
.social ul .twiter:hover::before{width: 100%;}
.social ul .insta:hover::before{width: 100%;}

footer{padding: 60px 0;position: relative;background-image: unset; background-position: center;background-size: cover;background-repeat: no-repeat;}
footer::before{content: "" ; position: absolute; top: 0; left: 0;height: 100%; width: 100%;    background-color: #216db9;}

.footer-list ul{display: flex;justify-content: center; gap: 30px;}
.footer-cont{text-align: center;}
.footer-inner{position: relative;    text-align: center;}
.footer-inner ul{display: flex;justify-content: center;padding-bottom: 15px;    border-bottom: 1px solid #ffffff54;}
.footer-inner ul li{margin-right: 10px;}
.footer-inner ul li  a{color: #fff;}
.footer-inner p{color: #fff;}
.footer-inner p a{    color: #7cbeff;}
.footer-list li a{color: #fff;}
.footer-txt p{ margin-top: 15px; color: #ffff;}
.footer-txt p a{color: #fff;}
.footer-img img{width: 250px;}

.music-container {
    text-align: center;
    margin-top: 50px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #2980b9;
}

#toggle-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.buttonn { display: block; position: relative;  width: 55px; height: 55px; margin: 0;overflow: hidden; outline: none;background-color: transparent; border: 0; transform: rotate(180deg);}
.buttonn:before,
.buttonn:after {  content: ""; position: absolute;  border-radius: 50%;inset: 7px;}
.buttonn:before { border: 2px solid #096d41; transition: opacity .4s cubic-bezier(.77, 0, .175, 1) 80ms, transform .5s cubic-bezier(.455, .03, .515, .955) 80ms;}
.buttonn:after {border: 2px solid #216db9; transform: scale(1.3); transition: opacity .4s cubic-bezier(.165, .84, .44, 1), transform .5s cubic-bezier(.25, .46, .45, .94);  opacity: 0;}
.buttonn:hover:before,
.buttonn:focus:before { opacity: 0; transform: scale(0.7); transition: opacity .4s cubic-bezier(.165, .84, .44, 1), transform .5s cubic-bezier(.25, .46, .45, .94);}
.buttonn:hover:after,
.buttonn:focus:after { opacity: 1; transform: scale(1); transition: opacity .4s cubic-bezier(.77, 0, .175, 1) 80ms, transform .5s cubic-bezier(.455, .03, .515, .955) 80ms;}
.button-box { display: flex;position: absolute;top: 0; left: 0;}
.button-elem { display: block;height: 16px; width: 16px; margin: 28px 18px 0 20px; transform: rotate(180deg);fill: #096d41;}
.clr-pink{fill: #216db9;margin: 28px 20px 0 22px;}
.buttonn:hover .button-box,
.buttonn:focus .button-box { transition: .4s;  transform: translateX(-56px);}
.go-btn{display: flex;align-items: center;    width: fit-content;}
.go-btn a{font-size: 20px;color: #096d41;font-weight: 600;}
.go-btn:hover a{color: #216db9;}

/* ====================responssive==================== */


@media only screen and (min-width: 1480px) and  (max-width: 1920px)  {
    .container{
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 1300px) and  (max-width: 1400px)  {
    .nav-tabs-links .nav-link {padding: 5px 13px 5px 13px;}
    .tab-content .description .card-title { width: 80%;}
}
@media only screen and (min-width: 1180px) and  (max-width: 1299px)  {
    .sortby-box div {width: 100px;}
    .image-div {width: 250px;flex: 0 0 250px;}
}
@media only screen and (min-width: 992px) and  (max-width: 1179px)  {
    .image-div {width: 250px;flex: 0 0 250px;}
}
@media only screen and (min-width: 768px) and  (max-width: 991px)  {
    .tab-topp .row .col-12{ margin-top: 15px; }
    .tab-topp .tab-top-item { justify-content: flex-start; }
    .sortby-box {width: 100%;}
    .sortby-box span{width: 90px;}
    .sortby-box div {width: 100%; }
    .main-div {flex-direction: column; }
    .image-div { width: 100%; flex: 0 0 auto;     margin: 0;}
    .zero-offer {bottom: 55%; }
    .main-div .description { padding-top: 15px; }
    .top-logo img {  width: 150px; }
    .nav-top-btns .five-t img { width: 100px; }
    .quick-play a {font-size: 11px;}
    .footer-list ul {flex-wrap: wrap;}
    
    
}
@media only screen and (max-width: 767px) {
    .main-div {flex-direction: column; }
    .image-div { width: 100%; flex: 0 0 auto;     margin: 0;}
    .zero-offer {bottom: 55%;     padding: 10px 15px;   }
    .main-div .description { padding-top: 15px; }
    .curr span {display: none;  }
    .quick-play{display: none;  }
    .five-t{display: none;  }
    .mid-menu { padding: 40px 0;}
    .tab-topp .row .col-12 {margin-top: 15px;}
    .tab-topp .tab-top-item { justify-content: flex-start; }
    .sortby-box {width: 100%;}
    .sortby-box span{width: 90px;}
    .sortby-box div {width: 100%; }
    .footer-list ul {flex-wrap: wrap;}
    .newsletter-div {flex-direction: column;}   
    .newsletter-div textarea{width: 100%;} 
    .tab-topp { margin: 25px 0 25px; }
    .sale-right-tab-text p {font-size: 16px; }
    .sale-right-tab-text strong {   font-size: 18px; }
    .zero-offer p { font-size: 14px; }
    .social ul li small { font-size: 12px;}
    .social ul li i {font-size: 20px;}
    .social ul li { padding: 8px 15px;}
}
@media only screen and (max-width:420px){
    .top-icon ul li i {
        font-size: 20px;
    }   
    .curr ul .abtn {font-size: 10px;height: 20px; width: 20px;}
    .curr ul {gap: 7px; }
    .top-icon li { font-size: 0px;}
    .top-icon li a { padding: 0px 5px 0px 5px; }
}
/*Manas*/
.listing-details ul{padding: 0;}
    
.listing-details li{list-style-type: none;display: flex;align-items: center; justify-content: space-between;  padding: 40px 15px 20px; background: #fff3ed;margin-bottom: 8px;border-bottom: unset;position: relative; border-radius: 8px;box-shadow: 0px 5px 8px 0 #ebebeb; transition: all .5s ease;animation: slide-Left ;   animation-duration: 3s; animation-delay: 1s;}

.listing-details li:nth-child(1){animation: slide-Left ;   animation-duration: 1.1s;animation-delay: 0.15s;}

.listing-details li:nth-child(2){animation: slide-Left ;   animation-duration: 1.3s;animation-delay: 0.25s;}

.listing-details li:nth-child(3){animation: slide-Left ;   animation-duration: 1.6s;animation-delay: 0.35s;}

.listing-details li:nth-child(4){animation: slide-Left ;   animation-duration: 1.9s;animation-delay: 0.45s;}

.listing-details li:nth-child(5){animation: slide-Left ;   animation-duration: 1.12s;animation-delay: 0.55s;}

.listing-details li:nth-child(6){animation: slide-Left ;   animation-duration: 1.15s;animation-delay: 0.55s;}

.listing-details li:nth-child(7){animation: slide-Left ;   animation-duration: 1.18s;animation-delay: 0.65s;}

.listing-details li:nth-child(8){animation: slide-Left ;   animation-duration: 1.21s;animation-delay: 0.75s;}

.listing-details li:nth-child(9){animation: slide-Left ;   animation-duration: 1.24s;animation-delay: 0.85s;}

.listing-details li:nth-child(10){animation: slide-Left ;   animation-duration: 1.27s;animation-delay: 0.95s;}

.listing-details li:hover{background-color: #ffff;    box-shadow: 0px 0px 10px 0 #cfcfcf;}

.listing-details li .dt{ position: absolute;left: 0; top: 0; padding: 5px 13px;  background: #00205ea8; border-radius: 0 0 10px 0;}

.listing-details li .dt p{color: #fff;font-weight: 400; font-size: 12px;}

.listing-details li .dt p i{margin-right: 5px;}

.listing-details li p{margin: 0;}

.listing-details li p strong{font-size: 14px;display: block;}

.listing-details .bg-color-red{font-size: 13px; color: red;}

.listing-details .bg-color-green{color: green;}

.listing-details li p small{color: #707070; font-size: 13px;}

.listing-details .payment-heading{padding: 15px;text-align: center; background: #00205e;border-radius: 10px; }

.listing-details .payment-heading h3{margin: 0; color: #fff; display: flex ;align-items: center; justify-content: space-between;}

.listing-details .payment-heading h3 span{ height: 35px; width: 35px;  flex: 0 0 35px; display: flex; align-items: center;  justify-content: center; background: #113e97; margin-left: 5px; font-size: 28px;  border-radius: 5px;}

.listing-details .status-detlais{display: flex; gap: 5px;}

.listing-details.redeem .status-detlais{position: absolute;top: 8px;right: 8px; }

.listing-details .status-detlais span{ padding: 4px 5px; background: unset; border-radius: 5px; color: #fff;width: 65px; text-align: center; font-weight: 600;font-size: 12px; border: 1px solid #57688f;}

.listing-details .status-detlais span.pending{ color: blue;} 

.listing-details .status-detlais span.success{ color: green;}

.listing-details .status-detlais span.faild{ color: red;}

.listing-inner{padding:10px 10px 10px 10px;}
.payment-body{ background: #fff;position: relative;top: -15px; border-radius: 15px 15px 0 0;}

    @keyframes slide-Left {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    } 
    0% {
        opacity: 0.5;
    } 
    100% {
        opacity: 0.9;
        transform: translateX(0);
    }   
}

.comming-popup .comming-soon {   text-align: center; }
.comming-popup .comming-soon h1 { cursor: default;  position: relative; top: -0; left: 0; right: 0; bottom: 0; width: 100%; height: auto; margin: auto; display: block;   text-align: center;   }
.comming-popup .comming-soon h1 span { position: relative; top: 1px; display: inline-block;font-size: 40px; color: #001e5b;  font-weight: 400; font-family: "Cookie", cursive; line-height: 45px;}
.comming-popup .comming-soon h1 span strong { font-weight: 800; color: #f28020;  -webkit-animation: bounce 0.8s ease infinite alternate; font-size: 60px;font-style: italic;}
.comming-popup .comming-img{width: 225px; height: 150px; margin: 0 auto;}
.comming-popup .comming-img img {width: 100%; height: 100%; object-fit: contain;}
.comming-popup .close-mod{position: absolute;top: 15px; right: 15px;    z-index: 2;}
.comming-popup .modal-body{    padding: 15px 15px 0;}
.comming-popup .modal-footer{text-align: center; justify-content: center;  border: unset;}
.comming-popup .modal-footer button{  background: #001e5b;font-size: 12px; transition: all .3s ease;}
.comming-popup .modal-footer button:hover{background: #f28020; border: 1px solid #f28020;}
.comming-popup  .modal-content{position: relative; background-color: #f8f8f8d9; border-radius: 10px;overflow: hidden;}
.comming-popup .modal-content::before{ position: absolute;content: " "; top: 0; left: 0;height: 100%;  width: 100%; background-image: url(../images/bg-pop.jpg); background-size: cover;background-position: center;z-index: -1; }
@-webkit-keyframes bounce {
    100% {
        top: 5px;
        text-shadow: 0 1px 0 #ccc, 0 2px 0 #ccc, 0 3px 0 #ccc, 0 4px 0 #ccc,
            0 5px 0 #ccc, 0 6px 0 transparent, 0 7px 0 transparent, 0 8px 0 transparent,
            0 9px 0 transparent, 0 10px 10px rgba(0, 0, 0, 0.4);
    }
}

@keyframes bg-circle-one {
    0% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1.1);
        filter: invert(1);
    }
}

.side-menu  .nav-m-left{width: 65px;  background: #f0f1f7 ; height: 100vh;position: fixed; margin: 5px;  border-radius: 0 15px 15px 0; padding: 30px 0px 0;}

.side-menu  .icon-slide{ width: 30px; height: 30px;}

.side-menu  .icon-slide img{width: 100%;height: 100%;object-fit: contain; filter: grayscale(1);}

.side-menu  .nav-link { padding: 5px; display: flex; align-items: center; justify-content: center;  height: 45px; width: 45px; margin-bottom: 25px;    transform: scale(0.9); transition: all .5s ease-in-out;}

.side-menu .nav-m-right{ margin-left: 80px;  width: 100%; padding-right: 6px;}

.side-menu .nav-pills .nav-link.active{background: linear-gradient(330deg, rgb(44, 27, 11), rgb(27, 26, 104)); transform: scale(1);}

.side-menu .nav-pills .nav-link.active .icon-slide img{ filter: none;}

.side-menu  .listing-inner li {    padding: 35px 15px 10px;}


.listing-inner ul{padding: 0;}

.listing-inner li{list-style-type: none;display: flex;align-items: center; justify-content: space-between;  padding: 40px 15px 20px; background: #fff3ed;margin-bottom: 8px;border-bottom: unset;position: relative; border-radius: 8px;box-shadow: 0px 5px 8px 0 #ebebeb; transition: all .5s ease;animation: slide-right ;   animation-duration: 3s; animation-delay: 1s;}

.listing-inner li:nth-child(1){animation: slide-right ;   animation-duration: 1.1s;animation-delay: 0.15s;}

.listing-inner li:nth-child(2){animation: slide-right ;   animation-duration: 1.3s;animation-delay: 0.25s;}

.listing-inner li:nth-child(3){animation: slide-right ;   animation-duration: 1.6s;animation-delay: 0.35s;}

.listing-inner li:nth-child(4){animation: slide-right ;   animation-duration: 1.9s;animation-delay: 0.45s;}

.listing-inner li:nth-child(5){animation: slide-right ;   animation-duration: 1.12s;animation-delay: 0.55s;}

.listing-inner li:nth-child(6){animation: slide-right ;   animation-duration: 1.15s;animation-delay: 0.55s;}

.listing-inner li:nth-child(7){animation: slide-right ;   animation-duration: 1.18s;animation-delay: 0.65s;}

.listing-inner li:nth-child(8){animation: slide-right ;   animation-duration: 1.21s;animation-delay: 0.75s;}

.listing-inner li:nth-child(9){animation: slide-right ;   animation-duration: 1.24s;animation-delay: 0.85s;}

.listing-inner li:nth-child(10){animation: slide-right ;   animation-duration: 1.27s;animation-delay: 0.95s;}

.listing-inner li:hover{background-color: #ffff;    box-shadow: 0px 0px 10px 0 #cfcfcf;}

.listing-inner li .dt{ position: absolute;left: 0; top: 0; padding: 5px 13px;  background: #00205ea8; border-radius: 0 0 10px 0;}

.listing-inner li .dt p{color: #fff;font-weight: 400; font-size: 10px;}

.listing-inner li .dt p i{margin-right: 5px;}

.listing-inner .status-detlais{display: flex; gap: 5px;}

.listing-inner .status-detlais{position: absolute;top: 8px;right: 8px; }

.listing-inner .status-detlais span{ padding: 4px 5px; background: unset; border-radius: 5px; color: #fff; width: 86px; text-align: center; font-weight: 600;font-size: 10px; }

.listing-inner .status-detlais span.pending{ color: blue; border: 1px solid blue;} 

.listing-inner .status-detlais span.success{ color: green; border: 1px solid green;}

.listing-inner .status-detlais span.faild{ color: red; border: 1px solid red;}

.listing-inner .status-detlais .status-quote-shared {color: #05ef3d;border-color: #05ef3d;padding: 3px 1px;}
.listing-inner .status-detlais .status-pending {color: #ffc612;border-color: #ffc612;padding: 3px 1px;}
.listing-inner .status-detlais .status-lead-lost {color: #f1061c;border-color: #f1061c;padding: 3px 1px;}
.listing-inner .status-detlais .status-link-sent {color: #6d1aab;border-color: #6d1aab;padding: 3px 1px;}
.listing-inner .status-detlais .status-entry-successful {color: #097cf3;border-color: #097cf3;padding: 3px 1px;}
.listing-inner ul li p{margin: 0 }

.listing-inner ul li p strong{display: block;    font-size: 14px;}

.listing-inner ul li p small{font-size: 12px;}

@keyframes slide-right {
    0% {
        opacity: 0;
        transform: translateX(100%);
    } 
    0% {
        opacity: 0.5;
    } 
    100% {
        opacity: 0.9;
        transform: translateX(0);
    }   
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.insurance-head{text-align: center;}

.insurance-head h6{font-weight: 700;}

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

.insurance-item h6{ font-family: "Poppins", serif; margin: 8px 0 0 0; font-weight: 700; color: #264271;font-size: 12px;}

.insurance-list{ display: flex;align-items: flex-end; justify-content: space-around; padding: 12px; border-radius: 15px;background: #e1cfbf;padding: 20px 12px;}

.insurance-list .insurance-item img{ width: 45px;}

.check-lead-status {padding: 10px 5px; border-radius: 8px; background: #a6a6a6; text-align: center;} 

.check-lead-status h6{ color: #264271; font-family: "Poppins", serif;  margin: 0; font-weight: 600; }

.insurance-lead-details {background-color: #00205e; padding: 10px 15px; border-radius: 6px;}

.insurance-lead-details h6{margin: 0 ; color: #fff; }
.gen-head {justify-content: space-between; align-items: center; background: #00205e; padding: 5px 20px; border-radius: 8px;}

.gen-head h6{margin: 0; color: #fff;    font-family: "Poppins", serif;}

.gen-head img{ width: 45px;}
.lead-generation{padding-bottom:70px;}
.lead-generation .form-row a{ width: 60px;flex: 0 0 60px; display: flex;align-items: center;justify-content: center;}

.lead-generation .form-row a i{ font-size: 25px;color: #00acea;}

.lead-generation .form-floating span{ font-size: 14px; margin-bottom: 5px; display: block; color: #00205e; font-weight: 600;}

.lead-generation .form-floating textarea{height: auto;}

.insurance__section .insurance__inner {
    background-color: white;
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #f2f2f2;
}
.insurance__section .insurance__inner .insurance__itemImg {
  background: #f1f1f1;
  border-radius: 8px;
  padding: 10px;
}
.insurance__section .insurance__inner .insurance__itemImg img {
  width: 60px;
  margin-bottom: 13px;
}
.insurance__section .insurance__inner h6 {
    font-size: var(--font-12);
    margin-bottom: 0;
    font-weight: var(--weight-400);
}
/*# sourceMappingURL=style.css.map */