@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --mc: #364974;
    --header-height: 3rem;
    --hue-color: 250;
    --first-color: hsl(var(--hue-color), 69%, 61%);
    --first-color-second: hsl(var(--hue-color), 69%, 61%);
    --first-color-alt: hsl(var(--hue-color), 57%, 53%);
    --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
    --title-color: hsl(var(--hue-color), 8%, 15%);
    --text-color: hsl(var(--hue-color), 8%, 45%);
    --text-color-light: hsl(var(--hue-color), 8%, 65%);
    --input-color: hsl(var(--hue-color), 70%, 96%);
    --body-color: hsl(var(--hue-color), 60%, 99%);
    --container-color: #FFF;
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
    --body-font: 'Poppins', sans-serif;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes Bottom ==========*/
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;

}

::-webkit-scrollbar {
    display: none;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: var(--mc);
    color: white;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.hero {
    background: url(../img/margas_prinsenatelier/400dpiLogo.png) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    background-size: 90%;
    height: 100vh;
    border-bottom: 4px solid black;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding: 50px;
    background: url(../img/confetti.png) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 4rem
}

@media screen and (max-width: 500px) {
    .about {
        padding: 20px;
    }
}

@media screen and (max-width: 400px) {
    .about {
        padding: 1px;
        max-width: 40rem;
    }
}


.about .container {

    justify-content: space-between;

}

.about .row {
    position: static;
    justify-content: center;
    float: right;
    max-width: 500vw;
    display: flex;
    align-items: right;
    justify-content: center;
    margin: auto;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    margin-top: -3rem;
    font-size: 20px;
    font-weight: bold;
    margin-left: -2rem;
}

.about .row p {

    background-color: #fff;
}

.about .row:hover {
    z-index: 3;
}

.about .user-img {

    position: relative;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    float: left;
    max-width: 350px;
    max-height: 350px;
    border-radius: 200px;
    margin: auto;
    margin-left: 10rem;
    margin-top: .8rem;
}

.about i {
    font-size: 2rem;
}

.about .socials a {
    display: inline-block;
    margin-left: 5rem;
    margin-bottom: 2rem;
}

.about .user-img:hover {
    z-index: 3;
}

@media screen and (max-width: 768px) {
    .about .row {
        max-width: 100%;
    }

    .about .user-img {
        float: center
    }
}

@media (max-width: 992px) {
    .about .user-img {
        display: flex;
        position: relative;
        justify-content: center;
        transition: all 0.3s ease-in-out;
        float: none;
        max-width: 200px;
        max-height: 200px;
        margin-left: auto;
    }

    .about .row {
        display: flex;
        position: relative;
        justify-content: center;
        transition: all 0.3s ease-in-out;
        float: center;
        max-width: 90%;
    }
}

.navbar b:hover,
.navbar a:hover {
    cursor: pointer;
}