html{
    scroll-behavior: smooth;
    scroll-padding-top:100px;
  }

.clr-text{
    color:#f1f1f1 !important;
}

.clr-title{
    color:#f3f3f3 !important;
}

.text-container{
    padding-top:7rem;
    padding-left:4rem;
    display:flex;
    flex-direction: column;
    gap:8rem;
}

.image-text{
    color:white;
    font-family: 'Poppins', sans-serif !important;

    line-height: 1.25;
}

.image-subtitle{
    margin-top:4px;
}

.image-title{
    /* font-family:'Roboto', sans-serif; */
    font-size:2.5rem;
    font-weight:500;
    /* font-weight:bold; */
}

.front{
    /* padding-left:4rem; */
    margin-top:100px;
    width:100vw;
    height:calc(100vh - 100px);
    background:url("../Images/frontpage.jpeg");
    /* filter:brightness(.4); */
    background-size: cover;
}

.main-btn{
    /* color:white; */
    background-color: #f1f1f1;
    padding:.75rem 1rem;
    border-radius:.5rem;
    color:black;
    cursor:pointer;
}

.image-btns{
    display:flex;
    gap:1.5rem;
}

.main-btn:hover{
    background-color: rgb(188, 188, 188);
}




/* second section */

.second{
    /* margin-top: 180px; */
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:100vw;
    /* height:380px; */
    padding:2rem 0rem;
}

.section-title{
    font-size:2.5rem;
    font-family:'Poppins', sans-serif;
    font-weight:500;
}

.section-text{
    margin-top:1rem;
}

.section-button{
    margin-top:3rem;
    display: block;
    width:max-content;
    float:right;
}

.text-section{
    text-align:right !important;
    padding-right:6rem;
    width:50vw;
}

.section-logo{
    width:50vw;
    margin:auto;
}

/* .section-logo > img{
    width: 550px;
} */

.logo-object{
    width:100%;
    margin:auto;
}

.divider{
    background-color:grey;
    width:100vw;
    height:.5px;
}

/* three */


.three{
    margin:5rem 0rem;
    position:relative;
    width:100vw;
}

.third-div{
    width:50%;
    margin:auto;
    display:flex;
    flex-direction: column;
    gap:2rem;
}

.three-title{
    text-align: center;
    font-size:2.5rem;
    font-family:'Roboto', sans-serif;
    font-weight:400;
}

.three-subtitle{
    text-align:center;
}

.three-button{
    margin:auto;
    margin-top:1.5rem;
    display:block;
    width:max-content;
}



/* map */

.map{
    display:flex;
    flex-direction: column;
    gap:2rem;
    justify-content: center;
    margin: 4rem 0;
    width: 100%;
}

.ff-roboto{
    font-family: "Roboto", "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight:400;
}

.shrink{
    display: flex;
    /* overflow-x:scroll; */
}

.location{
    text-align: center;
    height:auto;
    flex-shrink: 0;
    flex-basis:100%;
}

@media only screen and (max-width:620px){
    .shrink{
        overflow-x:scroll;
    }
}

@media only screen and (max-width:900px){
    .second{
        flex-direction: column-reverse;
        gap:2rem;
    }

    .text-section{
        text-align: center !important;
        padding-right:0;
    }

    .section-button-container{
        display:flex;
        justify-content: center;
    }

    .image-btns{
        flex-direction: column;
        width:max-content;
        gap:1rem;
        margin:auto;
        justify-content: center;
    }

    .third-div{
        width:90%;
    }

    .text-container{
        justify-content: center;
        text-align: center;
        gap:3rem;
        padding-left:0;
    }


}