*{
    padding: 0;
    margin: 0;
    text-decoration: none;
}
.continer{
   max-width: 1400px;
   margin: 0 auto;
   background: white;
   padding: 15px;
}
img{
    width: 100%;
}
body{
    background: #F5F7FA;
    font-family: "Rubik", sans-serif;
}

/* HEADER */

header{
    transition: 0.3s;
     top: 0;
    position: sticky;
    z-index: 50;
}
.header_left-word img{
    width: 120px;
}
.incs-and-words a:hover{
    color: #005BFF;
    transition: 0.3s;
}
header .continer2{
    display: flex;
    justify-content: space-between;
}
header .continer{
    border-radius: 0 0 10px 10px;
}
.header_left{
    display: flex;
    gap: 20px;
}
.header_left-word{
    padding-top: 7px;
}
header .header_left .header_left-word a{
     font-size: 32px;
       font-family: "DynaPuff", system-ui;
        font-family: "Rubik", sans-serif;
}
.header_left-katalog{
    background: #005BFF;
    padding: 15px;
    border-radius: 10px;
}
.header_left-katalog a{
    display: flex;
    color: white;
    gap: 5px;
    border-radius: 12px;
}
.katalogOne{
    margin-top: 2px;
}
.header_center{
    padding-top: 5px;
}
.header_right{
    padding-top: 5px;
}
.header_center-background input:focus {
    outline: none;       
}

.header_center-background{
    background: #005BFF;
    display: flex;
    border-radius: 12px;
    padding: 1px 10px 1px 1px;
}
.header_center-background input{
    border-radius: 12px;
    padding: 10px;
    width: 700px;
    height: 25px;
    border: none;
}
.header_center-background_icn a{
    color: white;
    font-size: 25px;
    border-radius: 10px;
}
.header_left-word a{
    color: #005BFF;
}
.header_center-background_icn{
    padding: 8px 20px 0 20px;
    border-radius: 10px;
}
.header_center-background_icn:hover{
    background: rgba(250, 250, 250, 0.2);
}
.header_right{
    display: flex;
}
.user{
    padding: 0 10px;
    text-align: center;
}
.user_icn{
    font-size: 25px;
}
.user_word{
    font-size: 13px;
}
.user:hover a{
    color: #005BFF;
    transition: 0.3s;
}
.user a{
    transition: 0.3s;
    color: black;
}
.dots{
    position:absolute;
    bottom:15px;
    width:100%;
    text-align:center;
}

.dot{
    height:12px;
    width:12px;
    margin:5px;
    background:#bbb;
    border-radius:50%;
    display:inline-block;
    cursor:pointer;
}

.dot.active{
    background:white;
}
.search_overlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.4);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.search_overlay.active{
    opacity:1;
    visibility:visible;
}
.search_dropdown{
    position:absolute;
    top:70px;
    left:330px;
    width:48%;
    background:white;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    display:none;
    flex-direction:column;
    z-index:50;
}

.search_dropdown a{
    padding:10px;
    color:black;
}

.search_dropdown a:hover{
    background:#eee;
}
.incs-and-words{
    display: flex;
    justify-content: space-between;
    margin: 25px 0 15px 0;
}
.incs-and-words a{
    color: gray;
}
.search_overlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.4);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.search_overlay.active{
    opacity:1;
    visibility:visible;
}


/* Main */




main{
    margin: 50px 0;
}
.item_main{
    margin: 150px 0 0 0 ;
}
.about{
    font-size: 32px;
    font-weight: 560;
    margin: 10px 0;
}
.about2{
    font-size: 20px;
}
.about2 a{
    color: #005BFF;
}


/* FOOTER */



footer{
    transition: 0.3s;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 0 40px 0;
}
footer img{
    width: 100px;
}
.footer_center{
    padding-top: 30px;
    display: flex;
    gap: 100px;
    font-size: 20px;
}
.footer_right{
    padding-top: 30px;
    font-size: 20px;
}
.footer_center a{
    color: gray;
}
.footer_right a{
    color: gray;
    transition: 0.3s;
}
footer a:hover{
    color: #005BFF;
    transition: 0.3s;
}


/* back-ground */


.back-ground{
    background: white;
}
.back-ground p{
    position: relative;
    z-index: -10;
}
body{
    background: #F5F7FA;
}

header .continer{
    border-radius: 30px;
}




/* MObile */




/* ========================= */
/* 📱 MOBILE ADAPTATION */
/* ========================= */

@media (max-width: 768px) {

    .continer {
        padding: 10px;
    }

    header .continer2 {
        flex-direction: column;
        gap: 10px;
    }

    /* HEADER TOP */
    .header_left {
        justify-content: space-between;
        align-items: center;
    }

    .header_left-word img {
        width: 100px;
    }

    .header_left-katalog {
        padding: 10px;
    }

    .header_left-katalog a {
        font-size: 14px;
    }

    /* SEARCH */
    .header_center-background input {
        width: 100%;
        height: 40px;
        font-size: 14px;
    }

    .header_center-background {
        width: 100%;
    }

    .search_dropdown {
        left: 0;
        width: 100%;
        top: 120px;
    }

    /* RIGHT ICONS */
    .header_right {
        justify-content: space-between;
    }

    .user {
        padding: 5px;
    }

    .user_icn {
        font-size: 20px;
    }

    .user_word {
        font-size: 11px;
    }

    /* CATEGORY SCROLL */
    .incs-and-words {
        overflow-x: auto;
        gap: 15px;
    }

    .incs-and-words a {
        white-space: nowrap;
        font-size: 14px;
    }

    /* MAIN */
    .item_main {
        margin-top: 80px;
        text-align: center;
    }

    .about {
        font-size: 22px;
    }

    .about2 {
        font-size: 16px;
    }

    /* FOOTER */
    footer {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .footer_center {
        flex-direction: column;
        gap: 20px;
    }

    .footer_right {
        padding-top: 0;
    }
}