* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styling for the header */





header {
  background-color: #3333333d;
  color: white;
  width: 100%;
  position: fixed; /* Make the header sticky */
  top: 0;
  left: 0;
  z-index: 1000; /* Ensure the header is on top */
}

.top-header {
  background-color: #0000004f;
  padding-top: 13px;
  padding-bottom: 15px;
}

.header-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  position: relative;
 
}

.header-contact-info li {
  display: inline-block;
  margin-right: 20px;
  color: #ffffff;
  position: relative;
  padding-left: 24px;
  font-size: 15px;
}

.header-contact-info li i {
  color: #ffffff;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 3px;
}

.header-contact-info li a {
  color: #ffffff;
}

.header-contact-info li:last-child {
  margin-right: 0;
}

.header-right-content {
  text-align: right;
}

.mobile-nav-links {
  display: none;
  text-align: center;
  background-color: #e7e0e09c
}
.mobile-nav-links li a{
  color: white;
  font-size: 17px;
}

.header-right-content .top-header-social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.header-right-content .top-header-social li {
  display: inline-block;
  margin-right: 4px;
}

.header-right-content .top-header-social li a {
  display: block;
  color: #ffffff;
  width: 32px;
  height: 32px;
  line-height: 33px;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 82%);
  text-align: center;
  font-size: 14px;
}

.header-right-content .top-header-social li a:hover {
  color: #ffffff;
  background-color: #f15d44;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  transition: 0.5s;
}

.header-right-content .top-header-social li:last-child {
  margin-right: 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 74px;
  width: auto;
   margin: 7px 0px;
   margin-left: 25px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  margin-bottom: 0px;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links .active {
border-radius: 4px;
  background-color: #f15d44;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 9px;
  font-weight: 300;
  font-size: 14px;
}
.nav-links a:hover{

  background-color:#f15d44 ;
  padding:9px;
  border-radius: 4px;
  transition:  0.3s ;
}






@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: #06050552;
    color: white;
    padding: 10px 17px 0;

  }

  .nav-links li {
      margin: 10px 0;
  }

  .burger {
      display: block;
  }
}

.nav-active {
  display: flex !important;
}

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 172px;
  padding-bottom: 130px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 48%);
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 45px;
  /* color: var(--color-white); */
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: white;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
  /* text-align: center; */
  right: 16px;
  bottom: 15px;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 3px;
  font-weight: 600;
  text-transform: capitalize;
  color: #f15d44;
  font-size: 18px;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: #fff;
  font-size: 18px;
}


.breadcrumb-menu .actives {
  font-size: 15px;
  color: #fff;
}

.breadcrumb-menu i {
  color: #fff;
  font-size: 13px;
}

.footer-area {
  background-color: black;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget h3 {
  margin-bottom: 28px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #0c4776;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.single-footer-widget h3::before {
  bottom: -1px;
  left: 0;
  width: 130px;
  height: 1px;
  background-color: #f15d44;
  content: "";
  position: absolute;
}

.single-footer-widget .logo a {
  display: inline-block;
}

.single-footer-widget .logo p {
  color: #ebe7e7;
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 15px;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.single-footer-widget .social li {
  display: inline-block;
  margin-right: 3px;
}

.single-footer-widget .social li a {
  display: inline-block;
  background-color: white;
  color: black;
  width: 35px;
  font-size: 16px;
  height: 35px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
}

.single-footer-widget .social li a i.flaticon-facebook {
  display: inline-block;
  padding-left: 4px;
}

.single-footer-widget .social li a i.flaticon-twitter {
  display: inline-block;
  position: relative;
  top: 2px;
}

.single-footer-widget .social li a:hover {
  background-color: #f15d44;
  color: black;
  transition: 0.5s;
}

.single-footer-widget .social li:last-child {
  margin-right: 0;
}

.single-footer-widget .footer-quick-links {
  padding-left: 0;
  list-style-type: none;
  /* display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; */
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0;
  margin-top: -12px;
}

.single-footer-widget .footer-quick-links li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  /* max-width: 50%; */
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 12px;
  text-align: center;
}

.single-footer-widget .footer-quick-links li a {
  display: inline-block;
  color: #ebe7e7;
  font-size: 14px;

}

.single-footer-widget .footer-quick-links li a:hover {
  color: #f15d44;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li {
  color: #ebe7e7;
  font-size: 15px;
  margin-bottom: 12px;
}

.single-footer-widget .footer-contact-info li span {
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ebe7e7;
  position: relative;
}

.single-footer-widget .footer-contact-info li a::before {
  width: 100%;
  height: 1px;
  background-color: #f15d44;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: #f15d44;
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li:last-child a::before {
  opacity: 1;
  visibility: visible;
}

.blog-section {}

.blog-section .blog-img {
  border-radius: 10px;
  border: 1px solid white;
  height: 450px;
  width: 490px;
  background-image: url(../image/pin.jpg);
  background-size: cover;
}

.blog-section .blog-img .blog-box {
  width: 425px;
  margin-top: 161px;
  margin-left: 30px;

}

.blog-section .blog-img .blog-box .headding-area {

  padding: 24px;
  background: white;
  border-radius: 8px;
}

.blog-section .blog-img .blog-box .headding-area:hover {
  background-color: #f1865d;
  transition: 0.5s;
  color: white;

}

.blog-section .blog-img .blog-box .headding-area .learn:hover {

  transition: 0.5s;
  color: white;

}

.blog-section .blog-img .blog-box .headding-area a {
  font-size: 17px;
  font-weight: 600;
}

.blog-section .blog-img .blog-box .headding-area a:hover {
  font-size: 17px;
  font-weight: 600;
  color: white;
  transition: 0.5s;
}



.blog-section .blog-img-1 {
  border-radius: 10px;
  border: 1px solid white;
  height: 450px;
  width: 490px;
  background-image: url(../image/blog2.webp);
  background-size: cover;
}

.blog-section .blog-img-1 .blog-box {
  width: 425px;
  margin-top: 161px;
  margin-left: 30px;

}

.blog-section .blog-img-1 .blog-box .headding-area {

  padding: 24px;
  background: white;
  border-radius: 8px;
}

.blog-section .blog-img-1 .blog-box .headding-area:hover {
  background-color: #f1865d;
  transition: 0.5s;
  color: white;

}

.blog-section .blog-img-1 .blog-box .headding-area .learn:hover {

  transition: 0.5s;
  color: white;

}

.blog-section .blog-img-1 .blog-box .headding-area a {
  font-size: 17px;
  font-weight: 600;
}

.blog-section .blog-img-1 .blog-box .headding-area a:hover {
  font-size: 17px;
  font-weight: 600;
  color: white;
  transition: 0.5s;
}

.blog-section .blog-img-2 {
  border-radius: 10px;
  border: 1px solid white;
  height: 450px;
  width: 490px;
  background-image: url(../image/pin4.jpg);
  background-size: cover;
}

.blog-section .blog-img-2 .blog-box {
  width: 425px;
  margin-top: 161px;
  margin-left: 30px;

}

.blog-section .blog-img-2 .blog-box .headding-area {

  padding: 24px;
  background: white;
  border-radius: 8px;
}

.blog-section .blog-img-2 .blog-box .headding-area:hover {
  background-color: #f1865d;
  transition: 0.5s;
  color: white;

}

.blog-section .blog-img-2 .blog-box .headding-area .learn:hover {

  transition: 0.5s;
  color: white;

}

.blog-section .blog-img-2 .blog-box .headding-area a {
  font-size: 17px;
  font-weight: 600;
}

.blog-section .blog-img-2 .blog-box .headding-area a:hover {
  font-size: 17px;
  font-weight: 600;
  color: white;
  transition: 0.5s;
}


.side-panel {
  position: fixed;
  top: 94%;
  left: 0;
  text-align: center;
  transform: translateY(-50%);
  background-color: #009b3a69;
  padding: 2px;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 47%);
  border-radius: 0 10px 10px 0;
  z-index: 99999;
}

.whatsapp-logo {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
}

.contact-link {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.contact-link:hover {
  text-decoration: underline;
}

.copyright-area {
  margin-top: 50px;
  border-top: 1px solid #0c4776;
  padding-top: 25px;
  padding-bottom: 25px;
}

.copyright-area p {
  color: #ebe7e7;
  font-size: 15px;
}

.copyright-area p a {
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
}

.copyright-area p a:hover {
  color: #f15d44;
}

.copyright-area ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: right;
}

.copyright-area ul li {
  display: inline-block;
  color: #ebe7e7;
  font-size: 15px;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}

.copyright-area ul li a {
  display: inline-block;
  color: #ebe7e7;
}

.copyright-area ul li a:hover {
  color: #f15d44;
}

.copyright-area ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  right: -13px;
  width: 1px;
  height: 14px;
  background-color: #ffffff;
}

.copyright-area ul li:last-child {
  margin-right: 0;
}

.copyright-area ul li:last-child::before {
  display: none;
}

.copyright-area ul li:first-child {
  margin-left: 0;
}


