@import url(https://fonts.cdnfonts.com/css/tw-cen-mt-std);
/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  /* Footer */
}
body .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  /* Logo */
}
body .container .left-side,
body .container .right-side {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #d3d3d3;
}
body .container .left-side {
  background-color: #F39200;
  padding-top: 7rem;
}
body .container .left-side .content {
  display: flex;
  align-items: center;
}
body .container .left-side .content .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}
body .container .left-side .content .image-container .product-image {
  width: 300px;
}
body .container .left-side .content .text-container {
  flex: 1;
  text-align: right;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  margin-left: 25rem;
}
body .container .left-side .content .text-container h1 {
  font-size: 3.5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Tw Cen MT Std", sans-serif;
  margin: 0;
}
body .container .left-side .content .text-container h1 span {
  font-size: 4.5rem;
  display: block;
}
body .container .left-side .content .text-container p {
  margin-top: 1rem;
}
body .container .left-side .content .text-container .button {
  margin-top: 1rem;
  display: inline-block;
  background-color: #60C430;
  color: #d3d3d3;
  border: none;
  padding: 15px 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
}
body .container .left-side .content .text-container .button:hover {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
body .container .right-side {
  background-color: #60C430;
  padding-top: 7rem;
}
body .container .right-side .content {
  display: flex;
  align-items: center;
}
body .container .right-side .content .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}
body .container .right-side .content .text-container {
  flex: 1;
  text-align: left;
  padding-left: 1.5rem;
  margin-left: 1.5rem;
  margin-right: 18rem;
}
body .container .right-side .content .text-container h1 {
  width: 100%;
  font-size: 3.5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  margin: 0;
}
body .container .right-side .content .text-container h1 span {
  font-size: 4.5rem;
  display: block;
}
body .container .right-side .content .text-container p {
  margin-top: 1rem;
}
body .container .right-side .content .text-container .button {
  margin-top: 1rem;
  display: inline-block;
  background-color: #FFB400;
  color: #d3d3d3;
  border: none;
  padding: 15px 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 1rem;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
}
body .container .right-side .content .text-container .button:hover {
  background-color: #FFB400;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
body .container .logo {
  display: block;
  max-height: 20rem;
  padding: 1rem;
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
body .container .logo .custom-logo-link {
  display: block;
  margin: 0 auto;
  max-width: 20rem;
  background-color: #000;
  border-radius: 999em;
}
body .container .logo .custom-logo-link img {
  width: 100%;
  height: 100%;
}
body .container .logo .custom-logo-link:focus {
  box-shadow: 0 0 0 0.25rem hsla(0, 0%, 100%, 0.5);
}
body footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  background-color: #898989;
}
body .social-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}
body .captcha {
  font-size: 0.8rem;
  color: #fff;
}

/* Responsive Design for Laptop Screens */
@media (min-width: 1024px) and (max-width: 1440px) {
  body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    /* Footer */
  }
  body .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    /* Logo */
  }
  body .container .left-side,
  body .container .right-side {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #d3d3d3;
  }
  body .container .left-side {
    background-color: #F39200;
    padding-top: 9rem;
  }
  body .container .left-side .content {
    display: flex;
    align-items: center;
  }
  body .container .left-side .content .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  body .container .left-side .content .image-container .product-image {
    width: 300px;
  }
  body .container .left-side .content .text-container {
    flex: 1;
    text-align: right;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    margin-left: 13rem;
  }
  body .container .left-side .content .text-container h1 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "DM Sans", sans-serif;
    margin: 0;
  }
  body .container .left-side .content .text-container h1 span {
    font-size: 3rem;
    display: block;
  }
  body .container .left-side .content .text-container p {
    margin-top: 1rem;
  }
  body .container .left-side .content .text-container .button {
    margin-top: 1rem;
    display: inline-block;
    background-color: #60C430;
    color: #d3d3d3;
    border: none;
    padding: 15px 25px;
    font-family: "DM Sans", sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  }
  body .container .left-side .content .text-container .button:hover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  body .container .right-side {
    background-color: #60C430;
    padding-top: 10rem;
  }
  body .container .right-side .content {
    display: flex;
    align-items: center;
  }
  body .container .right-side .content .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  body .container .right-side .content .image-container .product-image {
    width: 500px;
  }
  body .container .right-side .content .text-container {
    flex: 1;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    margin-right: 9rem;
  }
  body .container .right-side .content .text-container h1 {
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "DM Sans", sans-serif;
    margin: 0;
  }
  body .container .right-side .content .text-container h1 span {
    font-size: 3rem;
    display: block;
  }
  body .container .right-side .content .text-container p {
    margin-top: 1rem;
  }
  body .container .right-side .content .text-container .button {
    margin-top: 1rem;
    display: inline-block;
    background-color: #FFB400;
    color: #d3d3d3;
    border: none;
    padding: 15px 25px;
    font-family: "DM Sans", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  }
  body .container .right-side .content .text-container .button:hover {
    background-color: #FFB400;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  body .container .logo {
    display: block;
    max-height: 20rem;
    padding: 1rem;
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  body .container .logo .custom-logo-link {
    display: block;
    margin: 0 auto;
    max-width: 20rem;
    background-color: #000;
    border-radius: 999em;
  }
  body .container .logo .custom-logo-link img {
    width: 100%;
    height: 100%;
  }
  body .container .logo .custom-logo-link:focus {
    box-shadow: 0 0 0 0.25rem hsla(0, 0%, 100%, 0.5);
  }
  body footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #898989;
  }
  body .social-icons a {
    margin: 0 10px;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
  }
  body .captcha {
    font-size: 0.8rem;
    color: #fff;
  }
}
/* Responsive Design for Tablets (iPads and similar devices) */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    flex-direction: column;
    height: auto;
  }
  .container .left-side,
  .container .right-side {
    padding: 10px 4vw;
    flex: none;
    text-align: center;
  }
  .container .left-side .text-container,
  .container .right-side .text-container {
    margin: 0;
    padding: 1rem;
    text-align: center;
  }
  .container .left-side .text-container h1,
  .container .right-side .text-container h1 {
    font-size: 2rem;
  }
  .container .left-side .text-container p,
  .container .right-side .text-container p {
    font-size: 1rem;
  }
  .container .left-side .text-container .button,
  .container .right-side .text-container .button {
    padding: 8px 18px;
    font-size: 1.2rem;
  }
  .container .logo {
    top: 1rem;
    max-width: 12rem;
  }
  footer {
    padding: 5px;
  }
}
/* Responsive Design for Small Screens (Android, iPhone, and other smaller screens) */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 5px;
    height: 100vh;
    width: 100%;
    /* Logo */
  }
  .container .left-side,
  .container .right-side {
    width: 100%;
  }
  .container .right-side {
    padding-top: 12rem !important;
    padding-bottom: 6rem !important;
    padding-right: 10px;
    width: 100% !important;
  }
  .container .right-side .content {
    align-items: center !important;
  }
  .container .right-side .content .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100% !important;
    margin-right: 2rem;
    height: 40vh;
  }
  .container .right-side .content .image-container .product-image {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 60% !important;
  }
  .container .right-side .content .text-container {
    flex: 1;
    text-align: left;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .container .right-side .content .text-container h1 {
    width: 100%;
    font-size: 1rem !important;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "DM Sans", sans-serif;
    margin: 0;
  }
  .container .right-side .content .text-container h1 span {
    font-size: 2rem !important;
    display: block;
  }
  .container .right-side .content .text-container p {
    margin-top: 1rem;
  }
  .container .right-side .content .text-container .button {
    margin-top: 1rem;
    font-size: 1rem !important;
  }
  .container .left-side {
    padding-top: 9rem !important;
    padding-bottom: 10rem !important;
    padding-left: 10px;
  }
  .container .left-side .content {
    align-items: center !important;
  }
  .container .left-side .content .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 2rem !important;
  }
  .container .left-side .content .image-container .product-image {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    height: 60% !important;
  }
  .container .left-side .content .text-container {
    flex: 1;
    text-align: left;
    padding-left: 10px !important;
    margin-left: 130px !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .container .left-side .content .text-container h1 {
    width: 100%;
    font-size: 20px !important;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "DM Sans", sans-serif;
    margin: 0;
  }
  .container .left-side .content .text-container h1 span {
    font-size: 25px !important;
    display: block;
  }
  .container .left-side .content .text-container p {
    margin-top: 1rem;
  }
  .container .left-side .content .text-container .button {
    margin-top: 1rem;
    font-size: 20px !important;
  }
  .container .logo {
    display: block;
    max-height: 20rem;
    padding: 1rem;
    position: absolute;
    top: 0 !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin-bottom: 20rem !important;
  }
  .container .logo .custom-logo-link {
    display: block;
    margin: 0 auto;
    max-width: 20rem;
    background-color: #000;
    border-radius: 999em;
  }
  .container .logo .custom-logo-link img {
    width: 100%;
    height: 100%;
  }
  .container .logo .custom-logo-link:focus {
    box-shadow: 0 0 0 0.25rem hsla(0, 0%, 100%, 0.5);
  }
  footer {
    flex-direction: column;
    padding: 5px 10px;
    font-size: 0.8rem;
    width: 100%;
  }
}
/* Small screen adjustments */
@media (max-width: 600px) {
  .container {
    flex-direction: column-reverse;
    /* Content flows from right to left */
    align-items: center;
    width: 100%;
  }
  footer {
    flex-direction: column;
    padding: 5px 10px;
    font-size: 0.8rem;
    width: 100%;
  }
}
