:root {
    --background: #fff;
    --background1: #121212;
    --background2: #16171B;
    --head-bg: #F0F0EB;
    --primary-1: #393939;
    --primary-2: #FF6611;
    --primary-3: #FABC1C;
    --primary-4: #f1fbfb;
    --primary-5: #FEF6F0;
    --primary-6: #FAFAFA;
    --secondary: #666666;
    --secondary-2: #f9f9f9;
    --text-color: #292929; 

    --border-radius-1: 2000px;
    --border-radius-2: 30px;
    --border-radius-3: 60px;
    --border-radius-4: 10px;


    --z-index-1: 1;

    --font-family-1: 'Inter', sans-serif;
    --font-family-2: 'Sebenta', sans-serif;
    --font-family-3: 'Bueno', sans-serif;
    --font-family-4: 'Haffer', sans-serif;

}

/* Sebenta */
@font-face {
    font-family: 'Sebenta';
	src: url('Assets/Font/Sebenta/Medium-Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
	font-family: 'Sebenta';
	src: url('Assets/Font/Sebenta/Medium.ttf') format('truetype');
    font-weight: 500;
}



/* Inter*/
@font-face {
	font-family: 'Inter';
	src: url('Assets/Font/Inter/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
	font-family: 'Inter';
	src: url('Assets/Font/Inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
	font-family: 'Inter';
	src: url('Assets/Font/Inter/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
	font-family: 'Inter';
	src: url('Assets/Font/Inter/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
}




/* General settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    /* overflow: hidden; */
  }

body {
    background-color: var(--head-bg);
}

h1, h2 {
    color: #000;
    font-family: var(--font-family-2);
    font-weight: 500;
}

h3, h4{
    color: #000;
    font-family: var(--font-family-2);
    font-weight: 500;
    /* text-transform: uppercase; */
    /* letter-spacing: -1px; */
}

h1 {
    font-size: 188px;
    line-height: .9;
    letter-spacing: -3px;
    /* text-transform: uppercase; */
}

h2 {
    font-size: 100px;
    letter-spacing: -2px;
    line-height: 1.1;
}

h3 {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -1px;
    /* letter-spacing: -1.5px; */
}

h4 {
    font-size: 34px;
}

p, a {
    /* font-feature-settings: 'ss01'; */
    font-size: 20px;
    line-height: 1.6;
    font-family: var(--font-family-1);
    color: var(--text-color);
    font-weight: 400;
}

small {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--font-family-1);
    color: var(--text-color);
    font-weight: 400;
    /* font-feature-settings: "ss03" 1, "ss04" 1; */
}

ul {
    list-style-type: none;
}

ul li {
    font-family: var(--font-family-1);
    color: var(--text-color);
    font-size: 18px;
    line-height: 28px;
    /* font-feature-settings: "ss03" 1, "ss04" 1; */
}

ul li a {
    text-decoration: none;
}

a {
    text-decoration: underline;
    /* color: var(--background); */
}

::placeholder {
    font-family: var(--font-family-1);
    /* font-feature-settings: "ss03" 1, "ss04" 1; */
}



/* MOBILE - NAV */
.mob-nav {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 10;
    background-color: var(--head-bg);
    padding: 10%;
    /* display: flex;
    align-items: center; */

}

.closebtn1 {
    font-family: var(--font-family-4);
    font-size: 50px;
    position: fixed;
    right: 0;
    top: 0;
    margin: 5% 10% 0 0;
    /* align-self: flex-end; */
    cursor: pointer;
    /* border: 1px solid red; */

}

.mob-nav .mob-list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    /* border: 1px solid red; */
    margin-top: 40px;
    height: 80%;
    width: 100%;
}

.mob-nav h3, .mob-nav a {
    color: var(--text-color);
}

.mob-nav .mob-list .mob-1{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mob-list .mob-1 a {
    text-decoration: none;
    font-family: var(--font-family-2);
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -2px;
}

.mob-list .mob-2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mob-list .mob-2 a {
    text-decoration: none;
    /* font-weight: 500;
    font-size: 20px; */
}

.mob-list .mob-2 h3 {
    font-size: 24px;
}


/* Nav bar */
nav {
    width: 100%;
    padding: 24px 5% 24px 5%;
    /* background-color: #000; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid red; */
}

nav a img {
    width: 180px;
}

nav .nav-icon {
    width: 42px;
    display: none;
}

nav ul {
    display: flex;
    gap: 24px;
}

nav ul li:hover{
    opacity: 0.6;
}

.logo2 {
    display: none;
}

button {
    background-color: var(--background);
    border: none;
    color: #000;
    padding: 16px 32px;
    font-family: var(--font-family-1);
    font-size: 18px;
    /* border-radius: var(--border-radius-4); */
    font-weight: 500;
    cursor: pointer;
    Min-width: 180px;
}

button:hover {
    opacity: 0.8;
    /* color: var(--background); */
}


header {
    width: 90%;
    margin: 120px auto 120px auto;
}

header div {
    min-width: 600px;
    width: 50%;
}

.img-head {
    /* margin: 80px 0 80px 0; */
    width: 100%;
    height: 600px;
    /* border-radius: 20px; */
}

.img-head img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center center;
    object-fit: cover;
    image-rendering: auto;
}

.project {
    width: 90%;
    margin: 40px auto 0 auto;
}

.projectgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    width: 90%;
    margin: 40px auto 0 auto;
}


.projectgrid img, .projectgrid video {
    width: 100%;
    display: block;
    border-radius: 8px;
    /* margin-bottom: 40px; */
}


.project img, .project video {
    width: 100%;
    display: block;
    margin-bottom: 40px;
    border-radius: 8px;

}

.full-col {
    grid-column: 1 / -1;
}



/* hr {
    width: 90%;
    margin: 40px auto;
    opacity: .3;
} */





/* call to action */
.call-to-action {
    width: 100%;
    text-align: center;
    margin: 160px auto;
    background-color: #FF82C2;
    padding: 200px 10%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.call-to-action h2 {
    /* margin-bottom: 40px; */
    font-family: var(--font-family-2);
    font-size: 100px;
    font-weight: 400;

}

.call-to-action p,.call-to-action h2, .call-to-action a {
    color: #000;
}

.call-to-action span {
    font-style: italic;
}

.call-to-action button {
    align-self: center;
    background-color: #000;
    color: var(--background);
}

.call-to-action a {
    text-decoration: none;
}





/* Footer */

footer {
    width: 100%;
    margin: 100px auto 100px auto;
    text-align: center;
}

footer div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 5% 0 5%;
}

footer div a {
    text-decoration: none;
}


/* contact */
.contact {
    position: fixed;
    z-index: 2;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--head-bg);
    padding: 80px 0;
    overflow-y: scroll;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.contact h2, .contact h3 {
    color: var(--background2);
}

.contact p {
    color: var(--secondary);
}

.closebtn {
    font-family: var(--font-family-1);
    font-size: 50px;
    align-self: flex-end;
    cursor: pointer;
}

.mail {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.mail a {
    text-decoration: none;
    background-color: var(--background2);
    color: var(--background);
    padding: 16px 20px;
    /* border-radius: var(--border-radius-4); */
    display: block;
    margin: 0 auto 0 auto;
    width: 270px;
}

.mail a:hover {
    opacity: .8;
}

.mail-int {
 position: relative;
 width: 90%;
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
}

.mail-int:hover .mail-det {
    display: block;
}

.mail-det {
    display: none;
    position: absolute;
    background-color: var(--background);
    width: 600px;
    padding: 40px;
    border-radius: var(--border-radius-4);
    bottom: 40px;
    right: 50%;
    transform: translate(50%);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.03),0 8px 10px -6px rgba(0,0,0,.03);;
}

.mail-det div {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mail-det h3 {
    margin-bottom: 20px;
    line-height: 1;
}






@media screen and (max-width: 1380px) {

    h1 {
        font-size: 160px;
    }

}



 

@media screen and (max-width: 1200px) {

    h2 {
        font-size: 80px;
    }

    header {
        gap: 50px;
    }

    .call-to-action h2 {
        font-size: 70px;  
    }
}


/* @media screen and (max-width: 900px) {

    .call-to-action {
        margin: 80px auto;
    }
} */


@media screen and (max-width: 900px) {


    button {
        font-size: 16px;
        min-width: 160px;
    }

    nav a img {
        width: 150px;
    }

}


@media screen and (max-width: 840px) {

    nav ul {
        display: none;
    }

    nav .nav-icon {
        display: block;
    }

}



@media screen and (max-width: 820px) {

    header {
        flex-direction: column-reverse;
    }

}

@media screen and (max-width: 800px) {


    h2 {
        font-size: 70px;
    }

    .projectgrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .call-to-action {
        padding: 100px 10%;
    }
 
 }



@media screen and (max-width: 700px) {

    h1 {
        font-size: 100px;
    }

    h2 {
        font-size: 60px;
    }
 

    .logo2 {
        display: block;
        width: 50px;
    }

    nav a img {
        display: none;
    }

    button {
        font-size: 14px;
        Min-width: 160px;
    }

    nav a img {
        width: 130px;
    }

    h4 {
        font-size: 24px;
    }

    /* header, .project, .projectgrid {
        width: 90%;
    } */

    header {
        margin: 90px auto 90px auto;
    }

    header h2 {
        width: 100%;
    }
    
    header div {
        min-width: unset;
        width: 100%;
    }

    .img-head {
    height: 240px;
    /* border-radius: 20px; */
    } 
    

    .infos form {
        padding: 30px;
    }

    
    .mail-det {
        width: 100%;
    }

    .call-to-action h2 {
        font-size: 50px;  
    }

}




@media screen and (max-width: 500px) {

    ::placeholder {
        font-size: 16px;
    }

    h1 {
        font-size: 80px;
    }

    h2 {
        font-size: 40px;
    }

    p, a {
        font-size: 16px;
        line-height: auto;
    }


    ul li {
        font-size: 16px;
    }

    small {
        font-size: 16px;
    }

    footer small {
        font-size: 12px;
    }


    .logo2 {
        width: 40px;
    }

    button {
        font-size: 14px;
        Min-width: 100px;
    }

    .project img, .project video {
        margin-bottom: 20px;
    }

    .head1 img {
        width: 80px;
    }

    .alert .alert-box {
        /* padding: 40px 60px; */
        width: 100%;
        border-radius: unset;
    }

    .call-to-action h2 {
        font-size: 40px;  
    }
    
}

@media screen and (max-width: 359px) {

    h1 {
        font-size: 70px;
    }
}

 