/* ================== Typography ================== */
/* --Fonts-- */
@font-face {
    font-family: bould;
    src: url(fonts/Bould-ExtraLight.woff2);
    font-weight: 200;
}

@font-face {
    font-family: bould;
    src: url(fonts/Bould-Light.woff2);
    font-weight: 300;
}

@font-face {
    font-family: bould;
    src: url(fonts/Bould-LightItalic.woff2);
    font-style: italic;
    font-weight: 300;
}

@font-face {
    font-family: bould;
    src: url(fonts/Bould-Regular.woff2);
}

@font-face {
    font-family: bould;
    src: url(fonts/Bould-Medium.woff2);
    font-weight: 600;
}

@font-face {
    font-family: bould;
    src: url(fonts/Bould-Bold.woff2);
    font-weight: 700;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1 {
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
}

h2 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--color-jasmine);
    line-height: 1;
}

h4 {
    font-size: 1.1em;
}

@media only screen and (min-width: 800px) {
    body {
        font-size: 16px;
    }

    h2 {
        font-size: 3vw;
    }
}

@media only screen and (min-width: 1500px) {
    body {
        font-size: 18px;
    }

    h2 {
        font-size: 3.75vw;
    }
}

p {
    line-height: 1.5;
    opacity: .7;
    font-size: 1.1em;
}


/* ================== Colors ================== */

html {
  color: #D5D5D5;

  --color-white: #D5D5D5;
  --color-almond: #F2E5D6;
  --color-orchid: #F2BCCA;
  --color-feldgrau: #445552;
  --color-gunmetal: #2B3634;
  --color-jasmine: #FFE082;
}


/* ================== Base Styles (Global) ================== */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    position: relative;
    font-family: bould;
    font-style: normal;
    font-size: 16px;
    color: var(--color-white);
    box-sizing: border-box;
    background-color: var(--color-almond);
}

img {
  width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s, transform .3s;
    font-weight: 400;
}

a span {
    display: inline-block;
    transition: transform .3s;
}

/* ================== Header Styling ================== */

header {
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    z-index: 998;
    color: white;
    font-size: 1.3em;
    mix-blend-mode: difference;
}

#header-blur {
    position: fixed;
    left: 0;
    height: 50px;
    padding: 10px 30px;
    width: 100%;
    backdrop-filter: blur(5px);
    z-index: 996;
}

/*Mobile menu button animation*/
.mobile-nav-input {
    display: none;
}

.menu--1 label {
    display: block;
    cursor: pointer;
    position: fixed;
    width: 25vw;
    height: 25vw;
    max-width: 80px;
    max-height: 80px;
    top: -5px;
    right: 0;
    z-index: 998;
    mix-blend-mode: difference;
    padding: 0 10px;
}

.menu--1 path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    --length: 24;
    --offset: -38;
    stroke-dasharray: var(--length) var(--total-length);
    stroke-dashoffset: var(--offset);
    transition: all .8s cubic-bezier(.645, .045, .355, 1);
}

.menu--1 circle {
    fill: #fff3;
    opacity: 0;
}

.menu--1 label:hover circle {
    opacity: 1;
}

.cross input:checked+svg .line--1,
.cross input:checked+svg .line--3 {
    --length: 22.627416998;
}

.cross input:checked+svg .line--2 {
    --length: 0;
}

.back input:checked+svg .line--1,
.back input:checked+svg .line--3 {
    --length: 8.602325267;
}


.menu--1 .line--1,
.menu--1 .line--3 {
    --total-length: 126.64183044433594;
}

.menu--1 .line--2 {
    --total-length: 70;
}

.menu--1 input:checked+svg .line--1,
.menu--1 input:checked+svg .line--3 {
    --offset: -94.1149185097;
}

.menu--1 input:checked+svg .line--2 {
    --offset: -50;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -110%;
    flex-direction: column;
    z-index: 997;
    height: 100vh;
    width: 100vw;
    background-color: #191A1E;
    transition: right 1s;
    font-size: 2em;
    opacity: 1;
    mix-blend-mode: normal;
    color: white;
    font-weight: 600;
}

nav a {
    margin-right: 0;
    margin-bottom: 35px;
}

nav a:last-of-type {
    margin-right: 0;
}

.show-nav-mob {
    right: 0;
}

.overflow-mob {
    width: 110%;
}

.mix-blend-off {
    mix-blend-mode: normal;
}

@media screen and (min-width: 800px) {

    .menu--1 {
        display: none;
    }

    nav {
        float: right;
        position: fixed;
        right: 0;
        width: 50%;
        padding: 10px 30px;
        background-color: transparent;
        z-index: 999;
        height: auto;
        width: auto;
        flex-direction: row;
        font-size: 18px;
        letter-spacing: 3px;
        font-weight: 700;
        mix-blend-mode: difference;
    }

    nav a {
        margin-right: 35px;
        margin-bottom: 0;
    }

    nav a:last-of-type {
        margin-right: 0;
    }

    nav a:hover {
        letter-spacing: 5px;
        color: #FFE082;
        transition: 1s;
    }

    .overflow-mob {
        width: 40%;
    }
}

/* ================== Hero Styling ================== */

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-frac {
  height: 15%;
  width: 80%;
  max-height: 300px;
  display: flex;
  background-color: transparent;
  overflow: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.first {
  top: 5%;
}

.second {
  top: 11%;
}

.img-hero {
  flex: 2;
  height: 100%;
}

.img-hero-mbl {
  display: none;
}

.img-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.inv-hero {
  flex: 1;
  height: 100%;
  background-color: transparent;
}

.hm-hero {
  background-color: var(--color-feldgrau);
  flex: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: left;
}

.hm-hero p {
  color: var(--color-white);
  width: 70%;
}

@media only screen and (max-width: 800px) {

    .hero {
        padding-bottom: 150px;
    }

  .hm-hero {
    padding: 5px;
  }

  .img-hero {
    display: none;
  }

  .img-hero-mbl {
    display: block;
    flex: 2;
  }

  .grid-frac {
    height: 15%;
    width: 80%;
    max-height: 400px;
  }

  .first {
    top: 3%;
  }

  .second {
    top: 6%;
  }

}


/* ================== About Styling ================== */

.about {
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center content vertically */
    align-items: center;
    height: 100vh; /* Full viewport height */
    background-color: var(--color-feldgrau);
    gap: 20px; /* Consistent spacing between elements */
    padding: 20px;
}

.skills {
    width: 100%;
    text-align: center;
    margin: 0; /* Remove unnecessary margin */
}

.skills-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.bio-img-container {
    display: flex; /* Align bio and img-test side by side */
    width: 100%;
    max-width: 1200px; /* Optional: Limit width for larger screens */
    gap: 20px; /* Space between bio and img-test */
}

.bio {
    flex: 1; /* Allow bio to take half the space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    margin: 0;
    text-align: left;
}

.img-test {
    flex: 1; /* Allow img-test to take half the space */
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center;
}

.img-test img {
    max-width: 100%;
    border-radius: 5px;
    filter: drop-shadow(1rem 1rem 10px var(--color-gunmetal));
}

@media screen and (min-width: 800px) {
    .bio-img-container {
        flex-direction: row; /* Keep bio and img-test side by side */
    }
}

@media screen and (min-width: 1000px) {

    .bio-img-container {
        gap: 40px; /* Increased space between bio and img-test for larger screens */
    }

    .img-test img {
        max-width: 30vw; /* Restrict size for larger viewports */
    }
}

@media screen and (min-width: 1800px) {
    .bio-img-container {
        gap: 60px; /* Increase space between bio and img-test */
        height: 600px;
    }

    .bio {
        flex-grow: 2; 
        min-width: 40%; 
        max-width: 70%; 
        height: auto; 
        display: flex;
        flex-direction: column;
        justify-content: center; 
    }

    .img-test {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .img-test img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 800px) {
    .about {
        flex-direction: column; 
        height: auto; 
        padding: 150px 0; 
        gap: 15px; 
    }

    .skills {
        text-align: center; 
        width: 80%; 
        display: flex;
        flex-direction: column; 
        align-items: baseline; 
        gap: 10px; 
    }

    .skills-list {
        text-align: left; 
        max-width: 400px; 
        width: 90%; 
        display: flex;
        flex-direction: column; 
        gap: 10px;
    }

    .skills h3, .skills-list h4 { 
        margin-bottom: 0;
        font-size: 0.9em;
    }

    .bio-img-container {
        flex-direction: column;
        gap: 15px; 
        width: 100%; 
        align-items: center;
    }

    .bio {
        text-align: left;
        width: 80%;
    }

    .bio h2 {
        font-size: 1.5rem; /* Adjust heading size */
    }

    .bio p {
        font-size: 1rem; /* Maintain readability */
        line-height: 1.5; /* Add spacing between lines */
    }

    .img-test img {
        max-width: 80%; 
        height: auto; 
        margin: 0 auto;
    }
}



/* ================== Project Styling ================== */

.project {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
}

.project-title {
  font-size: 3rem;
  margin-bottom: 40px;
  color: var(--color-gunmetal);
}

/* Project Slider Styling */
.project-slider {
  width: 100%;
  position: relative;
  overflow: hidden; /* Hide overflow to show only visible projects */
}

.glide__slides {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  gap: 30px; /* Space between items */
  transition: transform 0.5s ease-in-out;
}

.glide__slide {
  flex-shrink: 0; /* Prevent shrinking */
  width: 350px; /* Ensure each project box is 350px wide */
  height: 250px; /* Ensure each project box is 250px high */
  display: flex;
  justify-content: center;
  align-items: center;
}

.glide__arrow {
    background-color: transparent;
    padding: 10px;
    cursor: pointer;
    border-radius: 15px;
    border: none;
    height: 45px;
    width: 45px;
    margin-right: 15px;
}

.glide__arrow:hover .arrow {
    border: solid #A58861;
    border-width: 0 3px 3px 0;
}

.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transition: all .3s;
}

.prev-arrow {
    transform: rotate(135deg);
}

.next-arrow {
    transform: rotate(-45deg);
}


.project-box {
  position: relative;
  width: 350px; /* Fixed width for project box */
  height: 250px; /* Fixed height for project box */
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.project-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.project-box:hover img {
  transform: scale(1.1);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-orchid);
  transform: translateY(100%);
  padding: 15px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.project-box:hover .project-info {
  transform: translateY(0);
}

.project-info h3 {
  margin: 0;
  font-size: 1.8rem;
}

.project-info p {
  font-size: 1rem;
}

/* Adjust grid layout based on screen size */
@media (max-width: 1200px) {
  .glide__slides {
    gap: 20px; /* Less space between projects on medium screens */
  }
}

@media (max-width: 768px) {
  .glide__slides {
    gap: 10px; /* Less space on smaller screens */
  }
}

@media (max-width: 480px) {
  .glide__slides {
    gap: 5px; /* Tighten space on very small screens */
  }
}

/* ================== Resume Styling ================== */

.contact-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: row; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    background-color: var(--color-feldgrau);
    gap: 20px; 
    padding: 20px;
    flex-wrap: wrap;
}

.contact-wrapper {
    max-width: 1200px; /* Set max-width to 1200px */
    margin: 0 auto; /* Center the section */
    padding: 0 20px; /* Add some padding for responsiveness */
}

.contact-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content vertically */
    align-items: center;
    gap: 15px;
    flex: 1;
}

.left-box {
    flex: 1; /* Allow left box to take up space */
    text-align: left;
    align-items: left;
    justify-content: left;
}

.left-box p, .left-box h2, .left-box a {
    text-align: left; /* Ensure all child elements are also aligned left */
}

.right-box {
    flex: 1; /* Allow right box to take up space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-link {
    text-decoration: none;
    color: #A58861; /* Color of the link */
    font-size: 1.2rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #F79E6B; /* Change color on hover */
}

.contact-box img {
    width: 100%;
    height: auto;
    max-width: 350px; /* Limit image size */
    border-radius: 10px; /* Optional rounded corners */
}

@media screen and (max-width: 800px) {
    .contact-section {
    }
}

/* ================== Footer Styling ================== */

footer {
}

.copyright {
    background-color: #000000;
  }

.copyright p {
    font-size: 13px;
    text-align: center;  
    max-width: none;    
    margin: 0;
    padding: 1rem 0;
  }

/* ================== Project Styling ================== */


.first-section {
    text-align: center;
    padding: 70px 0;
    background-color: var(--color-white);
    color: var(--color-gunmetal);
    max-width: 1300px;
    margin: auto;
    box-sizing: border-box;
}

.col-left {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 35px;
}

.col-right {
    width: 80%;
    padding: 5% 10% 0 10%;
}

.project-image {
    max-width: 100%;
    margin-top: 20px;
}

.project-image2 {
    margin: 25px auto;
}

.small-text {
    font-size: .9em;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    width: 100%;
    color: #A58861;
    font-weight: 700;
    opacity: 1;
}

.second-section h5::after {
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 2px solid black;
    opacity: .15;
    margin-bottom: 30px;
}

.first-section h3 {
    color: var(--color-gunmetal);
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: none;
}

.first-section h2 {
    font-size: 5.5vh;
}

.section {
    box-sizing: border-box;
    position: relative;
    padding: 150px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-almond);
}

.second-section {
    min-height: 100vh;
    max-width: 1300px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: auto;
    color: var(--color-gunmetal);
}

.section h4 {
    color: #191A1E;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
}

.overview {
    text-align: left;
}

.details {
    text-align: left;
}

.details div {
    margin-bottom: 10px;
}

.details hr {
    border: none;
    border-top: 1px solid var(--color-gunmetal);
    margin: 10px 0;
}

@media (min-width: 800px) {
    .first-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .first-section p,
    .first-section h1,
    .first-section h2 {
        margin-right: 20px;
    }

    .col-left {
        margin-left: 10%;
        margin-right: 5%;
        margin-bottom: 0;
        max-width: 520px;
    }

    .col-right {
        margin-right: 10%;
        margin-left: 5%;
        width: 30%;
        padding: 0;
    }

    .section {
        flex-direction: row;
    }

    .second-section {
        flex-direction: row;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .second-section p, h5 {
        font-size: 18px;
    }

    .overview {
        grid-column: 1 / 2;
    }

    .details {
        grid-column: 2 / 3;
    }

    .project-image {
        grid-column: span 2;
        width: 30%;
        position: relative;
        left: -10%;
    }

    .project-image2 {
        grid-column: 1 / -1; /* Spans across all columns in a grid layout */
        max-width: 100%;
    }

}

/* ================== Gallery Styling ================== */

/* Preserve existing styles */

/* New Gallery Container Styling */
.image-gallery-container {
    min-height: 100vh;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: auto;
    color: var(--color-gunmetal);
}

/* Gallery Layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive grid with a minimum of 200px per image */
    gap: 20px; /* Space between the images */
    padding: 0 10px; /* Padding around the gallery */
    width: 100%;
}

/* Individual Image Styling */
.gallery-item {
    position: relative; /* Needed for absolute positioning of the name */
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures images cover the available space without distortion */
    border-radius: 8px; /* Optional: adds rounded corners to images */
    transition: transform 0.3s ease-in-out; /* Smooth zoom effect */
}

.gallery-image:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

/* The Name Overlay Box */
.image-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6); /* Slightly transparent dark background */
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out; /* Fade-in effect */
    border-bottom-left-radius: 8px; /* Optional: rounded bottom corners */
    border-bottom-right-radius: 8px; /* Optional: rounded bottom corners */
}

.gallery-item:hover .image-name {
    opacity: 1; /* Show the name box on hover */
}

/* Media query for larger screens */
@media (min-width: 800px) {

    .image-gallery-container {
        padding: 0 20px; /* Adjust the inner section padding */
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for larger screens */
    }
}

/* ================== Test Box ================== */
.contact-btn {
    position: relative;
    top: -3px;
    width: 50px !important;
    height: 50px;
    z-index: 20;
    background: url("img/clover.svg")no-repeat; /* Need SVG Icon */
    border-radius: 25px;
    isolation: isolate;
}



/* Projects Section */

.full-height {
    color: var(--color-gunmetal);
}

.glide__slides {
    height: 310px;
    padding-top: 10px !important;
}

.glide__slide {
    position: relative;
    line-height: 100px;
    margin: 0;
    background-color: white;
    height: 100%;
    border-radius: 10px;
    padding: 0; /* Remove padding for proper alignment */
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 350px;
}

.glide__slide img {
    width: 100%; /* Ensure the image fits inside the box */
    height: 100%;
    object-fit: cover; /* Adjust to maintain aspect ratio */
    display: block;
}

.glide__slide:hover {
    transform: scale(1.05); /* Slight zoom for the whole box */
}

/* Hover box styling */
.glide__slide .hover-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: white; /* Text color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.glide__slide:hover .hover-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover box content styling */
.hover-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.hover-box p {
    font-size: 1em;
    margin: 0;
}

.glide__arrows {
    display: flex;
    justify-content: center; /* Center the arrows horizontally */
    align-items: center;
    position: relative; /* Allow positioning within the container */
    margin-top: 15px;
    gap: 15px; /* Add space between the arrows */
    width: 100%;
}

.glide__arrow {
    background-color: transparent;
    padding: 10px;
    cursor: pointer;
    border-radius: 15px;
    border: none;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glide__arrow:hover .arrow {
    border: solid #A58861;
    border-width: 0 3px 3px 0;
}

.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transition: all 0.3s;
}

.prev-arrow {
    transform: rotate(135deg);
}

.next-arrow {
    transform: rotate(-45deg);
}



.col-left {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 35px;
}

.col-right {
    margin-right: 0;
    margin-left: 0;
}

.auto-width {
    width: 80%;
}

.col-30,
.col-40,
.col-50,
.col-60 {
    width: 80%;
}

.offset-mob {
    box-sizing: border-box;
    width: 90%;
    align-self: flex-end;
}

@media only screen and (min-width: 800px) {
    .col-left {
        margin-left: 10%;
        margin-right: 5%;
        margin-bottom: 0;
    }

    .col-right {
        margin-right: 10%;
        margin-left: 5%;
    }

    .auto-width {
        width: auto;
    }

    .col-30 {
        width: 520px;
    }

    .col-40 {
        width: 40%;
    }

    .col-50 {
        width: 50%;
    }

    .col-60 {
        width: 60%;
    }

    .offset-mob {
        width: 50%;
        align-self: auto;
    }
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-b-50 {
    margin-bottom: 50px;
}


@media screen and (min-width: 1025px) {
    section.full-height {
        min-height: 100vh;
        padding: 100px 0;
    }
}

@media only screen and (max-width: 800px) {
    .col-30 {
        margin: 0 auto;
    }

    .full-height {
        padding: 150px 0;
    }
}

.project-container {
    width: 80%; /* Set the container to 80% width of the section */
    margin: 0 auto; /* Center the container horizontally */
    overflow: hidden; /* Hide any content that overflows the container */
}

.banner {
    position: absolute;
    top: 100px;
    height: 50px;
    padding: 10px 30px;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    color: whitesmoke;
    font-size: 1.5em;
    font-weight: bold;
    z-index: 996;
    box-sizing: border-box;
}