* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.phone img{
    box-sizing: unset;
}
.main-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:90%;
}

.navbar{
    z-index: 1;
}

.left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
}

.left h2{
    margin:0;
    padding: 2vh 0 3px;
    font-weight: 500;
}


.left h4{
    margin:0;
    padding: 0 0 10px;
    font-weight: 400;
}

.title{
    display: flex;
    flex-flow:row-reverse;
    gap:5%;
    width: 100%;
    align-items: center;
    vertical-align: middle;
    text-align: left;
}

.title h1{
    color:#00695C;
    padding: 0;
    margin: 1em 0 0 0;
    width: 95%;
    font-size: 2.6em;
    font-weight: 500;
}

.separador-div{
    display: flex;
    flex-flow:column;
    align-content: center;
    gap:5%;
    width: 100%;
    align-items: center;
    vertical-align: middle;
    text-align: left;
}

.separador{
    border: 0 solid;
    border-top-width: 3px;
    border-bottom-width: 0;
    border-color: #009688;
    width: 90%;
}

/* Secção do ROW, aka. conteúdo de cada secção do portfolio*/

.row {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    gap:50px;
    margin-bottom: 50px;
    margin-top: 25px;
}

.row img {
    vertical-align: middle;
    object-fit: cover;
}


/*Container das imagens*/

.image-container{
    display: flex;
    flex-flow: column;
}

.image-container h2{
    padding: 0;
    margin: 0;
    padding-top: 20px;
    color:#00695C;
    font-weight: 500;
}

.image-container p{
    margin: 0;
    padding: 0;
    padding-top: 10px;
    color:#00695C;
    font-weight: 500;
}

/* Responsive layout*/

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .image-container {
        width: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .image-container {
        width: 100%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .image-container {
        width: calc(100% * (1/2) - 34px);
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .image-container {
        width: calc(100% * (1/3) - 34px);
    }
    .logo img {
        height: 50px;
        width: 50px;
        margin: 0 0.5em;
        box-sizing: unset;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .image-container {
        width: calc(100% * (1/3) - 34px);
    }
}


