@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");



body {
  font-family: "Sora", sans-serif;
  color: #444444;
}
a {
  color: #7d93de;
  text-decoration: none;
}
a:hover {
  color: #ffd584;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 75px;
  z-index: 996;
  background: #7d93de;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #151515;
}
.back-to-top:hover i {
  color: #7d93de;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #7d93de;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 10px;
}
#header.header-scrolled,
#header.header-inner-pages {
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo a span {
  color: #7d93de;
}
#header .logo img {
  max-height: 40px;
}
/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 30px;
  padding: 9px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 1px solid #fff;
}
.get-started-btn:hover {
  background: #7d93de;
  color: #fff;
}
@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 15px 6px 15px;
    margin-right: 15px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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 50px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  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: #7d93de;
}
.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: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  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 {
  background-color: #7d93de;
}
.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #000;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #151515;
  background-color: #7d93de;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: #7d93de;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}
#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  background: -webkit-linear-gradient(45deg, #6f75dc, #acefbb 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#hero h1 span {
  color: #7d93de;
}
#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 50px 0;
  font-size: 18px;
  line-height: 26px;
}
#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}
#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #7d93de;
}
#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}
#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}
#hero .icon-box h3 a:hover {
  color: #7d93de;
}
#hero .icon-box:hover {
  border-color: #7d93de;
}
@media (min-width: 1024px) {
  #hero {
  }
}

@media (max-width: 768px) {
  #footer .footer-top .footer-links ul a {
    display: block;

    width: 100%;
  }

  #footer {
    text-align: center;
  }

  .social-links a {
    display: block;
    margin-bottom: 20px;
  }
  .section-title p {
    font-size: 30px !important;
  }
  .section-title h2 {
    font-size: 44px !important;
  }
  .team .member .social a {
    padding: 5px 20px !important;
  }
  .expertise .member-info span {
    font-size: 15px !important;

    line-height: 18px !important;
  }
  .social.sk {
    width: 90% !important;
  }
  .expertise .member-info h4 {
    font-size: 24px !important;
  }
  .team .member .member-info {
    padding: 5px 0px !important;
  }

  .features .container h4 {
    font-size: 25px !important;
  }

  .serv-content h4 {
    margin-top: 20px !important;
    margin-bottom: 10px !important;
  }

  .about .content h3 {
    font-size: 25px !important;
  }

  .banner-caption {
    margin-top: 100px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 16px;
    line-height: 24px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 128px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;

  color: #eee;
  text-align: center;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
  display: none;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;

  color: #243f9a;
  text-align: center;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 31px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}
.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #7d93de;
}
.about .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #000;
}
.clients .swiper-slide img {
  opacity: 1;
  transition: 0.3s;
  filter: grayscale(100);
}
.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7d93de;
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}
.features .icon-box {
  padding-left: 15px;
}
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 0px;
}
.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #7d93de;
}
.features .icon-box p {
  font-size: 17px;
  color: #fff;
  margin-left: 0px;
}
.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #7d93de;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}
.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 a:hover {
  color: #7d93de;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #7d93de;
  border-color: #7d93de;
  color: #151515;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: #7d93de;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #7d93de;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #7d93de;
}
.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #7d93de;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}
.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}
.counts .content p {
  margin-bottom: 0;
}
.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}
.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #7d93de;
  float: left;
}
.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}
.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-size: 14px;
  color: #3b3b3b;
}
.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  transition: ease-in-out 0.3s;
}
.counts .content .count-box a:hover {
  color: #626262;
}
.counts .image {
  background: url("../img/service-banner.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}
@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }
  .counts .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0 40px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testt {
  text-align: center;
  color: #fff;
  background: url(../img/left.png) left top no-repeat,
    url(../img/rit.png) right bottom no-repeat;
  padding-top: 60px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 5px 0;
  color: #222;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #222;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  margin: 0 auto 15px auto;
  color: #222;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7d93de;
  opacity: 1;
}
@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}
.team .member {
  margin-bottom: 20px;
  overflow: hidden;

  background: #fff;
}

.team .member img {
  border-radius: 10px;
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 20px;
  top: 20px;
  right: 20px;
  opacity: 1;
  transition: ease-in-out 0.3s;
  text-align: left;
  max-width: 100%;
}
.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 1);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.team .member .social a:hover {
  color: #151515;
  background: #7d93de;
}
.team .member .social i {
  font-size: 18px;
  line-height: 0;
}
.team .member .member-info {
  padding: 25px 0px;
}
.team .member .member-info h4 {
}
.team .member .member-info span {
  display: block;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  background: #7d93de;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.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 #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #7d93de;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
  background: #7d93de;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #7d93de;
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #132430;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#footer .footer-top .footer-info h3 span {
  color: #7d93de;
}
#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #7d93de;
  color: #151515;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #7d93de;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #b1b1b1 !important;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
}
#footer .footer-top .footer-links ul a:hover {
  color: #7d93de;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 20px;
  background: none;
  padding: 6px 0px;
  padding-bottom: 6px;
  position: relative;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: none;
  color: #fff;
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #7d93de;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ffcd6b;
}
#footer .copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding-bottom: 15px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.header-inner {
  background: rgba(70, 69, 69, 0.6);
  border-radius: 50px;
  padding: 30px;
}
.banner-caption {
  margin-top: 150px;
  z-index: 1;
}
.explore {
  padding: 15px 50px;
  background: #3a3290;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #6b5fea;
  box-shadow: 0px 5px 15px #5445f7;
}
.explore:hover {
  box-shadow: 0px 5px 25px #5445f7;
}
.about {
  background: #000;
  color: #fff;
}
.bdc {
  border-bottom: 1px solid #888;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.serv-content h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}
.right-corner-arrow {
  text-align: right !important;
}

.features {
  background: #000;
}
.features h6 {
  margin-top: 20px;
}
.features h4 {
  margin-top: 20px !important;
  font-size: 36px !important;
  font-weight: 600 !important;
}
.features p {
  margin-bottom: 30px;
}

/* eocjsNewsticker v0.7.3 */

.eocjs-newsticker {
  padding: 10px 0;
}

.eocjs-newsticker .eocjs-newsticker-container {
  position: relative;
  height: 80px;
}

.eocjs-newsticker .eocjs-newsticker-one,
.eocjs-newsticker .eocjs-newsticker-two {
  position: absolute;
  left: 0;
  top: 0;
  height: 24px;
  line-height: 24px;
  white-space: nowrap;
}

.eocjs-newsticker-loader {
  position: absolute;
  left: calc(50% - 10px);
  top: 2px;
  width: 20px;
  height: 20px;
  display: block;
  border: 3px solid #555555;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: eocjs-newsticker-spin 0.75s linear infinite;
}

@keyframes eocjs-newsticker-spin {
  to {
    transform: rotate(360deg);
  }
}

#example-1 {
  font-weight: bold;
  font-size: 68px;
  line-height: 54px;
  color: #243f9a;
}

#example-1 span {
  color: #fff;
  text-shadow: 1px 0 #243f9a, -1px 0 #243f9a, 0 1px #243f9a, 0 -1px #243f9a,
    1px 1px #243f9a, -1px -1px #243f9a, 1px -1px #243f9a, -1px 1px #243f9a;
}
#example-4 span {
  color: #fff;
  text-shadow: 1px 0 #243f9a, -1px 0 #243f9a, 0 1px #243f9a, 0 -1px #243f9a,
    1px 1px #243f9a, -1px -1px #243f9a, 1px -1px #243f9a, -1px 1px #243f9a;
}

#example-4 {
  font-weight: bold;
  font-size: 68px;
  line-height: 54px;
  color: #65197d;
}
.eocjs-newsticker {
  font-family: "Sora", sans-serif;
}
.eocjs-newsticker strong {
  font-family: Arial, Helvetica, sans-serif;
}
.expertise .member-info h4 {
  font-size: 27px;
  color: #fff;
}

.expertise .member-info span {
  font-size: 15px;
  color: #fff;
}

.expertise .member-info a {
  background: #fff;
  color: #333;
  padding: 10px 20px;
}

.social.sk {
  width: 70%;
}

.testimonial-item h2 {
  color: #222;
  font-size: 30px;
  font-weight: 600;
}

.services .section-title {
  padding-bottom: 0px;
}

.services {
  padding-bottom: 0px !important;
}

.social-links {
  text-align: center;
}

.social-links a {
  font-size: 25px;
  font-weight: 400;
  color: #333;
  margin-right: 50px;
  padding: 10px;
}

.social-links a:hover {
  box-shadow: 0px 5px 5px #00000026;

  border-radius: 30px;
}

.contact .section-title p {
  color: #222;
}

.btns {
  background: none;
  border: none;
  float: right;
}

.footer-info p {
  color: #b1b1b1 !important;
}
.footer-newsletter {
  color: #b1b1b1 !important;
}

.team h5 {
  margin-bottom: 40px;
}

.portfolio {
  padding-bottom: 0px;
}
.footer-newsletter p {
  font-size: 16px;
}

.dwd svg:hover {
  box-shadow: 0px 0px 10px #fff;
  border-radius: 50%;
}

/* ##################################################################### */

.custom-hero {
  width: 100%;
  min-height: 300px;
  background: url("../img/about-banner.jpg") top center;
  background-size: cover;
  position: relative;
  overflow: hidden; /* Ensure the overlay does not extend beyond the section */
}

.custom-hero::before {
  content: "";
  background: rgba(0, 0, 0, 0.7); /* Adjust the opacity as needed */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Ensure the overlay is above the content but below the background image */
}

.custom-hero .container {
  position: relative;
  /* padding-top: 74px; */
  text-align: center;
}

.custom-hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  background: -webkit-linear-gradient(45deg, #6f75dc, #acefbb 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-hero h1 span {
  color: #7d93de;
}

.custom-hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 50px 0;
  font-size: 18px;
  line-height: 26px;
}

.custom-hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

.custom-hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #7d93de;
}

.custom-hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.custom-hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.custom-hero .icon-box h3 a:hover {
  color: #7d93de;
}

.custom-hero .icon-box:hover {
  border-color: #7d93de;
}

@media (min-width: 1024px) {
  .custom-hero {
  }
}

/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
  padding: 0;
}

.onfocus .video-play {
  min-height: 400px;
  background: linear-gradient(
      rgba(var(--color-black-rgb), 0.4),
      rgba(var(--color-black-rgb), 0.7)
    ),
    url("../img/onfocus-video-bg.jpg") center center;
  background-size: cover;
}

.onfocus .content {
  background: linear-gradient(
      rgba(var(--color-secondary-rgb), 0.5),
      rgba(var(--color-secondary-rgb), 0.8)
    ),
    url("../img/onfocus-content-bg.jpg") center center;
  background-size: cover;
  color: rgba(var(--color-white-rgb), 0.8);
  padding: 40px;
}

@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px;
  }
}

.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}

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

.onfocus .content ul li {
  padding-bottom: 10px;
}

.onfocus .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.onfocus .content p:last-child {
  margin-bottom: 0;
}

.onfocus .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary);
}

.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.onfocus .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.9);
  padding-right: 19px;
}

.onfocus .content .read-more:hover i {
  margin-left: 10px;
}

.onfocus .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--color-primary) 50%,
    rgba(var(--color-primary-rgb), 0.4) 52%
  );
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.onfocus .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-primary-rgb), 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.onfocus .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.onfocus .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* **************************************** */

.icon-boxs {
  position: relative;
  display: block;
  padding: 40px 20px 30px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 5px;
  z-index: 99;
  text-decoration: none;
  height: 590px;
}

.col-md-4 {
  margin-top: 10px;
}

.icon-boxs .icon {
  margin-bottom: 24px;
}

.icon-boxs:hover {
  z-index: 1;
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
  transform: translateY(-15px);
}

.icon-boxs .content .title.fz-20 {
  font-size: 20px;
  text-align: left;
}
.sec-list-sec {
  padding-left: 18px;
}

.icon-boxs .content .title {
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
  color: #3f3a64;
}

.icon-boxs .content .desc {
  margin-top: 10px;
}

.icon-boxs .content .desc p {
  line-height: 1.6;
  color: #696969;
}

p:last-child {
  margin-bottom: 0;
}

.icon-boxs:hover .content .link {
  color: #20ad96;
}

.icon-boxs .content .link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
  color: #8c89a2;
}

.icon-boxs .content .link i {
  font-size: 16px;
  line-height: 14px;
  margin-left: 14px;
}

/* ************************ */

/* career page */

.apply-now-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 0.25rem 0.5rem; /* Adjust padding to make the button smaller */
  border-radius: 5px;
  text-decoration: none;
  margin-top: 0.5rem; /* Adjust this margin as needed */
  font-size: 0.9rem; /* Adjust font size to make the text smaller */
  margin-bottom: 1rem; /* Adjust margin bottom for spacing */
  margin-left: auto; /* Align button to the right */
  margin-right: auto; /* Align button to the right */
  display: block; /* Ensure button takes full width */
  width: fit-content; /* Set button width to fit content */
}
.apply-now-button:hover {
  background-color: darken(var(--accent-color), 10%);
  border: 1px solid #7d93de;
  color: #000;
}

.careers {
  --color: rgba(30, 30, 30);
  --bgColor: white;
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
  color: var(--color);
  background: var(--bgColor);
}

.careers {
  text-align: center;
}

.careers h1 {
  text-align: center;
}

.careers ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(100rem, 90%);
  margin-inline: auto;
}

/* line */
.careers ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.careers ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

.careers ul li:nth-child(5) {
  border-top: none;
  /* Remove border on the top */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Add box shadow */
  border-radius: 20px;
  /* Apply border-radius */
}

.careers ul li:nth-child(4) {
  border-top: none;
  /* Remove border on the top */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Add box shadow */
  border-radius: 20px;
  /* Apply border-radius */
}

.careers ul li:nth-child(3) {
  border-top: none;
  /* Remove border on the top */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Add box shadow */
  border-radius: 20px;
  /* Apply border-radius */
}

.careers ul li:nth-child(2) {
  border-top: none;
  /* Remove border on the top */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Add box shadow */
  border-radius: 20px;
  /* Apply border-radius */
}

.careers ul li:nth-child(1) {
  border-top: none;
  /* Remove border on the top */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Add box shadow */
  border-radius: 20px;
  /* Apply border-radius */
}

/* card */
.careers ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

/* date */
.careers ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.careers ul li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.careers ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.careers ul li .title,
.careers ul li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}

.careers ul li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}

.careers ul li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}

/* shadows */
.careers ul li .title::before,
.careers ul li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}

.careers ul li .title::before {
  bottom: calc(100% + 0.125rem);
}

.careers ul li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .careers ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }

  .careers ul::before {
    grid-column: 2;
  }

  .careers ul li:nth-child(odd) {
    grid-column: 1;
  }

  .careers ul li:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
  .careers ul li:nth-child(2) {
    grid-row: 2/4;
  }

  .careers ul li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .careers ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }

  .careers ul li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}

.credits {
  margin-top: 1rem;
  text-align: right;
}

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

/* ******************************************* */


ul.sec-list-sec li {
  list-style: circle;
  text-align: left;
  color: #000;
  font-size: 15px;
  line-height: 30px;
}
.img_about {
  width: 100%;
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}


/* product section card */

.flip {
  position: relative;
}
.flip > .front,
.flip > .back {
  display: block;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 0.5s;
  transition-property: transform, opacity;
}
.flip > .front {
  transform: rotateY(0deg);
}
.flip > .back {
  position: absolute;
  opacity: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform: rotateY(-180deg);
}
.flip:hover > .front {
  transform: rotateY(180deg);
}
.flip:hover > .back {
  opacity: 1;
  transform: rotateY(0deg);
}
.flip.flip-vertical > .back {
  transform: rotateX(-180deg);
}
.flip.flip-vertical:hover > .front {
  transform: rotateX(180deg);
}
.flip.flip-vertical:hover > .back {
  transform: rotateX(0deg);
}

.flip {
  position: relative;
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 22px;
  /* width: 400px; */
  width: 100%;
}
.flip > .front, .flip > .back {
  display: flex;
  color: white;
  width: inherit;
  background-size: cover !important;
  background-position: center !important;
  height: 220px;
  padding: 1em 2em;
  background: #908f8f;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
}
.flip > .front p,
.flip > .back p {
  font-size: 0.9125rem;
  line-height: 160%;
  color: #999;
}

.text-shadow {
  font-size: 22px;
  text-shadow: 0px 2px 3px #000;
  /* text-wrap: nowrap; */
}

.read_more_btn {
  --secondary-color: #fff;
  --hover-color: #111;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 40px;
  color: var(--secondary-color);
  padding: 1em 1.8em;
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  border: 1px solid #fff;
  background-color: transparent;
}
.read_more_btn .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.read_more_btn .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

.read_more_btn .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

.read_more_btn:hover {
  background-color: var(--hover-color);
}

.read_more_btn:hover .arrow {
  background: var(--secondary-color);
}

.read_more_btn:hover .arrow:before {
  right: 0;
}

/* product inner */

.section-padding-02 {
  padding-top: 30px;
  background: #000;
  padding-bottom: 100px;
}
.blog-details-section .blog-details-wrap {
  margin-top: -40px;
}
.blog-details-post {
  padding-right: 30px;
}
.blog-details-post .single-blog-post {
  margin-top: 40px;
}
.single-blog .blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.single-blog .blog-image a {
  display: block;
}
.single-blog .blog-image a img {
  transition: all 0.3s linear;
}
.single-blog .blog-image .top-meta {
  position: absolute;
  top: 35px;
  left: 30px;
}
.blog-details-post .single-blog-post.single-blog .blog-content {
  padding: 30px 0px 0px;
  width: 100%;
  left: 0;
  bottom: 0px;
  transform: translateX(0);
  margin-top: 0px;
  background: transparent;
}
.single-blog .blog-content {
  padding: 25px 30px 40px;
  background: #ffffff;
  width: 90%;
  position: relative;
  left: 50%;
  bottom: 10px;
  transform: translateX(-48%);
  margin-top: -40px;
}
.single-blog-post.single-blog .blog-content {
  padding: 40px 35px 0px;
  width: 94%;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin-top: -60px;
}
.blog-details-post .single-blog-post.single-blog .blog-content .blog-meta .tag {
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
}
.blog-sidebar {
  margin-top: 40px;
  position: sticky;
  top: 0;
  padding: 4px 20px;
  border-radius: 10px;
  border: 1px solid rgb(253 253 253 / 31%);
}
.sidebar-widget {
  margin-top: 45px;
}
.category li {
  list-style: circle;
  color: #000;
}
.pro_inner_img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}
.inner_head {
  color: #fff;
}
.inner_cnt {
  color: #fff;
}

.list_pro {
  padding-left: 22px;
}
.list_side {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  color: #fff;
}
.list_pro li a {
  color: #000;
  line-height: 30px;
  font-size: 14px;
  font-weight: 400;
}

/*logo Slider */

.slick-slide {
  margin: 0px 20px;
  }
  .slick-slide img {
  width: 100%;
  }
  /*
  .slick-slider
  {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  } */




  .slick-list
  {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  }
  .slick-list:focus
  {
  outline: none;
  }
  .slick-list.dragging
  {
  cursor: pointer;
  cursor: hand;
  }
  .slick-slider .slick-track,
  .slick-slider .slick-list
  {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  }
  .slick-track
  {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  }
  .slick-track:before,
  .slick-track:after
  {
  display: table;
  content: '';
  }
  .slick-track:after
  {
  clear: both;
  }
  .slick-loading .slick-track
  {
  visibility: hidden;
  }
  .slick-slide
  {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  }
  [dir='rtl'] .slick-slide
  {
  float: right;
  }
  .slick-slide img
  {
  display: block;
  }
  .slick-slide.slick-loading img
  {
  display: none;
  }
  .slick-slide.dragging img
  {
  pointer-events: none;
  }
  .slick-initialized .slick-slide
  {
  display: block;
  }
  .slick-loading .slick-slide
  {
  visibility: hidden;
  }
  .slick-vertical .slick-slide
  {
  display: block;
  height: auto;
  border: 1px solid transparent;
  }
  .slick-arrow.slick-hidden {
  display: none;
  }



.logo-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display:inline-block;
}
.logo-container ul li {
  width: 196px;
  height: 120px;
  background: #fff;
  border-radius: 10px;
  margin: 10px;
  float: left;
  padding: 20px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-container ul li a{
  text-decoration:none !important;
  display: inline-block;
}
.logo-holder{
  text-align:center;
}
/* Logo-1 */
.logo-1 h3 {
    color: #e74c3c;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 50px;
    line-height:1.3;
}
.logo-1 p {
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    padding-left: 10px;
    color: #34495e;
    font-weight: 600;
}
.brands_sec img {
  width: 70%;
}
.brands_sec {
  /* box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25); */
  background: #fff;
  border-radius: 10px;
  margin: 12px 0px;
  padding: 10px;
  border: 1px solid #cbcbcb;
}

.logo_brabd_sec {
  overflow: hidden; 
  transition: transform 0.3s ease-in-out; 
}


.logo_brabd_sec:hover {
  transform: scale(1.01); 
}


.logo-holder {
  transition: transform 0.3s ease-in-out; 
}

.logo_brabd_sec:hover .logo-holder {
  transform: scale(1.1);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
}

.project_log_sec {
  padding: 0px;
}
.box_height {
  height: auto;
}
.box_height_down {
  height: 320px;
}

.box_height_down_1 {
  height: 250px;
}
ul.sec-list-sec2 li {
  list-style: none !important;
  text-align: left;
  color: #000;
  font-size: 15px;
  line-height: 30px;
}

.sec-list-sec li i {
  margin-right: 10px;
  font-size: 12px;
  color: #243f9a;
}

.project_logo_head {
  text-shadow: 0px 1px 1px #000 !important;
  font-size: 21px !important;
  text-transform: uppercase;
  margin: 10px 10px !important;
}

@media screen and (max-width: 767px) {
  .box_height {
    height: auto;
  }
  .box_height_down {
    height: auto;
  }
  
  .box_height_down_1 {
    height: auto;
  }
  .box_pro {
    margin-bottom: 10px;
  }
}


.wa-chat-box-poweredby {
  text-align: center;
  font: 400 normal 15px / 1.3 -apple-system, BlinkMacSystemFont, Roboto, Open Sans, Helvetica Neue, sans-serif;
  margin-bottom: 15px;
  margin-top: -10px;
  font-style: italic;
  font-size: 12px;
  color: lightgray;
  display: none;
}

.carrer_sec_cnt {
  display: flex;
  justify-content: center;
  align-items: center;
}


.phone-call {
  width: 50px;
  height: 50px;
  left: 20px;
  bottom: 20px;
  background: #fff;
  position: fixed;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 99;
  display: inline-block;
  line-height: 65px;
}

.phone-call:before {
  position: absolute;
  content: " ";
  z-index: -1;
  top: -15px;
  left: -15px;
  background-color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  -webkit-animation: pulse 1s ease-out;
  animation: pulse 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0.3);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.6;
  }
  75% {
    -webkit-transform: scale(0.9);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(0.3);
    opacity: 1;
  }
  50% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  75% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.phone-call img {
  display: flex;
}

.img_gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.img_gallery h5 {
  background-color: #132430;
  color: #fff;
  padding: 10px 10px;
  position: relative;
  margin-top: -4px;
  text-transform: uppercase;
  font-size: 12px;
}
.call_nmbr a {
  color: #000;
}
.footer_link {
  color: #b1b1b1;
  font-size: 16px;
}
.footer_link:hover {
  color: #fff;
}

.img_gallery {
  transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.img_gallery:hover {
 
  transform: scale(1.02);
  z-index: 10; 
}

.img_gallery img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.img_p {
  padding: 7px 14px;
}

.mission_text {
  font-weight: 700;
  font-size: 31px;
  color: #fff;
}

/* new section */
.section-padding {
  padding: 120px 0;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.sec-lg-head .dot-titl-non {
  padding: 7px 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
}
.d-rotate {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.d-slideup .sideup-text {
  overflow: hidden;
  display: block;
}

.d-slideup .sideup-text .up-text {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
}
.d-slideup.animated .up-text {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.d-slideup .sideup-text:first-of-type .up-text {
  -webkit-transition-delay: .1s;
  -o-transition-delay: .1s;
  transition-delay: .1s;
}
.d-slideup .sideup-text {
  overflow: hidden;
  display: block;
}
.rest {
  padding: 0 !important;
  margin: 0 !important;
}
.about-intro .imgs {
  position: relative;
}
.about-intro .imgs .img1 {
  width: 70%;
  margin-top: 30px;
}
.o-hidden {
  overflow: hidden;
}
.imago {
  -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: -webkit-clip-path .8s ease-in-out .3s, -webkit-transform .8s ease-in-out 1.1s, -webkit-filter .5s ease-in-out 1.1s;
  transition: -webkit-clip-path .8s ease-in-out .3s, -webkit-transform .8s ease-in-out 1.1s, -webkit-filter .5s ease-in-out 1.1s;
  -o-transition: clip-path .8s ease-in-out .3s, transform .8s ease-in-out 1.1s, filter .5s ease-in-out 1.1s;
  transition: clip-path .8s ease-in-out .3s, transform .8s ease-in-out 1.1s, filter .5s ease-in-out 1.1s;
  transition: clip-path .8s ease-in-out .3s, transform .8s ease-in-out 1.1s, filter .5s ease-in-out 1.1s, -webkit-clip-path .8s ease-in-out .3s, -webkit-transform .8s ease-in-out 1.1s, -webkit-filter .5s ease-in-out 1.1s;
  position: relative;
}

.imago.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-filter: blur(0px);
  filter: blur(0px);
}
.about-intro .imgs .img1 img {
  position: relative;
  top: -30px;
}
.about-intro .imgs .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  border-top: 7px solid #1d1d1d;
  border-left: 7px solid #1d1d1d;
}
.o-hidden {
  overflow: hidden;
}
.rest {
  padding: 0 !important;
  margin: 0 !important;
}
.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.d-rotate {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.d-rotate .rotate-text {
  display: block;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
  transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
  opacity: 0;
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
}
.d-rotate.animated .rotate-text {
  -webkit-transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
  transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
  opacity: 1;
}
.about-intro .cont .feat {
  padding-left: 80px;
}

.img_service img {
  width: 100%;
  height: auto;
}
.mt_service {
  margin-top: 70px;
}
/* .border_view {
  transition: 0.3s;
  padding: 9px 25px 8px 25px;
  border-radius: 30px;
  border: 1px solid #fff;
  display: inline-block;
  color: #7d93de;
} */

.border_view a:hover {
color: #fff;
}

.list_pro li {
  color: #fff;
}
.list_pro li a {
  color: #fff;
}

.bg_black {
  background-color: #000;
}

.img_height_abt {
  width: 100%;
  max-width: 100%;
  height: 280px;

}
.abt_para {
    font-size: 17px;
    color: #fff;
    text-align: justify;
}
.sec_pro_height {
  height: 250px;
}
.team_pt {
  padding: 10px 0;
}
.team_pt h5 {
    margin-bottom: 22px;
}

.pt_sec_client {
  padding: 10px 0 !important;
}

div#wa-widget-send-button::before {
  position: absolute;
  content: " ";
  z-index: -1;
  top: -15px;
  left: -15px;
  background-color: #4dc247;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  -webkit-animation: pulse 1s ease-out;
  animation: pulse 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.abt_pb {
  padding: 0px 0;
}
.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
  padding: 10px 0px;
}
.first_box {
  padding-left: 0px !important;
}



@media screen and (max-width: 767px) {
  .img_about {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}
.sec_pro_height {
  height: auto;
}
.sec_pro_height {
  height: auto;
}

.offer-content {
  padding: 20px;
  color: #fff;
}
.pd_box {
  padding: 10px 30px
}
.pd_box1 {
  padding: 10px 20px;
}


}