*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'MarkerFelt';
    src: url('../fonts/MarkerFeltNormal.woff2') format('woff2'),
        url('../fonts/MarkerFeltNormal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Regular.woff2') format('woff2'),
        url('../fonts/ProximaNova-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.container{
    padding: 0 50px;
    max-width: 1732px;
    margin: 0 auto;
}
img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
svg{
    width: 100%;
    height: 100%;
    display: block;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
.text_center{
    text-align: center;
}
.capitalize{
    text-transform: capitalize;
}
.uppercase{
    text-transform: uppercase;
}
.flex1{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.pointer{
    cursor: pointer;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex_between{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
}
.flex_around{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
}
.MarkerFelt{
    font-family: 'MarkerFelt';
}
.Poppins{
    font-family: 'Proxima Nova';
}
.Proxima{
    font-family: 'Proxima Nova';
}
#dropbtn {
    font-family: 'Proxima Nova';
}

/* .----------------------------------.media-quary-start-------------------------------- */
@media screen and (max-width:1279px) {
    .container {
        padding: 0 50px;
    }
}
@media screen and (max-width:767px) {
    .container {
        padding: 0 20px;
    }
}
