/*header*/
.header-func{
    background-color: var(--cz-10);
}
.header-func .bg-bar{
    position: relative;
    height: 12rem;
    overflow: hidden;
}
.header-func .bg-bar img{
    width: 100%;
    min-width: 100%;
    min-height: 100%;
}
.header-func .content{
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.header-func .content  .blox {
    position: relative;
    padding: 1.5rem;
    background-color: var(--cz-9);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--t0);
    color: #0453e3;
    font-size: 5rem;
}

.header-func .content  h1 {
    color: #0453e3;
    position: relative;
    font-size: 2.1rem;
    font-weight: bold;
    background-color: var(--cz-9);
    padding: .5rem 2rem .5rem 2rem;
    border-radius: 1rem;
}

.header-func .content h3 {
    position: relative;
    font-size: 1.5rem;
    text-align: justify;
    text-indent: 1.2cm;
}
/*medias and screen*/
/**tv is all**/
/**desktop**/
@media only screen and (max-width: 1200px) {}/*desk*/

/**laptop**/
@media only screen and (max-width: 1024px) {}/*lapt*/

/**tablet**/
@media only screen and (max-width: 768px) {}/*tabl*/

/**mobile**/
@media only screen and (max-width: 570px) {
    .header-func .bg-bar img{
        height: 100%;
        width: auto;
    }
}/*mob*/

/*micro-mobile*/
@media only screen and (max-width: 370px) {}/*mmob*/