@import url("https://fonts.cdnfonts.com/css/general-sans");

:root {
  --text-primary-color: #ff6d2f;
  --text-secondary-color: #100805;
  --text-gray-color: #433834;
  --bg-primary-color: #ff6d2f;
  --bg-secondary-color: #100805;
  --box-bg: #fce9e1;
  --service-header-bg: #fcede5;
  --gradiant-top-bottom-bg: linear-gradient(to bottom, #fcede5, #ffffff);
  --gradiant-left-right-bg: linear-gradient(to right, #fdf7f5, #ffffff);
  --section-bg: linear-gradient(to right, #fff4f0, #fffdfa, #fef9ef);
}

body,
html {
  font-family: "General Sans", sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
  background: #fff;
  min-width: 375px;
  overflow-x: hidden;
}

/* common css start */
.section-title h2,
.section-title h1 {
  font-size: 60px;
  font-weight: 600;
  color: var(--text-secondary-color);
}

.section-title h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--text-primary-color);
}

p {
  font-size: 18px;
  color: var(--text-gray-color);
  font-weight: 400;
  line-height: 30px;
}

.swiper-wrapper {
  height: auto;
}

.number {
  color: #fff;
  margin-right: 30px;
  padding: 10px 20px;
  font-size: 20px;
  background-image: url("../images/circlepic.png");
  background-repeat: no-repeat;
  background-position: center;
}

/* common css end*/

/* animation css end*/

/* animation css end*/

/* navbar section start */

header {
  position: relative;
  z-index: 999;
  background-color: var(--service-header-bg);
  /* background-color: var(--section-bg); */
}

.navbar {
  padding: 16px 0px;
}

.navbar-brand img {
  height: 65px;
  width: auto;
}

.navbar-nav {
  margin: 0 auto;
}

.navbar-nav li.nav-item {
  padding: 0 30px;
}

.navbar-nav li.nav-item .nav-link {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #433834;
  padding: 0;

  background-image: linear-gradient(
    to right,
    var(--text-primary-color),
    var(--text-primary-color) 50%,
    #433834 50%
  );
  background-size: 200% 100%;
  background-position: 100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  padding: 5px 0;
}

.navbar-nav li.nav-item .nav-link:before {
  content: "";
  background: var(--text-primary-color);
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}

.navbar-nav li.nav-item .nav-link:hover {
  color: var(--text-primary-color);
  background-position: 0;
}

.navbar-nav li.nav-item .nav-link:hover::before {
  width: 100%;
}
.navbar-nav li.nav-item .nav-link.active {
  color: var(--text-primary-color);
  background-position: 0;
}
.dropdown-item.active {
  background-color: var(--bg-primary-color);
}

.navbar-nav li.nav-item .nav-link.active::before {
  width: 100%;
}

.dropdown .dropdown-menu,
.dropdown-menu.show {
  overflow: hidden;
  transform-origin: top center;
  transform: scale(1, 0);
  display: block;
  width: 250px;
  padding: 15px;
  border-radius: 0;
  border: 0;
  box-shadow: 0px 5px 15px -5px var(--bg-secondary-color);
  border-top: 3px solid var(--bg-primary-color);
  top: 33px;
  left: 30px;
  display: inline;
  margin: 0;
}

.dropdown:hover .dropdown-menu {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.dropdown:hover .nav-link {
  color: var(--text-primary-color);
}

.dropdown-toggle::after {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2225%22%20viewBox%3D%220%200%2025%2025%22%20fill%3D%22none%22%3E%0A%3Cpath%20d%3D%22M20%208.75L12.5%2016.25L5%208.75%22%20stroke%3D%22%23433834%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E");
  border: 0;
  position: absolute;
  z-index: 1;
  right: -30px;
  display: inherit;
  top: 5px;
}

.dropdown-item {
  padding: 10px 15px;
  color: var(--text-secondary-color);
  transition: all 0.3s ease-in-out;
}

.dropdown-item:hover {
  color: #fff;
  background-color: var(--bg-primary-color);
}

.btn-hire {
  border: 2px solid var(--bg-primary-color);
  color: var(--text-primary-color);
  padding: 8px 33px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

.btn-hire:hover {
  color: #fff;
  box-shadow: inset 400px 0 0 0 var(--bg-primary-color);
}
.btn-hire.active {
  color: #fff;
  box-shadow: inset 400px 0 0 0 var(--bg-primary-color);
}

/* navbar section end */

/* banner section start */
.banner-section {
  padding: 64px 32px;
  text-align: left;
  background-image: var(--gradiant-top-bottom-bg);
}

.banner-section h1 {
  font-size: 85px;
  font-weight: 700;
  color: var(--text-secondary-color);
}

.banner-section p {
  margin-top: 16px;
  margin-bottom: 40px;
}

.btn-contact {
  background-color: var(--bg-primary-color);
  color: #fff;
  padding: 16px 35px;
  border-radius: 13px;
  border: none;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  -webkit-box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.97);
  -moz-box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.97);
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.97);
}

.btn-contact:hover {
  background-color: #e65c2a;
}

.btn-category {
  background-color: var(--box-bg);
  color: var(--text-primary-color);
  padding: 16px 35px;
  border-radius: 13px;
  border: none;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating span {
  font-size: 20px;
  font-weight: 500;
  color: #100850;
}

.rating i {
  color: #f2a42d;
}

.banner-image {
  margin-top: 32px;
  border-radius: 15px;
  overflow: hidden;
}

/* banner section end */

/* our client section start */
.our-client-section .trusted-clients {
  text-align: center;
  margin: 50px 0;
  overflow-x: hidden;
}

.our-client-section .client-logos img {
  width: 13%;
  aspect-ratio: 3/2;
  object-fit: contain;
}

/* .our-client-section  */
.about-section {
  padding: 50px 0;
  background-image: var(--gradiant-left-right-bg);
}

/* .our-client-section */
.stats-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* .our-client-section  */
.stat-box {
  background: var(--box-bg);
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  margin: 50px 15px;
  flex: 1 1 200px;
  -webkit-box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.97);
  -moz-box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.97);
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.97);
}

/* .our-client-section  */
.stat-box i {
  font-size: 36px;
  color: var(--text-primary-color);
  margin-bottom: 10px;
}

.stat-box img {
  height: 65px;
  width: auto;
}

/* .our-client-section  */
.stat-box h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  text-align: center;
  color: var(--text-secondary-color);
  margin: 10px 0 10px 0;
}

.stat-box p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: var(--text-gray-color);
}

/* our client section end */

/* work section start */
.work-section {
  background-color: var(--bg-secondary-color);
  color: white;
}

.work-section .section-title {
  color: var(--text-primary-color);
  text-align: center;
  margin-top: 20px;
}

.work-section .section-title h2 {
  color: #fff;
}

.work-section .work-item {
  border-radius: 10px;
  padding: 0 20px;
  position: relative;
}

.work-section .work-item .overlayer {
  background: rgba(16, 8, 5, 0.7);
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 40px;
  opacity: 0;
  transition: all 0.3s linear;
}

.work-section .work-item:hover .overlayer {
  opacity: 1;
}

.work-section .work-item .overlayer span span {
  /* display: block; */
  color: var(--text-primary-color);
}

.work-section .work-item .overlayer p {
  font-size: 20px;
  display: flex;
  justify-content: space-between;
}

.work-section .work-item .overlayer .insight-overview {
  position: absolute;
  bottom: 0;
  padding: 20;
  margin: 20px;
}

.work-section .work-item img {
  width: 100%;
  border-radius: 40px;
}

.work-section .work-item h3 {
  margin-top: 15px;
  font-size: 40px;
  font-weight: 600;
}

.work-section .work-item p {
  color: #e5dfdd;
}

.work-section .view-all-btn {
  display: block;
  width: fit-content;
  margin: 30px auto;
  background-color: var(--bg-primary-color);
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
}

/* work section end */

/* service section start */
.service-section {
  background-color: var(--section-bg);
}

.service-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.service-section .service-item {
  display: flex;
  align-items: center;
  margin: 35px 0 15px 0;
  padding-bottom: 25px;
}

.service-section .service-item .content {
  flex: 1;
}

.service-section .service-item .content h3 {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: var(--text-secondary-color);
}

.service-section .service-item .content p {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-gray-color);
}

.service-section .service-item .image {
  width: auto;
  height: 240px;
  margin-left: 20px;
}

.service-section .service-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.service-section .service-item .image2 {
  display: none;
  margin: 0 0 20px 0;
}

/* service section end */

/* Why Choose US section start */
.why-choose-us .card {
  border-radius: 15px;
  padding: 20px;
  background-color: var(--box-bg);
  border: none;
  margin-bottom: 20px;
  -webkit-box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.97);
  -moz-box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.97);
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.97);
}

.why-choose-us .card h5 {
  font-size: 40px;
  font-weight: 600;
}

.why-choose-us .number {
  width: fit-content;
  height: fit-content;
}

.social-media-page.why-choose-us {
  background: #fff;
}

/* Why Choose US section end */

/* testimonial section start */
.testimonial-section {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(to bottom, #ff6d2f, #2f1910);
}

.testimonial-section h2 {
  color: white;
  margin-bottom: 40px;
}

.testimonial-section h3 {
  color: white;
  margin-bottom: 10px;
}

.testimonial-section .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.testimonial-section .card-body {
  padding: 20px;
  text-align: left;
}

.testimonial-section .card img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.testimonial-section .card-title {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 500;
  color: var(--text-secondary-color);
}

.testimonial-section .card-subtitle {
  font-size: 16px;
  color: #33363c !important;
  margin-bottom: 15px !important;
  font-weight: 400;
}

.testimonial-section .stars {
  color: #f39c12;
  margin-bottom: 15px;
}

.testimonial-section .card-header {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
}

/* testimonial section end */

/* faq section start */
.faq-section {
  padding: 50px;
  background: #fff;
}

.faq-section .accordion-item {
  border: 0;
  border-bottom: var(--bs-accordion-border-width) solid
    var(--bs-accordion-border-color);
}

.faq-section .accordion-button {
  font-weight: 500;
  font-size: 20px;
  background: none;
  color: var(--text-secondary-color);
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

/* faq section end */

/* contact section start */
.contact-section {
  background: #fff;
}

.contact-section .contact-container {
  background: var(--section-bg);
  padding: 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.contact-section .contact-text {
  flex: 1;
}

.contact-section .contact-image {
  flex: 1;
  text-align: right;
}

.contact-section .contact-image img {
  border-radius: 20px;
  max-width: 100%;
}

/* contact section end */

/* about banner section start */
.about-banner {
  background: var(--section-bg);
}
.about-banner .container {
  text-align: center;
}

.about-banner .header-title {
  font-size: 60px;
  font-weight: 600;
  /* padding: 0 140px; */
}

/* about banner section end */

/* unicorns section end */
.unicorns {
  background: var(--bg-secondary-color);
}

.unicorns .section-title h2 {
  color: #fff;
}

.unicorns p {
  color: #e5dfdd;
}

.unicorns .contact-button {
  background-color: var(--bg-primary-color);
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.unicorns .contact-button:hover {
  background-color: #e65c2a;
}

.unicorns .rounded-image {
  border-radius: 15px;
  margin-bottom: 20px;
}

/* unicorns section end */

/* our mission section start */
.our-mission {
  background: #fff;
}

/* our mission section end */

/* team section start */

.team-section {
  text-align: center;
}

.team-section .team-member {
  margin-bottom: 30px;
}

.team-section .team-member img {
  width: 100%;
  border-radius: 40px;
}

.team-section .team-member h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
}

.team-section .team-member p {
  font-size: 16px;
  color: #777;
}

/* team section end */

/* Join Our Team section start */
.join-our-team {
  background: #fff;
}

.join-our-team .btn-contact {
  width: fit-content;
}

.join-our-team .image-container img {
  width: 100%;
  border-radius: 15px;
}

/* Join Our Team section end */

/* portfolio section start */
.portfolio-section {
  background: linear-gradient(to bottom, #fefbf6, #ffffff);
  color: var(--text-secondary-color);
}

.portfolio-section.work-section .work-item p {
  color: var(--text-gray-color);
}

.portfolio-section .work_btn {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-section .work_btn button {
  background: var(--box-bg);
  color: var(--text-primary-color);
  border-radius: 10px;
  padding: 10px 20px 10px 20px;
  border: none;
}

.portfolio-section .work_btn button:hover {
  background: var(--bg-primary-color);
  color: #fff;
}

.portfolio-section .work_btn button.mixitup-control-active {
  background: var(--bg-primary-color);
  color: #fff;
}

/* portfolio section end */

/* blog section start */
.blog-section {
  background: linear-gradient(to bottom, #fefbf6, #ffffff, #ffffff);
}

.blog-section .custom-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
  position: relative;
}

.blog-section .custom-menu:after {
  content: "";
  height: 1px;
  background: #e5dfdd;
  position: absolute;
  width: 67%;
  bottom: 14px;
}

.blog-section .custom-menu a {
  color: var(--text-gray-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0 20px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.blog-section .custom-menu a:hover::after {
  content: "";
  height: 1px;
  background: var(--bg-primary-color);
  position: absolute;
  width: 100%;
  bottom: -6px;
  left: 0;
  right: 0;
  z-index: 99;
}

.blog-section .custom-menu a:hover {
  color: var(--text-primary-color);
}

.blog-section .custom-menu a.active {
  color: var(--text-primary-color);
}

.blog-section .card {
  border: none;
  overflow: hidden;
  margin-top: 20px;
  background: transparent;
}

.blog-section .card a {
  text-decoration: none;
  color: var(--text-gray-color);
}

.blog-section .card img {
  border-radius: 40px;
}

.blog-section .card-body {
  padding: 20px 0;
  margin-bottom: 20px;
}

.blog-section .card-title a {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-secondary-color);
}

.blog-section .category {
  font-size: 20px;
}

.blog-details-section {
  background: var(--section-bg);
}
.blog-details-section h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-secondary-color);
}

section.share {
  position: fixed;
  top: 45%;
  background: transparent;
}
section.share ul {
  list-style: none;
}

/* blog section end */

/* work together section start */

.work-together-section .left-section .work-services p {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 500;
}

.work-together-section .left-section .work-info p {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.work-together-section .left-section p .mail {
  text-decoration: none;
  color: var(--text-secondary-color);
}

.work-together-section .left-section .fa-check-circle {
  color: var(--text-primary-color);
  margin-right: 10px;
}

.work-together-section .right-section {
  background: #fff;
  padding: 30px;
  border-radius: 40px;
  border: 2px solid #e5dfdd;
}

.work-together-section .form-control {
  background: #fcf7f4;
  border: 2px solid #e5dfdd;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text-gray-color);
}

.work-together-section .form-label {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary-color);
}

.work-together-section .form-control::placeholder {
  color: var(--text-gray-color);
}

.work-together-section .form-control:focus {
  box-shadow: none;
}

/* work together section end */

/* career banner section end */
.blog-details-banner {
  background: var(--section-bg);
}
.career-banner p,
.career-banner .header-title {
  max-width: 650px;
  margin: 0 auto;
}

.career-unicorns {
  background: transparent;
}

/* career banner section end */

/* employee benefits section start */
.employee-benefits-section {
  background: var(--bg-secondary-color);
}

.employee-benefits-section .header h2 {
  color: #fff;
}

.employee-benefits-section .card {
  border: none;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 30px;
  margin: 15px;
  box-shadow: 5px 5px 0px 0px #100805;
}

.employee-benefits-section .card h5 {
  color: var(--text-secondary-color);
  font-size: 25px;
  font-weight: 600;
}

.employee-benefits-section .card .number {
  margin-bottom: 15px;
  width: fit-content;
  height: fit-content;
}

/* employee benefits section end */

/* hear from team section start */
.hear-from-team-section {
  background: #fff;
}

.hear-from-team-section .hear-from-team {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.hear-from-team-section .hear-from-team-image {
  border-radius: 40px;
  overflow: hidden;
  background: var(--box-bg);
  padding: 20px 20px 0 20px;
  /* height: 410px; */
  width: 568px;
}

.hear-from-team-section .hear-from-team-content {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hear-from-team-section .hear-from-team-content .author {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary-color);
}

/* hear from team section end */

/* application section start */

.application-section {
  background: #fff;
}

.application-section .form-label {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary-color);
}

.application-section .form-control {
  background: #fcf7f4;
  border: 2px solid #e5dfdd;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text-gray-color);
}

.application-section .form-control:focus {
  box-shadow: none;
}

.application-section .form-control::placeholder {
  color: var(--text-gray-color);
}

/* application section end */

/* seo section start */
.seo-section {
  background: #fff;
}

.seo-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
}

.seo-section .content-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.seo-section .content-text {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.seo-section .content-section {
  margin-top: 2rem;
}

.seo-section .content-section img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* seo section end */

/* service section start */

.page-header {
  padding: 35px 0 60px 0;
  position: relative;
}

.service-header-bg-box::before {
  content: "";
  background: var(--service-header-bg);
  display: block;
  position: absolute;
  bottom: -0;
  left: 0;
  width: 100%;
  height: 1500px;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 99;
}

.page-header h1 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  color: var(--text-secondary-color);
  margin: 0;
  padding: 0 15px 20px 15px;
}

.page-header p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: var(--text-gray-color);
  max-width: 673px;
  margin: 0 auto;
}

.title-left-content-right {
  padding: 70px 0;
}

.title-left-content-right h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  color: var(--text-secondary-color);
  padding: 50px 0;
}

.title-left-content-right p {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-gray-color);
  padding: 50px 0;
}

.branding-card-section {
  padding-bottom: 70px;
}

.branding-card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.branding-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  gap: 10px;
  flex: 1 1 600px;
  background: var(--box-bg);
  box-shadow: 5px 5px 0px var(--bg-secondary-color);
  border-radius: 20px;
  margin-bottom: 3rem;
}

.branding-cards h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  color: var(--text-secondary-color);
  margin: 0;
}

.branding-cards p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-gray-color);
}

/* service section end */

/* UI/UX Start */

.image-left-content-right {
  padding: 180px 0 30px 0;
}

.image-left-content-right img,
.uiux-card img,
.work-section img {
  width: 100%;
  height: auto;
}

.image-left-content-right h2 {
  padding: 0 0 15px 35px;
  margin: 0;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: var(--text-secondary-color);
}

.image-left-content-right p {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-gray-color);
  padding: 0 0 15px 35px;
  margin: 0;
}

.image-left-content-right-contents {
  display: flex;
  align-items: center;
}

.image-left-content-right-contents .fa-check-circle {
  color: var(--text-primary-color);
  margin-right: 10px;
  font-size: 20px;
}

/* UI/UX  end */

.uiux-card {
  padding: 100px 0 60px 0;
}

.uiux-card .section-title {
  text-align: center;
}

.uiux-card .section-title h2 {
  max-width: 750px;
  margin: 0 auto;
}

.uiux-card-contents h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: var(--text-secondary-color);
}

.uiux-card-contents p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-gray-color);
  padding: 5px 0 0 0;
}

.uiux-card-contents {
  margin-bottom: 50px;
}

/* timeline start */
.timeline:before {
  content: "";
  position: absolute;
  height: 100%;
  left: 50%;
  width: 2px;
  top: 0;
  background: var(--bg-primary-color);
  z-index: 1;
}

.timeline {
  position: relative;
  margin: 50px auto;
  padding: 0 0;
}

.timeline ul {
  margin: 0;
  padding: 0;
}

.timeline ul li {
  list-style: none;
  box-sizing: border-box;
  line-height: normal;
  position: relative;
  width: 50%;
  padding: 40px 70px;
}

.timeline ul li .right_content h2 {
  padding: 0px 2px 18px 0px;
  font-size: 40px;
  font-weight: 600;
  color: var(--text-secondary-color);
}
.timeline ul li .right_content .number {
  margin-right: 0;
}
.timeline ul li:nth-child(odd) {
  float: left;
  text-align: right;
  clear: both;
}

.timeline ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
}

.timeline ul li:nth-child(odd):before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--bg-primary-color);
  border-radius: 50%;
  right: -11px;
  top: 0;
  z-index: 1;
}

.timeline ul li:nth-child(even):before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--bg-primary-color);
  border-radius: 50%;
  left: -9px;
  top: 0;
  z-index: 1;
}

@media (max-width: 1000px) {
  .timeline {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .timeline {
    width: 100%;
  }

  .timeline:before {
    left: 20px;
  }

  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even) {
    width: 100%;
    text-align: left;
    padding-left: 50px;
  }

  .timeline ul li:nth-child(odd):before {
    top: -18px;
    left: 16px;
  }

  .timeline ul li:nth-child(even):before {
    top: -18px;
    left: 16px;
  }
}

/* timeline end */

/* opening position start*/
.opening-position .circular-card-container .circular-card {
  margin-bottom: 2rem;
  border: 1px solid var(--bg-primary-color);
  border-radius: 0.75rem;
  padding: 2rem 3rem;
}
/* .opening-position .circular-card-container .circular-card:last-child {
  margin-bottom: 0;
} */
.opening-position .circular-card-container .circular-card h6 {
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  color: var(--text-secondary-color);
}
.opening-position .circular-card-container .circular-card span {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-gray-color);
}
.opening-position .circular-card-container .circular-card i {
  font-size: 36px;
  color: var(--text-primary-color);
}
/* opening position end*/

/* job details end*/
.job-description .job-info p {
  font-size: 25px;
  line-height: 35px;
  color: var(--text-secondary-color);
}
.job-description .card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
/* job details end*/

/* work-details section start*/
.work-details .card {
  border-radius: 15px;
  border: 1px solid #e7e7e7;
  transition: .3s linear;
}
.work-details .card:hover {
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.08);
}
.work-details .card img {
  border-radius: 25px;
  padding: 15px;
  height: 300px;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  vertical-align: middle;
}
.work-details .card-title {
  /* margin-top: 10px; */
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  /* line-height: 35px; */
  color: var(--text-secondary-color);
}
.work-details .card-body {
  text-align: center;
}

/* work-details section end*/

/* footer section start */

.whatsapp-pin {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
}

.whatsapp-pin a{
  font-size: 35px;
  border-radius: 50%;
  width: 68px;
  height: 68px;
}


.whatsapp-pin a::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 55px;
  height: 55px;
  background: #198754;
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
}

.whatsapp-pin a::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  /*background: #198754;*/
  border-radius: 50%;
  transition: all 200ms;
}


@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;
    z-index: 1000;
    border-radius: 10px;
}

/* Style for the text */
.cookie-popup p {
    margin: 0;
    font-size: 17px;
    color: #333;
    /*font-weight:bold;*/
    text-align:center;
}

/* Style for the Accept button */
.cookie-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top:15px;
}

.cookie-button:hover {
    background-color: #0056b3;
}


footer {
  background: var(--bg-secondary-color);
}

.footer {
  padding-top: 50px;
}

.footer img {
  height: 60px;
}

.footer .col {
  margin-bottom: 30px;
}

.footer h5 {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}

.footer p {
  color: #e5dfdd;
}

.footer a {
  color: #e5dfdd;
  text-decoration: none;
  font-size: 18px;
  line-height: 30px;
}

.footer li {
  color: #e5dfdd;
  font-size: 18px;
}

.footer a:hover {
  color: var(--text-primary-color);
}

.footer .social-icons a {
  font-size: 20px;
  margin-right: 15px;
  color: #ffffff;
}

.footer .location-box {
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.footer .location-box h6 {
  font-size: 30px;
  font-weight: 600;
}

.footer .location-box p {
  color: var(--text-gray-color);
}

.footer .copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ffffff;
  margin-top: 20px;
}

/* footer section end */
