body {
    margin: 0;
    font-family: "din-2014", sans-serif;
    font-style: normal;
}

a{
    text-decoration: none;
}

/* 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;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
}

#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;
}

/* 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: #F7F7F7;
        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: 8vw 7vw;
    box-sizing: border-box;
    
}

.project-first-section {
    background-color: black!important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)) , url(./fonas.jpg);
    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: 65%;
}

.project-headline h1{
    font-size: 4rem;
    font-weight: 400;
    margin: 0;

}

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


@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, .right {
    width: 50%;
}

 .project-information-above{
    width: 25%;
    padding-bottom: 16px;
}

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

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

.project-information-label {
    font-style: italic;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 10px;
}

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

.project-information-columns2 h2{
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}

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

h3{
    font-weight: 400;
    font-size: 1rem;
}

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

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

.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:nth-child(2) {
		d: path('M14.5 4H3.5H4');
	}
	
	path {
		transition: 0.25s ease;
	}
	
	&:hover {
		path:nth-child(1) {
			d: path('M15 4H4V4');
		}
		
		path:nth-child(2) {
			d: path('M14.5 4H3.5H0');
			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;
    text-decoration: none;
    font-size: 1rem;
        /* font-size: 1.25vw; */

}



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

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

}

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

    .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%;
}

.project-details {
        text-align: right;
        font-size: 0.8rem;
        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%;
    padding-bottom: 16px;
    font-size: 0.8rem;
    /* justify-items: end; */
}

.project-page-label {
    width: 90%;
    /* justify-content: end; */
}

.project-information-above p {
    width: 90%;
}

.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 h3 {
    font-weight: 400;
    font-size: 0.8rem;
    width: 90%;
    justify-self: left;
}

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

.project-information-columns2 h2 {
    font-size: 1.2rem;
    font-weight: 400;
    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;
}
}