@import "./_variables.css";
@import "./home.css";


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

html {
    height: 100%;
    font-size: 14px;
}

body {
    overflow-x: hidden;
    margin: 0;
    font-family: 'Poppins', sans-serif !important;
    background: var(--app-background) !important;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.empty-data-case {
    min-height: 50vh;
    text-align: center;
    justify-content: center;
    align-content: center;
}

/* Home section */
/* image section style */
.img-trans {
    /* transform: translate(0px, -70px); */
    z-index: 1;
}

.titre-on-image1 {
    font-size: 44px;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 auto;
    padding: 0;
}

.titre-on-image2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto;
    text-transform: uppercase;
    padding: 0;
    color: var(--color-primary);
}

.btn-dsc {
    border: 0;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: rgba(26, 15, 15, 0.8);
    display: flex;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
}

.btn-dsc .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-dsc .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--primary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.btn-dsc .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
    color: black;
}

.btn-dsc:hover {
    background-color: var(--hover-color);
    color: var(--secondary-color);
}

.btn-dsc:hover .arrow {
    background: var(--secondary-color);
}

.btn-dsc:hover .arrow:before {
    right: 0;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff url('images/preloader.gif') no-repeat center;
    background-size: 20%;
    z-index: 1002110000;

}

html {
    scroll-behavior: smooth;
}

.whatssap1 {
    position: fixed;
    bottom: 85px;
    right: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    cursor: pointer;
    z-index: 999;
}

.whatsapp img {
    z-index: 999999999;
    width: 50px;
    height: 50px;
}

.whatsapp img:hover {
    opacity: 0.8;
}

.to-top {
    background: var(--color-primary);
    position: fixed;
    bottom: 10px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

.to-top:hover {
    color: dodgerblue;
}