* {
    padding: 0;
    margin: 0;
    }
    
html, body {
    margin:0; padding:0;
    min-width: 100%;
}
body {
    background-color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    color: var(--terciary);
    margin: 0;
    position: absolute;
    right:0;
    left:0;
    top:0;
    bottom:0;
    overflow-x: hidden;
}


.special-contained-img{
    height: min(70vh, 700px);
    display: block;
    width: 100%;
}
@media screen and (max-width: 768px){
    .special-contained-img{
        height: 100%;
        display: block;
    }
}
.full-container{
    right:0;
    padding-right: 0;
    margin-right: 0;
    left:0;
    padding-left: 0;
    margin-left: 0;
    bottom: 0;
    top: 0;
}

/* Media query for mobile devices */
@media only screen and (max-width: 992px) {
    .collapsed-link {
        /*center the link*/
        text-align: center !important;

    }
}

:root {
    --primary: #F47E2C;
    --secondary: #F6F3F0;
    --terciary: #282828;
    font-size: min(20px,3vw);
    word-break: break-word;
    overflow-x:hidden; 
}

.custom-nav {
    background-color: var(--terciary);
    color: var(--secondary) ;
}

nav .navbar-nav li a{
    color: var(--secondary) !important;
}



footer{
    background-color: var(--secondary);
    color: var(--primary);
    border-color: var(--terciary);
    border-style: solid;
    /* only border-top */
    border-width: 0 0 0 0;
    border-top-width: 1px;
    padding-bottom: 25px;
}

.section{
    padding-top: 50px;
    padding-bottom: 50px;
}

.nav-link:hover{
    color: var(--primary) !important;
}

.nav-link::after {
    content: "";
    color: var(--primary);
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.5s;
}

.nav-link:hover::after {
    width: 100%;
}

.fitting-text {
    font-size: 1.5rem;
}

.orange{
    color: var(--primary);
    text-decoration: none;
}
/*Orange anchor*/
a.orange:hover::after {
    width: 100%;
}
/* animate the text decoration so that it appears from left to right */

a.orange:hover{
    color: var(--primary);
}
/* animation for the text decoration */
a::after {
    content: "";
    color: var(--primary);
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.5s;
}
.white{
    color: var(--secondary);
}

.bold{
    font-weight: 1000;
}

.big{
    font-size: 1.2rem;
}

.main-title {
    font-size: 3.5em;
    font-weight: 700;
}

.title {
    font-size: 3em;
    font-weight: 700;
}

.sub-title {
    font-size: 1.5em;
}

.framed{
    border: 15px solid var(--primary);
    margin: 0;
    padding: 0;
}

.center-in-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.centered {
    justify-content: center;
    align-items: center;
    text-align: center; 
}

.bg-img{
    background-image: url(/img/bg.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 500px !important;
    position: relative;
    text-align: center;
    height: 100%;
    width: 100%;
}

.bg-img::before {
    content: "";
    display: block;
    -webkit-filter: blur(1px) brightness(0.5);
    -moz-filter: blur(1px) brightness(0.5);
    -ms-filter: blur(1px) brightness(0.5);
    -o-filter: blur(1px) brightness(0.5);
    filter: blur(1px) brightness(0.5);
    position: absolute;
    --x : 30px;
    left: var(--x);
    top: var(--x);
    right: var(--x);
    bottom: var(--x);
    background: inherit;
    z-index: 0;
}

.bg-img-content {
    position: relative;
    z-index: 10;
    padding-top: 50px;
}




.flexed{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
}

.flexed-item{
    flex: 1 1 30%;
    text-align: center;
}

.item-img{
    width: 15vw;
}

.orange-section {
    background-color: var(--primary);
    color: var(--secondary);
    
}

.white-section {
    background-color: var(--secondary);
    color: var(--terciary);
}

.logo{
    width: 100%;
    aspect-ratio: 1 / 1 !important;
    /*center vertically*/
    display: flex;
    justify-content: center;
    align-items: center;

    
}


.img-container{
    /*aspect-ratio: 1 / 1;*/
    width: 100%;
    
    margin-bottom: 30px;
}

.contained-img{
    display: block;
    width: 100%;
    height: auto;
    
}

.mini-img{
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}

#footer {
    background-color: var(--secondary);
    color: var(--primary);
    border-color: var(--primary);
    border-style: solid;
    /* only border-top */
    border-width: 0 0 0 0;
    border-top-width: 3px;
    padding-top: 60px;
    padding-bottom: 25px;
}

.txt-container{
    display: flex;
    align-items:center;
}


/* Media query for txt class, to make it responsive */
@media screen and (min-width: 800px) {
    .txt {
        font-size: 1.2vw;
    }
}

@media screen and (max-width: 800px) {
    .txt {
        font-size: 2vw;
    }
}

@media screen and (max-width: 700px) {
    .txt {
        font-size: 3vw;
    }
}

@media screen and (max-width: 650px) {
    .txt {
        font-size: 5vw;
    }
}

@media screen and (max-width: 400px) {
    .txt {
        font-size: 7vw;
    }
}

@media screen and (max-width: 300px) {
    .txt {
        font-size: 10vw;
    }
}