.html,
* {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

a {
  color: #3d3d3d;
}

.banner {
  padding-top: 0.5rem;
  background: linear-gradient(rgba(3, 172, 242, 0.2), rgba(76, 175, 80, 0.2));
}

.banner-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.banner-img-container {
  position: relative;
  width: 100%;
  background-image: url('./images/Banner1.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  padding: 4rem 0;
  margin: 4rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav a {
  text-decoration: none;
  padding: 0.5rem 0;
  color: #03acf2;
}

.nav a:hover {
  border-bottom: 2px solid #03acf2;
}

.auth a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  border-radius: 39px;
  transition: background-color 0.3s ease;
}

.auth a:nth-child(2) {
  background-color: #03acf2;
  color: #fff;
}

.auth a:hover {
  opacity: 0.8;
}

.content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.summary a {
  text-decoration: none;
  color: #03acf2;
}

.more-info {
  width: 70%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin: 0 auto;
}

.info-item {
  padding: 0.75rem 3rem;
  border-radius: 39px;
}
.info-item a {
  text-decoration: none;
}

.info-item h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.info-item:hover {
  background-color: #fff;
}

.h-divider {
  width: 1px;
  height: 4rem;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 2rem 0;
}

.art-container {
  position: relative;
  width: 100%;
  height: 160px;
}

.art-container img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.art-container img:nth-child(1) {
  z-index: 1;
}

.art-container img:nth-child(2) {
  z-index: 2;
}

.art-container img:nth-child(3) {
  z-index: 3;
}

main {
  position: relative;
  background: #fff;
  margin: 3rem 0 6rem;
}

.content-rectangle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 100%;
}

.content-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0;
}

.product {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.product img {
  max-width: 500px;
  height: 100%;
}

.product h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-reverse {
  flex-direction: row-reverse;
}

.video-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.video-container h1 {
  font-size: 2rem;
  font-weight: 600;
}

.video-container p {
  font-size: 1rem;
}

.video {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 111;
}

.company-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.company-container h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.company-container img {
  height: 250px;
}

.our-mission,
.our-vision {
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.our-mission {
  flex-direction: row-reverse;
}

.our-mission div {
  margin-right: 3rem;
}

.our-vision div {
  margin-left: 3rem;
}

.seperator {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  margin: 6rem 0;
}

footer {
  position: relative;
  margin-top: 500px;
  height: 600px;
  background: linear-gradient(rgba(200, 230, 201, 0.2), rgba(179, 229, 252, 0.2));
  margin: 0 auto;
}

.footer-img {
  transform: rotateZ(180deg);
  width: 100%;
  height: 100px;
}

footer .art-container {
  position: absolute;
  bottom: 0;
  z-index: 9;
}

.footer-content {
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-container ul {
  list-style: none;
}

.footer-container ul li {
  margin: 0.5rem 0;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-info h1 {
  font-size: 2rem;
  font-weight: 600;
}

.company-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.company-info p {
  font-size: 1rem;
}

.subscribe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}

.subscribe p {
  font-size: 1.25rem;
  font-weight: 600;
}

.subscribe-input {
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 39px;
  border: 1px solid #03acf2;
}

.subscribe-input input {
  border: none;
  background: transparent;
  border: none;
  outline: none;
  width: 250px;
}

.subscribe-input button {
  background: #03acf2;
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 39px;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
}

.subscribe-input button:hover {
  opacity: 0.8;
  cursor: pointer;
}

.copyright {
  position: relative;
  text-align: center;
  transform: translateY(-50%);
  top: 50%;
  z-index: 99;
}

.cookie-consent-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(rgba(3, 172, 242, 0.7), rgba(76, 175, 80, 0.7));
  backdrop-filter: blur(7px);
  color: white;
  padding: 10px 30px;
  z-index: 1000;
  display: block;
  border-radius: 5px;
  text-align: center;
}

.cookie-consent-container a {
  color: #ffcc00;
}

.cookie-consent-container h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3d3d3d;
}

.cookie-consent-container div {
  display: flex;
  justify-content: center;
}

.cookie-consent-container button {
  /* background-color: #f0ad4e; */
  border: 2px solid #f0ad4e;
  border-radius: 5px;
  background: transparent;
  outline: none;
  padding: 5px 15px;
  margin-left: 10px;
  color: white;
  cursor: pointer;
  margin-top: 10px;
}

.cookie-text {
  width: 50%;
  margin: 0 auto;
}

.cookie-consent-container button:nth-child(2) {
  background-color: #f0ad4e;
}

@media screen and (max-width: 1280px) {
  .content {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .summary p {
    backdrop-filter: blur(7px);
  }

  .more-info {
    width: 90%;
  }

  .info-item {
    padding: 0.75rem 2rem;
  }

  .product img {
    max-width: 400px;
  }

  .company-container img {
    height: 200px;
  }

  .cookie-text {
    width: 70%;
  }
}

@media screen and (max-width: 1024px) {
  .banner-img-container {
    background: none;
    margin: 0;
  }
  .content {
    display: flex;
    flex-direction: column;
  }

  .summary {
    text-align: center;
  }

  .info-item {
    border-radius: 39px;
  }

  .h-divider {
    margin: 1rem 0;
  }

  .cookie-text {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .banner-container {
    padding: 0 1rem;
  }

  .navbar {
    gap: 2rem;
  }

  .content {
    display: flex;
    flex-direction: column;
  }

  .summary {
    text-align: center;
  }

  .more-info {
    width: 100%;
  }

  .info-item {
    padding: 0.75rem 1rem;
  }

  .art-container {
    height: 120px;
  }

  .product img {
    max-width: 300px;
  }

  .company-container,
  .our-mission,
  .our-vision {
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .company-container img {
    height: 150px;
  }

  .our-mission,
  .our-vision {
    flex-direction: column;
  }

  .our-mission div,
  .our-vision div {
    margin: 0;
  }

  .our-mission img,
  .our-vision img {
    max-width: 150px;
    margin: 0 auto;
  }

  .seperator {
    margin: 3rem 0;
  }

  .footer-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .subscribe-input {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .subscribe-input input {
    width: 200px;
  }

  .subscribe-input button {
    padding: 0.5rem 1rem;
  }

  footer .art-container {
    position: absolute;
    bottom: 0;

    height: 80px;
  }

  .cookie-text {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .more-info {
    flex-direction: column;
    gap: 1rem;
  }

  .summary a {
    display: none;
  }

  .more-info {
    margin-bottom: 4rem;
  }

  .info-item {
    padding: 0.5rem 0.3rem;
    background: #03acf2;
    width: 40%;
    text-align: center;
    font-size: 0.75rem;
  }

  .info-item:hover {
    opacity: 0.8;
  }

  .info-item:nth-child(3),
  .info-item:nth-child(5) {
    display: none;
  }

  .info-item p {
    display: none;
  }

  .info-item h3 {
    color: #fff;
  }

  .h-divider {
    display: none;
  }

  .art-container {
    height: 80px;
  }

  .product img {
    max-width: 250px;
  }

  .product {
    gap: 1rem;
  }
}

@media screen and (max-width: 640px) {
  .banner-container {
    padding: 0 0.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .summary h1 {
    font-size: 2rem;
  }

  .summary p {
    font-size: 1rem;
  }

  .more-info {
    width: 100%;
  }

  .info-item {
    padding: 0.5rem 0.3rem;
    width: 50%;
  }

  .info-item h3 {
    font-size: 1rem;
  }

  .product img {
    max-width: 200px;
  }

  .company-container img {
    height: 100px;
  }

  .company-container h1 {
    font-size: 1.5rem;
  }

  .our-mission img,
  .our-vision img {
    max-width: 100px;
  }

  .subscribe p {
    font-size: 1rem;
  }

  .subscribe-input input {
    width: 150px;
  }

  .subscribe-input button {
    padding: 0.5rem 1rem;
  }

  .company-info {
    margin-bottom: 60px;
  }

  .footer-img {
    height: 50px;
  }

  footer .art-container {
    height: 60px;
  }
}

@media screen and (max-width: 560px) {
  .banner-container {
    padding: 0 0.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .summary h1 {
    font-size: 2rem;
  }

  .summary p {
    font-size: 1rem;
  }

  .more-info {
    width: 100%;
  }

  .info-item {
    padding: 0.5rem 0.3rem;
    width: 50%;
  }

  .info-item h3 {
    font-size: 1rem;
  }

  .product {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .product img {
    max-width: 200px;
  }

  .company-container img {
    height: 150px;
    min-width: 150px;
    margin: 0 auto;
  }

  .company-container h1 {
    font-size: 1.5rem;
  }

  .our-mission img,
  .our-vision img {
    max-width: 100px;
  }

  .subscribe p {
    font-size: 1rem;
  }

  .subscribe-input input {
    width: 150px;
  }

  .subscribe-input button {
    padding: 0.5rem 1rem;
  }

  .company-info {
    margin-bottom: 60px;
  }

  .footer-img {
    height: 50px;
  }

  footer .art-container {
    height: 60px;
  }
}

@media screen and (max-width: 480px) {
  .banner-container {
    padding: 0 0.5rem;
  }

  .auth a:nth-child(1) {
    display: none;
  }

  .logo {
    font-size: 1.5rem;
  }

  .summary h1 {
    font-size: 2rem;
  }

  .summary p {
    font-size: 1rem;
  }

  .more-info {
    width: 100%;
  }

  .info-item {
    padding: 0.5rem 0.3rem;
    width: 50%;
  }

  .info-item h3 {
    font-size: 1rem;
  }

  .product img {
    max-width: 200px;
  }

  .company-container img {
    height: 150px;
    min-width: 150px;
    margin: 0 auto;
  }

  .company-container h1 {
    font-size: 1.5rem;
  }

  .our-mission img,
  .our-vision img {
    max-width: 100px;
  }

  .subscribe p {
    font-size: 1rem;
  }

  .subscribe-input input {
    width: 150px;
  }

  .subscribe-input button {
    padding: 0.5rem 1rem;
  }

  .company-info {
    margin-bottom: 60px;
  }

  .footer-img {
    height: 50px;
  }

  footer .art-container {
    height: 60px;
  }
}

@media screen and (max-width: 420px) {
  footer {
    padding-bottom: 700px;
  }
}

@media screen and (max-width: 320px) {
  footer {
    padding-bottom: 800px;
  }
}
