@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary-color: #ffffff;
  --secondary-color: #101010;
  --accent-color: #0ca94b;
  --text-color: #101010;
  --light-shade: #e3f3e9;
  --light-gray: #f2f2f2;
  --footer-color: #181823;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Roboto Mono", monospace;
}

body {
  font-size: 16px;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
/* =============Containers Styles============ */
.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.section-container {
  padding: 32px 0;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding: 0px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
  .section-container {
    padding: 64px 0;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
@media screen and (min-width: 640px) and (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1536px) and (max-width: 1536px) {
  .container {
    padding: 0 20px;
  }
}
/* ===================Navbar Style===================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar {
  background-color: rgb(51, 51, 51);
  padding: 16px 0;
  width: 100%;
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: rgba(51, 51, 51, 0.9);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.5s ease;
}
.navbar .logo {
  width: 222px;
  height: auto;
  object-fit: cover;
}

.navbar-container {
  display: flex;
  gap: 6%;
  align-items: center;
  margin: auto;
}

.brand-title {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}
.navbar-links ul {
  list-style: none;
  display: flex;
}
.navbar-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: all 0.3s linear;
}

.navbar-links ul li {
  margin-left: 32px;
  position: relative;
}
.navbar-links ul li::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  border-radius: 0px 0px 4px 4px;
}

.navbar-links ul li:hover::before {
  transform: scaleX(1);
}

.navbar-links ul li:hover a {
  color: var(--accent-color);
}

.toggle-button {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  height: 21px;
  width: 25px;
  cursor: pointer;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

.close-button {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  text-align: right;
  margin: 20px 20px;
}
.navbar-links ul li.selected a,
.navbar-links ul li:hover a {
  color: var(--accent-color);
}

@media (max-width: 1024px) {
  .navbar-container .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(16, 16, 16, 0.5);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  .overlay.active {
    opacity: 1;
    z-index: 10;
    pointer-events: all;
    animation: fadeIn 0.5s ease forwards;
  }
  .overlay.inactive {
    opacity: 0;
    z-index: -1;
    animation: fadeOut 0.5s ease forwards;
    pointer-events: none;
  }

  .navbar-container {
    justify-content: space-between;
  }

  .toggle-button {
    display: flex;
  }
  .navbar-links {
    position: static;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background-color: #333;
    z-index: 20;
    transition: right 0.5s ease;
    display: flex;
    flex-direction: column;
  }
  .navbar-links.active {
    right: 0;
    animation: slideIn 0.5s ease forwards;
  }

  .navbar-links.inactive {
    right: -100%;
    animation: slideOut 0.5s ease forwards;
  }

  @keyframes slideIn {
    from {
      right: -100%;
    }
    to {
      right: 0;
    }
  }

  @keyframes slideOut {
    from {
      right: 0;
    }
    to {
      right: -100%;
    }
  }
  .navbar-links ul {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    margin-top: 50px;
  }

  .navbar-links li {
    text-align: right;
    margin: 10px 20px;
  }
  .close-button {
    display: block;
  }
  .close-button img {
    width: 24px;
    height: auto;
    object-fit: cover;
  }
  .navbar-links ul li::before {
    bottom: 0px;
    left: -32px;
    width: 3px;
    height: 100%;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    border-radius: 0px 0px 4px 4px;
  }
}
@media (max-width: 768px) {
  .navbar .logo {
    width: 200px;
    height: auto;
    object-fit: cover;
  }
  .navbar-links {
    width: 90%;
  }
}

/* ========================Hero Section ========================= */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.background-video {
  width: 100%;
  height: auto;
  z-index: -1;
}

.hero-section .overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 20px;
}
.overlay-content {
  max-width: 100%;
}
.hero-section a {
  color: var(--secondary-color);
  padding: 10px 15px;
  border: none;
  background-color: var(--primary-color);
  border-radius: 96px;
  font-weight: bold !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.hero-section a:hover {
  background-color: var(--light-shade);
}
.overlay-content h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.to-center-overlay-content {
  display: flex;

  justify-content: center;
}

@media (min-width: 640px) {
  .overlay-content {
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .overlay-content h1 {
    font-size: 36px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .hero-section .overlay-hero {
    align-items: flex-start;
    padding-top: 140px;
  }
  .overlay-content h1 {
    font-size: 48px;
    margin-bottom: 50px;
  }
  .hero-section button {
    padding: 20px 28px;
    font-size: 18px;
  }
  .hero-section a {
    color: var(--secondary-color);
    padding: 14px 20px;
  }
}
@media (min-width: 1280px) {
  .overlay-content {
    max-width: 60%;
  }
}
@media (min-width: 1536px) {
  .overlay-content {
    max-width: 50%;
  }
}

/* ====================================Service Robots Section===================== */
.service-robots-section {
  position: relative;
  padding: 32px 0;
}
.service-robots-section h2 {
  font-size: 20px;
  text-align: center;
  max-width: 87%;
  margin: 0 auto;
}
.digits {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.world-map {
  z-index: -1;
  position: absolute;
  top: 150px;
  right: 0;
  width: 100%;
  height: 70%;
  object-fit: cover;
}
.digit-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28%;
  padding: 20px 0;
}
.digit-container .text {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.digit-container .digit {
  color: var(--accent-color);
  font-size: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

@media (min-width: 640px) {
  .service-robots-section h2 {
    font-size: 22px;
  }
  .digit-container .digit {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .service-robots-section h2 {
    font-size: 26px;
  }
  .digit-container .digit {
    font-size: 50px;
  }
}

@media (min-width: 1024px) {
  .service-robots-section h2 {
    font-size: 36px;
  }
  .world-map {
    height: auto;
  }
  .service-robots-section {
    padding: 64px 0;
  }
  .world-map {
    top: 90px;
  }
  .digit-container .text {
    font-size: 18px;
  }
  .digit-container .digit {
    font-size: 70px;
  }
}

@media (min-width: 1280px) {
  .world-map {
    top: 30px;
  }
  .digit-container .digit {
    font-size: 80px;
  }
}

@media (min-width: 1536px) {
  .service-robots-section h2 {
    font-size: 40px;
  }
  .digit-container {
    margin-top: 100px;
  }
}

/* ======================================rent-or-purchase-section=================================== */
.robot-info-container {
  position: relative;
  padding-top: 20px;
}

/*  */
.save-purchase {
  width: fit-content;
  position: absolute;
  top: -30px;
  right: 15%;
  z-index: -1;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
#lottie-animation-save {
  width: 70px;
  height: 70px;
  margin-top: 30px;
}
.save-purchase h4 {
  margin-right: -30px;
  font-family: "Pacifico", cursive;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 400;
}
.rent-or-purchase-section {
  background-color: #fff;
  padding: 64px 0;
}
.rent-or-purchase-section h2 {
  max-width: 90%;
  text-align: center;
}
.title-section {
  font-size: 22px;
  margin: 0 auto;
}
.tabs {
  overflow: hidden;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 96px;
  margin: 32px auto;
  padding: 4px 10px;
  background-color: var(--light-gray);
}

.tablink {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 24px;
  transition: 0.3s;
  font-size: 14px;
  transition: all 0.3s linear;
}
.tablink.active-tab-link {
  background-color: var(--secondary-color);
  color: #fff;
}
.tablink.active-tab-link-top {
  background-color: var(--secondary-color);
  color: #fff;
}

.tablink:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}
.images-tabs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.tabcontent {
  width: 21%;
  display: inline-block;
  transition: width 0.3s ease;
}

.tabimage {
  width: 100%;
  border-radius: 16px;
  height: 250px;
  object-fit: cover;
  object-position: 60%;
}
.tabcontent:nth-child(2) .tabimage {
  object-position: 35%;
}
.tabcontent:nth-child(3) .tabimage {
  object-position: 65%;
}

.tabcontent.active-tab-img {
  width: 90%;
  /* transform: scaleX(1.8); */
}
.price-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 6px 8px;
  background-color: transparent;
  border: 1px solid #dfdfdf;
  border-radius: 96px;
  width: fit-content;
}
.price-tabs .tablink {
  text-align: center;
  width: 100px;
}
@media (min-width: 640px) {
  .tablink {
    padding: 10px 14px;
    font-size: 16px;
  }

  .tabs {
    gap: 10px;
  }
  .tabimage {
    height: 350px;
  }
  .title-section {
    font-size: 32px;
  }
  .save-purchase {
    margin: 0;
    flex-direction: row;
    left: 65%;
    top: 20px;
    right: 0;
  }
  #lottie-animation-save {
    width: 100px;
    height: 100px;
    margin: 0px;
  }
  .save-purchase h4 {
    font-size: 22px;
    margin: 0px;
    margin-left: -20px;
    margin-top: -50px;
  }
}
@media (min-width: 768px) {
  .save-purchase {
    margin: 0;
    flex-direction: row;
    left: 62%;
    top: 30px;
    right: 0;
  }
  #lottie-animation-save {
    width: 100px;
    height: 100px;
    margin: 0px;
  }
  .save-purchase h4 {
    font-size: 24px;
    margin: 0px;
    margin-left: -20px;
    margin-top: -50px;
  }
  .images-tabs-container {
    gap: 20px;
  }
  .tabimage {
    height: 450px;
    border-radius: 24px !important;
  }
}

@media (min-width: 1024px) {
  .price-tabs .tablink {
    width: 130px !important;
  }
  .rent-or-purchase-section h2 {
    max-width: 70%;
  }
  .title-section {
    font-size: 32px;
  }
  .tabs {
    margin: 64px auto;
  }
  .tablink {
    padding: 10px 16px;
    font-size: 18px;
  }

  .save-purchase {
    margin: 0;
    flex-direction: row;
    left: 62%;
    top: 50px;
    right: 0;
  }
  #lottie-animation-save {
    width: 100px;
    height: 100px;
    margin: 0px;
  }
  .save-purchase h4 {
    margin: 0px;
    margin-left: -20px;
    margin-top: -50px;
    font-size: 24px;
  }
  .images-tabs-container {
    gap: 30px;
  }
}

@media (min-width: 1280px) {
  .title-section {
    font-size: 36px;
  }
  .save-purchase {
    margin: 0;
    flex-direction: row;
    left: 60%;
    top: 50px;
    right: 0;
  }
  #lottie-animation-save {
    width: 100px;
    height: 100px;
    margin: 0px;
  }
  .save-purchase h4 {
    margin: 0px;
    margin-left: -20px;
    margin-top: -50px;
    font-size: 24px;
  }
  .tabimage {
    height: 600px;
  }
}

@media (min-width: 1536px) {
  .rent-or-purchase-section h2 {
    max-width: 60%;
  }
  .title-section {
    font-size: 40px;
  }
  .save-purchase {
    left: 59%;
  }

  .tablink {
    padding: 10px 20px;
  }
  .tabimage {
    height: 700px;
  }
  .images-tabs-container {
    gap: 40px;
  }
}
/* ========================================Advanced Robotics Redefining=================================== */
.advanced-robotics-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 32px 20px;
}
.advanced-robotics-container .comp {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#leftSection h2 {
  color: white;
  margin-bottom: 20px;
  max-width: 100%;
  text-align: center;
  margin: 10px auto;
  margin-bottom: 20px;
}
.robot-card {
  background-color: #181823;
  border-radius: 24px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.robot-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.robot-image-container {
  width: 100%;
  border-radius: 24px;
  border-radius: 24px 24px 0px 0px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: white;
}
.robot-image-container img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 24px 24px 0px 0px;
}
.robot-card-content p {
  line-height: 2rem;
}
.robot-card-content {
  padding: 20px;
}
.robot-card-title {
  color: var(--accent-color);
  font-size: 20px;
  margin: 10px 0;
}
.robot-card-subtitle {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}
.robot-card p,
.robot-card span {
  color: #747474;
}
.robot-feature-item img {
  width: 20px;
  height: auto;
  object-fit: cover;
}
.robot-card ul {
  margin-top: 24px;
}
.robot-feature-item {
  margin: 10px 0;
  display: flex;
  align-items: start;
  gap: 5px;
}
.arrow-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 24px 0px;
  outline: none;
  border: none;
  background-color: var(--accent-color);
  cursor: pointer;
  padding: 10px;
}
.arrow-btn img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  transition: all 0.3s linear;
}
.arrow-btn:hover img {
  transform: rotate(45deg);
}
#rent-duration {
  text-transform: capitalize;
}
#rent-price .price-value {
  font-size: inherit !important;
}

#advancedRobotics {
  overflow: hidden;
  max-height: 8500px;
  transition: max-height 0.5s ease-in-out;
}

#advancedRobotics.expanded {
  max-height: 15500px;
}
#moreButton {
  border: none;
  outline: none;
  background-color: var(--accent-color);
  color: white;
  font-size: 18px;
  padding: 14px 20px;
  cursor: pointer;
  border-radius: 30px;
  margin: 20px auto;
  margin-bottom: 32px;
  transition: all 0.3s linear;
}
#moreButton:hover {
  background-color: #00852c;
}
#modalContent svg {
  width: 32px;
  height: 32px;
}
.advanced-robotics-container .toggle-btn:hover {
  background-color: var(--secondary-color);
}
@media (min-width: 640px) {
  #leftSection h2 {

    max-width: 80%;}
}

@media (min-width: 768px) {
  .advanced-robotics-container .comp {
    flex: 1;
  }
  #leftSection h2 {
    text-align: start;
    margin: 10px 0;
    max-width: 100%;
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .advanced-robotics-container {
    padding: 64px 0;
  }
  .robot-card-title {
    font-size: 24px;
  }
  .robot-card-subtitle {
    font-size: 20px;
  }
  .robot-feature-item {
    margin: 20px 0;
  }

  #leftSection h2 {
    max-width: 100%;
    font-size: 28px;
  }
  .advanced-robotics-container {
    gap: 30px;
    justify-content: space-between;
  }
  .advanced-robotics-container .comp {
    gap: 30px;
  }

  #moreButton {
    margin-bottom: 64px;
  }
  .robot-image-container {
    height: 450px;
  }
}

@media (min-width: 1280px) {
  #leftSection h2 {
    font-size: 32px;
  }
}

@media (min-width: 1536px) {
  .advanced-robotics-container {
    gap: 40px;
  }
  .advanced-robotics-container .comp {
    gap: 40px;
  }
  #leftSection h2 {
    font-size: 40px;
  }
  .robot-card-title {
    font-size: 32px;
  }
  .robot-card-subtitle {
    font-size: 24px;
  }
  .robot-image-container {
    height: 600px;
  }
  .robot-feature-item {
    margin: 30px 0;
  }
  .robot-card p,
  .robot-card span {
    font-size: 18px;
  }
}

/* ============================== */
.global-style-scenarios-container {
  background-color: var(--secondary-color);
  width: 100%;
  border-top: 20px solid #181823;
  position: relative;

  margin: 0 auto;
}

.mini-body-image {
  display: none;
}
.scenarios-cards-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;

  gap: 20px;
}
.scenarios-card > img {
  width: 100%;
  height: 120px;
}
.scenarios-container {
  padding: 32px 20px;
}
.scenarios-container h2 {
  color: white;
  text-align: center;
  max-width: 90%;
}
.scenarios-cards-container {
  justify-content: center;
  margin-top: 32px;
}

.scenarios-card button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  background-color: white;
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  padding: 20px 0;
  border-radius: 0 0 20px 20px;
  transition: all 0.3s linear;
}
.scenarios-card button rect,
.scenarios-card button path {
  transition: all 0.3s linear;
}
.scenarios-card button:hover rect,
.scenarios-card button:hover path {
  transition: all 0.3s linear;
  fill: #0ca94b !important;
}
.scenarios-card button:hover {
  color: var(--accent-color);
}
.scenarios-card button > svg {
  width: 14px;
  height: 14px;
  object-fit: cover;
}

.scenarios-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}
.scenarios-card {
  width: 45%;
}
@media (min-width: 640px) {
}

@media (min-width: 768px) {
  .scenarios-card > img {
    width: 100%;
    height: 200px;
}
}

@media (min-width: 1024px) {
  .scenarios-cards-container {
    gap: 48px 0;
    justify-content: space-between;
  }
  .scenarios-cards-container {
    margin-top: 64px;
  }
  .scenarios-container {
    padding: 64px 0;
  }
  .mini-body-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 16.25%;
    height: 100%;
  }
  .scenarios-content {
    margin: 0 auto;
    width: 56%;
  }
  .scenarios-card {
    width: 30%;
    display: flex;
    flex-direction: column;
  }
  .scenarios-card > img {
    height: 120px;
  }
}

@media (min-width: 1280px) {
  .scenarios-card > img {
    height: 180px;
  }
}

@media (min-width: 1536px) {
}

/* ================================================How it work============================== */

.global-how-it-work .title-section {
  text-align: center;
  margin: 32px 0;
}
.how-it-works-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;

  gap: 30px;
}
.how-it-works-images-container {
  display: flex;
  align-items: center;
}
.circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--accent-color);

  position: relative;
}
.eclipse {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}
.how-it-works-images-container img {
  transition: all 0.3s linear;
}

.text-special-style {
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.circle {
  display: none;
}
.step-container {
  display: flex;

  gap: 14px;
  width: fit-content;
}
.step {
  z-index: 2;
  font-size: 24px;
  width: fit-content;
  font-weight: 600;
  height: fit-content;
  padding: 16px 26px;
  border-radius: 96px;
  background-color: #e3f3e9;
}
.step-content h4 {
  font-size: 18px;
  color: var(--accent-color);
}
.step-content p {
  font-size: 16px;
  color: var(--secondary-color);
  max-width: 90%;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .global-how-it-work .title-section {
    text-align: center;
    margin: 64px 0;
  }
  .step-container {
    width: 48%;
  }

  .text-special-style {
    font-size: 100px;
  }
  /* ========= */
  .arrow {
    opacity: 0;
    width: 20px;
    height: 20px;
  }
  .circle:hover .arrow {
    opacity: 1;
  }
  .how-it-works-container {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
  }
  .step-container {
    width: fit-content;
  }
  .step {
    width: fit-content;
  }
  .step-container {
    position: absolute;
  }
  .circle {
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
  }
  .eclipse {
    width: 400px;
    height: 400px;
  }
  .text-special-style {
    font-size: 100px;
  }
  .how-it-works-images-container img:nth-child(2) {
    width: 150px;
    height: auto;
    object-fit: cover;
    z-index: 11;
    transform: translate(15px);
  }
  .how-it-works-images-container img:nth-child(3) {
    width: 100px;
    transform: translate(-15px);
    height: auto;
    object-fit: cover;
    z-index: 10;
  }
  .circle:hover .how-it-works-images-container img {
    transform: scale(1.15) translateY(-40px) translateX(-10px);
  }
  .text-special-style:nth-child(4) {
    margin-left: -40px;
    z-index: 9;
  }
  .text-special-style:nth-child(1) {
    margin-right: -30px;
    z-index: 9;
  }
  .step-container p {
    max-width: 245px;
  }
  .three p {
    max-width: 210px;
  }
  .step-content h4 {
    max-width: 210px;
    font-size: 16px;
  }

  .step {
    font-size: 20px;
    padding: 16px 24px;
    border-radius: 96px;
  }
  .one {
    top: 40px;
    flex-direction: row-reverse;
    left: 8.5%;
  }
  .tow {
    top: 45px;
    right: 5%;
  }
  .three {
    top: 228px;
    right: 1%;
  }
  .four {
    top: auto;
    bottom: 10px;
    right: 6%;
  }
  .five {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 6%;
    flex-direction: row-reverse;
  }

  .six .step-content {
    margin-left: 50px;
  }
  .six {
    max-width: 300px;
    flex-direction: row-reverse;
    top: 228px;
    left: -0.5%;
  }
  /* arrow */
  .arrow {
    display: block;
    position: absolute;
    width: 60px;
    height: auto;
    object-fit: cover;

    transition: all 0.3s ease-in-out;
  }
  .arrow-one {
    top: -29px;
    left: 50%;
  }
  .arrow-tow {
    top: 120px;
    right: -10px;
  }
  .arrow-three {
    top: 330px;
    right: -1px;
    height: auto;
    object-fit: cover;
  }
  .arrow-four {
    position: absolute;
    top: auto;
    right: 44%;
    bottom: -6.2%;
    height: auto;
    object-fit: cover;
  }
  .arrow-five {
    position: absolute;
    left: -2.5%;
    bottom: 25%;
    height: auto;
    object-fit: cover;
  }
  .arrow-six {
    position: absolute;
    top: 25%;
    right: auto;
    left: -2.8%;
    object-fit: cover;
  }
  .step-content p {
    font-size: 14px;
  }
}
@media (min-width: 1280px) {
  .six .step-content {
    margin-left: 0px;
  }
  .global-how-it-work .title-section {
    margin-bottom: 70px;
  }
  .step-content p {
    font-size: 16px;
  }
  .arrow {
    opacity: 0;
  }
  .circle:hover .arrow {
    opacity: 1;
  }
  .how-it-works-container {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
  }
  .step-container {
    width: fit-content;
  }
  .step {
    width: fit-content;
  }
  .step-container {
    position: absolute;
  }
  .circle {
    width: 600px;
    height: 600px;
    position: relative;
    display: flex;
  }
  .eclipse {
    width: 500px;
    height: 500px;
  }
  .text-special-style {
    font-size: 120px;
  }
  .how-it-works-images-container img:nth-child(2) {
    width: 180px;
    height: auto;
    object-fit: cover;
    z-index: 11;
    transform: translate(15px);
  }
  .how-it-works-images-container img:nth-child(3) {
    width: 130px;
    transform: translate(-15px);
    height: auto;
    object-fit: cover;
    z-index: 10;
  }
  .circle:hover .how-it-works-images-container img {
    transform: scale(1.15) translateY(-40px) translateX(-10px);
  }
  .text-special-style:nth-child(4) {
    margin-left: -40px;
    z-index: 9;
  }
  .text-special-style:nth-child(1) {
    margin-right: -30px;
    z-index: 9;
  }
  .step-container p {
    max-width: 288px;
  }
  .step-content h4 {
    max-width: 288px;
    font-size: 20px;
  }
  .step {
    font-size: 28px;
    padding: 18px 28px;
    border-radius: 96px;
  }
  .one {
    top: 40px;
    flex-direction: row-reverse;
    left: 11%;
  }
  .tow {
    top: 45px;
    right: 7%;
  }
  .three {
    top: 258px;
    right: 0%;
  }
  .four {
    top: auto;
    bottom: 40px;
    right: 7%;
  }
  .five {
    top: auto;
    right: auto;
    bottom: 10px;
    left: 7%;
    flex-direction: row-reverse;
  }
  .six {
    max-width: 300px;
    flex-direction: row-reverse;
    top: 278px;
    left: 6%;
  }
  /* arrow */
  .arrow {
    display: block;
    position: absolute;
    width: 80px;
    height: auto;
    object-fit: cover;

    transition: all 0.3s ease-in-out;
  }
  .arrow-one {
    top: -36px;
    left: 50%;
  }
  .arrow-tow {
    top: 140px;
    right: -15px;
  }
  .arrow-three {
    top: 350px;
    right: -23px;
    height: auto;
    object-fit: cover;
  }
  .arrow-four {
    position: absolute;
    top: auto;
    right: 44%;
    bottom: -6.6%;
    height: auto;
    object-fit: cover;
  }
  .arrow-five {
    position: absolute;
    left: -3%;
    bottom: 25%;
    height: auto;
    object-fit: cover;
  }
  .arrow-six {
    position: absolute;
    top: 25%;
    right: auto;
    left: -2.8%;
    object-fit: cover;
  }
}

@media (min-width: 1536px) {
  .step {
    z-index: 2;
    font-size: 24px;
    width: fit-content;
    font-weight: 600;
    height: fit-content;
    padding: 16px 26px;
    border-radius: 96px;
    background-color: #e3f3e9;
  }
  .global-how-it-work .title-section {
    text-align: center;
    margin: 64px 0;
    margin-bottom: 70px;
  }
  .circle {
    width: 784px;
    height: 784px;
    position: relative;
  }
  .how-it-works-images-container {
    width: 100%;
  }
  .how-it-works-images-container img:nth-child(2) {
    width: 250px;
    height: auto;
    object-fit: cover;
    z-index: 11;
    transform: translate(30px);
  }
  .how-it-works-images-container img:nth-child(3) {
    width: 190px;
    transform: translate(-30px);
    height: auto;
    object-fit: cover;
    z-index: 10;
  }
  .text-special-style {
    font-size: 154px;
  }
  .text-special-style:nth-child(4) {
    margin-left: -7%;
    z-index: 9;
  }
  .text-special-style:nth-child(1) {
    margin-right: -7%;
    z-index: 9;
  }
  .circle:hover .how-it-works-images-container img {
    transform: scale(1.15) translateY(-45px) translateX(-10px);
  }

  /* ======== */
  .step-container p {
    max-width: 288px;
  }
  .step-content h4 {
    max-width: 288px;
    font-size: 20px;
  }
  .step {
    font-size: 36px;
    padding: 20px 32px;
    border-radius: 96px;
  }
  .one {
    top: 65px;
    flex-direction: row-reverse;
    left: 12%;
    max-width: 370px;
  }
  .tow {
    top: 68px;
    right: 9%;
  }
  .three {
    top: 341px;
    right: 2%;
  }
  .four {
    top: auto;
    bottom: 66px;
    right: 9%;
  }
  .five {
    top: auto;
    right: auto;
    bottom: 48px;
    left: 9%;
    flex-direction: row-reverse;
  }
  .six {
    max-width: 300px;
    flex-direction: row-reverse;
    top: 355px;
    left: 8%;
  }
  .arrow {
    display: block;
    position: absolute;
    width: 102px;
    height: auto;
    object-fit: cover;

    transition: all 0.3s ease-in-out;
  }
  .arrow-one {
    top: -46px;
    left: 50%;
  }
  .arrow-tow {
    top: 180px;
    right: -16px;
  }
  .arrow-three {
    top: 480px;
    right: -20px;
    height: auto;
    object-fit: cover;
  }
  .arrow-four {
    position: absolute;
    top: auto;
    right: 44%;
    bottom: -6.6%;
    height: auto;
    object-fit: cover;
  }
  .arrow-five {
    position: absolute;
    left: -3%;
    bottom: 25%;
    height: auto;
    object-fit: cover;
  }
  .arrow-six {
    position: absolute;
    top: 25%;
    right: auto;
    left: -2.8%;
    object-fit: cover;
  }
  .eclipse {
    width: auto;
    height: auto;
  }
}

/* ===========================select your robot============================ */

.select-robot-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
  margin-bottom: 32px;
  position: relative;
  width: fit-content;
}
#lottie-arrow-title {
  position: absolute;
  width: 70px;
  height: 70px;
  bottom: -110%;
  right: -25%;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  height: 360px;
}
.slide {
  padding: 20px;
  text-align: center;
  flex: 0 0 100%;
}
.navigation-dots {
  text-align: center;
  padding: 20px;
}
.navigation-dots .dot {
  display: inline-block;
  width: 24px;
  height: 8px;
  margin: 0 5px;
  background: #dfdfdf;
  border-radius: 67px;
  cursor: pointer;
}
.navigation-dots .dot.active {
  background: var(--accent-color);
}
.robotInfoCon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  height: 200px;
  transition: all 0.3s linear;
}
.robot-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}
.robot-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent
    linear-gradient(180deg, #ffffff 0%, #c2c2c2 53%, #dfdfdf 100%) 0% 0%
    no-repeat padding-box;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.robotInfoCon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 32px 0;
}

.robot-item:hover::before,
.robot-item.selected::before {
  opacity: 1;
}
.robot-item:hover,
.robot-item.selected {
  display: flex;
  flex-direction: row !important;
}

.robot-item h2 {
  position: absolute;
  left: 0;
  opacity: 0;
  font-size: 24px;
  writing-mode: vertical-rl;
  transform-origin: center;
  white-space: nowrap;
  transform: rotate(-180deg) translateX(100%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.robot-item:hover h2,
.robot-item.selected h2 {
  position: static;

  z-index: 9999;
  opacity: 1;
  transform: rotate(180deg) translateX(0%);
}

.robot-item h3 {
  color: white;
  font-size: 20px;
  width: fit-content;
  transition: all 0.3s linear;
  opacity: 1;
  margin: 0 auto;
}
.robot-item:hover img,
.robot-item.selected img {
  transform: scale(0.8);
  position: relative;
  z-index: 90;
}
.slide {
  flex: 0 0 calc(50% - 10px);
}
@media (min-width: 640px) {
  .slide {
    flex: 0 0 calc(33.33% - 20px);
  }
  .robotInfoCon img {
    height: 300px;
  }
  .slider {
    height: 420px;
  }
  #lottie-arrow-title {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 768px) {
  .robotInfoCon img {
    height: 400px;
  }
  .slider {
    height: 520px;
  }
  .robot-item h2 {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .select-robot-title {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .navigation-dots .dot {
    width: 30px;
    height: 12px;
    margin: 0 5px;
  }
  .robotInfoCon img {
    height: 400px;
  }
  .robot-item h2 {
    font-size: 40px;
  }
  .slide {
    flex: 0 0 calc(25% - 20px);
  }
}

@media (min-width: 1280px) {
  .robotInfoCon img {
    height: 450px;
  }
  .slider {
    height: 600px;
  }
}
@media (min-width: 1536px) {
  .select-robot-title {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .robotInfoCon img {
    height: 593px;
  }
  .robot-item h2 {
    font-size: 56px;
  }
  .slider {
    height: 740px;
  }
}

/* ==========================================Robot Info Section=============================== */
.prices-info-container {
  display: grid;
  gap: 10px;
  width: 100%;
  align-items: stretch;
}

.info-card {
  width: 100%;
  position: relative;
  display: flex;
  min-height: 342px;
  flex-direction: column;
  padding: 16px;
  background-color: var(--light-gray);
  border-radius: 28px;
  justify-content: center;
  /* overflow: hidden; */
}

.rent-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 16px;
  gap: 10px;
}

.rent-top h2 {
  font-size: 18px;
}

.rent-top h2 span {
  color: var(--accent-color);
}

.static-paragraph {
  color: var(--secondary-color);
  font-size: 16px;
  margin-top: 12px;
}

.price-info {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
}

.price-info span {
  font-size: 14px;
}

.per-dynamic {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.more-info-card {
  position: absolute;
  font-size: 16px;
  height: fit-content;
  min-height: 100%;
  top: 0;
  left: 0;
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  gap: 20px;
  z-index: -999;
  transition: all 0.3s ease;
  font-size: 13px;
  opacity: 0;

  transition: all 0.3s ease-in-out;
}

.more-info-card.show-card-more-info {
  z-index: 999;
  opacity: 1;
}
.show-more-info {
  border: none;
  outline: none;
  background-color: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.more-info-card .close-card {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.more-info-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.more-info-card p {
  max-width: 80%;
  font-size: 10pt;
}
.custom-select-container {
  width: 100%;
  position: relative;
  user-select: none;
}

.custom-select-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  padding: 15px;
  margin-top: 20px;
  background-color: transparent;
  border: 1px solid #101010;
  cursor: pointer;
  border-radius: 12px;
  transition: border 0.3s ease;
}

.custom-select-header:hover {
  border-color: #888;
}

.custom-arrow {
  width: 10px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}

.custom-select-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  z-index: 9000;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 0;
  padding: 0 10px;
  animation: fadeIn 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  overflow-y: scroll;
}

.show-menu {
  max-height: 280px;
  padding: 10px;
}

.custom-select-menu::-webkit-scrollbar {
  width: 1.3px;
  border-radius: 100px;
}

.custom-select-menu::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}
.custom-select-menu::-webkit-scrollbar-thumb {
  background-color: #70d4aa;
  border-radius: 100px;
}
.custom-select-menu {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
}

.custom-select-menu::-moz-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 100px;
}
.custom-select-menu::-ms-scrollbar {
  width: 1.3px;
  border-radius: 100px;
}

.custom-select-menu::-ms-thumb {
  background-color: var(--accent-color);
  border-radius: 100px;
}

.custom-select-item {
  padding: 15px;
  cursor: pointer;
  background-color: transparent;
  border-radius: 12px;
  transition: all 0.3s linear;
}

.custom-select-item:hover {
  background-color: #e3f3e9;
  color: var(--secondary-color);
}

.custom-select-container.active-select .custom-arrow {
  transform: rotate(-135deg);
}

.overlay-disable {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.6;
}
.info-card.ac {
  opacity: 0.6;
  z-index: 1000;
}
.info-card.active-card-info {
  opacity: 1;
}
.info-card.active-card-info .overlay-disable {
  opacity: 0.6;
  z-index: -1000;
}
@media (min-width: 540px) {
  .rent-top h2 {
    font-size: 20px;
  }
  .price-info {
    font-size: 22px;
  }

  .price-info span {
    font-size: 16px;
  }
  .per-dynamic {
    font-size: 16px;
  }
  .more-info-card p {
    max-width: 100%;
  }
  .more-info-card {
    font-size: 16px;
  }
  .more-info-card {
    padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .info-card {
    width: 100%;
    padding: 20px;
  }
  .more-info-card p {
    max-width: 80%;
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .prices-info-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-info {
    font-size: 20px;
  }
  .price-info span {
    font-size: 14px;
  }
  .per-dynamic {
    font-size: 14px;
  }
  .more-info-card {
    padding-top: 40px;
  }
  .more-info-card p {
    font-size: 16px;
  }
  .more-info-card {
    padding-top: 20px;
  }
}

@media (min-width: 1280px) {
  .more-info-card {
    font-size: 16px;
  }
  .rent-top h2 {
    font-size: 28px;
  }
  .price-info {
    font-size: 30px;
  }
  .price-info span {
    font-size: 18px;
  }
  .per-dynamic {
    font-size: 16px;
  }
  .more-info-card {
    padding-top: 60px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.custom-radio-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-radio-container input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #d4d4d4;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

.custom-radio-container input[type="radio"]:checked {
  border-color: var(--accent-color);
}

.custom-radio-container input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-color);
}

.custom-radio-container label {
  font-size: 16px;
  cursor: pointer;
}

.custom-radio-container input[type="radio"]:hover {
  border-color: #4caf50;
}

/* ========================table style================== */

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 50px;
  margin-bottom: 64px;
}

th,
td {
  padding: 20px;
  font-size: 16px;
  text-align: left;
  position: relative;
  text-align: left;
}
th {
  padding: 20px 0;
}

td:nth-child(1) {
  text-align: left;
}

tbody tr:nth-child(even) {
  background-color: transparent;
}

tbody tr:nth-child(odd) td {
  background-color: var(--light-gray);
}

th {
  color: var(--secondary-color);
  background-color: #ffffff;
  font-size: 20px;
}

@media screen and (max-width: 1024px) {
  table {
    margin-bottom: 32px;
  }
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    border-radius: none;
  }
  tr {
    margin-bottom: 15px;
  }
  td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 10px;
    font-weight: bold;
    text-align: left;
  }
  tbody tr:nth-child(odd) td:first-child {
    border-top-left-radius: 0px;

    border-bottom-left-radius: 0px;
  }
}

.button-container {
  display: flex;
  gap: 10px;
}

table button {
  padding: 14px 14px;
  border: none;
  background-color: transparent;
  color: var(--accent-color);
  transition: all 0.3s linear;
  color: var(--accent-color);
  cursor: pointer;
  font-size: 16px;
  font-family: "Roboto Mono", monospace;
  border: 1px solid #0ca94b;
  border-radius: 30px;
}
.button-container button:hover {
  background-color: var(--accent-color);
  color: white;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
/* =====switch============ */

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dfdfdf;
  transition: 0.4s;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.slider-content {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 28px;
  height: 28px;
  background-color: #b7b7b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s, background-color 0.4s;
  transform: translateY(-50%);
}
input:checked ~ .slider-switch .slider-content {
  transform: translateX(26px) translateY(-50%);
  background-color: var(--accent-color);
}
.icon-toggle {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: opacity 0.4s;
}

.icon-on {
  opacity: 0;
}

.icon-off {
  opacity: 1;
}

input:checked ~ .slider-switch .icon-on {
  opacity: 1;
}

input:checked ~ .slider-switch .icon-off {
  opacity: 0;
}
/*  */
.quotation {
  margin-left: 0px;
}
.active-btn {
  background-color: var(--accent-color);
  color: white;
}
.column-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: transparent;
  display: block;
  z-index: 1;
}
.column-overlay.disable-overlay-column {
  display: none;
}

.rent-column .column-overlay.disable-overlay-column {
  display: none;
}

.purchase-column .column-overlay.disable-overlay-column {
  display: none;
}
th.column-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.column-disabled .switch {
  opacity: 0.2;
  pointer-events: none;
}
.column-disabled button {
  opacity: 0.2;
  pointer-events: none;
}
.quotation {
  color: white;
  background-color: var(--accent-color);
  transition: all 0.3s linear;
}
.quotation:hover {
  color: white;
  background-color: #00852c;
}
@media (min-width: 1024px) {
  th,
  td {
    font-size: 18px;
  }
  th {
    color: var(--secondary-color);
    background-color: #ffffff;
    font-size: 24px;
  }

  td:nth-child(1) {
    border-radius: 16px 0 0 16px;
  }
  td:nth-child(3) {
    border-radius: 0px 16px 16px 0;
  }
  .custom-radio-container input[type="radio"] {
    width: 24px;
    height: 24px;
  }

  .custom-radio-container input[type="radio"]:checked::before {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 1280px) {
  table button {
    padding: 14px 20px;
  }
  th,
  td {
    text-align: center;
  }
  .custom-radio-container input[type="radio"] {
    width: 28px;
    height: 28px;
  }

  .custom-radio-container input[type="radio"]:checked::before {
    width: 14px;
    height: 14px;
  }
  .custom-radio-container label {
    font-size: 18px;
  }
}

@media (min-width: 1536px) {
}
/*  =======================footer-container=============================*/
.footer-container {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  font-size: 16px;
}
.footer-container p {
  color: #dfdfdf;
}
.pargraph-under-logo {
  margin: 32px 0;
}
.footer-item h4 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-item ul li a {
  margin-left: 0px;

  color: white;
  transition: all 0.3s ease-in;
}
.footer-item ul li {
  font-size: 16px;
  margin-top: 20px;
  transition: all 0.3s ease-in;
}
.footer-item ul li:hover a {
  color: var(--accent-color);
}
.footer-item ul li:hover {
  margin-left: 16px;
}
.footer-item .address-pargraph {
  max-width: 277px;
  line-height: 2.5;
}

.icon-social {
  width: 34px;
  height: 34px;
  object-fit: contain;
  fill: white;
  color: white;
  transition: all 0.3s linear;
}
.icon-social.linked-in {
  width: 30px;
  height: 30px;
}
.icon-social:hover {
  fill: #0ca94b;
}
.footer-icons-container a {
  transition: all 0.3s linear;
}
.footer-icons-container a:hover {
  margin-top: -10px;
}
.footer-icons-container {
  display: flex;
  gap: 10px;
}
.bottom-bar-container {
  padding-top: 20px;
  font-size: 14px;
  padding-bottom: 20px;
  color: #747474;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.bottom-bar-container a:nth-child(1) {
  border-right: 1px solid #747474;
}
.bottom-bar-container a {
  color: #747474;
  padding: 0 10px;
  transition: all 0.2s linear;
}
.bottom-bar-container a:hover {
  color: var(--accent-color);
}
.list-footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .bottom-bar-container {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
  .footer-item {
    flex: 1;
  }
}

@media (min-width: 1280px) {
  .bottom-bar-container a {
    padding: 0 20px;
  }
}

@media (min-width: 1536px) {
}
