﻿/** {
    margin: 0;
    padding: 0;
    font-family: Calibri;
    overflow-x: hidden;
}*/

.header {
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("../imgs/pexels-pixabay-269077_copy.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex; /* Make this a flex container */
    align-items: center; /* Vertically center the child elements */
    justify-content: center; /* Horizontally center the child elements */
}

.noimageheader {
    min-height: 100vh;
    width: 100%;
    background-image: none;
    background-position: center;
    background-size: cover;
    position: relative;
}

nav{
display: flex;
padding: 2% 6%;
justify-content: space-between;
align-items: center;
}

nav img{
    width:150px;
}

/*.nav-links{
    flex:1;
    text-align: right;
}

.nav-links ul li{
    list-style:none;
    display: inline-block;
    padding: 8px 12px;
    position:relative;
}

    .nav-links ul li a {
    color:#fff;
    text-decoration: none;
    font-size: 17px;
    }

    .nav-links ul li::after {
        content: '';
        width: 0%;
        height: 2px;
        background: #a73442;
        display: block;
        margin: auto;
        transition: 0.5s;
    }

    .nav-links ul li:hover::after{
        width: 100%
    }*/

/*.nav-language {
    flex: 1;
    text-align: right;
}

    .nav-language ul li {
        list-style: none;
        display: inline-block;
        padding: 8px 12px;
        position: relative;
    }

        .nav-language ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 12px;
        }

        .nav-language ul li::after {
            content: '';
            width: 0%;
            height: 2px;
            background: #a73442;
            display: block;
            margin: auto;
            transition: 0.5s;
        }

        .nav-language ul li:hover::after {
            width: 100%
        }*/

.text-box {
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 20px; /* Add padding for better spacing */
    /* Removed the commented-out properties */
}

.text-box h1{
    font-size: 60px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 17px;
    color:#fff;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color:#fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin-bottom: 34px;
}

    .hero-btn:hover {
        border: 1px solid #fff;
        background: #0094ff;
        transition: 1.0s;
    }

/*nav .fa{
    display: none;
}*/
@media(max-width: 700px){
    .text-box h1 {
        font-size: 32px;
    }
    .nav-links ul li{
        display:block;
    }
    .nav-links {
        position: absolute;
        background: #a73442;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align : left;
        z-index: 2;
        transition: 1.0s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }

    .nav-language ul{
        padding: 30px;
        text-align: left;
        display: flex;
        flex-direction:row;
    }
    .contact {
        width: 100%;
        color: #fff;
        position: absolute;
        bottom: 10px;
        /*transform: translate(-50%,-50%);*/
        text-align: center;
        padding-top: 50px
    }
    .contact h1 {
        font-size: 20px;
        font-weight: 600;
    }
    .contact p {
        color: #a73442;
        font-size: 14px;
        font-weight: 300; 
        line-height: 22px; 
        padding: 10px;
    }

    .text-box h1 {
        font-size: 36px;
        font-weight: 600;
    }

    .text-box p {
        margin: 10px 0 40px;
        font-size: 14px;
        color: #fff;
    }
}

.contact {
    width: 100%;
    color: black;
    position: absolute;
    bottom: 10px;
    /*transform: translate(-50%,-50%);*/
    text-align: center;
    padding-top: 50px
}

.contact h1 {
    font-size: 20px;
    font-weight: 300;
}

.contact p {
    color: #a73442;
    font-size: 12px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}