/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3rem;
    /*========== Colors ==========*/
    --hue: 174;
    --sat: 63%;
    --first-color: hsl(var(--hue), var(--sat), 40%);
    --first-color-alt: hsl(var(--hue), var(--sat), 36%);
    --title-color: hsl(var(--hue), 12%, 15%);
    --text-color: hsl(var(--hue), 8%, 35%);
    --body-color: hsl(var(--hue), 100%, 99%);
    --container-color: #FFF;
    /*========== Font and typography ==========*/
    --body-font: 'Open Sans',  sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --tiny-font-size: .625rem;
    --sidenav-font-size: 1.1rem;
    --sidenav-header-font-size: .95rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 2.25rem;
        --normal-font-size: 1rem;
    }
}

/*=============== BASE ===============*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html { scroll-behavior: smooth; }

body {
    padding-top: var(--header-height);
    position: relative;
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

ul { list-style: none; }

a { text-decoration: none; }

img {
    max-width: 100%;
    height: auto;
}

/*=============== LAYOUT ===============*/

.container {
    max-width: 968px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.mb-3 { margin-bottom: 0rem !im; }

/*=============== HEADER ===============*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: var(--container-color);*/
    z-index: var(--z-fixed);
    transition: .4s;
}

/*=============== NAV ===============*/

.nav {
    /*   height: var(--header-height);*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__img {
    width: 32px;
    border-radius: 50%;
}

.nav__logo {
    color: var(--title-color);
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--container-color);
        box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
        width: 100%;
        height: 6rem;
        padding: 0 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        display: grid;
        align-content: center;
        /*   border-radius: 1.25rem 1.25rem 0 0;*/
        transition: .4s;
    }
}

.nav__list,
.nav__link {
    display: flex;
    text-align: center;
    justify-content: space-around;
    padding-left: 0rem;
}

.nav__link {
    flex-direction: row;
    align-items: center;
    row-gap: 4px;
    color: var(--title-color);
    font-weight: 600;
    text-align: center;
}



.nav__name {
    font-size: var(--tiny-font-size);
    text-align: center;
    display: block;
    /* display: none;*//* Minimalist design, hidden labels */
}

.nav__icon {
    font-size: 1.5rem;
    text-align: center;
}

/*Active link*/

.active-link {
    position: relative;
    color: var(--first-color);
    transition: .3s;
}

/* Minimalist design, active link */

/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

/* Change background header */

/*.scroll-header {
    box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}*/

/*=============== MEDIA QUERIES ===============*/

/* For small devices */

/* Remove if you choose, the minimalist design */

@media screen and (max-width: 320px) {
    .navbar-brand { text-align: center; }
}

.footer-fixed { }

/* For medium devices */

@media screen and (min-width: 576px) {
    .nav__list {
        justify-content: center;
        column-gap: 3rem;
    }

    /* .nav__name {
        display: none;
    }*/     
}

@media screen and (min-width: 767px) {
    .footer-fixed {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1030;
    }

    body { margin: 0; }

    .section { padding: 7rem 0 2rem; }

    .nav {
        height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
    }

    .nav__img { display: none; }

    .nav__icon { display: none; }

    .nav__name {
        font-size: var(--normal-font-size);
        display: inline;
        /* display: block; *//* Minimalist design, visible labels */
    }

    .nav__link:hover { color: var(--first-color); }

    /* First design, remove if you choose the minimalist design */
    .active-link::before {
        content: '';
        position: absolute;
        bottom: -.75rem;
        width: 4px;
        height: 4px;
        background-color: var(--first-color);
        border-radius: 50%;
    }

    /* Minimalist design */
    /* .active-link::before{
      bottom: -.75rem;
  } */
}

/* For large devices */

@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #8A8A8A;
    border: 0px;
    overflow-x: hidden;
    transition: 0.4Fs;
    padding-top: 80px;
}

.sidenav hr {
    position: relative;
    border: none;
    height: 1px;
    background-color: #818181;
    margin-bottom: 5px;            
}

    .sidenav a {
        padding: 4px 4px 8px 32px;
        text-decoration: none;
        font-size: var(--sidenav-font-size);
        color: #ffffff;
        display: block;
        transition: 0.3s;
        border-color: #8A8A8A;
        border-style: solid;
        border-width: 1px;
    }

.sidenav a:hover {
    color: #fff;
    background-color: #3865D5;
    font-weight: normal;
    border-color: #818181;
    border-style: solid;
    border-width: 1px;
}

.sidenav .fa { font-size: var(--sidenav-font-size); }

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (min-width: 1024px) {
}

.parentDisable {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
    z-index: 5;
    height: 100%;
    width: 100%;
}


.sidenav__name {
    font-size: var(--sidenav-font-size);
    text-align: center;
    color: #ffffff;
}

.sidenav__name_header {
    font-size: var(--sidenav-header-font-size);
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
}

    .sidenav__name_header a {
        text-decoration: none;
        color: #ffffff;
    }

        .sidenav__name_header a:hover {
            text-decoration: none;
            color: #ffffff;
        }

.footer-side-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
}