/*@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');*/
/*
@font-face {
    font-family: 'Bodoni';
    src: url('fonts/bodoni.woff2') format('woff2'),
         url('fonts/bodoni.woff') format('woff');
}
*/

@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700&display=swap');

body {
    /*font-family: 'Libre Baskerville', Normal text;*/
    font-family: 'Nanum Gothic', sans-serif;
    overflow-x: hidden; 
    max-width: 100vw;
}

h1, h2, h3 {
    font-family: 'Nanum Gothic', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
}

lu{
    font-family: 'Nanum Gothic', sans-serif; 
}

:root {
    --background: linear-gradient(135deg, #667eea7e 0% #764ba298 100%);
    --color-primary: #2c4472;
    --color-secondary: #764ba2;
    --boton-padding: 20px 40px;
    --gm-blue: #2c4472;
}



a {
    text-decoration: none;
}

header {
    justify-content: space-between;
}

.container {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1200px;
}

.subtitle {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 35px;
}

.hero {
    height: 100vh;
    background-image: url('../assets/hero.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.hero .container{
    padding: 0;

}

.hero__container {
    display: flex;
    height: calc(100vh - 70px);
    align-items: center;
    color: #fff;
}

.hero__texts {
    width: 80;
    margin-bottom: 60;
}

.hero__title {
    font-family: 'Nanum Gothic';
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    font-style: bold 700;
}

.hero__subtitle {
    font-size: 1.7rem;
    font-weight: 300;
    margin: 15px 0;
}

.hero__cta {
    display: inline-block;
    background: #fff;
    color: var(--color-primary);
    padding: var(--boton-padding);
    text-decoration: none;
    border-radius: 40px;
}

.presentation {
    text-align: center;
}

.presentation__picture {
    max-width: 150px;
    height: 150px;
}

.topheader {
    z-index: 9999;
    position: fixed;
    background-color: #2c4472;
    top: 0;
    left: 0;
    width: 100%;
    transition: height 0.3s ease-in-out;
}

.topheader.scrolled {
    height: 57px;
}

.logo img {
    height: 15px;
}

.menu li a {
    font-size: 8px;
}





