@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Fira Sans, sans sans-serif;
    font-size: 20px;
}

h1 {
    font-family: Fira Mono, monospace;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -4px;
}

p {
    line-height: 1.5rem;
}

body {
    background-color: white;
    padding: 0;
}

.header {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0;
    border-bottom: 2px solid #06729D;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 1;
}

.logo-container {
    cursor: pointer;
    width: 104px;
    height: 100%;
    background-color: #06729D;
    text-align: center;
}

.logo {
    font-family: Fira Mono, monospace;
    font-size: 40px;
    color: #fff;
    line-height: 64px;
}

.header .nav-links {
    list-style: none;
}

.header .nav-links li {
    display: inline-block;
    padding: 0 20px;
}

.header .nav-links li a {
    color: #06729D;
    text-decoration: none;
}

.header .nav-links li a:hover {
    color: #FC7A1E;
}

.title-container {
    height: 384px;
    width: 100%;
    text-align: center;
}

.title-container .title {
    font-family: Fira Mono, monospace;
    font-weight: 500;
    font-size: clamp(120px, 18vw, 280px);
    letter-spacing: -.75rem;
    color: #06729D;
    text-decoration: none;
}

.hero .social {
    height: 384px;
    padding: 80px;
    align-content: end;
}

.hero {
    width: 100%;
    height: 768px;
    min-height: 760px;
    display: flexbox;
}

.img-header img {
    height: 760px;
    width: auto;
    position: absolute;
   top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.section2 {
    width: 100%;
    height: 800px;
    border-top: 40px solid #06729D;
    padding: 80px 80px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.section2 .left {
    width: 50%;
    height: 100%;
    display: block;

}

.section2 .left h1 {
    color: #373737;
}

.section2 .left p {
    margin-top: 40px;
    color: #373737;
}

.section2 .right {
    width: 50%;
    height: 100%;
    text-align: center;
}

.section2 .right img {
    height: 400px;
    width: auto;
}