* {
    padding: 0px;
    margin: 0px;
    font-family: 'Arial';
}
body {
    width: 100vw;
    overflow-y: scroll;
    overflow-x: hidden;
}
*::-webkit-scrollbar {
    display: none;
}
#mainScreen {
    width: 100vw;
    height: 80vh;
    background: url('../Icons/main_background.jpeg') no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
#topBar {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    box-sizing: border-box;
    padding: 20px 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#logo {
    width: 150px;
}
.button {
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: 100px;
    background: #4fbb4c;
    padding: 15px;
    margin: 10px;
    cursor: pointer;
    outline: none;
}
#mainSentence {
    max-width: 40vw;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    margin-left: 10vh;
}
.center {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.title {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    position: relative;
    margin: 30px 0px;
}
.title::after {
    content: '';
    width: 70%;
    height: 1px;
    border-radius: 5px;
    background: #4fbb4c;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
}
#activities {
    margin: 10px 0px;
    flex-direction: row;
}
.column {
    display: flex;
    flex-direction: column;
}
.activity {
    width: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 30px;
}
.activity .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.activity .text .name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.activity .text .sentence {
    font-size: 16px;
}
.activity .img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-left: 30px;
}
#examples {
    width: 100vw;
    padding: 10px 0px 50px 0px;
    background: url("../Icons/examples_background.jpeg") no-repeat;
    background-size: cover;
}
#examples .list {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 0px 50px;
}
.example {
    margin: 20px 30px;
    height: 340px;
    width: 230px;
    border-radius: 20px;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.marketingText {
    width: 35vw;
    margin: 80px 20px;
}
.marketingText .marketingTitle {
    font-weight: 600;
    color: #4fbb4c;
    margin-bottom: 15px;
    font-size: 22px;
}
.marketingText .text {
    font-size: 18px;
    color: #575757;
}
#where {
    width: 100vw;
    box-sizing: border-box;
    padding: 80px 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: url('../Icons/where_background.jpeg') no-repeat;
    background-size: cover;
}
#whereTitle {
    color: #fff;
    font-weight: bold;
    font-size: 40px;
}
#whereSubtitle {
    color: #fff;
    font-size: 25px;
}
#contactus {
    flex-direction: row;
    margin: 70px 0px;
}
#contactimg {
    width: 400px;
}
#contactTitle {
    font-size: 40px;
    max-width: 40vw;
    font-weight: bold;
    margin: 10px;
}
.contact {
    margin: 10px;
    font-size: 20px;    
}
#footer {
    background: #3f3f3f;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
    width: 100vw;
    padding: 70px 60px;
}
#logoFooter {
    width: 300px;
}
#footer p {
    color: #fff;
}
#copyright {
    font-size: 16px;
    color: #575757;
    width: 100vw;
    padding: 10px 0px;
    text-align: center;
}
#popUpBackground {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
}
#popUpBackground.show {
    display: flex;
}
#showImage {
    height: 90vh;
    border-radius: 20px;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
#closePopUp {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
#columnMargeLeft {
    margin-left: 50px;
}
#marketing {
    flex-direction: row;
}
#googleMaps {
    width: 600px;
    height: 450px;
    border:0;
    border-radius: 20px;
    box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.3);
}
@media screen and (max-width: 1100px) {
    #mainScreen {
        background: url('../Icons/main_background.jpeg') no-repeat;
        background-size: cover;
        background-position: center;
    }
    #topBar {
        flex-direction: column;
    }
    #mainSentence {
        max-width: unset;
        width: 100vw;
        margin: 0px;
        font-size: 30px;
        text-align: center;
    }
    #activities,
    #marketing,
    #contactus {
        flex-direction: column;
    }
    .activity {
        width: 90vw;
        margin: 30px 5vw;
    }
    #columnMargeLeft {
        margin-left: 0px;
    }
    #examples .list {
        padding: 0px 10px;
    }
    .example {
        height: 210px;
        width: 140px;
        margin: 10px;
    }
    .title {
        text-align: center;
    }
    .marketingText {
        width: 90vw;
        margin: 20px 0px;
    }
    #where,
    #footer {
        padding: 20px;
        flex-direction: column;
    }
    #whereTitle {
        font-size: 30px;
        text-align: center;
    }
    #whereSubtitle{
        font-size: 20px;
        text-align: center;
        margin-bottom: 50px;
    }
    #googleMaps {
        width: calc(100vw - 40px);
    }
    #footer p {
        width: 100%;
        text-align: center;
        margin: 10px 0px;
    }
}