/* @import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap'); */

.bodypg {
  font-family: 'Dosis', sans-serif;
}

/* delete later */
.construction {
  max-width: 100vw;
  width: 100vw;
}

/* general */
.bodypg {
  height: 100%;
  min-height: 100vh;
  background-color: #bad4e4;
  background-size: cover;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}

@media(prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.hobby-card:nth-child(2) {
  transition-delay: 200ms;
}

.hobby-card:nth-child(3) {
  transition-delay: 400ms;
}

.hobby-card:nth-child(4) {
  transition-delay: 600ms;
}

/* scroll bar */
::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  background: rgba(0,0,0,0);
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* navbar */
nav {
  font-size: 2rem;
  background-color: white;
  border-width: .15rem;
  font-weight: 800;
}

.navbar-nav > li{
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar {
  --bs-navbar-hover-color: #000000 !important;
  --bs-navbar-active-color: 	#07689F !important;
  --bs-navbar-color: #8f8f8f !important;
}

/* logo */
.image-container img {
  height: 100px;
  max-height: 100px;
  width: auto;
}

/* footer */
.footer-basic {
  padding: 0 0 40px 0;
  color:#575757;
}

.connect {
  color: black;
  font-weight: 600;
}

.footer-basic .social {
  text-align:center;
}

.footer-basic .social > a {
  font-size:40px;
  width:60px;
  height:60px;
  line-height:65px;
  display:inline-block; 
  text-align:center;
  border-radius: 50%;
  border:2px solid #575757;
  margin:0 1rem;
  color:inherit;
  opacity:0.75;
}

.linkedin {
  font-size: 38px;
}

.footer-basic .social > a:hover {
  opacity: 1;
  color: #07689F;
  border-color: #07689F;
}

/* index page main */
.indexmain {
  overflow: hidden;
  padding: 5% 20% 3% 15%;
}

.photo-desc {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.horizontal-headshot {
  display: none;
}

.hello-world {
  font-weight: 800;
  font-size: 4rem;
  color: #000000;
}

.quick-desc {
  padding-top: 1rem;
  font-size: 1.5rem;
  color: #575757;
}

/* project page */
.proj-heading {
  max-width: 100%;
  text-align: center;
  margin-top: 3rem;
  font-weight: 700;
  font-size: 3.25rem;
  color: #000000;
}

.proj-heading-sm {
  max-width: 100%;
  text-align: center;
  margin-top: 3rem;
  font-weight: 700;
  font-size: 3rem;
  color: #000000;
  display: none;
}

.proj-container {
  padding: 1.5rem 0 2.5rem 0;
}

.sm-proj-learn {
  display: none;
}

.proj-cards {
  display: flex;
  flex-direction: column;
}

.proj-row {
  display: flex;
  flex-direction: row;
}

.card img {
  border-radius: 15px;
}

.card {
  background-color: rgba(0,0,0,0) !important;
  border: none !important;
  padding: .5rem;
}

.card {
  position: relative;
  overflow: hidden;
}

.project-card {
  transition: filter 0.3s, transform 0.3s;
}

.imgtext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
  color: white;
}

.card:hover .project-card {
  filter: grayscale(100%) blur(5px);
  transform: scale(1.05);
}

.card:hover .imgtext {
  opacity: 1;
}

.imgtext a {
  font-size: larger;
  color: white;
  font-weight: 500;
  text-decoration: none;
}

.imgtext a:hover {
  text-decoration: underline;
}

/* individual project pages */
.project-back a {
  font-size: 2rem;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.project-back a:hover {
  text-decoration: underline;
}

/* about page */
#scrollBtn {
  padding: 12px 30px;
  border-radius: 25px;
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  background: #5cb46e;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
}

#scrollBtn:hover {
  background-color: #4a9258;
}

.about-head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/about4.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(150%);
  height: 35rem;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00000079;
  width: 100%;
  height: 100%;
}

.about-title {
  text-align: center;
  font-weight: 600;
  font-size: 6rem;
  color: #ffffff;
}

.about-subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 3rem;
  color: #ffffff;
}

.informatics {
  margin: 0 2rem;
  display: flex;
  flex-direction: row;
  padding: 5rem 0 5rem 0;
  align-items: center;
}

.intro {
  background-color: #bad4e4;
}

.who-am-i {
  margin: 0 3rem;
}

.who-am-i h2 {
  font-weight: bold;
  font-size: 2.75rem;
  margin-right: 20%;
}

.who-am-i p {
  font-weight: 500;
  font-size: 1.5rem;
}

.about-head {
  font-size: 2.75rem;
  font-weight: bold;
}

.uw {
  width: 100%;
  height: auto;
}

.passion-learning {
  background-color: #e1eaf3;
}

.tabs-sm {
  display: none;
}

.about-enjoy {
  background-color: #bad4e4;
  margin: 0 2rem 0 2rem;
}

.about-enjoy p {
  margin-bottom: 0;
}

.hobby-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem;
}

.hobby-card {
  aspect-ratio: 4/3;
  perspective: 800px;
  padding: 1rem;
}

.card-inner {
  height: 100%;
  width: 100%;
  transition: transform 800ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
}

.hobby-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.hobby-img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.card-back {
  transform: rotateY(180deg);
  background-color: #07689F;
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
}

.card-back h2 {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-back p {
  font-size: 1vw;
  white-space: pre-wrap;
  overflow: hidden;
}

/* resume button */
.resume {
  display: flex;
  flex-direction: column;
}

:root{
  --line_color: #1b1919;
  --back_color: #76a576;
}

.scribble-btn{
  position: relative;
  z-index: 0;
  width: 440px;
  height: 56px;
  text-decoration: none;
  font-size: 18px; 
  font-weight: 800;
  color: var(--line_color);
  letter-spacing: 1px;
  transition: all .3s ease;
}
.button__text{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.scribble-btn::before,
.scribble-btn::after,
.button__text::before,
.button__text::after{
  content: '';
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: var(--line_color);
  transition: all .5s ease;
}
.scribble-btn::before{
  top: 0;
  left: 54px;
  width: calc( 100% - 56px * 2 - 16px );
}
.scribble-btn::after{
  top: 0;
  right: 54px;
  width: 8px;
}
.button__text::before{
  bottom: 0;
  right: 54px;
  width: calc( 100% - 56px * 2 - 16px );
}
.button__text::after{
  bottom: 0;
  left: 54px;
  width: 8px;
}
.button__line{
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  overflow: hidden;
}
.button__line::before{
  content: '';
  position: absolute;
  top: 0;
  width: 150%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 300px;
  border: solid 3px var(--line_color);
}
.button__line:nth-child(1),
.button__line:nth-child(1)::before{
  left: 0;
}
.button__line:nth-child(2),
.button__line:nth-child(2)::before{
  right: 0;
}
.scribble-btn:hover{
  letter-spacing: 6px;
}
.scribble-btn:hover::before,
.scribble-btn:hover .button__text::before{
  width: 6px;
}
.scribble-btn:hover::after,
.scribble-btn:hover .button__text::after{
  width: calc( 100% - 56px * 2 - 16px );
}
.button__drow1,
.button__drow2{
  position: absolute;
  z-index: -1;
  border-radius: 16px;
  transform-origin: 16px 16px;
}
.button__drow1{
  top: -16px;
  left: 130px;
  width: 32px;
  height: 0;
  transform: rotate( 30deg );
}
.button__drow2{
  top: 44px;
  left: 170px;
  width: 32px;
  height: 0;
  transform: rotate(-127deg );
}
.button__drow1::before,
.button__drow1::after,
.button__drow2::before,
.button__drow2::after{
  content: '';
  position: absolute;
}
.button__drow1::before{
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate( -60deg );
}
.button__drow1::after{
  top: -10px;
  left: 45px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate( 69deg );
}
.button__drow2::before{
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate( -146deg );
}
.button__drow2::after{
  bottom: 26px;
  left: -40px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate( -262deg );
}
.button__drow1,
.button__drow1::before,
.button__drow1::after,
.button__drow2,
.button__drow2::before,
.button__drow2::after{
  background: var( --back_color );
}
.scribble-btn:hover .button__drow1{
  animation: drow1 ease-in .06s;
  animation-fill-mode: forwards;
}
.scribble-btn:hover .button__drow1::before{
  animation: drow2 linear .08s .06s;
  animation-fill-mode: forwards;
}
.scribble-btn:hover .button__drow1::after{
  animation: drow3 linear .03s .14s;
  animation-fill-mode: forwards;
}
.scribble-btn:hover .button__drow2{
  animation: drow4 linear .06s .2s;
  animation-fill-mode: forwards;
}
.scribble-btn:hover .button__drow2::before{
  animation: drow3 linear .03s .26s;
  animation-fill-mode: forwards;
}
.scribble-btn:hover .button__drow2::after{
  animation: drow5 linear .06s .32s;
  animation-fill-mode: forwards;
}
@keyframes drow1{
  0%   { height: 0; }
  100% { height: 100px; }
}
@keyframes drow2{
  0%   { width: 0; opacity: 0;}
  10%  { opacity: 0;}
  11%  { opacity: 1;}
  100% { width: 120px; }
}
@keyframes drow3{
  0%   { width: 0; }
  100% { width: 80px; }
}
@keyframes drow4{
  0%   { height: 0; }
  100% { height: 120px; }
}
@keyframes drow5{
  0%   { width: 0; }
  100% { width: 124px; }
}

/* CSS */
.mobile-ghBtn {
  display: none;
  background-color: transparent;
  border: 3px solid #1A1A1A;
  border-radius: 300px;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  width: 250px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* learning tabs */
.tabs {
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  background: white;
  padding: 40px;
  padding-bottom: 40px;
  width: 80%;
  height: auto;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border-radius: 15px;
  min-width: 240px;
}
.tabs input[name="tab-control"] {
  display: none;
}
.tabs .tab-info section h2,
.tabs ul li label {
  font-weight: bold;
  font-size: 20px;
  color: #428bff;
}
.tab-info p {
  line-height: 2rem;
  font-size: 18px;
}
.tabs ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.tabs ul li {
  box-sizing: border-box;
  flex: 1;
  width: 25%;
  padding: 0 10px;
  text-align: center;
}
.tabs ul li label {
  transition: all 0.3s ease-in-out;
  color: #929daf;
  padding: 5px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  -webkit-touch-callout: none;
}
.tabs ul li label br {
  display: none;
}
.tabs ul li label svg {
  fill: #929daf;
  height: 1.2em;
  vertical-align: bottom;
  margin-right: 0.2em;
  transition: all 0.2s ease-in-out;
}
.tabs ul li label:hover,
.tabs ul li label:focus,
.tabs ul li label:active {
  outline: 0;
  color: #bec5cf;
}
.tabs ul li label:hover svg,
.tabs ul li label:focus svg,
.tabs ul li label:active svg {
  fill: #bec5cf;
}
.tabs .slider {
  position: relative;
  width: 25%;
  transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}
.tabs .slider .indicator {
  position: relative;
  width: 50px;
  max-width: 100%;
  margin: 0 auto;
  height: 4px;
  background: #07689F;
  border-radius: 15px;
}
.tabs .tab-info {
  margin-top: 25px;
}
.tabs .tab-info section {
  display: none;
  animation-name: content;
  animation-direction: normal;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  line-height: 1.4;
}
.tabs .tab-info section h2 {
  color: #07689F;
  display: none;
}
.tabs .tab-info section h2::after {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #07689F;
  margin-top: 5px;
  left: 1px;
}
.tabs
  input[name="tab-control"]:nth-of-type(1):checked
  ~ ul
  > li:nth-child(1)
  > label {
  cursor: default;
  color: #07689F;
}
.tabs
  input[name="tab-control"]:nth-of-type(1):checked
  ~ ul
  > li:nth-child(1)
  > label
  svg {
  fill: #07689F;
}
@media (max-width: 600px) {
  .tabs
    input[name="tab-control"]:nth-of-type(1):checked
    ~ ul
    > li:nth-child(1)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name="tab-control"]:nth-of-type(1):checked ~ .slider {
  transform: translateX(0%);
}
.tabs
  input[name="tab-control"]:nth-of-type(1):checked
  ~ .tab-info
  > section:nth-child(1) {
  display: block;
}
.tabs
  input[name="tab-control"]:nth-of-type(2):checked
  ~ ul
  > li:nth-child(2)
  > label {
  cursor: default;
  color: #07689F;
}
.tabs
  input[name="tab-control"]:nth-of-type(2):checked
  ~ ul
  > li:nth-child(2)
  > label
  svg {
  fill: #07689F;
}
@media (max-width: 600px) {
  .tabs
    input[name="tab-control"]:nth-of-type(2):checked
    ~ ul
    > li:nth-child(2)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name="tab-control"]:nth-of-type(2):checked ~ .slider {
  transform: translateX(100%);
}
.tabs
  input[name="tab-control"]:nth-of-type(2):checked
  ~ .tab-info
  > section:nth-child(2) {
  display: block;
}
.tabs
  input[name="tab-control"]:nth-of-type(3):checked
  ~ ul
  > li:nth-child(3)
  > label {
  cursor: default;
  color: #07689F;
}
.tabs
  input[name="tab-control"]:nth-of-type(3):checked
  ~ ul
  > li:nth-child(3)
  > label
  svg {
  fill: #07689F;
}
@media (max-width: 600px) {
  .tabs
    input[name="tab-control"]:nth-of-type(3):checked
    ~ ul
    > li:nth-child(3)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name="tab-control"]:nth-of-type(3):checked ~ .slider {
  transform: translateX(200%);
}
.tabs
  input[name="tab-control"]:nth-of-type(3):checked
  ~ .tab-info
  > section:nth-child(3) {
  display: block;
}
.tabs
  input[name="tab-control"]:nth-of-type(4):checked
  ~ ul
  > li:nth-child(4)
  > label {
  cursor: default;
  color: #07689F;
}
.tabs
  input[name="tab-control"]:nth-of-type(4):checked
  ~ ul
  > li:nth-child(4)
  > label
  svg {
  fill: #07689F;
}
@media (max-width: 600px) {
  .tabs
    input[name="tab-control"]:nth-of-type(4):checked
    ~ ul
    > li:nth-child(4)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name="tab-control"]:nth-of-type(4):checked ~ .slider {
  transform: translateX(300%);
}
.tabs
  input[name="tab-control"]:nth-of-type(4):checked
  ~ .tab-info
  > section:nth-child(4) {
  display: block;
}
@keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@media (max-width: 1000px) {
  .tabs ul li label {
    white-space: initial;
  }
  .tabs ul li label br {
    display: initial;
  }
  .tabs ul li label svg {
    height: 1.5em;
  }
}
@media (max-width: 600px) {
  .tabs ul li label {
    padding: 5px;
    border-radius: 5px;
  }
  .tabs ul li label span {
    display: none;
  }
  .tabs .slider {
    display: none;
  }
  .tabs .tab-info {
    margin-top: 20px;
  }
  .tabs .tab-info section h2 {
    display: block;
  }
}

.spacer {
  aspect-ratio: 900/100;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.spacer2 {
  aspect-ratio: 900/10;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.waves-top {
  background-image: url('../img/waves-top1.svg');
}

.waves-bottom {
  background-image: url('../img/waves-bottom1.svg');
}

.waves-nav {
  background-image: url('../img/nav-wave.svg');
  margin-top: -.5rem;
}

/* contact form */
.form-input::-webkit-scrollbar {
  width: 0px;
}

.form-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 3rem;
}

.form-popup h1 {
  font-weight: bold;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

.text-area {
  margin-bottom: 1rem;
}

.form-input {
  border: 0;
  outline: none;
  background-color: #f1f1f1;
  border-bottom: 2px solid #a8b1b3;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .00833rem;
  line-height: 1.66667rem;
  transition: all .2s linear;
  width: 86%;
  resize: none;
  width: 100%;
}

.form-input:focus {
  border-color: #07689F;
}

#myForm {
  color: #000000;
}

.cancel-btn {
  padding: 0 !important;
}

.form-first {
  padding-right: 1rem;
}

.form-last {
  padding: 0 .5rem;
}

.form-email {
  padding-left: 1rem;
}

.required {
  float: left !important;
  text-align: center !important;
}

.form-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .6;
}

.send-btn {
  appearance: none;
  background-color: #3b3b3b !important;
  border: 2px solid #1A1A1A;
  border-radius: 15px;
  box-sizing: border-box;
  color: #FFFFFF !important;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  text-align: center;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.send-btn:disabled {
  pointer-events: none;
}

.send-btn:hover {
  background-color: #07689F !important;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.send-btn:active {
  box-shadow: none;
  transform: translateY(0);
}

/* All Project Project Pages (Started as only pupsupport but eventually used on all projects pgs) */
.pupsupport-main p {
  font-size: x-large;
}

.pupsupport-main li {
  font-size: larger;
}

/* other background images */
.backgammon-head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/backgammon2.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(150%);
  height: 35rem;
  width: 100%;
}

.when2eat-head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/when2eat-1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(150%);
  height: 35rem;
  width: 100%;
}

.heartbeats-head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/heartbeats-2.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(150%);
  height: 35rem;
  width: 100%;
}

.vaccine-head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/covid5.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(150%);
  height: 35rem;
  width: 100%;
}

.vienna-head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/agriculture.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(150%);
  height: 35rem;
  width: 100%;
}

.pup-head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/mental-health2.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(150%);
  height: 35rem;
  width: 100%;
}

/* back to common styling */
.pup-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00000079;
  width: 100%;
  height: 100%;
}

.pup-title {
  text-align: center;
  font-weight: 600;
  font-size: 6rem;
  color: #ffffff;
}

.pup-subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 2.75rem;
  color: #ffffff;
}

.pup-steps {
  margin: 3rem 0;
}

.line-across {
  overflow: hidden;
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
}

.line-across > span{
 position: relative;
 display: inline-block;
}
.line-across > span:before, .line-across > span:after{
 content: '';
 position: absolute;
 top: 50%;
 border-bottom: 4px solid;
 width: 100vw;
 margin: 0 20px;
}

.line-across > span:before{
 right: 110%;
}

.line-across > span:after{
 left: 110%;
}

.backBtn {
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(-0%, -0%);
  -ms-transform: translate(-0%, -0%);
  margin: 1rem;
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  background: #5cb46e;
  color: white;
  cursor: pointer;
  font-size: 1.25rem;
  text-decoration: none;
}

.backBtn:hover {
  background-color: #4a9258;
}

.backBtn-short {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 1rem;
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  background: #5cb46e;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.backBtn-short:hover {
  background-color: #4a9258;
}

.pup-function-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.pup-function {
  background-color: #3a94d3;
  border-radius: 25px;
  padding: 1rem;
}

.pup-function:nth-child(2) {
  transition-delay: 100ms;
}

.pup-function:nth-child(3) {
  transition-delay: 200ms;
}

.pup-function:nth-child(4) {
  transition-delay: 300ms;
}

.pup-link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #07689F;
  outline: 3px #07689F solid;
  outline-offset: -3px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: 400ms;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.pup-link-btn .pup-link {
  color: white;
  font-weight: 700;
  font-size: 1em;
  transition: 400ms;
  text-decoration: none;
  margin: 0;
}

.pup-link-btn:hover {
  background-color: transparent;
}

.pup-link-btn:hover .pup-link {
  color: #07689F;
  text-decoration: none;
}

.chess-link {
  text-decoration: none;
  color:#000000;
}

.chess-link:hover {
  text-decoration: underline;
  color:blue;
}

.timeline-container {
  margin: 0rem 6rem;
}

.timeline-block {
  width: 52%;
  padding: 1rem 1.5rem 0.125rem 2.5rem;
  border-radius: 4rem;
  margin: 1rem 0;
}

.timeline-block p {
  font-size: larger;
}

.block1 {
  background-color: #7fa9c5;
  position: relative;
  left: 0%;
}

.block2 {
  background-color: #6895b6;
  position: relative;
  left: 16%;
}

.block3 {
  background-color: #4d7ca0;
  position: relative;
  left: 32%;
}

.block4 {
  background-color: #3e6e97;
  position: relative;
  left: 48%;
}

.timeline-container img {
  width: 40%;
  height: auto;
}

.pupsupport-website { 
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.put-together-container {
  display: flex;
  flex-direction: row;
}

.put-together {
  width: 100%;
}

.put-together:nth-child(2) {
  transition-delay: 100ms;
}

@media (min-width: 2300px) {
  .card-back h2 {
    font-size: 2.5rem;
  }

}

@media (min-width: 1900px) {
  .card-back h2 {
    font-size: 2.25rem;
  }

  .tabs {
    width: 60%;
  }
}

@media (max-width: 1399px) {
  .form-popup {
    width: 75%;
  }

  .indexmain {
    padding: 5% 10%;
  }

  .hobby-img {
    border-radius: 10px;
  }

  .hobby-container {
    padding: 1rem 5rem;
  }

  .card-back h2 {
    font-size: 2.25rem;
  }
  
  .card-back p {
    font-size: 2.25vw;
  }

  .block1 {
    left: 0%;
    width: 100%;
  }
  
  .block2 {
    left: 0%;
    width: 100%;
  }
  
  .block3 {
    left: 0%;
    width: 100%;
  }
  
  .block4 {
    left: 0%;
    width: 100%;
  }

  .line-across > span:before{
    right: 100%;
   }
   .line-across > span:after{
    left: 100%;
   }
}

@media (max-width: 1199px) {
  .hello-world {
    font-size: 3.4rem;
  }

  .about-head {
    height: 25rem;
  }
  
  .pup-head {
    height: 25rem;
  }

  .vienna-head {
    height: 25rem;
  }

  .backgammon-head {
    height: 25rem;
  }

  .heartbeats-head {
    height: 25rem;
  }

  .vaccine-head {
    height: 25rem;
  }

  .about-title {
    font-size: 5rem;
  }

  .about-subtitle {
    font-size: 2.5rem;
  }

  .card-back h2 {
    font-size: 2rem;
  }

  .informatics {
    flex-direction: column;
  }

  .uw {
    display: none;
  }

  .who-am-i h2, p{
    text-align: center;
    margin: auto;
  }

  .resume {
    align-items: center;
    margin-bottom: 1rem;
  }

  .proj-heading {
    font-size: 3rem;
  }

  .pup-title {
    font-size: 4.5rem;
  }

  .pup-subtitle {
    font-size: 2.25rem;
  }

  .pup-head {
    height: 40vh;
  }

  .vienna-head {
    height: 40vh;
  }

  .backgammon-head {
    height: 40vh;
  }
  
  .heartbeats-head {
    height: 40vh;
  }

  .vaccine-head {
    height: 40vh;
  }

  .put-together-container {
    flex-direction: column;
  }

  .put-together {
    text-align: center;
    align-items: center;
    margin-bottom: 1rem;
  }

  .line-across {
    font-size: 3rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 991px) {
  .form-email {
    padding: 0;
  }

  .form-last {
    padding-right: 0;
  }

  .hello-world {
    font-size: 2.6rem;
  }

  .hobby-container {
    padding: 0;
  }

  .informatics {
    padding: 2rem 0;
  }

  .who-am-i h2 {
    font-size: 2rem;
  }

  .about-head {
    font-size: 1.9rem;
  }

  .tabs {
    padding-top: .5rem;
  }

  .image-container img {
    height: 75px;
    max-height: 75px;
    width: auto;
  }

  .proj-heading {
    font-size: 2.5rem;
  }

  .proj-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .timeline-block {
    border-radius: 30px;
  }

  .proj-learn {
    display: none;
  }

  .sm-proj-learn {
    display: block;
    font-size: .9rem;
  }

  .pup-function-list {
    flex-direction: column;
    align-items: center;
  }

  .pup-function {
    width: 75%;
    margin-bottom: 1rem;
  }

  .line-across {
    padding-bottom: 1.5rem;
  }

  .cancel {
    width: 40px;
  }
}

@media (max-width: 767px) {
  nav {
    font-size: 1.5rem;
  }

  .about-head {
    height: 20rem;
  }
  
  .pup-head {
    height: 20rem;
  }

  .vienna-head {
    height: 20rem;
  }

  .backgammon-head {
    height: 20rem;
  }

  .heartbeats-head {
    height: 20rem;
  }

  .vaccine-head {
    height: 20rem;
  }

  .about-title {
    font-size: 4rem;
  }

  .about-subtitle {
    font-size: 2rem;
  }

  .hobby-container {
    padding: 2rem;
  }

  .card-back h2 {
    font-size: 2.75rem;
  }
  
  .card-back p {
    font-size: 4vw;
  }

  .who-am-i h2 {
    font-size: 2.25rem;
  }

  .who-am-i h2 {
    font-size: 1.75rem;
  }

  .photo-desc {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .headshot {
    display: none;
  }

  .horizontal-headshot {
    display: inline;
  }

  .hello-world {
    text-align: center;
  }

  .quick-desc {
    text-align: center;
  }

  .sm-proj-learn {
    font-size: .8rem;
  }

  .pup-title {
    font-size: 3.75rem;
  }

  .pup-subtitle {
    font-size: 1.75rem;
  }

  .timeline-container {
    margin: 0 1.5rem;
  }

  .proj-container {
    padding: 1rem !important;
  }

  .pup-skills {
    font-size: larger;
    padding: 0 2rem;
  }

  .backBtn {
    display: none;
  }

  .backBtn-short {
    display: inline-block;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 700px) {
  .card-back h2 {
    font-size: 2.25rem;
  }

  .who-am-i h2 {
    font-size: 1.6rem;
  }

  .tabs {
    display: none;
  }

  .tabs-sm {
    display: flex;
    flex-direction: column;
  }

  .tabs-sm h3 {
    font-size: 1.25rem !important;
  }
  
  .tabs-sm {
    font-size: .75rem !important;
  }

  .line-across {
    font-size: 2.5rem;
  }

  .proj-heading {
    font-size: 2.25rem;
  }

  .line-across > span:before, .line-across > span:after {
    width: 0vw;
   }

   .pup-steps {
    margin: 2rem 0 4rem 0;
  }

  .form-popup h1 {
    font-size: 2rem;
  }

  .cancel {
    width: 35px;
  }
}

@media (max-width: 575px) {
  .about-head {
    height: 15rem;
  }

  .pup-head {
    height: 15rem;
  }

  .vienna-head {
    height: 15rem;
  }

  .backgammon-head {
    height: 15rem;
  }

  .heartbeats-head {
    height: 15rem;
  }

  .vaccine-head {
    height: 15rem;
  }

  .about-title {
    font-size: 3rem;
  }

  .about-subtitle {
    font-size: 1.75rem;
  }

  .card-back h2 {
    font-size: 1.75rem;
  }

  .who-am-i {
    margin: 0 1rem;
  }

  .who-am-i p {
    font-size: 1rem;
  }

  .indexmain {
    padding: 1rem;
  }

  .hello-world {
    font-size: 2.2rem;
  }

  .quick-desc {
    padding: 1rem;
    font-size: 1.15rem;
  }

  .hobby-container {
    padding: 0;
  }

  .proj-heading {
    display: none;
    font-size: 1.75rem;
  }
  .proj-heading-sm {
    display: block;
  }

  .pup-title {
    font-size: 2.75rem;
  }

  .pup-subtitle {
    font-size: 1rem;
  }

  .scribble-btn {
    display: none;
  }

  .mobile-ghBtn {
    display: inline-block;
  }

  .button__drow1{
    top: -16px;
    left: 55px;
    width: 32px;
    height: 0;
    transform: rotate( 30deg );
  }

  .button__drow2{
    top: 44px;
    left: 95px;
    width: 32px;
    height: 0;
    transform: rotate(-127deg );
  }

  .pup-skills {
    font-size: medium;
  }

  .line-across {
    padding-bottom: 1rem;
  }

  .pupsupport-main p {
    font-size: large !important;
  }

  .timeline-block h3 {
    font-size: larger;
  }

  #scrollBtn {
    padding: 8px 18px;
    top: 15px;
    right: 15px;
    font-size: 1.25rem;
  }

  .cancel {
    width: 30px;
  }

  .form-last {
    padding: 0;
  }

  .form-first {
    padding-right: 0;
  }

  .form-popup {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 424px) {
  .who-am-i h2 {
    font-size: 1.5rem;
  }

  .card-back {
    padding: .5rem;
  }
  
  .card-back h2 {
    font-size: 1.25rem;
  }

  .nav-link {
    font-size: large !important;
  }

  .proj-heading {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    margin-top: 2rem;
  }

  .pup-title {
    font-size: 2.25rem;
  }

  .line-across {
    font-size: 2rem;
  }

  .backBtn-short {
    font-size: small;
    padding: 7px 14px;
  }

  .proj-container {
    padding: .5rem 1rem 1rem 1rem !important;
  }

  .pup-link-btn {
    padding: .75rem 1.5rem;
  }

  .timeline-block {
    padding: 1.5rem 1.5rem .5rem 1.5rem;
  }

  .button__drow1,
  .button__drow1::before,
  .button__drow1::after,
  .button__drow2,
  .button__drow2::before,
  .button__drow2::after {
    all: initial;
  }

  .mobile-ghBtn {
    width: 225px;
    font-size: 15px; 
    padding: 12px 16px;
  }

  .form-popup h1 {
    font-size: 1.5rem;
    padding: 0;
    margin: 0;
  }

  .form-popup {
    padding: 2rem 1.5rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }
}