* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --first-color: #231f20;
  --second-color: #f5821f;
  --third-color: #fff200;
}

:root {
  font-size: 0.6rem;
}

body {
  font-family: "Cabin", sans-serif;
}

.container {
  max-width: 1200px;
}

.container-fluid {
  padding: 0 30px;
}

.section-padding {
  padding: 40px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: 'Poppins', sans-serif; */
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
}

p {
  color: rgba(0, 0, 0, 0.8);
  font-family: "Poppins", sans-serif;
}

a,
button {
  display: inline-block;
  text-decoration: none;
  font-family: "Cabin", sans-serif;
  transition: 0.2s ease-in;
}

i {
  display: inline-block;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

label,
input {
  font-family: "Cabin", sans-serif;
}

/* header start */

header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

header .container-fluid {
  padding: 0 50px;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-radius: 5px;
}

.header-flex .logo-box img {
  width: 100px;
}

.header-flex .nav-links {
  display: flex;
  gap: 25px;
}

.header-flex .nav-links > li > a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 15px 0;
}

.header-flex .nav-links > li > a > i {
  font-size: 12px;
}

.h-con i {
  margin-right: 5px;
  font-size: 16px !important;
}

.has-drop:hover .mega-drop {
  display: block;
  visibility: visible;
  opacity: 1;
}

.mega-drop {
  position: fixed;
  top: 90px;
  left: 30%;
  background-color: #fff;
  border-radius: 10px;
  width: 65vw;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in;
}

.mega-drop .title {
  background-color: #05478b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 14px 20px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.mega-drop .title h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1px;
}

.mega-drop .title p {
  color: rgba(256, 256, 256, 0.8);
  font-size: 15px;
  margin-bottom: 0;
  width: 70%;
}

.mega-drop .drop-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  max-height: 345px;
  overflow-y: scroll;
}
.mega-drop .drop-cat {
  width: 24%;
  border: 1px solid rgba(3, 70, 140, 0.1);
  padding: 20px 12px;
  text-align: center;
}

.mega-drop .drop-cat:hover {
  background-color: #f5f5f5;
}

.mega-drop .drop-cat {
  display: block;
  color: #222;
}

.mega-drop .drop-cat img {
  width: 100px;
  margin-bottom: 5px;
}

.mega-drop .drop-cat h3 {
  font-size: 16px;
}

#style-4::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-4::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

#style-4::-webkit-scrollbar-thumb {
  background-color: #03468c;
  border: 2px solid #03468c;
}

/* Sticky start */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.logo2 {
  display: none;
}

header.sticky .header-flex {
  margin-top: 0;
}

header.sticky {
  background-color: #fff;
}

header.sticky .logo2 {
  display: block;
}

header.sticky .logo1 {
  display: none;
}

header.sticky .header-flex .nav-links > li > a {
  color: #111;
  padding: 26px 0;
  font-size: 18px;
}

header.sticky .mega-drop {
  top: 80px;
}

header.sticky .h-con {
  display: none;
}

header.sticky .header-flex .nav-links {
  gap: 40px;
}

/* mobile menu */

.mob-bar {
  display: none;
}

.mob-bar a {
  color: #fff;
  font-size: 30px;
}

header.sticky .mob-bar a {
  color: #000;
}

/* offcanva */

/* mobile menu css  */
.offcanvas {
  padding: 0;
  margin: 0;
}

.offcanvas-header {
  border-bottom: 1px solid lightgray;
  background-color: #ffffff;
  padding: 10px 20px !important;
  margin: 0;
}

.offcanvas-header {
  border-bottom: 2px solid var(--primary-color);
  background-color: #ffffff;
  /* padding: 5px 15px 5px 10px; */
  margin: 0;
  border-top: 2px solid #fff;
}

.offcanvas-header .offcanvas-title img {
  width: 70px;
}

.offcanvas-header button {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  padding: 0px;
  font-size: 18px;
  color: #111;
}

.offcanvas-header span {
  background-color: var(--primary-color) !important;
  border: none !important;
  outline: none !important;
  color: #fff !important;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 100px !important;
  font-size: 15px;
}

.offcanvas-body {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  padding: 0;
  margin: 0;
  background-color: #03468c;
}

.mobile_navbar .main_ul {
  padding: 0;
  margin: 0;
}

.mobile_navbar .main_ul > li {
  list-style: none;
  border-bottom: 1px solid rgba(256, 256, 256, 0.1);
  padding: 10px 20px 10px 20px;
  text-transform: uppercase;
}

.mobile_navbar .main_ul > li > a {
  text-transform: capitalize;

  font-size: 14px !important;
  font-weight: 400;
}

.mobile_navbar .main_ul > li > a > span {
  float: right;
  padding: 7px 15px 7px 25px;
  font-size: 16px;
  cursor: pointer;
}

.mobile_navbar .main_ul > li > span {
  float: right;
  padding: 7px 15px 7px 25px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
}

.profile_card_body {
  padding: 0;
  margin: 0;
  border: none !important;
  display: block !important;
}

.profile_card_body > .profile_ul {
  padding: 0;
  margin: 0;
  background-color: var(--primary-color);
}

.profile_card_body > .profile_ul > li {
  list-style: none;
  border-bottom: 1px solid lightgrey;
  padding: 7px 15px 7px 25px;
  text-transform: capitalize;
}

.profile_card_body > .profile_ul > li > a {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.profile_card_body .profile_ul > li > span {
  float: right;
  padding: 7px 15px 7px 25px;
  font-size: 14px;
  color: #fff !important;
  cursor: pointer;
}

.profile_card_body .profile_ul h2 {
  font-size: 16px;
  text-transform: capitalize;
  border-bottom: 1px dashed var(--gray-color);
  padding: 5px 10px !important;
  font-weight: 600;
}

.profile_card_body .profile_ul h2 a {
  color: var(--white-color);
}

.profile_card_body .profile_ul h2 a img {
  width: 40px;
  filter: brightness(0) invert(1);
}

.mobile_navbar .main_ul > li > a {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  white-space: normal;
}

.prodct_submenu_cardbody {
  padding: 0;
  margin: 0;
  border: none !important;
}

.prodct_submenu_cardbody > .product_submenu_ul {
  padding: 0;
  margin: 0;
  background-color: var(--secondry-color);
}

.prodct_submenu_cardbody > .product_submenu_ul > li {
  list-style: none;
  border-bottom: 1px solid lightgrey;
  padding: 7px 15px 7px 25px;
  text-transform: capitalize;
}

.prodct_submenu_cardbody > .product_submenu_ul > li > a {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

/*  */

/*  */

.offcanvas_search_input_div {
  padding: 10px;
}

.offcanvas_search_input_div .input-group ::placeholder {
  font-size: 14px;
  font-weight: 400;
}

.offcanvas_search_input_div .input-group input {
  margin-bottom: 0px;
  box-shadow: none !important;
  border-radius: 0px !important;
  outline: none !important;
  padding: 10px 0px 10px 10px;
}

.offcanvas_search_input_div .input-group-text {
  margin-bottom: 0px;
  box-shadow: none !important;
  border-radius: 0px !important;
  outline: none !important;
  background-color: transparent !important;
  padding-top: 13px;
  color: var(--primary-color);
}

.offcanvas_search_input_div .input-group span {
  cursor: pointer;
}

.offcanvas_conatct_div {
  padding: 7px 15px 7px 25px;
}

.offcanvas_conatct_div p {
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: var(--black-color);
}

.followus_div b {
  color: var(--secondry-color);
  text-transform: capitalize;
}

.followus_div > li {
  display: inline-block;
}

.followus_div > li > a {
  margin: 0px 1px;
}

.followus_div > li:nth-child(1) > a {
  color: var(--primary-color);
  margin: 0px 10px 0px 0px;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 100px;
  font-size: 20px;
  cursor: default;
  font-weight: 500;
}

.followus_div > li:nth-child(2) > a {
  background-color: #3b5998;
  width: 30px;
  line-height: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.followus_div > li:nth-child(3) > a {
  background-color: #962fbf;

  width: 30px;
  line-height: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.followus_div > li:nth-child(4) > a {
  background-color: #c4302b;

  width: 30px;
  line-height: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.offcanvas_conatct_div b {
  color: var(--secondry-color);
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 700;
}

.offcanvas_conatct_div p a {
  display: block;
  color: rgb(51, 50, 50);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.offcanvas_conatct_div p strong {
  font-size: 14px;
  color: gray;
}

.offcanvas_ti h3 {
  font-size: 20px;
  background-color: #212121;
  padding: 0px 15px 0px 25px;
  color: #fff;
  text-transform: capitalize;
}

.poppup_searchbar {
  text-align: center !important;
  margin-top: 30%;
}

.poppup_searchbar .input-group ::placeholder {
  font-size: 15px;
  font-weight: 500;
}

.poppup_searchbar .input-group input[type="text"] {
  font-size: 15px;
}

.poppup_searchbar .input-group input {
  margin-bottom: 0px;
  box-shadow: none !important;
  border-radius: 0px !important;
  outline: none !important;
  padding: 10px 15px 10px 10px;
  border-top-left-radius: 100px !important;
  border-bottom-left-radius: 100px !important;
}

.poppup_searchbar .input-group-text {
  margin-bottom: 0px;
  box-shadow: none !important;
  border-radius: 0px !important;
  outline: none !important;
  background-color: transparent !important;
  padding-top: 10px !important;
  color: var(--black-color2);
  border-top-right-radius: 100px !important;
  border-bottom-right-radius: 100px !important;
  font-size: 20px;
  font-weight: 600;
}

.chattle-right_side_top {
  text-align: right;
}

/*  */

.offcanvas_scroll {
  height: 440px;
  overflow-y: auto;
}

/* width */
.offcanvas_scroll::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.offcanvas_scroll:hover::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.offcanvas_scroll:hover::-webkit-scrollbar-thumb {
  background: #f7f7f7;
}

/* Handle on hover */
.offcanvas_scroll:hover::-webkit-scrollbar-thumb:hover {
  background: #f7f7f7;
}

/*  */

.sub_menu_scroll {
  height: 440px;
  overflow-y: auto;
}

/* width */
.sub_menu_scroll::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.sub_menu_scroll:hover::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.sub_menu_scroll:hover::-webkit-scrollbar-thumb {
  background: #685c5c;
}

/* Handle on hover */
.sub_menu_scroll:hover::-webkit-scrollbar-thumb:hover {
  background: #685c5c;
}

.slider_section_phone {
  display: none;
}
/* Sticky end */

.off-contact {
  padding: 20px 20px 0;
}

.off-add {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.off-add i {
  font-size: 18px;
  color: #fff;
}

.off-add h3 {
  font-size: 16px;
  color: #fff;
}

.off-add p,
.off-add p a {
  color: rgba(256, 256, 256, 0.7);
  font-size: 16px;
}

.footer-social.off {
  margin-left: 20px !important;
}

.footer-social.off a {
  border-radius: 0;
}

.footer-social.off h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

/* header end */

/* Banner start */

.banner {
  overflow-x: hidden;
  position: relative;
  border: 10px solid #05b9ed;
}

.banner img {
  height: 97vh;
  width: 100vw;
  object-fit: cover;
}

.banner .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner .overlay h1 {
  width: 80%;
  font-size: 50px;
  color: #fff;
  margin: auto;
  line-height: 1.1;
}

.banner .overlay h1 span {
  color: #05b9ed;
}

.banner .overlay a {
  display: inline-block;
  background-color: #05b9ed;
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
  border-radius: 3px;
}

.banner .overlay a:hover {
  background-color: #fff;
  color: #05b9ed;
}

.banner .overlay img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .banner img {
    height: 80vh;
    width: 100vw;
    object-fit: cover;
  }

  .banner .overlay img {
    width: 70px;
    margin-bottom: 15px;
  }
  .banner .overlay h1 {
    font-size: 35px;
  }

  .banner .overlay a {
    font-size: 14px;
  }
}

/* Banner End */

/* footer  */

.footer {
  background-color: #03468c;
  padding: 60px 0 0;
  padding-top: 385px;
  position: relative;
}

.footer-content,
.footer-link,
.footer-contact,
.map {
  margin-bottom: 50px;
}

.f-img-1 {
  position: absolute;
  bottom: 40px;
  right: 20px;
}

.f-img-1 img {
  width: 250px;
}

.f-img-2 {
  position: absolute;
  top: 10px;
  left: 20px;
}

.f-img-2 img {
  width: 180px;
}

.f-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

.f-logo P {
  color: rgba(256, 256, 256, 0.9);
  font-size: 14px !important;
  letter-spacing: 1px;
}

.footer-content {
  margin-top: 15px;
}

.footer-title {
  color: #fff;
}

.footer-link {
  margin-bottom: 30px;
}

.footer-link a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(256, 256, 256, 0.1);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-link a:hover {
  color: #fff;
  transform: scale(0.95);
}

.contact-flex {
  margin-bottom: 20px;
}

.footer-contact h2,
.footer-link h2,
.map h2 {
  color: #fff;
  font-size: 21px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.footer-contact p {
  display: flex;
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(256, 256, 256, 0.8);
  font-weight: 500;
  margin-bottom: 2px;
}

.footer-contact p strong {
  margin-right: 10px;
  margin-bottom: 2px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-contact p a {
  font-size: 16px;
  color: rgba(256, 256, 256, 0.8);
  font-weight: 500;
}

.footer-contact p a:hover {
  color: #fff;
}

.footer-contact p i {
  font-size: 14px;
  margin-right: 5px;
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
}

.footer-social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 29px;
  text-align: center;
  background-color: #fff;
  border: 2px solid rgba(256, 256, 256, 0.2);
  color: #03468c;
  font-size: 15px;
  border-radius: 50%;
}

.footer-social a:hover {
  transform: scale(0.8);
}

.copyright {
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid rgba(256, 256, 256, 0.2);
}

.copyright p {
  color: rgba(256, 256, 256, 0.8);
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 0px;
}

.copyright p a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-left: 3px;
  letter-spacing: 1px;
}

/* footer end */

/*  */

section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
/*  */

/* Title Start */

.title {
  text-align: center;
  margin-bottom: 25px;
}

.title img {
  width: 100px;
  margin-top: 10px;
  /* margin-right: -100px; */
}

.title h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

.title h3 {
  font-size: 17px;
  font-weight: 400;
  width: 50%;
  line-height: 1.4;
  margin: auto;
  color: rgba(0, 0, 0, 0.7);
}

/* Title End */

/* Cat Bubble Start */

.cat-bubble-sec {
  padding: 40px 0;
}

.cat-bubble {
  display: block;
  background-image: url(../img/bubble.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  height: 100px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  /* border: 2px solid #000; */
  margin: 0 3px;
  margin-bottom: 15px;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  transition: 0.2s ease-in;
  cursor: pointer;
}

.cat-bubble h3 {
  color: #fff;
  font-size: 21px;
  padding: 30px 20px;
  margin-bottom: 0;
  font-weight: 600;
  /* letter-spacing: 0.px; */
}

.cat-bubble:hover {
  transform: scale(1.04);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

/* Cat Bubble End */

/* Category section start */

.category-sec {
  padding: 30px 0;
}

.category-box {
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 25px 20px;
  margin-bottom: 10px;
  transition: 0.2s ease-in-out;
}

.category-box img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.category-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 7px;
}

.category-box p {
  font-size: 15px;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.7);
}

.category-box:hover {
  background-color: #f5f5f5;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.category-box a {
  display: inline-block;
  background-color: #03468c;
  border: 2px solid #03468c;
  color: #fff;
  padding: 4px 15px;
  border-radius: 3px;
  font-size: 13px;
}

.category-box a:hover {
  background-color: transparent;
  color: #03468c;
  font-weight: 600;
}

/* Category section End */

/* About section start */

.about-sec {
  padding: 40px 0;
}

.about-sec .title {
  margin-bottom: 35px;
}

.ab-img img {
  width: 100%;
}

.ab-content h2 {
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 600;
}

.ab-content p {
  font-size: 15px;
  line-height: 28px;
}

.ab-content a {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #03468c;
  background-color: #03468c;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 7px 20px;
  margin-top: 5px;
  border-radius: 25px;
}

.ab-content a:hover {
  background-color: transparent;
  color: #03468c;
}

/* About section End */

/* testimonial Carousel Start */

.testimonial-sec {
  padding: 30px 0;
  border: unset;
}

.test-box {
  display: flex;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
}

.test-box .icon {
  position: absolute;
  top: 20px;
  right: 30px;
}

.test-box img {
  display: block;
  width: 80px !important;
  background-color: #f7f7f7;
  border-radius: 50%;
  padding: 3px;
}

.test-box h3 {
  font-size: 21px;
  margin-bottom: 2px;
}

.test-box h4 {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 1px;
}

.test-box p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
  line-height: 1.6;
}

.test-box .icon i {
  color: #03468c;
  font-size: 35px;
}

/* testimonial Carousel End */

/* Choose Section start */
.choose-sec {
  position: relative;
  padding-top: 30px;
  z-index: 999;
  margin-bottom: -330px;
  z-index: 99;
}

.choose-sec .row {
  background-color: #fff;
}

.choose-sec .title {
  margin-bottom: 30px;
}

.choose-sec .title h3 {
  width: 100%;
}

.choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-content {
  text-align: center;
  height: 100% !important;
  padding: 50px 50px;
  background-color: #fff !important;
}

.choose-box {
  border: 20px solid #f7f7f7;
  padding: 50px 50px;
}

.choose-box img {
  width: 110px !important;
  margin: auto;
  margin-bottom: 3px;
}

.choose-box h3 {
  font-size: 23px;
  margin-bottom: 5px;
}

.choose-box p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 27px;
}

/* Choose Section end */

/* breadcrumb start */

.bread-image {
  background-image: url("../img/breadcrumb.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.bread-image .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding: 160px 0 60px;
}

.bread-image .title h2 {
  text-align: center;
  color: #fff;
  font-size: 40px;
}

.breadcrumb {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #03468c;
  padding: 7px 25px;
  border-radius: 0px;
  text-align: center !important;
}

.breadcrumb a {
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  text-transform: uppercase;
}

.breadcrumb span {
  font-size: 14px;
  color: #fff;
  margin: 0 10px;
}

/* breadcrumb end */

/* Contact Page Start */

.con-add-sec {
  padding: 50px 0 40px;
  background-color: rgba(3, 70, 140, 0.03);
  border-bottom: unset;
}

.cont-box {
  text-align: center;
}

.cont-box i {
  display: inline-block;
  background-color: #03468c;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 21px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.cont-box h3 {
  font-size: 21px;
  margin-bottom: 5px;
}

.cont-box a {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.8);
}

.cont-box p {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.cont-box a:hover {
  color: #02baef;
}

.form-sec {
  padding: 30px 0;
  border-bottom: unset;
}

.contact-form h2 {
  margin-bottom: 15px;
  font-size: 30px;
}

.contact-form label {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-form input {
  height: 45px;
  margin-bottom: 10px;
  padding: 0 15px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: #f7f7f7;
  border-radius: 3px;
}

.contact-form input:focus {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
  height: 140px;
  margin-bottom: 10px;
  background-color: #f7f7f7;
  border: unset;
  border-radius: 3px;
  padding: 15px 15px;
  font-size: 16px;
}

.contact-form textarea:focus {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-form .contact-btn {
  background-color: #03468c;
  color: #fff;
  display: inline-block;
  padding: 10px 30px;
  border: unset;
  font-size: 14px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-map {
  height: 100%;
}

.contact-map iframe {
  border-radius: 10px !important;
}

@media (max-width: 991px) {
  .cont-box {
    margin-bottom: 25px;
  }
}

/* Contact Page End */

/* Category Page Start */

.category-page {
  padding: 70px 0 50px;
  border-bottom: unset;
}

.category-content {
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px 17px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.category-content img {
  width: 230px;
  margin-bottom: 10px;
}

.category-content h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.category-content p {
  font-size: 14px;
  line-height: 1.7;
}

.products-box {
  margin-bottom: 30px;
}

.products-box img {
  width: 100%;
  filter: brightness(0.96);
  /* border: 1px solid rgba(0,0,0,0.1); */
}

.products-box .img {
  position: relative;
}

.products-box:hover .img .overlay {
  opacity: 1;
}

.products-box .img .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 70, 140, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease-in;
}

.products-box .img .overlay a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  font-size: 16px;
  margin: 0 5px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.products-box .img .overlay a:hover {
  background-color: transparent;
  color: #fff;
}

.products-box .content {
  text-align: center;
  margin-top: 15px;
}

.products-box .content h3 {
  font-size: 21px;
  margin-bottom: 7px;
}

.products-box .content a {
  display: inline-block;
  background-color: #03468c;
  color: #fff;
  border: 2px solid #03468c;
  font-size: 14px;
  padding: 5px 20px;
  border-radius: 3px;
  letter-spacing: 2px;
}

.products-box .content a:hover {
  background-color: #fff;
  color: #03468c;
  font-weight: 500;
}

/* Category Page End */

/* Gallery Start */

.gallery-page {
  padding: 70px 0 30px;
}

.gallery-page .container {
  padding-top: 0;
  padding-bottom: 0;
}

.gallery-box {
  position: relative;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.gallery-box img {
  border-radius: 10px;
  width: 100%;
}

.gallery-box .overlay {
  position: absolute;
  background-color: rgba(3, 70, 140, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.2s ease-in;
  border-radius: 10px;
}

.gallery-box .overlay a {
  background-color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: rgba(3, 70, 140, 1);
  border-radius: 50%;
  font-size: 16px;
}

.gallery-box:hover .overlay {
  opacity: 1;
}

/* Gallery End */

/*  */

/* Product Page */

.pro-p-sec {
  padding: 50px 0 30px !important;
  border-bottom: unset;
}

.pro-p-sec img {
  background-color: #fff;
  /* border-radius: 50%; */
  border: 1px solid #ccc;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
}

.pro-p-sec .enquire-btn {
  width: 100%;
  margin-bottom: 30px;
}

.pro-p-sec a {
  display: inline-block;
  border: 2px solid #03468c;
  background-color: #03468c;
  color: #fff;
  font-size: 15px;
  border-radius: 3px;
  padding: 5px 15px;
  margin-top: 10px;
  letter-spacing: 1px;
  margin-right: 5px;
}

.pro-p-sec a:hover {
  background-color: transparent;
  color: #03468c;
}

.pro-desc-box {
  padding: 0 30px;
  text-align: left;
}

.pro-desc-box h2 {
  color: #333;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 27px;
  text-transform: capitalize;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.pro-desc-box P {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
}

.pro-contact {
  text-align: center;
  /* border: 1px solid #ccc; */
  background-color: #f7f7f7;
}
.pro-contact a {
  border: none;
  color: #444;
  font-size: 16px;
}

.pro-contact a:hover {
  background-color: transparent;
  color: #444;
  transform: scale(1.1);
}

@media (max-width: 780px) {
  .breadcrumb {
    width: 100%;
  }
}

/* Modal Start */

.modal-header {
  background-color: #03468c;
}

.modal-header .modal-title {
  color: #fff;
  font-size: 20px;
}

.modal-header .btn-close {
  background-color: #fff;
  width: 20px;
  height: 20px;
  text-align: center;
}

.modal-body {
  padding: 15px 15px;
}

/* Modal End */
