@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
  --theme-color: #000000;
  --theme-color-second:#462b34;
  --theme-color-third: #24c0b3;

  --heading-font: "Nunito Sans", sans-serif;
  --paragraph-font:  "Inter Tight", 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!important;
  padding: 0!important;
  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:  "Inter Tight", sans-serif;
  /* color: var(--theme-color) !important; */
}


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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  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: 75px;
    font-weight: 600;
}
h2 {
  font-size: 45px;
    font-weight: 600;

}

h3 {}

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

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

.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: 135px;
}
.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: 14px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  border: 1px solid #eeeeee;
}

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

a.fit-btn{
  width: fit-content;
}
a.btn-white {
  background: #fff;
  color: #1e1e1e;
}
.header_menu li a {
    color: #000000;
    font-size: 13px;
    text-transform: uppercase;
    padding: 29px 15px;
    display: inline-block;
    font-weight: 400;
    letter-spacing: 2px;
}

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

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



/* banner_sec */
.banner_sec{
  height: 100vh;
  display: flex;
  align-items: center;
  background-position: bottom!important;
}
.banner_sec .heading h5{
  font-size: 14px;
  color: var(--theme-color-second);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.banner_sec .heading h1 span{
 color: var(--theme-color-second);
 position: relative;
}
.banner_sec .heading h1 span::before {
    content: "";
    background: url(../image/shape.png);
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    position: absolute;
    top: -20px;
    left: 0;
    width: 139%;
    height: 139%;
    background-position-x: 0% !important;
}

.banner_sec .contact-list{
  display: flex;
  gap: 25px;
  justify-content: start;
  align-items: center;
}
.banner_sec .contact-list li a{
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}

.home_sec_2 h2{
  color: var(--theme-color-second);
}

.home_sec_2 .service-box{
  border-radius: 15px;
  background-color: var(--theme-color-second);
  color: #fff;
}

.home_sec_2 .service-box.bg-light span{
  display: flex;
  color: var(--theme-color-second);
  gap: 10px;
  font-size: 18px;
  align-items: center;
  margin-bottom: 10px;
}
.home_sec_2 .service-box span{
  display: flex;

  gap: 10px;
  font-size: 18px;
  align-items: center;
  margin-bottom: 10px;
}
.home_sec_2 .service-box span i{
  color: var(--theme-color-third);
}

.home_sec_2 .service-box span h5{
  font-size: 18px;
}
.home_sec_2 .service-box p{
  font-size: 15px;
  margin-bottom: 0;
}
/* .home_sec_3 */
.home_sec_3{
  background-attachment: fixed!important;
  color: #eeeeee;
}
.home_sec_3 ul.empl-sec {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.home_sec_3 ul.empl-sec  li a{
  background-color: transparent;
  border: 1px solid #ffffff5e;
  display: flex;
  justify-content: center;
  gap:15px;
  align-items: center;
  color: #eeeeee;
  width: 14rem;
  padding: 15px;
  border-radius: 5px;
}
.home_sec_3 ul.empl-sec  li.active a{
  background-color: #ffffff5e;
}

.home_sec_3 .list-box{
     display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}
.home_sec_3 .list-box li {
    display: flex;
    color: #1e1e1e;
    background-color: #eeeeee;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    width: 17rem;
}
.home_sec_3 .list-box li img{
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.home_sec_3 .list-box li h5{
  font-weight: 600;
  font-size: 19px;
}
.home_sec_4 h2{
  color: var(--theme-color-second);
}
.home_sec_4 .qout-box {
    background-color: var(--theme-color-second);
    color: #eeeeee;
    padding: 24px;
    border-radius: 14px;
}

.home_sec_4 .qout-box h4 {
    font-size: 28px;
    letter-spacing: 2px;
}
.home_sec_5 h2{
  color: var(--theme-color-second);
}
.home_sec_5 span.badge {
    background-color: #e7e4e5;
    color: var(--theme-color-second);
    padding: 8px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.home_sec_5  ul.left-content li {
    display: flex;
    width: 100%;
    align-items: start;
    margin-bottom: 25px;
}
.home_sec_5  ul.left-content li  img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    position: relative;
    left: 25px;
    top: 15px;
}
.home_sec_5  ul.left-content li  .content-box{
  background-color: #fff;
  color: #1e1e1e;
  transition: 0.6s ease;
}
.home_sec_5  ul.left-content li:hover  .content-box{
  background-color: var(--theme-color-second);
  color: #eee;
  transition: 0.6s ease;

}

.home_sec_6 h2{
  color: var(--theme-color-second);
}
.home_sec_6 .service-box {
  position: relative;
}
.home_sec_6 .service-box .over-lay{
  position: absolute;
  bottom: 0;
  width: 100%;  
}
.home_sec_6 .service-box .over-lay h5 {
    margin-bottom: 0;
    font-size: 25px;
}
.home_sec_6 .service-box  img{
  border-radius: 15px;
  object-fit: cover;
}
.home_sec_6 .row-1 img{
 height: 450px;
}
.home_sec_6 .row-2 img {
    height: 895px;
}
.home_sec_6 .row-4 img {
    height: 429px;
}

/* Cards */
.home_sec_7 .step-card {
    background: #e9e6e6;
    padding: 20px;
    border-radius: 10px;
    /* height: 100%; */
    text-align: left;
    transition: 0.3s ease;
}

.home_sec_7 .step-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.home_sec_7 .step-card .icon {
  width: 60px;
  height: 60px;
  border: 0px solid #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 18px;
}
.home_sec_7 .step-card .icon img{
  width: 100%;
  height: 100%;
}
/* Text */
.home_sec_7 .step-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 19px;
    color: var(--theme-color-second);
}

.home_sec_7 .step-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Arrow */
.home_sec_7 .arrow img {
width: 60px;
 
}

/* Button */
.home_sec_7 {
  background-position: bottom!important;
}

.home_sec_8 .team-box .social{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.home_sec_8 .team-box .social a{
  display: flex;
  align-items: center;
  background-color: var(--theme-color-second);
  justify-content: center;
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 5px;
}
.home_sec_8 .team-box .social a:hover{
  background-color: var(--theme-color-third);
  border-radius:50px;
}

.home_sec_9 .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    box-shadow: none;

}
.home_sec_9 .accordion-button{
    color: #000000;
    background-color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    box-shadow: none;
}

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

.home_sec_9  .accordion-button::after {
    background-image:none;
    content: '+';
 
}

.home_sec_10 {
  color: #eee;
}
.home_sec_10 .test-box {
  background-color: #000;
}
.home_sec_10 .test-box .qoute-box{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.home_sec_10 .test-box .qoute-box .qoute{
  background-color: var(--theme-color-second);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  justify-content: center;
}
.home_sec_10 .test-box .qoute-box .qoute img{
  width: 20px;
}
.home_sec_10 .test-box .qoute-box .content h5{
  margin-bottom: 0;
  font-size: 19px;
}
.home_sec_10 .test-box .qoute-box .content p{
  margin-bottom: 0;
  font-size: 16px;
}

.home_sec_10 .test-box .content-box{
  margin-bottom: 25px;
  overflow-y: scroll;
  height: 150px;
  padding-right: 15px;
  text-align: justify;
  margin-bottom: 25px;
}

.home_sec_10 .rating{
  display: flex;
  align-items: center;
  gap: 3px;
  color: orange;
}

.home_sec_11 .blog-box h5 a {
    color: #000;
    font-weight: 600;
    display: block;
    line-height: 1.6;
    font-size: 18px;
}

.home_sec_11 .blog-box  .date{
  font-size: 14px;
  color: #666;
}
.home_sec_12 {
 
  display: flex;
  align-items: center;
}

.home_sec_12 form input,
.home_sec_12 form textarea,
.home_sec_12 form button{
  border: none;
  padding: 15px;
  border-radius: 5px;
  width: 100%;
}
.home_sec_12 form button{
  background-color: var(--theme-color-second);
  color: #eee;
  text-transform: uppercase;
  transition: 0.6s;
}
.home_sec_12 form button:hover{
  background-color: var(--theme-color-third);
  color: #eee;
  text-transform: uppercase;
  transition: 0.6s;
}
.home_sec_12 form textarea {
  height: 150px;
}

/* footer */
.footer{
  background-color: var(--theme-color-second);
 color: #eee;
  padding: 80px 0;
}

.footer .ft-log-box{
  height: 100%;
  border-radius: 10px;
 
}

.footer .ft-log-box .contact-list li {
  margin-bottom: 10px;
}
.footer .ft-log-box .contact-list li a{
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 5px;
  color: var(--theme-color);
}
.footer .ft-log-box .contact-list li a i{
  color: var(--theme-color-second);
  font-size: 18px;
}
.footer .ft-log-box .contact-list {
  margin-bottom: 65px;
}

.footer .ft-log-box .social{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer .ft-log-box .social li a{
  background-color: var(--theme-color-second);
  color: #eee;
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.footer .ft-log-box .social li a:hover{
 background-color: var(--theme-color-third);
}

.footer .ft-head .list-unstyled li a{
  color: #eee;
  display: flex;
  align-items: self-start;
  gap: 5px;
  font-size: 14px;
}
.footer .ft-head .list-unstyled li {
  margin-bottom: 18px;
}
.footer .ft-head h4{
  font-size: 21px;
}

.footer .list-item{
  display: flex;
  gap: 15px;
}
.footer .list-item li a{
  font-size: 14px;
  color: #eee;
}
.home_sec_7 .step-card p {
    font-size: 20px;
    color: #666;
    margin: 0;
}
.fixed-bottom{
  position: fixed;
  bottom: 0;
}
a.btn-new{
  display: flex;
  background-color: var(--theme-color-second);
  text-transform: uppercase;
  width: 100%;
  z-index: 90;
  color: #fff;
  height: 70px;
  align-items: center;
  justify-content: center;
}
a.btn-new.btn-2{
  background-color: var(--theme-color-third);
}

#exampleModal-1.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: var(--theme-color-second);
}

#exampleModal-1 form input,
#exampleModal-1 form textarea,
#exampleModal-1 form button{
  border: none;
  border: 2px solid var(--theme-color-second);
  padding: 14px;
  width: 100%;
}
#exampleModal-1 form label{
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--theme-color-second);
}
#exampleModal-1 form textarea {
  height: 155px;
}
#exampleModal-1 form button{
  background-color: var(--theme-color-second);
  color: #eee;
  text-transform: uppercase;
  transition: 0.6s;
}
#exampleModal-1  form button:hover{
  background-color: var(--theme-color-third);
  color: #eee;
  text-transform: uppercase;
  transition: 0.6s;
}

.inner_baner_sec{
  height: 70vh;
  display: flex;
  align-items: center;
}
.inner_baner_sec h1{
  margin-bottom: 0;
  color: var(--theme-color-second);
}

/* Pagination Styling */
.custom-pagination .page-link {
  color: var(--theme-color-second);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-family: var(--paragraph-font);
  box-shadow: var(--shadow-small);
  transition: 0.3s;
  border: 1px solid var(--theme-color-second);
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0!important;
}

.custom-pagination .page-link:hover {
  background: var(--theme-color-third);
  color: #fff;
  box-shadow: var(--shadow-base);
}
 .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    gap: 10px;
}

.custom-pagination .page-item.active .page-link {
  background: var(--theme-color-second);
  color: #fff;
  box-shadow: var(--shadow-base);
}

.custom-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
    margin: 0!important;
    border: 1px solid var(--theme-color-second)!important;
}

#inner-blog h1{
  font-size: 45px;
}
.product_catagories h2{
  font-size: 30px;
}
.product_catagories h3{
  font-size: 25px;
}
.product_catagories h4{
  font-size: 20px;
}


.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;
    background: #fff;
    color: #000;
}

.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;
  height: 450px;
  object-fit: cover;
}

.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;
    background: #fff;
    color: #000;
}
.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;
    font-weight: 600;
}

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

/* Contact Page */

.contact-info-content {
  background: var(--theme-color-second);
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}

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

.contact-info-content .icon-info {
  margin-top: 20px;
}

.contact-info-content .icon-info h4 {
  color: #fff;
  margin-bottom: 4px !important;
  font-weight: 400;
}

.contact-info-content .icon-info p {
  color: #eee;
  font-size: 16px;
  font-weight: 400;
  word-break: break-all;
}

.contact-info-content .icon-info p a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.contact-info span {
  color: #cb1818;
  font-size: 16px;
  /* font-family: "Pacifico", cursive; */
  font-weight: 300;
  letter-spacing: 1.6px;
}

.contact-page-form h2 {
  color: #111;
  font-size: 40px;
}

.map {
  line-height: 0;
}
.map iframe{
 width: 100%;
}
.contact-info input {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.contact-info select {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.input:focus {
  color: #5F656F;
  background-color: #fff;
  border-color: #5F656F;
  outline: 0;
  box-shadow: none;
}

.contact-info textarea {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.contact-info button {
  padding: 15px 0px;
  background: var(--theme-color-second);
  color: #fff;
  border: none;
  letter-spacing: 1px;
  transition: 1s;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
}

.form-check input {
  width: 25px;
}

.form-check {
  display: flex;
  align-items: baseline;
  padding-left: 0;
  /* justify-content: center; */
}


.contact-info .map iframe{
  height: 100%;
  width: 100%;
}
.contact-info .map {
  height: 100%;
}

/* consistancy-2 */

.consistancy-2 .list-style li{
  padding: 15px;
  background-color: #eee;
  border-bottom: 2px solid #462b34;
}
.consistancy-2 .list-style li a{
  color: var(--theme-color-second);
}
.consistancy-2 .list-style {
  border: 2px solid #462b34;
  margin-bottom: 0;
}
.consistancy-2 .list-style li:last-child{
  border-bottom: none;
}
a.btn-fit{
  width: fit-content;
}
.consistancy-1 ol li{
  margin-bottom: 15px;
}

.consistancy-1 .not-list li{
  margin-bottom: 15px;
}

.solution_1 ul li{
  margin-bottom: 15px;
}
.solution_1 ul {
  list-style: disc;
  padding-left: 15px;
}

.solution_2 ul li{
  margin-bottom: 15px;
}
.solution_2 ul {
  list-style: disc;
  padding-left: 15px;
}
.solution_2 ul li a{
  color: #462b34;
  text-decoration: underline;
}
.reasearch_sec a.comon-btn{
  display: flex;
  align-items: center;
  justify-content: center;
}

form.wpcf7-form.init p {
    margin-bottom: 0px;
}
.pagination li a{
	box-shadow: none !important;
	outline: none !important;
}

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

.inner-blog-left-sec .inner-blog-sec1 form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}
.inner-blog-left-sec .inner-blog-sec1 #submit {
  color: #ffffff !important;
  background-color: #462b34!important;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #462b34;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-sec1 #submit:hover {
  background: #24c0b3 !important;
  border: 1px solid #24c0b3;
  color: #fff;
  transition: 0.5s;
}
input#wp-comment-cookies-consent {
    width: 40px;
}
.search-form label{
	width: 100%;
}

#main_header {
  transition: all 0.3s ease;
}

#main_header.scrolled {
  background: #fff;
  box-shadow: 9px 8px 15px -1px rgba(0, 0, 0, 0.1);
}

#mobile_header{
  transition: all 0.3s ease;
}

#mobile_header.scrolled {
  background: #fff;
  box-shadow: 9px 8px 15px -1px rgba(0, 0, 0, 0.1);
}

/* new css */

.home_sec_3 .empl-sec {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  gap: 10px;
}

.home_sec_3 .empl-sec li {
  cursor: pointer;
}

.home_sec_3 .empl-sec li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f8f8f8;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.home_sec_3 .empl-sec li.active a {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Tab Content */
.home_sec_3 .tab-content > div {
  display: none;
}

.home_sec_3 .tab-content > div.active {
  display: block;
}

/* List box styling (optional polish) */
.home_sec_3 .list-box {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.home_sec_3 .list-box li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home_sec_3 .list-box img {
  width: 40px;
  height: 40px;
}