body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 20px;
  color: #f0f0e6;
  background-color: #ee6633;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}

a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

h5 {
  font-size: 1em;
}

.page {
  flex: 1;
  display: flex;
  align-items: center;
}

.d-flex {
  display: flex;
}

.gap-5 {
  gap: 5%;
}

.col {
  position: relative;
}

.left-col {
  width: 40%;
}

.page .left-col::after {
  content: "";
  display: block;
  height: 100%;
  width: 0px;
  border-left: 1px solid #f0f0e6;
  opacity: 0.7;
  position: absolute;
  top: 0;
  right: 7.45%;
}

.right-col {
  width: 60%;
}

.container {
  width: 90%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 50px 0 0;
}

.logo {
  width: 69.31%;
}

.text {
  max-width: 390px;
}

.text h5:last-of-type {
  margin-bottom: 0;
  margin-top: 2.5em;
}

.link {
  position: relative;
  padding-right: 30px;
  transition: padding 0.25s ease-in-out;
  display: inline-block;
}

.link::after {
  content: "";
  width: 24px;
  position: absolute;
  display: block;
  top: -5px;
  bottom: -5px;
  right: 0;
  background: url(./right.png) no-repeat center;
  background-size: contain;
}

.link:hover {
  padding-right: 35px;
}

footer {
  background-color: #ee6633;
  padding: 20px 0 80px;
  font-size: 13px;
  letter-spacing: 0.52px;
}

.cpr {
  position: fixed; /* Fixes the element at the right bottom of the screen */
  right: 0; /* Aligns the element to the right edge */
  bottom: 0; /* Aligns the element to the bottom edge */
  writing-mode: vertical-rl; /* Makes the text flow vertically from top to bottom */
  transform: rotate(180deg); /* Rotates the text for better readability */
  padding: 80px 10px; /* Adds some spacing around the text */
  font-size: 9px; /* Adjust font size as needed */
  letter-spacing: 0.45px;
  line-height: 24px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}

@media screen and (max-width: 767px) {
  .cpr {
    display: none;
  }
}

@media screen and (max-width: 574px) {
  .page {
    align-items: start;
  }
  .page,footer{
    padding-left: 63px;
    padding-right: 63px;
  }
  .container{
    width: 100%;
  }
  .page .container {
    padding-top: 119px;
  }
  .d-flex {
    flex-direction: column;
  }
  .col{
    width: 100%;
  }
  .logo{
    width: 100%;
    margin-bottom: 15vh;
  }
  .page .left-col::after {
    content: none;
  }
  .text h5:last-of-type {
    margin-top: 1.5em;
  }
}
