@charset "UTF-8";
:root {
  --sitewidth: 1280px;
  --color-text: #ccc;
  --primary-font: "lora", serif;
  --secondary-font: "lato", sans-serif;
  --paragraph-size: 2.5rem;
  --primary-color: #ffffff;
  --secondary-color: #f4f6fc;
  --support-color:#003b24;
  --sectionspace: 100px;
  --radius: 30px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.fixy {
  overflow: hidden;
}

a.green-button {
  background-color: var(--support-color);
  padding-top: 14px;
  padding-bottom: 14px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--secondary-font);
  font-weight: 300;
  white-space: nowrap;
}
a.green-button i {
  color: var(--primary-color);
}
a.green-button:hover {
  background: #005c39;
}

.center {
  text-align: center;
}

main > section {
  padding-top: var(--sectionspace);
  padding-bottom: var(--sectionspace);
}
@media (max-width: 767px) {
  main > section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

header > .inner,
footer > .inner {
  max-width: var(--sitewidth);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}

.mobile-only {
  display: none;
  font-family: var(--primary-font);
  font-weight: bold;
  font-size: 50px;
  color: black;
  padding-top: 10px;
  letter-spacing: 2px;
  line-height: 60px;
}
@media (max-width: 767px) {
  .mobile-only {
    display: block;
    line-height: 35px;
  }
}

body {
  background-color: var(--primary-color);
  font-family: var(--secondary-font);
}

@media (max-width: 767px) {
  .two-columns {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1269px) {
  .get-in-touch .inner.two-columns {
    display: block;
  }
}

header {
  background-color: var(--secondary-color);
  padding-top: 20px;
  padding-bottom: 20px;
  position: sticky;
  top: 0;
  z-index: 9999;
}
header .inner {
  display: flex;
  justify-content: space-between;
  font-family: var(--primary-font);
  font-size: 25px;
  font-weight: 200;
  align-items: center;
}
header .inner .logo {
  width: 350px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  header .inner .logo {
    width: 280px;
  }
}
header .inner .mobile-trigger {
  display: none;
}
@media (max-width: 767px) {
  header .inner .mobile-trigger {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  header .inner .mobile-trigger {
    display: block;
  }
}
header .inner .mobile-trigger .fa-bars {
  font-size: 50px;
  color: var(--support-color);
  font-weight: 300;
}
@media (max-width: 767px) {
  header .inner .main-nav-wrapper {
    position: fixed;
    top: 100px;
    right: -100%;
    bottom: 0;
    width: 100%;
    background-color: var(--support-color);
    transition: all 0.25s ease;
  }
  header .inner .main-nav-wrapper.active {
    right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  header .inner .main-nav-wrapper {
    position: fixed;
    top: 129px;
    right: -300px;
    bottom: 0;
    width: 300px;
    background-color: var(--support-color);
    transition: all 0.25s ease;
  }
  header .inner .main-nav-wrapper.active {
    right: 0;
  }
}
header .inner .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding-right: 25px;
  margin-left: 50px;
}
header .inner .main-nav a {
  text-decoration: none;
  color: black;
}
header .inner .main-nav a.green-button {
  background-color: var(--support-color);
  padding-top: 14px;
  padding-bottom: 14px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--secondary-font);
  font-weight: 300;
  white-space: nowrap;
}
header .inner .main-nav a.green-button i {
  color: var(--primary-color);
}
header .inner .main-nav a.green-button:hover {
  background: #005c39;
}
@media (max-width: 767px) {
  header .inner .main-nav {
    display: block;
  }
  header .inner .main-nav a {
    color: var(--secondary-color);
    display: block;
    padding: 30px;
  }
  header .inner .main-nav a.green-button {
    background-color: var(--secondary-color);
    color: var(--support-color);
    font-weight: 300;
  }
  header .inner .main-nav a.green-button i {
    color: var(--support-color);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  header .inner .main-nav {
    display: block;
  }
  header .inner .main-nav a {
    color: white;
    display: block;
    padding: 30px;
  }
  header .inner .main-nav a.green-button {
    background-color: var(--secondary-color);
    color: var(--support-color);
    font-weight: 300;
  }
  header .inner .main-nav a.green-button i {
    color: var(--support-color);
  }
}

.hero-center {
  width: 100%;
  aspect-ratio: 1.8181818182;
}
@supports not (aspect-ratio: 1.8181818182) {
  .hero-center::before {
    content: "";
    float: left;
    padding-top: calc(11 / 20 * 100%);
  }
  .hero-center::after {
    content: "";
    display: block;
    clear: both;
  }
}
.hero-center {
  text-align: center;
  font-family: var(--secondary-font);
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.hero-center::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Adjust opacity here */
  z-index: 1;
}
.hero-center .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  z-index: 10;
}
.hero-center h1 {
  color: var(--secondary-color);
  font-size: clamp(1.5rem, -1.167rem + 10.833vw, 7.5rem);
  letter-spacing: 3px;
}
.hero-center p {
  color: var(--secondary-color);
  font-size: clamp(1rem, -3.167rem + 10.833vw, 4.5rem);
}

.about .mobile-only > h2 {
  font-family: var(--primary-font);
  font-weight: bold;
  font-size: 50px;
  color: black;
  padding-top: 10px;
  letter-spacing: 2px;
  line-height: 60px;
}
.about .mobile-only > h3 {
  font-family: var(--primary-font);
  font-size: 25px;
  color: black;
  font-weight: 100;
}
.about .inner {
  max-width: var(--sitewidth);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-evenly;
  column-gap: 40px;
  row-gap: 40px;
  min-height: 250px;
  height: auto;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .about .inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about .about-me {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .about .about-me {
    order: 2;
  }
}
.about .about-me .desktop-only h2 {
  font-family: var(--primary-font);
  font-weight: bold;
  font-size: 50px;
  color: black;
  padding-top: 10px;
  letter-spacing: 2px;
  line-height: 60px;
}
.about .about-me .desktop-only h3 {
  font-family: var(--primary-font);
  font-size: 30px;
  color: black;
  font-weight: 100;
}
.about .about-me p {
  padding-top: 40px;
  font-family: var(--secondary-font);
  font-size: clamp(1.25rem, 4vw, 1.375rem);
  line-height: 32px;
}
@media (max-width: 767px) {
  .about .about-me p {
    padding-top: 35px;
    line-height: 35px;
  }
}

.profile-pic img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 30px 45px 25px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .profile-pic img {
    order: 1;
    box-shadow: 10px 30px 20px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  .profile-pic img {
    order: 1;
    box-shadow: 10px 30px 20px rgba(0, 0, 0, 0.5);
  }
}

.tech {
  background-color: var(--secondary-color);
}
.tech > .inner {
  max-width: var(--sitewidth);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
.tech > .inner > h2 {
  font-family: var(--primary-font);
  font-weight: bold;
  font-size: 50px;
  color: black;
  padding-top: 10px;
  letter-spacing: 2px;
  line-height: 60px;
  padding-bottom: 80px;
}
.tech .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 60px;
}
.tech .list > span {
  font-size: 25px;
  font-family: var(--secondary-font);
  font-weight: 300;
}
.tech .list > span:not(:last-child)::after {
  content: "•";
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .tech .list > span:not(:last-child)::after {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.projects > .inner {
  max-width: var(--sitewidth);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.projects > .inner > h2 {
  font-family: var(--primary-font);
  font-weight: bold;
  font-size: 50px;
  color: black;
  padding-top: 10px;
  letter-spacing: 2px;
  line-height: 60px;
  text-align: center;
  padding-bottom: 80px;
}
.projects > .inner > .cards-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .projects > .inner > .cards-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  .projects > .inner > .cards-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.projects > .inner > .cards-inner > .card {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  .projects > .inner > .cards-inner > .card {
    width: 100%;
  }
}

.card {
  background-image: url(/jessi_webpage.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 10px;
  padding: 2em 1.2em;
  text-decoration: none;
  z-index: 0;
  font-family: var(--secondary-font);
}
.card .go-arrow i {
  color: white;
  position: absolute;
  top: 7px;
  right: 8px;
  font-size: 25px;
}
.card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -5px;
  right: -17px;
  background: linear-gradient(135deg, #003b24, #003b24);
  height: 60px;
  width: 70px;
  border-radius: 0 44px 60px 145px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out 0.5s;
}
.card:hover .content-card {
  opacity: 1;
  transition: all 0.5s ease-out 0.5s;
}
.card:hover:before {
  transform: scale(50);
  transition: transform 0.2s ease-out;
}
.card:hover .small-desc {
  transition: all 0.5s ease-out;
  color: #ffffff;
}
.card:hover .card-title {
  transition: all 0.5s ease-out;
  color: #ffffff;
}
.card:hover .fa-solid {
  transform: rotate(-45deg);
  transition: all 0.5s ease-out;
}
.card .content-card {
  height: 100%;
  width: 100%;
  border-radius: 15px;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease-out;
}
.card .content-card .card-title {
  font-size: 32px;
  line-height: normal;
  font-weight: 500;
}
.card .content-card .small-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  padding-top: 10px;
}

.card-alt {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.card-alt .go-arrow i {
  color: white;
  position: absolute;
  top: -5px;
  right: -15px;
  font-size: 25px;
  background-color: var(--support-color);
  z-index: 1;
  padding: 15px 0px 10px 25px;
  height: 60px;
  width: 70px;
  border-radius: 0 44px 60px 145px;
}
@media (max-width: 767px) {
  .card-alt .go-arrow i {
    display: none;
  }
}
@media (hover: hover) {
  .card-alt:hover .fa-solid {
    transform: rotate(-45deg);
    transition: all 0.5s ease-out;
  }
  .card-alt:hover .fa-solid:before {
    transform: scale(50);
    transition: transform 0.2s ease-out;
  }
  .card-alt:hover .text {
    top: 0;
    left: 0;
  }
  .card-alt:hover .text .inner {
    opacity: 1;
    visibility: visible;
  }
}
.card-alt .image {
  aspect-ratio: 1.3333333333;
}
@supports not (aspect-ratio: 1.3333333333) {
  .card-alt .image::before {
    content: "";
    float: left;
    padding-top: calc(3 / 4 * 100%);
  }
  .card-alt .image::after {
    content: "";
    display: block;
    clear: both;
  }
}
.card-alt .image {
  line-height: 0;
}
.card-alt .image img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-alt .text {
  position: absolute;
  height: 100%;
  width: 100%;
  top: -100%;
  left: 100%;
  transition: all 0.25s ease;
  background-color: var(--support-color);
  color: #fff;
}
@media (max-width: 767px) {
  .card-alt .text {
    position: relative;
    top: 0;
    left: 0;
  }
}
.card-alt .text .inner {
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease 0.5s;
}
@media (max-width: 767px) {
  .card-alt .text .inner {
    opacity: 1;
    visibility: visible;
  }
}
.card-alt .text .inner .title {
  font-size: 32px;
  line-height: normal;
  font-weight: 500;
}
.card-alt .text .inner .copy {
  font-size: 1rem;
  font-weight: 400;
  line-height: 25px;
  padding-top: 10px;
}

.services {
  background-color: var(--secondary-color);
}
.services > .inner {
  max-width: var(--sitewidth);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  column-gap: 40px;
  min-height: 250px;
  height: auto;
  padding-bottom: 20px;
  padding-top: 20px;
}
.services > .inner .subtitle h3 {
  font-family: var(--secondary-font);
  font-size: 30px;
  color: black;
  font-weight: 300;
  text-align: center;
}
.services > .inner .subtitle h2 {
  font-family: var(--primary-font);
  font-weight: bold;
  font-size: 50px;
  color: black;
  padding-top: 10px;
  letter-spacing: 2px;
  line-height: 60px;
  font-size: 50px;
  text-align: center;
}
.services > .inner .services-list {
  font-family: var(--secondary-font);
  font-size: 22px;
  line-height: 32px;
  align-items: left;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 767px) {
  .services > .inner .services-list {
    padding-left: 45px;
  }
}

.get-in-touch > .inner {
  max-width: var(--sitewidth);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
  min-height: 250px;
  height: auto;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  .get-in-touch > .inner {
    display: block;
    padding: 30px;
  }
}
.get-in-touch > .inner .subtitle {
  flex: 1;
}
.get-in-touch > .inner .subtitle h3 {
  font-family: var(--secondary-font);
  font-size: 30px;
  color: black;
  font-weight: 300;
  text-align: center;
}
.get-in-touch > .inner .subtitle h2 {
  font-family: var(--primary-font);
  font-weight: bold;
  font-size: 50px;
  color: black;
  padding-top: 10px;
  letter-spacing: 2px;
  line-height: 60px;
  font-size: 50px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  .get-in-touch > .inner .subtitle h2 {
    padding-bottom: 30px;
  }
}
.get-in-touch > .inner .form-container {
  flex: 1;
  background-color: var(--secondary-color);
  padding: 50px;
  border-radius: 30px;
}
.get-in-touch > .inner .form-container h2 {
  margin-bottom: 5px;
  font-size: 22px;
  font-family: var(--primary-font);
  letter-spacing: 2px;
}
.get-in-touch > .inner .form-container .form-group {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .get-in-touch > .inner .form-container .form-group {
    padding-bottom: 30px;
  }
}
.get-in-touch > .inner .form-container label {
  font-family: var(--secondary-font);
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  letter-spacing: 2px;
}
.get-in-touch > .inner .form-container input,
.get-in-touch > .inner .form-container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #888;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .get-in-touch > .inner .form-container input,
  .get-in-touch > .inner .form-container textarea {
    font-size: 25px;
  }
}
.get-in-touch > .inner .form-container textarea {
  resize: none;
}
.get-in-touch > .inner .form-container button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border: none;
  border-radius: 999px;
  background: #003b24;
  color: white;
  font-size: 18px;
  cursor: pointer;
}
.get-in-touch > .inner .form-container button:hover {
  background: #005c39;
}

footer {
  background-color: var(--support-color);
}
footer > .inner {
  display: flex;
  justify-content: space-between;
  font-family: var(--secondary-font);
  font-size: 25px;
  font-weight: 300;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
footer > .inner .logo {
  width: 280px;
  height: auto;
  flex-shrink: 0;
}
footer > .inner .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  footer > .inner .info {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    line-height: 34px;
    letter-spacing: 3px;
  }
}
footer > .inner .info a {
  text-decoration: none;
  color: var(--primary-color);
}
@media (max-width: 767px) {
  footer > .inner .info a {
    display: block;
  }
}
footer > .inner .info > a:not(:last-child)::after {
  content: "•";
  margin-left: 35px;
  margin-right: 35px;
}
@media (max-width: 767px) {
  footer > .inner .info > a:not(:last-child)::after {
    display: none;
  }
}

.logos {
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
}
.logos .logo-slide {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}
@media (max-width: 767px) {
  .logos .logo-slide {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  .logos .logo-slide {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
.logos .logo-slide > span {
  font-size: 105px;
}
@media (max-width: 767px) {
  .logos .logo-slide > span {
    font-size: 80px;
  }
}
.logos .logo-slide .slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos .logo-slide .slide > i {
  width: auto;
  object-fit: contain;
  letter-spacing: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .logos .logo-slide .slide > i {
    padding: 8px;
    letter-spacing: 0;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logos::before,
.logos::after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: " ";
  z-index: 2;
}

.logos::before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #f4f6fc);
}
@media (max-width: 767px) {
  .logos::before {
    left: -100px;
    background: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  .logos::before {
    left: -100px;
    background: none;
  }
}

.logos::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #f4f6fc);
}
@media (max-width: 767px) {
  .logos::after {
    right: -100px;
    background: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1269px) {
  .logos::after {
    left: -100px;
    background: none;
  }
}

/*# sourceMappingURL=style.css.map */
