/* styles.css*********************************************************
*********************************************************************
 Base Styles
********************************************************************* 
********************************************************************* */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,300&display=swap");




/*Cloud transition styles */
.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1051; /* highest z-index on page */
}

.cloud-transition {
  position: absolute;
  background: white;
  filter: blur(50px);
  opacity: 0;
  border-radius: 50%;
}

/* Ensure SVG clouds can be animated properly */
#cloud1,
#cloud1M,
#cloud2,
#cloud3,
#cloud4,
#cloud5,
#cloud6 {
  transform-origin: center;
  will-change: transform, opacity;
  pointer-events: none;
  opacity: 1; /* Start visible */ /* Prevent interaction during transitions */
}

[id^="cloud"],
[id^="cloud"] image {
  will-change: transform;
  contain: layout;
  backface-visibility: hidden;
}
[id^="cloud"] {
  z-index: 3; /* Above thumbnails */
  position: relative;
}

/* Debug element styling */
#debugElement {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: red;
  z-index: 9999;
  opacity: 0;
}




a[data-transition-nav] {
  position: relative;
  transition: transform 0.3s ease;
}

a[data-transition-nav]:hover {
  transform: translateY(-2px);
}

a[data-transition-nav]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

a[data-transition-nav]:hover::after {
  transform: scaleX(1);
  transform-origin: left;


}
   .cloud-transition-element {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    pointer-events: none;
  } 

  .nav-link[data-transition-nav][id="navHome"]::after {
    display: none !important;
}
/*End of Cloud transition styles */

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ SEE/ME Base Styles $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.scrollDist {
  width: 100%;
  height: 200%;
  max-width: 100%;
  max-height: 200%;
  overflow: hidden;
  position: adsolute;
}

#mountains {
  margin: 0;
  padding: 0;
  position: fixed;
  width: 1200px;
  height: 100%;
  overflow: hidden;
}

.svg-container {
  display: block;
  margin: auto;
  position: absolute;
  height: auto;
  overflow: hidden;
  width: 100%;
}
#svg {
  /* visibility: hidden; */
  opacity: 1;
}

/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */

text.lrgtext {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-size: 125px;
  z-index: 15;
}

#me {
  text-shadow: 0px 2px 2px #26466e;
  z-index: 16;
}

#me:hover {
  cursor: pointer;
  text-shadow: 0px 5px 5px #26466e;
}

#see {
  opacity: 0;
  fill: #fff;
}

#me {
  position: absolute;
  fill: #162a43;


    /* z-index: 1100;  */
   pointer-events: all !important;
  
}

#meshaker {
  position: absolute;
  /* z-index: 1099; */
  width: 100%;
  height: 125px;
  transform: translate(0px, 12vh);
  opacity: 0;
}


/* #svg {
  pointer-events: none;
}
#svg > *:not(#me):not(#meshaker) {
  pointer-events: none;
} */


a {
  text-decoration: none;
}

div {
  position: absolute;
}

/* ##############Suggested improvement to correctly handle positioning of modalbox and form */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  overflow: visible;
  /* Ensure scrolling is not blocked */
  margin: 0;
}

/* ************************* Arrows animated SECTION*************************** */

.scroll-arrow {
  position: absolute;
  left: 49.33%;
  top: 23vh;
  display: inline-block;
  width: 22px;
  height: 22px;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  animation: fade_move_down 3s ease-in-out infinite;
  opacity: 0;
}

.scroll-arrow:hover {
  cursor: pointer;
}

@keyframes fade_move_down {
  0% {
    transform: translate(0, -20px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 20px) rotate(45deg);
    opacity: 0;
  }
}

/* ************************* End of Arrows animated SECTION*************************** */

/* ############################ Navbar base styles ################################*/

nav {
  z-index: 14;
  height: auto;
  width: auto;
  overflow: visible;
}

ul {
  padding: 20px 0px 2px 0px;
  width: 100%;
}

nav ul li a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  margin: 1px 30px 1px 5px;
  line-height: 1.2;
  letter-spacing: 1.1px;
}

.sticky {
  background-color: #ffffff;
  opacity: 1;
  top: 0px;
}

a.nav-link {
  color: #6e6f79;
  transform: scale(1);
  font-family: "Open Sans";
  font-size: 16px;
  transition: all 0.3s;
  background-color: transparent;
  opacity: 1;
}

a.nav-link:hover {
  color: #162a43;
  transform: scale(1.15);
  /* display: block;  */
}

a.nav-link.active {
  color: #162a43;
  transform: scale(1.3);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  border-style: groove;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: left;
  inline-size: auto;
  border-width: auto;
  border-radius: 5px;
  border-right: none;
  border-left: none;
}

a.dropdown-item {
  color: #6e6f79;
  font-size: 0.9em;
  padding: 2px 0px 1px 0px;
}

a.dropdown-item:hover {
  color: #162a43;
  transform: scale(1.1);
background-color: transparent !important;
}
.dropdown-item:focus {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

a.dropdown-item:active {
  transform: scale(1.2);
  color: #162a43;

}

.dropdown .dropdown-menu .navbar-nav {
  --bs-nav-link-hover-colour: #162a43;
  
}

ul.navbar-nav {
  position: absolute;
  align-self: center;
}

.navbar {
  --bs-navbar-active-color: #162a43;
  --bs-navbar-brand-color: #162a43;
  --bs-navbar-brand-hover-color: #162a43;
  position: fixed;
  top: 0px;
  max-height: 50px;
  width: 100%;
  padding-top: 30px;
  background: none;
  overflow: visible;
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  top: -700px;
  padding-bottom: 20px;
}

/* Burger Icon Styling */
navbar-toggler left {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border: none;
  font-size: 1rem;
  background-color: transparent;
  border: none;
  outline: none;
}

/* General style for the link */


.has-tooltip {
    position: relative; /* Essential for positioning the tooltip */
    display: inline-block;
    text-decoration: none;
}

/* Style for the tooltips */
.has-tooltip .tooltip-text {
    visibility: hidden; /* Hide by default */
    width: auto; 
    max-width: 350px;
    background-color: #3339; 
    color: #fff; /* White text */
    text-align: center;
    padding: 3px;
    border-radius: 8px;
    font-size: 0.85rem;

    /* Base positioning */
    position: absolute;
    z-index: 1000; /* Ensure it appears above other elements */
    opacity: 0; /* Start fully transparent for fade effect */
    transition: opacity 0.3s, visibility 0s linear 0.3s; /* Delay visibility change */
}
/* Hover effect for both states */
.has-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s; /* Smooth fade-in */
}

/* Optional: Add a small arrow pointing down */
.has-tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.sticky {
  /* background-color: #ffffff; */
  opacity: 1;
  top: 0px;
}

.container-fluid#navbar {
  position: relative;
  width: 100%;
  max-width: 800px;
  align-self: center;
  margin: 0 auto;
  padding: 10px 20px 5px 5px;
  box-sizing: border-box;
}

.navbar.navbar-expand-lg.navbar-light.bg-transparent.sticky#topNav {
  padding: 0px 10px;
  margin: 0px;
}

/*###################### End of Navbar Base Styles ############################ */

/* Thumbnails Base Styles  ###################################################### */

:root {
  --thumb-width: 300px;
  --thumb-height: 300px;
}

.mountains {
  position: absolute;
  width: 2000px;
  height: auto;
}

.container-fluid#thumbnails {
  opacity: 0;
  position: absolute;
}

/* most recent */
.container-fluid.thumbnails {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 2; /* Between background and clouds */
}

.thumbnails {
  opacity: 0;
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 2;
}

/* Loading state */
.thumbShape.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Loaded state */
.thumbShape.loaded {
  animation: none;
  transition: background-image 3s ease-in-out;
}

.thumbs {
  display: block;
  text-decoration: none;
  /* position: relative; */
}

.thumbShape {
  position: absolute;
  width: var(--thumb-width);
  height: var(--thumb-height);
  margin: 12.5px;
  overflow: hidden;
  border-radius: 24%;
  /* transition: background-image 1.8s ease-in-out; */
  opacity: 0;
}

.container-fluid#thumbnails .thumbShape {
  opacity: 1;
}

#software img,
#photography img,
#motion img,
#diy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#software:hover .overlay,
#photography:hover .overlay,
#motion:hover .overlay,
#diy:hover .overlay {
  opacity: 0.7;
}

#software,
#photography,
#motion,
#diy {
  background-image: var(--background-current);
  background-size: cover;
  background-position: center;
  filter: drop-shadow(0 0 0.1rem #162a43);
  transform: scale(1);
  transition: background-image 2.2s ease-in-out, opacity 2.2s ease-in-out;
}

#software:hover,
#photography:hover,
#motion:hover,
#diy:hover {
  /* transform: scale(1.004); */
  cursor: pointer;
  filter: drop-shadow(0 0 0.75rem #162a43);
}

#software .overlay,
#photography .overlay,
#motion .overlay,
#diy .overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: contain;
}

#software .overlay {
  /* background-color:deepskyblue; */
  background-image: url("assets/binary-min.webp");
}

#photography .overlay {
  /* background-color:rgb(186, 3, 3); */
  background-image: url("assets/photography-min.webp");
}

#motion .overlay {
  /* background-color:rgb(1, 73, 4); */
  background-image: url("assets/motion-min.webp");
}

#diy .overlay {
  /* background-color:rgb(227, 171, 3); */
  background-image: url("assets/diy-min.webp");
}

#software {
  --background-current: url("assets/b1.webp");
  --background-next: var(--background-current);
  /* background-image: url("assets/b1.webp"); */
}

#photography {
  --background-current: url("assets/r1.webp");
  --background-next: var(--background-current);
}

#motion {
  --background-current: url("assets/g1.webp");
  --background-next: var(--background-current);
}

#diy {
  --background-current: url("assets/y1.webp");
  --background-next: var(--background-current);
}

/*###################### End of Thumbnail Base Styles ############################ */

/* Modal Statement/Contact Base Styles & WIP####################################### */

.modalbox .box {
  position: absolute;
  transition: transform 0.3s, width 0.3s, height 0.3s;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  background-color: rgba(0, 0, 0, 0.6);
  margin: auto;
  min-width: 210px;
  padding: 45px;
  width: 500px;
  height: 500px;
  overflow: hidden;
  border-radius: 12%;
  color: #fff;
  border-color: #162a43;
  border-style: solid;
}

.modalbox .title {
  border-bottom: 1px solid #ccc;
  font-size: 22px;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0 0 10px;
  color: #fff;
}

.modalbox .content {
  display: block;
  font-size: 18px;
  line-height: 22px;
  padding: 10px 40px 40px 0px;
  text-align: left;
  color: #fff;
}

.modalbox .close {
  color: #fff;
  display: block;
  float: right;
  font-size: 17px;
  text-decoration: bold;
}

.content p {
  margin-bottom: 25px;
}

.close:hover {
  cursor: pointer;
}

.modalbox {
  position: absolute;
  display: none;
  z-index: 4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #333333;
}

.modalbox:target {
  display: block;
  outline: none;
}

.link-modal {
  width: 90%;
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
  background: #ffffff;
  text-decoration: none;
  color: #162a43;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  transform: translateX(0px);
}

.link-modal:hover {
  transform: translateX(1.5rem);
  color: #6e6f79;
  cursor: pointer;
}

/* ********************************* */

.wip .box {
  position: absolute;
  transition: transform 0.3s, width 0.3s, height 0.3s;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  background-color: rgba(0, 0, 0, 0.6);
  margin: auto;
  min-width: 210px;
  padding: 45px;
  width: 500px;
  height: 500px;
  overflow: hidden;
  border-radius: 12%;
  color: #fff;
}

.modalbox .title {
  border-bottom: 1px solid #ccc;
  font-size: 22px;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0 0 10px;
  color: #fff;
}

.wip .content {
  margin-top: 20px;
  display: block;
  font-size: 18px;
  line-height: 22px;
  padding: 10px 40px 40px 15px;
  text-align: left;
  color: #fff;
}

.wip .close {
  color: #fff;
  display: block;
  float: right;
  font-size: 17px;
  text-decoration: bold;
}

.wip {
  position: absolute;
  display: none;
  z-index: 4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #333333;
}

.wip:target {
  display: block;
  outline: none;
}

.hidden {
  display: none;
}

.sig {
  position: relative;
  height: 12rem;
  width: auto;
}

.sig:hover {
  cursor: pointer;
}

/*###################### End of Modal Statement/Contact Base Styles ############################ */

/*Begining of Base Styles Contact Form ##################################################################### */

.formDiv#contactForm {
  position: absolute;
  z-index: 6;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: medium;
  width: 300px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12%;
  background-color: rgba(208, 205, 205, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
  opacity: 1;
}

.formTitle {
  /* width: 100%; */
  padding: 0px;
}

label {
  display: block;
  margin: 10px;
  color: #fff;
}

.closeForm {
  color: #fff;
  display: block;
  float: right;
  font-size: 17px;
  text-decoration: bold;
}

textarea#message {
  overflow: auto;
}

textarea {
  width: 95%;
  /* height: 10%; */
  padding: 2px;
  border: none;
  /* border-radius: 4px; */
  background-color: rgba(251, 248, 248, 0.5);
  color: #07070f;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 2px;
  border: none;
  /* border-radius: 4px; */
  background-color: rgba(251, 248, 248, 0.5);
  color: #07070f;
}

#formButton {
  transition: background-color 0.3s ease;
  align-items: center;
  appearance: none;
  background-color: #3b3b3b;
  background-image: linear-gradient(1deg, #49494a, #949595 99%);
  background-size: calc(100% + 20px) calc(100% + 20px);
  border-radius: 50px;
  border-width: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: auto;
  justify-content: center;
  line-height: 1.5;
  padding: 6px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, background-position 0.2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

#formButton:hover {
  background-position: -20px -20px;
}

#formButton:focus:not(:active) {
  box-shadow: rgba(29, 29, 30, 0.25) 0 0 0 0.125em;
}

#formButton:hover {
  background-color: rgba(222, 240, 209, 0.5);
  cursor: pointer;
}

.error-message {
  color: rgb(173, 83, 10);
  font-size: 14px;
  margin-top: 5px;
}

/*##################################  END of Base Styles Contact Form ###################################*/

@media (max-width: 319.99px), (max-height: 319.99px) {
  .thumbShape {
    width: calc(var(--thumb-width) * 0.4);
    height: calc(var(--thumb-height) * 0.4);
  }

  .navbar.navbar-expand-lg.navbar-light.bg-transparent.sticky#topNav {
    padding: 10px 10px;
    margin: 0px;
  }

  #software .overlay,
  #photography .overlay,
  #motion .overlay,
  #diy .overlay {
    opacity: 0.5;
  }

  .modalbox .box {
    width: 90%;
    height: auto;
    padding: 4% 6%;
  }

  .modalbox .title {
    font-size: 17px;
  }

  .modalbox .content {
    font-size: 15px;
    line-height: 16px;
  }

  .sig {
    height: 5rem;
  }
}

@media (min-width: 320px) {
  .scroll-arrow {
    top: 15%;
    width: 18px;
    height: 18px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
  }

  .thumbShape {
    width: calc(var(--thumb-width) * 0.5);
    height: calc(var(--thumb-height) * 0.5);
  }

  #software .overlay,
  #photography .overlay,
  #motion .overlay,
  #diy .overlay {
    opacity: 0.5;
  }

  /* Positioning of navbar */
  .navbar.navbar-expand-lg.navbar-light.bg-transparent.sticky#topNav {
    padding: 10px 10px;
    margin: 0px;
  }

  .navbar-collapse {
    display: flex;
    flex-direction: column;
  }

  .navbar-nav .dropdown-menu {
    position: absolute;
    top: 0;
    left: calc(100% + 124px);
    padding: 0.2rem;
    min-width: max-content;
    min-width: 265px;
    max-width: 325px;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .dropdown-menu:hover {
    display: flex;
    flex-direction: row;
   
  }

  /* Apply relative positioning to the nav-item to use as reference */
  /* .navbar-nav .nav-item.dropdown {
    position: relative;
  } */

  /* Style individual dropdown items */
  .dropdown-item {
    flex: 1 1 auto;
    text-align: left;
    padding: 0.5rem 2rem;
  }

  .modalbox .box {
    width: 90%;
    height: auto;
    padding: 4% 6%;
  }

  .modalbox .title {
    font-size: 17px;
  }

  .modalbox .content {
    font-size: 15px;
    line-height: 16px;
  }

  .sig {
    height: 5.5rem;
  }
}

@media (min-width: 399.99px) {

span br{
  display: none;
}


  .scroll-arrow {
    top: 18%;
  }

  .thumbShape {
    width: calc(var(--thumb-width) * 0.6);
    height: calc(var(--thumb-height) * 0.6);
  }

  text.lrgtext {
    font-size: 150px;
  }

  .modalbox .box {
    width: 90%;
    height: auto;
    padding: 4% 6%;
  }

  .modalbox .title {
    font-size: 17px;
  }

  .modalbox .content {
    font-size: 15px;
    line-height: 16px;
  }

  .sig {
    height: 5.5rem;
  }
}

@media (min-width: 499.99px) {
  .scroll-arrow {
    top: 20%;
    width: 20px;
    height: 20px;
    border-bottom: 4px solid #fff;
    border-right: 4px solid #fff;
  }

  .thumbShape {
    width: calc(var(--thumb-width) * 0.75);
    height: calc(var(--thumb-height) * 0.75);
  }

  /* SEE & ME text */
  text.lrgtext {
    font-size: 150px;
  }

  /*  */

  /* modalbox message to reader */
  .modalbox .box {
    width: 90%;
    height: auto;
    padding: 4% 6%;
  }

  .modalbox .title {
    font-size: 22px;
  }

  .modalbox .content {
    font-size: 18px;
    line-height: 18px;
  }

  p.allTheBest {
    margin-top: 50px;
  }

  .sig {
    margin-top: 25px;
    height: 9.5rem;
  }
}

@media (max-width: 991.98px) {
    .navbar-collapse .has-tooltip .tooltip-text {
        bottom: 100%; /* Position above the link */
        left: 0; /* Align with start of text */
        width: auto; /* Allow natural width */
        min-width: 200;
        max-width: 350px; /* Prevent excessive width */
        text-align: left; /* Left-aligned text */
        margin-left: 0; /* No offset */
        white-space: nowrap;
    }
        .navbar-collapse .has-tooltip .tooltip-text::after {
        left: 8px; /* Offset to align with first letter */
    }
}







@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav .has-tooltip .tooltip-text {
        bottom: 100%; /* Position above the link */
        left: 50%;
        margin-left: -90px; /* Half of width to center */
        transform: translateX(0); /* Ensure precise centering */
    }
    .navbar-expand-lg .navbar-nav .nav-item.dropdown:hover > .dropdown-menu,
  .navbar-expand-lg .nav-item.dropdown > .dropdown-menu:hover {
    display: flex !important;
    flex-direction: row !important;
  }
  .navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.2rem;
    min-width: max-content;
  }


  .dropdown-menu:hover {
    display: flex;
    flex-direction: row;
  }

  /* Apply relative positioning to the nav-item to use as reference */
  .navbar-nav .nav-item.dropdown {
    position: relative;
  }

  /* Style individual dropdown items */
  .dropdown-item {
    flex: 1 1 auto;
    text-align: left;
    padding: 0.5rem 2rem;
  }

  span br{
  display:block;
}





  .scroll-arrow {
    top: 30%;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid #fff;
    border-right: 5px solid #fff;
  }

  .thumbShape {
    width: calc((100vh * 0.32));
    height: calc((100vh * 0.32));
  }

  #software .overlay,
  #photography .overlay,
  #motion .overlay,
  #diy .overlay {
    opacity: 0;
  }

  .navbar.navbar-expand-lg.navbar-light.bg-transparent.sticky#topNav {
    position: fixed;
    top: 0;
    width: 100%; /* Ensure it spans the full viewport width */
    z-index: 1050; /* Ensure visibility over other elements */
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.9); /* Ensure visibility */
  }

  .navbar-collapse {
    display: flex;
    flex-direction: column;
  }



  /* modalbox message to reader */
  .modalbox .box {
    width: 90%;
    height: auto;
    padding: 2% 2%;
  }

  .modalbox .title {
    font-size: 22px;
  }

  .modalbox .content {
    font-size: 18px;
    line-height: 18px;
  }

  .content p {
    margin-top: 15px;
    margin-bottom: 20px;
  }

  p.allTheBest {
    margin-top: 30px;
  }

  .sig {
    margin-top: 20px;
    height: 9.5rem;
  }
}


@media (orientation: landscape) and (max-width: 991.98px) and (min-width: 200px) and (max-height: 800px) and (min-height: 200px) {
  .scrollDist {
    min-height: 620px;
  }

  .scroll-arrow {
    top: 27%;
    width: 25px;
    height: 25px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
  }

  .thumbShape {
    width: calc((100vh * 0.27));
    height: calc((100vh * 0.27));
  }

  /* SEE & ME text */
  text.lrgtext {
    font-size: 120px;
  }

  .navbar.navbar-expand-lg.navbar-light.bg-transparent.sticky#topNav {
    padding: 1px 10px;
    margin: 0px;
  }

  /* modalbox message to reader */
  .modalbox .box {
    width: calc((100vh * 0.54));
    height: calc((100vh * 0.54));

    padding: 1.5% 1.5%;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .modalbox .title {
    font-size: 16px;
  }

  .modalbox .content {
    font-size: 14px;
    line-height: 12px;
  }
  .content p {
    margin-bottom: 10px;
  }

  p.allTheBest {
    margin-top: 10px;
  }

  .sig {
    margin-top: 0px;
    height: 5.5rem;
  }

  .formDiv#contactForm {
    width: 250px;
    height: auto;
    padding: 1px;
    opacity: 1;
  }
  #message {
    height: fit-content;
  }

  label {
    display: block;
    margin: 3px;
    color: #fff;
    font-size: small;
    margin-left: 15px;
  }
  .closeForm {
    margin-right: 10px;
  }

  textarea {
    width: 95%;
    padding: 0px;
  }

  input[type="text"],
  textarea {
    width: 95%;
    padding: 0px;
  }

  #formButton {
    height: 20px;
    margin-left: 10px;
  }
}
