* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* colors */
  --primary: #22283b;
  --accent: #47b5ff;
  --secondary: #ffffff;
  --caption: #b1c2f6;
  --paragraph: #878787;

  /* fonts */
  --font-big: 146px;
  --font-xxl: 100px;
  --font-xl: 64px;
  --font-h1: 56px;
  --font-h2: 48px;
  --font-h3: 40px;
  --font-h4: 32px;
  --font-h5: 24px;
  --font-h6: 20px;
  --font-p: 16px;
  --font-small: 14px;

  /* line heights */
  --height-big: 140px;
  --height-xxl: 100px;
  --height-xl: 72px;
  --height-h1: 64px;
  --height-h2: 54px;
  --height-h3: 48px;
  --height-h4: 40px;
  --height-h5: 32px;
  --height-h6: 30px;
  --height-p: 32px;
  --height-small: 26px;
}
html {
  overflow-x: hidden;
}

::-moz-selection {
  /* Code for Firefox */
  color: var(--primary);
  background: var(--accent);
}

::selection {
  color: var(--primary);
  background: var(--accent);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--secondary);
  overflow-x: hidden;
}

header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
}

.container-lg {
  width: 80%;
  margin: auto;
}

nav {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 0;
}

nav > a {
  display: flex;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 4rem;
}
nav ul li a {
  color: var(--secondary);
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--font-h6);
  font-family: "Poppins", sans-serif;
}

nav ul li a:hover {
  color: var(--accent);
}

nav img {
  max-height: var(--font-h1);
  height: var(--font-h1);
}

.menu {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.burger {
  width: 70px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
.burger div {
  background-color: var(--accent);
  height: 4px;
  width: 100%;
}

.burger-menu {
  width: 90%;
  position: absolute;
  top: 2%;
  right: 0;
  left: 0;
  z-index: 1000;
  border-radius: 10px;
  overflow: hidden;
  margin: auto;
  display: none;
}

#show {
  display: block;
}

.burger-header {
  background-color: var(--primary);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.burger-header img {
  width: 180px;
}

.burger-header i {
  color: var(--accent);
  font-size: 28px;
  cursor: pointer;
}

.burger-body {
  background-color: var(--secondary);
}

.burger-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.burger-body ul a:last-child li {
  background-color: var(--accent);
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: auto;
  gap: 10px;
  border-radius: 25px;
  padding: 10px 15px;
  margin: 70px auto 20px auto;
  font-size: 16px;
}

.burger-body ul li {
  border-bottom: 1px solid var(--paragraph);
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.burger-body ul li:hover {
  background-color: var(--caption);
}

.burger-body ul a {
  text-decoration: none;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.burger-body ul a li i {
  color: var(--primary);
}

.remove-border {
  border-bottom: none !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

#video-lg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* min-height: 100%; */
  transform: scale(2);
  z-index: 1;
  object-position: right center;
}

#video-sm {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  object-fit: cover;
  display: none;
}

.hero video::-webkit-media-controls {
  display: none !important;
}

.overlay {
  position: absolute;
  top: 0;
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.5;
}

.text {
  z-index: 3;
  color: var(--secondary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.text h1,
.text p {
  max-width: 600px;
  font-family: "Poppins", sans-serif;
}
.text h1 {
  font-size: var(--font-h2);
  line-height: var(--height-h2);
}

.text p {
  font-size: var(--font-h6);
  line-height: var(--height-h6);
  max-width: 480px;
  font-weight: 400;
}

.text button {
  background-color: transparent;
  border: none;
  color: var(--accent);
  font-size: var(--font-p);
  font-family: "Poppins", sans-serif;
  width: fit-content;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.text button a {
  /* text-decoration: underline; */
  color: var(--accent);
}
.text button i {
  transform: rotate(-45deg);
}

#symbol1 {
  z-index: 3;
  position: absolute;
  right: 0;
  bottom: -120px;
  width: 200px;
}

.plus {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}

.div1,
.div2 {
  width: 100%;
  height: 15px;
  background-color: var(--accent);
}

.div2 {
  margin-left: -100%;
  transform: rotate(90deg);
}

.number {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}

.number p {
  font-size: var(--font-h6);
  line-height: var(--height-h6);
  color: var(--caption);
  font-weight: 400;
}

.digit {
  display: flex;
  gap: 10px;
  align-items: center;
}

.digit h1 {
  font-size: var(--font-xxl);
  line-height: var(--height-xl);
  color: var(--primary);
  font-weight: 700;
}

.number p {
  font-size: var(--font-h6);
  line-height: var(--height-h6);
  color: var(--caption);
  font-weight: 400;
}

.numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  align-items: center;
  height: fit-content;
  padding: 5rem 0;
}

.divider {
  background-color: var(--caption);
  width: 1px;
  height: 80px;
}
.about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 8rem 0;
}

.about h1 {
  font-size: var(--font-big);
  line-height: var(--height-big);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

#marker2 {
  position: relative;
}

#symbol2 {
  position: absolute;
  right: 15%;
  top: -170px;
  width: 100px;
}
.about-image {
  margin-top: 4rem;
  height: 90vh;
  background-image: url(assets/img/about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about p {
  font-size: var(--font-p);
  line-height: var(--height-small);
  color: var(--paragraph);
  font-weight: 400;
  /* max-width: 1000px; */
}

.about a {
  font-size: var(--font-p);
  font-weight: 400;
  color: var(--primary);
}
.about i {
  transform: rotate(-45deg);
}
.about img {
  width: 100%;
  margin-top: 10rem;
}

.values {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  min-width: 1300px;
  margin: auto;
  gap: 5rem;
  margin-bottom: 8rem;
}

.value-title {
  margin: auto;
  width: fit-content;
  text-orientation: mixed;
  writing-mode: vertical-lr;
  -webkit-transform: scale(1, -1);
}
.value-title h1 {
  font-size: var(--font-xxl);
  line-height: var(--height-xxl);
  color: var(--primary);
  -webkit-transform: scale(-1, 1);
}

.value-title h1:last-child {
  -webkit-text-stroke: 2px var(--primary);
  background-clip: text;
  -webkit-text-fill-color: #f5f5f5;
}

.value-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* max-width: 1000px; */
}

.value-details p {
  font-size: var(--font-p);
  line-height: var(--height-small);
  color: var(--primary);
  font-weight: 400;
}

.value-details img {
  width: 100%;
}

.products-container {
  background-color: var(--primary);
  overflow: hidden;
  padding-top: 5rem;
}

.scroll-text {
  display: flex;
  animation: scroll-right 10s linear infinite;
  animation-delay: -2s;
}

.scroll-text h1 {
  font-size: var(--font-big);
  font-weight: 800;
  -webkit-text-stroke: 1px var(--secondary);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
  text-transform: uppercase;
}

.source-container .scroll-text h1 {
  -webkit-text-stroke: 1px var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 0;
}

.product {
  border: 1px solid var(--secondary);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 2rem;
  min-width: 350px;
  max-width: 460px;
}

.product img {
  width: 60%;
  max-height: 125px;
}

.product h1 {
  font-size: var(--font-h5);
  font-weight: 600;
  color: var(--secondary);
  align-self: flex-start;
}

.product p {
  font-size: var(--font-small);
  line-height: var(--height-small);
  font-weight: 400;
  color: var(--secondary);
}

.product i {
  color: var(--accent);
  font-size: var(--font-h3);
  cursor: pointer;
  background-color: transparent;
  height: fit-content;
  border-radius: 1rem;
}

.product div {
  display: flex;
  gap: 2rem;
}

.source-container {
 background-image: url("data:image/svg+xml,%3Csvg id='patternId' width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='a' patternUnits='userSpaceOnUse' width='50.41' height='87' patternTransform='scale(2) rotate(0)'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='hsla(0, 0%25, 100%25, 0)'/%3E%3Cpath d='M25.3 87L12.74 65.25m0 14.5h-25.12m75.18 0H37.68M33.5 87l25.28-43.5m-50.23 29l4.19 7.25L16.92 87h-33.48m33.48 0h16.75-8.37zM8.55 72.5L16.92 58m50.06 29h-83.54m79.53-50.75L50.4 14.5M37.85 65.24L50.41 43.5m0 29l12.56-21.75m-50.24-14.5h25.12zM33.66 29l4.2 7.25 4.18 7.25M33.67 58H16.92l-4.18-7.25M-8.2 72.5l20.92-36.25L33.66 0m25.12 72.5H42.04l-4.19-7.26L33.67 58l4.18-7.24 4.19-7.25M33.67 29l8.37-14.5h16.74m0 29H8.38m29.47 7.25H12.74M50.4 43.5L37.85 21.75m-.17 58L25.12 58M12.73 36.25L.18 14.5M0 43.5l-12.55-21.75M24.95 29l12.9-21.75M12.4 21.75L25.2 0M12.56 7.25h-25.12m75.53 0H37.85M58.78 43.5L33.66 0h33.5m-83.9 0h83.89M33.32 29H16.57l-4.18-7.25-4.2-7.25m.18 29H-8.37M-16.74 0h33.48l-4.18 7.25-4.18 7.25H-8.37m8.38 58l12.73-21.75m-25.3 14.5L0 43.5m-8.37-29l21.1 36.25 20.94 36.24M8.37 72.5H-8.36' stroke-width='1' stroke='hsla(197, 100%25, 94%25, 1)' fill='none'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='800%25' height='800%25' transform='translate(0,0)' fill='url(%23a)'/%3E%3C/svg%3E");
  padding: 5rem 0;
}

#sources {
  /* padding: 5rem 0; */
}

.sources {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}

.source {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 1rem;
  justify-content: space-between;
  min-height: 290px;
  max-width: 450px;
  min-width: 450px;
  overflow: hidden;
  position: relative;
  /* background-color: var(--secondary); */
}

.card-pattern {
  position: absolute;
  right: -1px;
  bottom: 0;
}

.source .country {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.source span {
  display: flex;
  background-color: var(--primary);
  border-radius: 20px;
  padding: 10px;
  gap: 8px;
}

.source h4 {
  font-size: var(--font-p);
  color: var(--accent);
  font-weight: 300;
}

.source p {
  font-size: var(--font-p);
  color: var(--primary);
}
.source-title {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.source-title h1 {
  font-size: var(--font-h5);
  color: var(--primary);
}

.source-title p {
  font-size: var(--font-h5);
  line-height: var(--height-h5);
  color: var(--paragraph);
}

.partner-container,
.client-container {
  /* background-color: var(--primary); */
  padding-top: 5rem;
}
.client-container {
  padding-bottom: 5rem;
}

.partner-title {
  writing-mode: vertical-lr;
  -webkit-transform: scale(1, -1);
  /* margin: auto; */
  width: fit-content;
  text-orientation: mixed;
  background-color: var(--accent);
  border: none;
  padding: 2rem;
}

.partner-title h1 {
  font-size: var(--font-h4);
  line-height: var(--height-h4);
  color: var(--primary);
  font-weight: 700;
  -webkit-transform: scale(-1, 1);
}

#partner {
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  gap: 1rem;
}

#partner div {
  border-radius: 10px;
}

.partner-logo,
.partner-address {
  display: flex;
  padding: 2rem;
}

.partner-logo {
  background-color: var(--secondary);
}

.partner-address {
  flex-direction: column;
  justify-content: center;
  color: var(--secondary);
  max-width: 600px;
  gap: 1rem;
  border: 1px solid var(--secondary);
}

.partner-address h1 {
  font-size: var(--font-h3);
  line-height: var(--height-h3);
  font-weight: 600;
  color: var(--secondary);
}
.partner-address p {
  font-size: var(--font-p);
  line-height: var(--height-p);
  color: var(--secondary);
  font-weight: 400;
}

.client-title {
  writing-mode: vertical-lr;
  -webkit-transform: scale(1, -1);
  /* margin: auto; */
  width: fit-content;
  text-orientation: mixed;
  background-color: var(--accent);
  border: none;
  padding: 2rem;
}

.client-title h1 {
  font-size: var(--font-h4);
  line-height: var(--height-h4);
  color: var(--primary);
  font-weight: 700;
  -webkit-transform: scale(-1, 1);
}
#client {
  display: flex;
  gap: 1rem;
}

#client div {
  border-radius: 10px;
}

.client {
  border: 1px solid var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  /* padding: 2rem; */
  overflow: hidden;
  background-color: var(--secondary);
}

.client img {
  width: 200px;
}

.client p {
  font-size: var(--font-h6);
  line-height: var(--height-h6);
  color: var(--primary);
  font-weight: 300;

  padding: 2rem;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.swiper-container {
  width: 100%;
}

#customers {
  background-color: var(--primary);
}

footer {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 8rem 0;
}

#footer {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}

footer .left img {
  height: 50px;
}


footer .left {
  display: flex;
  flex-direction: column;
}

.develop {
  margin-top: 5rem;
}

.develop p {
  font-size: var(--font-p);
  line-height: var(--height-small);
  font-weight: 400;
}

.develop a {
  font-size: var(--font-h6);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--secondary);
  text-decoration: none;
  padding-left: 5px;
}

.develop a:hover {
  color: var(--accent);
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-text h1 {
  font-size: var(--font-h6);
  line-height: var(--height-h6);
  font-weight: 400;
}

.footer-text p {
  font-size: var(--font-small);
  line-height: var(--height-small);
  font-weight: 400;
  max-width: 400px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info p {
  font-size: var(--font-p);
  line-height: var(--height-small);
  font-weight: 500;
}

.right {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.pages {
  display: flex;
  justify-content: space-between;
}

.pages ul {
  list-style: none;
}

.pages ul li {
  font-size: var(--font-p);
  line-height: var(--height-p);
  font-weight: 400;
  cursor: pointer;
}

.pages ul li:hover {
  color: var(--accent);
}

.map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-details h1 {
  font-size: var(--font-h6);
  line-height: var(--height-h6);
  font-weight: 600;
}
.map-details p {
  font-size: var(--font-small);
  line-height: var(--height-small);
  font-weight: 400;
  max-width: 400px;
}

.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 16px;
  border-radius: 4px;
  color: var(--secondary);
  font-weight: 400;
  font-size: var(--font-small);
  line-height: var(--height-small);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.success {
  background-color: #28a745;
}

.error {
  background-color: #dc3545;
}

.form-wrapper {
  padding: 8rem 0;
}

.form-title h1 {
  font-size: var(--font-big);
  line-height: var(--height-big);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4rem;
}

.form-top,
.form-bottom {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
.form-top div,
.form-bottom div,
.message {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}

.contact-form {
    background-image: url("data:image/svg+xml,%3Csvg id='patternId' width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='a' patternUnits='userSpaceOnUse' width='50.41' height='87' patternTransform='scale(2) rotate(0)'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='hsla(0, 0%25, 100%25, 0)'/%3E%3Cpath d='M25.3 87L12.74 65.25m0 14.5h-25.12m75.18 0H37.68M33.5 87l25.28-43.5m-50.23 29l4.19 7.25L16.92 87h-33.48m33.48 0h16.75-8.37zM8.55 72.5L16.92 58m50.06 29h-83.54m79.53-50.75L50.4 14.5M37.85 65.24L50.41 43.5m0 29l12.56-21.75m-50.24-14.5h25.12zM33.66 29l4.2 7.25 4.18 7.25M33.67 58H16.92l-4.18-7.25M-8.2 72.5l20.92-36.25L33.66 0m25.12 72.5H42.04l-4.19-7.26L33.67 58l4.18-7.24 4.19-7.25M33.67 29l8.37-14.5h16.74m0 29H8.38m29.47 7.25H12.74M50.4 43.5L37.85 21.75m-.17 58L25.12 58M12.73 36.25L.18 14.5M0 43.5l-12.55-21.75M24.95 29l12.9-21.75M12.4 21.75L25.2 0M12.56 7.25h-25.12m75.53 0H37.85M58.78 43.5L33.66 0h33.5m-83.9 0h83.89M33.32 29H16.57l-4.18-7.25-4.2-7.25m.18 29H-8.37M-16.74 0h33.48l-4.18 7.25-4.18 7.25H-8.37m8.38 58l12.73-21.75m-25.3 14.5L0 43.5m-8.37-29l21.1 36.25 20.94 36.24M8.37 72.5H-8.36' stroke-width='1' stroke='hsla(197, 100%25, 94%25, 1)' fill='none'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='800%25' height='800%25' transform='translate(0,0)' fill='url(%23a)'/%3E%3C/svg%3E");
}

.contact-form input,
textarea {
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
  font-size: var(--font-h6);
  background-color: transparent;
  font-family: "Poppins", sans-serif;
  outline: none;
  border: none;
  background-color: #22283b3b;
}

textarea {
  resize: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
  max-width: 1200px;
}
form h1 {
  font-size: var(--font-p);
  color: var(--primary);
  font-weight: 600;
}

form button {
  background-color: var(--primary);
  padding: 1.2rem 6rem;
  color: var(--secondary);
  font-size: var(--font-h5);
  border: none;
  border-radius: 10px;
  width: fit-content;
  cursor: pointer;
}

form button:hover {
  color: var(--accent);
}

form button i {
  transform: rotate(-45deg);
}

@keyframes scroll-right {
  0% {
    transform: translateX(0); /* Start position */
  }
  100% {
    transform: translateX(calc(-100% + 20px)); /* End position */
  }
}

@media only screen and (max-width: 1600px) {
  .about h1 {
    font-size: var(--font-xxl);
    line-height: var(--height-xxl);
  }

  .form-title h1 {
    font-size: var(--font-xxl);
    line-height: var(--height-xxl);
  }
}

@media only screen and (max-width: 1000px) {
  #video-lg {
    display: none;
  }
  #video-sm {
    display: block;
  }
}

@media only screen and (max-width: 600px) {
  /* nav {
    padding: 2rem 0;
  } */

  nav ul {
    display: none;
  }

   nav img {
    max-height: var(--font-h4);
  }

  .burger {
    width: 50px;
    gap: 5px;
  }

  .hero {
    min-height: 85vh;
  }

  .text h1 {
    font-size: var(--font-h5);
    line-height: var(--height-h5);
  }

  .text p {
    font-size: var(--font-p);
    line-height: var(--height-small);
  }

  .digit {
    gap: 5px;
  }

  .digit h1 {
    font-size: var(--font-h3);
    line-height: var(--height-h3);
  }

  .numbers {
    padding: 3rem 0;
  }
  .number {
    gap: 0;
  }

  .number p {
    font-size: var(--font-small);
    line-height: var(--height-small);
  }

  .plus {
    width: 25px;
    height: 25px;
  }

  .div1,
  .div2 {
    width: 100%;
    height: 5px;
    /*background-color: #c6f200;*/
  }
  .divider {
    display: none;
  }

  .about {
    padding: unset;
  }

  .about h1 {
    font-size: var(--font-h4);
    line-height: var(--height-h4);
    margin-bottom: 0;
  }

  .about p {
    font-size: var(--font-small);
    line-height: var(--height-small);
  }

  .about img {
    margin-top: 2rem;
  }

  #symbol1 {
    bottom: 76px;
    width: 80px;
  }

  #symbol2 {
    position: absolute;
    right: 7%;
    top: -33px;
    width: 34px;
  }

  .value-details p {
    font-size: var(--font-small);
    line-height: var(--height-small);
  }

  .value-title h1 {
    font-size: var(--font-h3);
    line-height: var(--height-h3);
    color: var(--primary);
    -webkit-transform: unset;
  }

  .value-title {
    margin: unset;
    width: unset;
    text-orientation: unset;
    writing-mode: unset;
    -webkit-transform: unset;
  }

  .values {
    flex-direction: column;
    align-items: unset;
    gap: 1rem;
    padding: 2rem 0;
    min-width: unset;
    margin-bottom: 1rem;
  }

  .scroll-text h1 {
    font-size: var(--font-h3);
  }

  .products {
    display: flex;
    gap: 1rem;
    overflow-x: scroll;
  }

  .product i {
    color: var(--accent);
    font-size: var(--font-h4);
    align-self: flex-end;
  }

  .product div {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }

  .product h1 {
    font-size: var(--font-h6);
    font-weight: 600;
    color: var(--secondary);
    align-self: flex-start;
  }

  .product {
    border: 1px solid var(--secondary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    align-items: center;
    padding: 1rem;
    min-width: 267px;
    justify-content: space-evenly;
    max-width: 291px;
  }
  .products {
    display: flex;
    gap: 1rem;
    overflow-x: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

  .products::-webkit-scrollbar {
    display: none;
  }
  #products {
    width: 90%;
  }

  #sources {
    overflow: hidden;
    width: 90%;
    padding: 2rem 0;
  }

  .sources {
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: unset;
    padding: 2rem 0;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    gap: 1rem;
  }

  .sources::-webkit-scrollbar {
    display: none;
  }

  .source {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 1rem;
    justify-content: space-between;
    min-height: 260px;
    max-width: 232px;
    min-width: 276px;
    min-height: 343px;
  }

  .source .country {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .source-title p {
    font-size: var(--font-p);
    line-height: var(--height-small);
  }

  .source h4 {
    font-size: var(--font-small);
  }

  .source-title {
    text-align: unset;
    padding: 1rem;
    margin: unset;
  }

  #partner {
    flex-direction: column;
    width: 90%;
  }

  .partner-title {
    writing-mode: unset;
    -webkit-transform: unset;
    width: 100%;
    padding: 1rem;
  }
  .partner-title h1 {
    -webkit-transform: unset;
    font-size: var(--font-h5);
    line-height: var(--height-h5);
    text-align: center;
  }

  .partner-logo {
    justify-content: center;
    min-height: 200px;
  }

  .partner-address h1 {
    font-size: var(--font-h5);
    line-height: var(--height-h5);
  }

  .partner-address p {
    font-size: var(--font-small);
    line-height: var(--height-small);
  }

  #client {
    flex-direction: column;
    width: 90%;
  }
  .client-title h1 {
    -webkit-transform: unset;
    font-size: var(--font-h5);
    text-align: center;
  }

  .client-title {
    writing-mode: unset;
    -webkit-transform: unset;
    margin: unset;

    padding: 1rem;
    width: 100%;
  }
  .client {
    min-height: 350px;
  }

  #footer {
    flex-direction: column-reverse;
    width: 90%;
  }

  .map iframe {
    width: 100%;
    height: auto;
  }

  /* .right {
    flex-direction: column-reverse;
  } */

  .pages {
    flex-direction: column;
  }

  .develop {
    text-align: center;
  }
  .contact {
    gap: 2rem;
  }
  .form-title h1 {
    font-size: var(--font-h4);
    line-height: var(--height-h4);
    margin-bottom: unset;
  }

  .form-top {
    flex-direction: column;
    gap: 1rem;
  }

  form h1 {
    font-size: var(--font-p);
  }
  .contact-form input,
  textarea {
    padding: 1rem;
    width: 100%;
    font-size: var(--font-p);
  }
  form {
    gap: 1rem;
    padding: unset;
    padding-top: 2rem;
  }

  form button {
    font-size: var(--font-p);
  }

  .form-wrapper {
    padding: 5rem 0;
    width: 90%;
  }

  .about-image {
    height: 50vh;
    margin-top: 1rem;
  }

  .form-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .notification {
    bottom: 20px;
    right: 20px;
    left: 20px;
    align-items: unset;
  }
}
