* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

img {
    width: 100%;
    display: block;
}

input {
    outline: 0;
    border: none
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

button {
    border: none;
    background: none;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #911d9c;
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus,
button:focus,
input:focus {
    outline: 2px solid #911d9c;
    outline-offset: 2px;
}

.de_iv_adv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    /* background-color: #FFFFFF; */
    /* margin: 10px 0 0px; */
}

.postionFixed {
    width: 100%;
    min-height: 60px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

footer {
    width: 100%;
    text-align: center;
    background-color: #000000;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    padding: 20px 0;
    margin-top: 20px;
}

footer > div:first-child {
    margin-bottom: 10px;
}

footer .about {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

footer a:hover {
    color: #911d9c;
}

@media screen and (max-width:769px) {
    footer .about {
        gap: 15px;
    }
    
    footer {
        font-size: 12px;
        padding: 15px 10px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    --maxcenter: 1200px;
    --logo: 250px;
    --button: 35px;
    --searchBar: 280px;
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

@media screen and (max-width:769px) {
    body {
        --maxcenter: 100%;
        --logo: 200px;
        --searchBar: 100%;
    }
}

.img-box {
    width: 100%;
    position: relative;
}

.img-box::before {
    content: '';
    display: block;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}