@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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");

/*COMMON CSS==================================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
  width: 100%;
  height: 100%;
}

body {
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #434343;
  font-size: 1.6rem;
  line-height: 2.4rem;
  background-color: #ffffff;
  overflow-x: hidden;
}

body,
html,
div,
p,
span,
ul,
li,
ol,
a,
img,
label,
form,
iframe,
i,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  outline: 0px;
  border: 0px;
  text-decoration: none;
  list-style-type: none;
}

/*--------------------*/
a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
  cursor: pointer;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

h1 {
  font-size: 4.2rem;
  line-height: 5.4rem;
}

h2 {
  font-size: 3rem;
  line-height: 3.8rem;
}

h3 {
  font-size: 2.6rem;
  line-height: 3.4rem;
}

h4 {
  font-size: 2.2rem;
  line-height: 3rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 2.6rem;
}

h6 {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

p {
  margin-bottom: 15px;
}

address {
  font-style: normal;
  color: #000000;
}

/*FORM ELEMENTS============================================================*/
/*----------*/
label {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #000000;
  margin-bottom: 6px;
}

button {
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

input[type="text"],
div.select-box,
div.select-box select,
input[type="password"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #000000;
  padding: 10px;
  resize: none;
  background-color: transparent;
  -webkit-transition: all ease-in 0.3s;
  -o-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  border: 0;
  border: 1px solid #dddddd;
  border-radius: 0px;
  margin: 0;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

@supports (-webkit-touch-callout: none) {
  input,
  select,
  textarea,
  button {
    font-size: 16px !important;
  }
}

textarea {
  height: 120px;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #000000 !important;
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #000000;
}

form {
  display: block;
  width: 100%;
  padding: 30px 0;
  text-align: left;
}

ul.form-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

ul.form-list li {
  margin-bottom: 10px;
  width: 100%;
}

ul.form-list li.c2 {
  width: calc(50% - 15px);
}

ul.form-list li:last-child {
  margin-bottom: 0;
}

ul.form-list li ul.form-list {
  padding: 0;
}

/*SELECT BOX CSS-----------------------------------------------------*/
div.select-box {
  padding: 0 !important;
  border: 0 !important;
  position: relative;
  box-shadow: none;
}

div.select-box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
}

div.select-box:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: 10px;
  top: calc(50% - 8px);
  transform: rotate(45deg) translate(-50%, 50%);
  border-style: solid;
  border-color: #000000;
  border-width: 0px 2.5px 2.5px 0px;
  z-index: 1;
}

/*--------------------*/

/*CUSTOM RADIO AND CHECKBOX CSS==================================================*/
i.rdo,
i.chk {
  display: inline-block;
  width: auto;
  vertical-align: top;
  min-width: 14px;
  min-height: 14px;
  position: relative;
  margin-bottom: 0px;
  font-style: normal;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-user-select: none;
  text-transform: none !important;
  line-height: 2.4rem;
  padding-left: 30px;
}

i.rdo input,
i.chk input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

i.rdo em,
i.chk em {
  position: absolute;
  top: 0px;
  left: 0;
  height: 20px;
  width: 20px;
  z-index: 0;
  font-style: normal;
  border: 1px solid #eaeaea;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

i.rdo em:after,
i.chk em:after {
  content: "";
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
}

i.chk input:checked ~ em,
i.rdo input:checked ~ em {
  border-color: #000000;
}

i.chk input:checked ~ em:after,
i.rdo input:checked ~ em:after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

i.rdo input[type="radio"] ~ em {
  border-radius: 100%;
  -webkit-border-radius: 100%;
}

i.rdo input[type="radio"] ~ em:after {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  width: 60%;
  height: 60%;
}

i.chk input:checked ~ em:after {
  transform: rotate(45deg) translate(-15%, -10%);
  border-color: #000000;
  border-style: solid;
  border-width: 0 2px 2px 0;
  background-color: transparent;
  width: 35%;
  height: 70%;
}

/*----------*/

/*------------------------------------------------------------------------------------------------------------------------*/
div.mx-file-upload {
  width: 100%;
  height: 44px;
  padding: 0px 10px;
  background: #ffffff;
  border: solid 1px #dddddd;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  color: #fff;
  font-size: 13px;
  resize: none;
}

div.mx-file-upload {
  position: relative;
  padding: 0px;
}

div.mx-file-upload span {
  float: left;
  height: 45px;
  line-height: 45px;
  padding-left: 10px;
  text-align: left;
  color: #434343;
}

div.mx-file-upload span.info {
  width: 100%;
  height: auto;
  line-height: none;
  line-height: 15px;
  margin-top: 8px;
}

div.mx-file-upload span.file-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 120px);
  padding: 0 5%;
}

div.mx-file-upload div {
  float: left;
  position: absolute;
  right: 0px;
  width: 50px;
  height: 42px;
  line-height: 42px;
  overflow: hidden;
  background: #ededed;
  color: transparent;
  text-align: center;
  cursor: pointer;
  border: 0;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  text-transform: uppercase;
  background-image: url(../images/upload.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80%;
}

div.mx-file-upload div a {
  color: transparent;
}

div.mx-file-upload div:hover,
div.mx-file-upload div:active {
  background: #000000;
  -webkit-transition: background 0.4s ease-out;
  -moz-transition: background 0.4s ease-out;
  -o-transition: background 0.4s ease-out;
  background-image: url(../images/upload-light.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80%;
}

div.mx-file-upload div:hover a,
div.mx-file-upload div:active a {
  color: transparent;
}

div.mx-file-upload div input {
  width: 100%;
  height: 100%;
  padding: 0px;
  position: absolute;
  right: 0px;
  opacity: 0;
  top: 0;
  filter: alpha(opacity=0);
  cursor: pointer;
  z-index: 3;
}

.mx-file-upload span {
  float: left;
}

.mx-file-upload span:has(~ ul li) {
  display: none;
}

.mx-file-upload ul {
  float: left;
  height: 45px;
  line-height: 45px;
  padding: 0 10px;
}

.mx-file-upload ul li {
  color: #000000;
  height: 45px;
  line-height: 45px;
  float: left;
}

/*ERROR MESSAGE==================================================*/
p.e,
label.error {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #d92d20;
  text-align: left;
  margin-top: 4px;
}

/*FORM ELEMENTS ENDS====================================*/

/*MX SCROLLBAR CSS==================================================*/
::-webkit-scrollbar {
  width: 4px;
  height: 1px;
}

::-webkit-scrollbar-track {
  background: #eaeaea;
}

::-webkit-scrollbar-thumb {
  background: #000000;
  padding: 0px 0px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(16, 24, 40, 0.051);
  background: #eaeaea;
}

/*MX SCROLLBAR CSS==================================================*/
/* IMAGE BOX ================= */
.img-box {
  width: 100%;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

/* SHOW HIDE ELEMENTS -------------- */
.desk-only {
  display: block !important;
}

.mob-only {
  display: none !important;
}

/* WRAPPER ============ */
.wrapper {
  width: 100%;
  max-width: 1360px;
  margin: auto;
  padding: 0 15px;
}

.wrapper1000 {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 15px;
}

.wrapper800 {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 15px;
}

.row {
  display: flex;
  align-self: flex-start;
  justify-content: flex-start;
  flex-flow: row wrap;
}

.btn,
.btn1 {
  padding: 10px 20px;
  background-color: #000000;
  color: #ffffff;
  position: relative;
  z-index: 1;
  min-width: 150px;
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: center;
  transition: all 0.3s linear;
}

/*
.btn:before,
.btn1::before {
  top: 0px;
  width: 0px;
  left: auto;
  right: 0px;
  z-index: -1;
  bottom: 0px;
  content: "";
  position: absolute;
  background: #ededed;
  transition: width 0.2s linear;
} */

.btn:hover,
.btn1:hover {
  color: #000000;
  text-decoration: none;
  background: #ededed;
}

/* .btn:hover:before,
.btn1:hover::before {
  left: 0px;
  width: 100%;
  right: auto;
} */
b,
strong {
  font-weight: 500;
}

/*COMMON CSS ENDS====================================*/

/*HEADER CSS STARTS ====================================*/
header {
  position: fixed;
  top: 0;
  z-index: 100;
  left: 0;
  padding: 15px 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  -moz-animation: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

header.sticky {
  background-color: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

/* Heambeger menu ----- */
.hamburger {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: none;
}

.hamburger span {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  background-color: #000000;
  -webkit-transition: all 0.3s ease-in;
  -moz-animation: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.hamburger span:nth-of-type(2) {
  top: calc(50% - 9px);
}

.hamburger span:nth-of-type(3) {
  top: calc(50% + 9px);
}

header.sticky .hamburger span {
  background-color: #ffffff;
}

.hamburger.active span {
  background-color: #ffffff;
}

.hamburger.active span:nth-of-type(1) {
  display: none;
}

body:has(.hamburger.active) {
  overflow: hidden;
}

.hamburger.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

/* -------- */
header .logo {
  max-width: 200px;
  display: inline-flex;
  align-items: center;
}

header .logo img:first-child {
  display: block;
}

header .logo img:last-child {
  display: none;
}

header.sticky .logo img:first-child {
  display: none;
}

header.sticky .logo img:last-child {
  display: block;
}

header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-transition: all 0.5s ease-in;
  -moz-animation: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

header nav ul {
  justify-content: flex-end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

header nav a {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  font-size: 1.6rem;
  color: #000000;
}

nav a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  will-change: transform;
  gap: 6px;
  line-height: 3.4rem;
}

nav a span svg {
  display: none;
  width: 18px;
  aspect-ratio: 1;
}

header nav a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all ease-in-out 0.3s;
}

header nav a.active {
  font-weight: 500;
}

header nav a:hover::before,
header nav a.active::before {
  width: 100%;
  color: #000000;
}

header.sticky {
  background-color: #000000;
}

header.sticky nav a {
  color: #ffffff;
}

header.sticky nav a:hover::before,
header.sticky nav a.active::before {
  background-color: #ffffff;
}

/*-- BACK TO TOP -- ============== */
.scroll_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.4);
}

/*HEADER CSS END ====================================*/

/*FOOTER CSS STARTS ====================================*/
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 70px 0 0;
}

footer a {
  color: #ffffff;
  position: relative;
}

footer .menu-list a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all ease-in-out 0.3s;
}

footer a:hover::before,
footer a.active::before {
  width: 100%;
}

footer .row {
  gap: 20px;
  padding-bottom: 30px;
}

/* footer .row>div.logo {
  width: 30%;
} */

footer .social-links {
  gap: 30px;
  padding: 0;
  padding-top: 30px;
}

footer .social-links li::before,
footer .social-links li a::before {
  display: none;
}

footer .social-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer .social-links li {
  gap: 10px;
}

footer .row > div {
  width: calc(33.33% - 15px);
}

footer h5 {
  color: #ffffff;
  font-weight: 500;
}

.address li {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
  font-weight: 300;
}

.address li p {
  margin: 0;
}

footer .address li,
footer .address li address {
  color: #ffffff;
}

.address li:last-child {
  margin-bottom: 0;
}

.address li .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.address br {
  display: block;
}

.address a {
  gap: 10px;
  display: inline-flex;
  align-items: center;
}

footer .address li span {
  font-size: 0.8em;
  font-weight: 300;
}

.menu-list ul li {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #555555;
}

footer .copyright p {
  font-size: 1.3rem;
  line-height: 2rem;
  margin: 0;
}

/*FOOTER CSS END ====================================*/

/*MAIN CSS STARTS ====================================*/
section {
  padding: 100px 0;
}

/* Hero section  */
.hero_section {
  padding: 200px 0 50px;
  background-color: #eaeaea;
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 9;
  min-height: 100vh;
}

.hero_section .content {
  padding-left: calc((100% - 1360px) / 2);
  width: 50%;
}

.hero_section .content .data {
  padding: 0 15px;
}

.hero_section .content .data h1 {
  padding-block: 5px;
}

.hero_section .content p {
  margin: 15px 0;
}

.hero_section .content .btn {
  margin-top: 30px;
}

.hero_section .content .btn:hover,
.hero_section .content .btn:active {
  background-color: #f2f2f2;
}

.hero_section .hero-img {
  width: 35%;
  position: absolute;
  right: 30px;
  top: 100px;
}

.hero_section .customers {
  padding-top: 60px;
}

.social-links {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}

.social-links li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* .social-links li::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background-color: #dddddd;
} */

.social-links li .img-box {
  width: 150px;
}

/* .social-links li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all ease-in-out 0.3s;
} */

/* Hero section  */

/* Key Offring */
.key-section {
  background-color: #ffffff;
}

.key-section .key-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.key-section .key-content p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 400;
}

.key-section .key-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
  gap: 20px;
  text-align: center;
}

.key-section .key-list li {
  width: calc(33.33% - 20px);
}

.key-section .key-list .ico {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
}

.key-section .key-list .ico svg {
  width: 100%;
  height: 100%;
}

.key-section .key-list h3 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 10px;
}

/* Testimonal */
.testimonals {
  background: url(../images/testimonal-bg.png);
  background-size: cover;
  background-position: center center;
  padding-bottom: 30px;
}

.testimonal-wrap li {
  width: 100%;
  padding-bottom: 50px;
}

.testimonal-wrap .card {
  text-align: center;
  max-width: 500px;
  padding: 0 20px;
  margin: auto;
}

.testimonal-wrap .img-box {
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  margin-bottom: 15px;
}

.testimonal-wrap .name {
  font-style: italic;
  text-align: right;
  display: block;
}

.swiper-pagination-bullet-active {
  background-color: #000000;
}

.testimonal-slider .swiper-wrapper {
  transition-timing-function: ease-in !important;
}

.testimonal-slider {
  --swiper-wrapper-transition-timing-function: ease-in;
}

/* conect ---- */
.conect {
  text-align: center;
}

.conect h2 {
  margin-bottom: 30px;
}

.conect p + .btn1 {
  margin-top: 10px;
}

.desktop-br {
  display: block;
}

/* --------------- About page ------------ */
.page-banner {
  padding-top: 130px;
  padding-bottom: 0;
  flex-direction: column;
}

.page-title {
  text-align: center;
  margin: auto auto;
}

.page-hader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}

.page-hader h2 {
  margin: 0;
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-nav h2 {
  margin: 0;
}

.page-nav li a,
.page-nav li {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.page-nav li i {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
}

.page-nav li i svg {
  width: 100%;
  height: 100%;
}

.page-nav li a {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-list li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-list .img-box {
  width: 50%;
}

.about-list .data {
  width: calc(50% - 80px);
}

.about-list li h2 {
  /* left: -140px; */
  /* position: relative; */
  margin-bottom: 20px;
}

.about-list li:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

/* .about-list li:nth-child(even) h2 {
  right: -140px;
  left: unset;
} */

/* value-sec ======== */
.value h4 {
  text-align: center;
}

.value .value-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.value .value-list li {
  font-size: 1.6rem;
  font-weight: 400;
}

/* .value-list span {
  font-family: "Montserrat", sans-serif;
  display: block;
  font-size: 3.2rem;
  line-height: 4rem;
  padding-block: 20px;
  font-weight: 100;
} */

.value {
  padding-top: 20px;
}

.value .value-list li::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #dddddd;
  margin-right: 20px;
}

/* .value .value-list li:first-child:before {
  display: none;
} */

/* value-sec ======== */
.value-sec {
  background-color: #f4f4f4;
  text-align: center;
}

.value-sec .value-list {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}

.value-sec .value-list li {
  font-size: 1.8rem;
  font-weight: 600;
  width: calc(25% - 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #000000;
}

.value-sec .value-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  aspect-ratio: 1;
  padding-block: 20px;
}

.value-sec .value-list span svg {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

/* .value-sec .value-list li ul {
  padding-top: 10px;
}

.value-sec .value-list li ul li {
  font-size: 1.4rem;
  font-weight: 400;
  width: 100%;
} */

/* Product page -------- */

.product-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.product-list li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.product-list .img-box {
  aspect-ratio: 1.5 / 1;
}

.product-list .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list .img-box,
.product-list .data {
  width: calc(50% - 40px);
}

.product-list li h2 {
  position: relative;
  margin-bottom: 30px;
}

.product-list li:nth-child(even) {
  flex-direction: row-reverse;
}

.list-item {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.list-item li {
  display: flex;
  flex-flow: row !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 5px;
  text-align: left !important;
}

.list-item li .ico {
  width: 30px;
  height: 30px;
  display: inline-block;
  padding: 3px;
}

.list-item li .ico svg {
  width: 100%;
  height: 100%;
}

.list-item li span {
  flex: 1;
}

.p0 {
  padding: 0;
}

.conect h3 {
  font-weight: 600;
}

/* Careers ----- */
#career-form {
  padding-top: 0;
}

.opening h2 {
  margin-bottom: 30px;
}

.openong-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.openong-list .title {
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.openong-list h4 {
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0;
  padding-block: 15px;
}

.openong-list > li {
  border-top: 1px solid #ccc;
  padding: 0;
  transition: all 0.3s ease;
}

.openong-list > li:last-child {
  border-bottom: 1px solid #ccc;
}

.openong-list > li .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.openong-list > li .content {
  display: none;
  padding-bottom: 25px;
  animation: fadeIn 0.5s ease;
}

.openong-list > li.active .content {
  display: block;
}

.openong-list > li p:last-child {
  margin-bottom: 0;
}

.openong-list > li .btn {
  margin-top: 20px;
  display: inline-block;
  opacity: 1;
}

.openong-list h5,
.openong-list h6 {
  margin-bottom: 10px;
}

/* Optional: Arrow Indicator */
.openong-list span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}

.openong-list span svg {
  width: 100%;
  height: 100%;
}

.openong-list > li.active span {
  transform: rotate(-180deg);
}

/* Optional animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* key ---- */
.key {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.key li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid #000000;
  padding: 5px 10px;
  border-radius: 30px;
}

.key li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

ul.list-items {
  padding-left: 20px;
  margin-bottom: 15px;
}

ul.list-items li {
  list-style: disc;
  margin-bottom: 10px;
}

/* perks ---- */
.perks {
  padding-top: 0;
}

.perks .row {
  justify-content: space-between;
  align-items: center;
}

.perks .logo {
  background-color: #000000;
  width: calc(40% - 40px);
  aspect-ratio: 6 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.perks .logo img {
  padding: 30px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.perks .data {
  width: calc(60% - 40px);
}

.perks .data h3 {
  font-weight: 600;
}

.perks .data ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perks .data ul li h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

/* Contact Us page ------ */

.contact-info {
  padding-top: 0;
}

.contact-info .row {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: space-between;
  color: #000000;
}

.contact-info .address {
  width: calc(40% - 20px);
}

.contact-info .address li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-info .map {
  width: 60%;
}

.contact-info .map iframe {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 6 / 3; */
}

.contact-form .form-list {
  padding-block: 30px;
}

.btn-wrap {
  text-align: center;
  padding-bottom: 50px;
}

.editer-data ul,
.editer-data ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.editer-data ul li {
  list-style: disc;
}

.editer-data ol li {
  list-style: decimal;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: none;
}

.from-error {
  background-color: #f2e7e6;
  color: #e11610;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: block;
}

/*MAIN CSS END ====================================*/
