/**
Form
**/
.contactform .submit {
    border: 0px !important;
    background: #D4016A !important;
    padding: 10px 20px !important;
    font-weight: bold !important;
    border-radius: 3px;
    height: 50px !important;
    color: white !important;
    transition: all .4s;
}

.contactform .submit:hover {
    background: #900048 !important;
}

/**
Logo
**/
.logo-img {
    height: 60px;
    max-width: none !important;
    position: relative;
    top: 10px;
}

/**
Header
**/
.header ul li a {
    font-size: 15px !important;
}

/**
Footer
**/
#footer a {
    color: white !important;
    text-decoration: none !important;
    font-weight: normal !important;
}

#footer a:hover {
    font-weight: bold !important;
}

/**
Body
**/
body {
    opacity: 1;
    transition: .1s opacity;
    font-size: 14px;
}

body.fade-out {
    opacity: 0;
    transition: none;
}

@media screen and (max-width: 769px) {
    .experience-section.container {
        margin-top: 100px;
    }
}

.btn-block {
    font-size: 14px !important;
    border-radius: 3px;
    color: white;
    transition: all .3s;
}

.btn-block:hover {
    background-color: #900048;
}

#home .btn-block {
    font-size: 16px !important;
    padding: 16 20px !important;
}

#home .btn-block .icofont {
    font-size: 20px;
    margin-left: 10px;
}

.GPAREA .adresse {
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
    position: relative;
    box-sizing: border-box;
    padding: 8px;
    margin-bottom: 50px;
}

.GPAREA .adresse::before {
    content: '';
    position: absolute;
    border: 1px solid #ddd; /* Inner border */
    border-radius: 4px;
    inset: 4px; /* 4px gap from outer border */
    pointer-events: none;
}