body {
    margin: 0;
    /* font-family: "din-2014", sans-serif;
    font-style: normal; */
    /* font-family: "neue-haas-grotesk-display", sans-serif; */
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
h1 {
  font-size: 5.5vw;
  font-weight: 600;
  margin: 0;
}

h2{
    font-size: 2vw;
    margin: 22px 0 46px;
    font-weight: 200;
    line-height: 1.5;
}

h3{
      font-size: 1.8rem;
    font-weight: 300;
    margin: 0;
}

h4{
  font-size: 1.6rem;
  font-weight: 200;
  padding-bottom: 4vw;
  margin: 0;

}

h5{
  font-size: 1.2rem;
  font-weight: 200;
  margin: 0;
}

h6{
  font-size: 1rem;
  font-weight: 200;
  margin: 0;
}


a {
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
}


.project-information-columns2 h3{
    font-size: 2rem;
}

p{
    font-weight: 300;
}



/* MENIU | HEADER */

#header {
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7vw;
    height: 12vh;
    transition:  0.5s ease;
     -webkit-backdrop-filter: blur(0px);
     backdrop-filter: blur(0px);
    /* mix-blend-mode: exclusion; */
    transition: background-color 0s;

}
#header.blur{
    -webkit-backdrop-filter: blur(3px);
     backdrop-filter: blur(3px);
}

#logo {
    
    opacity: 0;
}

.logo img {
    height: 32px;
    mix-blend-mode: normal; 
}

.logo img.exclusion {
    mix-blend-mode: exclusion;
}

#header.black .logo img{
    filter: invert(1);
}

#header.exclusion{
    mix-blend-mode: exclusion;
        background-color: black;
transition: background-color 0s;
    
}

    .header.active {
        background-color: rgb(247 247 247) !important;
        mix-blend-mode: normal !important;
    }

#header.active .logo img{
    filter: invert(1)!important;
}

.nav-links {
    display: flex;
    gap: 54px;
}

.nav-links a {
    color: white;
}

#header.black .nav-links a, #header.active .nav-links a {
    color: #393e46;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Burger styles */
.burger {
    width: 30px;
    height: 20px;
    /* margin: 10px 10px; */
    position: relative;
    cursor: pointer;
    display: none;

}
.burger.image-hover span{
    background-color: white;
}
.burger.white span{
    background-color: white;
}


.burger span {
    background-color:#000000;
  position: absolute;
  border-radius: 2px;
  transition: .3s ease-in-out;
  width:100%;
  height: 2px;
  transition-duration: 500ms;
  transition: background-color 0s;
}

.burger.open span{
    background-color: #000000;
}
.burger span:nth-child(1){
  top:0px;
  left: 0px;
}
.burger span:nth-child(2){
  top:9px;
  left: 0px;
  opacity:1;
}
.burger span:nth-child(3){
  bottom:0px;
  left: 0px;
}
.burger:not(.open):hover span:nth-child(1){
  transform: rotate(0deg) scaleY(1.1);
}
.burger:not(.open):hover span:nth-child(2){
  transform: rotate(0deg) scaleY(1.1);
}
.burger:not(.open):hover span:nth-child(3){
  transform: rotate(0deg) scaleY(1.1);
}
.burger.open span:nth-child(1){
  transform: rotate(45deg);
  top: 13px;
}
.burger.open span:nth-child(2){
  opacity:0;
}
.burger.open span:nth-child(3){
  transform: rotate(-45deg);
  top: 13px;
}

.nav-links.excl a{
    color: white!important;
}

/* Mobile nav toggle */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        /* display: none; */
        opacity: 0;
        top: 12vh;
        right: 0;
        background-color: rgb(247 247 247);
        flex-direction: column;
        gap: 36px;
        width: 100%;
        text-align: end;
        padding-right: 10vw;
        padding-bottom: 40px;
        padding-top: 40px;
        transition: 0.5s ease;
    }

    .nav-links.active {
        display: flex;
                opacity: 1;

    }

}



/* PROJEKTO, DARBO PUSLAPIS */

section{
        background: #f2f3f4;
        padding-left: 7vw;
        padding-right: 7vw;
              color: #333;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.project-first-section {
    margin-top: -12vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8vh 7vw;
    box-sizing: border-box;
    
}

.project-first-section {
    background-color: black!important;
    background-size: cover;
    color: white;
}

.project-first-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    animation: 1s ease fadeInUp;
}

.project-headline {
    max-width: 70%;
        /* text-transform: uppercase; */
}



.project-details {
    text-align: right;
    font-size: 1.2rem;
    line-height: 1.6;
    width: 25%;
    font-weight: 300;
}


@media (max-width: 768px) {
    .project-first-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .project-headline, .project-details {
        max-width: 100%;
        text-align: left;
    }
}

.column {
    float: left;
}


.left{
    width: 35%;
}

.right{
    width: 65%;
}

 .project-information-above{
    width: 25%;
    padding-bottom: 5vh;
    font-weight: 200;
}

.project-information {
    background-color: #F2F3F4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14vh 7vw 12vh 7vw;
        box-sizing: border-box;
}

.project-information-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}



.project-information-columns2 {
    max-width: 55%;
}


.project-information-columns1 {
    font-size: 1rem;
    width: 25%;
}



.one-image1 img{
    height: 90vh;
    width: 100%;
    padding-bottom: 4vh;
}
.one-image2 img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    padding-bottom: 4vh;
}
.one-image2{
    padding: 0!important;
}

.two-images1, .two-images2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4vh;
}

.two-images1{
    height: 75vh;
}

.two-images2{
    height: 90vh;
}

.two-images1 img, .two-images2 img{
    height: 100%;
    object-fit: cover;

}
.two-images1 img:nth-child(1){
    width: 38%;
    margin-right: 2vw;
}

.two-images1 img:nth-child(2){
    width: 60%;
}

.two-images2 img:nth-child(1){
    width: 60%;
    margin-right: 2vw;
}

.two-images2 img:nth-child(2){
    width: 38%;
}

/*HoMEPAGE*/

 svg {
	width: 50px;
	height: auto;
}

.arrow-icon {
	
	path {
		transition: 0.25s ease;
	}
	
	&:hover {

		
		path:nth-child(2) {

			transform: translateX(4px);
		}
		
		path:nth-child(3) {
			transform: translateX(4px);
		}
	}
}

.button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 18%;
    float: left;
}

.button a{
    color: #393e46;
}



@media only screen and (max-width: 1200px){

    .nav-links a {
    font-size: 0.9rem;
}

}

@media only screen and (max-width: 767px){

     h1 {
    width: 90%;
    font-size: 11vw;
  }

h2 {
        font-size: 5vw;
        width: 90%;
        margin-bottom: 34px;
  }

  .portfolio h2 {
    width: 90%!important;
}
.tabcontent {

    grid-template-columns: auto!important;

}
    .logo img {
    height: 20px;
}


 .button {
        width: 100%;
            margin-bottom: 20px;

}

.button:nth-child(1){
    margin-bottom: 20px;

}

.button a {
    font-size: 4vw;
}


    .project-first-section {
        margin-top: -12vh;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: end;
        padding: 15vh 7vw 6vw 7vw;
        box-sizing: border-box;
    }
.project-headline {
        max-width: 100%;
        margin-bottom: 11vh;
        order: 2;
}

.project-headline h1 {
        font-size: 3rem;
        font-weight: 400;
        margin: 0;
        width: 90%;
                word-break: break-all;
}

.project-details {
        text-align: right;
        font-size: 1rem;
        line-height: 1.6;
        width: 50%;
        order: 1;
        /* margin-bottom: 24vh; */
        /* margin-top: 5vh; */
        align-self: end;
}

.project-first-content {
        flex-direction: column;
        align-items: flex-start;
            display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    animation: 1s ease fadeInUp;
    height: 100%;
    }


.project-information-above{
    width: 100%;
}



.project-information-columns {
    display: flex
;
    /* justify-content: space-between; */
    align-items: flex-end;
    flex-wrap: wrap;
}

.project-information-columns1 {
    font-size: 0.8rem;
    width: 100%;
    order: 2;
    /* display: none; */
}

.project-information-columns1 h6 {
    font-weight: 200;
    font-size: 1rem;
    width: 90%;
    justify-self: left;
}

.project-information-columns2 {
    max-width: 100%;
    margin: 6vh 0;
}

.project-information-columns2 h3 {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
    width: 100%;
    /* justify-self: flex-end; */
}
.one-image1, .one-image2, .two-images1, .two-images2{
    padding-left: 0;
    padding-right: 0;
}

.one-image1 img {
    height: auto;
    width: 100%;
    padding-bottom: 2vw;
    object-fit: cover;
}

.two-images1 {
    height: 25vh;
}

.two-images2 {
    height: 30vh;
}
.one-image2 img {
    height: auto;
    width: 100%;
    object-fit: cover;
    padding-bottom: 2vw;
}
}

.portfolio{
    margin-top: -12vh;
    /* height: 100vh; */
    padding-top: 54vh;
}


.tab {
  overflow: hidden;

}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 25px 76px 25px 0;
    transition: 0.3s;
    font-size: 1.2rem;
      color: #90949a;

}

/* Change background color of buttons on hover */
.tab button:hover {
  color: #393e46;
}

/* Create an active/current tablink class */
.tab button.active {
  color: #393e46;
}

/* Style the tab content */
.tabcontent {
  display: grid;
    padding-top: 8vh;
  border-top: none;
      grid-template-columns: auto auto auto;
      gap: 5vh;
}



.gallery-options img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.7;
    transition: 0.3s ease;
}

.gallery-options img:hover{
    opacity: 1;
    filter: grayscale(0);
}

.gallery-options h3{
    font-weight: 600;
}

.gallery-options a{
        color: black;
        text-transform: none;
}

.portfolio h2{
    margin: 0;
    width: 70%;
}
.gallery-options h4{
    padding: 2vh 0 0 0;}