@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 {
  --theme-color: #000000;
  --theme-color-second:#ffbb12;
  --theme-color-third: #000;

  --heading-font: "Poppins", sans-serif;
  --paragraph-font: "Poppins", 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: #050112;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Poppins", sans-serif;
  /* color: var(--theme-color) !important; */
}


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: 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: 55px;
    font-weight: 600;
}

h2 {
  font-size: 45px;
}

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

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

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
   z-index: 99999999;
}

.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: 77px;
    position: relative;
    top: -5px;
}
.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: #000000;
  display: inline-block;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 500px;
  width: 14rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--theme-color-second);
}

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

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

a.comon-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255,187,18,0.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

a.comon-btn:hover::before {
  animation: shootingStar 0.8s ease-out forwards;
  opacity: 1;
}

a.comon-btn:hover::after {
  opacity: 1;
} 


a.btn-white {
  background: #fff;
  color: #1e1e1e;
  border: 1px solid #fff;
}
.header_menu li a {
    color: #ffffff;
    font-size: 15px;
    text-transform: capitalize;
    padding: 29px 19px;
    display: inline-block;
    font-weight: normal;
}

.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;
}
.fixed-top {
   
    z-index: 999999999;
}


@keyframes zeroGravity {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.zero-gravity {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.zero-gravity:hover {
  animation: zeroGravity 2.5s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
@keyframes spaceDrift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.spaceDrift {
  background-size: 120% 120%;
  animation: spaceDrift 40s linear infinite;
}

a.search {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffbb12;
    color: #000;
    height: 44px;
    width: 44px;
    border-radius: 600px;
}

div#exampleModal1 {
  background: #000;
    background-image: url(../image/bg-1.gif)!important;
    background-position: center!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
	z-index: 999999;
}


/* Background overlay */
div#exampleModal1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Keep modal content above overlay */
div#exampleModal1 > * {
  position: relative;
  z-index: 2;
}

.model-search form{
  display: flex;
  border: 2px solid var(--theme-color-second);
  color: #fff;
  background: transparent;
}

.model-search form ::placeholder{
  color: #fff;
}
.model-search form  input, .model-search form button{
  border: none;
  padding: 15px;
  background: transparent;
  color: #fff;
}

.model-search .modal-content {
   
    background-color: transparent;
 
}
.container , .container-fluid{
  position: relative;
  z-index: 1111;
}

/* banner_Sec */

.banner_Sec {
  padding: 200px 0;
  background-position-x: 100%!important;
  position: relative;
 
  
}

.banner_Sec .container{
  position: relative;
  z-index: 11;
}

.banner_Sec h1{
  color: var(--theme-color-second);
}

.banner_Sec h1 span{
  color: #fff;
  font-weight: 400;
}

#galaxy {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.3;
  z-index: 1;
}

.zero-gravity-2{
    animation: zeroGravity 2s ease-in-out infinite;
}

.home_Sec_2 {
  background-color: #050112;
  color: #fff;
}

.home_Sec_2 .video-box{
  position: relative;
}

.home_Sec_2 .over-lay-btn{
  height: 60px;
  width: 60px;
  background-color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  border-radius: 600px;
  border: 2px solid white;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.home_Sec_2 .video-box:hover .over-lay-btn{
  color: var(--theme-color-second);
  background-color: var(--theme-color);
}

/* home-sec-3 */

.home_Sec_3 .serviice-box {
    height: 100%;
    border: 1px solid #fff;
    background-color: #272933;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home_Sec_3 .serviice-box h3 {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.home_Sec_3 .serviice-box  p{
  font-size: 14px;
  margin-bottom: 10px;
}

.home_Sec_3 .serviice-box .accordion-button{
   font-size: 14px;
}

.home_Sec_4 {
    background-position: bottom!important;
    padding-bottom: 670px;
}

.home_Sec_4 .why-box{
  background-color: #ffffff27;
  border-radius: 15px;
}

.home_Sec_4 .why-box h4{
  margin-bottom: 10px;
  font-size: 22px;
}
.home_Sec_4 .why-box p{
  margin-bottom: 0;
}

.home_Sec_4 .accordion-button, .home_Sec_4 .accordion-item {
    background-color: #f5f5f530;
}
.home_Sec_4 .accordion-item {
  color: #fff;
}
/* home_sec_5 */

.home_sec_5{
  background-color: #000;
  color: #fff;
}

.home_sec_5 p span{
  font-size: 19px;
}
.home_sec_5 p span a{
  color: var(--theme-color-second);
}
/* home_sec_6 */

.home_sec_6{
   background-color: #000;
  color: #fff;
}


.home_sec_6 img{
  height: 110px;
  object-fit: contain;
  margin: 0 auto;
}

.home_sec_7 {
  background-color: #000;
  color: #fff;
}

.home_sec_7 .test-box {
  background-color: #1a1b1f;
  color: #fff;
}
.home_sec_7 .test-box .rating{
  color: var(--theme-color-second);
  display: flex;
  font-size: 14px;
}

.home_sec_7 .test-box .content {
  height: 130px;
  overflow-y: scroll;
  margin-bottom: 25px;
}
.home_sec_7 .test-box .content p{
  font-size: 14px;
}
.home_sec_7 .test-box h5{
  margin-bottom: 0;
  font-size: 17px;
}
/* home_sec_8 */
.home_sec_8 {
 background-color: #000;
  color: #fff;
}
.home_sec_8 .heading-box{
  background-color: #262728;
  color: #fff;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* home_sec_9 */

.home_sec_9 {
   background-color: #000;
  color: #fff;
}

.home_sec_9 .blog-box{
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 2px solid #fff;
}

.home_sec_9 .blog-box .over-lay{
  position: absolute;
  width: 100%;
}


.home_sec_9 .over-lay-1{
  top: 0;
  
}


.home_sec_9 .over-lay-1 a {
    font-size: 35px;
    color: #fff;
    rotate: 45deg;
    display: inline-block;
    text-align: end;
    margin-left: auto;
}

.home_sec_9 .over-lay-2{
  bottom: 0;
  
}

.home_sec_9 .blog-box img{
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* home_sec_10 */
.home_sec_10{
  background-color: #000;
  color: #fff;
}

.home_sec_10 .contact-box{
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 18px;
  min-height: 180px;
}
.home_sec_10 .contact-box-2{
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 18px;
}
.home_sec_10 .contact-box i{
  display: flex;
  height: 55px;
  width: 55px;
  background-color: #fff;
  color: var(--theme-color-second)  ;
  border-radius: 600px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 22px;
}

.home_sec_10 .contact-box p{
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;

}

.home_sec_10 .contact-box a{
  font-size: 18px;
  color: #fff;
}

.home_sec_10 .contact-box .small-addrees{font-size: 14px;}
.home_sec_10 .contact-box-2 form ::placeholder{
  color: #fff;
  opacity: 0.5;
}
.home_sec_10 .contact-box-2 form input{
 background-color: #3e3e3e;
 padding: 10px;
 color: #fff;
 border-radius: 3px;
 border: none;
 font-size: 14px;

}

.home_sec_10 .contact-box-2 form select{
 background-color: #3e3e3e;
 padding: 10px;
 color: #fff;
 border-radius: 3px;
 border: none;
 font-size: 14px;
}

.home_sec_10 .contact-box-2 form textarea{
 background-color: #3e3e3e;
 padding: 10px;
 color: #fff;
 border-radius: 3px;
 border: none;
 padding: 15px;
 font-size: 14px;
  height: 125px;
}

.home_sec_10 .contact-box-2 form button{
 background-color: var(--theme-color-second);
 padding: 10px;
 color: #000;
 border-radius: 3px;
 border: none;
 font-size: 14px;
 width: 100%;

}

.footer{
  padding-top: 80px;
  padding-bottom: 450px;
  color: #fff;
  background-position: bottom!important;
}

.footer .social{
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
.footer .social a {
    display: flex;
    width: 60px;
    height: 60px!important;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-second);
    color: #000;
    border-radius: 600px;
    font-size: 24px;
    height: 100%;
}

.footer .ft-btn{
  background-color: var(--theme-color-second);
  color: #000000;
  font-weight: 400;
 
  padding: 15px 25px;
  border-radius: 600px;
  gap: 15px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.footer .ft-btn  i{
  font-size: 19px;
}
.footer .ft-btn p{
  display: inline-block;
  line-height: 1.5;
  border-left: 2px solid #000;
  padding-left: 10px;
  margin-bottom: 0;
}

.footer .ft-btn p span{
  font-size: 25px;
}

.footer .ft-list {
  display: flex;
  gap: 20px 35px;
  flex-wrap: wrap;
  justify-content: center;
  text-transform: uppercase;
}

.footer .ft-list li a{
  color: #c1c0bd;
}

.inner-banner{
  padding:100px 0;
  background-color: #000;
}


.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: #050112;
    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: #000000;
  margin-bottom: 4px !important;
  font-weight: 400;
}

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

.contact-info-content .icon-info p a {
    color: #000000;
    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 {
   background-color: #3e3e3e;
 padding: 10px;
 color: #fff;
 border-radius: 3px;
 border: none;
 font-size: 14px;
}

.contact-info select {
   background-color: #3e3e3e;
 padding: 10px;
 color: #fff;
 border-radius: 3px;
 border: none;
 font-size: 14px;
}

.input:focus {
  background-color: #3e3e3e;
 padding: 10px;
 color: #fff;
 border-radius: 3px;
 border: none;
 font-size: 14px;
}
.contact-info form ::placeholder{
  color: #fff;
}
.contact-info textarea {
   background-color: #3e3e3e;
 padding: 10px;
 color: #fff;
 border-radius: 3px;
 border: none;
 font-size: 14px;
 height: 120px;
}

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


.in_the_news_sec .text-white.text-center{
  height: 100%;
  background-color: #272933;
}

.in_the_news_sec .text-white.text-center img{
  height: 55px;
  object-fit: contain;
}

.in_the_news_sec.training_sec_1 img{
  height: 250px;
  object-fit: cover;
}

.catalogue_sec_1 .accordion-button span {
  background-color: var(--theme-color-second);
  padding: 3px 18px;
  color: #000;
  margin-right: 10px;
  font-size: 12px;
  border-radius: 600px;
}
.catalogue_sec_1 .accordion-item{
  margin-bottom: 10px;
}
.catalogue_sec_1 .accordion-body ul li a{
  color: #c1c0bd;
}
.catalogue_sec_1 .accordion-body ul li {
  margin-bottom: 10px;
}
.catalogue_sec_1 .accordion-body ul{
  list-style: disc;
  padding-left: 20px;
  color: #fff;
}

.inner_course_sec tbody, .inner_course_sec td, .inner_course_sec tfoot, .inner_course_sec th, .inner_course_sec thead, 
.inner_course_sec tr {
    border-color: #050112!important;
    border-style: solid;
    border-width: 1px;
    padding: 1rem!important;
}

.inner_course_sec .table>:not(caption)>*>* {
    padding: .5rem .5rem;
    background-color: #3e3e3e;
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    color: #fff;
}
.inner_course_sec th{
  font-weight: normal!important;
  color: var(--theme-color-second)!important;
}

.inner_course_sec li{
  margin-bottom: 10px;
}

.inner_course_sec ul{
  list-style: disc;
  padding-left: 15px;
}
.inner_course_sec h3{
 font-size: 30px;
 color: var(--theme-color-second);
}
.inner_course_sec h4{
  font-size: 20px;
  color: #c1c0bd;
}
.inner_course_sec .accordion-item{
  margin-bottom: 10px;
}


.instructor-profiles_sec .instructor-pofiles {
  background-color: #3e3e3e;
}

.client_list_sec a.comon-btn{
  width: 100%;
}

.our_goal .goal-box{
  background-color: #3e3e3e;
  border-radius: 10px;
  height: 100%;
}
.our_goal .goal-box h5{
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  letter-spacing: 2px;
}

.our_goal .goal-box p{
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

.inner-service-2 .head{
  background: #3e3e3e;
}

.faq_sec_2 .accordion-item{
  margin-bottom: 10px;
  color: #fff;
}

.faq_sec_2 .accordion-item p a{
  color: var(--theme-color-second);
}

.faq_sec_2 .accordion-item a{
  color: var(--theme-color-second);
  
}
.space-pagination.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    gap: 12px;
}

.space-pagination .page-link {
    background: radial-gradient(circle at top, #2a1a00, #120a00);
    color: #ffd27d;
    border: 1px solid rgba(255, 180, 60, 0.35);
    /* margin: 0 6px; */
    /* padding: 10px 16px; */
    border-radius: 50%;
    transition: all 0.35s ease;
    box-shadow: inset 0 0 12px rgba(255, 180, 60, 0.25);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-pagination .page-link:hover {
  color: #ffffff;
  background: radial-gradient(circle at center, #ffae00, #ff6a00);
  box-shadow:
    0 0 10px rgba(255, 170, 0, 0.9),
    0 0 28px rgba(255, 120, 0, 0.8);
  transform: translateY(-2px);
}

.space-pagination .page-item.active .page-link {
  background: radial-gradient(circle, #ffd700, #ff8c00);
  color: #000000;
  border-color: #ffd700;
  box-shadow:
    0 0 14px rgba(255, 215, 0, 1),
    0 0 36px rgba(255, 140, 0, 0.95);
}

.space-pagination .page-item.disabled .page-link {
    opacity: 1;
    pointer-events: none;
    box-shadow: none;
    color: #fff;
}


/* inner blog css */
.main-sec.product_catagories{
  color: #fff;
  padding-top: 130px;
}

.main-sec.product_catagories h1{
  font-size: 40px;
  font-weight: normal;
}
.main-sec.product_catagories h2{
  font-size: 35px;
}
.main-sec.product_catagories h3{
  font-size: 25px;
}
.main-sec.product_catagories h4{
  font-size: 20px;
}

.main-sec.product_catagories ul{
  list-style: disc;
  padding-left: 20px;
}

.main-sec.product_catagories .accordion-item{
  color: #fff;
  margin-bottom: 10px;
}
.main-sec.product_catagories li{
  margin-bottom: 10px;
}

.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: #3e3e3e;
    color: #fff;
}

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

.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: #fff;
  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: 15px 19px 35px;
    border-radius: 8px;
    background: #3e3e3e;
    color: #fff;
}
.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.inner-blog-right-sec .blog-search form ::placeholder{
  color: var(--theme-color-second);
}
.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  background: transparent;
}

.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: var(--theme-color-second);
}

.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: #fff;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

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

.product_catagories .accordion-button {
  text-transform: none;
  letter-spacing: 0;
}

.about_Sec_2 .accordion-item{
  border: 1px solid #fff!important;
}

.why_choose_us h2{
  color: #193a43;
}

.why_choose_us  ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.why_choose_us  ul li  img{
  width: 15px;
  height: 15px;
  object-fit: contain;
}


.home_sec_10 .contact-box-2 .submit-btn {
    background-color: var(--theme-color-second);
    padding: 10px;
    color: #000;
    border-radius: 3px;
    border: none;
    font-size: 14px;
    width: 100%;
}

.home_sec_10 .contact-box-2 form p {
    margin-bottom: 0px;
}

div#form-action p {
	margin-bottom: 0px;
}

div#form-action .submit-contact-btn {
    padding: 15px 0px;
    background: #ffbb12;
    color: #fff;
    border: none;
    letter-spacing: 1px;
    transition: 1s;
    width: 100%;
    border-radius: 3px;
    font-weight: 400;
    text-transform: uppercase;
}

.inner-service-2 .accordion .accordion-body p {
	color: white !important;
}

.blog-line .over-lay-1 a {
    rotate: 0deg !important;
	text-align: start !important;
}

form.wpcf7-form.init p {
    margin-bottom: 0;
}
.my-cntact label{
	width:100%;
}
