/**
* Template Name: STEMAGE
*/

/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", "Roboto",
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #1b538f;
  --color-primary: #1f4888;
  --color-secondary: #f85a40;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: var(--font-default); */
  font-family: "Roboto";
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
  scroll-margin-top: 70px;
  overflow: clip;
}

.sections-bg {
  background-color: white;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #f4df4eff;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 35px 0 10px 0;
  min-height: 14vh;
  position: relative;
  background-color: #000;
}

.breadcrumbs .page-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: #818181;
  font-weight: 500;
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li + li {
  padding-left: 10px;
}

.breadcrumbs nav ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #1b538f;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {
  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: var(--color-primary);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 100px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 24px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 0px;
    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: 175px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .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: var(--color-secondary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1600px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

.badge {
  position: absolute;
  top: -10px;
  right: -11px;
  padding: 5px 8px;
  border-radius: 50%;
  background-color: #e8543c;
  color: white;
}

/**/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation Login/Signup Button
--------------------------------------------------------------*/
.navbar .getstarted,
.navbar .getstarted:focus {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.navbar .getstarted:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: 0%;
    width: 100%;
    max-width: 74%;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
    height: 65px;
    overflow: hidden;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 11px 0 10px 0;
    margin: 0;
    background: rgb(31 72 136);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    display: flex;
    overflow: hidden;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    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: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 0px 0px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgb(31 72 136);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    display: none;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(31 72 136);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.consultant {
  /* border: 2px dotted #d7d7d7; */
  margin: 5px 0px;
}

.services .service-item {
  padding: 15px;
  background: #fff;
  /* height: 100%; */
  border-radius: 10px;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-default);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: #000;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 14px;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  color: #949398ff;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: #023020;
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

.imgfix {
  width: 100%;
}

.time,
.time:focus {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px;
  top: 9px;
  margin: 5px 0px 10px 0px;
  bottom: 11px;
  position: relative;
  border-radius: 5px;
  transition: 0.3s;
  color: #949398ff;
  background: #f4df4eff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-primary);
  padding: 30px 0px 20px 0px;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 5px;
}

.footer .footer-info .logo img {
  max-height: 100px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/*--------------------------------------------------------------
# End Section
--------------------------------------------------------------*/
.boxes-full {
  width: 100%;
  text-align: left !important;
}
.team .member span {
  display: block;
  font-size: 16px;
  color: #949398ff;
  line-height: 1.7;
}
.team .member h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}
.team .member span {
  /* font-style: italic; */
  display: block;
  font-size: 16px;
  color: #424242;
  line-height: 1.8;
  padding: 5px 0px;
}

/* css for top portion - left/right division */

.popup-body {
  font-family: "Roboto";
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  /* background-color: #f4f4f4; */
}

.div-container-1 {
  display: flex;
  /* background-color: #00000038; */
  border-radius: 8px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  /* max-width: 900px; */
  width: 100%;
  /* padding-top: 5%; */
  height: 100%;
  z-index: 9989;
  position: relative;
  justify-content: center;
}

.left {
  background-color: white;
  color: white;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.left img {
  max-width: 100%;
  margin-bottom: 20px;
}

.left h2 {
  margin-bottom: 20px;
}

.left ul {
  list-style: none;
  padding: 0;
}

.left ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.left ul li::before {
  content: "✔️";
  margin-right: 10px;
}

.right {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  text-align: center;
}

.right h2 {
  margin-bottom: 20px;
  font-size: 25px;
}

.right form {
  display: flex;
  flex-direction: column;
}

.right form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.right form input[type="checkbox"] {
  margin-bottom: 15px;
  width: auto;
}

.right form button {
  padding: 10px;
  background-color: #1e3a8a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.right form button:hover {
  background-color: #374fcf;
}

#smallbox-parent {
  background-color: transparent;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
}

#smallbox {
  /* background-color: white;  */
  background-color: transparent;
  padding: 50px;
  padding-left: 130px;
  padding-right: 130px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

#smallbox-header {
  font-size: 36px;
  font-weight: bold;
  color: #2c2c2c;
  text-align: center;
}

#smallbox-subheader {
  font-size: 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

.smallbox-btns {
  color: #2c2c2c;
  background-color: #ffc107;
  border: none;
  padding: 5px 20px;
  border-radius: 8px;
  font-size: 20px;
  margin: 4px;
  width: 150px;
  height: 40px;
}

.center-mid {
  text-align: center;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.img-center {
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* css for modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  border: 1px solid #888;
  width: 55%;
  /* height: 100%; */
  /* padding: 10px; */
  transform: translateY(50%);
  bottom: 255px;
}

.close {
  /* display: flex;
  align-items: flex-end;
  justify-content: flex-end; 
  width: 10%;
  float : right ; */

  position: absolute;
  /* right : 0 ; */
  right: 20px;
  top: 0%;
  /* top : 1px ;  original */
  color: #ffc107;
  /* #aaa; */
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;

  /* background-color: #2c2c2c; */
  /* margin-bottom : 20px ;
  height: 10px;
  border-radius: 30px; */
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* css only for popup screen */
.popup-body {
  font-family: "Roboto";
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  /* background-color: #f4f4f4; */
}

.popup-container {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
}

@media (max-width: 2480px) {
  .popup-container {
    max-width: 100%;
  }
}

.popup-left {
  background-color: #2c2c2c;
  /* #1E3A8A; */
  /* color: white; */
  padding: 30px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  text-align: center;
  width: 50%;
  padding-bottom: 0;
}

.popup-left img {
  max-width: 100%;
  /* margin-bottom: 20px; */
}

.popup-left h2 {
  margin-bottom: 20px;
  color: white;
  font-weight: bolder;
  font-size: 22px;
}

.popup-left ul {
  list-style: none;
  padding: 0;
  color: #ffc107;
  padding-bottom: 0;
}

.popup-left ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.popup-left ul li::before {
  /* content: '✅'; */
  /* margin-right: 10px; */

  content: "\2713"; /* Unicode for the checkmark */
  margin-right: 10px;
  color: #ffc107;
  /* #1f4888 ; */
  /* background-color: white; */
  border-radius: 5%;
  padding-bottom: 6%;
  font-weight: bolder;
  width: 20px;
  height: 20px;
}

.popup-right {
  padding: 30px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  width: 50%;
  text-align: center;
}

.popup-right h2 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #2c2c2c;
  font-weight: bolder;
}

.popup-right form {
  display: flex;
  flex-direction: column;
}

.popup-right form input {
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: white;
}

.popup-right form input[type="checkbox"] {
  margin-bottom: 15px;
  width: auto;
}

.popup-right form button {
  padding: 10px;
  background-color: #ffc107;
  color: #2c2c2c;
  border: 2px solid black;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  width: 100px;
}

.btn-alignment {
  justify-content: center;
  align-items: center;
}

.popup-right p {
  color: #2c2c2c;
}

/* .popup-right form button:hover {
  background-color: #374FCF;
} */

.center-ele {
  justify-content: center;
  align-items: center;
}

/* Privacy policy checkbox logo */
#privacyPolicy {
  /* Hide the default checkbox */
  display: none;
  padding-bottom: 10px;
}

/* Custom checkbox design */
#privacyPolicy + label:before {
  content: "";
  color: #ffc107;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ffc107; /* Yellow color */
  background-color: white;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: middle;
  padding-bottom: 20px;
}

/* Checkmark when the checkbox is checked */
#privacyPolicy:checked + label:before {
  content: "\2714";
  font-weight: bolder;
  padding-bottom: 20px;
  /* background-color: #ffc107 ;  */
  /* Yellow color */
}

/* Hide the default checkbox, show the custom one */
#privacyPolicy + label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.popup-checkbox-label {
  font-size: 13px;
  font-weight: bold;
}

/* why pinqin css */

.why-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* padding: 20px; */
  color: #2c2c2c;
  margin: 1px;
  width: 100%;
}

.left-section {
  width: 60%;
  /* background: linear-gradient(to right, #F7D947 , #F8EBDE ); */
  background: linear-gradient(to right, #ebac0e, #f8ebde);
  padding: 20px;
  border-radius: 10px;
}

.right-section {
  width: 50%;
}

.why-h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.conversation {
  margin-bottom: 20px;
}

.message {
  margin-bottom: 10px;
}

/* .user .why-name {
  color: #E56C00;
} */

.response .why-name {
  /* color: #00A3E5; */
  text-align: right;
}

/* .why-name {
  font-weight: bold;
} */

.why-text {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  max-width: 60%;
  margin-left: 2%;
  margin-right: 2%;
  text-align: left;
  color: #2c2c2c;
}

.info-box {
  background-color: #f2f2f2;
  border-radius: 50px;
  padding-left: 40px;
  padding-right: 15px;
  padding-top: 20px;
  padding-bottom: 3px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 115%;
  height: 23%;
  z-index: 2; /* Ensure it overlays the left section */
  transform: translateX(-15%); /* Adjust the overlap */
}

.info-box h2 {
  font-size: 24px;
  /* margin-bottom: 10px; */
}

.info-box p {
  font-size: 16px;
  /* margin-bottom: 10px; */
}

.info-box-header {
  font-size: 25px;
}

.info-box-desc {
  color: #2c2c2c;
}

.ping {
  /* font-weight: bold; */
  color: #2c2c2c;
  /* cursor: pointer; */
}

/* .ping:hover {
  text-decoration: underline;
} */

.why-right {
  align-items: right;
  text-align: right;
  margin-right: 23%;
}

.p-right {
  text-align: right;
}

#supportedby {
  color: #2c2c2c;
}

.pt-30 {
  padding-top: 30px;
}

.w-100 {
  width: 100%;
}

.footer-item-wrapper > div {
  width: 25%;
  margin-bottom: 0px;
  border-right: dotted 1px #555555;
  padding: 10px 30px 0px;
  display: flex;
  flex-flow: column;
  /* align-items: center; */
}

.footer-item-wrapper > div:last-child {
  border-right: none;
}

.w-70 {
  width: 75%;
  min-width: 200px;
}

@media (max-width: 1024px) {
  .modal-content {
    min-width: 300px;
    bottom: 365px;
  }
}

@media (max-width: 768px) {
  .popup-container {
    display: flex;
    justify-content: center;
  }

  .why-text {
    max-width: 80%;
  }

  .popup-left {
    display: none;
  }

  .popup-right {
    width: 90%;
    min-width: 190px;
  }

  .modal-content {
    min-width: 300px;
    bottom: 258px;
  }

  .sticked-header-offset {
    margin-top: 90px !important;
    flex-flow: column;
  }

  .sticked-header-offset .left {
    width: 100%;
  }

  .sticked-header-offset .right {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .footer-item-wrapper > div {
    width: 50%;
    margin-bottom: 0px;
    border-right: dotted 1px #555555;
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .footer-item-wrapper > div:nth-child(2) {
    border-right: none;
  }

  .footer-img {
    width: 100%;
  }

  .footer-links {
    padding-top: 30px;
  }

  #smallbox {
    padding: 50px 6px;
    width: 100%;
  }

  .sticked-header-offset .right img {
    width: 80%;
    height: auto;
  }

  .section-block {
    display: none;
  }
}

@media (max-width: 525px) {
  .sticked-header-offset .right img {
    width: 100%;
    height: auto;
  }

  .col-md-12 {
    width: 100% !important;
    justify-content: center;
  }

  .col-6 {
    width: 100% !important;
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-img {
    width: unset;
  }

  .footer-img-wrapper {
    justify-content: center;
  }

  #smallbox-header {
    font-size: 28px;
  }

  .footer-links {
    padding-top: 0 !important;
  }

  .why-container {
    display: flex;
    flex-flow: column;
  }

  .why-container .left-section {
    width: 100%;
  }

  .message.response.why-right {
    margin-right: 5%;
  }

  .why-container .right-section {
    width: 100%;
    display: flex;
    flex-flow: column;
  }

  .info-box {
    width: 100%;
    transform: translateX(0);
  }

  .footer-item-wrapper > div:nth-child(4) ul li {
    display: flex;
    justify-content: center;
  }
}

/* CSS for Social Media Icons */
.social-links {
  display: flex;
  justify-content: space-between;
  width: 200px; /* Adjust as needed */
}

/* Base transition for all icons */
.social-links a i {
  transition: color 0.3s ease;
}

/* Individual colors on hover */
.social-links a.twitter:hover i {
  color: #1da1f2; /* Twitter blue */
}

.social-links a.facebook:hover i {
  color: #3b5998; /* Facebook blue */
}

.social-links a.instagram:hover i {
  color: #e4405f; /* Instagram red */
}

.social-links a.linkedin:hover i {
  color: #0077b5; /* LinkedIn blue */
}

.footer-img-wrapper {
  display: inline-block;
  overflow: hidden; /* Ensure the image doesn't overflow */
}

.footer-img {
  transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.footer-img-wrapper:hover .footer-img {
  transform: scale(1.1); /* Scale the image to 110% */
}

.supported-by {
  padding: 30px 0px;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 2px;
  background-color: #fff;
  margin-bottom: 10px;
}

.supported-by img {
  display: inline-block;
  vertical-align: middle;
  padding: 6px;
  transition: transform 0.3s ease;
}

.supported-by img:hover {
  transform: scale(1.1);
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

@media (max-width: 768px) {
  .supported-by img {
    width: 100px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .supported-by img {
    width: 180px;
    height: auto;
  }
}

.margin-right {
  margin-right: 120px;
}

.mobile-chat-display {
  display: none;
}

@media (max-width: 768px) {
  .mobile-chat-display {
    display: unset;
  }
}

.desktop-chat-display {
  display: unset;
}

@media (max-width: 768px) {
  .desktop-chat-display {
    display: none;
  }
}

.desktop-chat-section {
  padding: 30px;
}

@media (max-width: 768px) {
  .desktop-chat-section {
    padding: 30px 5px;
  }
}

.end-line {
  text-align: center;
  margin-top: 20px;
}

.star {
  color: #2c2c2c;
  font-size: 24px;
  margin: 0 5px;
}
