@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");
.section-padding {
  padding: 1.5rem 0;
}
body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.5;
  color: #212529;
}
p {
  line-height: 1.3;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
}
.public-error-notice,.bad-request{
    font-size:16px;
    margin-bottom:14px;
    text-align:center;
    color:red;
}
.success-message{
    text-align:center;
    font-size:16px;
    margin-bottom:20px;
    line-height:1.2;
    color:green;
}
.navigation-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.not-main{
    padding-top:125px;
}
.navigation-btns.notNavigation {
  display: none;
}
.navigation-btns button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f79f24;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.navigation-btns button:hover {
  opacity:.6;
}
.navigation-btns button:nth-child(1) {
  left: -20px;
}
.navigation-btns button:nth-child(2) {
  right: -20px;
}
.section-title {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  align-items: center;
}

.section-title h6 {
  font-size: 16px;
  display: block;
    text-align:center;
  font-weight: 700;
  color: #f79f24; 
  letter-spacing: 2px;
}
.section-title h3 {
  font-size: 24px;
  font-weight: 700;
  text-align:center;
}

@media (min-width:768px){
    .section-title h3 {
        text-align:unset;
    }
}
@media (min-width:992px){
  main{
    padding-top:148px;
}  
}

.fixed-whatsapp {
    width: 50px;
    height: 50px;
    background: #00e676;
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    right: 20px;
    color: #fff;
    animation: 1s infinite qiymetAnimation;
    box-shadow: 0 0 0 18px transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px
}

@keyframes qiymetAnimation {
    0% {
        box-shadow: 0 0 0 0 #00e676
    }
}
.seo_increase{
   display:none;
}
/* header */
.no-scroll {
  overflow: hidden;
}
header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 7;
}
.header_top {
  padding: 15px 0;
  background: #212529;
}
.header_top_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_top_wrapper .logo a {
  display: block;
  width: fit-content;
  height: fit-content;
}
.header_top_wrapper .logo a img {
  max-width: 120px;
  width: 100%;
  height: auto;
}
.header_contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header_contact_left {
  display: none;
  align-items: center;
  gap: 20px;
}
.header_contact_box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header_contact_box span {
  width: 40px;
  border-radius: 50%;
  border: 1px solid #f5841a;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  color: #f5841a;
  height: 40px;
}
.header_contact_box article {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.header_contact_box article h6 {
  font-size: 16px;
  color: gray;
  line-height:1;
  font-weight: normal;
}
.header_contact_box article a {
  color: #fff;
  font-size: 1rem;
  transition:.3s ease-in-out;
}
.header_contact_box article a:hover{
    color:#f5841a;
}
.header_contact_right {
  display: none;
}
.header_contact_right ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_contact_right ul li {
  width: 30px;
  height: 30px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.header_contact_right ul li:hover {
  background: #f79f24;
}
.header_contact_right ul li a {
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 12px;
  justify-content: center;
  color: currentColor;
  height: 100%;
}

/* header-bottom */
.header_bottom {
  position: sticky;
  top: 0;
  z-index: 800;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  transition: all 0.3s ease;
}

.mobile_contact {
    display:flex;
    align-items:center;
    gap:10px;
}
.mobile_contact a,.mobile_contact button{
    width:40px;
    height:40px;
    background:rgba(255, 255, 255, 0.1);
   color: #fff;
       border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size:16px;
    -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
	animation: pulsate-fwd 0.5s ease-in-out infinite both;
}
@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* Scrolled Animation */
.header_bottom.scrolled {
  position: fixed;
  top: 0;
  padding: 10px 0;
  background: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
}
.header_bottom nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header_bottom nav button {
  border: none;
  color: #212529;
  cursor: pointer;
  padding-right: 0;
  display: flex;
  height: 50px;
  align-items: center;
  font-size: 16px;
  gap: 10px;
  letter-spacing: 0.1em;
}
.header_bottom nav ul {
  display: none;
  align-items: center;
  gap: 0;
}
.header_bottom nav ul li a.active {
  color: #fff;
  background: #f5841a;
}
.header_bottom nav ul li a:hover {
  background: #f79f24;
}
.header_bottom nav ul li a {
  font-size: 12px;
  display: block;
  padding: 10px 20px;
  line-height: 40px;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  opacity: 1 !important;
}
.header_bottom .language{
    display:flex;
    align-items:center;
    gap:10px;
}
.header_bottom .language a{
    color:#323232;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    font-size:15px;
    transition:.3s ease-in-out;
    border:1px solid #323232;
}
.header_bottom .language a:hover,.header_bottom .language a.active{
    background:#323232;
    color:#fff;
}
/* sidebar */

.all_sidebar {
  display: block;
}

#mobile_navbar {
  max-width: 400px;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #fcfcfc;
  z-index: 999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  transition: 0.3s ease-in-out;
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
}
#mobile_navbar.active_navbar {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
#mobile_navbar::-webkit-scrollbar {
  width: 5px;
}

#mobile_navbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
}

#mobile_navbar::-webkit-scrollbar-thumb {
  width: 3px;
  height: auto;
  background-color: #ddd;
  border-radius: 4px;
}
#mobile_navbar .cancel_logo_mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.cancel_logo_mobile .logo_mobile {
  margin: 0;
  width: auto;
  height: 45px;
}

.cancel_logo_mobile .logo_mobile a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.cancel_logo_mobile .logo_mobile a img {
  width: 100%;
  height: 100%;
  max-height:200px;
      object-fit: contain;
}

.cancel_logo_mobile .cancel_button {
  width: 25px;
  height: 25px;
}

.cancel_logo_mobile .cancel_button #cancel {
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.cancel_logo_mobile .cancel_button svg {
  width: 100%;
  height: 100%;
  fill: #221f1f;
  opacity: 0.8;
}

.mobile_list .mobile_nav_item {
  width: 100%;
}

.mobile_list .mobile_nav_item .mobile_nav_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 500;
  padding: 10px 0;
  color: #212529;
  border-bottom: 1px solid #ddd;
}

.mobile_nav_item .mobile_nav_submenu {
  padding-left: 20px;
  display: none;
}

.mobile_nav_submenu li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #000;
  font-weight: bold;
  opacity: 0.8;
  border-bottom: 1px solid #ddd;
}

.mobile_nav_item:last-child {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile_getQuete {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 2.5rem 1rem 2.5rem;
  border: 0;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  background: transparent;
  color: #fff;
}

.mobile_getQuete:hover {
  cursor: pointer;
}

.mobile_getQuete > span {
  position: relative;
  z-index: 3;
}

.mobile_getQuete::before,
.mobile_getQuete::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  opacity: 0;
}

.mobile_getQuete::before {
  background: #1d1d1d
    repeating-linear-gradient(
      50deg,
      transparent,
      transparent 10px,
      #1d1d1d56 10px,
      #575555 20px
    );
}

.mobile_getQuete::after {
  z-index: 2;
  background: linear-gradient(var(--default) 30%, transparent 100%);
}

@keyframes loading_49100 {
  0% {
    translate: 25px 0;
  }

  100% {
    translate: -30px 0;
  }
}
.mobile_getQuete::before {
  animation: loading_49100 0.6s infinite linear;
}
.mobile_getQuete::before,
.mobile_getQuete::after {
  opacity: 1;
}
header .overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 997;
  display: none;
}

@media (min-width: 576px) and (max-width: 992px) {
  .mobile_getQuete {
    width: unset;
  }
  .mobile_nav_item:last-child {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 420px) {
  .header_contact_right ul li {
    width: 40px;
    height: 40px;
  }
  .header_contact_right {
    display: block;
  }
  .mobile_contact{
      display:none;
  }
}

@media screen and (min-width: 768px) {
    .header_top_wrapper .logo a img{
        max-width:150px;
    }
}
@media screen and (min-width: 992px) {
  .header_contact_left {
    display: flex;
  }
  .header_bottom nav button {
    display: none;
  }
  .header_bottom nav ul {
    display: flex;
  }
}

/* hero section */

.hero_slider {
  min-height: 100vh;
  padding:30px 0;
  position: relative;
  display: flex;
  z-index: 2;
  align-items: center;
}
.hero_slider::after {
  content: "";
  inset: 0;
  z-index: 3;
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}
.hero_slider img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  z-index: 1; 
  position: absolute;
  inset: 0;
}
.hero_slider article { 
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  z-index: 5;
}
.hero_slider article h6 {
  color: #f79f24;
  font-size: 1rem;
  line-height: 1.2;
}
.hero_slider article h4 {
  color: #fff;
  font-size: 1.2rem;
}
.hero_slider article p{
    color:#fff;
}
.hero_slider article a {
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  transition: 0.3s ease-in-out;
  background: #f79f24;
  border: 1px solid #f79f24;
  color: #fff;
}
.hero_slider article a:hover {
  border-color: #064acb;
  background: #064acb;
}
.hero_section .swiper-pagination{
    bottom:20px;
}
.hero_section .swiper-pagination span {
  width: 15px;
  border: 2px solid #fff;
  
  background: #ddd;
  height: 15px;
}
@media screen and (min-width:768px){
    .hero_slider article h4{
        font-size:1.5rem;
    }
}
@media screen and (min-width:992px){
    .hero_section .swiper-pagination {
  bottom: 80px;
}
}
/*get order*/

/* get order */
.get_order {
  position: relative;
  z-index: 5;
 margin:30px 0;
}
.get_order-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap:wrap;
  padding:20px;
  min-height: 80px;
  background: #064acb;
  width: 100%;
  justify-content: space-between;
  position: relative;
}


.get_order-wrapper .book_detail {
  color: white;
  display: flex;
  align-items: center;
  flex-wrap:wrap;
  justify-content:center;
  text-align:center;
  gap: 20px;
  font-size: 1rem;
}
.get_order-wrapper .book_detail figure {
     width: 60px;
    height: 60px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #ddd;
}
.get_order-wrapper .book_detail figure img {
 width: 30px;
    height: 30px;
  filter: invert(1) brightness(1);
}
.book_btn{
    width:100%;
}
.get_order-wrapper .book_btn button {
    width:100%;
  min-width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  min-height:50px;
  background: #f79f24;
}

@media screen and (min-width:768px){
.book_btn{
    width:200px;
}
}
@media screen and (min-width:992px){
    .get_order{
        margin:-50px 0 0;
    }
    .get_order-wrapper {
  width: 100%;
  padding:0;
   align-items: stretch;
}
    .get_order-wrapper::after {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  content: "";
  width: 360%;
  background: #064acb;
}

}
/*get order*/

/* services */
.services_wrapper {
  display: grid;
  column-gap: 20px;
  row-gap: 30px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.services_box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.services_box figure {
  line-height: 1.3;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  border-radius: 50%;
  background: #064acb;
}
.services_box figure img {
  width: 30px;
  height: 30px;
  filter: brightness(1) invert(1);
}
.services_box article {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: space-between;
   
}
.services_box article h2 {
     font-weight: 700;
    font-size: 18px;
    align-items: center;
    justify-content:center;
    display: flex;
    min-height: 54px;
  text-align: center;
}
.services_box article p {
  display: -webkit-box;
  text-align: center;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services_box article a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000;
  display: block;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #e6e6e6;
  transition: 0.3s ease-in-out;
}
.services_box article a:hover {
  color: #f79f24;
  border-color: #f79f24;
}
@media screen and (min-width: 768px) {
  .services_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services_box {
    flex-wrap: unset;
    justify-content: flex-start;
  }
  .services_box article{
      height:100%;
  }
  .services_box article h2 {
    text-align: start;
    justify-content:flex-start;
  }
  .services_box article p {
    text-align: start;
  }
  .services_box article a {
    margin: unset;
  }
}
@media screen and (min-width: 992px) {
  .services_wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* about */
.about_wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.about_left {
  position: relative;
  overflow: hidden;
}
.about_left img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.about_left:after {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}
.about_left a {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 80px;
  z-index: 4;
  height: 80px;
  background: #f79f24;
  animation: pulse 2s infinite;
  border-radius: 50%;
  left: 50%;
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(247, 159, 36, 0.4);
    -webkit-box-shadow: 0 0 0 0 rgba(247, 159, 36, 0.4);
    box-shadow: 0 0 0 0 rgba(247, 159, 36, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 30px rgba(247, 159, 36, 0);
    -webkit-box-shadow: 0 0 0 30px rgba(247, 159, 36, 0);
    box-shadow: 0 0 0 30px rgba(247, 159, 36, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(247, 159, 36, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(247, 159, 36, 0);
    box-shadow: 0 0 0 0 rgba(247, 159, 36, 0);
  }
}
.about_right {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.about_right .subheading {
  font-size: 12px;
  display: block;
  font-weight: 700;
  color: #f79f24;
  letter-spacing: 2px;
}
.about_right h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.tab_area .tab_btns {
  margin-bottom: 20px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tab_area .tab_btns button {
  background: #fff;
  border-radius: 4px;
  color: #000000;
  height: 50px;
  width: 100%;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  -webkit-box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
}
.tab_area .tab_btns button.active,
.tab_area .tab_btns button:hover {
  color: #fff;
  background: #064acb;
}
@media screen and (min-width: 992px) {
  .about_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* call_action */
.call_action {
  background: url("../img/header-img.png");
  width: 100%;
  background-size: cover;
  background-position:center;
  position: relative;
  background-repeat: no-repeat;
}
.call_action .overlay {
  position: absolute;
  top: 0;
  right: 0;
  background: #f79f24;

  bottom: 0;
  width: 100%;
  content: "";
  opacity: 0.8;
}
.call_action_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.call_form-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
.call_action_form {
  width: 100%;
}
.call_action_form span {
  color: #000000;
  font-size: 12px;
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.call_action_form h5 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 24px;
  color: #000000;
}
.call_form-container input,
.call_form-container textarea,
.call_form-container select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}
.call_form-container textarea {
  min-height: 100px;
  max-height: 150px;
  resize: vertical;
}
.call_form-container button {
  padding: 0.875rem;
  border-radius: 5px;
  background-color: #343a40;
  border-color: #343a40;
  color: white;
  transition: 0.3s ease-in-out;
}

@media screen and (min-width: 576px) {
  .call_form-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .call_form-container textarea,
  .call_form-container input[name="adress"],
  .call_form-container select,
  .call_form-container button {
    grid-column: span 2;
  }
}
@media screen and (min-width: 992px) {
  .call_action .overlay {
    width: 50%;
    right: 0;
    opacity: 1;
  }
  .call_action_form {
    width: 45%;
  }

  .call_action_wrapper {
    padding: 2rem;
    justify-content: flex-end;
  }
}

/* blog_card */
.blog_container {
  position: relative;
}
.blog_card {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.blog_card figure {
  height: 250px;
  position: relative;
}
.blog_card figure span {
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 10px;
  background: #f79f24;
  color: #000000;
  z-index: 2;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog_card figure img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  transition: 0.5s ease-in-out;
  height: 100%;
}
.blog_card figure::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
.blog_card article {
  padding: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  background: #dfe0df24;
}
.blog_card article h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  color: #212529;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.blog_card article .content {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  min-height: 38px;
}

.blog_card article a {
  color: #f79f24;
  font-size: 1rem;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid #f79f24;
  color: var(--default);
  transition: 0.3s ease-in-out;
}
.blog_card article a:hover {
  background-color: #f79f24;
  color: white;
}

/* gallery */
.gallery_card {
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery_card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image zoom effect on hover */
.gallery_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery_card:hover img {
  transform: scale(1.1);
}

/* Overlay animation */
.gallery_card .gallery_overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  inset: 0;
  padding: 10px;
  background: rgba(6, 74, 203, 0.8);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery_card:hover .gallery_overlay {
  opacity: 1;
  transform: scale(1);
}

/* Overlay content animations */
.gallery_card .gallery_overlay a {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  position: relative;
  top: 33%;
  transform: translateY(-33%);
  z-index: 4;
  align-items: center;
  justify-content: center;
  color: white;
  background: #f79f24;
  font-size: 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.gallery_card:hover .gallery_overlay a {
  transform: scale(1.1);
  background-color: #f5841a;
}

.gallery_overlay .gallery_about {
  margin-top: 10px;
  width: 100%;
}

.gallery_overlay .gallery_about span,
.gallery_overlay .gallery_about h2 {
  color: #fff;
  margin: 5px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery_card:hover .gallery_overlay .gallery_about span,
.gallery_card:hover .gallery_overlay .gallery_about h2 {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive container */
@media screen and (min-width: 992px) {
  .gallery_section .container {
    max-width: 100%;
    padding: 0;
  }
}

/* footer */
footer {
  background: #212529;
}
footer .footer_head {
  padding: 50px 0;
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr;
}
.footer_head .logo {
  margin-bottom: 20px;
}
.footer_content {
  display: none;
}
.footer_content:first-child,
.footer_content:last-child {
  display: block;
}
.footer_head p {
  color: #fff;
}
.footer_head .logo a {
  display: block;
  width: 100%;
  max-height: 55px;
  height: 100%;
}
.footer_head .logo a img {
  max-width: 150px;
  display: block;
  width: 100%;
  height: 100%;
}
.footer_content h3 {
  line-height: 55px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
.footer__about__social {
  display: flex;
  align-items: center;
  row-gap: 10px;
  margin-top: 20px;
  gap: 20px;
}
.footer__about__social a {
  transition: 0.3s ease-in-out;
  font-size: 20px;
  color: #fff;
  display: inline-block;
}
.footer__about__social a:hover {
  color: #f5841a;
}
.footer_content ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.footer_content ul li a,
.footer_content ul li span {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  gap: 6px;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.footer_contact_list li :is(a,span) {
    font-size: 1.2rem !important;
    align-items: flex-start !important;
}
.footer_content ul li a:hover {
  color: #f5841a;
}
.footer_bottom {
  padding: 20px 0;
  border-top: 1px solid #fff;
  color: #fff;
  text-align: center;
}
.footer_bottom a {
  font-weight: bold;
  transition: 0.3s ease-in-out;
  color: #fff;
}
.footer_bottom a:hover {
  color: #f79f24;
}

@media screen and (min-width: 768px) {
  footer .footer_head {
    grid-template-columns: 1fr 1fr;
  }
  .footer_content {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .footer_bottom {
    justify-content: center;
  }

  footer .footer_head {
    grid-template-columns: 1.5fr 1fr 1.8fr 1.2fr;
  }
}





.navigation-bar {
  height: 300px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
      align-items: center;
      justify-content:center;
    display: flex;
  background-position: center !important;
  position: relative;
  background-attachment: fixed !important;
}
.navigation-bar::after {
    position:absolute;
  inset: 0;
  content: "";
  background: rgba(0,0,0,0.5);
  z-index: 1;
  width: 100%;
  height: 100%;
}
.navigation-bar article {
  width: 100%;
  height: 100%;
  padding:20px 0; 
  z-index:4;
  position: relative;
  text-align:center;
}
.navigation-bar article  .speedbar {
    margin-bottom:20px;
}
.navigation-bar article :is(a, span, h1,.speedbar) {
  color: #fff;
}

@media screen and (min-width:768px){
    .navigation-bar{
        justify-content:flex-start;
    display: flex;
    align-items: flex-end;
    }
    .navigation-bar article {
            text-align:start;
    }
}


.grid_wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  .grid_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .grid_wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid_wrapper-services{
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
  }
}


/*advantages*/

.advantages_wrapper {
  display: grid;
  gap: 10px;
  counter-reset: headings;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.advantages_box {
  text-align: center;
  border-radius: 10px 0px 10px 0px;
  background-color: #ffffff;
  padding:20px;
  position: relative;
  margin-top: 0;
  border: 1px solid #e4e4e4;
border-bottom-color:#336699;
    border-bottom-width: 4px;
}
.advantages_box .feature_counter {
  position: absolute;
  left: 0;
  font-size: 42px;
  font-weight: 600;
  color: #333333;
  opacity: 0.1;
  left: 30px;
}
.advantages_box .feature_counter:before {
  counter-increment: headings;
  content: counter(headings) ". "; /* Adds the number before the heading */
  font-weight: bold;
}
.advantages_box figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.advantages_box figure img {
  width: 50px;
  height: 50px;
}
.advantages_box article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
}
.advantages_box article h3 {
  font-size: 22px;
  color: #333333;
}

.advantages_box article p {
  word-break: break-word;
  color: #717171;
}
.advantages_box article a {
  color: #333333;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .advantages_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
