:root {
  --primary-color: #494848;
  --active-color: #494848;
  --secondary-color: #1e1e1e;
  --font-main: "Gilroy-Regular";
  --blue-title: #102b9e;
  --text-color: #555555;
  --main-grey: #f5f5f5;
}
html {
  font-size: 16px;
}
body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.5;
}
main {
  padding-top: 5rem;
}
.main-grey {
  background-color: var(--main-grey);
}
main section:first-child,
main section:first-child .sec-padding-tb:first-child {
  padding-top: 0;
}
main section:last-child {
  padding-bottom: 5rem;
}
.navbar-brand img {
  max-width: 15rem;
}
/*common styles*/
.title-blue {
  color: var(--blue-title);
  font-size: 1.5rem;
  font-weight: 100;
  margin-bottom: 1rem;
}
.title-green {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 100;
  margin-bottom: 1rem;
}
.sub-title-black {
  color: var(--secondary-color);
  font-family: "Gilroy-Medium";
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 2rem;
}
.sub-title-white {
  color: #ffffff;
  font-family: "Gilroy-Medium";
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 2rem;
}
.slick-slide {
  height: inherit !important;
}
.inner-page-sub-title2 {
  font-family: "Gilroy-SemiBold";
  font-size: 2.75rem;
  color: var(--secondary-color);
}
.sec-padding-tb {
  padding: 3.75rem 0;
}
.marg-0 {
  margin: 0 !important;
}
.pad-btm0 {
  padding-bottom: 0 !important;
}
.pad-top0 {
  padding-top: 0 !important;
}

.service-box {
  min-height: 150px;
  background-color: #d80909;
}
/**********Home page***********/
/* Header */
/* Hero Section */
.hero-section {
  background: url(../images/banner-bg.png) var(--active-color) no-repeat center
    right;
  color: #ffffff;
  text-align: center;
  padding: 7rem 0 5rem;
  background-size: cover;
}
.banner-content {
  padding: 0 12%;
}
.banner-content h1 {
  font-family: "Gilroy-Medium";
  font-size: 3.375rem;
  padding-bottom: 1rem;
}
.banner-content p {
  padding: 0 8%;
  font-size: 1.25rem;
}
.hero-section .btn {
  margin-top: 2rem;
  background-color: var(--secondary-color);
  color: #ffffff;
  padding-left: 3rem;
  padding-right: 3rem;
  transition: all ease 0.3s;
}
.hero-section .btn:hover {
  opacity: 0.8;
  transition: all ease 0.3s;
}

/*Navigation */
.navbar {
  background-color: #ffffff;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--active-color);
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 2rem;
  padding-right: 2rem;
}
.navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link {
  padding-right: 0;
}
.navbar-toggler-icon {
  background-image: none;
}

/* Hamburger icon transforms */
.navbar-toggler {
  border: none;
  outline: none;
}
.navbar-nav .nav-link {
  font-family: "Gilroy-Medium";
  font-size: 1.25rem;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.875rem;
  height: 1.3125rem;
  position: relative;
  border-top: 0.2rem solid #000;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: #000;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
  top: 0.5rem;
}

.navbar-toggler-icon::after {
  bottom: 0;
}
.navbar-nav .dropdown-menu {
  padding: 0;
}
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.5rem 2rem;
  font-family: "Gilroy-Medium";
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  top: 3.625rem;
  border: 0;
  text-align: center;
}
.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item.active {
  color: var(--active-color);
  background: #ffffff;
}
.navbar-nav .dropdown-menu .dropdown-item {
  border-bottom: 0.0625rem solid #e6e6e6;
}
.navbar-collapse .navbar-nav {
  padding: 1rem;
}
.dropdown-toggle.dd-open::after {
  transform: rotate(180deg);
}
.dropdown-toggle::after {
  border: 0;
  background: url(../images/dd-arrow.svg) no-repeat center;
  width: 1.5rem;
  height: 0.5rem;
  position: absolute;
  top: 1.25rem;
  bottom: 0;
  transition: all 0.3s ease;
}
.dropdown-toggle:hover::after {
  background: url(../images/dd-arrow-hover.svg) no-repeat center;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  border-top-color: transparent;
}
.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  max-height: 18.75rem;
  opacity: 1;
}

/* About Us Section */
.about-section {
  text-align: left;
}
.about-section-content {
  padding-right: 12%;
}
.about-section-content ul {
  margin: 2rem 0;
}
.about-section-content ul li {
  margin-bottom: 1rem;
}
.about-section .btn.read-more {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: all ease 0.3s;
}

.about-section .btn.read-more:hover {
  opacity: 0.8;
  transition: all ease 0.3s;
}

/* Services Section */
.services-section {
  background-color: var(--secondary-color);
  color: #ffffff;
}
.services-section-inner {
  margin: 4rem 0 2rem;
}
.services-section .service-box {
  background-color: #ffffff;
  color: var(--secondary-color);
  padding: 1.25rem;
  border-radius: 0.375rem;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s ease;
}
.services-section .service-box h5 {
  font-family: "Gilroy-Medium";
  margin-bottom: 1rem;
}
.services-section .services-section-title {
  margin-bottom: 1rem;
}
.services-section .services-section-subtitle {
  margin-bottom: 4rem;
}

/* Why Choose Us Section */
.why-choose-section {
  background-image: url(../images/career-back.png);
  text-align: left;
}
.why-choose-section-inner {
  margin-top: 1rem;
}
.why-choose-box {
  background: url(../images/tick.svg) no-repeat top left;
  padding: 0 2rem 2rem;
  background-position-y: 0.15rem;
}
.why-choose-box h5 {
  margin-bottom: 0.625rem;
  color: var(--secondary-color);
}

/* Process Section */
.process-section-inner {
  margin-top: 2rem;
}
.process-section .slick-track {
  display: flex;
}
.process-section .slick-list {
  margin: 0 -2rem;
}
.process-section .process-box {
  background: var(--secondary-color);
  padding: 3rem;
  border-radius: 1rem;
  margin: 0 2rem;
}
.process-section .process-box h3 {
  color: var(--primary-color);
  font-size: 3.375rem;
  margin-bottom: 1rem;
}
.process-section .process-box h5 {
  color: #ffffff;
  font-family: "Gilroy-Medium";
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.process-section .process-box p {
  color: #c6c6c6;
}

/* Contact Section */
.contact-section {
  background: #d3cfcf;
}
.contact-section .contact-form {
  background-color: #ffffff;
  padding: 2rem;
  max-width: 90%;
}
.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea {
  border-radius: 0;
  border: 0.0625rem solid #e3e3e3;
}
.contact-section .contact-form textarea {
  resize: none;
  min-height: 7rem;
}
.contact-section .contact-form .btn {
  background-color: var(--secondary-color);
  color: #ffffff;
  width: 100%;
  border-radius: 0;
  transition: all ease 0.5s;
  font-size: 1.375rem;
  font-family: "Gilroy-Medium";
}
.contact-section .contact-form .btn:hover {
  opacity: 0.8;
  transition: all ease 0.5s;
}
.contact-section .contact-section-content {
  padding: 5rem 2rem;
}
.contact-section .contact-section-content .sub-title-black {
  font-weight: 400;
}
.contact-section .contact-section-content .social-icons {
  display: flex;
}
.contact-section .contact-section-content p {
  margin-bottom: 1rem;
}
.contact-section .contact-section-content .address {
  margin-bottom: 2rem;
}
.contact-section .contact-section-content .email a,
.contact-section .contact-section-content .mobile a {
  color: var(--text-color);
  text-decoration: none;
}
.contact-section .contact-section-content .social-icons a {
  margin-right: 1rem;
}
/* Testimonial section*/
.testimonials-section {
  background-color: #f9f9f9;
}
.ts-slick-slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.ts-slick-slider {
  display: flex;
  flex-wrap: wrap;
}
.testimonials-section .ts-slide {
  width: 50%; /* Two columns */
  padding-bottom: 2rem;
  margin: 0 2rem;
}
.ts-slick-slider-container .slick-list {
  margin: 0 -2rem;
}
.ts-slick-navigation {
  position: absolute;
  bottom: 0.625rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.625rem;
  right: -3rem;
}

.ts-slick-navigation .ts-slick-prev,
.ts-slick-navigation .ts-slick-next {
  background: url(../images/slider-arrow-left.svg) #494848 no-repeat center;
  color: #fff;
  border: none;
  padding: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all ease 0.5s;
}
.ts-slick-navigation .ts-slick-next {
  transform: rotate(180deg);
}
.ts-slick-navigation .ts-slick-prev:hover,
.ts-slick-navigation .ts-slick-next:hover {
  opacity: 0.8;
  transition: all ease 0.5s;
}
.testimonial-slider .testimonial-slide {
  padding: 4rem;
  border-radius: 1.25rem;
  border: 0.09375rem solid #e7e7e7;
  -webkit-box-shadow: 0rem 1.25rem 1.25rem -0.9375rem rgba(240, 240, 240, 1);
  -moz-box-shadow: 0rem 1.25rem 1.25rem -0.9375rem rgba(240, 240, 240, 1);
  box-shadow: 0rem 1.25rem 1.25rem -0.9375rem rgba(240, 240, 240, 1);
}
.testimonial-slider
  .testimonial-slide
  .testimonial-slide-content
  .testimonial-slide-content-title {
  margin-bottom: 1rem;
}
.testimonial-slider .testimonial-slide .testimonial-slide-content p {
  color: #6f6c90;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.testimonial-slider
  .testimonial-slide
  .testimonial-slide-author
  .testimonial-slide-author-image {
  padding-right: 1rem;
}
.testimonial-slider
  .testimonial-slide
  .testimonial-slide-author
  .testimonial-slide-author-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-slider
  .testimonial-slide
  .testimonial-slide-author
  .testimonial-slide-author-detail
  .testimonial-slide-author-name {
  color: #170f49;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
}
.testimonial-slider
  .testimonial-slide
  .testimonial-slide-author
  .testimonial-slide-author-bio {
  color: #6f6c90;
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: #c0c0c0;
  padding: 2.5rem 0;
}
footer .footer-logo {
  padding-right: 5rem;
}
footer h5 {
  color: #ffffff;
  margin: 1rem 0;
  font-size: 1.5rem;
}
footer .footer-submenu {
  justify-content: space-between;
  margin-top: 2rem;
}
footer .footer-submenu a {
  text-decoration: underline;
}

footer a {
  color: #c0c0c0;
  text-decoration: none;
  padding: 0.4rem 0;
  display: block;
}
footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
footer .footer-bottom {
  border-top: 0.0625rem solid #444;
  text-align: center;
  padding-top: 1.25rem;
}

/**********END Home page***********/
/**********About US page***********/
/* Hero Section */
.inner-hero-section {
  background: url(../images/banner-bg.png) var(--active-color) no-repeat center
    right;
  color: #ffffff;
  text-align: center;
  padding: 7rem 0 5rem;
  background-size: cover;
}
.inner-hero-section h1 {
  font-family: "Gilroy-SemiBold";
  font-size: 4.25rem;
  margin-bottom: 3rem;
}
.inner-hero-section .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: #ffffff;
}
.inner-hero-section .breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}
.breadcrumb-item.active {
  font-family: "Gilroy-SemiBold";
  color: var(--secondary-color);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  background: url(../images/breadcrumb-arrow.svg) no-repeat center;
  width: 2.5rem;
  height: 2.5rem;
}
/*about-intro-section*/
.about-intro-section .intro-top-p p {
  font-size: 1.125rem;
}

.intro-video-col-left,
.intro-video-col-right {
  min-height: 28rem;
}
.intro-video-col-right {
  padding-left: 3rem;
  width: 90%;
}
.video-list-content {
  background: var(--secondary-color);
  padding: 1rem 2rem;
  border-radius: 1rem;
  height: 100%;
}
.intro-video-col-left video {
  object-fit: cover;
  border-radius: 1rem;
  height: 100%;
}
.video-list-content ul {
  margin-bottom: 0;
  height: 100%;
}
.video-list-content ul li {
  border-bottom: 1px solid #8d8d8d;
  text-align: center;
  height: 33.33%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.video-list-content ul li:last-child {
  border: 0;
}
.video-list-content h5 {
  color: var(--primary-color);
  font-family: "Gilroy-SemiBold";
  font-size: 3rem;
}
.video-list-content p {
  font-size: 1.375rem;
  font-family: "Gilroy-SemiBold";
  color: #ffffff;
}

.intro-list-img-col-left h5 {
  color: var(--primary-color);
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-family: "Gilroy-SemiBold";
}
.intro-list-img-col-left p {
  font-size: 1.375rem;
  color: #000000;
  margin-bottom: 1rem;
}
.intro-list-img-col-right {
  text-align: center;
}
.intro-list-img-col-right img {
  border-radius: 1rem;
}
/*our goal*/
.goal-icon img {
  margin-bottom: 1rem;
}

/*our team*/
.ourteam-section h2 {
  font-size: 3rem;
  font-family: "Gilroy-SemiBold";
  margin-bottom: 3rem;
  color: var(--secondary-color);
}
.ourteam-section .slick-track {
  display: flex;
}
.ourteam-section .slick-list {
  margin: 0 -2rem;
}
.ourteam-section .ourteam-item {
  margin: 0 2rem;
  text-align: center;
}
.ourteam-section .ourteam-item .ourteam-item-img img {
  margin-bottom: 2rem;
  border-radius: 1rem;
  width: 100%;
}
.ourteam-section .ourteam-item .ourteam-author-name {
  color: var(--secondary-color);
  font-family: "Gilroy-Medium";
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.ourteam-section .ourteam-item .ourteam-author-desc {
  color: #aaaaaa;
  font-size: 1.625rem;
  margin-bottom: 1rem;
}

/**********End About US page***********/
/**********Solution page***********/
.solution-item {
  margin-bottom: 2rem;
}
.solution-item-section .solution-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #000000;
  padding: 2rem;
  border-radius: 1rem;
  background: #ffffff;
  transition: all ease 0.5s;
}
.solution-item-section .solution-item h5 {
  font-size: 1.375rem;
  font-family: "Gilroy-SemiBold";
  margin-bottom: 1rem;
  color: var(--secondary-color);
  padding-top: 5rem;
}
.solution-item-section .solution-item .solution-item-cnt {
  margin-bottom: 1rem;
}
.solution-item-section .solution-item a:hover,
.solution-item-section .solution-item a.active {
  background: #5a5959;
  color: white;
  -webkit-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.75);
  transition: all ease 0.5s;
}

/* Faq Section */
.faq-title-black {
  font-size: 2.75rem;
  color: var(--secondary-color);
  font-family: "Gilroy-SemiBold";
  margin-bottom: 3rem;
}
.faq-section-inner {
  margin-top: 1rem;
}
.faq-box {
  background: url(../images/question.svg) no-repeat top left;
  padding: 0 3rem 2rem;
  background-position-y: 0.15rem;
}
.faq-box h5 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: var(--secondary-color);
  font-family: "Gilroy-Medium";
}
/**********End Solution page***********/

/********** Contact page***********/
/* Contact page contact form*/
.contact-section.contact-form-white {
  background: none;
}
.contact-section.contact-form-white .contact-form {
  background-color: var(--main-grey);
  padding: 0;
  max-width: 100%;
}
.contact-section.contact-form-white .contact-form label {
  color: #5f5f5f;
  font-size: 1.125rem;
}
.contact-section.contact-form-white .contact-form input,
.contact-section.contact-form-white .contact-form select,
.contact-section.contact-form-white .contact-form textarea {
  border-radius: 0;
  border: 0;
  border-bottom: 0.0625rem solid #000000;
  margin-bottom: 3rem;
  background-color: var(--main-grey);
}
.contact-section.contact-form-white .contact-form textarea {
  resize: none;
  min-height: 2rem;
}
.contact-section.contact-form-white .contact-form .btn {
  background-color: var(--secondary-color);
  color: #ffffff;
  width: 100%;
  border-radius: 0.25rem;
  transition: all ease 0.5s;
}
.contact-section.contact-form-white .contact-form .btn:hover {
  opacity: 0.8;
  transition: all ease 0.5s;
}
.contact-section.contact-form-white .contact-section-content {
  padding: 5rem 2rem;
}
.contact-section.contact-form-white .contact-section-content .sub-title-black {
  font-weight: 400;
}
.contact-section.contact-form-white .contact-section-content p {
  margin-bottom: 1rem;
}
.contact-section.contact-form-white .contact-section-content .email-list a,
.contact-section.contact-form-white .contact-section-content .mobile-list a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.25rem;
}
.contact-section.contact-form-white .contact-section-content .email-list {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 5rem;
  margin-bottom: 2rem;
  background: url(../images/mail-icon.svg) no-repeat left center;
  background-position-y: 0.9rem;
  margin-left: 5rem;
}
.contact-section.contact-form-white .contact-section-content .mobile-list {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 5rem;
  margin-bottom: 2rem;
  background: url(../images/phone-icon.svg) no-repeat left center;
  background-position-y: 0.5rem;
  margin-left: 5rem;
}
.location-map img {
  border-radius: 1rem;
  width: 100%;
}

/* partners Section */
.partners-section-inner {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.partners-section .slick-track {
  display: flex;
}
.partners-section .slick-list {
  margin: 0 -2rem;
}
.partners-section .partners-box {
  display: flex;
  justify-content: center;
}
/********** End Contact page***********/
/********** Partners page***********/
.partners-logo-section .partners-logo-title {
  position: relative;
  margin-bottom: 2rem;
  font-family: "Gilroy-SemiBold";
  font-size: 1.625rem;
  color: var(--secondary-color);
}
.partners-logo-section .partners-logo-title::before {
  content: "";
  position: absolute;
  border-bottom: 0.0625rem solid #787878;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  z-index: -1;
  height: 0.0625rem;
}
.partners-logo-section .partners-logo-title span {
  padding: 1rem;
  background-color: #ffffff;
}
.partners-logo-section .logos-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem 0 4rem;
}
.partners-logo-section .logos-list span {
  max-width: 25%;
  padding: 2rem;
}
.partners-logo-section .logos-list span img {
  max-height: 4rem;
  width: auto;
  max-width: 100%;
}
.partners-content-section .partners-content-title {
  margin-bottom: 2rem;
  font-family: "Gilroy-Medium";
  font-size: 2.625rem;
  color: var(--secondary-color);
}
.partners-content-section p {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 1.438rem;
}

/*Partner two col*/
.partners-content-two-col .partners-content-title {
  font-size: 2.125rem;
}
.partners-content-two-col .logos-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem 0 4rem;
}
.partners-content-two-col .logos-list span {
  max-width: 33.33%;
  padding: 2rem;
}
.partners-content-two-col .logos-list span img {
  max-height: 4rem;
  width: auto;
  max-width: 100%;
}
/********** End Partners page***********/
/********** start careers page***********/
/* career sec start here*/
.btn-grn {
  background-color: var(--primary-color);
  border: 0;
}

.btn-grn:hover {
  background-color: var(--primary-color);
  border: 0;
}

.career-sec .car-head {
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 5.625rem;
}

.career-sec .car-head h6 {
  font-family: Gilroy-Medium;
  font-size: 1.25rem;
  line-height: 1.51625rem;
  color: var(--primary-color);
  margin-bottom: 1.5625rem;
}

.career-sec .car-head h2 {
  font-family: Gilroy-SemiBold;
  font-size: 2.5rem;
  line-height: 3.0625rem;
  color: var(--secondary-color);
  margin-bottom: 0.9375rem;
}

.career-sec .car-head p {
  font-family: Gilroy-Regular;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #6f6c90;
}

.career-sec .car-find-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 0.0625rem solid #e6e6e6;
  border-radius: 0.625rem;
  padding: 0 1rem;
  box-shadow: 0rem 0.5rem 1.5rem 0rem #002c6d0a;
}

.career-sec .car-find-col .form-control {
  border: 0;
  font-size: 0.9375rem;
  color: #9199a3;
  padding: 1.25rem 0.625rem;
}

.career-sec .car-find-col .job-type {
  background: url(../images/fi_search.png) no-repeat;
  background-position: center left;
  padding: 1.25rem 2.1875rem;
  width: 50%;
}
.career-sec .car-find-col .form-control:focus {
  box-shadow: unset;
}
.career-sec .car-find-col .job-city {
  background: url(../images/map-pin.png) no-repeat;
  background-position: center left;
  padding-left: 1.875rem;
  width: 50%;
  display: flex;
  align-items: center;
  position: relative;
}
.career-sec .car-find-col .job-city::after {
  border-right: 0.075rem solid #edeff5;
  content: "";
  position: absolute;
  left: -0.9375rem;
  width: 0.075rem;
  height: 100%;
}

.career-sec .car-find-col .input-sec {
  display: flex;
  width: 78%;
  justify-content: space-between;
}
.career-sec .car-find-col .input-sec figure {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
}
.career-sec .car-find-col .btn-sec {
  width: 20%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.career-sec .car-find-col .btn-sec figure {
  margin: 0;
  margin-right: 1.5rem;
}

.career-sec .car-find-col .btn-find {
  padding: 0.75rem 1.875rem;
  border-radius: 0.1875rem;
  margin-left: 0.9375rem;
  font-family: Gilroy-Medium;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: all ease 0.3s;
}
.career-sec .car-find-col .btn-find:hover {
  opacity: 0.8;
  transition: all ease 0.3s;
}
.career-sec .car-find-col .btn-fltr {
  padding: 0.6875rem 1.5625rem 0.625rem 2.8125rem;
  border: 0;
  font-family: Gilroy-Medium;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: left;
  border-radius: 0.25rem;
  background: url(../images/filter-icon.png) no-repeat;
  background-position: center left;
  background-color: #eff3f6;
  color: #18191c;
  background-position: 0.75rem;
  transition: all ease 0.3s;
}
.career-sec .car-find-col .btn-fltr:hover {
  opacity: 0.8;
  transition: all ease 0.3s;
}
.career-sec .job-list {
  margin: 3.125rem -1.3125rem;
}

.career-sec .job-card img {
  padding: 0.75rem 0.75rem 0;
}

.career-sec .job-card .card {
  border-radius: 0.75rem;
  border: 0.0625rem solid #f2f2f2;
  margin-bottom: 2.5rem;
}

.career-sec .job-card aside {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  align-items: center;
}

.career-sec .job-card h5 {
  font-family: Gilroy-Medium;
  font-size: 1.25rem;
  line-height: 1.51625rem;
  color: #1e1e1e;
}

.career-sec .job-card p.time {
  font-family: Gilroy-Regular;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.03125rem;
  color: #606060;
}

.career-sec .job-card p.price {
  font-family: Gilroy-Medium;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.364375rem;
  color: #1c252f;
}

.career-sec .job-card p.place {
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.06125rem;
  color: #979797;
  background: url(../images/location.png) no-repeat;
  padding-left: 1.5625rem;
  background-size: 1.125rem;
}

.career-sec .job-card .btn-apply {
  font-family: Gilroy-Medium;
  font-size: 1.25rem;
  line-height: 1.51625rem;
  text-align: left;
  color: #ffffff;
  width: 100%;
  text-align: center;
  border-radius: 0.25rem;
  transition: all ease 0.3s;
}
.career-sec .job-card .btn-apply:hover {
  opacity: 0.8;
  transition: all ease 0.3s;
}
.career-sec .job-pagination ul {
  justify-content: center;
}

.career-sec .page-link {
  background-color: transparent;
  border-radius: 3.125rem;
  font-family: Gilroy-SemiBold;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0 0.9375rem;
  color: #5e6670;
  border: 0;
  width: 3rem;
  height: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
}
.career-sec .page-link:focus {
  box-shadow: unset;
}
.career-sec .page-link:hover {
  background: #f1f2f4;
  color: #18191c;
  transition: all ease 0.3s;
}

.career-sec .page-item span {
  font-size: 1.875rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  align-items: center;
  border-radius: 3.125rem;
  transition: all ease 0.3s;
}

.career-sec .pre-next {
  display: flex;
  align-items: center;
}

.career-sec .pre-next a {
  text-decoration: none;
}

.career-sec .page-item span:hover {
  color: #000000;
  background: #dbffcc;
  width: 3rem;
  height: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
  color: #236937;
  transition: all ease 0.3s;
}

.career-sec .page-link.active {
  background-color: var(--primary-color);
  color: #fff;
  margin: 0 0.9375rem;
}

.cta-section {
  background: #ededed;
  background-image: url(../images/career-back.png);
  border-radius: 1.25rem;
  text-align: center;
  padding: 3.75rem 0rem;
  margin: 3.125rem 0rem;
}

.cta-section h2 {
  font-family: Gilroy-SemiBold;
  font-size: 2.5rem;
  line-height: 1.875rem;
  text-align: center;
  color: #000000;
  margin-bottom: 3.125rem;
}

.cta-section h2 span {
  display: block;
  margin-top: 1.875rem;
}

.cta-section .cta-btn {
  color: #fff;
  font-family: Gilroy-Medium;
  font-size: 1.25rem;
  line-height: 1.51625rem;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  transition: all ease 0.3s;
}
.cta-section .cta-btn:hover {
  opacity: 0.8;
  transition: all ease 0.3s;
}

.cta-section .cta-btn span {
  vertical-align: middle;
  font-size: 1.375rem;
  padding-left: 0.3125rem;
}
.career-detail {
  padding-bottom: 5rem;
}
.career-detail h2 {
  font-family: Gilroy-Medium;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0.9375rem;
}

.career-detail .badge-grn {
  font-family: Gilroy-SemiBold;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
  background: #0ba02c;
  border-radius: 0.1875rem;
  padding: 0.25rem 0.75rem;
  margin-right: 0.625rem;
}

.career-detail .badge-red {
  font-family: Gilroy-SemiBold;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #e05151;
  background: #ffeded;

  border-radius: 0.1875rem;
  padding: 0.25rem 0.75rem;
}

.career-detail .job-des h4 {
  font-family: "Gilroy-Bold";
  font-size: 1rem;
  line-height: 1.5rem;
  color: #18191c;
  margin-bottom: 1.25rem;
}

.career-detail .job-des p {
  font-family: Gilroy-Medium;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #5e6670;
  margin-bottom: 1.25rem;
}

.career-detail .job-des ul {
  margin-bottom: 1.25rem;
}

.career-detail .job-des li {
  font-family: Gilroy-Medium;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #5e6670;
  margin-bottom: 0.3125rem;
}

.career-detail .job-apply {
  justify-content: flex-end;
  display: flex;
}

.career-detail .job-apply a {
  font-family: Gilroy-SemiBold;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  border-radius: 0.25rem;
  padding: 0.9375rem 4.5rem;
  margin-left: 0.9375rem;
  transition: all ease 0.3s;
}
.career-detail .job-apply a:hover {
  opacity: 0.8;
  transition: all ease 0.3s;
}
.career-detail .job-apply a span {
  font-size: 1.25rem;
  vertical-align: middle;
  padding-left: 0.3125rem;
}

.career-detail .top-sec {
  align-items: center;
  margin-bottom: 3.125rem;
}

.career-detail .job-apply span.bi-bookmark {
  vertical-align: middle;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 0.25rem;
  color: var(--primary-color);
  -webkit-text-stroke: 0.03125rem;
}

.career-detail .job-skill h5 {
  font-family: Gilroy-Medium;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1.25rem;
}

.career-detail .job-skill li {
  list-style: none;
  display: inline-block;
  font-family: Gilroy-Regular;
  font-size: 0.875rem;
  background: #e6efff;
  border-radius: 0.25rem;
  padding: 0rem 0.8125rem;
  margin: 0.3125rem;
  line-height: 1.75rem;
}

.career-detail .job-skill {
  margin-bottom: 1.875rem;
}

.career-detail .job-det {
  border: 0.125rem solid #8389811a;
  background: #fff;
  border-radius: 0.5rem;
  display: flex;
  padding: 1.875rem 0.9375rem;
  text-align: center;
  justify-content: space-around;
  margin-bottom: 1.875rem;
  align-items: center;
}

.career-detail .sal-det {
  position: relative;
}

.career-detail .sal-det::after {
  top: 0;
  border-right: 0.125rem solid #e7f0fa;
  content: "";
  position: absolute;
  height: 100%;
  right: -2.1875rem;
}

.career-detail .sal-det h6 {
  font-family: Gilroy-Medium;
  font-size: 1rem;
  color: #18191c;
  line-height: 1.5rem;
}

.career-detail .loc-det h6 {
  font-family: Gilroy-Medium;
  font-size: 1rem;
  color: #18191c;
  line-height: 1.5rem;
}

.career-detail .loc-det span {
  color: var(--primary-color);
  font-size: 2rem;
}

.career-detail .sal-det p.price {
  font-family: Gilroy-Medium;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #0ba02c;
  margin: 0.625rem 0rem 0.3125rem;
}

.career-detail .sal-det p.duration {
  font-family: Gilroy-Regular;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #767f8c;
}

.career-detail .loc-det p.location {
  font-family: Gilroy-Regular;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  color: #767f8c;
}

.career-detail .jo-sec {
  background-color: #fff;
  border: 0.125rem solid #8389811a;
  border-radius: 0.5rem;
}

.career-detail .jo-sec h5 {
  font-family: Gilroy-Medium;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #18191c;
  margin-bottom: 1.25rem;
}

.career-detail .jo-inner .jo-col {
  margin-bottom: 1.25rem;
}

.career-detail .jo-inner p.jo-head {
  font-family: Gilroy-Regular;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #767f8c;
  margin: 0.3125rem 0rem;
}

.career-detail .jo-inner p.jo-det {
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #18191c;
}

.career-detail .jo-inner {
  border-bottom: 0.125rem solid #4948481a;
  padding: 1.875rem;
  padding-bottom: 0.625rem;
}

.career-detail .job-social {
  padding: 1.875rem;
}

.career-detail .job-social ul {
  padding: 0;
}

.career-detail .job-social li {
  display: inline-block;
  list-style: none;
  margin-right: 0.3125rem;
}

.career-detail .job-social li a.copy-links {
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.6875rem 0.75rem 0.6875rem 2.5rem;
  background: url(../images/copy-link.png) no-repeat left center;
  background-color: #f3fcef;
  background-position: 0.625rem;
  font-family: Gilroy-Medium;
  font-size: 1rem;
  line-height: 1.5rem;
  border-radius: 0.25rem;
  transition: all ease 0.3s;
}

.career-detail .job-social li a.copy-links:hover {
  background: url(../images/copy-link-wt.png) no-repeat left center;
  background-position: 0.625rem;
  background-color: var(--primary-color);
  color: #fff;
  transition: all ease 0.3s;
}

.career-detail .job-social li span {
  font-size: 1.25rem;
  color: var(--primary-color);
  background: #f3fcef;
  padding: 0.5rem 0.625rem;
  border-radius: 0.25rem;
  transition: all ease 0.3s;
}

.career-detail .job-social li span:hover {
  background: var(--primary-color);
  transition: all ease 0.3s;
  color: #fff;
}

.carrer-modal .modal-dialog {
  max-width: 46.1875rem;
  border-radius: 0.625rem;
}

.carrer-modal .modal-header {
  border: 0.0625rem solid #f1f1f1;
  padding: 1.25rem 3.125rem;
}

.carrer-modal .modal-header h1 {
  font-family: Gilroy-Medium;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #000000;
}

.carrer-modal .btn-close {
  opacity: 1;
}

.carrer-modal .modal-body {
  padding: 1.25rem 3.125rem;
}

.carrer-modal .form-label {
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #000000;
}

.carrer-modal .modal-footer {
  box-shadow: 0rem -0.125rem 0.25rem 0rem #0000001a;
  position: sticky;
  bottom: 0;
  width: auto;
  background: #fff;
  justify-content: center;
}

.carrer-modal .sub-btn {
  font-family: Gilroy-Medium;
  font-size: 1rem;
  padding: 0.5625rem 2.5rem;
  border: 0;
  line-height: 1.5rem;
  color: #ffffff;
  background-color: #000000;
  border-radius: 0.625rem;
}
.carrer-modal .sub-btn:hover {
  background-color: var(--active-color);
  transition: all ease 0.3s;
}
.carrer-modal .form-control,
.carrer-modal textarea {
  border: 0.0625rem solid #e4e3e3;
  border-radius: 0.625rem;
  margin-bottom: 0.9375rem;
  resize: unset;
  padding: 0.5625rem 0.625rem;
}
.carrer-modal textarea:focus-visible {
  outline: none;
}
.carrer-modal .form-control:focus {
  box-shadow: unset;
}
.carrer-modal .bootstrap-select {
  width: 100% !important;
}

.carrer-modal .dropdown-toggle {
  border: 0.0625rem solid #e4e3e3;
  border-radius: 0.625rem;
  margin-bottom: 0.9375rem;
  resize: unset;
  display: block !important;
  background: #fff;
  padding: 0.5625rem 0.625rem;
}

.carrer-modal .dropdown-toggle::after {
  background: url(../images/career-drop.png) no-repeat;
  border: 0;
  width: 1.125rem;
  height: 0.5625rem;
  margin-left: -1.25rem;
  vertical-align: middle;
  background-size: 0.9375rem;
}

.carrer-modal .bootstrap-select .dropdown-menu li a {
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #000000;
}

.carrer-modal .dropdown-item.active,
.carrer-modal .dropdown-item:hover {
  background-color: var(--primary-color);
  color: #fff !important;
}

.carrer-modal .upload-file {
  border: 0.0625rem solid #e4e3e3;
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
  color: #5d5d5d;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.375rem;
}

.carrer-modal .upload-file span {
  -webkit-text-stroke: 0.03125rem;
  padding-right: 0.625rem;
}
/********** End careers page***********/
/********** start product Gadget page***********/
.inner-hero-section.product-banner img,
.product-service-offer img {
  max-width: 100%;
}

.inner-hero-section.product-banner h1 {
  font-family: Gilroy-SemiBold;
  font-size: 3.3125rem;
  font-weight: 400;
  line-height: 4.058125rem;
  text-align: right;
  color: #ffffff;
}
.inner-hero-section.product-banner h1 span {
  color: #000000;
}
.inner-hero-section.product-banner .banner-inner {
  align-items: center;
}
.inner-hero-section.product-banner .banner-inner p {
  font-family: Gilroy-Medium;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.805rem;
  text-align: left;
  color: #ffffff;
}
.product-gadget-content .product-content-col {
  justify-content: space-between;
  margin-bottom: 3.125rem;
}
.product-gadget-content .product-content-col.reverse-col {
  flex-direction: row-reverse;
}
.product-gadget-content .product-content-col h2 {
  font-family: Gilroy-Medium;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.51625rem;
  color: #494848;
  margin-bottom: 0.625rem;
}
.product-gadget-content .product-content-col h3 {
  font-family: Gilroy-SemiBold;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.75625rem;
  color: #1e1e1e;
  margin-bottom: 0.9375rem;
}
.product-gadget-content .product-content-col p {
  font-family: Gilroy-Regular;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.805rem;
  color: #555555;
  margin-bottom: 0.9375rem;
}
.product-gadget-content .product-content-col figure {
  text-align: center;
  background: #ffffff;
  border-radius: 0.6875rem;
}
.product-service-offer {
  background: #1e1e1e;
  padding: 3.125rem 0rem;
}
.product-service-offer h2 {
  font-family: Gilroy-Regular;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.65rem;
  text-align: center;
  color: #8f8d8d;
}
/*start services main tab section*/
.service-main-tab {
  margin-top: 3.125rem;
}

.service-main-tab .container-fluid {
  padding: 0;
}

.service-main-tab .contentWrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.service-main-tab .tabsWrapper {
  width: 109%;
  height: 4rem;
  overflow: hidden;
  position: relative;
}

.service-main-tab .tabs {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: -1.5625rem;
  left: 0;
  right: 0;
  white-space: nowrap;
  overflow: auto;
}

.service-main-tab .tabs li {
  display: inline-block;
  cursor: pointer;
  padding: 0.75rem 3.125rem;
  font-family: Gilroy-SemiBold;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.45rem;
  text-align: center;
  color: #ababab;
}

.service-main-tab .tabs li.active {
  font-family: Gilroy-SemiBold;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.45rem;
  text-align: center;
  color: #ffffff;
  border-bottom: 0.125rem solid #fff;
  text-decoration: underline;
  text-underline-offset: 0.5em;
}

.service-main-tab .tabContent {
  width: 100%;
  padding: 0.9375rem 0 0;
  margin-top: 3.125rem;
}
.service-main-tab .pso-tab-content {
  align-items: center;
  justify-content: space-between;
}
.service-main-tab .pso-tab-content li {
  font-family: Gilroy-Medium;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6875rem;
  letter-spacing: 0.01em;
  text-align: left;
  color: #f6f6f6;
  margin-bottom: 0.9375rem;
}
/*end services main tab section*/
/**********End product Gadget page***********/

/* Scroll to Top Button Styles */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background-color: #494848; /* Bootstrap primary color */
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s; /* Smooth fade-in */
  z-index: 1000; /* Ensures button is above other content */
}

.scroll-to-top:hover {
  background-color: #666363; /* Darker blue on hover */
}
.custom-icon {
  color: #494848;
  font-size: 2rem;
}
