/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #3b4ef8;
  text-decoration: none;
}

a:hover {
  color: #6c7afa;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Krub", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #808080;
  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: #929292;
  color: #fff;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3b4ef8;
  border-top-color: #e2e5fe;
  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 {
  background: #7C7B76;
  border-bottom: 2px solid #3b3b3b;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #2d405f;
}

#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# 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 30px;
  font-family: "Krub", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  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: #FFF;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #e2e5fe;
  padding: 9px 25px;
  margin-left: 30px;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  color: #3b4ef8;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3b4ef8;
}

.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;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

.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: #3b4ef8;
}

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

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(29, 41, 60, 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;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2d405f;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3b4ef8;
}

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

.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 {
  color: #3b4ef8;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #3b3b3b;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero.jpg');
  border-bottom: 2px solid white;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

#hero .container {
  padding-top: 70px;
}

#hero h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: #141d2b;
  width: 100%;
  color: #FFF;
}

#hero h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  color: #FFF;
}

#hero h4 {
  color: #FFF;
}

#hero .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin: 25px 15px 0 0;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
}

#hero .btn-job-bg {
  background: #dc3545;
}

#hero .btn-job-bg:hover {
  background: #bb2d3b;
}

#hero .btn-training-bg {
  background: #0dcaf0;
}

#hero .btn-training-bg:hover {
  background: #31d2f2;
}

#hero .hero-img {
  max-width: 80%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero .hero-img {
    max-width: 90%;
  }
}

/* @media (max-height: 768px) {
  #hero {
    height: auto;
  }
} */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f8fb;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2d405f;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #aabbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #f6f7ff;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #000;
}

.about .content {
  padding: 30px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #000;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
  font-size: 17px;
  text-align: justify;
}

.about .content .about-btn {
  display: inline-block;
  background: #2d405f;
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.about .content .about-btn i {
  font-size: 14px;
}

.about .content .about-btn:hover {
  background: #2d405f;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 30px;
  color: #636aa8;
  /* margin-bottom: 10px; */
}

.about .icon-boxes .icon-box h4 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 17px;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #cccccc2e;
  text-align: center;
  margin-top: 50px;
  padding: 20px 0px;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: #2d405f;
  padding-bottom: 80px;
}

.services .section-title h2,
.services .section-title p {
  color: #fff;
}

.services .section-title h2::after {
  background: rgba(255, 255, 255, 0.2);
}

.services .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
  border-radius: 5px;
  text-align: center;
}

.services .icon-box:hover {
  transform: scale(1.05);
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 32px;
  line-height: 1;
  color: #2d405f;
  background: #eff2f8;
  padding: 20px;
  border-radius: 50px;
  transition: all 0.3s;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #2d405f;
  transition: 0.3s;
}

.services .title a:hover {
  color: #4e6fa4;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #2d405f;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #636aa8;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.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: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #8ea5ca;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

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

.contact .php-email-form button[type=submit] {
  background: #636aa8;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #636aa8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 70px;
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(45, 64, 95, 0.06);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3d5782;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #000;
  font-size: 14px;
  background: #9d9d9d;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #2d405f;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Krub", sans-serif;
  color: #4e6fa4;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  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: #636aa8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 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: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #3b4ef8;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #9da7fc;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #636aa8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #636aa8;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e7eafe;
  color: #3b5998;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #636aa8;
  color: #fff;
  text-decoration: none;
}

#home-right-bg {
  width: 100%;
  height: auto;
  /* background: #3b3b3b; */
  background-image: linear-gradient(rgb(0 0 0 / 38%), rgb(0 0 0 / 40%)), url(../img/home-right.jpg);
  /* border-bottom: 2px solid white; */
  /* text-align: center; */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home-title {
  text-align: justify;
  font-size: 25px;
  font-weight: 700;
}

.about-1 .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about-bg {
  background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-size: 5px 5px;
}

.accordion {
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgb(45 64 95 / 17%);
  margin-bottom: 50px;
  --bs-accordion-bg: #f6f7ff;
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #2d405f;
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 #7c7b76;
  font-size: 20px;
  font-weight: 600;
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  background: #7c7b7617;
}

.accordion-button {
  font-size: 20px;
  font-family: sans-serif;
  font-weight: 700;
}

.whyus-title {
  text-align: center;
  margin: 20px 0px;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  color: #2d405f;
  padding-bottom: 20px;
}

.whyus-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #aabbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

#hero-service-event {
  width: 100%;
  height: 70vh;
  background: #3b3b3b;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/service/aerial-view-business-team.jpg');
  border-bottom: 2px solid white;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

#hero-service-event .container {
  padding-top: 70px;
}

#hero-service-event h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: #141d2b;
  width: 100%;
  color: #FFF;
}

#hero-service-event h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  color: #FFF;
}

#hero-service-event h4 {
  color: #FFF;
}

#hero-service-event .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin: 25px 15px 0 0;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
}

#hero-service-event .btn-job-bg {
  background: #dc3545;
}

#hero-service-event .btn-job-bg:hover {
  background: #bb2d3b;
}

#hero-service-event .btn-training-bg {
  background: #0dcaf0;
}

#hero-service-event .btn-training-bg:hover {
  background: #31d2f2;
}

#hero-service-event .hero-img {
  max-width: 80%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #hero-service-event h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }

  #hero-service-event h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero-service-event .hero-img {
    max-width: 90%;
  }
}


#hero-service-software {
  width: 100%;
  height: 70vh;
  background: #3b3b3b;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/service/representation-user-experience-interface-design.jpg');
  border-bottom: 2px solid white;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

#hero-service-software .container {
  padding-top: 70px;
}

#hero-service-software h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: #141d2b;
  width: 100%;
  color: #FFF;
}

#hero-service-software h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  color: #FFF;
}

#hero-service-software h4 {
  color: #FFF;
}

#hero-service-software .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin: 25px 15px 0 0;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
}

#hero-service-software .btn-job-bg {
  background: #dc3545;
}

#hero-service-software .btn-job-bg:hover {
  background: #bb2d3b;
}

#hero-service-software .btn-training-bg {
  background: #0dcaf0;
}

#hero-service-software .btn-training-bg:hover {
  background: #31d2f2;
}

#hero-service-software .hero-img {
  max-width: 80%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #hero-service-software h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }

  #hero-service-software h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero-service-software .hero-img {
    max-width: 90%;
  }
}

#hero-service-training {
  width: 100%;
  height: 70vh;
  background: #3b3b3b;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/service/business-people-casual-meeting.jpg');
  border-bottom: 2px solid white;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

#hero-service-training .container {
  padding-top: 70px;
}

#hero-service-training h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: #141d2b;
  width: 100%;
  color: #FFF;
}

#hero-service-training h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  color: #FFF;
}

#hero-service-training h4 {
  color: #FFF;
}

#hero-service-training .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin: 25px 15px 0 0;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
}

#hero-service-training .btn-job-bg {
  background: #dc3545;
}

#hero-service-training .btn-job-bg:hover {
  background: #bb2d3b;
}

#hero-service-training .btn-training-bg {
  background: #0dcaf0;
}

#hero-service-training .btn-training-bg:hover {
  background: #31d2f2;
}

#hero-service-training .hero-img {
  max-width: 80%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #hero-service-training h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }

  #hero-service-training h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero-service-training .hero-img {
    max-width: 90%;
  }
}

#service-right-technical {
  width: 100%;
  height: auto;
  background-image: linear-gradient(rgb(0 0 0 / 38%), rgb(0 0 0 / 40%)), url(../img/service/business-people-casual-meeting.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#service-right-corporate {
  width: 100%;
  height: auto;
  background-image: linear-gradient(rgb(0 0 0 / 38%), rgb(0 0 0 / 40%)), url(../img/service/representation-user-experience-interface-design.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#service-right-recruitment {
  width: 100%;
  height: auto;
  background-image: linear-gradient(rgb(0 0 0 / 38%), rgb(0 0 0 / 40%)), url(../img/service/aerial-view-business-team.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#service-right-software {
  width: 100%;
  height: auto;
  background-image: linear-gradient(rgb(0 0 0 / 38%), rgb(0 0 0 / 40%)), url(../img/service/representation-user-experience-interface-design.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#service-right-event {
  width: 100%;
  height: auto;
  background-image: linear-gradient(rgb(0 0 0 / 38%), rgb(0 0 0 / 40%)), url(../img/service/aerial-view-business-team.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#service-right-business {
  width: 100%;
  height: auto;
  background-image: linear-gradient(rgb(0 0 0 / 38%), rgb(0 0 0 / 40%)), url(../img/home-right.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.internship-p {
  font-size: 21px;
  font-family: sans-serif;
}


#hero-service-internship {
  width: 100%;
  height: 70vh;
  background: #3b3b3b;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/service/document-marketing-strategy-business-concept.jpg');
  border-bottom: 2px solid white;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

#hero-service-internship .container {
  padding-top: 70px;
}

#hero-service-internship h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: #141d2b;
  width: 100%;
  color: #FFF;
}

#hero-service-internship h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  color: #FFF;
}

#hero-service-internship h4 {
  color: #FFF;
}

#hero-service-internship .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin: 25px 15px 0 0;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
}

#hero-service-internship .btn-job-bg {
  background: #dc3545;
}

#hero-service-internship .btn-job-bg:hover {
  background: #bb2d3b;
}

#hero-service-internship .btn-training-bg {
  background: #0dcaf0;
}

#hero-service-internship .btn-training-bg:hover {
  background: #31d2f2;
}

#hero-service-internship .hero-img {
  max-width: 80%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #hero-service-internship h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }

  #hero-service-internship h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero-service-internship .hero-img {
    max-width: 90%;
  }
}
.client-card {
  position: relative;
 /* width: 18%;*/
  float: left;
  margin: 10px;
}

.client-card img {
  display: block;
  width: 100%;
  height: auto;
}

.client-info {
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  background-color: #2d405f9e;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 40px;
  -webkit-transition: .5s ease-out;
  border-radius: 5px;
  font-weight: 700;
  font-size: 20px;
}

.client-info p {
  color: #fff;
}

.client-info:hover {
  margin-top: 0;
  opacity: 1;
}
@media (max-width: 430px) {
  .client-info {
    opacity: 0;
    position: absolute;
    box-sizing: border-box;
    background-color: #2d405f9e;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 10px;
    -webkit-transition: .5s ease-out;
    border-radius: 5px;
    font-weight: 700;
    font-size: 20px;
  }
}

/*Events*/
#hero-events {
  width: 100%;
  height: 70vh;
  background: #3b3b3b;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/events/eventlogo.jpeg'); /*service/document-marketing-strategy-business-concept.jpg*/
  border-bottom: 2px solid white;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

#hero-events .container {
  padding-top: 70px;
}

#hero-events h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: #141d2b;
  width: 100%;
  color: #FFF;
}

#hero-events h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  color: #FFF;
}

#hero-events h4 {
  color: #FFF;
}

#hero-events .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin: 25px 15px 0 0;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
}

#hero-events .btn-job-bg {
  background: #dc3545;
}

#hero-events .btn-job-bg:hover {
  background: #bb2d3b;
}

#hero-events .btn-training-bg {
  background: #0dcaf0;
}

#hero-events .btn-training-bg:hover {
  background: #31d2f2;
}

#hero-events .hero-img {
  max-width: 80%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #hero-events h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }

  #hero-events h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero-events .hero-img {
    max-width: 90%;
  }
}

.sticky-qr-desktop {
  position: fixed;
  top: 25%;
  right: 20px;
  background: #fff;
  border: 2px solid #ccc;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border-radius: 8px;
}

.sticky-qr-desktop img {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.sticky-qr-desktop .qr-caption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.p-stick-head {
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0px;
  border: 1px solid gray;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  color: #FFD700;
  padding: 5px;
  background-color: #494949;
  border-radius: 5px;
}

.p-qr-bottom {
  margin: 1px;
  font-size: 16px;
  font-weight: 700;
  border: 0.1px solid gray;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  color: #124393;
  padding: 5px;
  background-color: #4949490a;
  border-radius: 5px;
}
 
 .sticky-logo {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      z-index: 1050; /* stay above other content */
      background-color: white; /* optional background */
      padding: 5px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2); /* optional shadow */
    }
    
    .sticky-qr-Mobile {
    position: fixed;
    top: 80%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1030;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    padding: 5px;
    border-left: 5px solid gold;
    max-width: 150px;
}
    .sticky-qr-Mobile img {
      width: 100%;
      height: auto;
      margin-bottom: 10px;
    }
    .sticky-qr-text {
      color: #333;
      font-weight: 600;
      text-align: center;
      font-size: 14px;
    }
    
@media screen and (max-width: 768px) {
  .sticky-qr-desktop {
    top: auto;
    bottom: 2px;
    right: 10px;
    padding: 4px;
  }

  .sticky-qr-desktop img {
    max-width: 90px;
  }

  .sticky-qr-desktop .qr-caption {
    font-size: 12px;
  }

  .p-stick-head,
  .p-qr-bottom {
    font-size: 10px;
    padding: 4px; border:0px;
  }
  .sticky-qr-text {
      color: #333;
      font-weight: 700;
      text-align: center;
      font-size: 12px;
    }   
}

#hero-events-banner {
    width: 100%;
    height: 90vh;
    /*background: #f9fafe;*/
    background-image: linear-gradient(rgb(0 0 0 / 22%), rgba(0, 0, 0, 0.7)), url(../img/service/aerial-view-business-team.jpg);
    border-bottom: 2px solid #f9fafe;
    text-align: center;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}/*{
  width: 100%;
  height: 100vh;
  background: #3b3b3b;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/events/679.jpg');
  border-bottom: 2px solid white;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}*/

#hero-events-banner .container {
  padding-top: 70px;
}

#hero-events-banner h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: #141d2b;
  width: 100%;
  color: #FFF;
}

#hero-events-banner h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  color: #FFF;
}

#hero-events-banner h4 {
  color: #FFF;
}

#hero-events-banner .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin: 25px 15px 0 0;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
}

#hero-events-banner .btn-job-bg {
  background: #dc3545;
}

#hero-events-banner .btn-job-bg:hover {
  background: #bb2d3b;
}

#hero-events-banner .btn-training-bg {
  background: #0dcaf0;
}

#hero-events-banner .btn-training-bg:hover {
  background: #31d2f2;
}

#hero-events-banner .hero-img {
  max-width: 80%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #hero-events-banner h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }

  #hero-events-banner h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero-events-banner .hero-img {
    max-width: 90%;
  }
}
.carousel-item{
    width: 50% !important;
    height: auto;
    margin: 20px;
    border: 2px solid #633711;
    padding: 20px;
    border-radius: 10px;
    left: 25%;
    background:#1b1c17;
}