@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600&display=swap');
@import url("navbar.css");
@import url("footer.css");
@import url("cards.css");
@import url("header.css");
@import url("services.css");
@import url("home_page.css");
@import url("contact.css");
@import url("best_work_incentives.css");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Raleway', sans-serif;
    line-height: 2.0rem;
    letter-spacing: 1.5px;
    font-size: 1rem;
    background: linear-gradient(rgb(139, 165, 93), black);
    color: white;
    width: 100vw;

    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* container */
.container{
    width: 100%;
    margin-top: 130px;
    margin:auto;
    padding: 0px 10%;

}



/* global styles */
.margin{
    margin-top: 50px;
    margin-bottom: 50px;
}

.mt{
    margin-top: 50px;
}
.flex{
    display: flex;
}

.space-between{
    justify-content: space-between;
}

.space-around{
    justify-content: space-around
}

.flex-start{
    align-items:flex-start;
}

.center{
    justify-content: center;
    text-align: center;
}

.column{
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;

}
.row{
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
}

.fill-width{
    width:100%
}

.relative{
    position: relative;
}


/* styles */
.box-shadow{
    box-shadow: 5px 10px 10px 0px rgba(0, 0, 0, 0.28);
}

a:hover{
    font-weight: bold;
}
.active{
    font-weight: bold;
    text-decoration: underline;
}

a{
    color: inherit;
    text-decoration: none;    
}

button{
    border: 2px solid white;
    border-radius: 5px;
    font-size: 1.1em;
    padding: 10px 15px;
    background-color:transparent;
    color: whitesmoke;
    width: fit-content;

}

button:hover{
    /* background-color: rgb(215, 215, 215); */
    cursor: pointer;
    font-weight: bold;
    font-size: larger;
}

.wrap{
    flex-wrap: wrap;
}

ion-icon{
    margin-right:20px;
    font-size: 20pt;
    margin-top: 0;
    margin-bottom: 0;

}

.show{
    visibility: visible;

}

.hide{
    display: none
}

hr{
    margin: 50px 0px;
}

.gap{
    gap: 30px;
}

.row-reverse{
    flex-direction: row-reverse;
}

hr{
    color: white;
}

img{
    width: 300px;
}

.contact-container{
    display: flex;
    align-items: center;
}

.map{
    width: 500px;
    height: 300px;
}

@media screen and (max-width:1368px) {
    .contact-container{
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .map{
        width: 300px;
        height: 200px;
    }
}

@media screen and (max-width: 500px) {
    .container{
        padding: 0px 5%;
    }
}