/* Custom fonts */
@font-face {
    font-family: 'Gotham Black';
    src: url('assets/g_b.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Light';
    src: url('assets/g_l.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Thin';
    src: url('assets/g_t.otf') format('opentype');
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Gotham Light', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    line-height: 2rem;
}

.fullscreen-header {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.75), rgba(14, 32, 71, 0.75)), url('assets/background.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    background-attachment: fixed;
    background-position: center center;
}

.fullscreen-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-attachment: fixed;
    z-index: -1;
}

.header-content .header-title {
    position: absolute;
    top: 20%;
    left: 15%;
    font-family: 'Gotham Black', sans-serif;
    font-size: 3.5rem; /* Adjust the font size as needed */
    color: #fff; /* Adjust the text color as needed */
}

.header-content .header-text {
    position: absolute;
    top: 30%;
    left: 18%;
    font-family: 'Gotham Light', sans-serif;
    font-size: 1.25rem;
    color: #fff;
    line-height: 2rem;
}

.cta-button {
    position: absolute;
    bottom: 10%;
    right: 10%;
    display: inline-block;
    padding: 30px 40px;
    background-color: #0584bb;
    color: #fff;
    font-family: 'Gotham Black', sans-serif;
    font-size: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #41c2f8;
    color: #fff;
}

.header-content .logo {
    position: absolute;
    top: 8%;
    left: 8%;
    width: 200px;
}

.technologies {
    text-align: left;
}

.technologies h2 {
    font-family: 'Gotham Black', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2%;
}

.technologies .logos {
    justify-content: left;
    gap: 20px;
}

.technologies .logos img {
    width: 400px;
    height: auto;
}

.contact {
    text-align: left;
    font-size: 1.0rem;
    width: 30%;
}

.contact .contact-box {
/*    display: inline-block;
    padding: 40px 60px 40px 60px;
    border-radius: 8px;
    background-color: #057db1;
    max-width: 600px;*/
}

.social-media {
    text-align: left;
    padding: 2% 0 4%;
}

.social-media img {
    width: 30px;
    height: auto;
    margin-top: 1%;
    margin-bottom: 1%;
}

.email-link {
    text-decoration: none; /* Remove underline */
    color: #41c2f8; /* Set the text color */
}

.email-link:hover {
    text-decoration: none; /* Add underline on hover if desired */
    color: #fff; /* Hover color */
}

@media (max-width:800px) {

    .header-content .header-title {
        top: 10%;
        left: 10%;
        font-size: 2.5rem;
    }

    .header-content .header-text {
        top: 20%;
        left: 10%;
        font-size: 1.0rem;
    }

    .header-content .logo {
	    position: absolute;
	    top: 3%;
	    left: 7%;
	    width: 150px;
	}
	.contact {
	    text-align: left;
	    font-size: 1.0rem;
	    width: 30%;
	}
}