@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --theme-color: #000000;
  --theme-color-second: #064307;
  --theme-color-third: #000;
  --heading-font: "Roboto Condensed", sans-serif;
  --paragraph-font: "Roboto Condensed", sans-serif;
  --span-font: 'spanist';
  --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: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Roboto Condensed", sans-serif;
  /* color: var(--theme-color) !important; */
}

@font-face {
  font-family: 'spanist';
  src: url(../fonts/Bacalisties.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: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 30px;
  margin-bottom: 15px;
  font-size: 18px;
}

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: 80px;
}

h2 {
  font-size: 55px;
  text-transform: uppercase;

}

h3 {
  font-size: 50px;
}

h4 {}

h5 {}

h6 {
  font-size: 20px;
}


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

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

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

/* navbar----------- */


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

* {
  box-sizing: border-box;
}

.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: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  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;
  z-index: 999;
}

.m-backtotop>div.text {
  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: 0px;
  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;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

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


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


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

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

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

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 14rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #fff;
}

a.btn-2 {
  background-color: #dfe7df;
  color: #064307;
}

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

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
  font-weight: normal;
  letter-spacing: 1px;
}

.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: 200px;
  border-radius: 0px;
}

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

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


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

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



#main_header .basket-header a {
  color: var(--theme-color-second);
  font-size: 20px;
}

#main_header .basket-header {
  gap: 22px;
}

.banner {
  background-position: bottom !important;
}

.banner h4 {
  font-size: 35px;
}

.banner h1 {
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
}


.banner h3 {
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  font-size: 40px;
}

.banner p {
  font-size: 23px;
}

.banner {
  padding-top: 255px;
}

a.video-btn {
  display: flex;
  gap: 10px;
  color: #ffff;
  align-items: center;
  text-transform: uppercase;
  font-size: 18px;
}

a.video-btn i {
  display: flex;
  background-color: var(--theme-color-second);
  height: 65px;
  width: 65px;
  border-radius: 600px;
  border: 3px solid #fff;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.tour-package .content p.text-success {
  height: inherit;
  font-size: 18px;
}

.tour-package .content p {
  font-size: 16px;
  line-height: normal;
}

.tour-package .content h5 {
  font-size: 29px;
}

/* Home Section 1 */
.home_sec1 h2 {
  text-transform: uppercase;
}

.home_sec1 h2 span {
  color: #386939;
}

.home_sec1 {
  padding-bottom: 205px;
}

/* Home Section 2 */
.home_sec2 h2 {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 0;
}

.home_sec4 .plan_content {
  background: #fff;
  border-radius: 10px;
  border: 3px solid #fff;
  padding: 8px 8px;
}

/* .home_sec4 .plan_content .btom_content h5 br {
  display: none;
} */

.home_sec4 .plan_content .btom_content p {
  font-size: 16px;
  line-height: 1.5;
}

.home_sec4 .plan_content .btom_content {
  padding: 20px 0px 0;
  color: #000;
}

/* .home_sec4 h5 {
  color: #e30613;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
} */
.home_sec4 .plan_content .btom_content h5 {
  font-size: 20px;
  margin-bottom: 8px;
}

.home_sec4 .plan_content .btom_content .btn_content a {
  color: #386939;
  background: #e5ece5;
  padding: 10px 25px;
  border-radius: 7px;
}


.home_sec4 .plan_content .btom_content .btn_content .button {
  color: #386939;
  background: #e5ece5;
  padding: 10px 25px;
  border-radius: 7px;
}

.home_sec4 .plan_content .btom_content .btn_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home_sec4 .plan_content .btom_content .btn_content img {
  width: 75px;
}

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

a.comon-btn3 {
  background: #fff;
  color: #000;
  display: inline-block;
  font-size: 14px;
  padding: 13px 0;
  border-radius: 55px;
  width: 220px;
  text-align: center;
  text-transform: uppercase;
}

a.comon-btn3:hover {
  background: #121212;
  color: #fff;
}

.home_sec5 .btom_content {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: end;
  margin-bottom: 8px;
}

.home_sec5 {
  padding: 730px 0 80px;
}

/* faq-content */

.faq-contact .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #ffffff;

}

.faq-contact .accordion-item {
  margin-bottom: 0;
  border-radius: 0px;
  overflow: hidden;
}

.faq-contact .get-intouch {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 24px;
  border: 1px solid #000;
  margin: 0 55px;
}

.faq-contact .get-intouch input {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
}

.faq-contact .get-intouch textarea {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  height: 120px;
}

.faq-contact .get-intouch button {
  background-color: #001a32;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  color: #fff;
  text-transform: uppercase;
}

.faq-contact .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  font-size: 20px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: none;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  border-bottom: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  /* font-family: "Inter", sans-serif; */
}

.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
}

.faq-contact .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: none;
  border-bottom: 1px solid #000 !important;

}

.faq-contact .accordion-body {
  padding: 0;
  padding-bottom: 20px;
}

.faq-contact .accordion-item p {
  margin-bottom: 0;
}

.faq-contact .accordion-button:focus {
  z-index: 3;
  border-color: none !important;
  outline: 0;
  box-shadow: none !important;
}

/* ****** */
.testimonial_sec .owl-nav {
  position: relative;
}

.testimonial_sec .owl-next {
  position: absolute;
  right: -50px;
  top: -255px;
}

.testimonial_sec .owl-prev {
  position: absolute;
  left: -50px;
  top: -255px;
}

.testimonial_sec .owl-nav img {
  width: 25px;
}

.testimonial_sec .owl-carousel .owl-nav.disabled {
  display: block;
}

/* NEWS SECTION */
.news_sec button {
  background: var(--theme-color-second);
  color: #fff;
  border: none;
  padding: 14px 17px;
  width: 100%;
  border-radius: 10px;
  letter-spacing: 1px;
}

.news_sec input {
  width: 100%;
  background: #e5e5e5;
  padding: 14px 17px;
  outline: none;
  border: none;
  border-radius: 10px;
}

/* get-in-touch */

.get-in-touch h5 {
  /* font-family: "paragraph-font-Medium"; */
  font-size: 27px;
}

.get-in-touch .social a {
  font-size: 24px;
  color: #000;
}

.get-in-touch input[type="text"] {
  border: none;
  padding: 15px;
  background-color: #e1e1e1;
  color: #000;
  width: 100%;
  border-radius: 6px;
}
.get-in-touch input[type="email"] {
  border: none;
  padding: 15px;
  background-color: #e1e1e1;
  color: #000;
  width: 100%;
  border-radius: 6px;
}
.get-in-touch input[type="tel"] {
  border: none;
  padding: 15px;
  background-color: #e1e1e1;
  color: #000;
  width: 100%;
  border-radius: 6px;
}
.get-in-touch textarea {
  border: none;
  padding: 15px;
  background-color: #e1e1e1;
  color: #000;
  width: 100%;
  border-radius: 6px;
  height: 135px;
}

.get-in-touch input[type="submit"] {
  border: none;
  padding: 14px;
  background-color: #386939;
  color: #ffffff;
  width: 100%;
  border-radius: 6px;
  text-transform: uppercase;
  border-radius: 7px;
}

/* ******** */
.blog_sec a {
  font-size: 16px;
  color: #000;
  text-decoration: underline;
}


.blog_sec .top_img {
  margin-bottom: 15px;
}

.blog_sec h6 {
  margin-bottom: 10px;
  font-size: 19px;
}

.blog_sec p {
  margin-bottom: 10px;
}

/* ********* */
.footer {
  background-color: #000;
  padding: 75px 0 45px;
  color: #fff;
}

.footer .heading h4 {
  font-size: 38px;
  color: #f2e0e2;
}

.footer .heading h5 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 21px;
}

.footer .btom_content {
  display: flex;
  gap: 110px;
}

.footer .heading ul li a {
  display: inline-flex;
  align-items: start;
  gap: 10px;
  color: #fff;
  /* text-transform: capitalize; */
}

.footer .heading ul li a i {
  font-size: 17px;
  color: #709371;
}

.footer .heading ul li {
  margin-bottom: 14px;
}

.footer .social h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: #687d6a;
}

.footer .social {
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer .social a {
  color: #687d6a;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  border-radius: 60px;
  border: 2px solid #687d6a;
}

.footer hr {
  color: #687d6a !important;
  opacity: 1;
}

.footer .left_logo_content .ft_logo {
  width: 170px;
  margin-bottom: 20px;
  display: block;
  /* color: #064307; */
}


/* INNER PAGE */

.inner_banner_heading {
  text-align: start;
  color: #064307;
  background: #ffffffd9;
  padding: 26px 40px;
  border-radius: 15px;
  display: inline-block;
}

#inner-banner {
  background: #022359;
  padding: 155px 0 50px;
  color: #fff;
}

#inner-banner h1 {
  font-size: 66px;
  /* font-family: "Roboto Condensed", Sans-serif; */
  font-weight: 700;
  line-height: 51px;
  letter-spacing: 0px;
  /* font-weight: 500; */
  /* line-height: 66px; */
  text-transform: uppercase;
}

#inner-banner .breadcrumb {
  justify-content: start;
}

#inner-banner .breadcrumb a {
  color: var(--theme-color-second);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

#inner-banner .breadcrumb-item.active {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

#inner-banner .breadcrumb-item+.breadcrumb-item::before {
  /* float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x); */
  color: #000;
  content: var(--bs-breadcrumb-divider, "/");
}

/* CONTACT SEC */

.contact-info-top {
  margin-top: 14px;
}

.contact .p-contact {
  margin: initial !important;
}

.contact .contact-info form {
  margin-top: 15px;
}

.contact .contact-top {
  background: #fff;
  padding: 43px 12px;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  /* border-right: 1px solid #999; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 8px;
}

.contact .contact-icon {
  position: relative;
}

.contact .contact-info-top a {
  color: #282828;
  font-size: 16px;
}

.gaping {
  margin-bottom: 15px !important;
}

.contact .contact-info-top p {
  color: #282828;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 0;
}

.contact .contact-icon i {
  background: var(--theme-color-second);
  width: 55px;
  height: 55px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.contact .contact-left-el {
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  background: #f7f7f7;
}

.contact .contact-left-el1 {
  margin-bottom: 26px;
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
}

.contact .contact-left-el,
.contact-left-el1 a {
  color: #777777;
  transition: all .3s ease-in-out;
}

.contact .contact-form {
  background: #fff;
  padding: 35px 25px;
  box-shadow: 0px 10px 40px rgb(235, 235, 235);
}

.contact .contact-left {
  background: #fff;
  padding: 35px 25px;
  box-shadow: 0px 10px 40px rgb(235, 235, 235);
  width: 100%;
  height: 100%;
}

.contact .contact-left-el,
.contact-left-el1 a:hover {
  color: #f3a918;
}

.contact .contact-form input {
  height: 55px;
  border-radius: 5px;
  color: #666666;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 12px;
  outline: none;
}

.contact .contact-form select {
  height: 55px;
  border-radius: 5px;
  color: #666666;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 12px;
  outline: none;
  background: transparent;
}

.contact .contact-form textarea {
  border-radius: 5px;
  color: #666666;
  padding: 9px 12px;
  width: 100%;
  border: 1px solid #e2e2e2;
  outline: none;
}

.contact .contact-form button {
  background: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  padding: 12px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  width: 270px;
  transition: all 0.5s ease-in-out;
  font-size: 15px;
  letter-spacing: 0px;
  font-weight: 500;
}

.contact .contact-form button:hover {
  background: #000;
  border: 1px solid #000000;
  color: #fff;
}

.map {
  line-height: 0;
}

.contact-info-top h4 {
  color: #000000;
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 5px;
  margin-top: 22px;
}

.contact .contact-info-top a {
  color: #282828;
  font-size: 17px;
  word-break: break-all;
}



.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: #10100f;
    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 */

.blog-section h4 {
  font-size: 28px;
}

.blog-section h4 a {
  color: #828282;
}

.blog-section .sidebar-option {
  padding-left: 6px;
}

.sidebar-option .so-categories {
  margin-bottom: 40px;
}

.sidebar-option .so-categories .title {
  font-size: 20px;
  color: #056839;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sidebar-option .so-categories ul li a {
  font-size: 14px;
  color: #5e5e5e;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
}

.sidebar-option .so-categories ul li a span {
  font-size: 12px;
  float: right;
}

.sidebar-option .so-latest .title {
  font-size: 20px;
  color: var(--theme-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 23px;
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 30px;
}

.sidebar-option .so-latest .latest-item .li-pic {
  float: left;
  margin-right: 20px;
}

.sidebar-option .so-latest .latest-item .li-text {
  overflow: hidden;
}

.sidebar-option .so-latest .latest-item .li-text h6 a {
  font-size: 16px;
  color: var(--theme-blue);
  line-height: 20px;
  margin-bottom: 0;
}

.sidebar-option .so-latest .latest-item .li-text h6 {
  margin-bottom: 4px;
}

.sidebar-option .so-latest .latest-item .li-text .li-time {
  display: inline-block;
  font-size: 14px;
  color: #888888;
}

.class-item .class-item-text span {
  font-size: 16px;
}

.sidebar-option .so-latest .latest-item .li-pic img {
  width: 105px;
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.inner-banner {
  padding: 40px 0;
  background: #1a4543 !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: 0px !important;
}

/* Step 1: Force flex layout on the inner div that wraps both input and button */
#es_form_f1-n1 .es_subscription_form .gjs-cell {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

/* Step 2: Style input */
#es_form_f1-n1 .es_subscription_form input.es-email {
    background: #e5e5e5;
    padding: 14px 17px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    flex: 1 1 75%;
}

/* Step 3: Style submit button */
#es_form_f1-n1 .es_subscription_form input[type="submit"] {
    background: var(--theme-color-second);
    color: #fff;
    border: none;
    padding: 14px 17px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    flex: 1 1 25%;
}

div#tb-thankyou {
    background: #fff;
    padding: 35px 25px;
    box-shadow: 0px 10px 40px rgb(235, 235, 235);
}

#tb-thankyou-details{
	font-size:16px;
}
