/* DDS(Drop Default Styles) - here I`m dropping default styles */


/*==========START========== */


/* Set box sizing */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Work with list */

ul
 {
    padding: 0;
    margin: 0;
    list-style: none;
}
ol
 {
 
    
}
li {
    margin: 0;
    padding: 0;
}


/* Delete default margins */

body,
h1,
h2,
h3,
h4,
p,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}


/* Set up configuration of body */

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
}


/* Drop default styles of links */

a {
    font: inherit;
    color: inherit;
    text-decoration: none;
}


/* Simplify work with images */

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


/* ==================END================== */

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