/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Root Var */
:root {

  /* Root Theme Color */
  --theme-color: #2a6272;
  --theme-color-second: #fff;
  --theme-color-third: #000;

  /* Root Font */
  --heading-font: "Poppins", sans-serif;
  --paragraph-font: "Poppins", 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;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font);
}

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

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

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

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

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

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: 65px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

h2 {
    font-size: 40px;
}

h3 {
  font-size: 35px;
}

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

/* .hd_info a img {
  margin: 0 24px 0 10px;
} */

a.comon-btn {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 5px;
  text-transform: uppercase;
  width: 180px;
  text-align: center;
  border: 2px solid var(--theme-color)!important;
}
a.btn-white{
  background-color: #fff;
  color: var(--theme-color);
}
a.comon-btn:hover {
  background: #121212;
  color: var(--theme-color-second);
  border-color: var(--theme-color-third);
}

a.comon-btn2 {
  background: var(--theme-color-second);
  color: var(--theme-color-third);
  display: inline-block;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 5px;
  text-transform: uppercase;
  width: 180px;
  text-align: center;
  border: 2px solid var(--theme-color);
}

a.comon-btn2:hover {
  background: #121212;
  color: var(--theme-color-second);
  border-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;
}

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

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

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

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

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

/* Banner Section */
.banner_sec a.comon-btn {
  width: 260px;
}

.banner_sec {
  padding: 120px 0;
}

.about_sec  h2{
 text-transform: uppercase;
}


.about_sec .service-box p{
  font-size: 14px;
  line-height: 1.6;
}

.about_sec .service-box .accordion-button{
  font-size: 14px;
  line-height: 1.6;
  box-shadow: none;
  font-weight: 500;
}

.about_sec .service-box  .accordion-button:not(.collapsed) {
    color: #2a6272;
    background-color: #2a627226;
    
}

.about_sec .service-box h4{
  font-weight: 600;
  font-size: 22px;
  line-height: normal;
}
.home_sec_2 {
  padding-top: 300px;
}
.home_sec_2 h2{
  text-transform: uppercase;
}

.home_sec_2 .why-choose-box{
  background-color: #7eb6d8;
  border: 2px solid #fff;
  border-radius: 15px;
  height: 100%;
}
.home_sec_2 .why-choose-box h4{
  font-size: 23x;
}
.home_sec_2 .why-choose-box p:last-child{
  margin-bottom: 0;
}

.home_sec_2 .why-choose-box .object-fit{
  height: 75px;
  object-fit: contain;
}


.home_sec_2 .accordion-button{
  
  box-shadow: none;
  font-weight: 500;
  color: #ffffff;
  background: transparent;

}

.home_sec_2 .accordion-item{
  background: transparent;
   color: #ffffff;
   border-bottom: 2px solid #fff!important;
}

.home_sec_9 h5{
  font-size: 24px;
}


.home_sec_9 {
  padding: 150px 0;
}

.testimonial_sec .testimonial-box {
  border-radius: 10px;
}

.testimonial_sec .testimonial-box ul {
 display: flex;
 align-items: center;
 gap: 10px;
 padding-bottom: 18px;
}
.testimonial_sec .testimonial-box ul li{
  line-height: 1;
}
.testimonial_sec .testimonial-box ul li i{
  color: orange;
}

.testimonial-box .content{
  height: 105px;
  overflow-y: scroll;
  margin-bottom: 35px;
  padding-right: 18px;
  margin-top: 18px;
 
}
.testimonial-box .content p{
  text-align: justify;
  line-height: 1.5;
  font-size: 14px;
}

.testimonial-box .author-box p{
  font-size: 12px;
}

.testimonial-box .author-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.testimonial-box .author-box  img{
  width: 35px!important;
  height: 35px!important;
}

.testimonial-box.green-box {
    background-color: #ffffff!important;
    border-radius: 18px!important;
}

.testimonial-box .name {
  background-color: green;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
/* .testimonial-box.blue-box{
  background-color: #8f8ffd;
  color: #fff;
}
.testimonial-box.black-box{
  background-color: #000000;
  color: #fff;
} */


/* Accordion overall */
.faq_sec .accordion-item {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}

/* Accordion button */
.faq_sec  .accordion-button {
    background: none;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    padding: 20px 8px;
}
/* Remove Bootstrap's background on active */
.faq_sec  .accordion-button:not(.collapsed) {
  background: none;
  color: #333;
  box-shadow: none;
}

/* Accordion icon (arrow) */
.faq_sec  .accordion-button::after {
   font-size: 12px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.faq_sec  .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Accordion body */
.faq_sec  .accordion-body {
  padding: 10px 0 15px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.get_in_touch_sec h2{
  font-weight: 800!important;
}

.get_in_touch_sec .btn-box li a{
  display: flex;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  color: #000000;
  gap: 10px;
  align-items: center;
}

.get_in_touch_sec .btn-box{
  margin-bottom: 25px;
}

.get_in_touch_sec .btn-box li{
  margin-bottom: 10px;
}

.get_in_touch_sec .btn-box li a i{
  background-color: var(--theme-color);
  height:40px;
  width:40px;
  border-radius: 600px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get_in_touch_sec .form form input{
  padding: 15px;
}

.get_in_touch_sec .form form textarea{
  padding: 15px;
  height: 135px;
}

.get_in_touch_sec .form form button{
  padding: 15px;
  width: 100%;
  border: none;
  background-color: var(--theme-color);
  color: #fff;
  text-transform: uppercase;
}

.blog-content .hd_info a {
  display: flex;
  font-size: 14px;
  color: #002a3a;
  gap: 10px;
  align-items: center;
}


.footer{
  
  padding: 100px 0;
  background-position: top!important;
  padding-top: 260px;
}

.footer .ft-list li a{
  color: #333;
  font-size: 14px;
}

.footer .ft-list li {
  margin-bottom: 15px;
}

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

.footer .contact-list li a{
  color: #333;
  font-size: 14px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.footer .contact-list li{
  margin-bottom: 15px;
}
.footer .contact-list li a i{
    background-color: var(--theme-color);
  height:40px;
  width:40px;
  border-radius: 600px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.footer .social a{
   background-color: var(--theme-color);
  height:40px;
  width:40px;
  border-radius: 600px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact_page h2{
  color: var(--theme-color);
}
#contact_page .btn-box li a {
    display: flex;
    background-color:var(--theme-color);
    padding: 15px;
    border-radius: 10px;
    color: #ffffff;
    gap: 10px;
    align-items: center;
}

#contact_page .form.p-4.rounded.bg-white {
 background-color: #2a6272!important;
  color: #fff;
}

#contact_page .form.p-4.rounded.bg-white form{
  color: #002a3a;
}

#contact_page .form.p-4.rounded.bg-white form button{
  background-color: #fff;
  color: #002a3a;
}


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


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

.inner-blog-sec1 img {
  height: auto;
  object-fit: cover;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
  height: 80px;
  object-fit: cover;
}


section.capability h4 {
    font-size: 18px;
    line-height: 1.8;
    color: var(--theme-color);
}

section.capability  button.accordion-button {
    width: 100%;
    display: flex;
    box-shadow: none;
}
section.capability  .accordion-item{
  width: 100%;
  text-align: start;
} 

.capability .accordion {
    width: 100%;
}

.capability .accordion-button::after {
    
    content: "▼";
    background-image: none;
  
}

/* 06.10.2025  */

form.wpcf7-form.init p {
    margin-bottom: 0;
}


/* 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: #b1beed;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

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