@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Montserrat:wght@300;400;500;600;700&display=swap");
:root {
  /*font sizes */
  --fs-300: 0.75rem;
  --fs-400: 0.875rem;
  --fs-500: 1rem;
  --fs-600: 1.25rem;
  --fs-700: 2rem;
}
@media (min-width: 950px) {
  :root {
    --fs-300: 1rem;
    --fs-400: 1.25rem;
    --fs-500: 1.25rem;
    --fs-600: clamp(1.25rem, 1vw + 1rem, 2rem);
    --fs-700: 4rem;
  }
}

/* HARD RESET */
html {
  scroll-behavior: smooth;
  width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
p {
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-300);
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
label,
select {
  font: inherit;
}

ul {
  padding: 0;
}
ul li {
  list-style-type: none;
}

a {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.skip-cta {
  position: absolute;
  z-index: 15;
  top: 0;
  background-color: hsl(201, 35%, 25%);
  color: white;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.5px;
  padding: 0.5em 1em;
  margin-inline: auto;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in;
}
.skip-cta:focus {
  transform: translateY(0);
}

/* UTILITY CLASSES */
.flex {
  display: flex;
}

.grid {
  display: grid;
}

.section-wrapper {
  margin-top: 5em;
}
@media (min-width: 1000px) {
  .section-wrapper {
    margin-top: 10em;
  }
}

.a-link {
  color: hsl(163, 66%, 40%);
  transition: 0.3s;
}
.a-link:hover, .a-link:focus {
  font-weight: bold;
}

.btn {
  padding: 0.5em 1.5em;
  border: 0;
  font-weight: bold;
  min-width: 120px;
  text-decoration: none;
}
.btn.btn-gradient {
  background: linear-gradient(180deg, #23AA84, #86D780);
  color: white;
  border-radius: 2em;
  transition: 1s !important;
}
.btn.btn-gradient:hover, .btn.btn-gradient:focus {
  background: hsl(201, 35%, 25%);
}

.btn-white {
  border: 1px solid hsl(0, 0%, 100%);
  color: white;
  text-decoration: none;
  padding: 0.5em 1.5em;
  transition: 0.3s;
}
.btn-white:hover, .btn-white:focus {
  background-color: hsl(163, 66%, 40%);
}

.flow > *:where(:not(:first-child)) {
  margin-top: 0.75rem;
}
@media (min-width: 950px) {
  .flow > *:where(:not(:first-child)) {
    margin-top: 1.5rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* colors */
.text-accent {
  color: hsl(163, 66%, 40%);
}

.text-gray {
  color: hsl(0, 0%, 35%);
}

.text-white {
  color: hsl(0, 0%, 100%);
}

/* typography */
.ff-mont {
  font-family: "Montserrat", sans-serif;
}

.ff-inter {
  font-family: "Inter", sans-serif;
}

.letter-spacing {
  letter-spacing: 1.5px;
}

.line-height {
  line-height: 1.5;
}

.line-height-extra {
  line-height: 1.8;
}

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: bold;
}

.light {
  font-weight: 300;
}

.italic {
  font-style: italic;
}

.a-none {
  text-decoration: none;
  color: black;
}

.fs-300 {
  font-size: var(--fs-300);
}

.fs-400 {
  font-size: var(--fs-400);
}

.fs-500 {
  font-size: var(--fs-500);
}

.fs-600 {
  font-size: var(--fs-600);
}

.fs-700 {
  font-size: var(--fs-700);
}

/* COMPONENETS */
.navbar {
  position: fixed;
  z-index: 10;
  background-color: hsl(0, 0%, 100%);
  width: 100%;
  padding: 1em;
  justify-content: space-between;
  top: 0;
}
@media (min-width: 800px) {
  .navbar {
    height: 7em;
    padding: 2em;
  }
}
@media (min-width: 950px) {
  .navbar {
    padding-block: 2em;
    padding-inline: clamp(2em, 5vw, 5em);
  }
}

.mobile-navigation-btn {
  display: block;
  position: fixed;
  z-index: 3;
  background-image: url(../image/icons/icon-hamburger.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  right: 1em;
  top: 0.75em;
  border: 0;
  cursor: pointer;
  aspect-ratio: 1;
}
@media (min-width: 800px) {
  .mobile-navigation-btn {
    display: none;
  }
}

.change-bg {
  background-image: url(../image/icons/icon-close.svg);
}

.primary-navigation {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100vh;
  top: 3rem;
  left: 0;
  margin: 0;
  background-color: hsl(201, 35%, 25%);
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s;
  overflow: hidden;
}
.primary-navigation ul {
  flex-direction: column;
  justify-content: center;
  margin-block: 5em;
}
.primary-navigation ul li {
  margin: 2em auto;
}
.primary-navigation ul li a {
  font-weight: bold;
  color: white;
  padding-block: 0.5em;
  transition: 0.3s;
}
.primary-navigation ul li a:hover, .primary-navigation ul li a:focus {
  border-bottom: 2px solid hsl(0, 0%, 100%);
}
.primary-navigation ul li a.active {
  color: hsl(163, 66%, 40%);
  border-bottom: 2px solid hsl(163, 66%, 40%);
}
.primary-navigation ul li a.cta-active {
  color: hsl(163, 66%, 40%);
  border: 1px solid hsl(163, 66%, 40%);
}
.primary-navigation ul li a.cta-active:hover, .primary-navigation ul li a.cta-active:focus {
  background-color: hsl(201, 35%, 25%);
}
.primary-navigation .mobile-navigation-circle {
  position: fixed;
  bottom: 0;
  right: 0;
}
@media (min-width: 800px) {
  .primary-navigation {
    position: unset;
    height: auto;
    width: auto;
    background-color: transparent;
    top: unset;
    opacity: 1;
    transform: unset;
  }
  .primary-navigation ul {
    flex-direction: row;
    justify-content: space-between;
    margin-block: 0;
  }
  .primary-navigation ul li {
    margin: 0.5em 0 0 1.5em;
  }
  .primary-navigation ul li a {
    color: black;
    font-weight: normal;
  }
  .primary-navigation ul li a:hover, .primary-navigation ul li a:focus {
    border-bottom: 2px solid hsl(163, 66%, 40%);
  }
  .primary-navigation ul li a.btn-white {
    background-color: hsl(163, 66%, 40%);
    color: white;
    border: 1px solid white;
  }
  .primary-navigation ul li a.btn-white:hover, .primary-navigation ul li a.btn-white:focus, .primary-navigation ul li a.btn-white.cta-active {
    background-color: hsl(201, 35%, 25%);
  }
  .primary-navigation .mobile-navigation-circle {
    display: none;
  }
}
@media (min-width: 950px) {
  .primary-navigation ul li {
    margin-left: clamp(1.5em, 3vw + 0.5rem, 4em);
  }
}

.nav-transform {
  transform: translateX(0);
  opacity: 1;
}

.subpage-title {
  margin: 5em 1em;
}
.subpage-title h1 {
  position: relative;
}
.subpage-title h1:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: hsl(163, 66%, 40%);
  height: 10px;
  width: 200px;
  bottom: 1px;
  left: -20px;
}
@media (min-width: 800px) {
  .subpage-title {
    margin: 10em 2em;
  }
  .subpage-title h1:after {
    left: -30px;
  }
}
@media (min-width: 950px) {
  .subpage-title {
    margin: 10em 5em;
  }
  .subpage-title h1:after {
    height: 20px;
    width: 400px;
    bottom: 2px;
    left: -100px;
  }
}

.contact-section {
  height: 20vh;
  display: grid;
  place-content: center;
}
.contact-section .contact-cta {
  padding: 0.5em 1.5em;
  background: hsl(0, 0%, 100%);
  font-weight: bold;
  color: black;
  text-decoration: none;
  transition: 0.3s;
}
.contact-section .contact-cta:hover, .contact-section .contact-cta:focus {
  background-color: hsl(163, 66%, 40%);
  color: white;
}
@media (min-width: 1000px) {
  .contact-section {
    height: 45vh;
  }
}

.home .contact-section {
  background-image: url(../image/background/hawaii.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.bio .contact-section {
  background-image: url(../image/background/aloe.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.resources .contact-section {
  background-image: url(../image/background/hawaii-garden.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.media .contact-section {
  background-image: url(../image/background/chicago-botanic.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

footer .icons-list {
  justify-content: center;
  padding-block: 3em;
  margin-inline: 2em;
  border-top: 1px solid hsl(201, 35%, 25%);
  gap: 1em;
}
footer .icons-list a:hover,
footer .icons-list a:focus {
  transform: scale(1.5);
  transition: 0.3s;
}
footer .icons-list .icon-social {
  width: 1.5em;
}

.home {
  position: relative;
}
.home .bg-green-circle {
  position: absolute;
  z-index: -5;
  width: 300px;
  top: 40%;
  right: 0;
}
.home .bg-blue-circle {
  position: absolute;
  z-index: -5;
  width: 350px;
  top: 70%;
  left: -30%;
}
@media (min-width: 550px) {
  .home .bg-green-circle {
    top: 50%;
  }
  .home .bg-blue-circle {
    left: -10%;
  }
}
@media (min-width: 950px) {
  .home .bg-green-circle {
    top: 40%;
    width: 400px;
  }
  .home .bg-blue-circle {
    left: -5%;
    top: 60%;
  }
}

.bio {
  position: relative;
}
.bio .bg-green-circle {
  position: absolute;
  z-index: -5;
  bottom: 5%;
  right: 0;
  width: 350px;
}
.bio .bg-blue-circle {
  position: absolute;
  z-index: -5;
  top: 10%;
  left: -10%;
  width: 300px;
}
@media (min-width: 500px) {
  .bio .bg-green-circle {
    bottom: 5%;
    width: 400px;
  }
  .bio .bg-blue-circle {
    width: 500px;
    top: 15%;
    left: -10%;
  }
}
@media (min-width: 800px) {
  .bio .bg-green-circle {
    bottom: 10%;
    width: 550px;
  }
  .bio .bg-blue-circle {
    width: 600px;
    top: 5%;
    left: -10%;
  }
}

.resources {
  position: relative;
}
.resources .bg-green-circle {
  position: absolute;
  z-index: -5;
  top: -3%;
  left: -20%;
  width: 325px;
}
.resources .bg-blue-circle {
  position: absolute;
  z-index: -5;
  top: 25%;
  right: 0;
  width: 300px;
}
@media (min-width: 500px) {
  .resources .bg-green-circle {
    left: -10%;
    width: 400px;
  }
  .resources .bg-blue-circle {
    top: 30%;
    width: 400px;
  }
}
@media (min-width: 950px) {
  .resources .bg-green-circle {
    top: 2%;
    left: -5%;
    width: 650px;
  }
  .resources .bg-blue-circle {
    top: unset;
    bottom: 5%;
    left: unset;
    width: 500px;
  }
}

.media {
  position: relative;
}
.media .bg-green-circle {
  position: absolute;
  z-index: -5;
  bottom: 55%;
  right: 0;
  width: 300px;
}
.media .bg-blue-circle {
  position: absolute;
  z-index: -5;
  top: 0;
  left: -10%;
  width: 350px;
}
@media (min-width: 550px) {
  .media .bg-green-circle {
    top: unset;
    bottom: 5%;
    width: 500px;
  }
}
@media (min-width: 950px) {
  .media .bg-green-circle {
    width: 700px;
    bottom: 12%;
  }
  .media .bg-blue-circle {
    top: 5%;
    left: -5%;
    width: 450px;
  }
}

.contact {
  position: relative;
}
.contact .bg-green-circle {
  position: absolute;
  z-index: -5;
  top: -5%;
  right: 0;
  width: 300px;
}
.contact .bg-blue-circle {
  position: absolute;
  z-index: -5;
  bottom: 15%;
  left: -10%;
  width: 300px;
}
@media (min-width: 550px) {
  .contact .bg-green-circle {
    top: -2%;
    width: 400px;
  }
  .contact .bg-blue-circle {
    bottom: 20%;
    width: 400px;
  }
}
@media (min-width: 950px) {
  .contact .bg-green-circle {
    top: 10%;
    right: 35%;
    width: 500px;
  }
  .contact .bg-blue-circle {
    bottom: -5%;
    left: -5%;
    width: 400px;
  }
}

.bg-blue-circle,
.bg-green-circle {
  overflow-x: clip;
}
.bg-blue-circle ellipse,
.bg-green-circle ellipse {
  overflow-x: clip;
}

.hero-section {
  height: 90vh;
  max-height: 800px;
  min-height: 550px;
  margin: 5em auto;
  place-content: center;
  grid-auto-rows: 50% 50%;
  grid-template-columns: 375px;
}
.hero-section .hero-left-col {
  position: relative;
  background-image: url(../image/background/blue-circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1;
  left: -15%;
}
.hero-section .hero-left-col .hero-left-col-content {
  position: absolute;
  margin: auto;
  transform: translateY(50%) translateX(25%);
  grid-gap: 1em;
}
.hero-section .hero-left-col .hero-left-col-content a {
  width: -moz-fit-content;
  width: fit-content;
}
.hero-section .hero-right-col {
  position: relative;
  right: -15%;
  top: clamp(-2em, -3vh, -5em);
  overflow-x: clip;
  overflow-y: visible;
}
.hero-section .hero-right-col .animation-bg {
  background-color: hsl(163, 66%, 40%);
  position: absolute;
  right: 0;
  width: 95%;
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.hero-section .hero-right-col .hero-image {
  position: absolute;
  right: 0;
  background-image: url(../image/headshot-square.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 95%;
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
@media (min-width: 700px) {
  .hero-section {
    min-height: 700px;
    margin: 10em auto;
    grid-template-columns: 400px;
  }
  .hero-section .hero-left-col {
    left: -20%;
  }
  .hero-section .hero-right-col {
    right: -20%;
    top: -10em;
  }
  .hero-section .hero-right-col .animation-bg,
  .hero-section .hero-right-col .hero-image {
    right: 0;
  }
}
@media (min-width: 950px) {
  .hero-section {
    grid-template-columns: 650px 650px;
    align-content: start;
  }
  .hero-section .hero-left-col {
    top: 0;
    left: 5%;
  }
  .hero-section .hero-right-col {
    top: 0;
    right: 5%;
  }
  .hero-section .hero-right-col .animation-bg,
  .hero-section .hero-right-col .hero-image {
    width: 100%;
  }
  .hero-section .hero-left-col .hero-left-col-content {
    width: 60%;
    transform: translateY(30%) translateX(40%);
  }
}

.info-section {
  grid-template-columns: repeat(auto-fit, 300px);
  justify-content: center;
  grid-gap: 5em;
  padding-top: 8em;
}
.info-section .info-section-item {
  text-align: center;
}
.info-section .info-section-item a {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 650px) and (max-width: 1135px) {
  .info-section .info-section-item:last-child {
    grid-column: span 2;
  }
}
@media (min-width: 1136px) {
  .info-section {
    grid-template-columns: repeat(auto-fit, 325px);
  }
  .info-section .info-section-item {
    text-align: left;
  }
  .info-section .info-section-item a {
    margin-inline: 0;
  }
}

.bio-section {
  grid-template-areas: "image1" "textbox1" "image2" "textbox2";
  place-items: center;
  margin-inline: auto;
  padding-inline: 1.5em;
  gap: 2em;
  max-width: 650px;
}
.bio-section .bio-img-1 {
  grid-area: image1;
  position: relative;
  width: 80%;
  overflow-x: hidden;
}
.bio-section .bio-text-section-1 {
  grid-area: textbox1;
}
.bio-section .bio-img-2 {
  grid-area: image2;
  position: relative;
  justify-self: center;
  left: -1.5em;
}
.bio-section .bio-text-section-2 {
  grid-area: textbox2;
}
@media (min-width: 950px) {
  .bio-section {
    grid-template-areas: ". textbox1 image1 image1" "image2 image2 textbox2 .";
    grid-template-columns: 1em auto auto 1em;
    max-width: 100vw;
    gap: clamp(1em, 2vw + 1rem, 5em);
  }
  .bio-section .bio-img-1 {
    width: 100%;
    max-width: 500px;
    align-self: start;
    justify-self: start;
    left: unset;
  }
  .bio-section .bio-text-section-1 {
    align-self: start;
  }
}
@media (min-width: 1200px) {
  .bio-section {
    grid-template-columns: 5em auto auto 5em;
    gap: 5em;
  }
}

.resources-section {
  grid-template-areas: "title" "text" "sketch" "resources" "ensemble";
  padding-inline: 1.5em;
  margin-inline: auto;
  row-gap: 1.5em;
  max-width: 650px;
}
.resources-section .title {
  grid-area: title;
  text-align: center;
}
.resources-section .title span {
  position: relative;
}
.resources-section .title span:after {
  position: absolute;
  content: "";
  height: 5px;
  width: 70px;
  background-color: hsl(163, 66%, 40%);
  right: 0;
  bottom: -5px;
}
@media (min-width: 950px) {
  .resources-section .title span:after {
    width: 80px;
  }
}
.resources-section .content {
  grid-area: text;
  text-align: center;
}
.resources-section .res-sketch-img {
  grid-area: sketch;
  position: relative;
  z-index: -1;
  top: -1em;
  max-width: 80%;
  margin-inline: auto;
}
.resources-section .resources-content {
  grid-area: resources;
}
.resources-section .resources-content h3 {
  text-align: center;
}
.resources-section .resources-content span.pseudo {
  position: relative;
}
.resources-section .resources-content span.pseudo:before {
  position: absolute;
  content: "";
  height: 7.5px;
  width: 60px;
  background-color: hsl(163, 66%, 40%);
  left: 0;
  top: -10px;
}
.resources-section .resources-content .icon-arrow {
  display: inline-block;
  background-image: url(../image/icons/icon-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
}
.resources-section .res-ensemble-img {
  grid-area: ensemble;
}
@media (min-width: 800px) {
  .resources-section {
    row-gap: 3em;
  }
}
@media (min-width: 950px) {
  .resources-section {
    place-items: center;
    grid-template-areas: ". title title ." ". text text ." " sketch sketch resources ." " . ensemble ensemble .";
    grid-template-columns: 5em 40vw 40vw 5em;
    max-width: 100vw;
    row-gap: 0;
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
  .resources-section .content {
    width: 60vw;
    margin-inline: auto;
    margin-top: 3em;
  }
  .resources-section .res-sketch-img {
    max-width: unset;
    height: 80%;
    opacity: 0.08;
    left: -10vw;
    top: unset;
  }
  .resources-section .res-ensemble-img {
    width: 80%;
  }
}

.media-section {
  padding-inline: 1.5em;
}
.media-section .video-gallery {
  grid-template-columns: repeat(auto-fit, 300px);
  place-content: center;
  width: 100%;
  gap: 1.5em;
}
.media-section .video-gallery iframe {
  width: 300px;
  height: 190px;
}
.media-section .video-gallery iframe:hover, .media-section .video-gallery iframe:focus {
  transform: scale(1.1);
  transition: all 0.5s;
}
@media (min-width: 950px) {
  .media-section .video-gallery {
    grid-template-columns: repeat(auto-fit, 500px);
    gap: 3em;
    max-width: 1200px;
    margin-inline: auto;
  }
  .media-section .video-gallery iframe {
    width: 500px;
    height: 315px;
  }
}
.media-section .image-gallery {
  margin: 7em auto;
  place-content: center;
  grid-template-columns: repeat(auto-fit, 300px);
  grid-auto-rows: auto;
  width: 100%;
  gap: 1.5em;
  align-items: center;
}
.media-section .image-gallery .grid-item {
  position: relative;
  overflow: hidden;
}
.media-section .image-gallery .grid-item .image-gallery-item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.media-section .image-gallery .grid-item .image-gallery-item:hover, .media-section .image-gallery .grid-item .image-gallery-item:focus {
  transform: scale(1.1);
}
.media-section .image-gallery .grid-item .image-gallery-item.landscape {
  height: 200px;
}
.media-section .image-gallery .grid-item .image-gallery-item.portrait {
  height: 300px;
}
@media (min-width: 1100px) {
  .media-section .image-gallery {
    grid-template-columns: repeat(auto-fit, 250px);
    grid-auto-rows: 250px;
    max-width: 1200px;
    margin: 10em auto;
    align-items: unset;
  }
  .media-section .image-gallery .grid-item .image-gallery-item.landscape, .media-section .image-gallery .grid-item .image-gallery-item.portrait {
    height: 100%;
  }
  .media-section .image-gallery .grid-item:nth-child(3n-2) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.contact-me-section {
  padding-inline: 1.5em;
}
.contact-me-section .contact-left-col {
  max-width: 550px;
  margin-inline: auto;
}
.contact-me-section .contact-left-col .content {
  text-align: center;
  margin-block: 3em;
}
.contact-me-section .contact-left-col form {
  row-gap: 1em;
}
.contact-me-section .contact-left-col form .grid {
  row-gap: 0.25em;
}
.contact-me-section .contact-left-col form input, .contact-me-section .contact-left-col form select, .contact-me-section .contact-left-col form textarea {
  background-color: #f2f2f2;
  border: 1px solid black;
}
.contact-me-section .contact-left-col form input {
  padding-block: 0.25em;
  width: 250px;
}
.contact-me-section .contact-left-col form .name {
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 600px) {
  .contact-me-section .contact-left-col form .name {
    flex-direction: row;
    gap: 2em;
  }
}
.contact-me-section .contact-left-col form select {
  width: 175px;
  padding-block: 0.25em;
}
.contact-me-section .contact-left-col form textarea {
  height: 125px;
}
.contact-me-section .contact-left-col form button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5em auto;
}
.contact-me-section .contact-left-col form P {
  padding-top: 1em;
  text-align: center;
}
.contact-me-section .contact-right-col {
  position: relative;
  height: 450px;
}
.contact-me-section .contact-right-col .contact-image {
  position: absolute;
  right: -1.5em;
  border-top-left-radius: 10em;
  width: 300px;
}
@media (min-width: 750px) {
  .contact-me-section .contact-right-col {
    width: 550px;
    height: 550px;
    margin-inline: auto;
  }
  .contact-me-section .contact-right-col .contact-image {
    width: 350px;
    right: 0;
  }
}
@media (min-width: 950px) {
  .contact-me-section {
    grid-template-columns: 55vw 45vw;
    gap: 1em;
    padding-inline: 2em;
  }
  .contact-me-section .contact-left-col {
    max-width: 600px;
  }
  .contact-me-section .contact-left-col .content {
    text-align: left;
  }
  .contact-me-section .contact-left-col .content span {
    position: relative;
  }
  .contact-me-section .contact-left-col .content span:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 10px;
    background-color: hsl(163, 66%, 40%);
    top: -1em;
  }
  .contact-me-section .contact-left-col form p {
    text-align: left;
  }
  .contact-me-section .contact-right-col {
    top: -10%;
    right: 0;
  }
  .contact-me-section .contact-right-col .contact-image {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */