@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
:root {
  --text-font: "Titillium Web", sans-serif;
  --logo-font: "Righteous", cursive;
  --darkblue: #b6cef7;
  --lightblue: #bbeafc;
  --orange: #f9d4ae;
  --red: #fbc2c2;
  --purple: #d8cbf4;
  --neongreen: #a7fcbd;
  --green: #92ded0;
  --lightgreen: #d8f994;
  --yellow: #fcf77b;
}

head, body {
  margin: 0;
  padding: 0;
  font-family: var(--text-font);
  overflow-x: hidden;
}

body.text {
  padding: 40px max((100vw - 1400px) / 2, 100px);
}
@media screen and (max-width: 600px) {
  body.text {
    padding: 20px;
  }
}
body.text span, body.text a, body.text p {
  font-size: 28px;
}

section {
  width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  padding: 100px max((100vw - 1400px) / 2, 100px);
}
section#home {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12vh;
}
section#home .arrow {
  width: 52px;
  height: 52px;
  border-bottom: 20px solid var(--neongreen);
  border-left: 20px solid var(--neongreen);
  transform: rotate(-45deg);
  align-self: center;
  cursor: pointer;
}
section#USP {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#contact {
  background-color: var(--neongreen);
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: column-reverse;
  justify-content: flex-end;
  text-align: center;
}
@media screen and (min-width: 1165px) {
  section#contact {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
section#contact img.round {
  border-radius: 1000px;
  object-fit: cover;
  width: 40vw;
  height: 40vw;
  max-width: 700px;
  max-height: 700px;
}
section#contact .right {
  display: flex;
  justify-content: center;
  align-items: center;
}
section#contact .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer {
  margin-top: 15vh;
  display: flex;
  gap: 40px;
  font-size: 24px;
  justify-content: center;
}
@media screen and (min-width: 1165px) {
  .footer {
    justify-content: start;
  }
}

h1 {
  margin: 20px 0;
  font-size: 80px;
  font-weight: bold;
  max-width: 100vw;
  word-break: break-word;
  hyphens: auto;
}
@media screen and (max-width: 665px) {
  h1 {
    font-size: 50px;
  }
}

h2 {
  margin: 10px 0;
  font-size: 50px;
  font-weight: 500;
}
@media screen and (max-width: 665px) {
  h2 {
    font-size: 30px;
  }
}

a {
  color: black;
  text-decoration: none;
  font-size: 28px;
}

#logo {
  background-color: var(--neongreen);
  font-family: var(--logo-font);
  position: relative;
  display: compact;
  font-size: 100px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #logo {
    font-size: 50px;
    margin-bottom: 12px;
  }
}
#logo:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -10px;
  right: 10px;
  border-left: 12px solid var(--neongreen);
  border-right: 6px solid transparent;
  border-top: 6px solid var(--neongreen);
  border-bottom: 10px solid transparent;
}

.heading.black #logo {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 12px;
  min-width: 200px;
}
.heading.black .subheading {
  color: #000;
  text-shadow: unset;
  font-size: 15px;
}

.heading {
  align-self: start;
}

.subheading {
  color: #fff;
  text-transform: uppercase;
  font-size: 38px;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .subheading {
    font-size: 18px;
  }
}

.usp-items-text, .usp-items-icons {
  display: grid;
  padding: 60px 0;
  grid-row-gap: 40px;
}

.usp-items-text {
  border-bottom: 6px dotted black;
  grid-template-columns: 1fr;
}
.usp-items-text .usp-item-text:last-child {
  grid-column: unset;
}
@media screen and (min-width: 800px) {
  .usp-items-text {
    grid-template-columns: 1fr 1fr;
  }
  .usp-items-text .usp-item-text:last-child {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1160px) {
  .usp-items-text {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .usp-items-text .usp-item-text:last-child {
    grid-column: unset;
  }
}

.usp-items-icons {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 1100px) {
  .usp-items-icons {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .usp-items-icons .usp-item-icon:nth-child(5) {
    grid-column: 2/3;
  }
  .usp-items-icons .usp-item-icon:nth-child(6) {
    grid-column: 3/4;
  }
}
@media screen and (max-width: 900px) {
  .usp-items-icons {
    grid-template-columns: 1fr 1fr;
  }
  .usp-items-icons .usp-item-icon:nth-child(5),
.usp-items-icons .usp-item-icon:nth-child(6) {
    grid-column: unset;
  }
}
@media screen and (max-width: 500px) {
  .usp-items-icons {
    grid-template-columns: 1fr;
  }
}

.usp-item-text, .usp-item-icon {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.usp-item-text h3, .usp-item-icon h3 {
  margin: 0;
}

.usp-item-text h3 {
  font-size: 72px;
  line-height: 80px;
}
@media screen and (max-width: 500px) {
  .usp-item-text h3 {
    font-size: 40px;
  }
}
.usp-item-text span {
  font-size: 36px;
}

.usp-item-icon {
  gap: 24px;
}
.usp-item-icon h3 {
  font-size: 60px;
  line-height: 60px;
}
.usp-item-icon span {
  font-size: 28px;
  line-height: 34px;
}

.c2 {
  font-weight: 700;
}

.back {
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-top: 100px;
}
.back:before {
  content: " ";
  width: 24px;
  height: 24px;
  border-bottom: 10px solid var(--neongreen);
  border-left: 10px solid var(--neongreen);
  transform: rotate(45deg);
  align-self: center;
  cursor: pointer;
}
.back span {
  margin-left: 20px;
  border-bottom: 1px solid #000;
}

.reload {
  position: absolute;
  top: 40px;
  right: 40px;
}

hr {
  border: transparent;
  border-bottom: 6px dotted black;
  max-width: 400px;
  margin: 40px 0;
}