/* Root Var */
:root {
  /* Root Theme Color */
  --theme-color: #67b612;
  --theme-color-second: #28194d;
  --theme-color-third: #fff;
  /* Root Font */
  --heading-font-semi-bold: "RoobertTRIAL-SemiBold";
  --heading-font-medium: "RoobertTRIAL-Medium";
  --paragraph-font-black: "BasisGrotesqueArabicPro-Black";
  --paragraph-font-medium: "BasisGrotesqueArabicPro-Medium";
  --paragraph-font-regular: "BasisGrotesqueArabicPro-Regular";
  /* --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;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font-medium);
}

/* Font Face */

@font-face {
  font-family: "RoobertTRIAL-SemiBold";
  src: url(../fonts/RoobertTRIAL-SemiBold.otf);
}

@font-face {
  font-family: "RoobertTRIAL-Medium";
  src: url(../fonts/RoobertTRIAL-Medium.otf);
}

@font-face {
  font-family: "BasisGrotesqueArabicPro-Black";
  src: url(../fonts/BasisGrotesqueArabicPro-Black.ttf);
}

@font-face {
  font-family: "BasisGrotesqueArabicPro-Medium";
  src: url(../fonts/BasisGrotesqueArabicPro-Medium.ttf);
}

@font-face {
  font-family: "BasisGrotesqueArabicPro-Regular";
  src: url(../fonts/BasisGrotesqueArabicPro-Regular.ttf);
}

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;
  font-family: var(--heading-font-medium);
  color: inherit;
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 16px;
}

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;
}

h1 {
  font-size: 64px;
  font-family: var(--heading-font-semi-bold);
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 36px;
}

h4 {}

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;
  flex-wrap: wrap;
  gap: 7px;
}

a.comon-btn {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 0;
  border-radius: 5px;
  width: 190px;
  text-align: center;
  border-radius: 50px;
}

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

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

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;
  z-index: 111;
}

a.navbar-brand img {
  width: 150px;
}

.header_menu li a {
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  padding: 29px 11px;
  display: inline-block;
}

.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;
}

/* *************** */
.top-header {
  background: var(--theme-color);
  color: #fff !important;
}

.top-header .top-list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  justify-content: space-between;
}

.top-header .top-list li a {
  color: #fff;
  font-size: 16px;
}

/* **** Banner Section **** */

.banner_sec .text-top {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  font-family: var(--paragraph-font-black);
  letter-spacing: 1px;
}

.banner_sec h1 span {
  color: var(--theme-color);
}

.banner_sec {
  padding: 125px 0 400px;
}

.banner_sec p {
  font-size: 18px;
}

.banner_sec .btom_contemt {
  position: absolute;
  bottom: 0;
}

/***********/
.home_sec3 h6 {
  font-size: 20px;
}

.home_sec3 .btom_content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.home_sec3 .btom_content h4 {
  font-size: 34px;
}

.home_sec3 .btom_content h5 {
  font-size: 20px;
  color: var(--theme-color);
  font-family: var(--heading-font-medium);
}

/* ************ */
.home_sec1 h2 span {
  color: var(--theme-color);
}

.home_sec1 ul li i {
  color: var(--theme-color);
  font-size: 12px;
}

.home_sec1 ul li {
  margin-bottom: 12px;
}

/**********/
.home_sec7 .content {
  padding: 20px 20px;
  border-radius: 26px;
}

.home_sec7 .content img {
  margin-bottom: 28px;
}

.home_sec7 .content h5 {
  font-size: 19px;
  margin-bottom: 8px !important;
  font-family: var(--paragraph-font-medium);
}

.home_sec7 .content p span {
  color: var(--theme-color-second);
  font-weight: 500;
}

.home_sec7 h2 span {
  color: var(--theme-color);
}

/**********/
.home_sec4 .bg-content {
  background: #000;
  background: url(../image/home_sec4_bg.png) no-repeat center /cover;
  padding: 150px 29px 150px 0;
  border-radius: 40px;
  color: #fff;
}

.home_sec4 h4 {
  font-weight: 600;
}

.home_sec4 h2 span {
  color: var(--theme-color);
}

.home_sec4 ul li i {
  color: var(--theme-color);
  font-size: 12px;
}

.home_sec4 ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

/* ********* */
#home_sec4 .bg-content {
  background: #000;
  background: url(../image/home_sec4_bg2.png) no-repeat center /cover;
  padding: 60px 29px 80px 0;
  border-radius: 40px;
  color: #fff;
}

#home_sec4 ul li {
  margin-bottom: 7px !important;
}

/* ********* */
.home_sec2 ul li i {
  color: var(--theme-color);
  font-size: 12px;
}

.home_sec2 ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.home_sec2 h2 span {
  color: var(--theme-color);
}

.testimonials_sec .content {
  padding: 20px 14px 14px;
}

.testimonials_sec .content .top_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  padding: 0 14px;

}

.testimonials_sec .content .top_content img {
  width: 75px;
}

.testimonials_sec .content .bg_color {
  background: #e1f0d0;
  padding: 14px;
}

.testimonials_sec .content h6 {
  font-size: 17px;
}

/* ************** */
.faq-section h2 span {
  color: var(--theme-color);
}

.faq-section .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 60px 30px;
}

.main_bg {
  background: var(--theme-color-second);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  color: #fff;
}

.faq-section .faq-item {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 60px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-section .faq-left {
  display: flex;
  gap: 20px;
  width: 50%;
}

.faq-section .faq-number {
  font-weight: 600;
  opacity: 0.8;
  font-size: 20px;
}

.faq-section .faq-left h4 {
  font-size: 18px;
  line-height: 1.6;
}

.faq-section .faq-right {
  width: 45%;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

.faq-section .faq-bottom {
  background: var(--theme-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 60px;
  border-radius: 0px 0 20px 20px;
  color: #fff
}

.faq-section .faq-bottom h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.btn-dark {
  background: var(--theme-color-second);
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}


/* ********* */
.blog_sec h4 {
  font-size: 20px;
  line-height: 1.4;
}

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

.blog_sec .content .btom_content_btn a {
  color: #000;
  text-decoration: underline;
}

.blog_sec .content {
  background: #fff;
  border-radius: 20px;
  padding-bottom: 16px;
}

/* ************** */
footer {
  background: var(--theme-color-second);
  padding: 0px 0 40px;
  color: #fff;
}

.footer_sec .footer_content ul {
  margin-bottom: 0;
}

.footer_sec .footer_content ul li {
  margin-bottom: 24px;
}

.footer_sec .footer_content ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.footer_sec .footer_content ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 16px;
  height: 2px;
  background: var(--theme-color);
  transform-origin: right;
  transition: 0.3s ease-in-out;
  z-index: 1111;
}

.footer_sec .footer_content ul li a:hover::after {
  width: 100%;
  transition: 0.3s ease-in-out;
}

.footer_sec .footer_content ul li a:hover {
  color: var(--theme-color);
}

.footer_sec .right_ft_content ul li i {
  font-size: 10px;
  color: var(--theme-color);
}

.footer_sec .right_ft_content ul li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer_sec .right_ft_content ul {
  display: flex;
  justify-content: end;
  gap: 7px;
  flex-wrap: wrap;
}

.footer_sec .contact_info ul li {
  display: flex;
  align-items: start;
  gap: 3px;
  flex-direction: column;
}

.footer_sec .contact_info ul li a {
  font-size: 20px;
  color: var(--theme-color);
}

.footer_sec .contact_info ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 0;
}

.footer_sec .news_form input {
  background: #534771;
  border: none;
  outline: none;
  color: #fff;
  padding: 13px 15px;
  border-radius: 6px;
}

.footer_sec .news_form h5 {
  font-size: 26px;
}

.footer_sec .news_form button {
  background: var(--theme-color);
  border: none;
  outline: none;
  color: #fff;
  padding: 13px 55px;
  font-weight: 500;
  border-radius: 6px;
}

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

.copy_right ul li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-second);
  border-radius: 50%;
  background: var(--theme-color);
}

.copy_right ul li a i {
  font-size: 20px;
}

.copy_right ul {
  display: flex;
  gap: 6px;
}

/* ************* */
.home_sec5 .bg-content {
  background: #000;
  background: url(../image/home_sec5_bg.png) no-repeat center /cover;
  padding: 60px 0 80px 50px;
  border-radius: 40px;
  color: #fff;
}

.home_sec5 .contact_info ul li {
  display: flex;
  align-items: start;
  gap: 3px;
  flex-direction: column;
  margin-bottom: 13px !important;
}

.home_sec5 .contact_info ul li a {
  font-size: 17px;
  color: var(--theme-color);
}

.home_sec5 .contact_info ul {
  margin-bottom: 25px !important;
}

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

.how-it-works {
  background: #fff;
}

.how-it-works .step {
  /* display: flex; */
  gap: 20px;
  /* align-items: flex-start; */
  background: var(--theme-color-second);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  color: var(--theme-color-third);
  height: 100%;
}

.how-it-works .step-number {
  font-size: 58px;
  font-weight: bold;
  color: var(--theme-color);
}

.how-it-works .step-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.how-it-works .step p {
  color: #d8d8d8;
  line-height: 1.6;
}

/* **** */
.inner_banner_sec {
  padding: 130px 0 150px;
  background: #d2d2d2;
}

.inner_banner_sec .btom_contemt {
  position: absolute;
  bottom: 0;
}

/* ************ */
.partners .partner-content {
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
  line-height: 1.6;
}

.partners .portfolio-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.partners .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
}

.partners .portfolio-item {
  background: var(--theme-color-second);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.17);
}

.partners .portfolio-item h4 a {
  margin: 0 0 10px;
  color: #fff;
}

.partners .portfolio-item p {
  /* margin: 0; */
  color: #cacaca;
  /* font-size: 14px; */
  line-height: 1.5;
}

/* *********** */
.inner_banner_sec h1 span {
  color: var(--theme-color);
}

.navigation .nav-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.navigation .nav-content {
  flex: 1;
}

.navigation .nav-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.navigation .nav-content h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #4a6cf7;
}

.navigation .nav-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.navigation li {
  margin-bottom: 12px;
  color: #555;
}

.navigation .nav-image {
  flex: 1;
  text-align: center;
}

.navigation .nav-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.navigation .nav-image img:hover {
  transform: scale(1.05);
}

/* contact-info */
.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 h3 {
  margin-bottom: 30px;
  font-size: 30px;
}

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

.contact_page .contact_details h5 i {
  margin-right: 9px;
  color: #fff;
  font-size: 24px;
  width: 50px !important;
  height: 50px !important;
  background: var(--theme-color-second);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.contact_page .contact_details p a, .contact_page .contact_details p, .contact_page .contact_details li {
  color: #747474;
  font-size: 17px;
}

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

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

.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: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 14px 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;
}

.contact_page .contact_details h5 {
  margin-bottom: 22px;
  margin-top: 20px;
  font-size: 18px;
  color: #505050;
  display: flex;
  align-items: center;
}

.contact_page .contact_details h5 span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.2;
}

.contact_page .contact_details h5 a {
  color: var(--theme-color);
}

.inner_banner_sec h1 {
  font-size: 68px;
}

#our-product2 .card img {
  height: 375px;
  object-fit: cover;
}

.map {
  width: 100%;
  border: none !important;
  line-height: 0;
}

/* ****************** */
.member-form input,
.member-form textarea {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ced4da;
  outline: none;

}

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

.member-form button.comon-btn:hover {
  background: #000;
  color: #fff;
}

.member-form label {
  display: flex;
  align-items: center;
  text-align: start !important;
  gap: 7px;
  font-size: 17px;
  margin-bottom: 8px;
}

.member-form label input {
  width: initial;
}

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

/* 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;
}

.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 32px 15px 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;
  flex-wrap: wrap;
}

.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 h1 {
  font-size: 42px;
  font-weight: 500;
}

.main-sec h3 {
  font-size: 28px;
  font-weight: 600;
}

.inner-blog-left-sec img {
  height: 350px;
  object-fit: cover;
}

/* ********** */
.invoice-section .invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.invoice-section .invoice-table th,
.invoice-section .invoice-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 14px;
}

.invoice-section .invoice-table th {
  background: #f0f3f8;
  color: #555;
  font-weight: 500;
}

.invoice-section .invoice-title {
  margin: 20px 0 10px;
  font-weight: 500;
  color: #222;
}

.invoice-section .status-paid {
  color: green;
  font-weight: 600;
}

.invoice-section .status-pending {
  color: orange;
  font-weight: 600;
}

/* ********** */
.member_section1 .custom-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.member_section1 .custom-table th,
.member_section1 .custom-table td {
  border: 1px solid #444;
  padding: 10px;
  text-align: center;
  height: 40px;
}

.member_section1 .custom-table th {
  font-weight: 500;
}

/* ********* */
.club-annual-operating-budget-sec1 .budget-total {
  text-align: right;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}

.club-annual-operating-budget-sec1 .note {
  line-height: 1.5;
}

.club-annual-operating-budget-sec1 .custom-table {
  width: 100%;
  border-collapse: collapse;
}

.club-annual-operating-budget-sec1 .custom-table th,
.club-annual-operating-budget-sec1 .custom-table td {
  border: 1px solid black;
  padding: 10px;
}

.club-annual-operating-budget-sec1 .policy-list {
  padding-left: 20px;
  margin-top: 20px;
}

.club-annual-operating-budget-sec1 .policy-list li {
  margin-bottom: 15px;
  line-height: 1.6;
  list-style: disc;
}

/* Optional: better bullet style */
.club-annual-operating-budget-sec1 .policy-list li::marker {
  color: #000;
  font-weight: 500;
}

.applicant-form .form-check-input[type="radio"] {
  border-radius: 50px;
  width: 17px;
  height: 17px;
  padding: 0;
}

.applicant-form select {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ced4da;
  outline: none;
}

.RR-club-manager-sec2 ul li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.RR-club-manager-sec2 ul li i {
  color: var(--theme-color);
  font-size: 12px;
}

.RR-club-manager-sec ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}

.RR-club-manager-sec ul li i {
  font-size: 12px;
  color: var(--theme-color);
}

.RR-club-manager-sec3 .table-dark {
  font-size: 17px;
  font-weight: 400 !important;
}

/* ******************** */
.FSD_regulations_sec1 table a {
  text-decoration: none;
  color: #000;
  display: block;
}

.FSD_regulations_sec1 table a:hover {
  color: var(--theme-color);
  text-decoration: underline;
}
/* ********************** */

.club_financial_sec p {
  color: #666;
  margin-bottom: 30px;
}

.club_financial_sec .cf_card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-bottom: 25px;
  transition: 0.3s;
}

.club_financial_sec .cf_card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.club_financial_sec .cf_title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--theme-color);
}

.club_financial_sec .cf_card ul {
  padding-left: 18px;
  margin: 0;
}

.club_financial_sec .cf_card ul li {
  margin-bottom: 8px;
  color: #444;
}

/* Table */
.club_financial_sec .cf_table th {
  background: #f8f9fa;
}

.club_financial_sec .total_row {
  font-weight: 500;
}

.club_financial_sec .cf_agreement {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.club_financial_sec .cf_agreement p {
  font-weight: 500;
  margin-bottom: 20px;
}

.club_financial_sec .cf_agreement label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.club_financial_sec .line {
  border-bottom: 1px solid #000;
}

.club_service_agreement_sec1 .rr_card .rr_title {
  font-size: 24px;
  font-weight: 500;
  color: var(--theme-color);
}

.club_service_agreement_sec1 .rr_card ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.club_service_agreement_sec1 .rr_card ul {
  padding-left: 25px;
}

.club_financial_sec ul li {
  list-style: disc;
  margin-bottom: 10px;
}

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

/* *********** */
.expected_invoice_sec .ei_card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.expected_invoice_sec .ei_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--theme-color);
}

.expected_invoice_sec .ei_row {
  display: flex;
  gap: 11px;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
}

.expected_invoice_sec .ei_row:last-child {
  border-bottom: none;
}

.expected_invoice_sec .ei_row span {
  color: #444;
}

.expected_invoice_sec .ei_row strong {
  font-weight: 500;
}

/* Table */
.expected_invoice_sec .ei_table th {
  background: #f8f9fa;
}

.expected_invoice_sec .total_row {
  font-weight: 700;
}

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

.waiver_sec .waiver_heading h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.waiver_sec .waiver_heading p {
  color: #666;
}

.waiver_sec .waiver_box {
  background: #fff;
  margin-bottom: 25px;
}

.waiver_sec .waiver_title {
  font-weight: 600;
  margin-bottom: 15px;
}

.waiver_sec .waiver_item {
  margin-bottom: 25px;
}

.waiver_sec .waiver_item h6 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 21px;
}

.waiver_sec .waiver_item p {
  margin-bottom: 0;
  color: #444;
}

.waiver_sec .waiver_item ul {
  padding-left: 18px;
  margin: 0;
}

.waiver_sec .waiver_item ul li {
  margin-bottom: 5px;
}

.waiver_sec .line {
  border-bottom: 1px solid #000;
  height: 30px;
}

.waiver_sec .checkbox_group {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.waiver_box input {
  padding: 12px 0;
}

.waiver_box label {
  font-size: 17px;
  color: #444;
  margin-bottom: 8px;
}

.waiver_box button {
  padding: 12px 0;
  font-size: 17px;
  width: 100%;
  border: none;
  background: var(--theme-color);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

/* ***************** */
.reservation_sec .reservation_table th {
  background: #f8f9fa;
  font-weight: 500;
}

.reservation_sec .reservation_table td {
  vertical-align: middle;
  font-size: 15px;
}

/* Highlight rows */
.reservation_sec .transfer_row {
  background: #fff3cd;
  font-weight: 500;
}

.reservation_sec .charge_row {
  background: #e9f7ef;
  font-weight: 500;
}

/* Better spacing */
.reservation_sec .reservation_table td,
.reservation_sec .reservation_table th {
  padding: 12px;
}

.reservation_sec button {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  background: var(--theme-color);
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
}

.member_use_sec .table-responsive input {
  padding: 12px 10px;
}

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

.comments_sec .comments_table th {
  background: #f8f9fa;
  font-weight: 500;
}

.comments_sec .comments_table td {
  vertical-align: middle;
  padding: 10px;
}

.comments_sec .comments_table textarea {
  resize: none;
  font-size: 13px;
  padding: 3px 10px;
}

.comments_sec .comments_table input {
  padding: 12px 10px;
}
.assessment_sec .comments_table th {
  background: #f8f9fa;
  font-weight: 500;
}

.assessment_sec   td {
  vertical-align: middle;
  padding: 10px;
}

.assessment_sec  textarea {
  resize: none;
  font-size: 13px;
  padding: 3px 10px;
}

.assessment_sec  input {
  padding: 12px 10px;
}
/* Pagination Style */
.center {
  display: flex;
justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #9bcb3b;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}

/* Inner Blog Search Form COde */
.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;
}

/* Inner Blog Search Form Search Cancel  Button */

input#search-form-1 {
    border: none;
    outline: none;
width: 90%;
}
.single-post label {
    width: 100%;
}
.search-form label {
width: 100% !important;
}

/* 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;
}
form.wpcf7-form.init p {
    margin-bottom: 0;
}
form.wpcf7-form.init label {
    margin-bottom: 0px;
}

form.wpcf7-form.init input {
	    margin-bottom: 0px;
}
.wpcf7-form.init p br {
   
    display: none;
}
form.wpcf7-form.init p label {
    margin-bottom: 12px;
}