body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

.container-fluid {
  padding: 0;
  margin: 0;
  width: 100vw;
}

#scrollButton {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  z-index: 99;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out;
  opacity: 0; /* Hidden initially */
  pointer-events: none; /* Prevent interactions when hidden */
}

#scrollButton.visible {
  opacity: 1;
  pointer-events: auto;
}

.chevron {
  width: 10px; /* Adjusted for better proportion */
  height: 10px;
  margin-top: 5px;
  border-left: 3px solid #B2815D;
  border-bottom: 3px solid #B2815D;
  transform: rotate(135deg);
  position: relative;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.2s ease-in-out;
  stroke: #B2815D; /* Updated progress bar color */
  stroke-width: 2; /* Thinner stroke */
  stroke-linecap: round; /* Rounded edges */
  fill: transparent;
  stroke-dasharray: 119; /* Scaled circumference */
  stroke-dashoffset: 119;
}

.container-fluid.snap {
  overflow-y: scroll; 
  height: 100vh; 
  scroll-snap-type: y mandatory;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.container-fluid.snap::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.container-fluid.snap {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.row {
  margin: 0 80px;
  position: relative;
}

.col, .col-1, .col-2, 
.col-3, .col-4, .col-5, 
.col-6, .col-7, .col-8,
.col-9, .col-10, .col-11, .col-12, 
.col-125, .col-250 {
  padding: 0;
  margin: 0;
}

.col-md, .col-md-1, .col-md-2, 
.col-md-3, .col-md-4, .col-md-5, 
.col-md-6, .col-md-7, .col-md-8,
.col-md-9, .col-md-10, .col-md-11, .col-md-12, 
.col-md-125, .col-md-250 {
  padding: 0;
  margin: 0;
}

header {
  position: absolute;
  max-width: 100vw;
}

#header-home {
  background-color: #FFFFFF;
  margin: 0 80px;
  padding: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  height: 72px;
  justify-content: space-between;
  width: calc(100vw - 160px);
}

#header-home #header-name a {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 40.51px;
  color: #4B5359;
  cursor: pointer;
}

#header-home #header-titles {
  padding: 0;
}

#header-home #header-titles ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

#header-home #header-titles ul li {
  margin-left: 80px;
}

#header-home #header-titles a {
  color: #4B5359;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: pointer;
  text-align: end;
}

#header-home #header-titles a.selected {
  font-weight: 500;
}

#header-home #header-titles a:hover {
  font-weight: 500;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  border: 1px solid #F2F3F4;
  border-radius: 4px;
  padding: 8px 14px;
  width: 270px;
  right: 160px;
  z-index: 10;
  text-align: start;
  box-shadow: 0 4px 5.5px #F2F3F4;
}

#work:hover .dropdown-content {
  display: block;
}

.menu-work-div {
  border-radius: 4px;
  padding: 16px;
  cursor: pointer;
  margin: 2px 0;
}

.menu-work-div:hover {
  border: 1px solid #B7BEC2;
  padding: 15.2px;
}

.menu-work-div.current {
  background-color: #F7F8F8;
}

.menu-work-div h4, .menu-work-div h4 img {
  color: #4B5359;
  font-size: 14px;
  font-weight: 600;
}

.menu-work-div h5 {
  font-size: 12px;
  font-weight: 400;
  color: #4B5359;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

#header-portfolio {
  background-color: transparent;
  margin: 0 80px;
  padding: 0px;
  z-index: 1000;
  display: flex;
  align-items: center;
  height: 72px;
  justify-content: space-between;
  width: calc(100vw - 160px);
}

#header-portfolio #header-name a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 19.2px;
  color: #FFF;
  cursor: pointer;
}

#header-portfolio #header-titles ul,
#header-portfolio #header-titles-dorg ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

#header-portfolio #header-titles a,
#header-portfolio #header-titles-dorg a {
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.2px;
  cursor: pointer;
  text-align: end;
}

#header-portfolio #header-titles .selected {
  font-weight: 700;
  color: #F8F277;
}

#header-portfolio #header-titles ul li a:hover {
  color: #F8F277;
}

#header-portfolio #header-titles-dorg .selected {
  font-weight: 700;
  /*color: #1B1B1B;*/
}

#header-portfolio #header-titles-dorg ul li a:hover {
  font-weight: 700;
}

#burguer-col {
  display: none;
  align-content: center;
  justify-content: flex-end;
}

#close-menu {
  display: none;
}

#mobile-header {
  display: none;
  height: calc(100vh - 72px);
  width: 100vw;
  background-color: #FFFFFF;
  z-index: 99999;
  margin: -1px 0 0 0;
  top: 72px;
  position: fixed;
}

#mobile-header-titles {
  align-self: center;
  justify-self: center;
  margin-bottom: 72px;
}

#mobile-header-titles .selected {
  color: #4B5359;
}

#mobile-header-titles a:hover {
  color: #4B5359;
}

#mobile-header-titles ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobile-header-titles ul li{
  margin-bottom: 15px;
}

#mobile-header-titles a {
  color: #727D85;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.56px;
  cursor: pointer;
  margin-bottom: 20px;
}

#mobile-header-bottom {
  align-self: flex-end;
  justify-self: center;
}

#mobile-header-bottom .selected {
  color: #4B5359;
}

#mobile-header-bottom a:hover {
  color: #4B5359;
}

#mobile-header-bottom ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

#mobile-header-bottom a {
  color: #727D85;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.56px;
  cursor: pointer;
  margin-bottom: 20px;
}

.in {
  transition: all 1s ease-in;
}

#footer {
  display: flex;
  align-items: center;
  min-height: 72px;
  background-color: #FFF;
  margin: -1px 0 0 0;
  justify-content: space-between;
}

#footer-name {
  font-weight: 400;
  font-size: 16px;
  padding-left: 80px;
  color: #4B5359;
}

#footer-titles {
  padding-right: 80px;
}

#footer-titles ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer-titles ul li {
  margin-left: 80px;
}

#footer-titles a {
  color: #4B5359;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-align: right;
  padding: 0;
  line-height: 22px;
}

.pagers {
  display: flex; 
  flex-direction: column; 
  align-items: flex-end; 
  justify-content: space-between;
  height: 116px;
  padding-right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* */

#first-section {
  min-height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
}

#first-section-container {
  background-color: #F7F8F8;
  padding: 40px;
  border-radius: 8px;
}

#first-section-container h1 {
  color: #4B5359;
  font-size: 58px;
  font-weight: 300;
  line-height: 125%;
  width:  100%;
}

#first-section-container h1 a, #first-section-container h1 a span {
  text-decoration: none;
  color: #B2815D;
}

#first-section-button-container {
  display: flex;
  margin-top: 24px;
}

#first-section-button-container button {
  height: 32px;
  border: 1px solid #D9DBDE;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: #727D85;
  background-color: #F7F8F8;
}

#first-section-button-container button:hover {
  border: 1px solid #D9DBDE;
  color: #4B5359;
  background-color: #D9DBDE;
}

#first-section-button-container button:focus {
  border: 1px solid #B7BEC2;
  color: #40474C;
  background-color: #B7BEC2;
}

#first-section-button-container a:hover {
  border: 1px solid #D9DBDE;
  color: #4B5359;
  background-color: #D9DBDE;
}

#resume-button {
  height: 32px;
  border: 1px solid #D9DBDE;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: #727D85;
  margin-right: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: fit-content;
  justify-content: center;
  background-color: #FFFFFF;
}

#resume-button:hover {
  border: 1px solid #D9DBDE;
  color: #4B5359;
  background-color: #D9DBDE;
}

#resume-button:focus {
  border: 1px solid #B7BEC2;
  color: #40474C;
  background-color: #B7BEC2;
}

#resume-button span {
  vertical-align: middle;
}

#resume-button img {
  height: 20px;
  width: 20px;
  margin-right: 4px;
  vertical-align: middle;
}

#first-section-button-container button span {
  vertical-align: middle;
}

#first-section-button-container button img {
  height: 20px;
  width: 20px;
  margin-right: 4px;
  vertical-align: middle;
}

#first-section-button-container a {
  height: 32px;
  border: 1px solid #D9DBDE;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: #727D85;
  margin-right: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: fit-content;
  justify-content: center;
}

#first-section-button-container a span {
  vertical-align: middle;
}

#first-section-button-container a img {
  height: 20px;
  width: 20px;
  margin-right: 4px;
  vertical-align: middle;
}

.mouseline {
  position: absolute;
  bottom: 0px;
  left: 0;
  display: flex;
  align-items: center;
}

.mouseline h5 {
  color: #5C656D;
  font-weight: 400;
  font-size: 12px;
  margin: 0 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

#portfolio {
  background-color: #FFFFFF;
  height: 100vh;
  display: flex;
}

#portfolio-div {
  height: fit-content; 
  margin: auto; 
  padding: 0;
  z-index: 2;
}

#portfolio-title {
  font-weight: 400; 
  font-size: 24px; 
  color: #4B5359; 
  line-height: 24px;
}

#portfolio-currentlyworking-div {
  margin: 32px 0; 
  display: flex; 
  align-items: center; 
  height: 32px; 
  padding: 0 12px 0 8px; 
  background-color: #FFF; 
  border: 1px solid #F2F3F4; 
  border-radius: 2px; 
  box-shadow: 0 4px 5.5px #F2F3F4; 
  width: fit-content;
  cursor: pointer;
}

#portfolio-currentlyworking-div p {
  font-size: 12px; 
  font-weight: 500; 
  color: #4B5359; 
  margin: 0 4px;
}

.portfolio-card-outer {
  background-color: #F7F8F8; 
  border-radius: 12px; 
  padding: 4px;
}

.portfolio-card-inner {
  background-color: #FFFFFF; 
  border-radius: 8px; 
  border: 1px solid #F2F3F4; 
  padding: 24px;
}

.portfolio-card-img-div {
  border-radius: 8px; 
  height: 246px; 
  margin: 16px 0 32px 0; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer;
}

.portfolio-card-img-div img {
  height: 294px;
  cursor: pointer;
}

.portfolio-card-tags {
  display: flex; 
  margin: 16px 0;
}

.portfolio-card-tags h5 {
  background-color: #F2F3F4; 
  border-radius: 2px; 
  padding: 2px 4px; 
  color: #5C656D; 
  font-size: 12px; 
  font-weight: 500; 
  line-height: 16px;
  width: fit-content;
}

.portfolio-header {
  font-weight: 600; 
  font-size: 16px; 
  line-height: 24px; 
  color: #40474C; 
  margin-bottom: 4px;
}

.portfolio-text {
  font-weight: 400; 
  font-size: 14px; 
  line-height: 20px; 
  color: #727D85;
}

.portfolio-card-button {
  cursor: pointer; 
  height: 24px; 
  color: #B2815D; 
  font-size: 12px; 
  font-weight: 600; 
  line-height: 18px; 
  text-decoration: none;
}

.portfolio-card-button:link:active, .portfolio-card-button:visited:active, .portfolio-card-button:hover {
  color: #B2815D;
}

#contact-me {
  min-height: calc(100vh - 72px);
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

#contact-me-snap {
  min-height: calc(100vh - 72px);
  background-color: #FFF;
  display: flex;
  align-items: center;
}

#contact-me-snap h1 {
  color: #4B5359;
  font-size: 64px;
  font-weight: 300;
  line-height: 125%;
  width:  100%;
}

/* ABOUT ME */

#aboutme-hero-image {
  width: -webkit-fill-available; 
  border-radius: 4px; 
  height: calc(50% - 12px); 
  object-fit: cover;
  filter: grayscale(1);
  transition: all 0.5s ease;
}

#aboutme-hero-image:hover {
  filter: grayscale(0);
}

#aboutme-quote-div {
  background-color: #F7F8F8; 
  width: -webkit-fill-available; 
  border-radius: 4px; 
  padding: 24px; 
  display: flex; 
  margin-bottom: 16px;
  transition: all 0.5s ease;
}

#aboutme-quote-div span {
  font-size: 64px; 
  color: #B2815D; 
  line-height: 64px; 
  margin-right: 24px;
  transition: all 0.5s ease;
}

#aboutme-quote-div p {
  color: #4B5359; 
  font-size: 16px; 
  margin: 0;
  transition: all 0.5s ease;
}

#aboutme-quote-div:hover {
  background-color: #EEE9E3; 
  width: -webkit-fill-available; 
  border-radius: 4px; 
  padding: 24px; 
  display: flex; 
  margin-bottom: 16px;
}

#aboutme-quote-div:hover span {
  font-size: 76px; 
  line-height: 64px; 
  margin-right: 12px;
}


/* PORTFOLIO */


.portfolio-titles {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.portfolio-titles h2 {
  font-weight: 500;
  font-size: 16px;
  color: #B7BEC2;
  margin: 0;
}

.portfolio-titles .line {
  margin-left: 32px;
  width: -webkit-fill-available;
  height: 0px;
  border: 1px solid #D9DBDE;
}

.bottom-margin {
  margin-bottom: 80px;
}

.top-margin {
  margin-top: 80px;
}


/* UPPAWS */

#uppaws-first-section {
  min-height: 100vh;
}

.hero-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* height: 80vh; */
}

.hero-titles h1 {
  text-align: center;
  font-weight: 400;
  font-size: 100px;
  color: #4B5359;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero-titles h4 {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: #B2815D;
  margin-bottom: 8px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-image img {
  height: 80vh;
}

#uppaws-second-section {
  background-color: #FFF;
}

.container-margin-top {
  margin-top: 80px;
}

.container-margin-bottom {
  margin-bottom: 80px;
}

.container-gap-top {
  margin-top: 16px;
}

.container-gap-bottom {
  margin-bottom: 16px;
}

.uppaws-div-containers h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #4B5359;
  text-transform: uppercase;
}

.uppaws-div-containers p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5C656D;
}

.uppaws-div-containers ul {
  margin: 0;
}

.uppaws-div-containers li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5C656D;
}

.invert-row {
  padding: 0;
  display: flex;
}

.normal-row {
  padding: 0;
  display: flex;
}

.process-img {
  display: flex;
  flex-direction: column;
}

.process-img img {
  width: 100%;
  cursor: zoom-in;
}

.process-img h5 {
  align-self: center;
  width: 80%;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #8F99A1;
  margin-top: 16px;
  margin-bottom: 0;
}

.wireframes-other-div {
  padding: 0;
  display: flex;
}

.wireframe-images {
  margin: 0;
}

.wireframe-middle-images {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wireframe-images .wireframe-img {
  width: 100%;
}

.wireframe-images .wireframe-middle-img {
  width: calc(75% - 6px);
}

.wireframe-images .wireframe-details {
  margin-top: 16px;
  display: flex;
}

.wireframe-images .wireframe-middle-details {
  margin-top: 16px;
  display: flex;
  width: calc(75% - 6px);
}

.wireframe-images .wireframe-details img,
.wireframe-images .wireframe-middle-details img {
  height: 24px;
  width: 24px;
}

.wireframe-images .wireframe-details h5,
.wireframe-images .wireframe-middle-details h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5C656D;
  margin-left: 10px;
}

.arrow {
  display: flex;
  align-items: center;
}

.first-arrow {
  justify-content: flex-end;
}

.last-arrow {
  justify-content: flex-start;
}

.arrow img {
  margin-bottom: 176px;
}

.solutions-images {
  display: flex; 
  flex-direction: column;
  justify-content: space-between;
}

#solutions-left {
  align-items: flex-start;
}

#solutions-right {
  align-items: flex-end;
}

.solutions-middle-images {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: space-between;
}

.solutions-images .solutions-details p,
.solutions-middle-images .solutions-middle-details p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5C656D;
  margin: 0;
}

.solutions-details, .solutions-img {
  width: 80%;
}

.solutions-middle-details, .solutions-middle-img {
  width: 60%;
}

#uppaws-banner {
  padding: 0;
}

#uppaws-banner img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}

#uppaws-final-design {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#uppaws-final-design h2 {
  font-size: 20px;
  color: #4B5359;
  font-weight: 400;
}

#uppaws-final-design-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: flex-end;
}

#uppaws-final-design-img img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  overflow: hidden;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
}

#uppaws-final-design-img video {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(-2%) translateY(-50%);
  width: 95%;
  z-index: -1;
  border-radius: 20px;
}

/* DORG */

#dorg-first-section {
  min-height: 100vh;
  margin: 0;
  padding: 0 80px;
  background: linear-gradient(
    to bottom,
    #EEE9E3 0%,
    #EEE9E3 80%,
    #FFF 80%,
    #FFF 100%
  );
}

/* VISOR */

.responsibilities-div {
  background-color: #F7F8F8; 
  border-radius: 4px; 
  padding: 24px; 
  color: #5C656D; 
  font-size: 16px; 
  line-height: 24px;
  height: 216px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsibilities-left {
  margin: 0 12px 24px 0;
}

.responsibilities-middle {
  margin: 0 12px 24px 12px;
}

.responsibilities-right {
  margin: 0 0 24px 12px;
}

/* COMING SOON */

#coming-soon-div {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#coming-soon-div h1 {
  color: #1B1B1B;
  font-size: 4.5vw;
  font-weight: 400;
  line-height: 5.5vw;
  width:  100%;
}

#coming-soon-div h1 a, #coming-soon-div h1 a span {
  text-decoration: none;
  color: #B2815D;
}

.custom-title {
  position: fixed; /* Prevents it from affecting document height */
  background-color: #40474C;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;
  white-space: normal;
  max-width: 206px; /* Custom width */
  word-wrap: break-word;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1000;
  pointer-events: none; /* Prevents interference */
  display: none; /* Hides when not in use */
}

.custom-title.visible {
  visibility: visible;
  opacity: 1;
}

#zoomOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8); /* Dark background */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer; /* Allow click to close */
}

#zoomedImage {
  max-width: 90vw; /* Adjust to fit viewport */
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

#zoomOverlay:hover #zoomedImage {
  transform: scale(1.05); /* Slight zoom on hover */
}

.navigation-container {
  background-color: #F7F8F8;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.navigation-container div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#previous-button {
  height: 32px;
  border: 1px solid #D9DBDE;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: #727D85;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: fit-content;
  justify-content: center;
  background-color: #FFFFFF;
}

#previous-button:hover {
  border: 1px solid #D9DBDE;
  color: #4B5359;
  background-color: #D9DBDE;
}

#previous-button:focus {
  border: 1px solid #B7BEC2;
  color: #40474C;
  background-color: #B7BEC2;
}

#previous-button span {
  vertical-align: middle;
}

#previous-button img {
  height: 20px;
  width: 20px;
  margin-right: 4px;
  vertical-align: middle;
}

#next-button {
  height: 32px;
  border: 1px solid #D9DBDE;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: #727D85;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: fit-content;
  justify-content: center;
  background-color: #FFFFFF;
}

#next-button:hover {
  border: 1px solid #D9DBDE;
  color: #4B5359;
  background-color: #D9DBDE;
}

#next-button:focus {
  border: 1px solid #B7BEC2;
  color: #40474C;
  background-color: #B7BEC2;
}

#next-button span {
  vertical-align: middle;
}

#next-button img {
  height: 20px;
  width: 20px;
  margin-left: 4px;
  vertical-align: middle;
}

.nav-text {
  font-size: 16px;
  font-weight: 200;
  color: #4B5359;
  text-align: center;
  margin: 0 12px;
}

.nav-text-mobile {
  display: none;
  font-size: 14px;
  font-weight: 200;
  color: #4B5359;
  text-align: center;
  margin: 0 0 24px 0;
}


/* MEDIA QUERIES */

@media screen and (min-width: 1401px) {

  .row {
    margin-left: 10vw;
    margin-right: 10vw;
  }

  #header-home {
    margin: 0 10vw;
    width: 80vw;
  }

  #footer-name {
    padding-left: 10vw;
  }
  
  #footer-titles {
    padding-right: 10vw;
  }

  #first-section-container h1 {
    font-size: 64px;
  }

  /* UPPAWS */

  .wireframe-images .wireframe-img {
    width: 80%;
  }
  
  .wireframe-images .wireframe-middle-img {
    width: 60%;
  }
  
  .wireframe-images .wireframe-details {
    width: 80%;
  }
  
  .wireframe-images .wireframe-middle-details {
    width: 60%;
  }


}

@media screen and (min-width: 2001px) {

  .row {
    margin-left: 20vw;
    margin-right: 20vw;
  }

  #header-home {
    margin: 0 20vw;
    width: 60vw;
  }

  #footer-name {
    padding-left: 20vw;
  }
  
  #footer-titles {
    padding-right: 20vw;
  }
    
  /* UPPAWS */

}

@media screen and (max-width: 1199px) {

  #first-section-container h1 {
    font-size: 44px;
  }
  
  /* UPPAWS */

  .hero-image img {
    height: auto;
    width: 35vw;
  }

}

@media screen and (max-width: 992px) {

  .pagers {
    display: none;
  }

  .row {
    margin: 0 40px;
  }

  #header-home {
    margin: 0 40px;
    width: calc(100vw - 80px);
  }

  #header-home #header-titles ul li {
    margin-left: 40px;
  }

  #footer-titles ul li {
    margin-left: 40px;
  }

  #footer-name {
    padding-left: 40px;
    font-size: 14px;
  }
  
  #footer-titles {
    padding: 10px 40px 10px 0;
  }

  #footer-titles a {
    font-size: 12px;
    line-height: 22px;
    margin: 0 12px;
  }

  #first-section-container h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .mouseline {
    display: none;
  }

  #about-me-img-div {
    height: 80vh;
    padding-right: 12px;
  }

  .nav-text {
    font-size: 14px;
  }
  
  /* UPPAWS */

  .hero-image img {
    height: auto;
    width: 30vw;
  }

}

@media screen and (max-width: 768px) {

  .portfolio-card-tags {
    display: block;
  }

  .portfolio-card-img-div {
    height: 150px;
  }
  
  .portfolio-card-img-div img {
    height: 190px;
  }

  #aboutme-hero-image {
    height: fit-content;
  }
  
  /* UPPAWS */

  #uppaws-first-section {
    background: #FFF;
  }

  .hero-image img {
    display: none;
  }

  .wireframes-other-div {
    display: flex;
    flex-direction: column;
  }

  .invert-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .normal-row {
    flex-direction: column;
  }

  /* DORG */

  #dorg-first-section {
    background: #EEE9E3;
  }

  .responsibilities-left {
    margin: 0 0 24px 0;
  }
  
  .responsibilities-middle {
    margin: 0 0 24px 0;
  }
  
  .responsibilities-right {
    margin: 0 0 24px 0;
  }

}

@media screen and (max-width: 576px) {
  .row {
    margin: 0 24px;
    /*background-color: #727D8550;*/
  }

  #header-home {
    padding: 20px 0;
    margin: 0 24px;
    width: calc(100vw - 48px);
  }

  #header-home #header-name a {
    font-size: 20px;
  }

  #header-titles {
    display: none;
  }

  #burguer-col {
    display: flex;
    justify-content: flex-end;
  }

  .dropdown-content {
    margin-top: 16px;
    width: 100vw;
    right: 0;
    position: relative;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-top: 1px solid #F2F3F4;
    border-radius: 0;
    box-shadow: none;
  }

  #footer-titles ul {
    justify-content: space-between;
  }

  .pagers {
    display: none;
  }
  
  #first-section-container h1 {
    font-size: 30px;
    line-height: 45px;
  }

  #portfolio-currentlyworking-div {
    margin: 24px 0; 
  }

  .portfolio-card-img-div {
    height: 160px;
  }
  
  .portfolio-card-img-div img {
    height: 200px;
  }

  .portfolio-card-tags {
    display: block;
  }

  #contact-me-snap {
    min-height: calc(100vh - 92px);
  }

  #contact-me-div h1 {
    font-size: 36px;
    line-height: 50px;
    text-align: center;
  }

  #contact-me-contact-div {
    width: 80%;
  }
  
  #contact-me-div a {
    font-size: 14px;
    line-height: 16.44px;
    letter-spacing: 1.4px;
  }
  
  /*#header-titles ul, .header-portfolio #header-titles ul {
    display: none;
  }*/

  #footer-name {
    padding-left: 0;
    text-align: center;
    font-size: 14px;
  }
  
  #footer-titles {
    padding: 10px 0 20px 0;
  }

  #footer-titles ul {
    justify-content: center;
  }

  #footer-titles ul li {
    margin-left: 0;
  }

  #footer-titles a {
    font-size: 12px;
    line-height: 22px;
    margin: 0 12px;
  }

  .nav-text {
    display: none;
  }
  
  .nav-text-mobile {
    display: initial;
  }

  .about-me-plants {
    height: calc(100vh - 80px);
  }

  #aboutme-hero-image {
    height: fit-content;
  }

  /* PORTFOLIO */


  /* UPPAWS */

  .uppaws-div-containers h3 {
    font-size: 18px;
    line-height: 22px;
  }
  
  .uppaws-div-containers p {
    font-size: 14px;
    line-height: 19px;
  }
  
  .uppaws-div-containers li {
    font-size: 14px;
    line-height: 19px;
  }

  #uppaws-first-section { 
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-titles {
    height: 40vh;
    justify-content: flex-end;
  }

  .hero-titles h1 {
    font-size: 48px;
    line-height: 61px;
  }
  
  /* .hero-titles h4 {
    font-size: 12px;
    line-height: 14px;
  }
  
  .hero-titles h5 {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.4px;
  } */

  .hero-image {
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    height: 40vh;
    margin-top: 60px;
    float: none;
    display: initial;
    margin: 0;
    width: auto;
  }

  .top-margin {
    margin-top: 40px;
  }

  .bottom-margin {
    margin-bottom: 40px;
  }

  .container-margin-top {
    margin-top: 32px;
  }

  .container-margin-bottom {
    margin-bottom: 32px;
  }

  .container-gap-top {
    margin-top: 12px;
  }
  
  .container-gap-bottom {
    margin-bottom: 12px;
  }

  .invert-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .normal-row {
    flex-direction: column;
  }

  .process-img h5 {
    font-size: 12px;
    line-height: 14.5px;
  }

  .wireframes-other-div {
    display: block;
  }

  .wireframe-images {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .wireframe-middle-images {
    flex-direction: row;
  }

  .special {
    width: 100% !important;
  }

  .wireframe-images .wireframe-details,
  .wireframe-images .wireframe-middle-details {
    display: flex;
    width: 50%;
    margin-top: 0;
    padding-left: 20px;
    align-self: center;
  }
  
  .wireframe-images .wireframe-img,
  .wireframe-images .wireframe-middle-img {
    width: 50%;
  }

  .wireframe-images .wireframe-details img,
  .wireframe-images .wireframe-middle-details img {
    height: 20px;
    width: 20px;
  }

  .wireframe-images .wireframe-details h5,
  .wireframe-images .wireframe-middle-details h5 {

    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #6F777E;
    margin-left: 10px;
  }

  .wireframe-images {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .wireframe-middle-images {
    flex-direction: row;
  }

  .special {
    width: 100% !important;
  }

  .solutions-images, .solutions-middle-images {
    display: flex; 
    align-items: flex-start; 
    justify-content: space-between;
  }

  .solutions-images .solutions-details,
  .solutions-middle-images .solutions-middle-details {
    display: flex;
    flex-direction: column;
    align-self: center;
  }

  #solutions-left {
    align-items: center;
  }
  
  #solutions-right {
    align-items: center;
  }
  
  .solutions-details, .solutions-img {
    width: 100%;
  }
  
  .solutions-middle-details, .solutions-middle-img {
    width: 100%;
  }

  .solutions-images .solutions-details p,
  .solutions-middle-images .solutions-middle-details p {

    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #6F777E;
    margin-right: 10px;
  }

  .arrow img {
    margin: 16px 0;
    height: 25px;
    transform: rotate(90deg);
  }

  .first-arrow, .last-arrow {
    justify-content: center;
  }

  #uppaws-final-design-img {
    margin-top: 40px;
    margin-bottom: 40px;
    min-height: 80vh;
    padding: 0 30px;
  }

  #uppaws-final-design-img img {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(100% - 60px);
  }
  
  #uppaws-final-design-img video {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(97% - 60px);
  }

  /* DORG */

  #dorg-first-section {
    background: linear-gradient(
      to bottom,
      #EEE9E3 0%,
      #EEE9E3 80%,
      #FFF 80%,
      #FFF 100%
    );
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

}

@media screen and (max-width: 410px) {

  #first-section-button-container {
    display: block;
    margin-top: 12px;
  }

  #first-section-button-container a {
    margin-top: 12px;
  }

}

