@font-face {
  font-family: poppinsFont;
  src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: InterFont;
  src: url(../fonts/Inter-Regular.ttf);
}
@font-face {
  font-family: cardoFont;
  src: url(../fonts/Cardo-Regular.ttf);
}
:root {
  --font-default: poppinsFont;
  --font-primary: InterFont;
  --font-secondary: cardoFont;
  --bs-body-color: #fafafa;
  --bs-primary: #27a776;
  --bs-primary-rgb: 39, 167, 118;
  --color-secondary: #1a1b1c;
  --header-color: #000000b3;
  --main-bg: #1c1c1c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-default);
  background-color: var(--main-bg);
  min-height: 100vh;
}

main {
  background: var(--main-bg);
  padding: 120px 0 40px 0;
  min-height: calc(100vh - 68px);
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
  background: #e6e6e6;
}

::-webkit-scrollbar-track {
  border-radius: 12px;
}

::-webkit-scrollbar-track:hover {
  background: #D9D9D9;
}

::-webkit-scrollbar-thumb {
  background: #989898;
  /* #2f80c1 */
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background: #898989;
}

.full_inside_main {
  min-height: calc(100vh - 182px);
}

a {
  color: var(--bs-primary);
  text-decoration: none;
}

a:hover {
  color: #32cf93;
  text-decoration: none;
}

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

.section-header {
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-primary);
}

.section-header h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #5bd9a9;
  margin: 4px 10px;
}

.section-header p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  padding: 0;
  position: relative;
  padding-bottom: 30px;
}

.page-header h2 {
  font-size: calc(0.75rem + 1.5vw);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .page-header h2 {
    font-size: 30px;
  }
}
.page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.page-header .cta-btn {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
  background: var(--bs-primary);
}

.page-header .cta-btn:hover {
  background: #2cbc85;
}

/*------------------Scroll top button--------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -55px;
  z-index: 99999;
  background: var(--bs-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(39, 167, 118, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 55px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: var(--color-secondary);
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: #999;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes linemove {
  0% {
    transform: translateY(200%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }
  100% {
    width: 0%;
  }
}
.container-md,
.container-sm,
.container {
  max-width: 90%;
}
@media (min-width: 1400px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}

/*-------------Header---------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 7.5px 0;
  background-color: var(--header-color);
}

.header .logo {
  transition: 0.3s;
  max-width: 250px;
}

.header .logo img {
  max-height: 65px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.header-social-links a {
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  font-size: 16px;
}
.header-social-links a:hover {
  color: #fff;
}

/*------Desktop Navigation-------*/
@media (min-width: 768px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 400;
    color: #fafafa;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--bs-primary);
  }
  .navbar .active {
    font-weight: 600;
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
    border-radius: 4px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: #fff;
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
/*-------Mobile Navigation------*/
@media (max-width: 767px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 140px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar ul li {
    text-align: center;
    padding: 10px 0;
  }
  .navbar ul li a {
    justify-content: center;
  }
  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    font-family: var(--font-primary);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a:hover:not(.active) {
    color: #ffffff !important;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--bs-primary);
    font-weight: 600;
  }
  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid black;
  }
  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }
  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 10px;
  }
  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(22, 23, 24, 0.8);
    z-index: 9996;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
  color: var(--bs-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--bs-primary);
  line-height: 0;
}

.about .content p {
  text-align: justify;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  margin-top: 80px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  background: var(--color-secondary);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 5px solid #474a4d;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.5);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }
  .testimonials .swiper-pagination {
    margin-top: 0;
  }
  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}
@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}
/*----------Single Gallery Section---------*/
.gallery {
  margin-top: 30px;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  max-height: 300px;
  background: rgba(0, 0, 0, 0.5);
}

.gallery .gallery-item img {
  transition: 0.3s;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #fff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery .gallery-item:hover {
  box-shadow: rgba(var(--bs-primary-rgb), 0.4) 0px 0px 0px 2px;
}

.glightbox-clean .gslide-description {
  background: #222425;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Gallery Single Section
--------------------------------------------------------------*/
.gallery-single .portfolio-details-slider img {
  width: 100%;
}

.gallery-single .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.gallery-single .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--bs-primary);
}

.gallery-single .swiper-button-prev,
.gallery-single .swiper-button-next {
  width: 48px;
  height: 48px;
}

.gallery-single .swiper-button-prev:after,
.gallery-single .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gallery-single .swiper-button-prev:hover:after,
.gallery-single .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {
  .gallery-single .swiper-button-prev,
  .gallery-single .swiper-button-next {
    display: none;
  }
}
.gallery-single .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.gallery-single .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--bs-primary);
  left: 0;
  bottom: 0;
}

.gallery-single .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.gallery-single .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.gallery-single .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #6b7075;
  font-size: 14px;
}

.gallery-single .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--bs-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.gallery-single .portfolio-info .btn-visit:hover {
  background: #2cbc85;
}

.gallery-single .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.gallery-single .portfolio-description p {
  padding: 0;
}

.gallery-single .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: var(--color-secondary);
  height: 100%;
  margin-bottom: 50px;
}

.gallery-single .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #2e3133;
  float: left;
  margin: 0 10px 0 0;
}

.gallery-single .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.gallery-single .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-left,
.gallery-single .portfolio-description .testimonial-item .quote-icon-right {
  color: #5bd9a9;
  font-size: 26px;
  line-height: 0;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.gallery-single .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

.gallery-single.hide_nav .swiper-button-next,
.gallery-single.hide_nav .swiper-button-prev {
  display: none !important;
}
.gallery-single.hide_pagination .swiper-pagination {
  display: none;
}
.gallery-single.exb_slider {
  border-radius: 8px;
  overflow: hidden;
}
.gallery-single.exb_slider .portfolio-details-slider .swiper-slide {
  height: auto;
}
.gallery-single.exb_slider .portfolio-details-slider .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-secondary);
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: #1d1f20;
  top: -200px;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item i {
  background: var(--bs-primary);
  color: #fff;
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services .service-item h4 a {
  color: #fff;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin: 15px 0 0 0;
}

.services .service-item:hover:before {
  background: var(--bs-primary);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: #fff;
}

.services .service-item:hover i {
  background: #fff;
  color: var(--bs-primary);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  margin-top: 80px;
}

.pricing .pricing-item {
  border-bottom: 1px dashed #474a4d;
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.pricing .pricing-item h4 {
  margin: 0;
  font-size: 16px;
}

/*-----------Contact Section-------------*/
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--bs-primary);
  float: left;
  width: 44px;
  height: 44px;
  background: #222425;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  margin-bottom: 5px;
  color: #ffffff;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 13px;
  color: #c3c3c3;
}

.contact .info-item:hover i {
  background: var(--bs-primary);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: var(--bs-primary);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-secondary);
  text-align: center;
  padding: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--bs-primary);
  border-top-color: var(--color-secondary);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  background-color: var(--color-secondary);
  border: 1px solid #2e3133;
  color: #fff;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--bs-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(39, 167, 118, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*----------Hero Section--------------*/
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  padding: 0 0 20px 0;
}

.hero h2 {
  margin: 0 0 10px 0;
  font-size: calc(1.2rem + 0.7vw);
  font-weight: 700;
  color: #fff;
  font-family: var(--font-default);
  max-width: 600px;
  margin: 0 auto 15px;
}

.hero h2 span {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  display: inline-block;
}

.hero h2 span:before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bs-primary);
  z-index: -1;
}

.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
  background: var(--bs-primary);
}

.hero .btn-get-started:hover {
  background: #2cbc85;
}

/*-------------Footer------------*/
.footer {
  margin-top: 0;
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.9);
}

.footer .copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.footer .credits {
  padding-top: 6px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer .credits a {
  color: var(--bs-primary);
}

.lightboxOverlay {
  position: fixed;
  width: 100vw !important;
  height: 100vh !important;
}

.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0 !important;
  padding: 0;
}
.lightbox .lb-outerContainer {
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  max-height: 100%;
  background-color: transparent;
}
.lightbox .lb-container {
  padding: 20px;
  width: 100vw;
  height: 100vh;
  background: transparent;
  display: flex;
}
@media screen and (min-width: 992px) {
  .lightbox .lb-container {
    padding: 60px;
  }
}
.lightbox .lb-image {
  width: auto !important;
  margin: 0;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  margin: auto !important;
}
@media screen and (min-width: 576px) {
  .lightbox .lb-image {
    max-width: calc(100% - 120px);
    max-height: calc(100% - 120px);
  }
}
.lightbox .lb-closeContainer {
  position: absolute;
  top: 30px;
  right: 20px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 999;
}
.lightbox .lb-nav a {
  width: 30% !important;
  background: transparent;
  display: flex !important;
  align-items: center;
  opacity: 1;
}
.lightbox .lb-nav a::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background: url(../img/prev.png) center 50% no-repeat !important;
  background-color: #cbcbcb !important;
  position: absolute;
  background-size: 80% !important;
  border-radius: 50px;
  filter: invert(100%);
  left: 5%;
}
.lightbox .lb-nav a.lb-next::before {
  background: url(../img/next.png) center 50% no-repeat !important;
  background-color: #cbcbcb !important;
  background-size: 80% !important;
  right: 5%;
  left: unset;
}
.lightbox .lb-nav a:hover::before {
  background-color: #9e9e9e !important;
}
.lightbox .lb-details {
  position: fixed;
  bottom: 40px;
  width: 100%;
  left: 0;
  right: 0;
  padding: 20px 60px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lightbox .lb-details .lb-number {
  padding: 0 !important;
}
.lightbox .lb-details .lb-caption {
  line-height: 1.4;
}

.portfolio-details-slider .swiper-slide {
  display: flex;
  justify-content: center;
  height: 50vh;
}
.portfolio-details-slider .swiper-slide img {
  margin: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 991px) {
  .gallery_btns {
    width: 100%;
  }
}
.gallery_btns a {
  background: #272727;
  padding: 10px 14px;
  border-radius: 30px;
  border: 1px solid #a1a1a1;
  color: #d1d1d1;
  font-size: 14px;
  line-height: 1;
}
.gallery_btns a:hover {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.gallery_btns a.active {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
}
.gallery_btns a.active:hover {
  color: #d1d1d1;
}

.contact_info {
  background: rgba(var(--bs-primary-rgb), 0.1);
  padding: 20px 0;
}
.contact_info .row > * {
  margin: 0;
}

.homeSlider {
  max-width: 992px;
  margin: auto;
}
.homeSlider .swiper-pagination {
  display: none;
}
.homeSlider .swiper-button-next, .homeSlider .swiper-button-prev {
  width: 48px;
  height: 48px;
  left: calc(50% - 48px);
  background: rgba(0, 0, 0, 0.6);
  bottom: 40px;
  top: unset;
  border: 1px solid #d9d3d3;
}
.homeSlider .swiper-button-next::after, .homeSlider .swiper-button-prev::after {
  background-color: transparent !important;
  width: 80%;
  height: 80%;
  font-size: 18px;
  border-radius: 0;
  margin-right: -1px;
  transition: all 0.05s ease-in-out;
}
.homeSlider .swiper-button-next:hover, .homeSlider .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}
.homeSlider .swiper-button-next:hover::after, .homeSlider .swiper-button-prev:hover::after {
  transform: scale(1.2);
}
.homeSlider .swiper-button-prev {
  border-radius: 16px 0 0 16px;
  border-right: 0;
  position: relative;
}
.homeSlider .swiper-button-prev::before {
  content: "";
  width: 2px;
  height: 30px;
  background-color: #d9d3d3;
  position: absolute;
  right: -1px;
}
.homeSlider .swiper-button-next {
  left: unset;
  right: calc(50% - 48px);
  border-radius: 0 16px 16px 0;
  border-left: 0;
}

.lightbox .lb-container {
  position: relative;
}
.lightbox .lb-container .lb-nav {
  width: 70px;
  height: 35px;
  position: absolute;
  top: unset;
  left: calc(50% - 35px);
  bottom: 23%;
  z-index: 999;
  display: flex;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  box-shadow: rgba(255, 255, 255, 0.17) 0px -24px 12px 0px inset, rgba(255, 255, 255, 0.15) 0px -36px 22px 0px inset, rgba(255, 255, 255, 0.1) 0px -79px 40px 0px inset, rgba(255, 255, 255, 0.06) 0px 2px 1px, rgba(255, 255, 255, 0.09) 0px 4px 2px, rgba(255, 255, 255, 0.09) 0px 8px 4px, rgba(255, 255, 255, 0.09) 0px 5px 8px, rgba(255, 255, 255, 0.09) 0px 20px 16px;
}
.lightbox .lb-container .lb-nav .lb-next, .lightbox .lb-container .lb-nav .lb-prev {
  width: 35px !important;
  height: 35px !important;
  background: rgba(0, 0, 0, 0.6) !important;
  bottom: 40px;
  top: unset;
  float: none;
  display: inline-flex !important;
}
.lightbox .lb-container .lb-nav .lb-next::before, .lightbox .lb-container .lb-nav .lb-prev::before {
  background-color: transparent !important;
  font-size: 18px;
  border-radius: 0;
  margin-right: -1px;
  transition: all 0.05s ease-in-out;
}
.lightbox .lb-container .lb-nav .lb-next:hover, .lightbox .lb-container .lb-nav .lb-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}
.lightbox .lb-container .lb-nav .lb-next:hover::before, .lightbox .lb-container .lb-nav .lb-prev:hover::before {
  background-color: transparent !important;
  transform: scale(1.2);
}
.lightbox .lb-container .lb-nav .lb-prev {
  border-radius: 16px 0 0 16px;
  border-right: 0;
}
.lightbox .lb-container .lb-nav .lb-prev::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #d9d3d3;
  position: absolute;
  right: 35.5px;
}
.lightbox .lb-container .lb-nav .lb-next {
  border-radius: 0 16px 16px 0;
  border-left: 0;
}

.card {
  --bs-card-bg: #292929;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.text-justify {
  text-align: justify;
}

.org_chart_wrap {
  max-width: 100%;
  overflow-x: auto;
  width: 100vw;
}
.org_chart_wrap #chart-container {
  display: flex;
  justify-content: center;
}
.org_chart_wrap .orgchart > table > tr:first-child td .node {
  background: transparent !important;
}
.org_chart_wrap .orgchart .lines > td {
  border-color: rgba(179, 176, 176, 0.8) !important;
}
.org_chart_wrap .orgchart .lines > td .downLine {
  background-color: rgba(179, 176, 176, 0.8) !important;
}
.org_chart_wrap .orgchart .verticalNodes td::before {
  border-color: rgba(179, 176, 176, 0.8) !important;
}
.org_chart_wrap .orgchart .verticalNodes ul > li::after, .org_chart_wrap .orgchart .verticalNodes ul > li::before {
  border-color: rgba(179, 176, 176, 0.8) !important;
}
.org_chart_wrap .orgchart .node {
  width: 160px !important;
  margin: 0 10px !important;
  padding: 5px 0 !important;
  border: none !important;
  background: transparent !important;
}
.org_chart_wrap .orgchart .node .toggleBtn {
  display: flex;
  justify-content: c;
  align-items: center;
  line-height: 1;
  left: 4px;
  background: rgba(0, 0, 0, 0.5);
}
.org_chart_wrap .orgchart .node .toggleBtn.orgchart .node .toggleBtn::before {
  background-color: rgba(68, 157, 68, 0.9);
}
.org_chart_wrap .orgchart .node .org_card_wrap {
  width: 100%;
  border-radius: 4px 4px 0 0;
  padding: 4px 6px !important;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border-top: 3px solid #36a3f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.org_chart_wrap .orgchart .node .org_card_wrap .image {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  border: 1px solid #ffffff;
}
.org_chart_wrap .orgchart .node .org_card_wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.org_chart_wrap .orgchart .node .org_card_wrap .title {
  text-align: center;
  white-space: nowrap;
  color: #515165;
}
.org_chart_wrap .orgchart .node .org_card_wrap .content {
  color: #989898;
  font-weight: 500;
}

.profile_img {
  width: 100%;
  max-width: 350px;
  max-width: auto;
}

.social_icons {
  display: none;
  position: fixed;
  top: 50%;
  right: 0%;
  flex-direction: column;
  z-index: 10000;
}
.social_icons a {
  width: 140px;
  text-decoration: none;
  text-transform: capitalize;
  padding: 8px;
  font-size: 15px;
  margin-bottom: 8px !important;
  text-align: left;
  border-radius: 50px 0px 0px 50px;
  transform: translate(-40px, 0px);
  transition: all 0.5s;
  color: #ffffff !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
}
.social_icons a:nth-child(2) {
  top: 55px;
}
.social_icons a:nth-child(4) {
  top: 110px;
}
.social_icons a:hover {
  transform: translate(-140px, 0px);
  transition: transform 0.3s ease-in-out;
}
.social_icons a:hover i {
  transform: rotate(360deg);
}
.social_icons a i {
  margin-right: 8px !important;
  background-color: #ffffff;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 20px;
  color: black;
  text-align: center;
  border-radius: 50%;
  transition: all 2s;
}
.social_icons a span {
  color: #ffffff !important;
}
.social_icons .facebook {
  background-color: #2c80d3;
}
.social_icons .youtube {
  background-color: #fa0910;
}
.social_icons .twitter {
  background-color: #53cdff;
}
.social_icons .insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social_icons .fa-facebook-f {
  color: #2c80d3 !important;
}
.social_icons .fa-youtube {
  color: #fa0910 !important;
}
.social_icons .fa-twitter {
  color: #53cdff !important;
}
.social_icons .fa-instagram {
  color: #dc2743 !important;
}

.news_room .glightbox-container button.gprev, .news_room .glightbox-container button.gnext {
  display: none;
}

.news_list {
  margin-bottom: 2rem;
}
.news_list ul li {
  margin-bottom: 10px;
}

.video_wrap video {
  width: 100%;
}/*# sourceMappingURL=main.css.map */