@media screen and (max-width: 1260px) and (min-width: 768px) {
  .search_modal {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    position: fixed;
    left: -1000px;
    opacity: 0;
    visibility: hidden;
    top: 0;
    z-index: 1000000;
    padding: 16px 20px;
    display: block;
  }
  .search_modal.active {
    opacity: 1;
    visibility: visible;
    left: 0;
  }
  .search_modal .close {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 24px;
    height: 24px;
  }
  .search_modal .modal_body .modal_body_inner {
    display: none;
    padding-top: 32px;
  }
  .search_modal .modal_body .modal_body_inner.active {
    display: block;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item.active strong:after {
    transform: rotate(-90deg);
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item.active .cat_sub_menu_outer {
    max-height: 10000px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease-out;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item.active .cat_sub_menu_outer .cat_parent_group {
    display: block;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item:last-child {
    margin-bottom: 0;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    width: 100%;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item strong:after {
    content: "";
    width: 15px;
    height: 15px;
    background: url("https://10web.io/wp-content/themes/10web-theme/images/icons/arrows/glossary_arrow.svg") no-repeat center center;
    transform: rotate(90deg);
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item .cat_sub_menu_outer {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease-in;
    padding-left: 16px;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item .cat_sub_menu_outer .cat_parent_group {
    margin-top: 20px;
    display: none;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item .cat_sub_menu_outer .cat_parent_group > a {
    margin-bottom: 12px;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item .cat_sub_menu_outer .cat_parent_group a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    color: #000000;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item .cat_sub_menu_outer .cat_parent_group .sub_category_item {
    margin-bottom: 12px;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item .cat_sub_menu_outer .cat_parent_group .sub_category_item:last-child {
    margin-bottom: 0;
  }
  .search_modal .modal_body .modal_body_inner.category .cat_item .cat_sub_menu_outer .cat_parent_group .sub_category_item a {
    font-weight: 400;
  }
  .search_modal .modal_body .modal_body_inner.search .input_outer {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #f5f5f6;
    height: 48px;
    padding: 5px 5px 5px 24px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  .search_modal .modal_body .modal_body_inner.search .input_outer.focused {
    border: 2px solid #3339f1;
  }
  .search_modal .modal_body .modal_body_inner.search .input_outer input {
    border: 0;
    outline: 0;
    flex: 1;
    margin-right: 20px;
    background-color: transparent;
  }
  .search_modal .modal_body .modal_body_inner.search .input_outer input::placeholder {
    font-size: 14px;
    line-height: 24px;
    color: #808080;
  }
  .search_modal .modal_body .modal_body_inner.search .input_outer .search_btn {
    text-decoration: none;
    width: 108px;
    flex: 0 0 108px;
    background-color: #000000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 0;
    gap: 4px;
    border-radius: 100px;
  }
  .search_modal .modal_body .modal_body_inner.search .results_placeholder {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    align-items: center;
  }
  .search_modal .modal_body .modal_body_inner.search .results_placeholder p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
  .search_modal .modal_body .modal_body_inner.search .results_wrapper {
    all: unset;
    margin-top: 28px;
  }
  .search_modal .modal_body .modal_body_inner.search .results_wrapper .no_result {
    font-size: 16px;
    line-height: 24px;
    color: rgb(0, 0, 0);
    font-weight: 700;
  }
  .search_modal .modal_body .modal_body_inner.search .results_wrapper .title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
    display: inline-block;
    white-space: nowrap;
  }
  .search_modal .modal_body .modal_body_inner.search .results_wrapper .search_result {
    margin-bottom: 16px;
  }
  .search_modal .modal_body .modal_body_inner.search .results_wrapper .search_result:last-child {
    margin-bottom: 0;
  }
  .search_modal .modal_body .modal_body_inner.search .results_wrapper .search_result a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    gap: 8px;
  }
  .search_modal .modal_body .modal_body_inner.search .results_wrapper .search_result a:before {
    content: "";
    width: 15px;
    height: 15px;
    background: url("https://10web.io/wp-content/themes/10web-theme/images/website_templates/search_link.svg") no-repeat center;
  }
  .search_modal .modal_body .modal_body_inner.search .results_wrapper .search_result a:hover {
    opacity: 0.5;
  }
  .search_modal .modal_header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }
  .search_modal .modal_header .modal_btn a {
    display: block;
    padding: 8px 24px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 20px;
    border-radius: 999px;
    background: #f5f5f6;
    text-decoration: none;
  }
  .search_modal .modal_header .modal_btn a.active {
    background-color: #3339f1;
    color: #fff;
  }
  .navigation_holder .navbar,
  .navigation_holder .nav_search {
    display: none !important;
  }
  .navigation_holder .navbar_mobile {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .navigation_holder .navbar_mobile .categories {
    display: flex;
    gap: 2px;
    align-items: center;
  }
  .navigation_holder .navbar_mobile .categories a {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-decoration: none;
  }
  .navigation_holder .navbar_mobile .search .search_btn {
    text-decoration: none;
    width: 108px;
    flex: 0 0 108px;
    background-color: #000000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 0;
    gap: 4px;
    border-radius: 100px;
  }
  .hero {
    padding: 80px 0;
  }
  .templates_holder {
    padding: 64px 0 96px 0;
  }
  .templates_holder .templates_container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 40px;
  }
  .templates_holder .tags_container {
    flex-wrap: unset;
    max-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .templates_holder .tags_container.desktop {
    display: none;
  }
  .templates_holder .tags_container.mobile {
    display: flex;
  }
  .easy_steps_container {
    padding-bottom: 96px;
  }
  .easy_steps_container .steps_blocks_container {
    flex-direction: column;
  }
  .builder_section_holder .content_holder {
    flex-direction: column;
    gap: 64px;
  }
  .single_template_intro {
    padding-bottom: 0;
  }
  .single_template_intro .intro_container {
    flex-direction: column;
  }
  .single_template_intro .intro_container .intro_image_container {
    height: 480px;
    max-width: 100%;
  }
  .single_template_intro .intro_container .intro_image_container .image_holder {
    position: static;
    max-width: 100%;
    border-top-right-radius: 24px;
  }
  .tablet_mobile_slider {
    width: 100%;
    max-width: unset !important;
    overflow: hidden;
  }
  .tablet_mobile_slider .description {
    max-width: 728px;
    width: 100%;
    margin: 0 auto;
  }
  .best_for_section {
    padding: 96px 0;
  }
  .best_for_section .screenshot_holder_tablet {
    display: block;
  }
  .best_for_section .screenshot_holder_tablet .slick-dots {
    padding: 18px 16px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    width: fit-content;
    margin: 48px auto 0 auto;
  }
  .best_for_section .screenshot_holder_tablet .slick-dots li {
    height: 6px;
  }
  .best_for_section .screenshot_holder_tablet .slick-dots li button {
    display: block;
    border: 0;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-indent: -200px;
    padding: 0;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    position: relative;
  }
  .best_for_section .screenshot_holder_tablet .slick-dots li button .loading {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #000000;
    height: 100%;
    width: 0;
    border-radius: 4px;
  }
  .best_for_section .screenshot_holder_tablet .slick-dots li.slick-active button {
    background: rgba(255, 255, 255, 0.3);
    width: 32px;
    height: 8px;
    position: relative;
  }
  .best_for_section .screenshot_holder_tablet .screenshot {
    width: 344px;
    padding: 0 10px;
    position: relative;
  }
  .best_for_section .screenshot_holder_tablet .screenshot .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: all 0.3s ease;
  }
  .best_for_section .screenshot_holder_tablet .screenshot.slick-active .overlay {
    opacity: 0;
    z-index: -1;
  }
  .best_for_section .screenshot_holder_tablet .screenshot img {
    width: 344px !important;
    max-width: 100% !important;
    height: auto;
    border-radius: 12px;
  }
  .best_for_section .screenshot_holder_tablet .screenshot .screenshot_title {
    display: block;
    text-align: center;
    opacity: 1;
  }
  .best_for_section .content_outer {
    flex-direction: column;
    gap: 32px;
  }
  .best_for_section .content_outer .demos {
    display: none;
  }
  .success_section {
    padding-bottom: 96px;
  }
  .success_section .tips_holder {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: unset;
  }
}
