/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/


@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;
}


.header2 ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0px !important;
}

.header2 a {
    text-decoration: none;
}


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

/*=============== HEADER ===============*/
.header2 {
    box-shadow: 0 3px 7px rgb(15 34 58 / 47%);
    top: 0;
    left: 0;
    width: 100%;
    background: var(--container-color);
    z-index: var(--z-fixed);
}

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

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

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


@media screen and (max-width: 767px) {

    h3{
        font-size: 16px
    }
    .main {
        margin-top: 65px;
        margin-bottom:80px;
    }

    .appmobile .nav__menu {
        padding-bottom: 20px !important;
        height: 5rem;
    }

    .appmobile .header2{
        height: 100px;
    }
     .appmobile nav{
         margin-top:40px;
     }

     .appmobile .main{
         margin-top: 120px !important;
         margin-bottom:90px !important;
     }

    .bs-stepper .step-trigger {
        padding: 0px !important;
    }

    .step {
        margin: 0px 0px 20px 0px !important;
        padding: 0px !important;
        margin-bottom: 20px
    }

    .bs-stepper-label {
        display: none !important;
        font-size: 0.8rem;
        margin: 0rem;
    }

    .bs-stepper-line {
        display: none;
    }

    .container{
        padding-left:4px;
        padding-right:4px;
    }


    .header2 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--container-color);
        z-index: var(--z-fixed);
        padding: 2px 2px;
    }

    .nav__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background: var(--container-color);
        box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
        width: 100%;
        height: 45px;
        padding: 0 1rem;
        display: grid;
        align-content: center;
        border-radius: 10px 10px 0 0;
    }

    .nav__menu_top {

        width: 110px;
        float: right;
        text-align: right;
        right: 0px;
        position: absolute;

    }
}

.nav__list,
.nav__link {
    display: flex !important;;
}

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

.nav__list {
    justify-content: space-around;
}

.nav__name {
    font-size: var(--tiny-font-size);
    /* display: none;*/ /* Minimalist design, hidden labels */
    font-weight: 100;
}

.nav__icon {
    font-size: 1.5rem;
}

/*Active link*/
.active-link {
    position: relative;
    color: var(--first-color) !important;
}

/* 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) {
    .nav__name {
        display: none;
    }
}

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

@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

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

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

    .header2 .nav__img {
        display: none;
    }

    /*.nav__icon {*/
    /*    display: none;*/
    /*}*/
    .header2 .nav__name {
        font-size: var(--normal-font-size);
        /*display: block; !* Minimalist design, visible labels *!*/
        font-weight: 100;
    }

    .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;*/
    }
}
