@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500;700;900&display=swap");
/* font-family: 'Inter', sans-serif;
font-family: 'Poppins', sans-serif;
 */

:root {
  --interfont: "Inter", sans-serif;
  --poppinsfont: "Poppins", sans-serif;
  --rakkasfont: "Rakkas", cursive;
  --redcolor: #e30000;
  --yellowcolor: #ff7a00;
  --bluecolor: #001644;
}

.blog-detail-image{
  width: 100%;
  height: 400px;
  background: #ddd;
  object-position: center center;
  position: sticky;
  top: 100px;
}
.blog-detail-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.inner-box{
  box-shadow: 0px 0px 51px 0px rgb(0 0 0 / 17%);
  border-radius: 25px;
  padding: 25px;
}
.inner-box h4{
  font-size: 28px;
  font-weight: 600;
  color: #002654;
}
.inner-box p{
  font-size: 15px;
  font-weight: 500;
}
.inner-box h6{
  font-size: 17px;
  line-height: 1.5;
}
.job-box-btn span{
  font-size: 17px;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6rem;
  color: #676767;
  font-family: var(--poppinsfont);
}

html,
body {
  margin: 0px;
  padding: 0px;
  /*overflow-x: hidden;*/
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
.wrapper.mm-page {
  /* z-index: 0; */
  position: initial;
}

img {
  max-width: 100%;
}

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

span,
mark {
  display: inline-block;
}

a {
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

a:hover {
  color: var(--yellowcolor);
}

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

section {
  padding: 60px 0;
  position: relative;
}

.button,
button,
input[type="submit"] {
  background: #000000;
  border-radius: 4px;
  border: 0;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 40px;
  transition: 0.4s all ease-in-out;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  /* background: var(--yellowcolor); */
  color: #fff;
}

label {
  margin-bottom: 5px;
  display: inline-block;
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--poppinsfont);
  margin-bottom: 10px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

select {
  width: 100%;
  height: 50px;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #efefef url(../images/down_arrow.svg) no-repeat calc(100% - 20px)
    center / 18px;
}

input:not(input[type="checkbox"], input[type="radio"], input[type="submit"]) {
  width: 100%;
  height: 50px;
  border-radius: 3px;
  border: none;
  padding: 10px 15px;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
  position: relative;
}

/* checkbox  */

.checkbox {
  position: relative;
  margin-left: 20px;
  padding-left: 30px;
  font-size: 18px;
  color: #000;
}

.checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.checkbox input:checked ~ span::after {
  background-size: 15px;
}

.checkbox span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 2px solid #000;
  border-radius: 3px;
}

.checkbox span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background: url(../images/check.svg) no-repeat center center;
  background-size: 0;
  transition: 0.2s all ease-in-out;
}

/* checkbox  end*/

/* custom radio  */

.radioBtn {
  position: relative;
  margin-left: 20px;
  padding-left: 30px;
  font-size: 18px;
  color: #000;
}

.radioBtn input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.radioBtn input:checked ~ span::after {
  background: #000;
  transform: translateY(-50%) scale(1);
}

.radioBtn span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 2px solid #000;
  border-radius: 50%;
}

.radioBtn span::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  background-size: 0;
  transition: 0.2s all ease-in-out;
  border-radius: 50%;
}

/* custom radio end */

/* custom file upload  */

.fileupload {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.fileupload span {
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 5px 0 0 5px;
}

.fileupload mark {
  height: 100%;
  background: #ecebeb;
  padding: 10px 20px;
}

.fileupload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

/* custom file upload end */

.sitemain {
  /* padding-top: 112px; */
}

/* header */

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  transition: 00.5s ease-in-out;
  left: 0;
  background: #fff;
  padding: 10px 0px;
  transition: 00.5s ease-in-out;
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.15);
}

.navbar-nav > li {
  padding: 0 10px;
}

.navbar-nav > li > a {
  color: #000;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover {
  color: var(--skyblue);
}

/* sub menu*/

.sub_menu_items {
  position: relative;
}

.sub-menu {
  position: absolute;
  left: 0;
  top: 230%;
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  z-index: -5;
  transition: 0.4s all ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.sub-menu > li > a {
  display: block;
  color: #000;
  padding: 8px 0;
  line-height: 1;
  text-transform: capitalize;
}

.navbar-nav > li.sub_menu_items:hover .sub-menu {
  opacity: 1;
  top: 100%;
  z-index: 1;
  pointer-events: all;
}

.submenuarrow {
  font-size: 15px;
  cursor: pointer;
}

/* sub menu end*/

/* mobile menu  */

body.offcanvas-active {
  overflow: hidden;
}

.offcanvas-header {
  display: none;
}

.screen-darken {
  height: 100%;
  width: 0%;
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
  z-index: 10;
  transition: opacity 0.3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

.navbar-toggler {
  display: none;
}

.btm_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* header css */

.hdr_box ul {
  display: flex;
  align-items: center;
}

.hdr_box ul li a {
  display: block;
}

.hdr_box ul li:not(:last-child) {
  margin-right: 40px;
}

.hdr_box ul li span {
  color: #293248;
  text-align: left;

  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hdr_box ul li span a {
  color: #293248;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hdr_box ul li {
  position: relative;
}

.hdr_box ul li i {
  position: absolute;
  left: -28px;
  top: 0px;
  color: #abb0bc;
  font-size: 25px;
}

.hdr_box ul:first-child li a:hover {
  color: #e30000;
}

.post_btn {
  padding: 14px 9px;
  border-radius: 5px;
  background: var(--yellowcolor);
  width: 200px;
  display: inline-block;
  text-align: center;
  color: #fff !important;

  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.post_btn:hover {
  background: #293248;
  color: #fff !important;
}

.hdr_box ul:nth-child(2) {
  margin-left: 20px;
}

.hdr_box ul:nth-child(2) li:not(:last-child) {
  margin-right: 20px;
}

.hdr_box ul:nth-child(2) li a {
  color: #293248;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hdr_box ul:nth-child(2) li a:hover {
  color: var(--redcolor);
}

.site-header .logo {
  border-right: 1px solid #4b5f8c;
  padding-right: 26px;
}

/* banner css */

.banner_section figure {
  position: relative;
  z-index: 0;
}

.banner_section figure:after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
  background: rgba(0, 2, 20, 0.5);
}

.bnnr_form {
  width: 100%;
  margin-top: 28px;
}

.bnnr_form .bn_box {
  padding: 0px 5px;
}

.bnnr_form .bn_box:not(:last-child) {
  width: 255px;
}

.bnnr_form input[type="text"],
.bnnr_form input[type="tel"],
.bnnr_form input[type="email"],
.bnnr_form select {
  width: 100%;
  padding: 5px 15px 5px 40px;
  border: 0px;
  border-radius: 6px;
  height: 50px;
}

.bnnr_form select {
  background: #fff url(../images/down_arrow.svg) no-repeat calc(100% - 20px)
    center / 18px;
}

.bnnertxt {
  position: absolute;
  top: 61%;
  left: 0px;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}

.bnnr_form .bn_box:not(:last-child) {
  width: 27%;
}

.bnnr_form .bn_box:last-child {
  width: 19%;
}

.bnnr_form input[type="submit"] {
  width: 100%;
  background: var(--redcolor) url(../images/searchicon.png) no-repeat left 44px
    center / 20px;
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.bnnr_form input[type="submit"]:hover {
  background: var(--yellowcolor) url(../images/searchicon.png) no-repeat left
    50px center / 20px;
}

.bnnertxt h2 {
  color: #fff;
  text-align: center;

  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.bnnertxt p {
  color: #fff;
  text-align: center;

  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.bnnr_form .bn_box:nth-child(1) input[type="text"] {
  background: #fff url(../images/bnicon1.png) no-repeat left 15px center;
}

.bnnr_form .bn_box:nth-child(2) input[type="text"] {
  background: #fff url(../images/bnicon2.png) no-repeat left 15px center;
}

.bnnr_form .bn_box:nth-child(3) {
  position: relative;
}

.bnnr_form .bn_box:nth-child(3):before {
  position: absolute;
  left: 18px;
  top: 15px;
  width: 20px;
  height: 20px;
  background: url(../images/bnicon3.png) no-repeat left center / 16px;
  content: "";
  z-index: 1;
}

.banner_section figure img {
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

/* category css */
.category_section {
  padding: 40px 0px;
}

.catgory_list_area ul {
  display: flex;
  align-items: center;
}

.catgory_list_area ul li {
  flex: 1;
  padding: 0px 7px;
}

.catgory_list_area ul li .cat_box {
  border-radius: 5px;
  background: #d14706;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 10px;
}

.catgory_list_area ul li .cat_box p {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
}

.catgory_list_area ul li:nth-child(2) .cat_box {
  border-radius: 5px;
  background: #f99500;
}

.catgory_list_area ul li:nth-child(3) .cat_box {
  border-radius: 5px;
  background: #00519e;
}

.catgory_list_area ul li:nth-child(4) .cat_box {
  border-radius: 5px;
  background: #00b5ff;
}

.catgory_list_area ul li:nth-child(5) .cat_box {
  border-radius: 5px;
  background: #02852e;
}

.catgory_list_area ul li:nth-child(6) .cat_box {
  border-radius: 5px;
  background: #94bb00;
}

.catgory_list_area ul li:nth-child(7) .cat_box {
  border-radius: 5px;
  background: #008c95;
}

.catgory_list_area ul li:nth-child(8) .cat_box {
  border-radius: 5px;
  background: #005f68;
}

.more_caticon {
  color: #293248;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-align: center;
  margin-top: 15px;
}

.more_caticon:hover {
  text-decoration-line: underline;
}

.more_caticon img {
  margin-left: 10px;
}

section.category_section {
  background: #f6f7fa;
}

.catgory_list_area {
  margin-top: -68px;
}

.catgory_list_area ul li .cat_box {
  transition: all 0.5s ease-in-out;
}

.catgory_list_area ul li:hover .cat_box {
  transform: translateY(-10px);
}

/* tranding category css */
.catebox figure {
  width: 100px;
}

.catebox .text {
  width: calc(100% - 100px);
  padding-left: 15px;
}

.text_list{
  height: 80px;
  overflow-y: scroll;
}
.text_list::-webkit-scrollbar{
  display: none;
}

.catebox .text h5 {
  color: #293248;

  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}

.catebox .text p {
  color: #293248;
  margin-bottom: 2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
}

.catebox .text .more_detils {
  color: #000;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 11px;
  text-decoration-line: underline;
}

.catebox {
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 24, 75, 0.1);
  padding: 6px;
}

.title h3 {
  color: #293248;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.tranding_category_area h4 {
  color: #293248;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 18px;
}

.category_rightbx {
  border-radius: 5px;
  border: 1px solid #dee1e4;
}

.category_rightbx h4.caterogy_txt {
  padding: 16px 22px;
  border-bottom: 1px solid #dee1e4;
}

.exide_area_list {
  padding: 16px 22px;
}

.exide_area h5 {
  color: #293248;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.exide_area h6 {
  color: #293248;
  font-family: Poppins;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.verify_btn {
  border-radius: 3px;
  background: #02852e;
  min-width: 88px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 5px 15px 5px 31px;
  position: relative;
}

.verify_btn:before {
  background: #2ab95a url(../images/star-white.png) no-repeat center center /
    12px;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 25px;
  height: 27px;
}

.exide_area h5 {
  margin-bottom: 5px;
}

.exide_area {
  margin-bottom: 30px;
}

.exide_area:last-child {
  margin-bottom: 0px;
}

.category_rightbx h4.caterogy_txt {
  margin-bottom: 0px;
}

.exide_area {
  margin-bottom: 20px;
}

.title {
  margin-bottom: 20px;
}

.tranding_category_area:not(:last-child) {
  margin-bottom: 55px;
}

.catebox .text .more_detils:hover {
  color: var(--redcolor);
}

.catebox figure {
  overflow: hidden;
}

.catebox figure img {
  transition: all 0.5s ease-in-out;
}

.catebox:hover figure img {
  transform: scale(1.05);
}

.top_feature_provider p {
  color: #293248;

  font-family: Poppins;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.feature_box {
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #eff2f6;
  padding: 15px;
}

.feature_box h4 {
  color: #293248;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.feature_box .content {
  padding: 15px 0px;
}

.feature_box .content h6 {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.feature_box .content .verify_btn {
  background: #e30000;
  margin-right: 15px;
}

.feature_box .content .verify_btn:hover {
  background: var(--bluecolor);
}

.feature_box .content span {
  display: inline-block;
}

.feature_box .content div span {
  margin-right: 15px;
}

.feature_box .content .verify_btn:before {
  background: #ff6868 url(../images/f-icon.png) no-repeat center center / 12px;
}

.feature_slider {
  margin: 0px -15px;
}

.feature_slider .slick-slide {
  padding: 0px 15px;
}

.feature_slider .slick-dots li button {
  background: var(--bluecolor);
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.feature_slider .slick-dots li button:before {
  background: #fff;
  width: 10px;
  height: 10px;
  opacity: 1;
}

.feature_slider .slick-dots li.slick-active button {
  background: #fff;
  border: 1px solid var(--redcolor);
}

.feature_slider .slick-dots li {
  width: auto;
  height: auto;
}

.feature_slider .slick-dots li button:before {
  background: var(--bluecolor);
  width: 7px;
  height: 7px;
  content: "";
  opacity: 1;
  position: absolute;
  border-radius: 50%;
  top: 48%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
}

.feature_slider .slick-dots li.slick-active button:before {
  background: var(--redcolor);
  opacity: 1;
}

.feature_slider {
  padding-bottom: 42px;
}

.feature_slider .slick-dots {
  bottom: 0;
  text-align: left;
  left: 8px;
}

.top_feature_provider .more_caticon {
  position: absolute;
  right: 8px;
  bottom: 0px;
}

.feature_box .content .verify_btn:hover {
  color: #fff;
}

.get_list ul li {
  display: flex;
}

.get_list ul li span {
  width: 60px;
  height: 60px;
  background: #0094ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get_list ul li .text {
  padding-left: 20px;
}

.get_start_section {
  background: var(--bluecolor);
}

.get_start_section h3 {
  color: #ccdbf8;

  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.get_start_section p {
  color: #ccdbf8;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 25px;
}

.get_start_section h4 {
  color: #ccdbf8;
  margin-bottom: 4px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  display: flex;
  align-items: center;
}

.get_start_section h4 img {
  margin-left: 10px;
}

.get_list p {
  color: #ccdbf8;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.get_list ul {
  display: flex;
  align-items: center;
}

.get_list .text {
  width: calc(100% - 60px);
  padding-left: 15px;
}

.get_list ul li:not(:last-child) {
  margin-right: 15px;
}

.get_list {
  margin-top: 34px;
}

.get_start_section .get_pc {
  position: absolute;
  right: 0;
  bottom: -101px;
}

.indus_store .nav-tabs li .nav-link {
  color: #293248;
  font-family: var(--interfont);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid #dee1e4;
  padding: 16px 15px;
}

.indus_store .nav-tabs li .nav-link.active {
  border-radius: 5px;
  background: var(--yellowcolor);
  color: #fff;
}

.indus_store .nav-tabs li .nav-link:hover {
  background: var(--yellowcolor);
  color: #fff;
}

.indus_store .nav-tabs {
  border-bottom: 0px;
  margin-bottom: 20px;
}

.indus_store .nav-tabs li {
  margin: 0px 5px;
}

.indus_store .tab-content > .tab-pane {
  display: block;
  height: 0;
  overflow: hidden;
}

.indus_store .tab-content > .tab-pane.active {
  height: 100%;
}

.indus_store .feature_slider .slick-dots {
  left: 12px;
}

.show_btn {
  color: #293248;
  text-align: right;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid #293248;
  padding: 7px 10px;
  margin-left: auto;
}

.show_btn:hover {
  background: var(--bluecolor);
  color: #fff;
}

.feature_box .content h6 {
  margin-bottom: 16px;
}

.indus_store .more_caticon {
  position: absolute;
  right: 0px;
  bottom: 24px;
  z-index: 2;
}

.indus_store .more_caticon:hover {
  color: var(--yellowcolor);
}

.populer_section .populer_slider .slick-slide {
  padding: 0px 15px;
}

.populer_section .populer_slider {
  max-width: 95%;
  margin: 0 auto;
}

.populer_slider .slick-prev {
  background: url(../images/left_arr.png) no-repeat center center / 40px;
  width: 40px;
  height: 40px;
  left: -35px;
}

.populer_slider .slick-prev:before {
  display: none;
}

.populer_slider .slick-next {
  background: url(../images/right_arr.png) no-repeat center center / 40px;
  width: 40px;
  height: 40px;
  right: -50px;
}

.populer_slider .slick-next:before {
  display: none;
}

section.populer_section {
  background: #f5f7fa;
}

.anything_box {
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #fff;
}

.anything_box input[type="text"],
.anything_box input[type="tel"],
.anything_box input,
.anything_box textarea {
  height: 45px;
  background: #eff2f6;
  padding: 5px 15px;
  border: none;
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.anything_box textarea {
  width: 100%;
  background: #eff2f6;
  padding: 5px 15px;
  border: none;
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: auto;
}
.anything_box input[type="text"]::placeholder,
.anything_box input[type="tel"]::placeholder {
  color: #293248;
}

.anything_box .form_bx {
  margin-bottom: 15px;
}

.anthin_title {
  color: #293248;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #dee1e4;
  padding: 15px 21px;
  margin-bottom: 0px;
}

.anything_box .anthin_form_box {
  padding: 21px;
}

.anything_box .anthin_form_box input[type="submit"] {
  border-radius: 5px;
  background: #0094ff;
  width: 100%;
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.anything_box .anthin_form_box a {
  padding: 12px 10px;
  text-align: center;
}
.anything_box .anthin_form_box input[type="submit"]:hover,
.anything_box .anthin_form_box a:hover {
  background: var(--bluecolor);
}

.border_none {
  border-bottom: 0px;
}

.testi_title strong {
  color: #293248;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;

  display: block;
}

.testi_title {
  color: #293248;

  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
}

.coma_txt {
  padding-left: 15px;
}

.testmonial_slider p {
  color: #293248;
  font-family: Poppins;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
}

.test_content {
  padding: 15px 21px;
}

.blog_area .text h5 {
  color: #293248;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}

.blog_area .more_caticon {
  margin-top: 0px;
  display: flex;
  align-items: center;
}

.blog_area .text {
  padding-left: 15px;
  width: calc(100% - 94px);
}

.blog_area figure {
  width: 94px;

  margin-bottom: 0px;
}

.blog_area figure img {
  width: 100%;
}

.blog_area {
  margin-top: 15px;
}

.recente_blog_box {
  border-radius: 5px;
  border: 1px solid #dee1e4;
}

.recent_blog_content {
  padding: 0px 22px 20px;
}

.claim_txt ul li {
  display: inline-block;
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0px 10px;
  border-right: 1px solid #293248;
  line-height: 14px;
}

.claim_txt ul li a {
  color: #293248;
}

.claim_txt ul li a:hover {
  color: var(--yellowcolor);
}

.claim_txt ul li:last-child {
  border-right: 0px;
}

.claim_btn {
  border-radius: 5px;
  background: #0094ff;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 13px 15px;
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 15px;
}

.claim_btn:hover {
  background: var(--yellowcolor);
  color: #fff;
}

.claim_box {
  border-radius: 5px;
  background: #001644;
  padding: 23px;
}

.claim_box h4 {
  color: #fff;
  text-align: left;

  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.claim_box p {
  color: #fff;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.claim_txt ul {
  margin: 0px -10px;
}

.claim_section .title {
  margin-bottom: 6px;
}

/* footer css */

.footer {
  background: #293248;
}

.up_footer {
  padding: 60px 0px;
}

.up_footer h4 {
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.up_footer h5 {
  color: #fff;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.up_footer ul li address {
  color: #fff;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0px;
}

.up_footer ul li a {
  color: #fff;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.up_footer p {
  color: #fff;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.up_footer ul li:not(:last-child) {
  margin-bottom: 2px;
}

.up_footer .quick_links ul li:not(:last-child) {
  margin-bottom: 10px;
}

.site_list ul li {
  display: inline-block;
  padding: 0px 6px;
  border-right: 1px solid #fff;
  line-height: 10px;
}

.site_list ul li:last-child {
  border-right: 0px;
}

.up_footer ul li a:hover {
  color: var(--yellowcolor);
}

.incopyright {
  border-top: 1px solid #505b76;
  padding: 15px 0px;
  text-align: center;
}

.incopyright p {
  color: #fff;
  font-size: 13px;
}

.incopyright p a {
  color: var(--yellowcolor);
}

.incopyright p a:hover {
  color: #fff;
}

/* scoal media fixed css */
.social_icons_boxes {
  position: fixed;
  right: 0px;
  top: 33vh;
  background: #e8ebf0;
  padding: 8px;
  z-index: 9;
}
.social_icons_boxes ul li a img {
  transition: all 0.5s ease-in-out;
}
.social_icons_boxes ul li a:hover img {
  filter: grayscale(10);
}
.social_icons_boxes ul li:not(:last-child) {
  margin-bottom: 5px;
}

.pading-88 {
  padding-top: 82px;
}

a.post_btn.mobile {
  display: none;
}

.desktop {
  display: block;
}

/* innerpage */
.form_box {
  width: 329px;
}

.form_box input[type="text"] {
  border-radius: 5px 0px 0px 5px;
  border: 1px solid #dee1e4;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 24, 75, 0.1);
  height: 40px;

  color: #68707b;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.form_box .button,
.form_box button,
.form_box input[type="submit"] {
  height: 40px;
  border-radius: 0px 4px 4px 0px;
  background: #0094ff;
  width: 51px;
  padding: 5px 10px;
  min-width: 51px;
}

.form_box input[type="submit"] {
  background: #0094ff url(../images/search.png) no-repeat center center / 20px;
}

.form_box input[type="submit"]:hover {
  background: var(--bluecolor) url(../images/search.png) no-repeat center center /
    20px;
}

.site-header.innr_hder .logo {
  border-right: 0px;
  padding-right: 0px;
}

.site-header .form_box {
  width: 254px;
}

.breadcrumb-item.active {
  color: #293248;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.breadcrumb .breadcrumb-item a {
  color: #293248;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.breadcrumb-item {
  line-height: 15px;
}

.breadcrumb-item.active {
  color: #293248;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
}

.breadcamp_area {
  background: #f6f7fa;
  padding: 18px 0px !important;
}

.breadcrumb {
  margin-bottom: 0px;
}

.breadcrumb .breadcrumb-item a:hover {
  color: var(--redcolor);
}

.breadcrumb-item + .breadcrumb-item::before {
  margin-top: 3px;
}

.breadcrumb-item.active::before {
  margin-top: 0px;
  font-size: 15px;
}

.right_system ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.right_system ul li {
  margin-left: 15px;
}

/* listing page */
.location_tabs .nav.nav-tabs li button {
  color: #293248;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.location_tabs .nav.nav-tabs li button {
  color: #293248;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0px 8px;
  border: 0px;
  border-radius: 0px;
  border-right: 1px solid #293248;
  line-height: 12px;
}

.listing_places .form_box {
  width: 200px;
}

.location_tabs {
  margin-left: 38px;
}

.location_tabs .nav-tabs {
  border-bottom: 0px;
}

.location_tabs .nav.nav-tabs li button.active {
  font-weight: 600;
}

.shortetin_list select {
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #f5f7fa url(../images/down_arrow.svg) no-repeat calc(100% - 9px)
    center / 18px;
  color: #293248;
  font-family: var(--interfont);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 5px 15px;
  min-width: 101px;
}

.shortetin_list ul li .short_list_item {
  color: #293248;
  font-family: var(--interfont);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  padding: 15px 15px;
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #f5f7fa;
  align-items: center;
}

.shortetin_list ul {
  display: flex;
  align-items: center;
  margin: 0px -15px;
}

.shortetin_list ul li {
  margin-left: 15px;
}

.shortetin_list ul li img {
  margin-right: 5px;
}

.place_area h3 {
  color: #293248;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 30px;
  margin-bottom: 20px;
}

.listing_places .form_box input[type="submit"] {
  background: #0094ff url(../images/location.png) no-repeat center center / 20px;
}

.listing_places .form_box input[type="submit"]:hover {
  background: var(--bluecolor) url(../images/location.png) no-repeat center
    center / 20px;
}

.left_insti ul {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.left_insti ul li .years_txt {
  border-radius: 5px;
  background: #293248;
  color: #fff;

  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 5px 15px;
}

.left_insti ul li {
  color: #293248;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 10px;
}

.right_insti ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.right_insti ul li {
  margin-left: 15px;
}

.listitm_box {
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #eff2f6;
  padding: 15px;
}

.get_direct_link {
  color: #293248;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
}

.get_direct_link:hover {
  text-decoration-line: underline;
}

.direction_list span {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.institue_bx {
  margin: 10px 0px;
}

.listitm_box p {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  min-height: 50px;
}

.list_content {
  padding: 20px 0px;
}

.sho_ntm {
  border-radius: 5px;
  border: 1px solid #293248;
  background: #eff2f6;
  color: #293248;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 12px;

  text-align: center;
}

.sho_ntm i {
  color: #02852e;
  font-size: 16px;
  margin-right: 5px;
}

.contact_sup {
  border-radius: 5px;
  background: #1d9ffe;
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 12px;
  text-align: center;
}

.contact_sup:hover {
  color: #fff;
  background: var(--bluecolor);
}

.direction_list a {
  margin: 0px 15px;
  display: inline-block;
}

.bts_group {
  margin-top: 25px;
}

.listitm_box h5 {
  color: #293248;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.shortetin_list {
  margin-bottom: 30px;
}

.location_tabs .nav.nav-tabs li:last-child button {
  border-right: 0px;
}
.shortetin_list ul li:first-child select {
  width: 160px;
}
.requirement_area {
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #fff;
  padding: 20px;
}

.requirement_area h4 {
  color: #293248;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.requirement_area input[type="text"],
.requirement_area input[type="tel"],
.requirement_area input[type="email"],
.requirement_area input[type="address"],
.information_form_area input,
.information_form_area textarea {
  border-radius: 5px;
  background: #eff2f6;
  border: 0px;
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.requirement_area input::placeholder,
.requirement_area input[type="text"]::placeholder,
.requirement_area input[type="tel"]::placeholder,
.information_form_area input::placeholder,
.information_form_area textarea::placeholder,
.anything_box input::placeholder,
.anything_box textarea::placeholder {
  color: var(--bluecolor);
}

.requirement_area input[type="submit"],
.information_form_area input[type="submit"] {
  border-radius: 5px;
  background: #1d9ffe;
  width: 100%;
  padding: 12px 15px;
}
.information_form_area input[type="submit"] {
  width: auto;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.requirement_area input[type="submit"]:hover {
  background: var(--bluecolor);
}

.requirement_area {
  margin: 20px 0px;
}

.requirement_area .row {
  margin: 0px -10px;
}

.requirement_area .row .col {
  padding: 0px 10px;
}

.load_more_link {
  color: #293248;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  margin-top: 25px;
}

.load_more_link:hover {
  text-decoration-line: underline;
}

.related_cated_arrodian .accordion-button {
  box-shadow: none;
  color: #293248;
  padding: 6px 0px;
}

.related_cated_arrodian .accordion-button:not(.collapsed) {
  background: transparent;
}

.related_cated_arrodian .accordion-button::after {
  display: none;
}

.related_cated_arrodian .accordion-button:hover {
  background: transparent;
  color: #293248;
}

.related_cated_arrodian .accordion-item {
  border: 0px;
}

.list_cateside_box {
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 24, 75, 0.1);
}

.list_cateside_box h4 {
  color: #293248;

  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-bottom: 1px solid #dee1e4;
  padding: 18px 22px;
  margin-bottom: 0px;
}

.related_cated_arrodian {
  border-bottom: 1px solid #dee1e4;
  padding: 18px 22px;
}

.related_cated_arrodian .accordion-body {
  padding: 0px;
  padding-top: 2px;
}

.list_cateside_box ul li a {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.list_cateside_box ul li a:hover {
  color: var(--yellowcolor);
}

.list_cateside_box ul {
  margin-bottom: 15px;
}

.inside_catelist {
  padding: 18px 22px;
}

.list_cateside_box {
  margin-bottom: 20px;
}

.review_box p {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.review_box h5 i {
  color: #2ab95a;
  font-size: 18px;
  margin-right: 6px;
}

.review_box h5 {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.review_box h6 {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
}

.review_box h6 img {
  margin-left: 5px;
}

.review_box:not(:last-child) {
  margin-bottom: 30px;
}

.mobile_searchicon {
  display: none;
}

.small_slider .slick-slide {
  padding: 0px 2px;
}
.send_enqure_btn {
  border-radius: 5px;
  background: #ff7a00;
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  min-width: 140px;
  text-align: center;
  padding: 14px 15px;
}
.send_enqure_btn:hover {
  background: var(--bluecolor);
  color: #fff;
}
.enquery_bx h5 strong {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.enquery_bx h5 {
  color: #293248;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.enquery_bx {
  margin-top: 20px;
}
.detisla_list ul li {
  color: #293248;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detisla_list ul li:not(:last-child) {
  margin-bottom: 8px;
}
.detisla_list ul li span {
  width: 40%;
  font-weight: 500;
}
.rght_dtils .copy {
  position: relative;
  padding-right: 70px;
}
.rght_dtils {
  position: relative;
}
.share_icon {
  position: absolute;
  right: 15px;
  top: 0px;
}
.right_enqry {
  text-align: right;
}
.detils .sho_ntm {
  border-radius: 5px;
  border: 1px solid #293248;
  background: #fff;
  margin-right: 10px;
  padding: 10px 6px;
}
.detils .sho_ntm:last-child {
  margin-right: 0px;
}
.btn_grop.detils {
  display: flex;
  margin-top: 31px;
}
.rght_dtils p {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.institude_box {
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #eff2f6;
  padding: 17px 23px;
}
.institude_box h5.border_bootm {
  border-bottom: 1px solid #dee1e4;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.institude_box ul li {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.institude_box ul li:last-child {
  margin-bottom: 0px;
}
.institude_box ul li i {
  color: #e30000;
  font-size: 20px;
  margin-right: 8px;
}
.institude_box ul li h5 {
  color: #293248;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.institude_box ul li span {
  display: inline-block;
  margin-right: 15px;
}
.white_review_btn {
  color: #293248;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
a.white_review_btn i {
  font-size: 18px;
  color: #abb0bc;
  margin-right: 5px;
}
.listin_destil_boxarea {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 29px;
}
.detils .sho_ntm img {
  margin-right: 5px;
}
.detils_tabs_area .nav-tabs .nav-item.show .nav-link,
.detils_tabs_area .nav-tabs .nav-link.active {
  color: #0094ff;
  background-color: transparent;
  border-color: transparent;
  border-radius: 0px;
  border: 0px;
  background: #f5f7fa;
}
.detils_tabs_area .nav-tabs .nav-link {
  color: #293248;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #f5f7fa;
  margin-bottom: 0;
  border: 0px;
  padding: 11px 15px;
}

.detils_tabs_area {
  margin-top: 60px;
}
.detils_tabs_area .nav-tabs {
  border-bottom: 0px;
}
.detils_tabs_area .nav-tabs .nav-item:first-child .nav-link {
  border-radius: 5px 0px 0px 5px;
}
.detils_tabs_area .nav-tabs .nav-item:last-child .nav-link {
  border-radius: 0px 5px 5px 0px;
}

.detils_tabs_area .nav-tabs .nav-link:focus,
.detils_tabs_area .nav-tabs .nav-link:hover {
  border-color: transparent;
  isolation: isolate;
}
.detils_tabs_area {
  width: auto;
}
.detils_ocnt p {
  color: #293248;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.detils_ocnt ul li {
  color: #293248;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.detils_tab_cntent {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 24px 34px;
  margin-top: 24px;
}
.days_detils {
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #fff;
}
.days_detils h3 {
  font-weight: 500;
}
.days_detils ul li {
  color: #293248;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.days_detils ul li:not(:last-child) {
  margin-bottom: 5px;
}
.days_detils ul {
  padding: 10px 15px;
}
.days_detils ul li span {
  width: 96px;
}
.prodcut_detils_area h3 {
  border-radius: 5px 5px 0px 0px;
  background: #293248;
  color: #fff;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 34px;
}
.prodcut_detils_area .nav-tabs li .nav-link {
  color: #293248;
  font-family: var(--interfont);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid #dee1e4;
  padding: 16px 15px;
}
.prodcut_detils_area .nav-tabs li .nav-link.active {
  border-radius: 5px;
  background: var(--yellowcolor);
  color: #fff;
}
.prodcut_detils_area .nav-tabs li {
  margin: 0px 5px;
}
.prodcut_detils_area .nav-tabs {
  border-bottom: 0px;
  margin-bottom: 20px;
}
.prodcut_detils_area .tab-content > .tab-pane {
  display: block;
  height: 0;
  overflow: hidden;
}

.prodcut_detils_area .tab-content > .tab-pane.active {
  height: 100%;
  width: 23%;
}
.prodcut_detils_area .product_detils_tabs_area {
  border-radius: 5px;
  background: #fff;
  padding: 25px;
}

.product_detils_tabs_area .feature_slider .slick-dots {
  left: 11px;
}
.prodcut_detils_area {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
}
.requirement_area.detilsrequ h4 {
  font-size: 24px;
}
.review_area .nav-tabs .nav-item.show .nav-link,
.review_area .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #fff;
  border-color: 0;
  border-radius: 5px;
  background: #1d9ffe;
}
.review_area .nav-tabs .nav-link {
  color: #293248;

  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.review_area .nav-tabs {
  border-bottom: 0px;
}

.review_area .nav-tabs .nav-link:focus,
.review_area .nav-tabs .nav-link:hover {
  border-color: 0px !important;
  isolation: isolate;
}
.font_28 {
  color: #293248;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.review_area {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
  margin-top: 40px;
  min-height: 240px;
}
.review_area .nav-tabs .nav-link.active img {
  filter: brightness(100);
}
.review_bx h5 {
  display: flex;
  align-items: center;
  color: #293248;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.review_bx h5 span {
  color: #293248;
  display: inline-block;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 20px;
}
.review_bx h6 {
  color: #293248;

  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.review_text {
  margin-top: 20px;
  position: relative;
}
.review_bx p {
  color: #293248;

  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.review_bx {
  padding: 20px 0px;
  border-bottom: 1px solid #d9d9d9;
}
.review_bx:last-child {
  border-bottom: 0px;
}
.rating_box {
  position: absolute;
  right: 0px;
  top: -116px;
}
.similer_slider.slick-initialized.slick-slider {
  margin: 0px -15px;
}
.similer_slider .slick-slide {
  padding: 0px 15px;
}
.similer_slider .right_insti.w-50 {
  width: 34% !important;
}
.similer_slider .left_insti.w-50 {
  width: 66% !important;
}
.similer_slider .direction_list span {
  display: flex;
  align-items: center;
}
.similer_slider .contact_sup,
.similer_slider .sho_ntm {
  padding: 10px 8px;
  font-size: 14px;
}
.direction_list a.get_direct_link {
  display: flex;
  align-items: center;
}
.direction_list a.get_direct_link img {
  margin-left: 5px;
}

.faq_section .accordion-item {
  margin-bottom: 20px;
  border: 0px;
}
.faq_section .accordion-item .accordion-button {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  color: #293248;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.faq_section .accordion-item .accordion-body p {
  color: #293248;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.information_form_area input[type="text"],
.information_form_area input[type="email"],
.information_form_area input[type="tel"] {
  width: 100%;
  height: 41px;
  font-size: 14px;
}
.information_form_area .ftbxnw:not(:last-child) {
  margin-bottom: 10px;
}
.information_form_area textarea {
  height: 90px;
  border-radius: 3px;
  border: 1px solid #ccc;
  padding: 10px 15px;
  width: 100%;
  font-size: 14px;
}
.modal-header {
  border-bottom: 0px;
}
.modal-header h5 {
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  width: 100%;
  color: var(--yellowcolor);
  line-height: 32px;
  text-transform: uppercase;
  position: relative;
}

.modal-header .close_btn {
  padding: 0;
  margin: 0;
  background: var(--yellowcolor);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  opacity: 1;
  position: absolute;
  right: -17px;
  top: -16px;
}
.modal-header .close_btn img {
  width: 15px;
}
.information_form_area input[type="submit"] {
  margin: 0 auto;
  display: table;
}

.modal-header h5:after {
  content: "";
  background: var(--yellowcolor);
  width: 59px;
  height: 3px;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* sign in page start */

.log_in {
  height: 100%;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 2;
}
.site-main.log_in {
  padding: 0;
  height: 100vh;
}
.log_in_hldr {
  max-width: 900px;
  margin: 0 auto;
}
.log_in_img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #005f68 url(../images/log_in_bg.png) no-repeat center center /
    cover;
  flex-direction: column;
}
.log_in_img figure img {
  max-width: 300px;
}
.log_in_img h3 {
  color: #fff;
  margin-top: 50px;
  font-size: 28px;
}
.inner_lg_in {
  padding: 30px 50px;
  text-align: center;
  background: #fff;
}
.log_in_logo {
  display: block;
  margin: 0 0 15px 0;
}
.inner_lg_in h5 {
  font-size: 18px;
  color: #302d3a;
}
.log_in_frm {
  margin: 40px 0 0 0;
}
.log_in_frm h6 {
  font-size: 14px;
  line-height: 1.5;
  color: #3d3b47;
  margin-bottom: 8px;
}
.log_in_frm input {
  margin-bottom: 15px;
  border: 1px solid transparent !important;
  transition: all 0.5s ease-in-out;
  padding: 10px !important;
  font-size: 14px;
  border-radius: 5px !important;
  box-shadow: 0 2px 10px -3px rgb(0, 0, 0, 0.2);
  background: #fff;
}
.log_in_frm h6 {
  font-size: 14px;
  line-height: 1.5;
  color: #3d3b47;
  margin-bottom: 8px;
}
.log_in_frm input[type="submit"] {
  margin-top: 15px;
  border: none;
  background: #2666fa;
  color: #fff;
}
.inner_lg_in p {
  width: 100%;
  text-align: center;
  font-size: 18px;
  position: relative;
  color: #616161;
  margin: 40px 0;
}
.inner_lg_in p span {
  background: #fff;
  display: inline-block;
  z-index: 1;
  position: relative;
  padding: 0 5px;
}
.inner_lg_in p::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #bdbdbd;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.inner_lg_in p.sign_up {
  font-size: 12px;
  margin: 30px 0 0 0;
}
.log_in_frm .eye a {
  position: absolute;
  color: var(--deepblue);
  font-size: 12px;
  top: -30px;
  right: 0;
}
.log_in_frm .eye i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.google_sign_in {
  display: inline-block;
  background: #fff;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  width: 100%;
  box-shadow: 0 2px 10px -3px rgb(0, 0, 0, 0.3);
}
.google_sign_in img {
  padding: 10px;
  background: #fff;
  vertical-align: middle;
}
.google_sign_in span {
  vertical-align: middle;
  color: #616161;
}
.inner_lg_in p.sign_up {
  font-size: 12px;
  margin: 30px 0 0 0;
}
.inner_lg_in p.sign_up::before {
  display: none;
}
span.error {
  font-size: 12px;
  color: #f00;
  line-height: 1.1;
  margin-bottom: 15px;
}
.log_in_frm input:is(:hover, :focus) {
  box-shadow: 0 2px 10px -3px rgb(0, 0, 0, 0.2);
}
.log_in_frm input::placeholder {
  font-size: 12px;
  color: #ddd;
}
/* sign in page end */
.dtl_rvw {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  max-width: 466px;
  border-radius: 5px;
  border: 1px solid #dee1e4;
  background: #f5f7fa;
}
.dtl_rvw li a {
  color: #293248;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
  border: 0px;
  padding: 11px 15px;
}
.dtl_rvw li a:hover {
  color: var(--yellowcolor);
}
/* log in modal design start */
.log_in_modal .modal-body {
  padding: 0;
}
.log_in_modal .modal-dialog {
  max-width: 900px;
}
.log_in_modal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.log_in_modal .btn-close:hover {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
}
.prefix {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 10px;
}
input[type="tel"] {
  /* padding-left: 50px !important; */
}
/* log in modal desing end */
/* business listing page start */
.business_location {
  height: 250px;
}
.business_location iframe {
  height: 100%;
  width: 100%;
}
.business_listing_frm_hldr {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f5f7fa;
}
.business_listing_frm_hldr .row:not(:last-child) {
  margin-bottom: 15px;
}
.business_listing_frm_hldr h6 {
  font-size: 14px;
  color: #293248;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--poppinsfont);
}
.business_listing_frm_hldr input::placeholder,
.business_listing_frm_hldr textarea::placeholder {
  font-size: 12px;
  color: #cacaca;
}
.business_listing_frm_hldr input,
.business_listing_frm_hldr select,
.business_listing_frm_hldr textarea {
  font-size: 14px;
  color: #293248;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--poppinsfont);
  padding: 10px !important;
  height: auto !important;
  border: none !important;
}
.business_listing_frm_hldr .submit_btn {
  background: #001644;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #001644;
  transition: all 0.5s ease-in-out;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  text-align: center;
}
.business_listing_frm_hldr .submit_btn:hover {
  background: #fff;
  color: #001644;
}
.business_listing_frm_hldr input:is(:hover, :focus),
.business_listing_frm_hldr select:is(:hover, :focus),
.business_listing_frm_hldr textarea:is(:hover, :focus) {
  box-shadow: none;
}
.bsns_inr_wrp h4 {
  font-size: 18px;
  color: #293248;
  line-height: 1.5;
  font-weight: 400;
}
.action_hldr {
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: #f5f7fa;
}
.action_hldr ul li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #293248;
  display: block;
}
.action_hldr ul li {
  padding: 7px;
}
.action_hldr ul li:not(:last-child) {
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.action_hldr ul li:not(:first-child) {
  padding-top: 5px;
}
.action_hldr ul li.active,
.action_hldr ul li:hover {
  background: #ddd url(../images/right_arrow.svg) no-repeat right 10px center;
  background-size: 20px;
  border: none;
  border-radius: 4px;
}
.business_listing_frm_hldr .nav.nav-tabs {
  border: none;
  margin-bottom: 25px;
  gap: 10px;
}
.business_listing_frm_hldr .nav.nav-tabs .nav-link {
  font-size: 14px;
  color: #293248;
  font-weight: 400;
  border: 1px solid #293248;
  padding: 5px;
  /*pointer-events: none;*/
}
.business_listing_frm_hldr .nav.nav-tabs .nav-link.active {
  background: #293248;
  color: #fff;
}
.add_hldr {
  margin-top: 15px;
}
.add_hldr a {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}
.add,
.add:hover {
  color: #02852e;
}
.remove,
.remove:hover {
  color: rgb(224, 13, 13);
}
.product_listing_hldr {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.business_listing_frm_hldr .progress {
  margin-bottom: 25px;
}
.business_listing_frm_hldr .progress {
  height: 10px;
}
.business_listing_frm_hldr .progress .progress-bar {
  background: #293248;
}
/* 17/8/2023 */
.eye_hldr {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
.eye_hldr a i {
  color: #4d4d4d;
}
.review_hldr h6,
.indv_rvw_hldr h6 {
  font-size: 16px;
  line-height: 1.5;
  color: var(--bluecolor);
}
.review_hldr p,
.indv_rvw_hldr p {
  font-size: 15px;
  color: #000;
}
.review_hldr h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
  margin-right: 15px;
}
.star_hldr i {
  color: #f3b926;
}
.rating_hldr span {
  color: var(--bluecolor);
  font-size: 14px;
  line-height: 1.5;
  width: 10px;
}
.indv_rvw_hldr {
  padding: 15px;
  border: 1px solid #ddd;
  background: #f5f7fa;
  border-radius: 5px;
}
.cmnt_btn_hldr a {
  padding: 10px;
  font-size: 12px;
  line-height: 1;
  border: 1px solid #002736;
  color: #002736;
  border-radius: 15px;
}
.cmnt_btn_hldr a:hover {
  color: #fff;
  background: #002736;
}
.cmnt_btn_hldr a:not(:last-child) {
  margin-right: 10px;
}
.dtl_review_hldr .row:not(:last-child) {
  margin-bottom: 15px;
}
/* business listing page end */
/* quick info page start*/
.info_hldr .accordion-button {
  font-size: 15px;
  line-height: 1.5;
  background: var(--bluecolor);
  padding: 10px 15px;
  color: #f9fafc;
}
.info_hldr .accordion-button:is(:hover, :focus) {
  box-shadow: none;
  background: var(--bluecolor);
  color: #f9fafc;
}
.info_hldr .accordion-body {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  background: #e0e0e0;
}
.info_hldr .accordion .accordion-item {
  border: none;
}
.info_hldr .accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.info_hldr .accordion .accordion-item:not(:last-child) {
  margin-bottom: 15px;
}
.info_hldr .accordion .accordion-button:not(.collapsed)::after,
.info_hldr .accordion .accordion-button::after {
  filter: brightness(1) invert(1);
}
/* quick info page end*/
/* plan page start */
.plan {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: #f5f5f5;
}
.plan h3 {
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  color: var(--bluecolor);
}
.plan p,
.plan h6 {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}
.plan h6 span {
  color: #000;
  font-size: 25px;
  line-height: 1.5;
}
.buy_btn {
  color: #293248;
  text-align: right;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid #293248;
  padding: 7px 20px;
  text-align: center;
  width: 100%;
}
.buy_btn:hover {
  background: #293248;
  color: #fff;
}
.ftr_list {
  border-top: 1px solid #ddd;
  margin: 15px 0 0 0;
  padding: 15px 0 0 0;
}
.ftr_list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ftr_list li span:first-child {
  font-size: 15px;
  line-height: 1.5;
  color: var(--bluecolor);
  margin-right: 10px;
}
.ftr_list li span:last-child {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}
.ftr_list li:not(:last-child) {
  margin-bottom: 10px;
}
.plan.best_value {
  border: 1px solid var(--bluecolor);
  position: relative;
  background: #fff3ee;
}
.value_tag {
  position: absolute;
  top: 0;
  right: 10px;
  margin: 0;
  max-width: 34px;
}
.best_value img {
  width: 100%;
}
/* plan page end */
/* indusleads page start */
.lead_hldr table {
  border: 1px solid #ddd;
}
.lead_hldr table thead tr {
  background: #f5f7fa;
}
.lead_hldr table thead tr th {
  font-size: 15px;
  line-height: 1.5;
  color: var(--bluecolor);
  font-weight: 500;
}
.lead_hldr table tbody tr td {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
}
.show_phnno .modal-body,
.contact_supp .modal-body {
  padding: 0;
  position: relative;
  padding-top: 15px;
}
.show_phnno .modal-body .anything_box,
.contact_supp .modal-body .anything_box {
  border: none;
}
.show_phnno .modal-body .btn-close,
.contact_supp .modal-body .btn-close {
  position: absolute;
  top: 5px;
  right: 5px;
}
.show_phnno .modal-body .btn-close:is(:hover, :focus),
.contact_supp .modal-body .btn-close:is(:hover, :focus) {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  opacity: 1;
}
.job_inner_sec{
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px -2px rgb(0, 0, 0, 0.3);
}
.blog-dtl-hd{
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* induslead page end */
/* additional work 31-8-2023 */
/* 16-10-2023 */
.adv-banner{
  margin: 50px 0 0 0;
  width: 100%;
  height: 325px;
}
.adv-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frm-sec input:not(input[type="checkbox"], input[type="radio"], input[type="submit"]) {
  width: 100%;
  height: 50px;
  border-radius: 3px;
  border: 1px solid #d7d7dc;
  padding: 10px;
}
.frm-sec h3{

  font-weight: 300;
color: #000;
}
.frm-sec h6{
 font-weight: 300;
color: #000;
}
.frm-sec .form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #021b41;
  outline: 0;
  box-shadow: none;
}
/* hghg */
.banner-text a{
  background-color: #fff;
  padding: 10px 20px;
text-align: center;
color: grey;
transition: 0.3s;
border-radius: 5px;
margin-right: 10px;
color: #000;
}
.banner-text a:hover {
  background: #ff7a00;
  color:#fff;
}
.banner-text a:last-child{
  margin-right: 0;
}
.add-sec{
  padding-top: 30px;
}
.add-sec h2{
  color: #000;
  font-size:30px;
}
.add-sec .add-text{
  padding-top: 20px;
  border: 1px solid #000;
  margin: 50px;
  margin-top: 0;
}
.add-sec .add-text p{
  font-size: 15px;
  color: #000;
  text-align: center
}
.table_bnr {
  position: relative;
}
.table_bnr img{
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.banner_img {
position: absolute;
top: 50%;
left:0;
right: 0;
transform: translateY(-50%);
width: 100%;
}
.inner_table .table  tr td{
  padding: 14px 0;
  vertical-align: middle;
}
.left_insti ul li:last-child{
  width: 50%;
  min-height: 100px;
}
.inner_table .table tr th{ 
  vertical-align: middle;
  font-size: 14px;
  padding: 16px;
}
.listing_section .listitm_box p{
  min-height: 43px;
}
.bnr_part p{
  text-align: justify;
}
.requirement_area .select2-container--default .select2-selection--single , .select2-container .select2-container--default .select2-selection--single{
  width: 100%;
}
.frm-sec figure img{
  height: 100%;
  border: none;
  padding-top: 12px;
  background: #eff2f6;
  font-size: 14px;
}
.requirement_area .select2-container ,.ftbxnw .select2-container{
  height: 50px;
  background: #eff2f6;
  border-radius: 3px;
  position: relative;
}
.requirement_area  .selection , .product_service1 .selection{
  height: 50px;
  width: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
  top: 14px;
}
.blog_area figure{
  height: 120px;
}
.blog_area figure img{
  height: 100%;
  object-fit: cover;
}
.requirement_area .select2-container--default .select2-selection--single , .product_service1 .select2-container--default .select2-selection--single{
  width: 100%;
  border: none;
  top: 12px;
  position: relative;
  background: #eff2f6;
}

/* 7-12-2023 */
.tab-content.detail{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

/* responsive */

@media (max-width: 1600px) {
  .up_footer ul li a {
    font-size: 12px;
  }
}

@media (max-width: 1199px) {
  .hdr_box ul li:not(:last-child) {
    margin-right: 25px;
  }

  .hdr_box ul:nth-child(2) li:not(:last-child) {
    margin-right: 15px;
  }

  .hdr_box ul li span a {
    font-size: 13px;
  }

  .hdr_box ul li:not(:last-child) {
    margin-right: 32px;
  }

  .site-header .logo {
    border-right: 1px solid #4b5f8c;
    padding-right: 14px;
    width: 182px;
  }

  a.post_btn {
    width: 180px;
    font-size: 13px;
  }

  .pading-88 {
    padding-top: 78px;
  }

  .indus_store .more_caticon {
    right: 17px;
  }

  .top_feature_provider .more_caticon {
    right: 22px;
  }

  .catebox figure {
    width: 64px;
  }

  .catebox .text {
    width: calc(100% - 64px);
  }

  .populer_section .populer_slider {
    max-width: 90%;
  }

  .get_start_section .get_pc {
    width: 377px;
  }

  .get_start_section h4 {
    font-size: 14px;
  }
  .site-header .form_box {
    width: 195px;
  }
  .hdr_box ul:nth-child(2) {
    margin-left: 16px;
  }
  .location_tabs .nav.nav-tabs li button {
    margin: 4px 0px;
  }
  .institue_bx .left_insti.w-50 {
    width: 75% !important;
  }
  .sho_ntm,
  .contact_sup {
    font-size: 13px;
  }
  .institude_box {
    padding: 13px 17px;
  }
  .send_enqure_btn {
    min-width: 118px;
    padding: 12px 6px;
    font-size: 13px;
  }
  .detils .sho_ntm {
    padding: 10px 6px;
    font-size: 12px;
  }
  .institude_box h5.border_bootm {
    font-size: 16px;
  }
  .days_detils ul li {
    font-size: 12px;
  }
  .similer_slider .contact_sup,
  .similer_slider .sho_ntm {
    padding: 10px 8px;
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  /* mobile menu  */
  .offcanvas-header {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .offcanvas-header .btn-close {
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
  }

  .mobile-offcanvas {
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 440px;
    z-index: 1200;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    background: #fff;
    padding-top: 40px;
  }

  .mobile-offcanvas.show {
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-offcanvas .container,
  .mobile-offcanvas .container-fluid {
    display: block;
  }

  .navbar-nav > li > a {
    padding: 15px 0;
    line-height: 1;
    border-bottom: 1px solid #ece4e4;
    display: block;
  }

  .navbar-toggler {
    display: block;
    padding: 10px;
    background: #000;
    transition: 0.4s all ease-in-out;
    line-height: 0;
  }

  .navbar-toggler img {
    filter: brightness(100) invert();
  }

  /* mobile menu end */
  .hdr_box ul:nth-child(2) li a {
    font-size: 0;
  }

  a.post_btn {
    width: 115px;
    font-size: 13px;
  }

  .hdr_box ul li:not(:last-child) {
    margin-right: 40px;
  }

  a.post_btn {
    padding: 6px 9px;
  }

  .bnnr_form input[type="submit"] {
    background: var(--redcolor) url(../images/searchicon.png) no-repeat left
      13px center / 20px;
  }

  .bnnertxt h2 {
    font-size: 28px;
  }

  .catgory_list_area ul li {
    flex: auto;
    padding: 0px 7px;
    width: 30%;
    margin-bottom: 10px;
  }

  .catgory_list_area ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .bnnr_form .bn_box input[type="text"],
  .bnnr_form select {
    font-size: 13px;
  }

  .bnnr_form .bn_box:nth-child(2) input[type="text"] {
    background: #fff url(../images/bnicon2.png) no-repeat left 10px center;
  }

  .category_rightbx {
    margin-top: 25px;
  }

  .catebox {
    flex-wrap: wrap;
  }

  .catebox .text {
    width: 100%;
    padding-left: 0;
    padding-top: 15px;
  }

  .catebox figure {
    width: 100%;
  }

  .anthin_title {
    font-size: 16px;
  }

  section {
    padding: 50px 0;
  }

  .claim_box h4 {
    font-size: 22px;
    line-height: 26px;
  }

  .get_start_section .get_pc {
    width: 322px;
  }

  .catgory_list_area {
    margin-top: 0;
  }

  .exide_area_list {
    display: flex;
    flex-wrap: wrap;
  }

  .exide_area_list .exide_area {
    width: 46%;
  }
  .right_system a.post_btn {
    width: 220px;
    font-size: 13px;
  }
  .hdr_box ul li span a {
    font-size: 12px;
  }
  .hdr_box ul li i {
    left: -19px;
    font-size: 19px;
  }
  .place_area h3 {
    font-size: 25px;
  }
  .institude_box {
    margin-top: 20px;
  }
  .detils_tabs_area .nav-tabs .nav-link {
    font-size: 16px;
  }
  .days_detils {
    margin-top: 25px;
  }
  .prodcut_detils_area h3 {
    font-size: 23px;
  }
  .days_detils ul li {
    font-size: 14px;
  }
  .rating_box {
    width: 121px;
  }
  .review_area .nav-tabs .nav-link {
    font-size: 12px;
  }
  .font_28 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .log_in_img {
    display: none;
  }
  .business_listing_frm_hldr {
    padding: 25px;
  }
  .action_hldr {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .bnnr_form .bn_box:not(:last-child) {
    width: 50%;
  }

  .bnnr_form {
    flex-wrap: wrap;
  }

  .bnnr_form .bn_box {
    margin-bottom: 15px;
  }

  .bnnr_form .bn_box:last-child {
    width: 50%;
  }

  .hdr_box.d-flex.align-items-center {
    justify-content: center;
    width: 100%;
  }

  .bnnertxt h2 {
    font-size: 23px;
  }

  .bnnertxt {
    top: 67%;
  }

  .btm_menu {
    flex-wrap: wrap;
  }

  .title {
    text-align: center;
  }

  .tranding_category_area h4 {
    font-size: 17px;
    text-align: center;
  }

  .more_caticon {
    margin: 15px auto;
    display: table;
  }

  .top_feature_provider .more_caticon {
    bottom: -23px;
  }

  .get_start_section .get_pc {
    bottom: -40px;
    left: 0;
    margin: 0 auto;
    position: relative;
  }

  .indus_store .more_caticon {
    bottom: 9px;
  }

  section {
    padding: 40px 0;
  }

  .claim_txt {
    margin-bottom: 25px;
  }

  .anything_box .anthin_form_box input[type="submit"],
  .claim_btn {
    width: auto;
  }

  .up_footer {
    padding: 40px 0px;
  }

  .up_footer .ft_bx {
    margin-bottom: 15px;
  }

  .post_btn {
    position: relative;

    width: 180px;
  }

  a.post_btn {
    padding: 6px 9px;
    width: 179px;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  a.post_btn.desktop {
    display: none;
  }

  .site-header .logo {
    width: 100%;
    border-right: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .exide_area_list {
    display: flex;
    flex-wrap: wrap;
  }

  .exide_area_list .exide_area {
    width: 50%;
  }

  .more_caticon {
    margin: 4px auto;
  }

  .top_feature_provider .more_caticon {
    bottom: -10px;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }

  .get_list ul {
    flex-wrap: wrap;
  }

  .get_list ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .indus_store .nav-tabs {
    justify-content: center;
  }

  .indus_store .nav-tabs li {
    margin-bottom: 5px;
  }

  .indus_store .nav-tabs li .nav-link {
    padding: 8px 15px;
  }

  .indus_store .more_caticon {
    bottom: -5px;
  }

  .up_footer .ft_bx:last-child {
    margin-bottom: 0px;
  }

  .get_start_section .get_pc {
    bottom: auto;
    margin-top: 15px;
  }

  .claim_section {
    padding-top: 0px;
  }

  .bnnertxt h2 {
    font-size: 21px;
    margin-bottom: 9px;
    line-height: 30px;
  }

  .bnnr_form .bn_box:not(:last-child) {
    width: 100%;
  }

  .bnnertxt {
    position: static;
    transform: inherit;
    background: var(--yellowcolor);
    padding: 15px 0px;
  }

  .bnnr_form .bn_box:nth-child(1) input[type="text"],
  .bnnr_form .bn_box:nth-child(2) input[type="text"] {
    background: #ebebeb url(../images/bnicon1.png) no-repeat left 15px center;
  }

  .bnnr_form select {
    background: #ebebeb url(../images/down_arrow.svg) no-repeat
      calc(100% - 20px) center / 18px;
  }

  .bnnr_form .bn_box:last-child {
    width: 100%;
  }

  .bnnr_form input[type="submit"] {
    margin: 0 auto;
    display: table;
    width: auto;
  }

  .tranding_category_area .row {
    justify-content: center;
  }

  .more_caticon {
    margin: 12px auto;
  }

  .exide_area_list .exide_area {
    width: 46%;
  }

  .exide_area_list {
    justify-content: space-between;
  }

  .get_start_section h3 {
    font-size: 26px;
  }

  a.post_btn.mobile {
    display: block;
  }
  header.site-header.innr_hder a.post_btn.mobile {
    display: none;
  }
  .site-header .form_box {
    width: 243px;
  }
  .site-header .form_box {
    width: 243px;
    position: absolute;
    top: 45px;
    right: 15px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 3;
  }
  .mobile_searchicon {
    display: block;
  }
  .form_box.d-flex.intro {
    opacity: 1;
    z-index: 3;
  }
  a.mobile_searchicon {
    position: absolute;
    top: 12px;
    right: 15px;
    z-index: 3;
  }
  .pading-88 {
    padding-top: 120px;
  }
  .right_system ul {
    justify-content: center;
    margin-top: 15px;
  }
  .listing_places {
    flex-wrap: wrap;
  }
  .location_tabs {
    margin-left: 0px;
    justify-content: center;
    margin-top: 15px;
  }
  .listing_places .form_box {
    width: 100%;
  }
  .listing_places form {
    width: 100%;
  }
  .shortetin_list ul {
    flex-wrap: wrap;
  }
  .shortetin_list ul li {
    width: 50%;
  }
  .shortetin_list ul li {
    width: 50%;
    margin: 10px 0px;
    padding: 0px 10px;
  }
  .place_area h3 {
    font-size: 23px;
  }
  .bts_group .col-md-6:not(:last-child) {
    margin-bottom: 10px;
  }
  .big_slider figure img,
  .small_slider figure img {
    width: 100%;
  }
  .rght_dtils {
    padding-top: 30px;
  }
  .institude_box h5.border_bootm {
    font-size: 20px;
  }
  .listin_detilsarea .more_caticon {
    margin: 12px 0px;
  }
  .listin_detilsarea .institude_box br {
    display: none;
  }
  .listin_detilsarea .institude_box .white_review_btn {
    display: block;
  }
  .listin_detilsarea .institude_box .white_review_btn {
    text-align: left;
  }
  .listin_detilsarea .detils_tab_cntent {
    padding: 18px 25px;
  }
  .institue_bx .left_insti.w-50 {
    width: 100% !important;
  }
  .similer_slider .right_insti.w-50 {
    width: 100% !important;
  }
  .similer_slider .institue_bx {
    flex-wrap: wrap;
  }
  .similer_slider .direction_list {
    flex-wrap: wrap;
  }
  .similer_slider .direction_list a.get_direct_link {
    margin-left: 0px;
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 5px;
  }

  .rating_box {
    top: 0;
    position: relative;
    width: 170px;
  }
  .right_enqry {
    text-align: left;
    padding-top: 14px;
  }
  .prodcut_detils_area .nav-tabs li {
    margin-bottom: 15px;
  }
  .prodcut_detils_area .nav-tabs {
    justify-content: center;
  }
  .share_icon {
    position: absolute;
    right: 18px;
    top: 26px;
  }
  .modal-header .close_btn {
    right: -8px;
    top: -6px;
  }
  .dtl_rvw li {
    width: 100%;
  }
  .business_listing_frm_hldr .row > div:not(:last-child) {
    margin-bottom: 8px;
  }
  .business_listing_frm_hldr .row:not(:last-child) {
    margin-bottom: 10px;
  }
  .business_listing_frm_hldr .nav.nav-tabs .nav-item {
    width: 48%;
  }
  .business_listing_frm_hldr .nav.nav-tabs .nav-item button {
    width: 100%;
  }
  .review_hldr .row > div:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (max-width: 479px) {
  .hdr_box ul li:not(:last-child) {
    margin-right: 25px;
  }

  .hdr_box ul:nth-child(2) li:not(:last-child) {
    margin-right: 7px;
  }

  .hdr_box ul:nth-child(2) li img {
    width: 16px;
  }

  .hdr_box.d-flex.align-items-center {
    justify-content: center;
  }

  .hdr_box ul {
    padding-left: 25px;
  }

  .hdr_box ul {
    padding-left: 5px;
  }

  .hdr_box ul li i {
    font-size: 17px;
    left: -20px;
  }

  a.post_btn {
    width: 119px;
    line-height: 16px;
  }

  .site-header .logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-right: 0px;
  }

  .hdr_box ul:nth-child(2) {
    margin-left: 0px;
  }

  .site-header .logo a {
    width: 150px;
  }

  .title h3 {
    font-size: 26px;
  }

  .banner_section figure img {
    min-height: 170px;
  }

  .catgory_list_area ul li {
    width: 50%;
  }

  .populer_slider .slick-prev {
    background: url(../images/left_arr.png) no-repeat center center / 22px;
    width: 22px;
    height: 22px;
    left: -18px;
  }

  .populer_slider .slick-next {
    background: url(../images/right_arr.png) no-repeat center center / 22px;
    width: 22px;
    height: 22px;
    right: -18px;
  }

  .indus_store .more_caticon {
    bottom: -15px;
  }
  .site-header .form_box {
    top: 42px;
    width: 258px;
    z-index: -1;
  }
  .institue_bx .left_insti.w-50 {
    width: 100% !important;
  }
  .review_area {
    padding: 18px;
  }
  .btn_grop.detils {
    flex-wrap: wrap;
  }
  .detils .sho_ntm {
    margin-right: 0px;
  }
  .detils .sho_ntm:not(:last-child) {
    margin-bottom: 5px;
  }
  .claim_btn {
    padding: 9px 13px;
  }
  .detils_tabs_area .nav-tabs .nav-link {
    font-size: 15px;
  }

  .detils_tabs_area .nav-tabs {
    justify-content: center;
  }
  .requirement_area.detilsrequ h4 {
    font-size: 20px;
  }
  .font_28 {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .rght_dtils {
    padding-top: 12px;
  }
  .rght_dtils .copy {
    padding-right: 61px;
  }
  .populer_section .populer_slider {
    max-width: 80% !important;
  }
}
