/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

/* Root Var */
:root {
  /* Root Theme Color */
  --theme-color: #fdbd10;
  --theme-color-second: #000;
  --theme-color-third: #fff;

  /* Root Font */
  --heading-font: "Oswald", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  /* --span-font: 'spanist'; */

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  font-family: var(--paragraph-font);
  overflow-x: hidden !important;
}

/* Font Face */
@font-face {
  font-family: "";
  src: url();
}

@font-face {
  font-family: "";
  src: url();
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: var(--heading-font);
}

p {
  margin: 0;
  line-height: 30px;
  margin-bottom: 25px;
  font-size: 17px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}
.pro-cat li{
	list-style: disc;
	margin-left: 30px;
}
h1 {}

h2 {
  font-size: 52px;
}

h3 {}

h4 {
  font-size: 28px;
}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 25px;
  text-align: center;
  border: 2px solid var(--theme-color);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 8px;
}

.hd_info a img {
  margin: 0;
  width: 45px;
  margin-left: 8px;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 14px 0;
  border-radius: 55px;
  text-transform: uppercase;
  width: 206px;
  text-align: center;
  font-weight: 500;
}

a.comon-btn:hover {
  background: #121212;
  color: var(--theme-color-third);
}

a.comon-btn2 {
  background: var(--theme-color);
  color: var(--theme-color-second);
}

a.comon-btn2:hover {
  background: #121212;
  color: var(--theme-color-third);
}

a.comon-btn3 {
  background: var(--theme-color-third);
  color: var(--theme-color-second);
}

a.comon-btn2:hover {
  background: #121212;
  color: var(--theme-color-third);
}


/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 11;
}

a.navbar-brand img {
  width: 85px;
  margin-bottom: -40px;
}

.header_menu li a {
  color: #000;
  font-size: 15px;
  text-transform: capitalize;
  padding: 29px 14px;
  display: inline-block;
  font-weight: 500;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

#main_header .hd_info {
  margin-left: 11px;
}

/* banner Section */
.banner_sec {
  padding: 140px 0 0;
  position: relative;
}

.banner_sec .content p {
  font-size: 16px;
  line-height: 1.5;
}

.banner_sec h5 {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
}

.banner_sec h1 span {
  width: 70px;
  display: inline-block;
}

.banner_sec h1 {
  background: linear-gradient(to bottom, #d19c34 31%, #f2c668 50%, #d19c34 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 125px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #000000;
  margin-left: 5%;
  margin-bottom: -298px;
}

.banner_sec .content img {
  width: 100%;
}

.banner_sec .content {
  margin-top: 90px;
}

.banner_sec .btom_content_banner .content2 img {
  width: 24px;
}

.banner_sec .btom_content_banner .content2 p {
  font-size: 13px;
}

.banner_sec .btom_content_banner .content2 h6 {
  font-size: 18px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.banner_sec .btom_content_banner .content2 {
  color: #fff;
  display: flex;
  align-items: start;
  gap: 5px;
  padding: 15px 10px;
  justify-content: center;
}

.banner_sec .btom_content_banner .content3 {
  border-right: 1px solid var(--theme-color);
  border-left: 1px solid var(--theme-color);
}

.banner_sec .btom_content_banner {
  margin-top: -140px;
}

.banner_sec .btom_content_banner {
  margin-top: -140px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  margin: 0 auto;
  z-index: 111;
}

.banner_sec .content_img {
  margin-top: 40px;
}

.banner_sec .hd_info {
  position: relative;
  z-index: 1;
}

/* Home Section 1 */
.home_sec .heading {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 60px;
}

.home_sec {
  padding: 518px 0 90px;
}

.home_sec h2 span {
  color: #fdc519;
  font-size: 56px;
}

/* ********** */
.home_sec2 .accordion-item {
  background-color: transparent;
  border: 0px solid rgba(0, 0, 0, .125);
  border: 1px solid #000;
  border-radius: 0 !important;
  font-size: 14px;
  margin-bottom: 13px;
}

.home_sec2 .accordion-item p {
  font-size: 14px;
}

.home_sec2 .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.75rem;
  margin-left: auto;
  content: "+";
  background-image: none;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
  font-size: 24px;
}

.home_sec2 .accordion-button {
  box-shadow: none !important;
  font-size: 16px;
}

.home_sec2 .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "-";
  transform: rotate(0deg);
}

.home_sec2 .accordion-header {
  margin-bottom: 0;
  font-family: var(--paragraph-font);
}

.home_sec2 .accordion-button {
  background: transparent;
}

.home_sec2 .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.home_sec2 .accordion-white .accordion-header {
  margin-bottom: 0;
  font-family: var(--paragraph-font);
  color: #fff;
}

.home_sec2 .accordion-white .accordion-item {
  color: #fff;
}

.home_sec2 .accordion-white .accordion-button:not(.collapsed) {
  color: #fff;
}

.home_sec2 .accordion-white .accordion-button {
  color: #fff;
}

.home_sec2 .accordion-white .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 1);
}


.home_sec2 .accordion-white .accordion-item {
  background-color: transparent;
  border: 0px solid rgba(0, 0, 0, .125);
  border-bottom: 1px solid #ffffff;
}

/* ************* */

.faqs .accordion-button:not(.collapsed)::after {
  background-image: url('../image/minus.png');
}

.faqs .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
  content: "";
  background-image: url('../image/plus.png');
  background-repeat: no-repeat;
}

.faqs .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 17px;
  color: #000 !important;
  text-align: left;
  border: 0;
  border-radius: 0;
  font-family: "Poppins", serif;
  overflow-anchor: none;
  padding: 18px 19px;
  background: #ebebeb;
}

.faqs .accordion-body p {
  margin-bottom: 10px;
  font-size: 16px;
}

.faqs button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.faqs .accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 9px;
}

.faqs .accordion-button:not(.collapsed) {
  color: #000 !important;
  background-color: var(--theme-color);
  box-shadow: inset 0 -1px 0 var(--theme-color);
}

.faqs .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  background: var(--theme-color);
  color: #000;
  padding-top: 0;
}

/* ******** */
.home_sec3 h3 {
  font-size: 46px;
  font-weight: 400;
}

.home_sec3 .left_content p {
  font-size: 20px;
  font-weight: 500;
}

/* ********* */
.home_sec4 .content .right_img img {
  width: 33px;
}

.home_sec4 .content {
  padding: 30px 20px;
  border: 1px solid #5a6190;
  border-radius: 20px;
  background: #5a619012;
}

.home_sec4 .content .top-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.home_sec4 .content img {
  width: 85px;
}

/* Contact Us */
.contact_sec {
  color: #000 !important;
}

.contact_sec input {
  width: 100%;
  padding: 14px 12px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #fff;
  outline: none;
  color: #000;
}

.contact_sec textarea {
  width: 100%;
  padding: 14px 12px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #fff;
  outline: none;
}

.contact_sec input::placeholder {
  opacity: 1;
  color: #000;
}

.contact_sec textarea::placeholder {
  opacity: 1;
  color: #000;
}

.contact_sec button {
  width: 100%;
  padding: 14px 12px;
  border-radius: 5px;
  background: #000;
  cursor: pointer;
  border: none;
  outline: none;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact_sec .contact_info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #fff;
}

.contact_sec .contact_info ul li a {
  color: #fff;
}

.contact_sec .contact_info ul li i {
  font-size: 24px;
}

.contact_sec .heading {
  padding: 50px 50px 50px 100px;
}

/* *********** */

.home_sec_7 .date {
  font-size: 14px;
  color: var(--theme-color-second);
  line-height: 1;
  margin-bottom: 10px;
}

.home_sec_7 .blog-box h5 a {
  color: #000;
  font-size: 22px;
  margin-bottom: 17px;
  display: block;
}

.home_sec_7 .blog-box .accordion-button {
  font-size: 16px;
  line-height: 1.3;
}

.home_sec_7 .blog-box .accordion-item, .home_sec_7 .blog-box .accordion-item p {
  font-size: 13px;
}

/* ********** */
.home_sec_7 .accordion-item {
  background-color: transparent;
  border: 0px solid rgba(0, 0, 0, .125);
  border: 1px solid #000;
  border-radius: 0 !important;
  font-size: 15px;
  margin-bottom: 13px;
}

.home_sec_7 .accordion-item p {
  font-size: 14px;
}

.home_sec_7 .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.75rem;
  margin-left: auto;
  content: "+";
  background-image: none;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
  font-size: 24px;
}

.home_sec_7 .accordion-button {
  box-shadow: none !important;
  font-size: 16px;
}

.home_sec_7 .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "-";
  transform: rotate(0deg);
}

.home_sec_7 .accordion-header {
  margin-bottom: 0;
  font-family: var(--paragraph-font);
}

.home_sec_7 .accordion-button {
  background: transparent;
}

.home_sec_7 .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.home_sec_7 .accordion-white .accordion-header {
  margin-bottom: 0;
  font-family: var(--paragraph-font);
  color: #fff;
}

.home_sec_7 .accordion-white .accordion-item {
  color: #fff;
}

.home_sec_7 .accordion-white .accordion-button:not(.collapsed) {
  color: #fff;
}

.home_sec_7 .accordion-white .accordion-button {
  color: #fff;
}

.home_sec_7 .accordion-white .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 1);
}


.home_sec_7 .accordion-white .accordion-item {
  background-color: transparent;
  border: 0px solid rgba(0, 0, 0, .125);
  border-bottom: 1px solid #ffffff;
}

/* ********** */
footer {
  padding: 80px 0 40px;
  background-position: top !important;
}

footer .ft_logo {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 45px;
}

footer .ft_logo img {
  width: 94px;
}

footer .ft_logo p {
  line-height: 1.6;
  font-size: 15px;
}

footer .ft_menu ul li a {
  font-size: 15px;
  color: #000;
}

footer .ft_menu ul li {
  margin-bottom: 11px;
}

footer .ft_menu_content {
  text-align: end;
}

footer .ft_menu_content img {
  width: 120px;
}

footer .ft_menu_content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: end !important;
}

footer .social_info ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

footer .social_info ul li a {
  color: #000;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .social_info ul li {
  margin-bottom: 0px;
  width: 340px;
}

footer .ft_menu ul {
  margin-bottom: 0;
}

/* inner_banner */
.inner_banner {
  background-color: #01667d;
  padding: 300px 0 90px;
  color: var(--theme-color-second);
}

.inner_banner a {
  color: var(--theme-color-second);

}

.inner_banner h1 {
  font-size: 84px;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(to bottom, #d19c34 31%, #f2c668 50%, #d19c34 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #000000;
}

/* CONTACT US PAGE */

.contact .heading {
  text-align: center;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
  padding: 38px 0 27px;
  border: 1px solid #e8e4e4;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, 0.08);
}

#contact .contact-info {
  text-align: center;
  color: #000;
}

#contact .contact-info .fa-map-marker {
  font-size: 39px;
}

#contact .contact-info h3 {
  text-transform: capitalize;
  color: var(--theme-color-second);
  margin: 18px 0 0;
  font-size: 22px;
  margin-bottom: 6px;
  /* text-transform: capitalize; */
}

#contact address {
  margin-bottom: 16px;
  font-style: normal;
  line-height: inherit;
  color: #202020;
  font-weight: 400;
}

#contact .contact-info i {
  font-size: 45px;
  display: inline-block;
  margin-bottom: 0;
  color: var(--theme-color) !important;
}

#contact .contact-info .fa-envelope {
  font-size: 32px;
}

#contact .contact-info a {
  color: #202020;
  font-size: 18px;
  font-weight: 500;
}

.contact_page .contact_shadoW {
  box-shadow: 1px 2px 15px 2px #9b9b9b91;
}

.contact_page .contact_details {
  background-color: #fff;
  padding: 30px;
  padding-top: 50px;
}

.contact_page .contact_details h4 {
  margin-bottom: 30px;
  font-size: 23px;
}

.contact_page .contact_details h5 {
  margin-bottom: 6px;
  margin-top: 20px;
}

.contact_page .contact_details h5 i {
  margin-right: 8px;
  color: var(--theme-color);
}

.contact_page .contact_details p a,
.contact_page .contact_details p,
.contact_page .contact_details li {
  color: #747474;
}

.contact_page .contact_details li {
  list-style: none;
  line-height: 27px;
}

.contact_page .contact_form {
  background-color: var(--theme-color);
  padding: 50px 25px;
  height: 100%;
  color: #fff;
}

.contact_page .contact_form h2 {
  text-align: center;
  margin-bottom: 35px;
}

.contact_page .contact_form input,
.contact_page .contact_form textarea {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  border: none;
  outline: none;
}

.contact_page .contact_form button.comon-btn {
  background: var(--theme-color-second);
  color: var(--theme-color-fourth);
  display: inline-block;
  font-size: 16px;
  padding: 12px 0px;
  border-radius: 50px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border: none;
  transition: all .5s;
}

.contact_page .contact_form button.comon-btn:hover {
  background: #000;
  color: #fff;
}

.map {
  line-height: 0;
}

.contact_page h3 {
  font-size: 38px;
}

/* ************ */

/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px 20px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}

.main-sec .heading a {
  color: var(--theme-color);
}

.main-sec h4 {
  font-size: 21px;
  /* margin-bottom: -25px; */
}

.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 5px 35px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}

.main-sec {
  padding-top: 170px;
}

/* Results Section */
.results_sec .result_box img {
  height: 280px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease;
}

.results_sec .result_box {
  overflow: hidden;
  position: relative;
  border-radius: 10px;

}

.results_sec .result_box:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

/* ************ */


.trainer-highlight {
  font-weight: 700;
  color: #111827;
  margin-top: 20px;
}

.trainer-cta {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 700;
  color: #f97316;
  letter-spacing: 0.5px;
}

.trainer-image {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #6b7280;
}



/* nutrition_training_plan  */
.nutrition_training_plan h2 span {
  color: #fdc519;
}


.nutrition_training_plan img {
  height: 450px;
  object-fit: cover;
  object-position: top;
}

.nutrition_class_1 h2 span {
  color: #fdc519;
}

a.btn-inherit {
  width: fit-content;
}

.nutrition_class_1 ul {
  list-style: disc;
  padding-left: 18px;
}

.nutrition_class_1 ul li {
  margin-bottom: 15px;
}

/* ******* */
.gallery_sec .owl-nav {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  font-size: 28px;
  margin-top: 15px;
}

.gallery_sec .owl-nav button {
  width: 50px !important;
  height: 50px !important;
  border: 1px solid #1b303c !important;
}

.gallery_sec .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.trademark-text {
  font-size: 48px;
  position: relative;
  top: -78px;
}

/* *********** */
.gallery_sec video {
  height: 200px;
  background: #000;
}

.home_sec8 {
  background: url(../image/home_sec8_bg.png);
  color: #fff;
}

/* Form Bottom Margin remove */
form.wpcf7-form.init p {
    margin-bottom: 0px;
}

/* Blog Leave A Comment */
.inner-blog-left-sec .inner-blog-comment .contact-form {
    padding: 20px 25px;
    border: 1px solid rgba(69, 69, 70, 0.2);
    border-radius: 8px;
    background: #fff;
    color: #000;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
/*     max-width: 600px; */
    margin: 0 auto;
}
#respond #reply-title small a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
border: none;
}
#respond form p{
color: #6d6d6d;
 margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color: #FF6601;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
color: #0f3ca1 !important;
text-decoration: underline;
display: inline-block !important;
}
#comments .comment-author a{
color: #000 !important;
}
#comments .comment-metadata a{
color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
margin-right: 10px !important;
}
div#respond label {
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

div#respond input,  div#respond textarea{
    padding: 10px;
    border-radius: 6px;
}

div#respond input#wp-comment-cookies-consent {
    width: 20px;
    height: 17px;
}

div#respond p.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: nowrap;
}

div#respond p.comment-form-cookies-consent  label{
margin:0px!important;
}

div#respond input#submit {
    background: var(--theme-color-second);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.search-form {
  position: relative;   /* parent for absolute positioning */
  width: 100%;          /* full width if needed */
}

.search-form input[type="search"] {
  width: 100%;          /* input takes full width */
  padding-right: 45px;  /* leave space for button */
  box-sizing: border-box;
}

.search-form button {
  position: absolute;
  right: 10px;          /* adjust spacing from right */
  top: 50%;
  transform: translateY(-50%); /* center vertically */
  border: none;
  background: transparent;
  cursor: pointer;
}
input#search-form-1 {
    border: none;
    outline: none;
width: 90%;
}
.single-post label {
    width: 100%;
}
.search-form label {
width: 100% !important;
}
