@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
/* START => GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    display: none;
}
::selection {
    background-color: #007bff;
    color: #fff;
}
::-moz-selection {
    background-color: #007bff;
    color: #fff;
}
a, button, input, textarea, select {
    outline: none;
    text-decoration: none !important;
    resize: none;
    text-underline: none;
    background-color: transparent;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
button {
    cursor: pointer;
}
button, a, img {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
li {
    list-style: none;
}
main {
    width: 80vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid #ccc;
}
main section {
    width: 100%;
    padding: 1.302vw 2.6041vw;
}
.active {
    background-color: #007bff !important;
    color: #fff !important;
}
.open_select {
    display: flex !important;
}
.title {
    color: #007bff;
    padding: 0.7812vw;
    font-size: 1.5625vw;
    font-weight: 600;
}
.navbar_columns {
    display: flex;
    position: relative;
}
/* START => MODAL */
.disable_body {
    overflow: hidden;
}
.disable_body::after {
    content: '';
    background-color: #0000005b;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 19;
}
.delete_card_modal {
    width: 20.8333vw;
    height: max-content;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.7812vw;
    padding: 1.302vw;
    border: 0;
    border-radius: 0.4166vw;
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.1);
    z-index: 20;
    background-color: #fff;
    transition: all 0.3s ease;
}
.delete_card_modal span {
    width: 100%;
}
.delete_card_modal .modal_title {
    font-size: 1.0416vw;
    font-weight: 600;
    text-align: left;
}
.delete_card_modal .modal_text {
    color: #7e8590;
    font-size: 0.7291vw;
}
.delete_card_modal .modal_colse_delete_button_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.0416vw;
}
.delete_card_modal .modal_colse_delete_button_box button {
    width: 45%;
    padding: 0.5208vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 0.2604vw;
    font-weight: 600;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.delete_card_modal .modal_colse_delete_button_box button:hover {
    opacity: 1;
}
.delete_card_modal .modal_colse_delete_button_box button:first-child {
    background-color: #919191;
}
.delete_card_modal .modal_colse_delete_button_box button:last-child {
    background-color: #007bff;
}
.open_modal {
    display: flex !important;
    top: 10% !important;
}
/* START => LOGO ANIMATION */
.logo .text {
    font-weight: 600;
    font-size: 2vw;
    letter-spacing: -0.1562vw;
    display: flex;
    flex-direction: row;
}
.logo .text .letter {
    color: #007bff;
    text-shadow: 0 0 0.3125vw #00f0ff;
    display: inline-block;
}
.logo .text .letter.letter-2 {
    opacity: 1;
    transform: translate(-0.1041vw, 0.5208vw) rotate(10deg);
    animation: flicker 3s ease infinite alternate;
}
@keyframes flicker {
    0% {
        opacity: 1;
        transform: translate(-0.1041vw, 0.5208vw) rotate(10deg);
    }
    7% {
        opacity: 0;
        transform: translate(-0.1041vw, 0.5208vw) rotate(10deg);
    }
    8% {
        opacity: 1;
        transform: translate(-0.1041vw, 0.5208vw) rotate(10deg);
    }
    50% {
        opacity: 1;
        transform: translate(-0.1041vw, 0.5208vw) rotate(23deg);
    }
    100% {
        opacity: 1;
        transform: translate(-0.1041vw, 0.5208vw) rotate(10deg);
    }
}
/* START => REGISTRATION */
.form_conteiner {
    padding: 1.302vw 2.6041vw;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.0416vw;
    background-color: #fff;
    margin: 2.6041vw auto;
    border-radius: 0.5208vw;
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.1);
}
.form_conteiner .elem-group {
    display: flex;
    flex-direction: row;
    gap: 1.0416vw;
}
.form_conteiner .elem-group .capcha_box {
    position: relative;
    padding: 0.2604vw;
    width: 10.4167vw;
    height: 2.9687vw;
}
.form_conteiner .elem-group .capcha_box img {
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}
.form_conteiner .elem-group .capcha_box .refresh-captcha {
    width: 1.0416vw;
    height: 1.0416vw;
    border: 0;
    background-color: #007bff;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form_conteiner .input_box {
    gap: 0.2604vw;
    width: 100%;
    display: flex;
    justify-content: left;
    flex-direction: column;
    background-color: #fff !important;
}
.form_conteiner .input_box .input_items {
    display: flex;
    justify-content: left;
    flex-direction: column;
    position: relative;
}
.form_conteiner .input_box .input_items label {
    position: absolute;
    top: 0%;
    transform: translateY(-50%);
    left: 0.7812vw;
    background-color: #fff;
    color: #b0bec5;
    transition: all 0.3s ease;
    padding: 0 0.2604vw;
    cursor: text;
    user-select: none;
    font-size: 0.7291vw;
}
.form_conteiner .input_box .input_items input {
    width: 100%;
    background-color: #fff !important;
    border: 1px solid #b0bec5;
    padding: 0.7812vw;
    border-radius: 0.5208vw;
    transition: all 0.3s ease;
}
.form_conteiner .input_box .input_items input:focus {
    border: 1px solid #007bff;
}
.form_conteiner .input_box .input_items input:focus ~ label {
    color: #007bff;
}
.form_conteiner .error_message {
    color: red;
    font-size: 0.677vw;
    padding-left: 0.5208vw;
}
.form_conteiner .button_field {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 1.302vw auto;
    align-items: center;
    padding: 0 1.0416vw;
}
.form_conteiner .button_field .link_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.form_conteiner .button_field .link_box a {
    color: #007bff;
}
.form_conteiner .button_field button {
    width: max-content;
    height: max-content;
    padding: 0.5208vw;
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    border: 0.1041vw solid #007bff;
    border-radius: 0.2604vw;
    transition: all 0.3s ease;
    opacity: 1;
}
.form_conteiner .button_field button:hover {
    opacity: 0.5;
}
/* START => HEADER */
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 5vw;
    padding: 0.5208vw 7.2916vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0px 0px 0.3125vw rgba(0, 0, 0, 0.6);
}
.sign_up_log_in_lang {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 0.3645vw;
    font-size: 0.8333vw;
}
.sign_up_log_in_lang a {
    border-radius: 0.2083vw;
    padding: 0.4166vw;
    font-weight: 600;
    color: #007bff;
    transition: 0.5s ease;
    background-color: transparent;
}
.sign_up_log_in_lang a:hover {
    background-color: #007bff;
    color: #fff;
}
.search_box {
    display: flex;
    align-items: center;
    width: 15.625vw;
    height: max-content;
    background-color: transparent;
    z-index: 1;
    border: 1px solid #ddd;
    gap: 0.5208vw;
    border-radius: 1.5625vw;
    padding: 0 1.0416vw;
    transition: 0.3s ease;
}
.search_box input {
    width: 80%;
    background-color: transparent;
    padding: 1.0416vw;
    height: 1.5625vw;
    border: 0;
    border-left: 1px solid #ddd;
    transition: all 0.5s ease;
}
.search_box input::placeholder {
    font-size: 0.8333vw;
}
.search_box:focus-within {
    border: 1px solid #007bff;
}
.search_box svg {
    width: 1.25vw;
    height: 1.25vw;
    fill: #ccc;
    transition: all 0.5s ease;
}
.search_box .search_btn {
    background-color: transparent;
    border: 0;
    display: flex;
}
.search_box .search_btn svg {
    fill: #007bff !important;
}
.vertical_row {
    height: 1.5625vw;
    width: 0;
    border: 0;
    border-left: 1px solid #ddd;
}
.language_box {
    display: flex;
    height: max-content;
    flex-direction: column;
    position: relative;
}
.language_box button {
    border: 0;
    background-color: transparent;
    padding: 0.5208vw;
    display: flex;
    align-items: center;
}
.language_box button svg {
    width: 1.25vw;
    height: 1.25vw;
}
.languages {
    display: none;
    flex-direction: column;
    height: max-content;
    background-color: #fff;
    z-index: 11;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.1);
    border-radius: 0.2083vw;
}
.languages a {
    color: #007bff;
    font-weight: 600;
    border-radius: 0.2083vw;
    transition: 0.5s ease;
    text-align: center;
}

.languages a:hover {
    background-color: #cccccc52;
    color: #007bff;
}

/* START => MENU */
.hamburger {
    height: max-content;
    width: max-content;
    position: fixed;
    right: 1.0417vw;
    top: 1.6417vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 13;
    display: none;
}
.hamburger svg {
    width: 25px;
    height: 25px;
}
.hamburger .checkbox {
    position: absolute;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}
.line {
    transition: all 0.5s ease-in-out;
    stroke-width: 6px;
    stroke: #007bff;
}
.lineTop, .lineBottom, .lineMid {
    stroke-dasharray: 40 40;
}
.hamburger .checkbox:checked + svg .lineTop {
    transform-origin: left;
    transform: rotateZ(45deg) translate(-7px, -5px);
}
.hamburger .checkbox:checked + svg .lineMid {
    stroke-dashoffset: 40;
}
.hamburger .checkbox:checked + svg .lineBottom {
    transform-origin: left;
    transform: rotateZ(-45deg) translate(-5px, 5px);
}
.menu_box {
    display: none;
    position: fixed;
    padding: calc(25% - 10vw) 5%;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #007bff;
    transition: all 0.5s ease-in-out;
    justify-content: center;
    align-items: flex-start;
    z-index: 9;
    overflow-y: auto;
}
.menu_box .contact_design_dev_footer {
    width: 90%;
    margin: auto;
    border-top: 1px solid #ccc;
    color: #ccc;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    position: fixed;
    bottom: 0;
    padding: 10px;
    text-align: center;
    background-color: #007bff;
    font-size: 15px;
}
.menu_box .contact_design_dev_footer a {
    font-weight: 600;
    color: #fff !important;
    width: max-content;
}
.menu_items {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    position: relative;
}
.menu_items a {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.menu_items a svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}
.menu_items a::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 2px solid #fff;
    transition: all 0.3s ease;
}
.menu_items a:hover::after {
    width: 100%;
}
.menu_items .lang_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.checked_lang {
    border-bottom: 2px solid #fff;
}
.open_menu {
    right: 0% !important;
}
/* START => NAVBAR */
.category_navbar {
    background-color: #fff;
    width: 20vw;
    height: max-content;
    padding: 1.1416vw;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: sticky;
    left: 0;
    top: 5vw;
    z-index: 8;
    overflow-y: auto;
}
.category_navbar ul {
    display: flex;
    flex-direction: column;
    gap: 0.5208vw;
}
.category_navbar ul li {
    padding: 0.2604vw;
    width: 100%;
}
.category_navbar ul li a {
    display: flex;
    align-items: center;
    gap: 0.5208vw;
    font-size: 0.999vw;
    color: #000;
    font-weight: 500;
    transition: 0.2s ease;
}
.category_navbar ul li a svg {
    fill: #000;
    width: 1.516vw;
    height: 1.516vw;
    transition: 0.3s ease;
}
.category_navbar ul li a:hover {
    color: #007bff;
}
.category_navbar ul li a:hover svg {
    fill: #007bff;
}
/* START => BANNER ANIMATION */
.banner {
    border-radius: 0.5208vw;
    display: flex;
    overflow: hidden;
    height: 7.8125vw;
    background-color: #aad1fb;
    position: relative;
}
.add_link {
    width: 30.625vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    display: flex;
    flex-direction: column;
    gap: 0.5208vw;
}
.add_link span {
    color: #fff;
    font-weight: 600;
    font-size: 1.302vw;
}
.add_link a {
    display: flex;
    align-items: center;
    width: max-content;
    border: 0;
    border-radius: 0.2604vw;
    background-color: #fff;
    color: #007bff;
    font-weight: 600;
    padding: 0.5208vw;
    font-size: 0.8333vw;
}
.banner_box {
    width: 100%;
    transform: rotate(-55deg);
    display: flex;
    flex-direction: column;
    gap: 0.5208vw;
}
.banner_box article {
    display: flex;
    width: 100%;
}
.banner_box article .images_box {
    width: 100%;
}
.banner_box article .images_box ul {
    display: flex;
    gap: 0.5208vw;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.banner_box article .images_box ul img {
    border-radius: 0.5208vw;
    display: block;
    /*object-fit: cover;*/
    width: max-content;
    height: 13vw;
}
.banner_box .article_1 {
    animation: bannermoveleft 30s linear infinite;
}
.banner_box .article_2 {
    animation: bannermoveright 30s linear infinite;
}
@keyframes bannermoveleft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes bannermoveright {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(50%);
    }
}
/* START => TOP CAREGORIES */
.categories {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.0416vw;
    padding: 0.7812vw 0;
}
.category_box {
    width: 24.2vw;
    border: 1px solid #a5a5a5;
    border-radius: 0.2604vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.0416vw;
    padding: 0.8208vw;
    transition: 0.2s ease;
}

.category_box:hover {
    background-color: #007bff;
}

.category_box:hover .category_name_arrow svg{
    fill: #ffffff;
    transform: rotate(-55deg);
}

.category_box:hover .category_name_arrow{
    color: #00f0ff;
}

.category_box:hover svg:nth-child(1){
    fill: #ffffff;
}

.category_box svg:nth-child(1) {
    height: 1.5625vw;
    width: 1.5625vw;
    fill: #007bff;
}
.category_box .category_name_arrow {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}
.category_box .category_name_arrow span {
    font-size: 0.7812vw;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.category_box .category_name_arrow svg {
    width: 1.0416vw;
    height: 1.0416vw;
    fill: #a5a5a5;
    transition: all 0.3s ease;
}
/*.category_box:hover {*/
/*    background-color: #ddd 93;*/
/*}*/
/* START => TOP VIEWS SECTION */
.swiper {
    width: 100%;
    height: max-content !important;
    border-radius: 1.0416vw;
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.1);
}
.swiper .swiper-slide {
    height: auto !important;
    min-height: 10vh;
    text-align: center;
    font-size: 0.9375vw;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.swiper .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 0;
    background-color: #fff !important;
}
.swiper .swiper-slide .slide_left_part, .swiper .swiper-slide .slide_rigth_part {
    z-index: 5;
    width: 50%;
    height: 100%;
    color: #000;
    text-align: left;
    padding: 1.0416vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.0416vw;
    background-color: #fff;
}
.swiper .swiper-slide .slide_left_part img, .swiper .swiper-slide .slide_rigth_part img {
    display: block;
    max-width: 70%;
    height: 70%;
    object-fit: contain;
}
.swiper .swiper-slide .slide_rigth_part img{
    border: 1px solid #eee;
}
.iphoneShape{
    display: block;
    width: 256px;
    height: 470px;
    object-fit: contain;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    overflow: hidden;
}
.swiper .swiper-slide .slide_left_part .iphoneShape::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/iphoneShape2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.swiper .swiper-slide .slide_rigth_part {
    background-color: #fff;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
}
.swiper .swiper-slide .slide_rigth_part .logo_title_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5208vw;
}
.swiper .swiper-slide .slide_rigth_part .logo_title_box span {
    font-size: 1vw;
    font-weight: 600;
    width: 100%;
}
.swiper .swiper-slide .slide_rigth_part .logo_title_box img {
    width: 3.6458vw;
    height: 3.6458vw;
}
.swiper .swiper-slide .slide_rigth_part .go_to_page {
    position: absolute;
    left: 0;
    bottom: 10%;
    background-color: #007bff;
    color: #fff;
    border-radius: 0.2604vw;
    padding: 0.5208vw;
    width: max-content;
    font-weight: 600;
}
.swiper .swiper-slide .slide_rigth_part .views_date_box {
    font-size: 0.8333vw;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.2604vw;
}
.swiper .swiper-slide .slide_rigth_part .views_date_box svg {
    width: 0.8333vw;
    height: 0.8333vw;
}
.swiper .swiper-slide .slide_rigth_part .text_description {
    font-size: 0.8333vw;
    overflow-wrap: break-word;
    word-break: normal;
}
.swiper .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000 62;
}
.swiper .autoplay-progress {
    display: none;
}
.swiper_conteiner {
    position: relative;
}
.swiper_conteiner swiper-horizontal > .swiper-pagination-bullets, .swiper_conteiner .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper_conteiner .swiper-pagination-custom, .swiper_conteiner .swiper-pagination-fraction {
    bottom: -1.0416vw !important;
    position: absolute !important;
    z-index: 1 !important;
}
/* START => SLIDER NEXT AND PREV BUTTONS */
.title_button_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.next_prev_conteiner {
    width: 5.2083vw;
    height: max-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7812vw;
}
.next_prev_conteiner button {
    border: 0;
    background-color: transparent;
}
.next_prev_conteiner button svg {
    width: 1.302vw;
    height: 1.302vw;
    fill: #000;
}
.next_prev_conteiner button:active svg {
    fill: #007bff;
}
.next_prev_conteiner .swiper-button-next, .next_prev_conteiner .swiper-button-prev {
    display: none;
}
/* START => BEST WEBSITS */
.websites_slider .swiper {
    width: 100%;
    height: max-content !important;
    border-radius: 0 !important;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0) !important;
    padding: 1.0416vw;
}
.websites_slider .swiper .swiper-wrapper {
    display: flex;
}
.websites_slider .swiper .swiper-slide {
    width: 13.0208vw !important;
    min-height: 20.8333vw;
    display: flex !important;
    border: 0.4166vw solid #fff;
    border-radius: 0.5208vw;
    box-shadow: 0px 0.2083vw 0.2083vw rgba(0, 0, 0, 0.1);
    position: relative;
}
.websites_slider .swiper .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0 !important;
    width: 0 !important;
    background-color: transparent !important;
}
.websites_slider .swiper .swiper-slide img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5208vw !important;
}
.websites_slider .swiper .swiper-slide .title_description {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.7812vw;
    display: flex;
    justify-content: left;
    flex-direction: column;
    z-index: 2;
    color: #000;
    background-color: #fff;
    overflow-y: scroll;
    max-height: 90%;
}
.websites_slider .swiper .swiper-slide .title_description .website_name {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.websites_slider .swiper .swiper-slide .title_description .website_name span:first-child {
    text-align: left;
    font-size: 1.0416vw;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;
}
.websites_slider .swiper .swiper-slide .title_description .show_description {
    position: absolute;
    top: 0.7812vw;
    right: 0.7812vw;
    width: max-content;
    height: max-content;
    border: 0;
    background-color: transparent;
    display: flex;
}
.websites_slider .swiper .swiper-slide .title_description .website_description {
    max-height: 100%;
    text-align: left;
    font-size: 0.7291vw;
    overflow-y: scroll;
}
.hidden_text {
    display: -webkit-box !important;
    text-overflow: ellipsis !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    overflow: hidden !important;
}
/* START => ABOUT US */
.conteiner_textbox {
    display: flex;
    flex-direction: column;
    gap: 1.0416vw;
    padding: 0.7812vw;
}
.conteiner_textbox .text_box {
    display: flex;
    flex-direction: column;
    gap: 0.5208vw;
}
.conteiner_textbox .text_box .subtitle {
    font-size: 1.0416vw;
    font-weight: 600;
}
.conteiner_textbox .text_box ul {
    padding-left: 1.302vw;
}
.conteiner_textbox .text_box ul li {
    list-style: disc;
}
/* START => EDIT USER */
.profile_items {
    margin: auto;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5208vw;
}
.profile_items .profile_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 1.0416vw;
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.1);
}
.profile_items .profile_header button {
    border: 0;
    background-color: transparent;
    color: #000;
    font-weight: 600;
    padding: 0.5208vw;
    width: 100%;
}
.profile_items .user_profile_settings {
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.1);
    width: 100%;
}
.profile_items .user_profile_settings .user_info_box {
    padding: 2.6041vw;
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1.0416vw;
}
.profile_items .user_profile_settings .user_info_box .add_page {
    background-color: #007bff;
    opacity: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 0.5208vw;
    font-weight: 600;
    border: 0;
    border-radius: 0.2604vw;
    transition: all 0.3s ease;
}
.profile_items .user_profile_settings .user_info_box .add_page:hover {
    opacity: 1;
}
.profile_items .user_profile_settings .user_info_box .to_pymublic_sphere {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max-content;
    gap: 0.5208vw;
}
.profile_items .user_profile_settings .user_info_box .to_pymublic_sphere a {
    border: 0;
    border-radius: 0.2604vw;
    opacity: 1;
    transition: all 0.3s ease;
    background-color: #aad1fb 75;
    color: #007bff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5208vw;
    width: 100%;
}
.profile_items .user_profile_settings .user_info_box .to_pymublic_sphere a:hover {
    opacity: 0.7;
}
.profile_items .user_profile_settings .user_info_box .user_photo {
    width: 5.2083vw;
    height: 5.2083vw;
    border: 1px solid #ccc;
    border-radius: 0.2604vw;
    overflow: hidden;
}
.profile_items .user_profile_settings .user_info_box .user_photo img {
    width: 5.2083vw;
    height: 5.2083vw;
    object-fit: cover;
}
.profile_items .user_profile_settings .user_info_box .user_name, .profile_items .user_profile_settings .user_info_box .user_email, .profile_items .user_profile_settings .user_info_box .user_phone {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0.2604vw;
    width: 100%;
}
.profile_items .user_profile_settings .user_info_box .user_name span:first-child, .profile_items .user_profile_settings .user_info_box .user_email span:first-child, .profile_items .user_profile_settings .user_info_box .user_phone span:first-child {
    color: #333;
    font-weight: 600;
}
.add_and_update_website {
    width: 60%;
    height: max-content;
    margin: 2.6041vw auto;
    padding: 2.6041vw;
    background-color: #fff;
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.edit_user_box {
    padding: 2.6041vw;
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1.0416vw;
}
.edit_user_box .photo_changing {
    width: 5.2083vw;
    height: 5.2083vw;
    border: 1px solid #ccc;
    border-radius: 0.2604vw;
    position: relative;
}
.edit_user_box .photo_changing img {
    width: 5.2083vw;
    height: 5.2083vw;
}
.edit_user_box .photo_changing .photo_input {
    width: 1.302vw;
    height: 1.302vw;
    position: absolute;
    top: -0.625vw;
    right: -0.625vw;
    border-radius: 50%;
    cursor: pointer;
}
.edit_user_box .photo_changing .photo_input::after {
    content: '';
    width: 90%;
    height: 90%;
    padding: 0.1562vw;
    background-color: #007bff;
    position: absolute;
    border-radius: 50%;
    background-image: url(../images/akar-icons--pencil\ \(1\).png);
    background-repeat: no-repeat;
    background-size: 70% 70%;
    background-position: 0.1562vw 0.1041vw;
    left: 0;
    top: 0;
    z-index: 5;
}
.edit_user_box .input_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
    position: relative;
    border-bottom: 1px solid #ccc;
}
.edit_user_box .input_box .get_data {
    width: 8.2083vw;
    padding: 0.2604vw;
    height: max-content;
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    border: 0;
    border-radius: 0.2604vw;
    margin: 0.2604vw;
}
.edit_user_box .input_box .input_zone {
    width: 100%;
    height: 100%;
    padding: 0.5208vw;
    margin: 0;
    border: 0;
}
.edit_user_box .input_box textarea {
    height: 7.8125vw !important;
}
.edit_user_box .input_box .border_bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border: 0;
    border-bottom: 0.1041vw solid #007bff;
    transition: 0.3s ease;
}
.edit_user_box .input_box label {
    font-size: 0.7291vw;
    color: #919191;
    position: absolute;
    top: 0.5208vw;
    left: 0.5208vw;
    z-index: 1;
    transition: 0.3s ease;
    cursor: text;
    user-select: none;
    pointer-events: none;
}
.edit_user_box .error_message {
    color: red;
    font-size: 0.677vw;
    padding-left: 0.5208vw;
}
.edit_user_box .back_and_update {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 1.0416vw;
}
.edit_user_box .back_and_update button, .edit_user_box .back_and_update a {
    min-width: 4.1667vw;
    height: max-content;
    padding: 0.5208vw;
    font-size: 0.7812vw;
    opacity: 1;
    font-weight: 600;
    border-radius: 0.5208vw;
    transition: all 0.3s ease;
}
.edit_user_box .back_and_update .cancel_button {
    background-color: transparent;
    color: #333 9d;
    border: 0.1041vw solid #333 9d;
}
.edit_user_box .back_and_update .cancel_button:hover {
    opacity: 0.7;
}
.edit_user_box .back_and_update .edit_user_btn, .edit_user_box .back_and_update .add_info_btn, .edit_user_box .back_and_update .update_info_btn {
    background-color: #007bff;
    color: #fff;
    border: 0.1041vw solid #007bff;
}
.edit_user_box .back_and_update .edit_user_btn:hover, .edit_user_box .back_and_update .add_info_btn:hover, .edit_user_box .back_and_update .update_info_btn:hover {
    opacity: 0.7;
}
.open_profile {
    display: flex !important;
}
.active_profile {
    color: #007bff !important;
    border-bottom: 0.1041vw solid #007bff !important;
}
.to_center {
    top: -0.5208vw !important;
    color: #007bff !important;
}
/* START => ACCOUNT */
.to_profile_my_publications {
    margin: auto;
    width: 80%;
    height: 20.8333vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.to_profile_my_publications .account_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.6041vw;
}
.to_profile_my_publications a {
    font-weight: 600;
    color: #000;
}

.accountButtonBox{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 1.0416vw;
    margin: 3vw auto;
    width: 100%;
}

.accountButton{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5208vw;
    font-size: 0.999vw;
    font-weight: 600;
    color: #000000;
    width: max-content;
    overflow: hidden;
    padding: 0.4166vw 0.9166vw;
    border: 1px solid #007bff;
    border-radius: 0.2604vw;
    transition: all 0.3s ease;
}

.accountButton svg{
    width: 1.5625vw;
    height: 1.5625vw;
    fill: #007bff;
    transition: all 0.3s ease;
}

.accountButton:hover{
    color: #ffffff;
    background: #007bff;
}

.accountButton:hover svg:first-child{
    transform: translateX(-37px);
    fill: #ffffff;
    width: 0;
    height: 0;
}
.accountButton svg:last-child{
    transform: translateX(37px) rotate(135deg);
    width: 0;
    height: 0;
}
.accountButton:hover svg:last-child{
    width: 1.5625vw;
    height: 1.5625vw;
    transform: translateX(0) rotate(135deg);
    fill: #ffffff;
}


/* START => TABLE */
table {
    position: relative;
}
.dt-search {
    padding: 0.2604vw 0.5208vw 0.2604vw 2.3437vw !important;
    border: 1px solid #ccc;
    border-radius: 1.302vw;
    position: relative;
}
.dt-search #dt-search-0 {
    border: 0 !important;
}
.dt-paging-button.disabled {
    display: none !important;
}
div.dt-container .dt-paging .dt-paging-button.current {
    border-bottom: 0.1041vw solid #007bff !important;
}
div.dt-container .dt-paging .dt-paging-button.current:hover, div.dt-container .dt-paging .dt-paging-button.current:hover:hover {
    border-bottom: 0.3041vw solid #007bff !important;
}
div.dt-container .dt-paging .dt-paging-button:hover {
    color: #007bff !important;
    background-color: #fff !important;
    border: 0 !important;
}
div.dt-container .dt-paging .dt-paging-button:hover:hover {
    color: #007bff !important;
    background-color: #fff !important;
    border: 0 !important;
}
div.dt-container .dt-paging .dt-paging-button:hover:active {
    color: #007bff !important;
    background: #fff !important;
    border: 0 !important;
    box-shadow: inset 0 0 0.1562vw #fff !important;
}
.dt-search::after {
    content: '';
    position: absolute;
    left: 0.7812vw;
    top: 50%;
    transform: translateY(-50%);
    width: 1.302vw;
    height: 1.302vw;
    background-image: url(../images/search.png);
    background-size: cover;
}
tbody > tr > * {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 5.2083vw;
}
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc {
    pointer-events: none;
    text-align: center;
    color: #007bff;
}
table.dataTable td.dt-type-numeric, tr {
    text-align: center !important;
}
.dt-info, .dt-length, .dt-search label {
    display: none;
}
table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_1, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_1, table.dataTable.order-column > tbody tr > .sorting_1, table.dataTable.order-column > tbody tr > .sorting_2, table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1, table.dataTable.display > tbody tr > .sorting_2, table.dataTable.display > tbody tr > .sorting_3, table.dataTable.stripe > tbody > tr:nth-child(odd) > *, table.dataTable.display > tbody > tr:nth-child(odd) > *, table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
    box-shadow: none !important;
}
.dt-paging {
    color: #007bff !important;
}
.dt-paging button {
    border: 0 !important;
    background-color: #fff !important;
    color: #007bff !important;
}
.dt-paging .dt-paging-button, .dt-paging .current {
    border: 0 !important;
    background: #fff !important;
    font-weight: 600;
    font-size: 0.8333vw;
}
.website_logo {
    width: 2.0833vw;
    height: 2.0833vw;
    border: 1px solid #ccc;
    border-radius: 0.2604vw;
}
.add_website {
    padding: 0.2604vw 0.5208vw;
    width: max-content;
    height: max-content;
    font-weight: 600;
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 0.2604vw;
    position: absolute;
    top: 0.625vw;
    z-index: 1;
}
.my_public_list_table {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    position: relative;
}
.my_public_list_table .dt-column-order {
    display: none;
}
.my_public_list_table .dt-column-title {
    width: 100% !important;
    text-align: center;
}
.my_public_list_table .action_website {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5208vw;
}
.my_public_list_table .action_website a, .my_public_list_table .action_website button {
    width: max-content;
    height: max-content;
    padding: 0.5208vw;
    text-align: center;
    border: 0;
    background-color: transparent;
}
.my_public_list_table .action_website a svg, .my_public_list_table .action_website button svg {
    width: 1.0416vw;
    height: 1.0416vw;
}
.my_public_list_table .action_website a svg {
    fill: #007bff;
}
.my_public_list_table .action_website button svg {
    fill: #f00;
}
/* START => ACCOUNT */
.app {
    margin: unset;
    min-width: max-content;
    min-height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tag-list {
    width: 30rem;
    max-width: 90vw;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 1rem 0;
    position: relative;
    padding: 1.5rem 0;
    overflow: hidden;
}
.loop-slider .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
}
.tag {
    display: flex;
    align-items: center;
    gap: 0 0.2rem;
    color: #fff;
    font-size: 0.9rem;
    background-color: #007bff;
    border-radius: 0.4rem;
    padding: 0.7rem 1rem;
    margin-right: 1rem;
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.3);
}
.tag span {
    font-size: 1.2rem;
    color: #fff;
}
.fade {
    pointer-events: none;
    background: linear-gradient(90deg, #fff, transparent 30%, transparent 80%, #fff);
    position: absolute;
    inset: 0;
}
@keyframes loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-40%);
    }
}
/* START => SEARCHED WEBSITES VIEW */
.all_searched_websites {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1.0416vw;
    padding: 1.0416vw;
}
.all_searched_websites .pagination_searches {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5208vw;
}
.all_searched_websites .pagination_searches .pagination_pages {
    padding: 0 0.5208vw;
    width: max-content;
    height: max-content;
    text-align: center;
    color: #007bff;
    font-weight: 600;
}
.all_searched_websites .pagination_searches .pagination_pages:hover {
    background-color: #ddd 93;
}
.all_searched_websites .pagination_searches .underline {
    border-bottom: 2px solid #007bff;
}
.all_searched_websites .search_reasult {
    width: 100%;
    min-height: 7.8125vw;
    display: flex;
    align-items: flex-start;
    gap: 0.5208vw;
    border: 1px solid #ccc;
    padding: 1.0416vw;
    position: relative;
    border-radius: 0.5208vw;
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.1);
}
.all_searched_websites .search_reasult .reasult_logo {
    height: 100%;
}
.all_searched_websites .search_reasult .reasult_logo img {
    height: 100%;
    width: 3.6458vw;
}
.all_searched_websites .search_reasult .show_screenshot {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0.5208vw;
    right: 0.5208vw;
    z-index: 1;
}
.all_searched_websites .search_reasult .show_screenshot button {
    background-color: transparent;
    border: 0;
}
.all_searched_websites .search_reasult .show_screenshot .hover_text {
    display: none;
    position: absolute;
    right: 100%;
    top: 100%;
    background-color: #007bff41;
    padding: 0.5208vw 0.5208vw;
    border-radius: 0.2604vw;
    z-index: 1;
    pointer-events: none;
    width: max-content;
    height: max-content;
    box-shadow: 0px 0.2083vw 0.4166vw rgba(0, 0, 0, 0.1);
}
.all_searched_websites .search_reasult .show_screenshot .hover_text img {
    width: 6.25vw;
    height: auto;
}
.all_searched_websites .search_reasult .result_title_description {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5208vw;
}
.all_searched_websites .search_reasult .result_title_description .reasult_title {
    font-weight: 600;
    color: #007bff;
    width: 90%;
}
.all_searched_websites .search_reasult .result_title_description .reasult_description {
    font-size: 0.7291vw;
    color: #000;
    word-break: break-all;
}
.all_searched_websites .search_reasult .result_title_description .reasult_date_views {
    padding: 0.5208vw 1.0416vw;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 0.5208vw;
    color: #333;
}
/* START => FOOTER */
footer {
    padding: 2.6041vw;
    width: 100%;
    height: max-content;
    background-color: #cccccc52;
    display: flex;
    flex-direction: column;
    color: #000000c7;
    gap: 1.5625vw;
    margin-top: auto;
}
footer .underline {
    width: 100%;
    height: 0;
    border-top: 1px solid #3333337a;
}
footer .footer_top_part, footer .footer_bottom_part {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
footer .footer_top_part .footer_box, footer .footer_bottom_part .footer_box {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
    max-width: 30%;
    gap: 1.0416vw;
}
footer .footer_top_part .footer_box span, footer .footer_bottom_part .footer_box span {
    font-weight: 600;
}
footer .footer_top_part .footer_box .link, footer .footer_bottom_part .footer_box .link {
    color: #000000c7;
    position: relative;
}
footer .footer_top_part .footer_box .link::after, footer .footer_bottom_part .footer_box .link::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid #000000c7;
    transition: all 0.3s ease;
}
footer .footer_top_part .footer_box .link:hover::after, footer .footer_bottom_part .footer_box .link:hover::after {
    width: 100%;
}
footer .footer_top_part .production a, footer .footer_bottom_part .production a {
    color: #000000c7;
    font-weight: 600;
}

/* ################################################################################ */
/* ################################################################################ */
/* ####################### START => 1366 RESPONSIVE ################################ */
/* ################################################################################ */
/* ################################################################################ */
@media (max-width: 1366px) {
    /* START => HEADER */
    /* START => NAVBAR */
    /* START => MODAL */
    /* START => BANNER */
    /* START => TOP CATEGORIES */
    /* START => TOP VIEWS */
    /* START => TOP WEBSITES */
    /* START => ABOUT US */
    /* START => SINGN UP / LOGIN */
    /* START => SEARCHED WEBSITES VIEW */
    /* START => ACCOUNT */
    /* START => PROFILE */
    /* START => MY WEBSITES */
    /* START => ADD WEBSITE */
    /* START => FOOTER */
    .title {
        font-size: 2.5625vw;
    }
    header .sign_up_log_in_lang {
        gap: 0.5vw;
    }
    header .sign_up_log_in_lang .search_box {
        width: 21.625vw;
        border-radius: 3.5625vw;
    }
    header .sign_up_log_in_lang .search_box svg {
        width: 1.5vw;
        height: 1.5vw;
    }
    header .sign_up_log_in_lang .search_box input {
        height: 2.5vw;
        font-size: 1vw;
    }
    header .sign_up_log_in_lang .search_box input::placeholder {
        font-size: 1vw;
    }
    header .sign_up_log_in_lang .language_box button svg {
        width: 2vw;
        height: 2vw;
    }
    header .sign_up_log_in_lang a {
        padding: 0.5vw;
        font-size: 1vw;
    }
    header .sign_up_log_in_lang .vertical_row {
        height: 2vw;
    }
    .logo .text {
        font-size: 2.5vw;
    }
    .category_navbar ul {
        gap: 0.5vw;
    }
    .category_navbar ul li a {
        font-size: 1.2vw;
    }
    .category_navbar ul li a svg {
        width: 2vw;
        height: 2vw;
    }
    .delete_card_modal {
        width: 31.8333vw;
        gap: 1.7812vw;
        padding: 2.302vw;
    }
    .delete_card_modal .modal_title {
        font-size: 2.0416vw;
    }
    .delete_card_modal .modal_text {
        font-size: 1.1vw;
    }
    .delete_card_modal .modal_colse_delete_button_box {
        justify-content: space-between;
        gap: unset;
    }
    .delete_card_modal .modal_colse_delete_button_box button {
        width: 48%;
        padding: 1vw;
        border-radius: 0.5vw;
    }
    .banner {
        height: 11vw;
    }
    .banner .add_link {
        gap: 1.5vw;
    }
    .banner .add_link span {
        font-size: 1.6vw;
    }
    .banner .add_link a {
        font-size: 1.5vw;
    }
    .category_box {
        width: 24.2vw;
        border-radius: 0.5vw;
    }
    .category_box svg:nth-child(1) {
        height: 2.5625vw;
        width: 2.5625vw;
    }
    .category_box .category_name_arrow span {
        font-size: 1vw;
    }
    .category_box .category_name_arrow svg {
        width: 2.0416vw;
        height: 2.0416vw;
    }
    .swiper .swiper-slide .slide_rigth_part .logo_title_box img {
        width: 5.6458vw;
        height: 5.6458vw;
    }
    .swiper .swiper-slide .slide_rigth_part .logo_title_box span {
        font-size: 1.5vw;
    }
    .swiper .swiper-slide .slide_rigth_part .text_description {
        font-size: 1vw;
    }
    .swiper .swiper-slide .slide_rigth_part .views_date_box {
        font-size: 1vw;
    }
    .websites_slider .swiper .swiper-slide {
        width: 18.0208vw !important;
        min-height: 26.8333vw;
    }
    .websites_slider .swiper .swiper-slide .title_description .website_name span:first-child {
        font-size: 1.5vw;
    }
    .websites_slider .swiper .swiper-slide .title_description .website_description {
        font-size: 1vw;
    }
    .conteiner_textbox .text_box {
        gap: 1.5208vw;
    }
    .conteiner_textbox .text_box .subtitle {
        font-size: 2.0416vw;
    }
    .conteiner_textbox .text_box .text {
        font-size: 1.3vw;
    }
    .form_conteiner {
        padding: 2.302vw 2.6041vw;
        width: 40%;
        gap: 2.0416vw;
        border-radius: 1.5208vw;
    }
    .form_conteiner .error_message {
        font-size: 1.2vw;
    }
    .form_conteiner .input_box .input_items label {
        font-size: 1.2vw;
    }
    .form_conteiner .input_box .input_items input {
        padding: 1vw;
    }
    .form_conteiner .elem-group .capcha_box {
        width: 28.4167vw;
        height: 4.9687vw;
    }
    .form_conteiner .elem-group .capcha_box .refresh-captcha {
        width: 2.0416vw;
        height: 2.0416vw;
        top: -0.5vw;
        right: -0.5vw;
    }
    .form_conteiner .button_field button {
        padding: 1vw;
        font-size: 1.5vw;
    }
    .all_searched_websites .pagination_searches {
        font-size: 2vw;
    }
    .all_searched_websites .search_reasult .reasult_logo img {
        height: 100%;
        width: 7.6458vw;
    }
    .all_searched_websites .search_reasult .show_screenshot .hover_text img {
        width: 10.25vw;
        height: auto;
    }
    .all_searched_websites .search_reasult .result_title_description .reasult_title {
        font-size: 2vw;
    }
    .all_searched_websites .search_reasult .result_title_description .reasult_description {
        font-size: 1.3vw;
    }
    .all_searched_websites .search_reasult .result_title_description .reasult_date_views {
        font-size: 1.3vw;
    }
    .tag-list {
        width: 20rem;
    }
    .active_profile {
        border-bottom: 0.2041vw solid #007bff !important;
    }
    .profile_items {
        margin: 5vw auto;
        gap: 0.5208vw;
    }
    .profile_items .profile_header button {
        padding: 1.5208vw;
        font-size: 1.5vw;
    }
    .profile_items .user_profile_settings .user_info_box {
        gap: 2.0416vw;
    }
    .profile_items .user_profile_settings .user_info_box .user_photo {
        width: 8.2083vw;
        height: 8.2083vw;
        border-radius: 0.5vw;
    }
    .profile_items .user_profile_settings .user_info_box .user_photo img {
        width: 8.2083vw;
        height: 8.2083vw;
    }
    .profile_items .user_profile_settings .user_info_box .user_name, .profile_items .user_profile_settings .user_info_box .user_email, .profile_items .user_profile_settings .user_info_box .user_phone {
        gap: 1vw;
        font-size: 1.6vw;
    }
    .profile_items .user_profile_settings .edit_user_box {
        gap: 2.0416vw;
    }
    .profile_items .user_profile_settings .edit_user_box .photo_changing {
        width: 8.2083vw;
        height: 8.2083vw;
        border-radius: 0.5vw;
    }
    .profile_items .user_profile_settings .edit_user_box .photo_changing .photo_input {
        width: 2vw;
        height: 2vw;
        top: -1vw;
        right: -1vw;
    }
    .profile_items .user_profile_settings .edit_user_box .photo_changing .photo_input::after {
        background-position: 0.3562vw 0.2041vw;
    }
    .profile_items .user_profile_settings .edit_user_box .photo_changing img {
        width: 8.2083vw;
        height: 8.2083vw;
    }
    .profile_items .user_profile_settings .edit_user_box .input_box label {
        font-size: 1.5vw;
        top: 1.3vw;
        left: 1.5208vw;
    }
    .profile_items .user_profile_settings .edit_user_box .input_box .input_zone {
        padding: 1.2vw;
        font-size: 1.4vw;
    }
    .profile_items .user_profile_settings .edit_user_box .input_box .border_bottom {
        border-bottom: 0.2041vw solid #007bff;
    }
    .profile_items .user_profile_settings .edit_user_box .back_and_update button, .profile_items .user_profile_settings .edit_user_box .back_and_update a {
        padding: 1vw;
        font-size: 1.7812vw;
        border-radius: 0.6vw;
    }
    .profile_items .user_profile_settings .edit_user_box .error_message {
        font-size: 1vw;
    }
    .profile_items .user_profile_settings .to_center {
        top: -1vw !important;
    }

    .my_public_list_table .action_website a svg, .my_public_list_table .action_website button svg {
        width: 2vw;
        height: 2vw;
    }
    .my_public_list_table .dt-column-title {
        width: 100% !important;
        text-align: center;
        font-size: 1.7vw;
    }
    .my_public_list_table tbody {
        font-size: 1.4vw;
    }
    .my_public_list_table div.dt-container .dt-paging .dt-paging-button.current, .my_public_list_table div.dt-container .dt-paging .dt-paging-button {
        font-size: 1.5vw;
    }
    .my_public_list_table div.dt-container .dt-paging .dt-paging-button.current {
        border-bottom: 0.3041vw solid #007bff !important;
    }
    .add_website {
        padding: 0.2604vw 0.5208vw;
        border-radius: 0.4604vw;
        top: 1vw;
        font-size: 1.4vw;
    }
    .website_logo {
        width: 4.0833vw;
        height: 4.0833vw;
        border: 1px solid #ccc;
        border-radius: 0.2604vw;
    }
    .add_and_update_website .edit_user_box {
        gap: 1.5vw;
    }
    .add_and_update_website .edit_user_box .photo_changing {
        width: 8.2083vw;
        height: 8.2083vw;
    }
    .add_and_update_website .edit_user_box .photo_changing img {
        width: 8.2083vw;
        height: 8.2083vw;
    }
    .add_and_update_website .edit_user_box .photo_changing .photo_input {
        width: 2.302vw;
        height: 2.302vw;
        top: -1vw;
        right: -1vw;
    }
    .add_and_update_website .edit_user_box .photo_changing .photo_input::after {
        background-position: 0.4vw 0.2vw;
    }
    .add_and_update_website .edit_user_box .input_box label {
        font-size: 1vw;
        top: 0.7vw;
        left: 1vw;
    }
    .add_and_update_website .edit_user_box .input_box .input_zone {
        padding: 0.7vw;
    }
    .add_and_update_website .edit_user_box .input_box .border_bottom {
        border-bottom: 0.2vw solid #007bff;
    }
    .add_and_update_website .edit_user_box .input_box textarea {
        height: 9.8125vw !important;
    }
    .add_and_update_website .edit_user_box .back_and_update button, .add_and_update_website .edit_user_box .back_and_update a {
        font-size: 1.3vw;
    }
    .add_and_update_website .edit_user_box .error_message {
        font-size: 0.9vw;
    }
    .to_center {
        top: -1vw !important;
        color: #007bff !important;
    }
    footer .footer_top_part .footer_box, footer .footer_bottom_part .footer_box {
        max-width: 40%;
        font-size: 1.4vw;
    }
}
/* ################################################################################ */
/* ################################################################################ */
/* ####################### START => 1024 RESPONSIVE ################################ */
/* ################################################################################ */
/* ################################################################################ */
@media (max-width: 1024px) {
    /* START => BANNER */
    /* START => TOP VIES */
    /* START => ADD WEBSITE */
    /* START => FOOTER */
    .banner_box article .images_box ul img {
        width: 30vw;
    }
    .next_prev_conteiner {
        width: 7.2083vw;
    }
    .next_prev_conteiner button svg {
        width: 2.302vw;
        height: 2.302vw;
    }
    .to_profile_my_publications {
        height: max-content;
        flex-direction: column-reverse;
    }
    .to_profile_my_publications .account_box {
        flex-direction: row;
        gap: 2.6041vw;
    }

    .accountButton{
        gap: 1.5208vw;
        font-size: 1.5208vw;
        padding: 0.7vw 1.9166vw;
        border-radius: 0.6604vw;
    }

    .accountButton svg{
        width: 2.4vw;
        height: 2.4vw;
    }
    .accountButton:hover svg:last-child{
        width: 2.4vw;
        height: 2.4vw;
    }
    .tag-list {
        width: 50vw;
    }
    .add_and_update_website {
        width: 75%;
    }
    .add_and_update_website .edit_user_box {
        gap: 3.0416vw;
    }
    .add_and_update_website .edit_user_box .photo_changing {
        width: 11.2083vw;
        height: 11.2083vw;
    }
    .add_and_update_website .edit_user_box .photo_changing .photo_input {
        width: 3vw;
        height: 3vw;
        top: -1.5vw;
        right: -1.5vw;
    }
    .add_and_update_website .edit_user_box .photo_changing .photo_input::after {
        background-position: 0.5562vw 0.3041vw;
    }
    .add_and_update_website .edit_user_box .photo_changing img {
        width: 11.2083vw;
        height: 11.2083vw;
    }
    .add_and_update_website .edit_user_box .input_box .input_zone {
        padding: 1.2vw;
        font-size: 1.5vw;
    }
    .add_and_update_website .edit_user_box .input_box label {
        font-size: 1.5vw;
        top: 1vw;
        left: 1.3vw;
    }
    .add_and_update_website .edit_user_box .input_box textarea {
        height: 15.8125vw !important;
    }
    .add_and_update_website .edit_user_box .back_and_update button, .add_and_update_website .edit_user_box .back_and_update a {
        font-size: 1.8vw;
    }
    .add_and_update_website .edit_user_box .error_message {
        font-size: 1.3vw;
    }
    footer .footer_top_part, footer .footer_bottom_part {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    footer .footer_top_part .footer_box, footer .footer_bottom_part .footer_box {
        max-width: max-content;
        font-size: 1.4vw;
        margin: 2vw;
    }
}
/* ################################################################################ */
/* ################################################################################ */
/* ####################### START => 950 RESPONSIVE ################################ */
/* ################################################################################ */
/* ################################################################################ */
@media (max-width: 950px) {
    /* START => HEADER */
    /* START => NAVBAR */
    /* START => TOP CATEGORIES */
    /* START => TOP VIEWS */
    /* START => TOP WEBSITES */
    /* START => SIGN UP / LOGIN */
    /* START => SEARCHED WEBSITES VIEW */
    header .sign_up_log_in_lang .search_box {
        width: 18.625vw;
    }
    header .sign_up_log_in_lang .search_box input {
        height: 3vw;
        font-size: 1.2842vw;
    }
    header .sign_up_log_in_lang .search_box input::placeholder {
        font-size: 1.2842vw;
    }
    header .sign_up_log_in_lang a {
        padding: 0.8vw;
        font-size: 1.3vw;
    }
    header .sign_up_log_in_lang .language_box button svg {
        width: 2vw;
        height: 2vw;
    }
    .category_navbar ul li a {
        font-size: 1.3vw;
    }
    .category_navbar ul li a svg {
        width: 2vw;
        height: 2vw;
    }
    .category_box .category_name_arrow span {
        font-size: 1.2vw;
    }
    .swiper .swiper-slide .slide_rigth_part .logo_title_box img {
        width: 5.6458vw;
        height: 5.6458vw;
    }
    .swiper .swiper-slide .slide_rigth_part .text_description {
        font-size: 1vw;
    }
    .swiper .swiper-slide .slide_rigth_part .views_date_box {
        font-size: 1.2vw;
    }
    .swiper .swiper-slide .slide_rigth_part .views_date_box svg {
        width: 1.2vw;
        height: 1.2vw;
    }
    .websites_slider .swiper .swiper-slide {
        width: 21.0208vw !important;
        min-height: 31.8333vw;
    }
    .form_conteiner {
        width: 40%;
        justify-content: flex-start;
        align-items: center;
        gap: 2.0416vw;
    }
    .form_conteiner .error_message {
        font-size: 1.677vw;
        padding-left: 0.5208vw;
    }
    .form_conteiner .input_box .input_items label {
        font-size: 1vw;
    }
    .form_conteiner .input_box .input_items input {
        padding: 1vw;
    }
    .form_conteiner .elem-group .capcha_box {
        width: 27.4167vw;
        height: 4.9687vw;
    }
    .form_conteiner .elem-group .capcha_box .refresh-captcha {
        width: 2vw;
        height: 2vw;
        top: -0.5vw;
        right: -0.5vw;
    }
    .form_conteiner .button_field button {
        padding: 1vw;
        font-size: 1.5vw;
    }
    .all_searched_websites .pagination_searches {
        font-size: 2vw;
    }
    .all_searched_websites .search_reasult {
        gap: 1.5208vw;
        padding: 2vw;
        border-radius: 1vw;
    }
    .all_searched_websites .search_reasult .show_screenshot {
        top: 1.5208vw;
        right: 1.5208vw;
    }
    .all_searched_websites .search_reasult .reasult_logo img {
        width: 11.6458vw;
    }
    .all_searched_websites .search_reasult .show_screenshot .hover_text img {
        width: 10.25vw;
        height: auto;
    }
    .all_searched_websites .search_reasult .result_title_description .reasult_title {
        font-size: 2.5vw;
    }
    .all_searched_websites .search_reasult .result_title_description .reasult_description {
        font-size: 1.6vw;
    }
    .all_searched_websites .search_reasult .result_title_description .reasult_date_views {
        font-size: 1.4vw;
    }
}
/* ################################################################################ */
/* ################################################################################ */
/* ####################### START => 850 RESPONSIVE ################################ */
/* ################################################################################ */
/* ################################################################################ */
@media (max-width: 850px) {
    /* START => HEADER */
    /* START => MENU */
    /* START => NAVBAR */
    /* START => MODAL */
    /* START => BANNER */
    /* START => TOP CATEGORIES */
    /* START => TOP VIEWS */
    /* START => ABOUT US */
    /* START => ACCOUNT */
    /* START => MY WEBSITES */
    /* START => FOOTER */
    .navbar_columns {
        flex-direction: column;
    }
    main {
        width: 100vw;
    }
    header {
        height: 8.23vw;
    }
    header .sign_up_log_in_lang .language_box{
        display: none;
    }
    .logo .text {
        font-size: 3vw;
    }
    .hamburger {
        display: block;
        right: 3vw;
        top: 2.67vw;
    }
    .hamburger svg {
        width: 2.9411vw;
        height: 2.9411vw;
    }
    .logout, .sign_up, .login, .select_language, .vertical_row {
        display: none !important;
    }
    .menu_box {
        display: flex;
    }
    .category_navbar {
        position: relative;
        top: 0;
        width: 100vw;
        display: flex;
        height: auto;
        box-shadow: 0vw 0.5vw 1vw rgba(0, 0, 0, 0.1);
        flex-wrap: wrap;
    }
    .category_navbar ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }
    .category_navbar ul li {
        width: 25%;
        padding: 1vw;
        border-right: 1px solid #ccc;
    }
    .category_navbar ul li:last-child {
        border-right: none;
    }
    .category_navbar ul li a {
        font-size: 1.5vw;
    }
    .category_navbar ul li a svg {
        width: 2.5vw;
        height: 2.5vw;
    }
    .delete_card_modal {
        width: 58.8333vw;
        gap: 2.7812vw;
        padding: 3.302vw;
        border-radius: 1.4166vw;
    }
    .delete_card_modal .modal_title {
        font-size: 3.5vw;
    }
    .delete_card_modal .modal_text {
        font-size: 2.1vw;
    }
    .delete_card_modal .modal_colse_delete_button_box button {
        padding: 2vw;
        border-radius: 1vw;
        font-size: 2vw;
    }
    .banner {
        height: 16vw;
    }
    .banner .add_link {
        width: 29vw;
    }
    .banner .add_link span {
        font-size: 2vw;
    }
    .banner .add_link a {
        border-radius: 0.5vw;
        padding: 1vw;
        font-size: 1.5vw;
    }
    .banner .banner_box article .images_box ul img {
        width: 36vw;
        height: 18vw;
    }
    .category_box {
        width: 30.8vw;
        border-radius: 0.5vw;
    }
    .category_box svg:nth-child(1) {
        height: 3.5625vw;
        width: 3.5625vw;
    }
    .category_box .category_name_arrow span {
        font-size: 1.5vw;
    }
    .category_box .category_name_arrow svg {
        width: 2.0416vw;
        height: 2.0416vw;
    }
    .swiper .autoplay-progress svg {
        display: none;
    }
    .swiper .swiper-slide .slide_rigth_part .logo_title_box span {
        font-size: 2vw;
    }
    .swiper .swiper-slide .slide_rigth_part .text_description {
        font-size: 1.2vw;
    }
    .swiper .swiper-slide .slide_rigth_part .go_to_page {
        border-radius: 1vw;
        padding: 1vw;
        font-size: 2vw;
    }
    .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        display: none;
    }
    .conteiner_textbox .text_box .text {
        font-size: 1.8vw;
    }
    .tag-list {
        width: 66vw;
    }
    .to_profile_my_publications {
        margin: 10vw auto;
        gap: 3vw;
    }
    .dt-search::after {
        width: 3.302vw;
        height: 3.302vw;
    }
    .dt-search #dt-search-0 {
        border: 0 !important;
        padding-left: 3vw;
    }
    div.dt-container .dt-search input {
        font-size: 2.6vw;
        width: 95%;
    }
    div.dt-container div.dt-layout-row {
        overflow-x: auto;
    }
    .my_public_list_table .action_website a svg, .my_public_list_table .action_website button svg {
        width: 3.3vw;
        height: 3.3vw;
    }
    .my_public_list_table .dt-column-title {
        font-size: 3vw;
    }
    .my_public_list_table tbody {
        font-size: 2.4vw;
    }
    .my_public_list_table div.dt-container .dt-paging .dt-paging-button.current, .my_public_list_table div.dt-container .dt-paging .dt-paging-button {
        font-size: 2.5vw;
    }
    .my_public_list_table div.dt-container .dt-paging .dt-paging-button.current {
        border-bottom: 0.3041vw solid #007bff !important;
    }
    .add_website {
        position: sticky;
        padding: 0.5vw 1vw;
        border-radius: 1vw;
        top: unset;
        bottom: unset;
        font-size: 2.4vw;
    }
    .website_logo {
        width: 6.0833vw;
        height: 6.0833vw;
    }
    footer .footer_top_part, footer .footer_bottom_part {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    footer .footer_top_part .footer_box, footer .footer_bottom_part .footer_box {
        max-width: max-content;
        font-size: 2vw;
        margin: 2vw;
    }
}

/* ################################################################################ */
/* ################################################################################ */
/* ####################### START => 750 RESPONSIVE ################################ */
/* ################################################################################ */
/* ################################################################################ */
@media (max-width: 750px) {
    /* START => HEADER */
    /* START => TOP WEBSITES */
    /* START => SIGN UP / LOGIN */
    /* START => ADD WEBSITE */
    header {
        height: 10.23vw;
    }
    header .sign_up_log_in_lang .search_box {
        width: 21.625vw;
        border-radius: 3vw;
    }
    header .sign_up_log_in_lang .search_box svg {
        width: 1.9vw;
        height: 1.9vw;
    }
    header .sign_up_log_in_lang .search_box input {
        height: 4vw;
        font-size: 1.2842vw;
    }
    .hamburger {
        top: 3.67vw;
    }
    .websites_slider .swiper .swiper-slide {
        width: 25.0208vw !important;
        min-height: 37.8333vw;
        border: 1vw solid #fff;
        box-shadow: 0px 0.5vw 1.2083vw rgba(0, 0, 0, 0.1);
    }
    .websites_slider .swiper .swiper-slide .title_description .website_name span:first-child {
        font-size: 2.5vw;
    }
    .websites_slider .swiper .swiper-slide .title_description .website_description {
        font-size: 1.6vw;
    }
    .form_conteiner {
        width: 55%;
        gap: 3.0416vw;
    }
    .form_conteiner .error_message {
        font-size: 1.677vw;
        padding-left: 0.5208vw;
    }
    .form_conteiner .input_box .input_items label {
        font-size: 1.5vw;
    }
    .add_and_update_website {
        width: 75%;
    }
    .add_and_update_website .title {
        font-size: 4.5625vw;
    }
    .add_and_update_website .back_and_update {
        gap: 2.0416vw;
    }
    .add_and_update_website .back_and_update button, .add_and_update_website .back_and_update a {
        font-size: 2.7812vw;
        border-radius: 1vw;
    }
    .add_and_update_website .edit_user_box {
        gap: 3.0416vw;
    }
    .add_and_update_website .edit_user_box .photo_changing {
        width: 15.2083vw;
        height: 15.2083vw;
    }
    .add_and_update_website .edit_user_box .photo_changing .photo_input {
        width: 4vw;
        height: 4vw;
        top: -2vw;
        right: -2vw;
    }
    .add_and_update_website .edit_user_box .photo_changing .photo_input::after {
        background-position: 0.4562vw 0.3041vw;
        width: 100%;
        height: 100%;
    }
    .add_and_update_website .edit_user_box .photo_changing img {
        width: 15.2083vw;
        height: 15.2083vw;
    }
    .add_and_update_website .edit_user_box .input_box textarea {
        height: 15.8125vw !important;
    }
    .add_and_update_website .edit_user_box .input_box .get_data {
        width: max-content;
        font-size: 2vw;
        border-radius: 1vw;
    }
    .add_and_update_website .edit_user_box .input_box label {
        font-size: 2.5vw;
        top: 2.4vw;
        left: 2vw;
    }
    .add_and_update_website .edit_user_box .input_box .input_zone {
        padding: 2.2vw;
        font-size: 2.5vw;
    }
    .add_and_update_website .edit_user_box .input_box .border_bottom {
        border-bottom: 0.4041vw solid #007bff;
    }
    .add_and_update_website .edit_user_box .error_message {
        font-size: 2.1vw;
    }
    .add_and_update_website .to_center {
        top: -2vw !important;
    }
}
/* ################################################################################ */
/* ################################################################################ */
/* ####################### START => 650 RESPONSIVE ################################ */
/* ################################################################################ */
/* ################################################################################ */
@media (max-width: 650px) {
    /* START => HEADER */
    /* START => NAVBAR */
    /* START => BANNER */
    /* START => TOP CATEGORIES */
    /* START => TOP VIEWS */
    /* START => ABOUT US */
    /* START => SEARCHED WEBSITES VIEW */
    /* START => ACCOUNT */
    main section {
        padding: 3.302vw 2.6041vw;
    }
    .title {
        font-size: 3.5625vw;
    }
    header {
        height: 12.23vw;
    }
    header .sign_up_log_in_lang .search_box {
        width: 33.625vw;
        border-radius: 4vw;
    }
    header .sign_up_log_in_lang .search_box svg {
        width: 3.5vw;
        height: 3.5vw;
    }
    header .sign_up_log_in_lang .search_box input {
        height: 6vw;
        font-size: 2.2842vw;
    }
    header .sign_up_log_in_lang .search_box input::placeholder {
        font-size: 2.2842vw;
    }
    .logo .text {
        font-size: 5vw;
    }
    .hamburger {
        top: 4.2vw;
        right: 2vw;
    }
    .hamburger svg {
        width: 3.9411vw;
        height: 3.9411vw;
    }
    .category_navbar ul li a {
        font-size: 2vw;
    }
    .category_navbar ul li a svg {
        width: 3vw;
        height: 3vw;
    }
    .banner {
        height: max-content;
        border-radius: 1vw;
        padding: 5vw 0 0 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 6vw;
    }
    .banner .add_link {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align:center;
    }
    .banner .add_link span {
        font-size: 6vw;
    }
    .banner .add_link a {
        font-size: 3vw;
        padding: 2vw;
        border-radius: 1vw;
    }
    .banner .banner_box {
        gap: 1.5vw;
        transform: unset;
    }
    .banner .banner_box article .images_box ul {
        gap: 1.5vw;
    }
    .banner .banner_box article .images_box ul img {
        width: 40vw;
    }
    @keyframes bannermoveleft {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    @keyframes bannermoveright {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(0%);
        }
    }
    .category_box {
        padding: 1vw;
        width: 46.7vw;
    }
    .category_box svg:nth-child(1) {
        height: 4.5625vw;
        width: 4.5625vw;
    }
    .category_box .category_name_arrow span {
        font-size: 2vw;
    }
    .category_box .category_name_arrow svg {
        width: 3.0416vw;
        height: 3.0416vw;
    }
    .next_prev_conteiner {
        width: 8.2083vw;
    }
    .next_prev_conteiner button svg {
        width: 4.302vw;
        height: 3.302vw;
    }
    .swiper .swiper-slide .slide_left_part {
        display: none;
    }
    .swiper .swiper-slide .slide_rigth_part {
        min-height: 35vw;
        width: 100%;
        padding: 5vw;
    }
    .swiper .swiper-slide .slide_rigth_part .views_date_box {
        font-size: 1.6vw;
        gap: 1vw;
    }
    .swiper .swiper-slide .slide_rigth_part .views_date_box svg {
        width: 1.6vw;
        height: 1.6vw;
    }
    .swiper .swiper-slide .slide_rigth_part .logo_title_box img {
        width: 7.6458vw;
        height: 7.6458vw;
    }
    .swiper .swiper-slide .slide_rigth_part .text_description {
        font-size: 1.6vw;
    }
    .swiper .swiper-slide .slide_rigth_part .go_to_page {
        left: 5vw;
        position: sticky;
    }
    .conteiner_textbox .text_box .text {
        font-size: 2.2vw;
    }
    .conteiner_textbox .text_box ul li {
        list-style: none;
    }
    .all_searched_websites {
        gap: 2.0416vw;
        padding: 2.0416vw;
    }
    .tag-list {
        width: 92vw;
    }
}
/* ################################################################################ */
/* ################################################################################ */
/* ####################### START => 500 RESPONSIVE ################################ */
/* ################################################################################ */
/* ################################################################################ */
@media (max-width: 500px) {
    /* START => HEADER */
    /* START => MENU */
    /* START => NAVBAR */
    /* START => MODAL */
    /* START => BANNER */
    /* STAR => TOP CATEGORIES */
    /* START => TOP VIEWS */
    /* START => TOP WEBSITES */
    /* START => ABOUT US */
    /* START => SIGN UP / LOGIN */
    /* START => SEARCHED WEBSITES VIEW */
    /* START => ACCOUNT */
    /* START => PROFILE */
    /* START => MY WEBSITES */
    /* START => ADD WEBSITE */
    /* START => FOOTER */
    main section {
        padding: 5.302vw 2.6041vw;
    }
    .title {
        font-size: 5.5625vw;
    }
    header {
        height: 18.23vw;
        justify-content: start;
        padding: 0.5208vw 3.2916vw;
        gap: 5vw;
    }
    header .sign_up_log_in_lang .search_box {
        width: 58vw;
        border-radius: 6vw;
        padding: 1px 2.0416vw;
    }
    header .sign_up_log_in_lang .search_box svg {
        width: 5.9vw;
        height: 5.9vw;
    }
    header .sign_up_log_in_lang .search_box input {
        height: 9vw;
        font-size: 4.2842vw;
    }
    header .sign_up_log_in_lang .search_box input::placeholder {
        font-size: 4.2842vw;
    }
    .logo .text {
        font-size: 7vw;
    }
    .hamburger {
        top: 5.5vw;
        right: 4vw;
    }
    .hamburger svg {
        width: 7.9411vw;
        height: 7.9411vw;
    }
    .menu_box {
        padding: 30% 5%;
        justify-content: flex-start;
    }
    .menu_items a {
        font-size: 25px;
    }
    .category_navbar ul {
        display: flex;
        flex-direction: row;
    }
    .category_navbar ul li {
        padding: 1.8vw 2.5vw;
        width: 50%;
        border: 0;
    }
    .category_navbar ul li:nth-child(odd) {
        border-right: 1px solid #ccc;
    }
    .category_navbar ul li a {
        font-size: 3vw;
        height: 100%;
        gap: 8px;
    }
    .category_navbar ul li a svg {
        width: 4.5vw;
        height: 4.5vw;
    }
    .delete_card_modal {
        width: 89.8333vw;
        gap: 4.7812vw;
        padding: 4.302vw;
    }
    .delete_card_modal .modal_title {
        font-size: 6vw;
    }
    .delete_card_modal .modal_text {
        font-size: 4.1vw;
    }
    .delete_card_modal .modal_colse_delete_button_box button {
        padding: 3vw;
        font-size: 4vw;
    }
    .banner .add_link span {
        font-size: 9vw;
    }
    .banner .add_link a {
        font-size: 4vw;
        padding: 2vw;
        border-radius: 1.5vw;
    }
    .banner .banner_box article .images_box ul img {
        width: 47vw;
        height: 23vw;
    }
    .categories {
        gap: 2.0416vw;
    }
    .categories .category_box {
        padding: 3vw;
        width: 100vw;
        border-radius: 1vw;
    }
    .categories .category_box svg:nth-child(1) {
        height: 7.5625vw;
        width: 7.5625vw;
    }
    .categories .category_box .category_name_arrow span {
        font-size: 3.5vw;
    }
    .categories .category_box .category_name_arrow svg {
        width: 6.0416vw;
        height: 6.0416vw;
    }
    .next_prev_conteiner {
        display: none;
    }
    .swiper_conteiner .swiper {
        box-shadow: 0px 1vw 2vw rgba(0, 0, 0, 0.1);
    }
    .swiper_conteiner .swiper .swiper-slide {
        height: max-content !important;
    }
    .swiper_conteiner .swiper .swiper-slide .slide_rigth_part {
        height: max-content !important;
        width: 100%;
        padding: 5vw;
    }
    .swiper_conteiner .swiper .swiper-slide .slide_rigth_part .logo_title_box {
        gap: 2.5vw;
        width: 100%;
    }
    .swiper_conteiner .swiper .swiper-slide .slide_rigth_part .logo_title_box img {
        width: 20.6458vw;
        height: 20.6458vw;
    }
    .swiper_conteiner .swiper .swiper-slide .slide_rigth_part .logo_title_box span {
        font-size: 4.5vw;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 90%;
    }
    .swiper_conteiner .swiper .swiper-slide .slide_rigth_part .views_date_box {
        font-size: 3vw;
    }
    .swiper_conteiner .swiper .swiper-slide .slide_rigth_part .views_date_box svg {
        width: 3vw;
        height: 3.5vw;
    }
    .swiper_conteiner .swiper .swiper-slide .slide_rigth_part .text_description {
        font-size: 3.3vw;
        display: -webkit-box !important;
        text-overflow: ellipsis !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
        overflow: hidden !important;
    }
    .swiper_conteiner .swiper .swiper-slide .slide_rigth_part .go_to_page {
        right: 5vw;
        left: unset;
        bottom: 2vw;
        font-size: 4vw;
        padding: 2vw;
        position: sticky;
    }
    .websites_slider .swiper .swiper-slide {
        width: 77vw !important;
        min-height: 117vw;
        border: 3.5vw solid #fff;
        border-radius: 1vw;
        box-shadow: 0px 0.6vw 1.6vw rgba(0, 0, 0, 0.1);
    }
    .websites_slider .swiper .swiper-slide .title_description .website_name span:first-child {
        font-size: 4.5vw;
    }
    .websites_slider .swiper .swiper-slide .title_description .website_description {
        font-size: 3vw;
    }
    .conteiner_textbox .text_box .subtitle {
        font-size: 4.0416vw;
    }
    .conteiner_textbox .text_box .text {
        font-size: 3vw;
    }
    .form_conteiner {
        width: 80%;
        gap: 5.0416vw;
        margin: 10.6041vw auto;
        padding: 2.302vw 3.6041vw;
        border-radius: 1.5208vw;
        box-shadow: 0px 1vw 2vw rgba(0, 0, 0, 0.1);
    }
    .form_conteiner .error_message {
        font-size: 2.677vw;
        padding-left: 1.5208vw;
    }
    .form_conteiner .input_box .input_items label {
        font-size: 3vw;
        left: 2vw;
    }
    .form_conteiner .input_box .input_items input {
        padding: 3vw;
        border-radius: 1.5208vw;
        font-size: 3.5vw;
    }
    .form_conteiner .elem-group {
        gap: 3.0416vw;
    }
    .form_conteiner .elem-group .capcha_box {
        width: 50.4167vw;
        height: 11.9687vw;
    }
    .form_conteiner .elem-group .capcha_box .refresh-captcha {
        width: 4vw;
        height: 4vw;
        top: -1.5vw;
        right: -0.5vw;
    }
    .form_conteiner .button_field button {
        padding: 2vw;
        font-size: 3.5vw;
        border-radius: 1.2604vw;
    }
    .all_searched_websites .pagination_searches {
        font-size: 4.5vw;
    }
    .all_searched_websites .pagination_searches .pagination_pages {
        padding: 0px 2.5vw;
    }
    .all_searched_websites .search_reasult {
        gap: 1.5208vw;
        padding: 2vw;
        border-radius: 1vw;
    }
    .all_searched_websites .search_reasult .show_screenshot {
        top: 1.5208vw;
        right: 1.5208vw;
    }
    .all_searched_websites .search_reasult .reasult_logo img {
        width: 17.6458vw;
    }
    .all_searched_websites .search_reasult .show_screenshot .hover_text {
        padding: 2.5208vw 2.5208vw;
        border-radius: 1.2604vw;
    }
    .all_searched_websites .search_reasult .show_screenshot .hover_text img {
        width: 25.25vw;
    }
    .all_searched_websites .search_reasult .result_title_description .reasult_title {
        font-size: 4.5vw;
    }
    .all_searched_websites .search_reasult .result_title_description .reasult_description {
        font-size: 2.6vw;
    }
    .all_searched_websites .search_reasult .result_title_description .reasult_date_views {
        font-size: 2.4vw;
    }
    .app {
        display: none;
    }
    .to_profile_my_publications .account_box {
        flex-direction: column;
        gap: 2.6041vw;
    }
    .to_profile_my_publications .account_box .category_box {
        padding: 2vw;
        width: 92vw;
        border-radius: 1vw;
        gap: 3vw;
    }
    .to_profile_my_publications .account_box .category_box svg:nth-child(1) {
        height: 9.5625vw;
        width: 9.5625vw;
    }
    .to_profile_my_publications .account_box .category_box .category_name_arrow span {
        font-size: 4vw;
    }
    .to_profile_my_publications .account_box .category_box .category_name_arrow svg {
        width: 6.0416vw;
        height: 6.0416vw;
    }
    .active_profile {
        border-bottom: 0.6vw solid #007bff !important;
    }
    .profile_items {
        margin: 10vw auto;
        gap: 2.5208vw;
        width: 95%;
    }
    .profile_items .profile_header {
        box-shadow: 0px 0.9083vw 1.8166vw rgba(0, 0, 0, 0.1);
    }
    .profile_items .profile_header button {
        padding: 2.5208vw;
        font-size: 4.5vw;
    }
    .profile_items .user_profile_settings {
        box-shadow: 0px 0.9083vw 1.8166vw rgba(0, 0, 0, 0.1);
    }
    .profile_items .user_profile_settings .user_info_box {
        padding: 4.6041vw;
        gap: 6.0416vw;
    }
    .profile_items .user_profile_settings .user_info_box .user_photo {
        width: 22.2083vw;
        height: 22.2083vw;
        border-radius: 1.5vw;
    }
    .profile_items .user_profile_settings .user_info_box .user_photo img {
        width: 22.2083vw;
        height: 22.2083vw;
    }
    .profile_items .user_profile_settings .user_info_box .user_name, .profile_items .user_profile_settings .user_info_box .user_email, .profile_items .user_profile_settings .user_info_box .user_phone {
        gap: 3vw;
        font-size: 3.8vw;
    }
    .profile_items .user_profile_settings .edit_user_box {
        padding: 4.6041vw;
        gap: 6.0416vw;
    }
    .profile_items .user_profile_settings .edit_user_box .photo_changing {
        width: 22.2083vw;
        height: 22.2083vw;
        border-radius: 1.5vw;
    }
    .profile_items .user_profile_settings .edit_user_box .photo_changing .photo_input {
        width: 6vw;
        height: 6vw;
        top: -3vw;
        right: -3vw;
    }
    .profile_items .user_profile_settings .edit_user_box .photo_changing .photo_input::after {
        width: 100%;
        height: 100%;
        background-position: 0.7562vw 0.7041vw;
    }
    .profile_items .user_profile_settings .edit_user_box .photo_changing img {
        width: 22.2083vw;
        height: 22.2083vw;
    }
    .profile_items .user_profile_settings .edit_user_box .input_box label {
        font-size: 4vw;
        top: 5.3vw;
        left: 4.5208vw;
    }
    .profile_items .user_profile_settings .edit_user_box .input_box .input_zone {
        padding: 4.2vw;
        font-size: 4.4vw;
    }
    .profile_items .user_profile_settings .edit_user_box .input_box .border_bottom {
        border-bottom: 0.5vw solid #007bff;
    }
    .profile_items .user_profile_settings .edit_user_box .back_and_update {
        gap: 3.0416vw;
    }
    .profile_items .user_profile_settings .edit_user_box .back_and_update button, .profile_items .user_profile_settings .edit_user_box .back_and_update a {
        padding: 3vw;
        font-size: 3.7812vw;
        border-radius: 1.6vw;
    }
    .profile_items .user_profile_settings .edit_user_box .error_message {
        font-size: 3.5vw;
    }
    .profile_items .user_profile_settings .to_center {
        top: -3vw !important;
    }
    .accountButtonBox{
        justify-content: space-around;
    }
    .accountButton{
        gap: 8px;
        font-size: 3vw;
        padding: 0.7vw 1.9166vw;
        border-radius: 0.6604vw;
    }

    .accountButton svg{
        width: 4.5vw;
        height: 4.5vw;
    }
    .accountButton:hover svg:last-child{
        width: 4.5vw;
        height: 4.5vw;
    }
    .dt-search::after {
        width: 7.302vw;
        height: 7.302vw;
    }
    div.dt-container .dt-search input {
        font-size: 4.6vw;
        width: 88%;
    }
    .my_public_list_table .action_website {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4vw;
    }
    .my_public_list_table .action_website a svg, .my_public_list_table .action_website button svg {
        width: 5.3vw;
        height: 5.3vw;
    }
    .my_public_list_table .dt-column-title {
        font-size: 5vw;
    }
    .my_public_list_table tbody {
        font-size: 4.4vw;
    }
    .my_public_list_table div.dt-container .dt-paging .dt-paging-button.current, .my_public_list_table div.dt-container .dt-paging .dt-paging-button {
        font-size: 4.5vw;
    }
    .my_public_list_table div.dt-container .dt-paging .dt-paging-button.current {
        border-bottom: 0.6041vw solid #007bff !important;
    }
    .add_website {
        position: sticky;
        padding: 0.5vw 1vw;
        border-radius: 1vw;
        top: unset;
        bottom: unset;
        font-size: 4.4vw;
    }
    .website_logo {
        width: 11.0833vw;
        height: 11.0833vw;
    }
    .add_and_update_website {
        width: 100%;
        box-shadow: 0px 1vw 2vw rgba(0, 0, 0, 0.1);
        padding: 3.6041vw;
        margin: 5vw auto;
    }
    .add_and_update_website .title {
        font-size: 6.5625vw;
    }
    .add_and_update_website .edit_user_box {
        gap: 3.0416vw;
    }
    .add_and_update_website .edit_user_box .back_and_update {
        gap: 3.5vw;
    }
    .add_and_update_website .edit_user_box .back_and_update button, .add_and_update_website .edit_user_box .back_and_update a {
        padding: 3vw;
        font-size: 4vw;
        border-radius: 1.5vw;
    }
    .add_and_update_website .edit_user_box .photo_changing {
        width: 22vw;
        height: 22vw;
    }
    .add_and_update_website .edit_user_box .photo_changing .photo_input {
        width: 6vw;
        height: 6vw;
        top: -3vw;
        right: -3vw;
    }
    .add_and_update_website .edit_user_box .photo_changing .photo_input::after {
        background-position: 1vw 0.5vw;
    }
    .add_and_update_website .edit_user_box .photo_changing img {
        width: 22vw;
        height: 22vw;
    }
    .add_and_update_website .edit_user_box .input_box textarea {
        height: 35vw !important;
    }
    .add_and_update_website .edit_user_box .input_box .get_data {
        font-size: 3vw;
    }
    .add_and_update_website .edit_user_box .input_box label {
        font-size: 3.5vw;
        top: 3.4vw;
        left: 3vw;
    }
    .add_and_update_website .edit_user_box .input_box .input_zone {
        padding: 3vw;
        font-size: 4vw;
    }
    .add_and_update_website .edit_user_box .input_box .border_bottom {
        border-bottom: 0.6vw solid #007bff;
    }
    .add_and_update_website .edit_user_box .error_message {
        font-size: 3.3vw;
    }
    .add_and_update_website .to_center {
        top: -2.5vw !important;
    }
    footer .footer_top_part, footer .footer_bottom_part {
        flex-wrap: wrap;
        justify-content: left;
        align-items: flex-start;
        flex-direction: column;
    }
    footer .footer_top_part .footer_box, footer .footer_bottom_part .footer_box {
        max-width: 100%;
        font-size: 3vw;
        margin: 2vw;
    }
    footer .footer_bottom_part {
        font-size: 3vw;
    }
}
/* ################################################################################ */
/* ################################################################################ */
/* ####################### START => 375 RESPONSIVE ################################ */
/* ################################################################################ */
/* ################################################################################ */
@media (max-width: 375px) {
    /* START => HEADER */
    /* START => NAVBAR */
    /* START => TOP CATEGORIES */
    /* START => FOOTER */
    .title {
        font-size: 6.5625vw;
    }
    header {
        height: 16.23vw;
        gap: 7vw;
    }
    header .sign_up_log_in_lang .search_box {
        width: 50vw;
        border-radius: 5vw;
    }
    header .sign_up_log_in_lang .search_box svg {
        width: 5vw;
        height: 5vw;
    }
    header .sign_up_log_in_lang .search_box input {
        height: 8vw;
        font-size: 3.5vw;
    }
    header .sign_up_log_in_lang .search_box input::placeholder {
        font-size: 3.5vw;
    }
    .hamburger {
        top: 4.5vw;
        right: 5vw;
    }
    .hamburger svg {
        width: 6.9411vw;
        height: 6.9411vw;
    }
    .logo .text {
        font-size: 7vw;
    }
    .category_navbar ul li {
        padding: 1.5vw 2.5vw;
    }
    .category_navbar ul li a {
        font-size: 3vw;
    }
    .category_navbar ul li a svg {
        width: 5.5vw;
        height: 5.5vw;
    }
    .category_box {
        padding: 4vw;
        width: 100vw;
        border-radius: 2vw;
    }
    .menu_box .design_dev_footer {
        font-size: 3.5vw;
    }
    .menu_box .design_dev_footer a {
        font-weight: 600;
        color: #fff;
    }
}
