body {
    padding: 0px;
    margin: 0px;
    font-family: Fira Sans, sans-serif;
}






.headerBk {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: url(/img/header.jpg) no-repeat center/cover;
    background-size: cover;
}

.headerOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
}

.headerContent {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 60px);
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.headerTitle {
    display: contents;
    max-height: 40px;
    color: #ffffff;
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1200 - 320)));
    font-weight: 300;
}

.headerImg {
    max-width: 900px;
    min-width: 320px;
    width: 60%;
    height: auto;
}







.aboutOuter {
    position: relative;
    width: 100%;
    margin-top: -100px;
    height: auto;
    z-index: 50;
    margin-bottom: 60px;
}

.aboutContainer {
    position: relative;
    display: flex;
    max-width: 1000px;
    width: calc(100vw - 40px);
    box-sizing: border-box;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    background-image: linear-gradient(to right, #7d62ff, #ffdc8a);
    box-shadow: 0px 0 10px 10px rgba(52, 58, 64, 0.2);
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    text-align: left;
}

.aboutImg {
    max-width: 350px;
    min-width: 150px;
    width: calc(25% - 10px);
    box-sizing: border-box;
    aspect-ratio: 1;
    background: url(/img/wbs.jpg) no-repeat center/cover;
    margin-right: 10px;
    border: solid 5px #ffffff;
    border-radius: 4px;
}

.aboutText {
    width: 75%;
}

@media screen and (max-width: 800px) {
    .aboutImg {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .aboutText {
        width: 100%;
    }
}






.section {
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    box-sizing: border-box;
}

.sectionTitleDark {
    position: relative;
    color: #444444;
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1200 - 320)));
    font-weight: 300;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.sectionTitleLight {
    color: #EEEEEE;
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1200 - 320)));
    font-weight: 300;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.sectionContainer {
    display: flex;
    max-width: 1300px;
    width: calc(100vw - 40px);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    align-items: center;
}

.sectionImg {
    width: 90px;
    aspect-ratio: 1;
    box-sizing: border-box;
    border: solid 4px #ffffff;
    background: url(/img/primeraAvatar.jpg) no-repeat center/cover;
    border-radius: 100%;
    box-shadow: 0px 0 2px 2px rgba(52, 58, 64, 0.1);
    z-index: 1;
}

.sectionContent {
    width: calc(100% - 45px);
    margin-left: -45px;
    box-sizing: border-box;
    background-image: linear-gradient(to left, #5191ca, #ffd8c4);
    border-radius: 10px;
    box-shadow: 0px 0 2px 2px rgba(52, 58, 64, 0.1);
    padding: 10px;
    padding-left: 55px;
    margin-bottom: 60px;
}

@media screen and (max-width: 800px) {
    .sectionImg {
        display: none;
    }

    .sectionContent {
        width: 100%;
        margin-left: 0px;
        padding-left: 10px;
    }
}


.sectionContact {
    background: url(/img/kb.jpg) no-repeat center/cover fixed;
}



.sectionFooter {
    background: url(/img/header.jpg) no-repeat center/cover fixed;
}

.footerContainer {
    position: relative;
    max-width: 1000px;
    width: calc(100vw - 40px);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    overflow: hidden;
}

.footerTitle {
    color: #444444;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
    padding-left: 20px;
}

.footerText {
    color: #444444;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    padding-left: 20px;
}

.footerLeft {
    position: relative;
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
    float: left;
}

.footerRight {
    position: relative;
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
    float: left;
}

.footerBottom {
    position: relative;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    padding-bottom: 80px;
    float: left;
}

@media screen and (max-width: 800px) {
    .footerLeft {
        width: 100%;
    }

    .footerRight {
        width: 100%;
    }
}