:root {
    --text-color: rgb(39, 39, 39);
}

body {
    font-family: sans-serif;
}

.header {
    width: 100%;
    height: 90vh;
    background-image: url(Photos/GWM.jpg);
    background-size: 100% 95vh;
}
.logo {
    width: 500px;
    height: 500px;
    background-size: 100% 100%;
    position: absolute;
    margin-top: 4%;
    margin-left: 10%;
}
.logo-img {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0);
}
.nav-bar {
    width: 250px;
    height: 50px;
    margin-top: 2%;
    display: inline;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    float: right;
    margin-right: 50px;
}

main {
    width: 100%;
    height: 50vh;
}
.footer {
    width: 100%;
    height: 150px;
    background-color: rgb(0, 0, 0);
    position: absolute;
    margin-top: 950px;
    
}
.language-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: aliceblue;
    width: 150px;
    height: 50px;
    background-color: rgb(44, 44, 44);
    position: sticky;
    transition: width 500ms;
}
.lan-icon {
    position: absolute;
    margin-left: 100px;
    transition: margin-left 500ms;
}
.welcome {
    width: 400px;
    height: 300px;
    background: rgba(160, 160, 160, 0.7);
    position: absolute;
    right: 2%;
    bottom: 15%;
    text-align: center;
    padding-top: 50px;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-color);
}
.welcome p {
    font-size: 15px;
    padding-top: 50px;
}
.welcome p:last-child {
    position: absolute;
    top: 260px;
    left: 270px;
}
a {
    text-decoration: none;
    color: var(--text-color);
}
a:visited {
    color: var(--text-color);
}
.arrow-icon {
    color: white;
    position: absolute;
    right: 120px;
    cursor: pointer;
    transition: right 500ms;
}
#lang-bar-text {
    transition: margin-left 500ms;
}
.lang-select {
    display: flex;
    position: absolute;
    flex-direction: row;
    font-size: 15px;
    gap: 5px;
    margin-left: -70px;
    display: none;
    cursor: pointer;
}
.lang-select li {
    border-right: 1px solid white;
    padding-right: 5px;
}
.lang-select li:last-child {
    border: none;
}
.lang-select li a {
    text-decoration: none;
    color: aliceblue;
}
.items-section {
    text-align: center;
    font-size: 40px;
    padding-top: 30px;
    background-color: rgb(117, 32, 32);
    width: 100%;
    height: 450px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: height 1000ms;
}
.items-row1 {
    display: flex;
    gap: 70px;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    flex-wrap: wrap;
    max-width: 1530px;
}

.item {
    width: 250px;
    height: 250px;
    background: rgb(255, 255, 255);
}
.items-section p {
    font-size: 20px;	
    margin-left: 95%;
    margin-top: 40px;
}
.visit {
    height: 800px;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    padding-top: 20px;
}
.contact-info { 
    color: aliceblue;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    padding-top: 20px;
}
.contact-info-address {
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    line-height: 0.1;
    margin-left: 15px;
    gap: 50px;
    font-weight: 100;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.contact-info-address a { 
    color: aliceblue;
    font-weight: 100;
}
.location {
    margin-top: 80px;
}
.fading-box {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 35%, rgba(0,212,255,0) 100%);
}
.address-types {
    font-weight: 800;
}
.coming-soon {
    text-align: center;
    font-size: 40px;
    margin-top: 10%;
}
.address-txt {
    font-size: 30px;
    margin-top: 30px;
}
.more-items-btn {
    cursor: pointer;
}
.comp-projects {
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    margin-top: 15px;
}
.news {
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    margin-top: 50px
}
.fb-insta {
    display: flex;
    flex-direction: row;
    gap: 15px;
}



/* responsive stuff */


@media (max-width: 1300px) {
    .logo {
        width: 400px;
        height: 400px;
    }
    .logo-img {
        width: 400px;
        height: 400px;
    }
    .welcome {
        width: 300px;
        height: 200px;
        font-size: 20px;
    }
    .welcome p:last-child {
        top: 180px;
        left: 170px;
    }
    .welcome p {
        font-size: 14px;
        padding-top: 30px;
    }
}

@media (max-width: 1000px) {
    .logo {
        width: 300px;
        height: 300px;
    }
    .logo-img {
        width: 300px;
        height: 300px;
    }
    .more-items-btn {
        margin-right: 50px;
    }
}

@media (max-width: 750px) {
    .fb-text {
        font-size: 15px;
    }
}

@media (max-width: 700px) {
    .logo {
        width: 200px;
        height: 200px;
    }
    .logo-img {
        width: 200px;
        height: 200px;
    }
    .contact-info { 
        font-size: 20px;
    }
    .contact-info-address {
        font-size: 15px;
    }
}

@media (max-width: 580px) {
    .fb-text {
        font-size: 8px;
    }
}

@media (max-width: 550px) {
    .nav-bar {
        margin-right: 10px;
    }
}

@media (max-width: 500px) {
    .contact-info { 
        font-size: 15px;
    }
    .contact-info-address {
        font-size: 13px;
    }
    .logo {
        margin-top: 15%;
    }
    .fb-text {
        font-size: 8px;
    }
    
}

