* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}



img {
    width: 100%;
}
a {
    text-decoration: none;
}


.form-check input:focus {
    box-shadow: none;
    border: 1px solid #cbcbcb;
}
h1.title {
    color: #3C3C3C;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 1.4;
}
h2.title {
    color: #3C3C3C;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 1.4;
}
h3.title {
    color: #3C3C3C;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 1.4;
}
h4.title {
    color: #3C3C3C;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 1.4;
}
.title {
    color: #3C3C3C;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: capitalize;
}

.title span {
    position: relative;
    font-weight: 400;
}
.title span:after {
    content: "";
    background: url(../images/title_border.png);
    position: absolute;
    left: 0;
    width: 100%;
    height: 17px;
    bottom: -15px;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center right;
}


@keyframes myfirst {
    0% {
        width: 0%;
       
    }

    100% {
        width: 100%;
    }
}
.title span.no_border:after {
    display: none;
}
.des {
    color: #444444;
    font-size: 18px;
    line-height: 1.8;
}

.view_btn {
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    color: #2c2d31;
    font-weight: 600;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #2c2d31;
    border-radius: 5px;
    position: relative;
    z-index: 0;
}
/* .view_btn:before {
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    background: #2c2d31;
    width: 0%;
    transition: all 0.1s ease-in-out;
    z-index: -1;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
} */

.view_btn:after {
    background-color: #fff;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
}

.view_btn:hover::after {
    left: 5%;
    width: 90%;
}
/* .view_btn:hover:before {
    width: 100%;
} */
.view_btn svg {
    margin-left: 7px;
    filter: brightness(0) invert(1);
}

.view_btn:hover {
    color: #fff;
}
.more {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    z-index: 0;
    background: #181818;
    font-weight: 600;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 0;
    overflow: hidden;
}
.more svg {
    filter: brightness(0) invert(1);
}
.more:hover{
   color:#fff;
}

.more:after {
    background-color: #ffffff;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
}
.more:hover::after {
    left: 5%;
    width: 90%;
}

/* .more:hover:after {
    -webkit-transition: all 0.5s ease-in 0.1s;;
    -moz-transition:  all 0.5s ease-in 0.1s;
    -ms-transition: all 0.5s ease-in 0.1s;
    -o-transition:  all 0.5s ease-in 0.1s;
    width: 100%;
} */

.compare_btn {
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    color: #464646;
    font-weight: 600;
    padding: 10px 30px;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #212121;
    border-radius: 5px;
    position: relative;
    z-index: 0;
}
.compare_btn:hover {
    color: #fff !important;
}
.compare_btn i {
    font-size: 15px;
    margin-right: 12px;
}

.compare_btn i.fa-solid.fa-check {
    display: none;
}

a.compare_btn.tick i.fa-solid.fa-plus {
    display: none;
}

a.compare_btn.tick i.fa-solid.fa-check {
    display: block;
}


/* Global Css */

/* Header Sec */



.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    background: #222;
    border-bottom: 1px solid #323232;
}

.sticky .theme-logo img {
    height: 55px;
    transition: 0.5s;
}
.menu-header .right_sec button.navbar-toggler {
    margin-left: 50px;
}
.menu-header .right_sec button.navbar-toggler:focus {
    box-shadow: none;
}
.heade_sec .top_heade .logo {
    width: 220px;
}
.heade_sec .top_heade .logo svg {
    width: 100%;
}
.heade_sec .top_heade {
    padding: 10px 0;
}
.heade_sec .top_heade .container {
    display: flex;
    align-items: center;
}
.heade_sec .top_heade .search_box input[type="text"]:focus-visible {
    outline: none;
}

.heade_sec .m_logo.logo {
    display: none;
}
.heade_sec .top_heade .search_box {
    position: relative;
}
.heade_sec .top_heade .dropdown.search_dropdown {
    width: 64%;
    margin-left: 30px;
}
.heade_sec .top_heade .search_box input[type="text"] {
    width: 100%;
    height: 48px;
    font-size: 15px;
    text-transform: capitalize;
    color: #fff;
    background: #181818;
    border-radius: 0;
    padding: 6px 40px;
    box-sizing: border-box;
    border: none;
    border: 1px solid #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.heade_sec .top_heade .search_box input[type="text"]::placeholder {
    color: #fff;
  }
.heade_sec .top_heade .search_box:after {
    display: none;
}

.heade_sec .top_heade .search_box svg {
    position: absolute;
    left: 12px;
    top: 16px;
}

.heade_sec .menu_nav .container .navbar-nav li:hover .dropdown-menu {
    display: block;
}
.heade_sec .menu_nav .container .navbar-nav .dropdown-menu.mobile {
    left: 27px;
}


/* Search Product Css */

.dropdown-menu.product_search_dropdown .resent_search_wrapper {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-menu.product_search_dropdown .resent_search_wrapper .resent_search {
    width: 57%;
    flex: 0 0 57%;
    border-right: 1px solid #c4c2c2;
    padding-right: 20px;
    margin-right: 20px;
}

.dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price {
    width: 40%;
}

.dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 11px;
    color: #c4c2c2;
    padding: 6px 4px;
    border: 1px solid #fff;
    border-radius: 8px;
}
.dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a:hover {
    border: 1px solid #415CE7;
}

.dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price .best_price_list a {
    display: block;
    color: #3c3c3c;
    font-weight: 600;
    padding: 6px 14px;
    background: #ffffff;
    margin-bottom: 12px;
    border-radius: 8px;
    border:1px solid #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price .best_price_list a:hover {
    border: 1px solid #415ce7;
}

.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown {
    padding: 18px;
    width: 100%;
  
}
.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec {
    position: relative;
    margin-bottom: 10px;
}
.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec .title {
    font-size: 18px;
    display: inline-block;
    background: #ffffff;
    padding: 2px 4px;
    position: relative;
    z-index: 0;
}
.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec:after {
    content: "";
    background: #c4c2c2;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}


/* .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price  .title_sec:after {
    width: 34% !important;
    left: 65% !important;
} */
/* .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec.features:after {
    width: 25% !important;
    left: 74% !important;
} */
.dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a .product_photo {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    overflow: hidden;
}
.dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a .product_photo img {
    width: 44px;
    margin: auto;
    object-fit: cover;
}

.dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a .text_content {
    display: flex;
    width: 100%;
    align-items: center;
}
.dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a .text_content .product_title {
    font-size: 16px;
    color: #3c3c3c;
}

.dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a .text_content .price {
    font-size: 16px;
    color: #898585;
    margin: 0;
}
.dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a .text_content .clock_icon {
    margin-left: auto;
}
/* Search Product Css */


/* Mega Menu Css */

.heade_sec .dropdown-menu.mega_menu, .heade_sec .dropdown-menu.mega_menu.show {
    width: 100%;
    min-width: 1090px;
    right: 0%;
    padding: 35px !important;
    top: 42px;
    left: auto;
}
.dropdown-menu.mega_menu .mega_menu_content {
    display: flex;
}


.dropdown-menu.mega_menu .mega_menu_content .l_menu_list {
    width: 20%;
    flex: 0 0 19%;
    margin-right: 30px;
    flex-direction: column;
    border: none;
}
.heade_sec .menu_nav .container .navbar-nav .dropdown.m_news {
    display: none;
}

/* .heade_sec .menu_nav .container .navbar-nav .dropdown-menu.mega_menu .mega_menu_content .l_menu_list a {
    padding: 0 0 15px !important;
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    color: #818181;
    position: relative;
} */
.dropdown-menu.mega_menu .mega_menu_content .l_menu_list button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #818181;
    padding: 0 0 15px !important;
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}
.dropdown-menu.mega_menu .mega_menu_content .l_menu_list button:hover, .dropdown-menu.mega_menu .mega_menu_content .l_menu_list button.active {
    color: #fff;
}
.dropdown-menu.mega_menu .mega_menu_content .l_menu_list button:hover:before, .dropdown-menu.mega_menu .mega_menu_content .l_menu_list button.active:before  {
    background: #fff;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.dropdown-menu.mega_menu .mega_menu_content .l_menu_list button:before {
    content: "";
    position: absolute;
    left: 0;
    width: 50%;
    height: 1px;
    background: #818181;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content {
    width: 78%;
}
.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article {
    position: relative;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .article_photo {
    display: block;
    padding: 0;
    border-radius: 8px;
    height: 120px;
    overflow: hidden;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .article_photo img {
    height: 100%;
    object-fit: cover;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .text_content {
    margin-top: 10px;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .text_content .title {
    padding: 0 0 5px;
    font-size: 16px;
    line-height: 22px;
    display: block;
}
.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .text_content .bottom_sec span {
    color: #fff;
    /* font-size: 14px; */
    display: block;
    line-height: 1.2;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .text_content .bottom_sec span a {
    padding: 0;
    font-size: 14px;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .text_content .bottom_sec  .entry-date.published {
    color: #fff;
    font-size: 14px;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .text_content .bottom_sec .entry-date.published span {
    display: inline-block;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .display_tag {
    top: 12px;
    margin: 0;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .display_tag:after {
    display: none;
}


.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec .menu_border {
    width: 80%;
    background: #fff;
    height: 1px;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec .view_all {
    background: #fff;
    color: #181818;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    position: relative;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec .view_all svg {
    width: 14%;
    margin-left: 10px;
    flex: 0 0 14%;
}

.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec .view_all svg path {
    fill: #181818;
}
.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec .view_all:after {
    background-color: #181818;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
}
.dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec .view_all:hover::after {
    left: 5%;
    width: 90%;
}

/* Mega Menu Css */






/* Search Product Css */
.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a {
    margin-bottom: 11px;
    color: #c4c2c2;
    padding: 6px 4px;
    border: 1px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    border: 1px solid #fff;
}
.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a:hover {
    border: 1px solid #415ce7;
}
.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a .product_photo {
    width: 48px;
    overflow: hidden;
    float: left;
    height: 48px;
    margin-right: 10px;
}

.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a .product_photo img {
    width: 44px !important;
}

.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a .text_content .product_info .product_title {
    font-size: 16px;
    color: #3c3c3c;
}

.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a .text_content .product_info  .price {
    font-size: 16px;
    color: #898585;
    margin: 0;
}
.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper .brand_link_cta a {
    /* display: flex; */
    color: #080808;
}

.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper .brand_link_cta a .brand_logo_thumb {
    width: 51px;
    overflow: visible;
}

.heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a span {
    margin-left: 10px;
}
/* Search Product Css */
.heade_sec .menu_nav .container .navbar-nav .dropdown-menu {
    padding: 10px 0;
    background: #181818;
    border: none;
    box-shadow: 0px 3px 10px 0 rgb(181 181 181 / 50%);
    margin: 0;
    display: none;
}

.heade_sec .menu_nav .container .navbar-nav li:hover .dropdown-menu {
    display: block !important;
}


.heade_sec .menu_nav .container .navbar-nav li .dropdown-menu li.dropend .dropdown-menu.sub_dropdown {
    display: none !important;
}

.heade_sec .menu_nav .container .navbar-nav li .dropdown-menu li.dropend:hover .dropdown-menu.sub_dropdown {
    display: block !important;
}


/* 
.heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown {
    padding: 18px 10px;
    text-decoration: none;
    list-style-type: none;
    background: #e66b39;
    width: 100%;
    min-width: 260px;
    border-radius: 5px;
    margin-left: 0px;
} */
.heade_sec .menu_nav .container .navbar-nav .dropdown-menu a.dropdown-item:hover {
    background: none;
    color: #2c2d31;
}
.heade_sec .menu_nav .container .navbar-nav .dropdown-menu li a:active {
    background: none;
}
/* .heade_sec .menu_nav .container .navbar-nav .dropdown-menu {
    padding: 0;
    background: #e66b39;
    border: none;
    box-shadow: 0px 3px 10px 0 rgb(16 16 16 / 50%);
    margin-top: 8px;
} */

.heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown {
    padding: 18px 10px;
    text-decoration: none;
    list-style-type: none;
    background: #212121;
    width: 100%;
    min-width: 300px;
    border-radius: 5px;
    margin-left: 0px;
    position: absolute;
    left: 100%;
    display: none;
    top: 0;
}
.heade_sec .menu_nav .container .navbar-nav li.dropend ul.dropdown-menu.sub_dropdown {
    display: none;
}
.heade_sec .menu_nav .container .navbar-nav li.dropend:hover ul.dropdown-menu.sub_dropdown {
    display: block;
}

.heade_sec .menu_nav .container .navbar-nav .dropdown-menu a.dropdown-item {
    padding: 9px 20px;
}
.heade_sec .menu_nav .container .navbar-nav li:hover .dropdown-menu li a {
    padding: 9px 20px;
    display: block;
}

.heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown li a {
    font-size: 14px;
    padding: 8px 35px !important;
    display: block;
    position: relative;
}

.heade_sec .menu_nav .container .navbar-nav a:hover {
    /* color: #e66b39; */
    color: #979797;
}

.heade_sec .menu_nav .container .navbar-nav .dropdown-menu a.dropdown-item:hover {
    color: #979797;
}
.heade_sec .menu_nav .container .navbar-nav a:hover:after {
    color: #979797;
}
.heade_sec .menu_nav .container .navbar-nav .dropdown-menu li a:active {
    background: #e9ecef;
}

.heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown li a:before {
    content: "";
    position: absolute;
    background: #ffffff;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown li a:hover {
    color: #979797;
}
.heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown li a:hover:before {
    background: #979797;
}

.heade_sec .menu_nav .container li.nav-item.dropdown a:hover.dropdown-menu.show {
    display: block;
}
/* .heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown li a:hover {
    color: #2c2d31;
} */
/* .heade_sec .menu_nav .container .navbar-nav .dropdown-menu li:hover .sub_dropdown {
    display: block;
} */

/* Menu Nav */

.heade_sec {
    background: #181818;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 0;
    border-bottom: 1px solid #181818;
}
.heade_sec.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slide-down 0.7s;
    opacity: 1;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0s;
    border-bottom: 1px solid #eaeaea;
}
@keyframes slide-down{
    0%{opacity:0;transform:translateY(-100%);} 
    50%{opacity:0;transform:translateY(-100%);} 
    100%{opacity:1;transform:translateY(0);} 
}

.heade_sec .menu_nav {
    background: #181818;
    padding: 0;
}

.heade_sec .menu_nav .container {
    justify-content: center;
}

.heade_sec .menu_nav .container .navbar-nav {
    justify-content: center;
    width: 100%;
}

.heade_sec .menu_nav .container .navbar-nav a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 10px 30px 15px;
    display: block;
}
/* Menu Nav */




.heade_sec .top_heade .techwiser_link {
    display: flex;
    align-items: center;
    border: 1px solid #bbc0d1;
    padding: 7px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin-left: 28px;
    width: 140px;
    flex: 0 0 140px;
    justify-content: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.heade_sec .top_heade .techwiser_link img {
    /* height: 44px; */
    margin-right: 4px;
    opacity: 0.5;
    width: 70%;
}

.heade_sec .top_heade .techwiser_link svg {
    width: 14px;
    opacity: 0.5;
    flex: 0 0 18px;
}
.heade_sec .top_heade .techwiser_link:hover {
    border: 1px solid #2c2d31;
}
.heade_sec .top_heade .techwiser_link:hover img{
    opacity:1;
}
.heade_sec .top_heade .techwiser_link:hover svg{
    opacity:1;
}

/* Header Sec */

/****==== Home Page  ====****/

/* Banner Sec */
.banner_sec {
    align-items: center;
    margin-top: 160px;
}

.banner_sec .container {
    border-radius: 32px;
    padding: 0;
}

.banner_sec .container .banner_title {
    width: 100%;
    color: #fff;
    margin: 0;
    font-size: 56px;
    line-height: 84px;
    font-weight: 700;
}

.banner_sec .container .text_content {
    width: 100%;
    text-align: center;
    padding: 70px 0;
}

/* Banner Sec */

.latest_product_sec.top_product {
    margin-top: 150px;
}


/* Best Gaming Banner */
.best_gaming_banner {
    margin-bottom: 60px;
}

.best_gaming_banner .gaming_banner {
    height: 300px;
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    position: relative;
    z-index: 1;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.best_gaming_banner .gaming_banner img {
    height: 300px;
    object-fit: cover;
}

.best_gaming_banner .gaming_banner .play_icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 104px;
    color: #f00;
    z-index: 1;
}
.best_gaming_banner .gaming_banner .play_icon img {
    height: auto;
    width: 110px;
    object-fit: inherit;
}
.best_gaming_banner .gaming_banner:after {
    content: "";
    background: #10101061;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}
.best_gaming_banner .gaming_banner .category {
    position: absolute;
    top: 30px;
    background: #fff;
    color: #010101;
    padding: 10px 26px;
    right: 0;
    font-size: 28px;
    text-transform: capitalize;
    border-radius:0;
    z-index: 1;
    font-weight: 600;
    margin: 0;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    -ms-border-radius:0;
    -o-border-radius:0;
}

/* Best Gaming Banner */


/* Latest Product Sec */
.latest_product_sec {
    margin-top: 60px;
}
.latest_product_sec .top_sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.latest_product_sec .top_sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}


/* .latest_product_sec .owl-stage-outer {
    display: flex;
} */

.latest_product_sec .owl-carousel .owl-stage {
    display: flex;
    position: relative;
}
.latest_product_sec .owl-stage-outer .owl-item {
    display: flex;
    flex: 1 0 auto;
    padding: 20px 4px;
}
.latest_product_sec .latest_product_slider .latest_product {
    border: 1px solid #DBDBDB;
    padding: 15px;
    display: block;
    height: 100%;
    position: relative;
    background: #fff;
}
.latest_product_sec .latest_product_slider .latest_product:before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    background: #f0f;
    bottom: 0;
    background: #fff;
    z-index: -1;
    width: 90%;
    margin: auto;
    height: 88%;
}
.latest_product_sec .latest_product_slider .latest_product:hover:before {
    background: linear-gradient(270deg, rgb(191 191 191) 0.8%, rgb(127 123 123) 39.2%, rgb(255 255 255) 69.64%, rgb(197 196 196) 97.74%);
    filter: blur(22.170000076293945px);
}
.display_tag {
    position: absolute;
    padding: 4px 9px;
    z-index: 10;
    font-size: 12px;
    top: -4%;
    left: 10px;
    background: #181818;
    color: #fff;
    border-radius: 0;
    font-style: italic;
    font-weight: 700;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.display_tag:hover {
    color: #fff;
}

.display_tag:after {
    content: "";
    position: absolute;
    left: 97%;
    background: #fff;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto !important;
}
.display_tag.sub_tag {
    background: #181818;
}
/* .latest_product_sec .latest_product_slider .latest_product:hover {
    border: 1px solid #e66b39;
} */
.latest_product_sec .latest_product_slider .latest_product .latest_phone {
    /* border: 1px solid #b0d2f34d; */
    /* padding: 11px; */
    /* border-radius: 15px; */
    position: relative;
    /* height: 255px; */
    overflow: hidden;
}
/* .latest_product_sec .latest_product_slider .latest_product .latest_phone img {
    height: 234px;
    object-fit: cover;
} */

.latest_product_sec .latest_product_slider .latest_product .text_content {
    margin-top: 15px;
}

.latest_product_sec .latest_product_slider .latest_product .text_content .product_title {
    font-size: 20px;
    color: #46474a;
    margin-bottom: 14px;
}

.latest_product_sec .latest_product_slider .latest_product .text_content .price {
    font-size: 28px;
    color: #161616;
    font-weight: 700;
    margin: 0;
}



.latest_product_sec .latest_product_slider .latest_product .text_content {
    margin-top: 15px;
    position: relative;
}

.latest_product_sec .latest_product_slider .latest_product .text_content .product_title {
    font-size: 20px;
    color: #46474A;
    margin-bottom: 14px;
}
.latest_product_sec .latest_product_slider .latest_product .text_content .price {
    font-size: 28px;
    color: #161616;
    font-weight: 700;
    margin: 0;
}

.latest_product_sec .latest_product_slider .latest_product .price_sec {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.latest_product_sec .latest_product_slider .latest_product .price_sec .device_score {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}
.latest_product_sec .latest_product_slider .latest_product .price_sec img {
    width: 40px;
}
.latest_product_sec  .latest_product_slider {
    padding: 0 60px;
}
.latest_product_sec .latest_product_slider .latest_product .rating_sec {
    right: 0;
    display: flex;
    align-items: self-start;
    margin-left: auto;
    position: absolute;
    top: 10px;
    background: #181818;
    padding: 4px;
    right: 10px;
    z-index: 1;
}
.latest_product_sec .latest_product_slider .latest_product .rating_sec .rating {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
}
.latest_product_sec .latest_product_slider .latest_product .rating_sec img {
    width: 13px;
    margin-right: 4px;
    height: auto !important;
    object-fit: none !important;
    filter: brightness(0) invert(1);
    float: left;
    margin-top: 1px;
}
.latest_product_sec .latest_product_slider .owl-nav button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #F2F2F2; */
    background-image: url(../images/h_l_arrow.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.latest_product_sec .latest_product_slider .owl-nav button:hover {
    background: #090909;
}

.latest_product_sec .latest_product_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
    background-image: url(../images/h_r_arrow.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.latest_product_sec .latest_product_slider .owl-nav button:hover {
    background-color: #fff;
}
.latest_product_sec .latest_product_slider .owl-nav button span {
    font-size: 25px;
    height: 20px;
    width: 20px;
    line-height: 17px;
    background: #415CE7;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: none;
}
.latest_product_sec .latest_product_slider .owl-nav button:hover span {
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.latest_product_sec .latest_product_slider .owl-nav.disabled {
    display: block;
}
.latest_product_sec .latest_product_slider .owl-dots {
    display: none;
}
/* Latest Product Sec */


/* Best Mobile Sec */
.best_mobile_sec {
    margin: 60px auto;
}
.best_mobile_sec .container {
    background: #F8F8F8;
    padding: 30px;
    position: relative;
    z-index: 0;
    border-radius: 37.89px;
    border: 2px solid #007BFF;
    background: #F8F8F8;
    box-shadow: 0px 6.315px 4.21px 0px rgba(0, 0, 0, 0.02), 0px 3.157px 3.157px 0px rgba(0, 0, 0, 0.03), 0px 1.052px 2.105px 0px rgba(0, 0, 0, 0.03);
}
.best_mobile_sec .top_sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* .best_mobile_sec .owl-stage-outer {
    display: flex;
    padding: 0 4px;
} */
.best_mobile_sec .owl-carousel .owl-stage {
    display: flex;
}
.best_mobile_sec .owl-stage-outer .owl-item {
    display: flex;
    flex: 1 0 auto;
    padding: 20px 0;
}


.best_mobile_sec .container .best_mobile_slider .best_product {
    background: #fff;
    display: flex;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    align-items: center;
    width: 100%;
    position: relative;
    background: #fff;
}
.best_mobile_sec .container .best_mobile_slider .best_product:before {
    content: "";
    position: absolute;
    border-radius: 15.561px;
    background: #fff;
    left: 0;
    right: 0;
    top: 26px;
    z-index: -2;
    width: 90%;
    height: 60%;
    margin: auto;
}
.best_mobile_sec .container .best_mobile_slider .best_product:hover:before {
    background: linear-gradient(270deg, rgba(132, 58, 181, 0.70) 0.8%, rgba(226, 48, 108, 0.70) 39.2%, rgba(253, 29, 29, 0.70) 69.64%, rgba(252, 175, 69, 0.70) 97.74%);
    filter: blur(23.33372688293457px);
}
.best_mobile_sec .container .best_mobile_slider .best_product .latest_phone {
    width: 80px;
    margin-right: 7px;
    flex: 0 0 80px;
    height: 84px;
    overflow: hidden;
}
.best_mobile_sec .container .best_mobile_slider .best_product .latest_phone img {
    height: 74px;
    object-fit: cover;
}

.best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
    color: #46474A;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
}
.best_mobile_sec .container .best_mobile_slider .best_product .text_content  .price {
    margin: 0;
    color: #161616;
    font-size: 18px;
    font-weight: 700;
}

.best_mobile_sec .best_mobile_slider .owl-nav button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    border-radius: 44.205px;
    border: 1px solid #415ce7;
    background: #F2F2F2;
}
.best_mobile_sec .owl-nav.disabled {
    display: block;
}
.best_mobile_sec .best_mobile_slider .owl-nav button:hover {
    background: #415ce7;
}
.best_mobile_sec .best_mobile_slider .owl-nav button:hover:span {
    background: none;
    -webkit-text-fill-color: #fff;
}
.best_mobile_sec .best_mobile_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
}

.best_mobile_sec .best_mobile_slider .owl-nav button span {
    font-size: 25px;
    background: #415ce7;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.best_mobile_sec .best_mobile_slider .owl-nav button:hover span {
    color: #fff;
    -webkit-text-fill-color: #fff;
}
/* .best_mobile_sec .container .best_mobile_slider .best_product .text_content {
    padding-right: 34px;
} */
.best_mobile_sec .container .best_mobile_slider .best_product .rating_sec {
    display: flex;
    align-items: self-start;
    margin-left: auto;
    position: absolute;
    right: 3%;
    bottom: 28px;
    background: #e66b39;
    padding: 4px 6px;
    border-radius: 5px;
}

.best_mobile_sec .container .best_mobile_slider .best_product .rating_sec .rating {
    margin: 0;
    color: #fff;
    font-size: 13px;
}
.best_mobile_sec .container .best_mobile_slider .best_product .rating_sec img {
    width: 13px;
    margin-right: 4px;
}
.best_mobile_sec .owl-nav.disabled {
    display: block;
}
.best_mobile_sec .best_mobile_slider {
    padding: 0 64px;
}
/* Best Mobile Sec */



/* explore price Sec */
.explore_price_sec .container {
    padding: 50px 30px;
    border-radius: 0;
    background: var(--Blue-Orange, linear-gradient(90deg, #181818 24.08%, #3c3c3c 111.24%));
}

.explore_price_sec .container .title {
    margin-bottom: 28px;
    font-size: 24px;
    color: #fff;
    position: relative;
    display: inline-block;
}
.explore_price_sec .container .title:after {
    content: "";
    background: url(../images/price_title_icon.png);
    position: absolute;
    left: 0;
    width: 100%;
    height: 17px;
    bottom: -15px;
    z-index: ba;
    background-repeat: no-repeat;
    background-position: center right;
}
.explore_price_sec .explore_btn_sec .explore_btn {
    font-size: 20px;
    background: #fff;
    padding: 10px 30px;
    margin-right: 25px;
    border-radius: 0;
    color: #3C3C3C;
    font-weight: 600;
    transition: all 0.5s ease-in 0.1s;
    -webkit-transition: all 0.5s ease-in 0.1s;
    -moz-transition: all 0.5s ease-in 0.1s;
    -ms-transition: all 0.5s ease-in 0.1s;
    -o-transition: all 0.5s ease-in 0.1s;
    display: inline-flex;
    margin-bottom: 12px;
    align-items: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.explore_price_sec .explore_btn_sec .explore_btn span {
    position: relative;
    z-index: 1;
}
.explore_price_sec .explore_btn_sec .explore_btn img {
    width: auto;
    margin: 0 8px 0 0px;
    height: 26px;
}




.explore_price_sec .explore_btn_sec .explore_btn span:after {
    content: "";
    left: 0;
    position: absolute;
    height: 6px;
    bottom: 15%;
    background: #363636;
    width: 0%;
    z-index: -1;
    transition: all 0.5s ease-in 0.1s;
    -webkit-transition: all 0.5s ease-in 0.1s;
    -moz-transition: all 0.5s ease-in 0.1s;
    -ms-transition: all 0.5s ease-in 0.1s;
    -o-transition: all 0.5s ease-in 0.1s;
}

.explore_price_sec .explore_btn_sec .explore_btn:hover span:after {
    transition: all 0.5s ease-in 0.1s;
    -webkit-transition: all 0.5s ease-in 0.1s;
    -moz-transition: all 0.5s ease-in 0.1s;
    -ms-transition: all 0.5s ease-in 0.1s;
    -o-transition: all 0.5s ease-in 0.1s;
    width: 100%;
}


/* explore price Sec */


/* Video Features Sec */
.video_features_sec .techwiser_video_sec {
    background: #F8F8F8;
    padding: 30px;
    border-bottom: 2px solid #F2F2F2;
    border-radius: 15px;
}

.video_features_sec .techwiser_video_sec .title {
    margin-bottom: 40px;
    position: relative;
    z-index: 0;
}


.video_features_sec {
    margin-top: 60px;
    background: url(../images/features_bg.png);
    background-repeat: no-repeat;
}
.video_features_sec .techwiser_video_sec {
    background: #F8F8F8;
    padding: 20px 30px;
    border-bottom: 2px solid #F2F2F2;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.video_features_sec .techwiser_video_sec .title {
    margin-bottom: 30px;
    position: relative;
    z-index: 0;
}

.video_features_sec .techwiser_video_sec .video_content .video {
    display: block;
    border-radius: 0;
    overflow: hidden;
    height: 140px;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.video_features_sec .techwiser_video_sec .video_content .video .play_icon {
    width: 45px;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    object-fit: unset;
    height: auto;
    bottom: 0;
    display: block;
}

.video_features_sec .techwiser_video_sec .video_content .video:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #0000005c;
}

.video_features_sec .techwiser_video_sec .video_content .video img {
    height: 140px;
    object-fit: cover;
}

.video_features_sec .techwiser_video_sec .video_content .text_content {
    margin-top: 12px;
}

.video_features_sec .techwiser_video_sec .video_content .text_content .category {
    font-size: 16px;
    text-transform: capitalize;
    color: #46474A;
    margin-bottom: 4px;
}

.video_features_sec .techwiser_video_sec .video_content .text_content .video_title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.video_features_sec .techwiser_video_sec .video_content.youtube_video .video {
    height: 210px;
}

.video_features_sec .techwiser_video_sec .video_content.youtube_video  .video img {
    height: 210px;
    object-fit: cover;
}

.video_features_sec .techwiser_video_sec .video_content.youtube_video .video .play_icon {
    object-fit: unset;
    height: auto;
    width: 58px;
}

.video_features_sec .techwiser_video_sec .video_content .video .category {
    position: absolute;
    top: 10px;
    background: #fff;
    color: #010101;
    /*transform: rotate(33deg);
    */padding: 6px 8px;
    right: 0;
    font-size: 9px;
    text-transform: capitalize;
    /*clip-path: polygon(16% 0, 88% 0, 100% 24%, 0 24%);
    *//*height: 84px;
    */border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
/* .video_features_sec .techwiser_video_sec .video_content .video .category:before {
    content: "";
    background: #2f2f2f;
    width: 10px;
    height: 10px;
    position: absolute;
    clip-path: polygon(120% 10%, 0% 100%, 100% 100%);
    left: -18px;
    width: 18px;
    height: 24px;
    top: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.video_features_sec .techwiser_video_sec .video_content .video .category:after {
    background: #3f3f3f;
    position: absolute;
    content: "";
    width: 12px;
    height: 24px;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    right: -12px;
    top: 0;
} */
/* Video Features Sec */



/* Features Sec */


.features_sec .features_tab_sec .smartphones {
    font-size: 16px;
    margin-bottom: 23px;
    font-weight: 600;
}

.features_sec {
    background: #F8F8F8;
    padding: 16px 30px;
    border-bottom: 2px solid #F2F2F2;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.features_sec .title {
    margin-bottom: 20px;
    font-size: 18px;
}

.features_sec .features_tab_sec .nav-tabs button span {
    font-size: 12px;
    font-weight: 600;
    color: #C4C2C2;
}

.features_sec .features_tab_sec .nav-tabs button.active svg path {
    fill: #e66b39;
}
.features_sec .features_tab_sec .nav-tabs button.active span {
    color: #e66b39;
}
.features_sec .features_tab_sec .nav-tabs button svg {
    width: 40px;
    height: 38px;
}

.features_sec .features_tab_sec .nav-tabs button.active {
    border: none;
}

.features_sec .features_tab_sec .nav-tabs {
    border-bottom: none;
    padding: 0 0px 19px;
}
.features_sec .features_tab_sec .nav-tabs li {
    margin: 0 6px;
}
.features_sec .features_tab_sec .nav-tabs button {
    padding: 0;
    border: none;
}
.features_sec .features_tab_sec {
    background: #fff;
    padding: 20px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.features_sec .features_tab_sec .nav-tabs button .tab_content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
.features_sec .features_tab_sec .nav-tabs button .tab_content img {
    width: auto;
    height: 25px;
    opacity: 0.3;
}
.features_sec .features_tab_sec .nav-tabs button.active span {
    color: #3c3c3c;
}


.features_sec .features_tab_sec .nav-tabs button .tab_content .active_icon {
    display: none;
}

.features_sec .features_tab_sec .nav-tabs button.active .tab_content .active_icon {
    display: block;
}
.features_sec .features_tab_sec .nav-tabs button.active .tab_content img {
    opacity: 1;
}
/* .features_sec .features_tab_sec .nav-tabs button.active .tab_content .icon {
    display: none;
} */


.features_sec .features_tab_sec .tab-content .device_content .device_title {
    font-size: 14px;
    padding: 0px 10px;
    color: #898686;
    margin: 0;
}
.features_sec .features_tab_sec .tab-content .device_content .top_sec {
    margin-bottom: 10px;
}
.features_sec .features_tab_sec .tab-content .device_content .device_title span {float: right;}

.features_sec .features_tab_sec .tab-content .device_content .device_list {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.features_sec .features_tab_sec .tab-content .device_content .device_list li {
    padding: 9px 10px;
    /* border-bottom: 1px solid #b0d2f34d; */
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
}
.features_sec .features_tab_sec .tab-content .device_content .device_list li p {
    margin: 0;
    white-space: nowrap;
    width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
}
.features_sec .features_tab_sec .tab-content .device_content .device_list li p a {
    color: #2c2d31;
}
.features_sec .features_tab_sec .tab-content .device_content .device_list li p a:hover {
    color: #e66b39;
}
.features_sec .features_tab_sec .tab-content .device_content .device_list li span {
    font-weight: 600;
    margin-left: auto;
}
.features_sec .features_tab_sec .tab-content .device_content .device_list li span img {
    width: 34px;
}

.features_sec .features_tab_sec .tab-content .device_content .device_list li:nth-child(2n - 1) {
    background: #f9f9f9;
}

.features_sec .bottom_sec {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
}

.features_sec .bottom_sec .ranking {
    font-size: 16px;
    text-transform: capitalize;
    color: #46474A;
    font-weight: 500;
    position: relative;
    z-index: 0;
}

.features_sec .bottom_sec .ranking:after  {
    content: "";
    left: 0;
    position: absolute;
    height: 6px;
    bottom: 15%;
    background: #C4C2C2;
    width: 0%;
    transition: all 0.1s ease-in-out;
    z-index: -1;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
}

.features_sec .bottom_sec .ranking:hover:after {
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    width: 100%;
}

/* .features_sec .bottom_sec .ranking.active {
    color: #212121;
} */

.features_sec .bottom_sec .ranking i {
    font-size: 12px;
    margin-left: 4px;
}



.features_sec .features_tab_sec .tab-content .device_content .device_list li .product_score {
    width: 50px;
    margin-left: auto;
    float: right;
    padding: 0;
}

.features_sec .features_tab_sec .tab-content .device_content .device_list li .product_score img.score_l {
    left: 0;
}

.features_sec .features_tab_sec .tab-content .device_content .device_list li .product_score .score_r {
    right: 0;
}

.features_sec .features_tab_sec .tab-content .device_content .device_list li .product_score .text_content {
    top: -3px;
}

.features_sec .features_tab_sec .tab-content .device_content .device_list li .product_score .text_content span {
    margin-left: 0;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.features_sec .features_tab_sec .tab-content .device_content .device_list li .product_score .text_content .score {
    width: 100%;
}



/* Features Sec */


/* Brand Sec */
.brand_sec {
    margin-bottom: 60px;
}
.brand_sec .top_sec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.brand_sec .brand_slider .brand_content img.brand_icon_hover {
    display: none;
}

.brand_sec .brand_slider .brand_content:hover .brand_icon {
    display: none;
}
.brand_sec .brand_slider .brand_content:hover img.brand_icon_hover {
    display: block;
}
.brand_sec .brand_slider .brand_content {
    border: 1px solid #eaeaea;
    display: block;
    border-radius: 0;
    overflow: hidden;
    height: 150px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.brand_sec .brand_slider .brand_content img {
    object-fit: cover;
    height: 150px;
}


.brand_sec .brand_slider {
    padding: 0 64px;
}
.brand_sec .brand_slider .owl-nav button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #415ce7;
    background: #F2F2F2;
}
.brand_sec .brand_slider .owl-nav button span {
    font-size: 25px;
    height: 20px;
    width: 20px;
    line-height: 17px;
    background: #415CE7;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand_sec .brand_slider .owl-nav button:hover {
    background: #415ce7;
}
.brand_sec .brand_slider .owl-nav button:hover span {
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.brand_sec .owl-nav {
    display: block;
}



.brand_sec .brand_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
}

.brand_sec .brand_slider .owl-nav button span {
    font-size: 25px;
    height: 20px;
    width: 20px;
    line-height: 17px;
}
.brand_sec .brand_slider .owl-nav.disabled {
    display: block;
}






.brand_sec .brand_slider .owl-nav.disabled {
    display: block;
}

.brand_sec .brand_slider .owl-nav.disabled  button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    border-radius: 50%;
    border: 1px solid #b0d2f34d;
    display: none;
}
.brand_sec .brand_slider .owl-nav.disabled  button:hover {
    background: #000;
}
.brand_sec .brand_slider .owl-nav.disabled  button:hover span {
    color: #fff;
}
.brand_sec .brand_slider .owl-nav.disabled button.owl-next {
    right: 0;
    left: auto;
}

.brand_sec .brand_slider .owl-nav.disabled button span {
    font-size: 25px;
}


.brand_sec .owl-dots {
    display: none;
}
/* Brand Sec */

/* News Letter */
 
.news_letter_sec {
    margin-top: -120px;
    margin-bottom: 60px;
}
.news_letter_sec .news_letter_content {
    background: #111111;
    border-radius: 24px;
    padding: 39px 30px;
    background-image: url(../images/news_letter.png);
    text-align: center;
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px -30px 30px 0px rgb(143 143 143 / 14%);
}
.news_letter_sec .news_letter_content:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--Blue-Orange, linear-gradient(90deg, #424242cc 24.08%, #181818b8 111.24%));
    z-index: -1;
}
.news_letter_sec .news_letter_content .title {
    color: #fff;
    margin-bottom: 30px;
}
.news_letter_sec .news_letter_content .title span {
    z-index: 0;
}
.news_letter_sec .news_letter_content .title :after {
    /* background: #2c2d31; */
    z-index: -1;
    background: url(../images/price_title_icon.png);
    background-repeat: no-repeat;
    background-position: center right;
    bottom: -22px;
}
.news_letter_sec .news_letter_content .news_letter {
    display: flex;
    width: 60%;
    margin: auto;
}
.news_letter_sec .news_letter_content .news_letter .form_group {
    width: 100%;
    display: block;
    display: flex;
    position: relative;
}

.news_letter_sec .news_letter_content .news_letter input.form-control {
    height: 58px;
    font-size: 20px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.news_letter_sec .news_letter_content .news_letter .form_group input.form-control:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #fff;
}

.news_letter_sec .news_letter_content .news_letter  button.submit_btn {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    height: 50px;
    border: none;
    padding: 0 20px;
    margin: auto;
    background: #181818;
    color: #fff;
    border-radius: 0;
    text-transform: capitalize;
    z-index: 8;
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.news_letter_sec .news_letter_content .news_letter  button.submit_btn:hover {
    background: #2a2929;
}
/* .news_letter_sec .news_letter_content .news_letter  button.submit_btn:after {
    background-color: #b51f33;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
} */

.news_letter_sec .news_letter_content .news_letter  button.submit_btn:hover::after {
    left: 5%;
    width: 90%;
}

.news_letter_sec .news_letter_content {
    background: #111111;
    border-radius: 0;
    padding: 39px 30px;
    background-image: url(../images/news_letter.png);
    text-align: center;
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px -30px 30px 0px rgb(143 143 143 / 14%);
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
/* News Letter */

/* comparisons product Sec */
.comparisons_product_sec {
    margin: 60px auto;
}

.comparisons_product_sec .title {
    margin-bottom: 40px;
}

/* .comparisons_product_sec .owl-stage-outer {
    display: flex;
} */

.comparisons_product_sec .owl-carousel .owl-stage {
    display: flex;
}
.comparisons_product_sec .owl-stage-outer .owl-item {
    display: flex;
    flex: 1 0 auto;
    padding: 30px 0;
}
.comparisons_product_sec .comparisons_product_slider {
    position: relative;
    padding: 0 60px;
}
.comparisons_product_sec .comparisons_product_slider .comparisons_product {
    border: 1px solid #b0d2f34d;
    display: flex;
    padding: 15px;
    border-radius: 0;
    position: relative;
    /*z-index: -1;
    */background: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.comparisons_product_sec .comparisons_product_slider .comparisons_product:before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
    width: 90%;
    margin: auto;
    height: 88%;
}

.comparisons_product_sec .comparisons_product_slider .comparisons_product:hover:before {
    background: linear-gradient(270deg, rgb(191 191 191) 0.8%, rgb(127 123 123) 39.2%, rgb(255 255 255) 69.64%, rgb(197 196 196) 97.74%);
    filter: blur(22.170000076293945px);
}
.comparisons_product_sec .comparisons_product_slider .comparisons_product .vs_icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    margin: auto;
    width: 70px;
}

.comparisons_product_sec .comparisons_product_slider .comparisons_product .vs_icon svg {
    width: 70px;
    height: 70px;
}
.comparisons_product_sec .comparisons_product_slider .comparisons_product:hover {
    /* border: 1px solid #e66b39; */
}
.comparisons_product_sec .comparisons_product_slider .comparisons_product .comparisons_content {
    width: 46%;
    flex: 0 0 46%;
    margin: 0 6px;
}

.comparisons_product_sec .comparisons_product_slider .comparisons_product .comparisons_content .text_content {
    margin-top: 21px;
}

.comparisons_product_sec .comparisons_product_slider .comparisons_product .comparisons_content .text_content .product_title {
    color: #46474A;
    font-size: 18px;
    margin: 0;
    line-height: 1.8;
    font-weight: 600;
}

.comparisons_product_sec .comparisons_product_slider .comparisons_product img.vs_icon {
    position: absolute;
    width: 40px;
    left: 0;
    right: 0;
    margin: auto;
    top: 25%;
}
/* .comparisons_product_sec .comparisons_product_slider .comparisons_product .comparisons_content .comparisons_phone {
    border: 1px solid #b0d2f34d;
    padding: 6px;
    border-radius: 15px;
} */
.comparisons_product_sec .comparisons_product_slider .owl-nav button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    border-radius: 50%;
    border: none;
    background-image: url(../images/h_l_arrow.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.comparisons_product_sec .comparisons_product_slider .owl-nav button  span {
    font-size: 25px;
    display: none;
}
.comparisons_product_sec .comparisons_product_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
    background: url(../images/h_r_arrow.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.comparisons_product_sec .comparisons_product_slider .owl-nav button:hover {
    background: #fff;
}
.comparisons_product_sec .comparisons_product_slider .owl-dots {
    display: none;
}
/* comparisons product Sec */

/****==== End Home Page  ====****/

/****==== Start Details Page  ====****/

.product_details {
    margin-top: 115px;
}
.breadcrumb_sec {
    padding-top: 20px;
    color: #3C3C3C;
}

.breadcrumb_menu {
    list-style-type: none;
    padding: 0;
    display: flex;
    margin: 0;
}



.breadcrumb_menu li {
    margin-right: 10px;
    color: #c4c2c2;
}
.breadcrumb_menu li a {
    color: #c4c2c2;
    font-size: 16px;
}


.breadcrumb_menu li i {
    font-size: 9px;
    margin-left: 5px;
    color: #c4c2c2;
}



.product_slider {
    /* border-radius: 10px; */
    border: 1px solid #eaeaea;
    width: 80%;
    margin: auto;
    padding: 20px;
    background: #fff;
    /* height: 376px; */
    overflow: hidden;
}
.product_slider .owl-dots {
    display: none;
}
.product_details .product_details_photo {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 0;
}
.product_info_details .product_details_photo .product_photo {
    width: 100%;
    display: block;
    margin: 0 auto;
}
/* .product_info_details .product_details_photo .product_photo img {
    width: 90%;
} */

.product_info_details .product_thumbnail_slider {
    width: 60%;
    margin: 28px auto 0;
    padding: 0 30px;
}
.product_info_details .product_thumbnail_slider .product_photo {
    border: 1px solid #eaeaea;
    padding: 10px;
    border-radius: 0;
    background: #fff;
    margin: 10px 8px;
}
.product_info_details .product_thumbnail_slider .product_photo:before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
    width: 58%;
    margin: auto;
    height: 58%;
    margin: auto;
}
.product_info_details .product_thumbnail_slider .product_photo:hover:before {
    background: linear-gradient(270deg, rgb(191 191 191) 0.8%, rgb(127 123 123) 39.2%, rgb(255 255 255) 69.64%, rgb(197 196 196) 97.74%);
    filter: blur(22.170000076293945px);
}
/* .product_info_details .product_thumbnail_slider .product_photo:hover {
    border: 1px solid #000;
} */
.product_info_details .product_thumbnail_slider .product_photo img {
    width: 100%;
}
.product_info_details .product_thumbnail_slider .owl-nav.disabled {
    display: block;
}



.product_info_details .product_thumbnail_slider .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.product_info_details .product_thumbnail_slider .owl-nav button {
    position: absolute;
    left: 0;
    width: 20px;
    height: auto;
    margin: 0;
}

.product_info_details .product_thumbnail_slider .owl-nav button span {
    line-height: 98px;
    font-size: 48px;
    color: #181818;
}
.product_info_details .product_thumbnail_slider .owl-nav .owl-next {
    right: 0;
    float: right;
    left: auto;
}

.product_info_details .product_thumbnail_slider .owl-nav button:hover {
    background: none;
    color: #404040;
}

.product_details .product_text_content .top_sec .compare_btn {
    display: inline-flex;
    padding: 10px 30px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 0;
    position: relative;
    z-index: 0;
}
.product_details .product_text_content .top_sec .compare_btn i {
    font-size: 15px;
    margin-right: 12px;
}


.product_info_details .product_text_content .brand {
    display: block;
    width: 12%;
}


.product_details .product_text_content .score_sec {
    display: inline-flex;
    margin-top: 14px;
}

.product_details .product_text_content .score_sec .number {
    margin: 0;
    font-size: 10px;
    display: flex;
    align-items: center;
    width: 93%;
    line-height: 10px;
}

.product_details .product_text_content .score_sec .number span {
    font-size: 24px;
    margin-right: 7px;
    position: relative;
    z-index: 1;
    font-style: italic;
}
.product_details .product_text_content .score_sec .number span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    background: #c4c2c2;
    position: absolute;
    height: 4px;
    width: 100%;
    z-index: -1;
}

.product_details .brand_sec .brand_slider .owl-nav {
    display: none;
}


/* Product Score  */
.product_details .product_text_content .market_company .product_score {
    width: 140px;
}

.product_details .product_text_content .market_company .product_score img {
    width: 40px !important;
}

.product_details .product_text_content .market_company .product_score .text_content {
    margin-top: 17px !important;
}

.product_details .product_text_content .market_company .product_score .text_content span {
    font-size: 30px;
}

.product_details .product_text_content .market_company .product_score .text_content .score {
    font-size: 12px;
    line-height: 18px;
    margin-top: 4px;
}
/* Product Score  */

.product_details .product_text_content .market_company {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.product_details .product_text_content .market_company .status {
    margin: 0 auto 20px;
    font-size: 16px;
    color: #c4c2c2;
    font-weight: 600;
}
.product_details .product_text_content .market_company .price_offer_sec {
    display: flex;
    align-items: flex-end;
    margin: 0 0 20px;
}
.product_details .product_text_content .market_company .price_offer_sec .price {
    margin: 0 5px 0 0;
}
.product_details .product_text_content .market_company .price_offer_sec .price.price_offer span {
    text-decoration: line-through;
    font-size: 20px;
    font-weight: 400;
    color: #a1a1a1;
}

.product_text_content .market_company .price_offer_sec .offer {
    font-size: 11px;
    background: #f00;
    color: #fff;
    padding: 1px 4px;
    position: relative;
    bottom: 5px;
    font-style: italic;
}
.product_details .product_text_content .market_company .company {
    width: 70px;
}


.product_details .product_text_content .market_company .status span {
    color: #3C3C3C;
}

.product_details .product_text_content  .price {
    font-size: 18px;
    font-weight: 400;
    margin: 0 auto 24px;
    color: #c4c2c2;
}

.product_details .product_text_content .price span {
    display: block;
    margin-top: 8px;
    font-size: 24px;
    color: #3C3C3C;
    font-weight: 600;
}

.product_info_details {
    margin-bottom: 100px;
    padding-top: 20px;
}
.product_info_details .announced {
    color: #c4c2c2;
    font-weight: 500;
}

.product_info_details .announced span {
    color: #3C3C3C;
}




.product_specifications {
    background: #F8F8F8;
    padding: 30px;
    border-bottom: 2px solid #F2F2F2;
    border-radius: 0;
    position: relative;
    z-index: 0;
}

.product_specifications .specifications_content {
    display: flex;
    margin-bottom: 25px;
}

.product_specifications .specifications_content .icon {
    width: 40px;
    margin-right: 14px;
    flex: 0 0 40px;
}
.product_specifications .specifications_content .icon svg {
    width: 100%;
    height: auto;
}
.product_specifications .specifications_content .text_content .process {
    font-size: 14px;
    margin: 0;
    color: #46474A;
}

.product_specifications .specifications_content .text_content  .des {
    margin: 0;
    color: #161616;
    font-weight: 600;
    font-size: 16px;
}
/* .product_details .product_details_photo .product_slider {
    height: 370px;
} */
/* .product_info_details .product_details_photo .product_slider .product_photo img {
    height: 332px;
} */

.product_details .product_text_content .device_info_sec {
    display: flex;
    background: #F8F8F8;
    padding: 10px 30px;
    margin-top: 30px;
}
.product_details .product_text_content .device_info_sec .des {
    margin: 0;
}
.product_details .product_text_content .link_sec {
    margin-top: 30px;
}

.product_details .product_text_content .link_sec .view_btn svg {
    margin: 0 9px 0 0;
    width: 24px;
    filter: none;
}
.product_details .product_text_content .link_sec .view_btn.store_btn svg {
    filter: brightness(0) invert(1);
}
.product_details .product_text_content .link_sec .view_btn.atricle svg {
    filter: brightness(0) invert(1);
}
.product_details .product_text_content .link_sec .view_btn {
    text-transform: capitalize;
    font-size: 16px;
    margin-right: 6px;
    background: #181818;
}
.product_info_details .product_specifications .more {
    background: #181818;
}
.store_sec .store_list_sec .view_btn {
    background: #181818;
}

.product_details .product_text_content .device_info_sec img {
    width: 20px;
    margin-right: 8px;
}
.product_details .product_text_content .link_sec .view_btn.atricle svg {
    width: 26px;
}
.product_details .product_text_content .link_sec .view_btn.google svg {
    width: 27px;
}

/* .product_details .product_text_content .link_sec .view_btn:hover {
    border:1px solid #e66b39;
} */
.product_details .product_text_content .link_sec .view_btn:before {
    background: #e66b39;
}

.product_details .product_text_content .link_sec .view_btn.atricle svg path {
    fill: #114b78;
}
.product_details .product_text_content .link_sec .view_btn.atricle:hover  svg path {
    fill: #fff;
}
/* .product_details .product_text_content .link_sec .view_btn.store_btn svg g path {
    fill: #001ed1;
}
.product_details .product_text_content .link_sec .view_btn.store_btn {
    color: #001ed1;
    border: 1px solid #001ed1;
} */

.product_details .product_text_content .link_sec .view_btn.atricle svg {
    width: 26px;
}

.product_details .product_text_content .device_info_sec .device_info_des {
    margin: 0;
    font-size: 16px;
    color: #46474A;
    font-weight: 600;
}

.product_details .product_text_content .pros_cons_sec {
    display: flex;
    background: #F8F8F8;
    margin-top: 30px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
}
.product_details .product_text_content .pros_cons_sec .pros_content {
    width: 50%;
    border-right: 1px solid #eaeaea;
}
.product_details .product_text_content .top_sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.product_info_details .product_text_content .title {
    text-transform: none;
}

.product_details .product_text_content .pros_cons_content {
    padding: 15px;
    margin-top: 30px;
    border-radius: 0;
}
.product_details .product_text_content .pros_cons_content .pros_cons {
    width: 160px;
    height: 160px;
}
.product_details .product_text_content .pros_cons_content .pros_cons_middle {
    width: 200px;
    height: 200px;
}

.product_details .product_text_content .pros_cons_content .pros_cons_middle:after {
    width: 174px;
    height: 174px;
}

.product_details .product_text_content .pros_cons_content .pros_cons span {
    font-size: 20px;
}

.product_details .product_text_content .pros_cons_content .pros_list {
    padding: 0 10px;
    margin: 0;
}
.product_details .product_text_content .pros_cons_content .pros_list li .icon {
    width: 16px;
    float: left;
    flex: 0 0 16px;
}

.product_details .product_text_content .pros_cons_content .pros_list li  span {
    /* width: 190px; */
    font-size: 12px;
    line-height: 17px;
}

.product_details .product_text_content .pros_cons_content .pros_list li .icon svg {
    width: 100%;
    height: 100%;
}


.product_details .product_text_content .pros_cons_content .pros_list.cons li {
    text-align: right;
    justify-content: flex-end;
}

.product_details .product_text_content .pros_cons_content .pros_list.cons li .icon {
    margin-right: 0;
    margin-left: 10px;
}


.pros_cons_content_sec {
    position: relative;
    display: none;
}

.pros_cons_content_sec .pros_more {
    flex-direction: column;
    display: flex;
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    border-radius: 50%;
    justify-content: center;
    margin: auto;
    justify-content: center;
    align-items: center;
    bottom: -25px;
    position: absolute;
    right: 0;
    left: 0;
    color: #ada4a4;
    font-weight: 600;
    font-size: 12px;
}
.pros_cons_content_sec .pros_more svg {
    width: 20px;
}

.pros_cons_content_sec .pros_more svg path {
    fill: #877f87;
}


.pros_cons_content_sec .cons_more {
    flex-direction: column;
    display: none;
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    border-radius: 50%;
    justify-content: center;
    margin: auto;
    justify-content: center;
    align-items: center;
    bottom: -24px;
    position: absolute;
    right: 0;
    left: 0;
    color: #ada4a4;
    font-weight: 600;
    font-size: 12px;
}

.pros_cons_content_sec .cons_more svg {
    width: 20px;
}

.pros_cons_content_sec .cons_more svg path {
    fill: #877f87;
}


.pros_cons_content_sec.show .pros_more {
    display: none;
}

.pros_cons_content_sec.show  .cons_more {
    display: flex;
}

.product_details .product_text_content .pros_cons_content.pros_cons_more {
    display: none;
}

.more.show.cons_more {
    display: none;
}

.pros_cons_content_sec.show .pros_cons_content.pros_cons_more {
    display: flex;
    margin-top: 0;
    padding-top: 0;
    border-radius: 0 0 10px 10px;
}

.pros_cons_content_sec.show .pros_cons_content {
    padding-bottom: 0;
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.product_details .product_text_content .pros_cons_content_sec.show .pros_cons_content .pros_list li:first-child {
    margin-top: 0 !important;
}

.pros_cons_content_sec.show .more.pros_more {
    display: none;
}

.pros_cons_content_sec.show .more.show.cons_more {
    display: inline-block;
}




.product_details .product_text_content .alert_sec {
    border-radius: 0;
    border: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-top: 30px;
}

.product_details .product_text_content .alert_sec .des {
    margin: 0;
    font-weight: 500;
}

/* .product_details .product_text_content .alert_sec .view_btn {
    background: #212121 !important;
    color: #fff;
    font-size: 18px;
    overflow: hidden;
} */
/* .product_details .product_text_content .alert_sec .view_btn:hover {
    background: #fff;
    color: #212121;
} */
.product_details .product_text_content .alert_sec .view_btn:hover:before {
    width: 100%;
    background: #fff;
}
.product_details .product_text_content .alert_sec .view_btn i {
    margin-left: 14px;
}


/* .compare_count_btn.view_btn {
    position: fixed;
    bottom: 6%;
    right: 16%;
    font-size: 18px;
    padding: 12px 24px;
    z-index: 1;
    display: none;
} */

.product_count_btn {
    position: fixed;
    bottom: 6%;
    right: 16%;
    font-size: 18px;
    padding: 12px 24px;
    display: none;
    background: #ffffff;
    align-items: center;
    color: #fff;
    font-weight: 600;
    z-index: 1;
    /* border: 1px solid #2c2d31; */
    border-radius: 0;
    background: #181818;
    overflow: hidden;
}
.count_active .product_count_btn {
    display: block;
}

.product_count_btn:hover {
    color: #ffffff;
}
.product_count_btn:after {
    background-color: #ffffff;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
}
.product_count_btn:hover::after {
    left: 5%;
    width: 90%;
}

.product_count_btn:hover:before {
    width: 100%;
}
.product_count_btn span {
    background: #ffffff;
    padding: 4px 10px;
    margin-left: 10px;
    border-radius: 0;
    color: #181818;
}


.view_btn {
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 16px;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 0;
    border-radius: 8px;
    background: #181818;
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.compare_count_btn.view_btn span {
    background: #3c3c3c;
    padding: 4px 10px;
    margin-left: 10px;
    border-radius: 0;
    color: #fff;
}
.compare_count_btn.view_btn:hover span {
    background: #fff;
    padding: 4px 10px;
    margin-left: 10px;
    border-radius: 5px;
    color: #3c3c3c;
}
.product_details .product_text_content .top_sec.show .compare_count_btn.view_btn {
    display: block;
}


/* Product Details Compare  */

.compare_mobile_sec.product_details_compare {
    position: fixed;
    bottom: 0;
    z-index: 10;
    left: 0;
    right: 0;
    display: none;
}
body.product_active {
    overflow: hidden;
}
body.product_active:before {
    content: "";
    background: #000000d1;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}
.compare_mobile_sec.product_details_compare .title {
    text-align: left;
    font-size: 24px;
    z-index: 1;
    position: relative;
    margin-bottom: 16px;
}
.compare_mobile_sec.product_details_compare .container {
    width: 44%;
    border-radius: 15px 15px 0 0;
}
.compare_mobile_sec.product_details_compare .container .search_compare_wrapper {
    padding: 10px;
}
.compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .text_content .price_sec .price {
    font-size: 17px;
}

.compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .text_content .product_title {
    margin: 0;
    font-size: 12px;
    margin-bottom: 6px;
}

.compare_mobile_sec.product_details_compare .search_add_sec {
    border: 1px solid #b0d2f34d;
    padding: 62px 20px;
    display: block;
    border-radius: 8px;
    margin-top: 14px;
}
.compare_mobile_sec.product_details_compare .search_add_sec .add_sec span {
    font-size: 16px;
}

.compare_mobile_sec.product_details_compare .container .view_btn.compare_btn {
    margin-top: 30px;
    font-size: 15px;
    padding: 11px 20px;
}

.compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone {
    padding: 6px;
    border-radius: 6px;
    height: 124px;
}
.compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone img {
    height: 110px;
}
.compare_mobile_sec.product_details_compare .search_compare_wrapper .select2-selection.select2-selection--single {
    font-size: 14px;
}
body.product_active .compare_mobile_sec.product_details_compare {
    display: block;
}
.compare_mobile_sec.product_details_compare .title_sec {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    margin-bottom: 20px;
}

.compare_mobile_sec.product_details_compare .title_sec .close_icon {
    cursor: pointer;
}
body.product_active .compare_mobile_sec.product_details_compare .view_btn.compare_btn1.compare {
    margin: 30px auto 0;
}
/* Product Details Compare  */


/* User Actions Sec */

.user_actions_sec {
    margin-top: 30px;
    background: #f8f8f8;
    border: 2px solid #F2F2F2;
    padding: 20px;
    position: relative;
    z-index: 0;
    display: inline-block;
    width: 100%;
}
.user_actions_sec .title {
    margin-bottom: 50px;
}

.user_actions_sec .user_btn {
    border: none;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0;
    margin-right: 70px;
    margin-bottom: 20px;
}
.user_actions_sec .user_btn.review {
    margin-right: 0;
}
.user_actions_sec .user_btn .icon {
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 12px -2px rgba(79,78,86,.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.user_actions_sec .user_btn .icon i {
    color: #939393;
    font-size: 18px;
}

.user_actions_sec .user_btn .text_content .action {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.1;
    color: #212121;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.user_actions_sec .user_btn .text_content .sub {
    font-size: 14px;
    color: #606060;
}

.user_actions_sec .user_btn_list {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
}
.user_actions_sec .user_btn .add_icon {
    position: absolute;
    top: 0;
    /* right: 0; */
    background: #adadad;
    width: 20px;
    height: 18px;
    border-radius: 50%;
    left: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user_actions_sec .user_btn .add_icon i {
    font-size: 12px;
    color: #ffffff;
}

/* .user_actions_sec .user_btn:hover .icon {
    background: #212121;
   
} */

/* .user_actions_sec .user_btn:hover .icon i {
    color: #fff;
}

.user_actions_sec .user_btn:hover .add_icon {
    background: #fff;
}

.user_actions_sec .user_btn:hover .add_icon i {
    color: #212121;
} */

/* Rating Modal */

.rating_modal .modal-header .title {
    z-index: 0;
}

.rating_modal .modal-body {
    text-align: center;
}
.rating_modal .modal-header .btn-close:focus {
    box-shadow: none;
}

.rating_modal .modal-body .review_form .rating_field {
    border: 1px solid #eaeaea;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
}

.rating_modal .modal-body .review_form .rating_field a {
    font-size: 37px;
    margin: 0 9px;
    color: #eaeaea;
}

.rating_modal .modal-dialog {
    /*width: 20%;*/    
    width: max-content;
}

.rating_modal .modal-body .review_form .rating_btn.view_btn {
    padding: 8px 20px;
    font-size: 16px;
    margin-top: 16px;
}
.rating_modal .modal-body .review_form .rating_field a.rating_active {
    color: #e2cd80;
}



form.review_form .rate {
    display: flex;
    justify-content: center;
    margin: 20px auto;
}

form.review_form .rate .form_group {
    margin-right: 0;
    width: 50px;
    text-align: center;
    display: flex;
}

form.review_form .rate .form_group label.rating_active:before {
    color: #e2cd80;
}

.rate .form_group [type="radio"]:checked,
.rate .form_group [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.rate .form_group [type="radio"]:checked + label,
.rate .form_group [type="radio"]:not(:checked) + label
{
    position: relative;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    float: left;
}
.rate .form_group [type="radio"]:checked + label:before, .rate .form_group [type="radio"]:not(:checked) + label:before {
    content: '★';
    position: absolute;
    border-radius: 100%;
    background: #fff;
    font-size: 47px;
}
/* .rate .form_group [type="radio"]:checked + label:after, .rate .form_group [type="radio"]:not(:checked) + label:after {
    content: '★';
    position: absolute;
    left: 0px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #e2cd80;
    font-size: 47px;
} */
.rate .form_group [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.rate .form_group [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* Rating Modal */


/* component */

/* .star-rating {
    border:solid 1px #ccc;
    display:flex;
    flex-direction: row-reverse;
    font-size:1.5em;
    justify-content:space-around;
    padding:0 .2em;
    text-align:center;
    width:5em;
  }
  
  .star-rating input {
    display:none;
  }
  
  .star-rating label {
    color:#ccc;
    cursor:pointer;
  }
  
  .star-rating :checked ~ label {
    color:#f90;
  }
  
  .star-rating label:hover,
  .star-rating label:hover ~ label {
    color:#fc0;
  } */



  .rating input {
    display: none;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.rating label {
    color: #ccc;
    cursor: pointer;
    font-size: 54px;
}
.rating :checked ~ label {
    color: #f90;
}

.rating label:hover,
  .rating label:hover ~ label {
    color: #fc0;
}
.rating_modal .btn_sec .reset_button {
    padding: 2px 20px;
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    margin-top: 16px;
    border-radius: 5px;
    margin-right: 10px;
    background: #2c2d31;
    color: #fff;
}






.user_actions_sec .user_btn.want .icon svg {
    width: 22px;
}

.user_actions_sec .user_btn.have .icon svg {
    width: 25px;
}
.user_actions_sec .user_btn.had .icon svg {
    width: 26px;
}
.user_actions_sec .user_btn.review .icon svg {
    height: 24px;
}
.user_actions_sec .user_btn.alert .icon svg {
    width: 20px;
}
.user_actions_sec .user_btn.want .icon {
    border: 1px solid #f00;
    box-shadow: 0 4px 12px -2px rgb(237 55 46 / 50%);
}
.user_actions_sec .user_btn .tick_icon {
    display: none;
}
.user_actions_sec .user_btn.active .add_icon {
    background: #fff !important;
}
.user_actions_sec .user_btn.active .fa-plus {
    display: none;
}
.user_actions_sec .user_btn.active .tick_icon {
    display: block;
}
.user_actions_sec .user_btn[disabled] {
    opacity: 0.5;
}
.user_actions_sec .user_btn.want.active .add_icon i {
    color: #ff0000;
}

.user_actions_sec .user_btn.want .icon i {
    color: #f00;
}
.user_actions_sec .user_btn.want.active .icon {
    background: #ff0000;
}
.user_actions_sec .user_btn.want.active .icon svg path {
    fill: #fff;
}
.user_actions_sec .user_btn.want .add_icon {
    background: #ff0000;
    left: 40px;
}
.user_actions_sec .user_btn.want .text_content .action {
    color: #f00;
}


.user_actions_sec .user_btn.have.active .icon i {
    color: #4f4e56;
}
.user_actions_sec .user_btn.have.active .icon {
    background: #4f4e56;
}
.user_actions_sec .user_btn.have.active .icon svg path {
    fill: #fff;
}


.user_actions_sec .user_btn.have .icon {
    border: 1px solid #4f4e56;
    box-shadow: 0 4px 12px -2px rgb(237 55 46 / 50%);
}
.user_actions_sec .user_btn .icon svg {
    height: auto;
}
.user_actions_sec .user_btn.have .icon {
    border: 1px solid #4f4e56;
    box-shadow: 0 4px 12px -2px rgb(79 78 86 / 63%);
}
.user_actions_sec .user_btn.have .icon i {
    color: #4f4e56;
}
.user_actions_sec .user_btn.have .add_icon {
    background: #4f4e56 !important;
}
.user_actions_sec .user_btn.have .text_content .action {
    color: #4f4e56;
}
.user_actions_sec .user_btn.have.active .tick_icon {
    display: block;
}




.user_actions_sec .user_btn.had .icon {
    border: 1px solid #a7a7b1;
    box-shadow: 0 4px 12px -2px rgb(79 78 86 / 63%);
}

.user_actions_sec .user_btn.had .add_icon {
    background: #a7a7b1;
}
.user_actions_sec .user_btn .icon i {
    color: #a7a7b1;
}
.user_actions_sec .user_btn.had .text_content .action {
    color: #a7a7b1;
}
.user_actions_sec .user_btn.had.active .icon {
    background: #a7a7b1;
}

.user_actions_sec .user_btn.had.active .icon svg path {
    fill: #ffffff;
}
.user_actions_sec .user_btn.had.active .add_icon i {
    color: #a7a7b1;
}




.user_actions_sec .user_btn.review .icon {
    border: 1px solid #ff9826;
    box-shadow: 0 4px 12px -2px rgb(237 55 46 / 50%);
}

.user_actions_sec .user_btn.review .icon {
    border: 1px solid #ff9826;
    box-shadow: 0 4px 12px -2px rgb(255 152 38 / 69%);
}
.user_actions_sec .user_btn.review .icon i {
    color: #ff9826;
}
.user_actions_sec .user_btn.review .add_icon {
    background: #ff9826;
    left: 35px;
}
.user_actions_sec .user_btn.review .text_content .action {
    color: #ff9826;
}



.user_actions_sec .user_btn.review.active .icon {
    background: #ff9826;
}

.user_actions_sec .user_btn.review.active .icon svg path {
    fill: #ffffff;
}
.user_actions_sec .user_btn.review.active .add_icon i {
    color: #ff9826;
}



.user_actions_sec .user_btn.compare .icon {
    border: 1px solid #4f4e56;
    box-shadow: 0 4px 12px -2px rgb(237 55 46 / 50%);
}

.user_actions_sec .user_btn.compare .icon {
    border: 1px solid #4f4e56;
    box-shadow: 0 4px 12px -2px rgb(79 78 86 / 63%);
}
.user_actions_sec .user_btn.compare .icon svg {
    width: 20px;
}

.user_actions_sec .user_btn.compare .icon svg path {
    fill: #4f4e56;
}
.user_actions_sec .user_btn.compare .icon i {
    color: #4f4e56;
}

.user_actions_sec .user_btn.compare .add_icon {
    background: #4f4e56;
    left: 42px;
}
.user_actions_sec .user_btn.compare .text_content .action {
    color: #4f4e56;
}

.user_actions_sec .user_btn.compare.active .icon {
    background: #4f4e56;
}

.user_actions_sec .user_btn.compare.active .icon svg path {
    fill: #ffffff;
}
.user_actions_sec .user_btn.compare.active .add_icon i {
    color: #4f4e56;
}






.user_actions_sec .user_btn.alert .icon {
    border: 1px solid #010101;
    box-shadow: 0 4px 12px -2px rgb(237 55 46 / 50%);
}

.user_actions_sec .user_btn.alert .icon {
    border: 1px solid #010101;
    box-shadow: 0 4px 12px -2px rgb(79 78 86 / 63%);
}
.user_actions_sec .user_btn.alert .icon i {
    color: #010101;
}
.user_actions_sec .user_btn_list .user_btn.alert .add_icon {
    left: 44px;
}
.user_actions_sec .user_btn.alert .add_icon {
    background: #010101;
}
.user_actions_sec .user_btn.alert .text_content .action {
    color: #010101;
}

.user_actions_sec .user_btn.alert.active .icon {
    background: #010101;
}

.user_actions_sec .user_btn.alert.active .icon svg path {
    fill: #ffffff;
}
.user_actions_sec .user_btn.alert.active .add_icon i {
    color: #010101;
}


.user_actions_sec .user_btn.disable {
    cursor: not-allowed;
}

.user_actions_sec .user_btn.disable .icon {
    border: 1px solid #e9e3e3;
}

.user_actions_sec .user_btn.disable .icon svg path {
    fill: #cfcaca;
}

.user_actions_sec .user_btn.disable .text_content .action {
    color: #cfcaca;
}

.user_actions_sec .user_btn.disable .add_icon {
    background: #cfcaca;
}



/* User Actions Sec */


/* Product Score */
.product_score {
    display: flex;
    align-items: center;
    width: 50px;
    flex: 0 0 56px;
}

.product_score img {
    width: 15px !important;
}

.product_score .text_content {
    margin: 0 !important;
    text-align: center;
    position: relative !important;
    top: -7px;
}
.product_score .score_l {
    left: 3px;
    position: relative;
}
.product_score .score_r {
    right: 3px;
    position: relative;
}

.product_score .text_content span {
    font-size: 12px;
    font-weight: 700;
    color: #3C3C3C;
    line-height: 10px;
    position: relative;
    top: 4px;
}
.product_score .text_content .score {
    font-size: 6px;
    margin: 0;
    line-height: 6px;
    color: #3C3C3C;
}
/* Product Score */


/* Specifications Sec */
.specifications_sec {
    border: 1px solid #e9eaeb;
    padding: 20px 30px;
    display: block;
    border-radius: 0;
    margin-bottom: 50px;
}
.specifications_sec .title {
    margin-bottom: 30px;
    border-bottom: 1px solid #b0d2f34d;
    padding-bottom: 30px;
    text-transform: none;
}
.specifications_sec .specifications_info .specifications {
    padding: 16px 24px;
    margin-bottom: 30px;
    border: 1px solid #b0d2f34d;
    border-radius: 0;
}
.specifications_sec .specifications_info .specifications .title {
    padding: 0;
    margin: 0;
    border-bottom: none;
}

.specifications_sec .specifications_info .specifications .title span {
    z-index: 0;
}
.specifications_sec .specifications_info .specifications .accordion-button:not(.collapsed):after {
    background-image: var(--bs-accordion-btn-icon);
}


.specifications_sec .specifications_info .specifications .accordion-button {
    padding: 0;
    color: #3C3C3C;
    font-size: 20px;
    font-weight: 700;
    border-radius: 0;
    box-shadow: none;
}
.specifications_sec .specifications_info .specifications .accordion-button:focus {
    box-shadow: none;
}
.specifications_sec .specifications_info .specifications .accordion-button:not(.collapsed) {
    background: none;
}
.specifications_sec .specifications_info .specifications .accordion-body {
    padding: 0;
}


.specifications_sec .specifications_info .specifications .accordion-button:focus {
    box-shadow: none;
}

.specifications_sec .specifications_info .specifications .accordion-body .product_list {
    padding: 0;
    list-style-type: none;
    margin: 0;
    margin-top: 20px;
    border-top: 2px solid #3c3c3c;
    padding-top: 30px;
}

.specifications_sec .specifications_info .specifications .accordion-body .product_list li {
    margin-bottom: 20px;
    color: #46474A;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.specifications_sec .specifications_info .specifications .accordion-body .product_list li span {
    width: 58%;
    display: inline-block;
    float: right;
    color: #161616;
    word-wrap: break-word;
}
.specifications_sec .specifications_info .specifications .accordion-body .product_list li:last-child {
    margin-bottom: 0;
}
/* Specifications Sec */


/* Store Sec */
.store_sec {
    background: #F8F8F8;
    padding: 30px;
    border-bottom: 2px solid #F2F2F2;
    border-radius: 0;
    margin-top: 40px;
}


.store_sec .title {
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.product_details_des {
    color: #444444;
    font-size: 18px;
    line-height: 1.8;
}
.store_sec .color_variant_sec {
    display: flex;
}

.store_sec .color_variant_sec .select_sec {
    margin-right: 20px;
}

.store_sec .color_variant_sec .select_sec label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.store_sec .color_variant_sec .select_sec select.form-select {
    box-shadow: none;
    border: 1px solid #eaeaea;
}

.store_sec .store_list_sec {
    padding: 0;
    list-style-type: none;
    margin-top: 30px;
}

.store_sec .store_list_sec li {
    display: flex;
    justify-content: space-between;
    border: 1px solid #eaeaea;
    align-items: center;
    padding: 15px;
    background: #fff;
    margin: 11px auto;
}

.store_sec .store_list_sec li .store_icon {
    /* width: 70px; */
    height: 49px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.store_sec .store_list_sec li .store_icon img {
    width: 120px;
}

.store_sec .store_list_sec li .price {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 8px;
    color: #a1a1a1;
}
.store_sec .store_list_sec li .price_sec {
    display: flex;
    align-items: end;
}
.store_sec .store_list_sec li .price_sec .offer_price {
    margin: 0;
    font-weight: 700;
}
.store_sec .bottom_sec .store_des {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
}
/* Store Sec */

/* Style Timeline */

.style_timeline .timeline_content_sec .date {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    border-radius: 0;
    padding: 6px 12px;
    margin-bottom: 20px;
    background: #181818;
}
.style_timeline .timeline_content_sec.timeline_bottom {
    display: none;
}
.style_timeline.product_active .timeline_content_sec.timeline_bottom {
    display: block;
}

.style_timeline.product_active .more {
    display: none;
}
.style_timeline.product_active .more.show {
    display: inline-block;
}
.style_timeline .timeline_content_sec .text_content {
    background: #fff;
    border-left: 2px solid #3c3c3c;
    padding: 0 10px;
}

.style_timeline .timeline_content_sec .text_content .des {
    font-size: 15px;
    margin: 0;
}

.style_timeline .timeline_content_sec .timeline_content {
    margin-bottom: 24px;
}

.style_timeline .title {
    margin-bottom: 30px;
}
.style_timeline .more.show {
    display: none;
}
/* Style Timeline */

/****==== End Details Page  ====****/

/****==== Best Mobile Page  ====****/
.best_phone_list .best_phone_content .phone_details_content {
    display: flex;
}


.best_info {
    margin-top: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}

.best_info .des {
    margin-top: 20px;
    font-size: 16px;
}

.best_info .more {
    float: right;
}

.best_phone_list .best_phone_content {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    align-items: center;
    margin-bottom: 40px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.best_phone_list .best_phone_content .top_sec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.best_phone_list .best_phone_content .top_sec.show .compare_count_btn.view_btn {
    display: flex;
}
.best_phone_list .best_phone_content .top_sec .phone_title_sec {
    display: flex;
    align-items: center;
}


.best_phone_list .best_phone_content .top_sec .phone_title_sec .number {
    width: 48px;
    height: 48px;
    border: 1px solid #3C3C3C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #3C3C3C;
    margin-right: 14px;
}
.best_phone_list .best_phone_content .top_sec .phone_title_sec .education_choice {
    width: 48px;
    margin-left: 15px;
}
.best_phone_list .best_phone_content .top_sec .phone_title_sec a {
    font-size: 28px;
    font-weight: 600;
    color: #3C3C3C;
}



.best_phone_list .best_phone_content .phone_details_content .product_photo {
    border: 1px solid #b0d2f34d;
    padding: 11px;
    border-radius: 0;
    flex: 0 0 28%;
    margin-right: 20px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content {
  border: 1px solid #b0d2f34d;
  padding: 20px;
  border-radius: 0;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .score_sec {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .score_sec .number {
  width: 10%;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .score_sec .date {
  margin: 0;
  font-size: 18px;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content  .price_feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .price_feature .price {margin: 0;font-size: 30px;color: #212529;font-weight: 700;}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .price_feature  .feature_storage {
    margin: 0;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
    padding: 6px 17px;
    background: #181818;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications {
  padding: 16px;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .specifications_sec {
  background: #fff;
  padding: 12px;
  height: 100%;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .specifications_sec .des {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    color: #212529;
    word-wrap: break-word;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .specifications_sec .specifications_content {
  margin-bottom: 15px;
}

.best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .more {
  margin-top: 20px;
  display: inline-block;
}

.best_phone_list .explore_price_sec {
    margin-bottom: 40px;
}

section.best_info.active .more.read_more {
    display: none;
}

.best_info .more.collapse_more {
    display: none;
}

section.best_info.active .more.collapse_more {
    display: block;
}

h4.title.band_title {
    display: flex;
    align-items: center;
}
.title.band_title img {
    width: 54px;
    margin-right: 10px;
}
h4.title.band_title .view_btn {
    margin-left: 14px;
}

.band_title_sec {
    display: inline-flex;
    flex-direction: column;
}

.band_title_sec .title.band_title {
    color: #2c2d31;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 14px;
    margin-bottom: 10px;
}

.band_title_sec .all_band {
    font-size: 14px;
}
.band_title_sec .all_band .band_title {
    font-size: inherit;
    font-weight: 400;
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 0;
}


.band_title_sec .all_band a:hover {
    color: #e66b39;
}
/* mobile price table */

.best_info .best_mobile_info {
    margin-bottom: 30px;
    display: none;
}
section.best_info.active .best_mobile_info {
    display: block;
}
.best_info .more.collapse_more {
    display: none;
}

.best_info .best_mobile_info .title {
    margin-bottom: 30px;
}

.best_info .best_mobile_info table.mobile_price_table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    /* border: 1px solid #c5c1c1; */
    overflow: hidden;
    /* display: inline-block; */
}

.best_info .best_mobile_info table.mobile_price_table tr th {
    font-size: 16px;
    padding: 19px 20px;
    background: #F8F8F8;
}

.best_info .best_mobile_info table.mobile_price_table tr  td {
    border: 1px solid #e5e5e5;
    padding: 17px 20px;
    width: 50%;
}

.best_info .best_mobile_info table.mobile_price_table tbody {
    width: 100%;
}


/* mobile price table */


/* Latest Article */
.latest_article_sec {
    margin: 90px auto;
    background-image: url(../images/features_bg.png);
    background-repeat: no-repeat;
    background-position: center;
}
.latest_article_sec .title {
    margin-bottom: 40px;
}
.latest_article_sec .latest_article {
    background: #F8F8F8;
    padding: 30px;
    border-bottom: 2px solid #F2F2F2;
    border-radius: 0;
    position: relative;
    z-index: 0;
}
.latest_article_sec .latest_article .text_content .title {
    font-size: 24px;
}
.latest_article_sec .latest_article .text_content .title:hover {
    color: #3C3C3C;
}
.latest_article_sec .latest_article .article_photo {
    display: block;
    height: 320px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.latest_article_sec .latest_article .article_photo img {
    height: 320px;
    object-fit: cover;
}
.latest_article_sec .latest_article .text_content .bottom_sec span {
    font-size: 15px;
    color: #585555;
    line-height: 12px;
    height: 10px;
    display: inline-block;
}

.latest_article_sec .latest_article .text_content .bottom_sec span a {
    color: #0a0a0a;
}

.latest_article_sec .latest_article .text_content .bottom_sec  time {
    border-left: 1px solid #706c6c;
    padding-left: 10px;
    margin-left: 6px;
    height: 10px;
    display: inline-block;
    line-height: 10px;
}


.latest_article_sec .latest_article_list {
	background: #F8F8F8;
	padding: 30px 10px;
	border-bottom: 2px solid #F2F2F2;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

section.latest_article_sec .latest_article_list .latest_article {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    border-bottom: none;
    margin-bottom: 12px;
    border-bottom: 1px solid #cdc8c8;
    border-radius: 0;
    padding-bottom: 0;
}
.latest_article_sec .latest_article_list .latest_article:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.latest_article_sec .latest_article_list .latest_article .article_photo {
	width: 128px;
	height: 80px;
	border-radius: 0;
	flex: 0 0 128px;
	margin: 0;
	margin-right: 13px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.latest_article_sec .latest_article_list .latest_article .article_photo img {
	height: 80px;
}

.latest_article_sec .latest_article_list .latest_article .text_content {
	width: 72%;
}

.latest_article_sec .latest_article_list .latest_article .text_content .title {
    font-size: 19px;
}
/* Latest Article */






/* Pros Cons Sec */
.best_phone_list .best_phone_content .pros_cons_sec {
    display: flex;
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
    margin-top: 30px;
    height: 100px;
    overflow: hidden;
    /* margin-bottom: 40px; */
    position: relative;
    flex-direction: column;
}
.best_phone_list .best_phone_content .pros_cons_sec:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(6deg, rgb(255 255 255) 0%, rgb(254 254 254 / 54%) 100%);
}
.best_phone_list .best_phone_content .pros_cons_sec .title {
    font-size: 24px;
    margin-bottom: 27px;
}
.best_phone_list .best_phone_content .pros_cons_sec .top_sec {
    margin-bottom: 20px;
}

.best_phone_list .best_phone_content .pros_cons_sec .top_sec .pros {
    font-size: 20px;
}
.best_phone_list .best_phone_content .pros_cons_sec .pros {
    color: #006622;
    margin: 0;
}
.pros_cons_wrapper {
    text-align: center;
}
.best_phone_list .best_phone_content .pros_cons_sec .pros_content.cons .pros {
    color: #b20600;
}
.best_phone_list .best_phone_content .pros_cons_sec .pros_content {
    width: 100%;
    border: 1px solid #b0d2f34d;
    padding: 11px;
    border-radius: 15px;
    flex: 0 0 49%;
}

.best_phone_list .best_phone_content .pros_list {
    margin: 0;
    padding: 0;
    text-align: left;
}
.best_phone_list .best_phone_content .pros_cons_sec .pros {
    color: #006622;
}

.best_phone_list .best_phone_content .pros_list li {
    list-style-type: none;
    margin-bottom: 14px;
    color: #46474A;
    font-weight: 500;
}
.pros_cons_wrapper .view_btn i {
    margin-left: 10px;
}
.pros_cons_wrapper .pros_cons_sec {
    flex-direction: column;
}

.pros_cons_wrapper.show .pros_cons_sec {
    height: auto;
}
.best_phone_list .best_phone_content .pros_cons_wrapper.show .pros_cons_sec {
     margin-bottom: 40px;
}

.pros_cons_wrapper .pros_cons_content {
    display: none;
}

.pros_cons_wrapper .pros_cons_mobile .pros_cons_content {
    display: flex;
    padding-bottom: 0;
}



.pros_cons_wrapper.show .pros_cons_sec:after {
   display: none;
}
.best_phone_list .best_phone_content .pros_cons_wrapper.show .view_btn i {
    transform: rotate(180deg);
}
.pros_cons_wrapper .view_btn span.less {
    display: none;
}
.pros_cons_wrapper .view_btn .more:after {
    display: none;
}

.pros_cons_wrapper.show span.show {
    display: none;
}

.pros_cons_wrapper.show span.less {
    display: block;
}
/* Pros Cons Sec */




/* Pros Cons Content */
.pros_cons_content {
    display: flex;
    flex-wrap: wrap;
    background: #f8f8f8;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 44px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.pros_cons_content .pros_list {
    width: 46%;
}

.pros_cons_content .pros_cons {
    position: absolute;
    width: 330px;
    height: 330px;
    background: #f8f8f8;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.pros_cons_content .pros_cons_middle {
    background: #f8f8f8;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
    margin: auto;
    height: 400px;
    border-radius: 50%;
}
.pros_cons_content .pros_cons_middle:after {
    content: "";
    background: linear-gradient(90deg,rgba(86, 218, 131, 1) 0%, rgba(86, 218, 131, 1) 46%, rgba(255, 140, 92, 1) 62%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 360px;
    height: 360px;
    margin: auto;
    border-radius: 50%;
    z-index: 0;
}
.pros_cons_content .pros_list li {
    display: flex;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
    font-size: 20px;
    margin: 22px auto !important;
}

.best_phone_list .best_phone_content .pros_list.cons li {
    text-align: right;
    display: flex;
    justify-content: end;
}

.pros_cons_content .pros_list li .icon {
    background: #80E580;
    background: linear-gradient(143deg,rgba(128, 229, 128, 1) 2%, rgba(128, 229, 128, 1) 12%, rgba(94, 206, 133, 1) 72%);
    width: 65px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.pros_cons_content .pros_list li .icon svg {
    width: 18px;
    height: 28px;
}
.pros_cons_content .pros_list li .icon svg path {
    width: 50px !important;
    height: 250px;
    fill: #fff;
}

.pros_cons_content .pros_list.cons li .icon {
    margin-right: 0;
    margin-left: 30px;
    background: #FFD574;
    background: linear-gradient(231deg,rgba(255, 213, 116, 1) 0%, rgba(255, 208, 114, 1) 15%, rgba(255, 140, 92, 1) 51%);
}

.pros_cons_content .pros_list li .icon svg path {
    fill: #fff;
}
.pros_cons_content .pros_list li span {
    font-size: 14px;
    width: 44%;
}
.pros_cons_content .pros_cons span {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 30px;
    color: #7e7e7e;
}
/* Pros Cons Content */
/* Pros Cons Content Mobile */
.pros_cons_mobile {
    display: block;
}
.pros_cons_mobile .pros_cons_content .pros_list {
    width: 100%;
    padding: 15px 15px 30px;
    /* position: relative; */
}

.pros_cons_mobile .pros_cons_content .pros_content_sec {
    background: linear-gradient(143deg, #2eca8a 2%, #2eca8a 12%, #2ab097 72%);
    border-radius: 0;
    position: relative;
    margin-bottom: 30px;
    width: 48%;
    padding-bottom: 70px;
}
.pros_cons_mobile .pros_cons_content .pros_list .icon {
    background: none;
    height: auto;
    width: auto;
    margin: 0px 14px 0 0;
}
.pros_cons_mobile .pros_cons_content .pros_list li span {
    width: auto;
    font-size: 16px;
}

.pros_cons_mobile .pros_cons_content .pros_list li {
    background: none;
    color: #fff;
    margin: 10px auto 0!important;
    align-items: start;
}

.pros_cons_mobile .pros_cons_content .pros_content_sec .bottom_sec {
    background: linear-gradient(143deg, #2eca8a 2%, #2eca8a 12%, #2ab097 72%);
    margin-left: 90px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    border-radius: 17px 0px 0 0;
    padding: 10px;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    /* clip-path: polygon(20% 0, 100% 0, 100% 79%, 0 100%, 16% -690%); */
    color: #fff;
    font-size: 19px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 25px;
    justify-content: center;
    display: flex;
    border-radius: 0;
}
.pros_cons_mobile .pros_cons_content .pros_content_sec .bottom_sec .icon {
    width: 20px;
    float: left;
    margin-right: 11px;
}
.pros_cons_mobile .pros_cons_content .pros_content_sec .bottom_sec .icon path {
    fill: #fff;
}
.pros_cons_mobile .pros_cons_content .pros_content_sec.cons {
    background: linear-gradient(231deg, rgba(255, 213, 116, 1) 0%, rgb(255 140 92) 15%, rgba(255, 140, 92, 1) 51%);
}
.pros_cons_mobile .pros_cons_content .pros_content_sec.cons .bottom_sec {
    background: linear-gradient(231deg,rgba(255, 213, 116, 1) 0%, rgba(255, 208, 114, 1) 15%, rgba(255, 140, 92, 1) 51%);
}
/* Pros Cons Content Mobile */



/* Comparisons Sec */
.product_details .new_comparisons_sec {
    margin: 60px 0;
    background: #F3F3F3;
}
.new_comparisons_sec {
    padding: 60px 0;
    text-align: center;
}


.new_comparisons_sec .title_content {
    text-align: center;
    margin-bottom: 70px;
}
.new_comparisons_sec .title_content .title {
    margin: 20px auto 20px;
}
.new_comparisons_sec .comparisons_grid .comparisons_content {
    display: flex;
    flex-wrap: wrap;
    background: #F2F2F2;
    position: relative;
}
.product_details.compare_mobiles_page .new_comparisons_sec .comparisons_content {
    background: #F2F2F2 !important;
}
.product_details .new_comparisons_sec .comparisons_grid .comparisons_content {
    background: #fff;
}
.product_details .brand_sec .brand_slider {
    padding: 0;
}
.new_comparisons_sec .comparisons_grid .comparisons_content:after {
    background-color: #ffffff;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
}
.new_comparisons_sec .comparisons_grid .comparisons_content:hover::after {
    left: 5%;
    width: 90%;
}

.new_comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono {
    width: 44%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 289px;
    flex: 0 0 44%;
}

.new_comparisons_sec .comparisons_grid .comparisons_content .vs_logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 14%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.new_comparisons_sec .comparisons_grid .comparisons_content img {
    width: 160px;
    margin-top: 40px;
}
.new_comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono.left_phone {
    background: #424242;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    flex: 0 0 56%;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%);
    position: relative;
}
new_comparisons_sec .comparisons_grid .text_content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 12px;
    text-align: left;
}
.new_comparisons_sec .comparisons_grid .text_content .name {
    width: 48%;
    font-size: 17px;
    margin: 0;
    color: #3C3C3C;
    padding: 0 10px;
}

.new_comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono.left_phone img {
    position: relative;
    left: -13%;
    margin-top: -60px;
}
.new_comparisons_sec .comparisons_grid .text_content .title {
    font-size: 16px;
    margin-top: 20px;
}

.new_comparisons_sec .comparisons_slider {
    position: relative;
    padding: 0 64px 40px;
}
.new_comparisons_sec .comparisons_slider .owl-nav button span {
    display: none;
}
.new_comparisons_sec .comparisons_slider .owl-nav button {
    position: absolute;
    left: 0;
    top: 124px;
    margin: auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/h_l_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.new_comparisons_sec .comparisons_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
    background: url(../images/h_r_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.new_comparisons_sec .comparisons_slider  .owl-dots {
    margin-top: 17px;
}

.new_comparisons_sec .comparisons_slider .owl-dots button span {
    border: 1px solid #222222;
    background: #f3f3f3;
}

.new_comparisons_sec .comparisons_slider .owl-dots button.active span {
    background: #222222;
}
.new_comparisons_sec .comparisons_grid .text_content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 12px;
    text-align: left;
}
.new_comparisons_sec .comparisons_grid .text_content .name {
    width: 48%;
    font-size: 17px;
    margin: 0;
    color: #3C3C3C;
    padding: 0 10px;
}
.new_comparisons_sec .view_btn svg {
    width: 12px;
    height: auto;
    margin-left: 10px;
}
/* Comparisons Sec */


/****==== Best Mobile Page  ====****/


/****==== Phone Finder Page  ====****/

/* L Sec */
.l_sec {
    background: #fff;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    align-items: center;
    margin-bottom: 40px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.l_sec .accordion .accordion-item .accordion-body {
    padding: 0;
    /* border-bottom: 1px solid #dfdfdf; */
}
.l_sec .title_sec {
    margin-bottom: 20px;
}

.l_sec .title_sec .title {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.l_sec .title_sec .title a {
    float: right;
    font-size: 18px;
    /* color: #006fda; */
}

.l_sec .accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #dfdfdf;
    border-radius: 0;
}

.l_sec .accordion .accordion-item .accordion-header {
    margin-bottom: 20px;
    margin-top: 20px;
}
.l_sec .accordion .accordion-item .accordion-header .accordion-button {
    padding: 0;
    background: none;
    box-shadow: none;
    font-size: 18px;
    color: #3C3C3C;
    font-weight: 600;
    position: relative;
    z-index: 0;
}
/* .l_sec .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
    content: "";
    position: absolute;
    top: -2px;
    bottom: 0;
    margin: auto;
    right: 0;
    background: url(../images/filter_add.svg);
    height: 20px;
    width: 20px;
    background-position: center;
    background-size: 100%;
} */
.l_sec .accordion .accordion-item .accordion-header .accordion-button:after {
    display: none;
}
.l_sec .accordion .accordion-item .accordion-header .accordion-button[aria-expanded="true"] {
    background-image: url(../images/filter_remove.svg);
    background-size: 7%;
    background-repeat: no-repeat;
    background-position: 100% center;
}
.l_sec .accordion .accordion-item .accordion-header .accordion-button[aria-expanded="false"] {
    background-image: url(../images/filter_add.svg);
    background-size: 7%;
    background-repeat: no-repeat;
    background-position: 100% center;
}
/* .l_sec .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
} */
.l_sec .accordion .accordion-item .accordion-body {
    padding: 0;
}
.l_sec .accordion .accordion-item .accordion-body .content_sec .search_box {
    position: relative;
}

.l_sec .accordion .accordion-item .accordion-body .content_sec .search_box input[type="text"] {
    width: 100%;
    padding: 10px;
    width: 100%;
    height: 48px;
    padding: 6px 40px;
    font-size: 15px;
    text-transform: capitalize;
    border: 1px solid #E4E4E7;
    background: #F5F5F5;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.l_sec .accordion .accordion-item .accordion-body .content_sec .search_box input[type="text"]:focus {
    outline: none;
}

.l_sec .accordion .accordion-item .accordion-body .content_sec .search_box svg {
    position: absolute;
    left: 12px;
    top: 16px;
}

.l_sec .accordion .accordion-item .accordion-body .content_sec .list_content {
    padding: 0 10px;
    list-style-type: none;
    height: 200px;
    overflow-y: scroll;
}

.l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px auto;
}
.l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li .form-check {
    width: 100%;
    display: block;
}
.l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li .form-check label {
    font-size: 18px;
    line-height: 30px;
    margin-left: 6px;
}

.l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li .form-check input {
    width: 20px;
    height: 20px;
    float: left;
    border-radius: 0;
}
.l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li .form-check-input:checked {
    background-color: #181818;
    border-color: #181818;
}

.l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li span {
    font-size: 14px;
    color: #6a6969;
    float: right;
    margin: 5px auto;
}



/* Price Range Sec */
.lunch_sec {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
}

.lunch_sec .title {
    font-size: 20px;
}

.price_range_sec {
    margin-bottom: 40px;
}
.price-input {
    width: 100%;
    display: flex;
    margin: 15px 0 35px;
}
  .price-input .field {
    display: flex;
    width: 100%;
    height: 34px;
    align-items: center;
}
.field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 14px;
    /* margin-left: 12px; */
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
}
  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  .price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
  }
  .slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
  }
  .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #080808;
}
  .range-input {
    position: relative;
  }
  .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .price_wrapper .range-input input.range-max {
    border: none;
}
.price_wrapper .range-input input.range-min {
    border: none;
}
  input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #080808;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }
  input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #080808;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }
  .more.clear-all {
    background: #181818;
    border-radius: 0;
}
/* Price Range Sec */
/* L Sec */


/* Filter Product Sec */
.filter_product_sec .short_sec {
    display: flex;
    align-items: center;
    margin-left: auto;
    overflow: hidden;
    justify-content: flex-end;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.filter_product_sec .short_sec select {
    width: auto;
    border-radius: 0;
}
.filter_product_sec .short_sec select:focus {
    box-shadow: none;
     border: 1px solid #cbcbcb;
}

.filter_product_sec .short_sec label {
    margin-right: 18px;
}
/* Filter Product Sec */

/* Best Phone Content */
.best_phone_content .phone_details_content {
    display: flex;
    background: #fff;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    align-items: self-start;
    margin-bottom: 40px;
}

.best_phone_content .phone_details_content .phone_photo_sec {
    width: 26%;
    flex: 0 0 26%;
    margin-right: 16px;
}

.best_phone_content .phone_details_content .phone_photo_sec .product_photo {
    display: block;
    background: #fff;
    padding: 0;
    /* border: 1px solid #e5e7eb; */
    border-radius: 15px;
    margin-bottom: 20px;
    /* height: 210px; */
}
.best_phone_content .phone_details_content .phone_photo_sec .product_photo img {
    /* height: 174px; */
    object-fit: cover;
}
.best_phone_content .phone_details_content .phone_photo_sec .form-check label {
    font-size: 18px;
    font-weight: 600;
    color: #3C3C3C;
}

.best_phone_content .phone_details_content .product_text_content .title_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.best_phone_content .phone_details_content .product_text_content .title_price .title {
    text-transform: none;
}
.best_phone_content .phone_details_content .product_text_content .title_price .title:hover {
    color: #5c5d60;
}

.best_phone_content .phone_details_content .product_text_content .title_price .price {
    margin: 0;
    font-size: 24px;
    color: #3c3c3c;
    font-weight: 600;
}


.best_phone_content .phone_details_content .product_text_content .score_sec {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    align-items: center;
}

.best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings {
    display: inline-flex;
    /* width: 100%; */
}

.best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings .number {
    width: auto;
}

.best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings .ratings {
    display: flex;
    width: 100%;
    align-items: center;
    margin-left: 12px;
}

.best_phone_content .phone_details_content .product_text_content .score_sec .feature_storage {
    margin: 0;
    margin: 0;
    color: #fff;
    font-size: 14px;
    padding: 6px 10px;
    background: #181818;
}

.best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings .ratings .text_content {
    display: block;
    width: 100%;
}

.best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings .ratings .text_content span.ratings_count {
    font-size: 17px;
    font-weight: 600;
}
.best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings .ratings .text_content span {
    font-size: 14px;
    margin-right: 0;
    margin-left: 5px;
    font-weight: 600;
}
.best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings .ratings .text_content .number {
    font-size: 13px;
    color: #3c3c3c;
}
.best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings .ratings .text_content .ratings_number {
    font-size: 13px;
    color: #3c3c3c;
    margin: 0;
    display: flex;
    align-items: center;
}
.best_phone_content .phone_details_content .product_text_content .specifications_sec {
    padding: 6px 10px;
    border-radius: 0;
    background: #fff;
    /*height: 100%;
    */margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}


.best_phone_content .phone_details_content .phone_photo_sec .form-check input {
    width: 20px;
    height: 20px;
    float: left;
    border: 1px solid rgb(110 105 105);
    border-radius: 0;
    margin-right: 10px;
    position: relative;
    top: 0px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.best_phone_content .phone_details_content .phone_photo_sec .form-check-input:checked {
    background-color: #181818;
    border-color: #181818;
}

.pros_cons_content_sec.show .pros_more {
    display: none;
}

.pros_cons_content_sec.show  .cons_more {
    display: flex;
}
/* .best_phone_content .phone_details_content .product_text_content .title_price .title:hover {
    color: #2e2e2e;
}
.best_phone_content .phone_details_content .product_text_content .specifications_sec:after {
    content: "";
    left: 0;
    position: absolute;
    height: 6px;
    bottom: 15%;
    background: #C4C2C2;
    width: 0%;
    transition: all 0.1s ease-in-out;
    z-index: -1;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
} */
.best_phone_content .phone_details_content .product_text_content .title_price .title:hover:after {
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    width: 100%;
}
.best_phone_content .phone_details_content .product_text_content .product_specifications {
    padding: 16px;
    margin-top: 12px;
}

.best_phone_content .phone_details_content .product_text_content .specifications_sec .specifications_content {
    margin: 0;
    align-items: center;
}

.best_phone_content .phone_details_content .product_text_content .specifications_sec .specifications_content .icon {
    width: 30px;
    flex: 0 0 30px;
}
.best_phone_content .phone_details_content .product_text_content .specifications_sec .specifications_content .icon svg {
    width: 100%;
    height: auto;
}
.best_phone_content .phone_details_content .product_text_content .specifications_sec .specifications_content .text_content .des {
    font-size: 13px;
    line-height: 15px;
}
/* Best Phone Content */

.m_sort_content_sec, .m_filter_content_sec, .filter_sort {
    display: none;
}

/****==== Phone Finder Page  ====****/



/****==== Ranking Page  ====****/

.smart_phone_table {
    margin-bottom: 100px;
}

.table_ranking_wrapper .top_sec .filter_form_sec .filter_form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    padding: 0;
}

.table_ranking_wrapper .top_sec .filter_form_sec .filter_form label {
    font-size: 19px;
    margin-right: 10px;
    font-weight: 600;
}
.table_ranking_wrapper .top_sec .filter_form_sec .filter_form label img {
    width: 26px;
}

.table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group {
    width: 16%;
    margin-right: 18px;
}
.table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group .dropdown button.btn.btn-primary.dropdown-toggle {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 6px 4px;
    color: #3c3c3c;
    font-weight: 600;
    border: 1px solid #eaeaea;
}

.table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group input[type="button"] {
    width: 100%;
    padding: 7px 8px;
    border-radius: 6px;
    border: none;
    background: #3c3c3c;
    color: #fff;
    text-transform: capitalize;
}
.filter_form_sec .dropdown-menu {
    padding: 10px !important;
}

.filter_form_sec .dropdown-menu label {
    font-size: 14px !important;
}
.filter_form_sec .dropdown-menu .form-check {
    margin-bottom: 11px !important;
}

.filter_form_sec {
    margin-bottom: 30px;
}

.filter_form_sec .select_item_sec {
    margin-bottom: 10px;
    /* margin-top: 30px; */
    border-top: 1px solid #eaeaea;
    padding-top: 11px;
}

.table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.year {
    width: 12.2%;
}

.filter_form_sec .select_item_sec a {
    padding: 9px 8px;
    color: #3c3c3c;
    font-weight: 600;
    border: 1px solid #eaeaea;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 9px;
    background: #f8f9fa;
    position: relative;
}
.filter_form_sec .select_item_sec a i {
    font-size: 11px;
    color: #878787;
    margin-left: 10px;
}

.table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.brand {
    width: 12.2%;
}

.table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.brand label {
    width: 100%;
    margin: 0;
}

.table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.brand label img {
    width: 18px;
    margin-right: 8px;
}

.table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.brand input {
    position: relative;
    top: 1px;
}
.smart_phone_table .nav-tabs {
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    justify-content: center;
}

.smart_phone_table .nav-tabs li {
    margin-right: 16px;
}

.smart_phone_table .nav-tabs li .nav-link {
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    color: #464646;
    font-weight: 600;
    padding: 11px 50px;
    font-size: 16px;
    line-height: 16px;
    border: none;
    border-radius: 0;
    position: relative;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
/* .smart_phone_table .nav-tabs li .nav-link:hover {
   color: #fff;
} */
.smart_phone_table .nav-tabs li .nav-link.active {
    /* background: #212121;
    color: #fff; */
}
.smart_phone_table .nav-tabs li .nav-link:hover:before, .smart_phone_table .nav-tabs li .nav-link.active:before {
    width: 100%;
}
.smart_phone_table .nav-tabs li .nav-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #212121;
    width: 0%;
    transition:0.2s ease-in 0.5s;
    -webkit-transition:0.2s ease-in 0.5s;
    -moz-transition:0.2s ease-in 0.5s;
    -ms-transition:0.2s ease-in 0.5s;
    -o-transition:0.2s ease-in 0.5s;
    margin: auto;
    left: 0;
    right: 0;
}




/* Ranking Table */

.ranking_table_sec .ranking_table th.camera.active_table.active, .ranking_table_sec .ranking_table td.active_table.active {
    background: #f8f8f8;
}
.ranking_table_sec .ranking_table {
    width: 100%;
    background: #fff;
    border-radius: 15px;
}

.ranking_table_sec .ranking_table th {
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    padding: 17px 10px;
    cursor: pointer;
}

.ranking_table_sec .ranking_table th.table_title {
    text-transform: capitalize;
    font-weight: 400;
    font-style: italic;
    color: #c4c2c2;
}

.ranking_table_sec .ranking_table td {
    text-align: center;
}
.ranking_table_sec .ranking_table tr td {
    padding: 12px 10px;
    font-size: 16px;
    color: #3c3c3c;
    border-bottom: 1px solid #f5f2f2;
    border-top: 1px solid #f5f2f2;
}
.ranking_table_sec .ranking_table tr:nth-child(2n - 1) td {
    background: #fbfbfb;
}

.ranking_table_sec .ranking_table tr td a {
    color: #3c3c3c;
    font-weight: 600;
}
.ranking_table_sec .ranking_table tr td a.price {
    font-style: italic;
    color: #c4c2c2;
    font-weight: 400;
}
.ranking_table_sec .ranking_table tr td.number {
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
}
.ranking_table_sec {
    background: #F8F8F8;
    padding: 30px;
    border-bottom: 2px solid #F2F2F2;
    border-radius: 15px;
    text-align: center;
}

.ranking_table_sec .view_btn {
    margin-top: 40px;
    padding: 15px 40px;
    font-size: 16px;
}
/* Ranking Table */


/****==== Ranking Page  ====****/

 /****==== Compare Page  ====****/

 /* Compare Mobile */
 .compare_mobile_sec {
    text-align: center;
}
.compare_mobile_sec .container {
    background: #F8F8F8;
    padding: 20px 30px;
    border-bottom: 2px solid #F2F2F2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 0;
}



.compare_mobile_sec .search_compare_wrapper {
    padding: 20px;
    border: 1px solid #b0d2f34d;
    background: #fff;
    text-align: center;
    height: 100%;
}
.compare_mobile_sec .search_compare_wrapper .compare_search span.select2.select2-container {
    text-align: left;
    padding: 0;
}

.compare_mobile_sec .search_compare_wrapper .compare_search span.select2.select2-container span.select2-selection--single {
    height: 40px;
    border-radius: 8px;
}

.compare_mobile_sec .search_compare_wrapper .compare_search span.select2.select2-container span.select2-selection--single span.select2-selection__rendered {
    line-height: 39px;
    color: #3c3c3c;
    padding: 0 16px 0 30px;
}

.compare_mobile_sec .search_compare_wrapper .compare_search span.select2.select2-container span.select2-selection--single span.select2-selection__arrow {
    height: 100%;
}

.compare_mobile_sec .search_compare_wrapper  .compare_search_sec {
    position: relative;
}

.compare_mobile_sec .search_compare_wrapper .compare_search_sec .search_icon {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    left: 7px;
}

.compare_mobile_sec .search_compare_wrapper .compare_search_sec .search_icon svg {
    color: #3c3c3c;
    width: 17px;
}

.compare_mobile_sec .search_compare_wrapper .search_add_sec .add_sec .add_ico {
    margin: 28px auto;
}

.compare_mobile_sec .search_compare_wrapper .search_add_sec .add_sec .add_ico svg {
    width: 100px;
}

.compare_mobile_sec .search_compare_wrapper .search_add_sec .add_sec span {
    color: #3c3c3c;
    font-weight: 700;
    font-size: 18px;
}


.compare_mobile_sec .view_btn.compare_btn {
    margin: 50px auto 0;
    font-size: 18px;
    padding: 12px 30px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #3c3c3c;
}

.compare_mobile_sec .search_compare_grid {
    width: 23%;
    margin: 0 6px;
}


.compare_search {
    position: relative;
}
.compare_search .compare_field {
    padding: 6px 28px;
    border-radius: 0;
}

.compare_search input:focus {
    box-shadow: none;
    border: 1px solid #eaeaea;
}

.compare_search input {
    padding: 7px 30px;
}

.compare_search .search-results {
    position: absolute;
    background: #fff;
    padding: 0;
    border: 1px solid #b3b3b3;
    border-radius: 5px;
    left: 0;
    right: 0;
}

.compare_search .search-results ul {
    padding: 0;
    text-align: left;
    margin: 0;
    list-style-type: none;
}

.compare_search .search-results ul li {
    margin-bottom: 0;
    font-size: 16px;
    padding: 7px;
    cursor: pointer;
}


.compare_mobile_sec .search_compare_check {
    width: 18%;
    display: none;
    align-items: center;
    background: #fff;
    padding: 20px;
    border: 1px solid #b0d2f34d;
    background: #fff;
    border-radius: 15px;
}
.compare_search .search-results ul li:hover {
    background: #3c3c3c;
    color: #fff;
}

section.compare_mobile_sec.hide_features .search_compare_check {
    display: flex;
    justify-content: center;
    align-items: center;
}
section.compare_mobile_sec.compare_mobile_header .search_compare_check .mobile_title_sec .m_title {
    margin: 0;
    font-size: 20px;
}
section.compare_mobile_sec .search_compare_check .mobile_title_sec .m_title {
    margin: 0;
    font-size: 18px;
}
section.compare_mobile_sec.hide_features .search_compare_grid {
    width: 19%;
}

.compare_mobile_sec .search_compare_check label {
    text-align: left;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 400;
    color: #070707;
    margin-left: 18px;
}

.compare_mobile_sec .search_compare_check input {
    width: 30px;
    height: 24px;
}

section.compare_mobile_sec.hide_features .search_compare_check .form-check {
    display: flex;
    align-items: center;
}

.compare_mobile_sec.hide_features .search_compare_wrapper.search_active {
    padding: 0;
    border: none;
}
.compare_mobile_sec .search_compare_wrapper .search_product .latest_phone {
    height: 204px;
}

.compare_mobile_sec .search_compare_wrapper .search_product .latest_phone img {
    height: 180px;
}

.compare_mobile_sec.hide_features .search_compare_wrapper .text_content .product_title {
    font-size: 14px;
    margin-bottom: 10px;
}

.compare_mobile_sec.hide_features .search_compare_wrapper .text_content .price_sec .price {
    font-size: 18px;
}

 /* Compare Mobile */




 .popular_comparisons_sec .comparisons_product {
    display: flex;
    position: relative;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(176, 210, 243, 0.3);
    border-image: initial;
    padding: 15px;
    border-radius: 15px;
    background: #fff;
}
.popular_comparisons_sec .comparisons_product:before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
    width: 90%;
    margin: auto;
    height: 88%;
}
.popular_comparisons_sec .comparisons_product:hover:before {
    background: linear-gradient(270deg, rgba(132, 58, 181, 0.70) 0.8%, rgba(226, 48, 108, 0.70) 39.2%, rgba(253, 29, 29, 0.70) 69.64%, rgba(252, 175, 69, 0.70) 97.74%);
    filter: blur(22.170000076293945px);
}
/* .popular_comparisons_sec .comparisons_product:hover {
    border: 1px solid #e66b39;
} */

  

.popular_comparisons_sec .comparisons_product .comparisons_phone {
    border-radius: 15px;
    padding: 5px;
}
.popular_comparisons_sec .comparisons_product .comparisons_content {
    width: 46%;
    flex: 0 0 46%;
    margin: 0 6px;
}


.comparisons_content .text_content .product_title {
    margin: 0;
    color: #46474A;
    font-size: 18px;
    margin: 14px auto 0;
    line-height: 1.8;
    font-weight: 600;
}
.popular_comparisons_sec .comparisons_product .vs_icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    margin: auto;
    width: 70px;
}
.popular_comparisons_sec .comparisons_product .vs_icon svg {
    width: 70px;
    height: 70px;
}




 /* compare mobile sec header */

 /* .product_details.compare_mobiles_page.active .compare_mobile_header {
    position: fixed;
    top: 110px;
} */

.title.compare_title {
    font-weight: 400;
    font-style: italic;
    line-height: 42px;
    margin-bottom: 15px;
    text-transform: none;
}

.title.compare_title span {
    font-weight: 700;
}

.title.compare_title span:after {
    display: none;
}
.compare_mobile_sec.compare_mobile_header {
    position: absolute;
    top: 114px;
    left: 0;
    right: 0;
    z-index: 9;
    display: none;
}
.compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header {
    display: block;
    position: fixed;
    top: 118px;
}

.compare_mobile_sec.compare_mobile_header .search_compare_wrapper {
    padding: 20px 20px;
    border: 1px solid #b0d2f34d;
    background: #fff;
    border-radius: 0;
    text-align: center;
    height: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.compare_search .compare_field:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}

.compare_mobile_sec.compare_mobile_header .container {
    max-width: 1000px;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_add_sec {
    display: none;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active {
    padding: 0;
    height: auto;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .latest_phone {
    width: 34%;
    padding: 4px;
    overflow: hidden;
    float: left;
    border-radius: 7px;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec {
    align-items: center;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content {
    width: 65%;
    overflow: hidden;
    margin-top: 0;
    padding-left: 6px;
}

.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content .price {
    font-size: 13px;
    margin: 0;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content .product_title {
    font-size: 13px;
    text-align: left;
    margin-bottom: 6px;
    width: 80%;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec .product_score img {
    position: relative;
    width: 10px !important;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec .product_score .text_content span {
    font-size: 10px;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .product_score .text_content {
    padding: 0;
    width: auto;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .close_icon {
    right: auto;
    top: 3px;
    right: 5px;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .close_icon svg {
    width: 16px;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec .product_score {
    width: 46px;
    flex: 0 0 46px;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .close_icon .search_product .close_icon svg {
    width: 16px;
}
.compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .container .search_compare_grid .search_product:before {
    height: 27%;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product {
    display: block;
    border-radius: 0px;
    padding: 8px 10px;
    height: 100px;
    border: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper .compare_search span.select2.select2-container span.select2-selection--single span.select2-selection__rendered {
    line-height: 39px;
    color: #3c3c3c;
    padding: 0 16px 0 30px;
    font-size: 14px;
}
.compare_mobile_sec.compare_mobile_header .select2-results__option {
    padding: 6px;
    font-size: 14px;
    padding: 2px 7px;
}
.compare_mobile_sec.compare_mobile_header .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #3c3c3c;
}



.compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .container {
    max-width: 1300px;
}

.compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_check {
    padding: 0 10px;
    border-radius: 8px;
}
.compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_check .form-check label {
    font-size: 18px;
}
 /* compare mobile sec header */




 /* Search Product */
 .search_product {
    padding: 15px;
    display: block;
    border-radius: 15px;
    position: relative;
}

.compare_mobile_sec .search_compare_wrapper .search_product {
    display: none;
}
.compare_mobile_sec .search_compare_wrapper.search_active .search_content_sec {
    display: none;
}
.compare_mobile_sec .search_compare_wrapper.search_active .search_product {
    display: block;
}

.compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone {
    height: 90px;
}   
.compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone img {
    height: 80px;
}
.search_product .latest_phone {
    height: 194px;
}
.search_product .latest_phone img {
    height: 170px;
    object-fit: cover;
}

.search_product:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
    width: 90%;
    margin: auto;
    height: 88%;
}
.search_product:hover:before {
    background: linear-gradient(270deg, rgb(191 191 191) 0.8%, rgb(127 123 123) 39.2%, rgb(255 255 255) 69.64%, rgb(197 196 196) 97.74%);
    filter: blur(22.170000076293945px);
}
 /* .search_product:hover {
    border: 1px solid #e66b39;;
} */

.search_product .latest_phone {
    padding: 11px;
    border-radius: 15px;
}
.search_product .text_content {
    margin-top: 15px;
}

.search_product .text_content .product_title {
    font-size: 20px;
    color: #46474a;
    margin-bottom: 14px;
}

.search_product .text_content .price {
    font-size: 28px;
    color: #161616;
    font-weight: 700;
    margin: 0;
}
.search_product .close_icon {
    position: absolute;
    right: 10px;
    top: 10px;
}

.compare_mobile_sec .search_compare_wrapper.search_product .search_content_sec {
    display: none;
}

.search_product .text_content {
    margin-top: 15px;
    position: relative;
}

.search_product .text_content .product_title {
    font-size: 16px;
    color: #46474A;
    margin-bottom: 14px;
    text-align: left;
}


.search_product .text_content .price {
    font-size: 24px;
    color: #161616;
    font-weight: 700;
    margin: 0;
}
.search_product .price_sec {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.search_product .price_sec .device_score {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}
.latest_product .price_sec img {
    width: 40px;
}
 /* Search Product */


 .comparisons_info {
    margin-top: 60px;
}

.comparisons_info .comparisons_accordion .accordion-item {
    margin-bottom: 60px;
    border-radius: 0;
    border: 1px solid #b0d2f34d;
    padding: 0 30px;
    position: relative;
    z-index: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.comparisons_info .comparisons_accordion .accordion-button {
    padding: 30px 0;
    background: none;
    box-shadow: none;
    font-size: 18px;
    color: #3C3C3C;
    font-weight: 600;
}
.comparisons_info .comparisons_accordion .accordion-item .accordion-body {
    border-top: 1px solid #eaeaea;
    padding: 30px 0;
}
.comparisons_info .comparisons_accordion .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}
.comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table {
    width: 100%;
}

.comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td {
    padding: 16px 24px;
    border: 1px solid #eaeaea;
    font-weight: 500;
    font-size: 16px;
    width: 20%;
}

.comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td:first-child {
    background: #f8f8f8;
    width: 17%;
}

.product_details.compare_mobiles_page .new_comparisons_sec {
    background: #fff;
    margin: 0;
    padding-top: 0;
}
.product_details.compare_mobiles_page .new_comparisons_sec .sub_title {
    color: #636261;
    font-size: 18px;
    text-transform: capitalize;
}   

 /****==== Compare Page  ====****/


 /****==== Brand Page  ====****/
 .all_brand_page {
    margin-top: 114px;
}
 .brand_sec.all_brand {
    margin-top: 70px;
}
.brand_sec {
    margin-bottom: 60px;
}
.brand_sec .top_sec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.brand_sec.all_brand .brand_slider {
    padding: 0 64px;
}
.brand_sec.all_brand .brand_slider .owl-nav button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/h_l_arrow.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.brand_sec.all_brand .owl-nav {
    display: block;
}

.brand_sec.all_brand .brand_slider .owl-carousel .owl-nav {
    display: block;
}
/* .brand_sec.all_brand .brand_slider .owl-nav button:hover {
    background: #090909;
} */

.brand_sec.all_brand .brand_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
    background-image: url(../images/h_r_arrow.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.brand_sec.all_brand .brand_slider .owl-nav button span {
    font-size: 25px;
    height: 20px;
    width: 20px;
    line-height: 17px;
    display: none;
}
.brand_sec.all_brand .brand_slider .owl-nav.disabled {
    display: block;
}


.brand_slider .brand_content_sec {
    border: 1px solid #eaeaea;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    height: 150px;
    padding: 17px;
}


.brand_content_sec.brand_active {
    position: relative;
}

.brand_content_sec.brand_active {
    position: relative;
    border: 1px solid #e66b39;
}

.brand_content_sec.brand_active .tick_icon {
    /* position: absolute; */
    right: 13px;
    width: 18px;
    top: 34px;
    height: 18px;
    border-radius: 50%;
    background: #1caf0f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.brand_content_sec.brand_active .tick_icon svg {
    width: 11px;
}

.brand_content_sec.brand_active .tick_icon svg path {
    fill: #ffffff;
    width: 20px;
}

.brand_slider .brand_content_sec .barand_wrapper .close_icon {
    position: absolute;
    right: 7px;
    top: 7px;
    background: #ff0000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.brand_slider .brand_content_sec .barand_wrapper .close_icon svg {
    width: 15px;
}

.brand_slider .brand_content_sec .barand_wrapper .close_icon svg path {
    fill: #ffffff;
}
.brand_slider .brand_content_sec .barand_wrapper .brand_info {
    margin-left: 20px;
}
.brand_slider .brand_content_sec .barand_wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}
.brand_slider .brand_content_sec .barand_wrapper .brand_icon {
    width: 98px;
}

.brand_slider .brand_content_sec .barand_wrapper.brand_info {
    text-align: right;
}

.brand_slider .brand_content_sec .barand_wrapper .brand_info .count {
    font-size: 25px;
    margin-bottom: 12px;
    color: #e66b39;
    display: flex;
    align-items: center;
}
.brand_slider .brand_content_sec .barand_wrapper .brand_info .count span {
    margin-right: 8px;
}
.brand_slider .brand_content_sec .barand_wrapper.brand_info .view_btn {
    font-size: 14px;
    border: none;
    padding: 0;
}
.brand_sec .brand_slider .brand_content .barand_wrapper

.brand_sec .brand_slider .brand_content  .barand_wrapper :hover .brand_icon {
    display: block;
}

.brand_slider .brand_content_sec:hover {
    background: #ffffff;
    border: 1px solid #e66b39;
}

/* .brand_sec .brand_content_sec .brand_content img.brand_icon_hover {
    display: none;
}

.brand_sec .brand_content_sec .brand_content:hover .brand_icon {
    display: none;
}
.brand_sec .brand_content_sec .brand_content:hover img.brand_icon_hover {
    display: block;
}
.brand_sec .brand_content_sec .brand_content {
    border: 1px solid #eaeaea;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    height: 150px;
    position: relative;
}

.brand_sec .brand_content_sec .brand_content img {
    object-fit: cover;
    height: 150px;
}

.brand_sec .brand_content_sec .brand_content .brand_info {
    position: absolute;
    bottom: -42%;
    left: 0;
    right: 0;
    background: #000000b0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    transition: all 0.3s ease-in 0.1s;
    -webkit-transition: all 0.3s ease-in 0.1s;
    -moz-transition: all 0.3s ease-in 0.1s;
    -ms-transition: all 0.3s ease-in 0.1s;
    -o-transition: all 0.3s ease-in 0.1s;
}

.brand_sec .brand_content_sec .brand_content:hover .brand_info {
    bottom: 0;
    transition: all 0.3s ease-in 0.1s;
    -webkit-transition: all 0.3s ease-in 0.1s;
    -moz-transition: all 0.3s ease-in 0.1s;
    -ms-transition: all 0.3s ease-in 0.1s;
    -o-transition: all 0.3s ease-in 0.1s;
} */

.brand_sec .brand_content_sec .brand_content .brand_info .count {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.brand_sec .brand_content_sec .brand_content .brand_info .view_btn {
    font-size: 12px;
    padding: 5px 7px;
}

.brand_sec .brand_content_sec .brand_content .brand_info .view_btn svg {
    width: 14px;
    margin-left: 5px;
}

.brand_sec .brand_content_sec .brand_content .brand_info .count span {
    font-size: 34px;
}

.pagination_sec .pagination {
    margin: 0;
}

.pagination_sec .pagination .page-item {
    margin-right: 12px;
}

.pagination_sec .pagination .page-item a {
    border-radius: 5px;
    padding: 6px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
}
.pagination_sec .pagination .page-item a:hover {
    background: #0a0a0a;
    color: #fff;
}


.brand_sec.all_brand .brand_content_sec {
    display: flex;
    border: 1px solid #eaeaea;
    border-radius: 0;
    padding: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.brand_sec.all_brand .brand_content_sec .barand_wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
}


.brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_info {
    margin-left: 20px;
}

.brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_icon {
    width: 64px;
}

.brand_sec.all_brand .brand_content_sec .barand_wrapper.brand_info {
    text-align: right;
}

.brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_info .count {
    font-size: 22px;
    margin-bottom: 12px;
    color: #080808;
    display: flex;
    align-items: center;
}
.brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_info .view_btn {
    font-size: 12px;
    padding: 5px 10px;
}
.brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_info .count span {
    margin-right: 8px;
}
.brand_sec.all_brand .brand_content_sec .barand_wrapper.brand_info .view_btn {
    font-size: 14px;
    border: none;
    padding: 0;
}
 /****==== Brand Page  ====****/






.footer_sec {
    background-color: #1A1A1A;
    background-image: url(../images/footer_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}
.footer_sec .footer_top {
    padding: 80px 0;
}
.footer_sec .f_about {
    padding-right: 80px;
}

.footer_sec .f_about .f_logo {
    display: block;
    width: 180px;
}
.footer_sec .f_about .des {
    color: #A1A1A1;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
}


.footer_sec .f_about .f_social_content .f_social {
    display: flex;
}

.footer_sec .f_about .f_social_content .f_social a {
    width: 48px;
    margin-right: 20px;
    background: #3C3C3C;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_sec .f_about .f_social_content .f_social a img {
    width: 30px;
}


.footer_sec .f_link .f_title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer_sec .f_link .f_nav_list {
    padding: 0;
}
.footer_sec .f_link .f_nav_list li {
    margin-bottom: 14px;
}

.footer_sec .f_link .f_nav_list a {
    color: #aeaeaf;
    font-size: 14px;
    font-weight: 300;
    font-weight: 600;
}
.footer_sec .f_about .f_social_content .f_social a img.icon_hover {
    display: none;
}

.footer_sec .f_about .f_social_content .f_social a:hover {
    background: #fff;
}
.footer_sec .f_about .f_social_content .f_social a:hover img {
       display:none;
}
.footer_sec .f_about .f_social_content .f_social a:hover img.icon_hover {
       display:block;
}
.footer_sec .f_link .f_nav_list a:hover {
    color: #fff;
}
.f_link .f_address .address {
    display: flex;
    align-items: self-start;
}

.f_link .f_address .address img {
    width: 18px;
    flex: 0 0 18px;
    margin-right: 27px;
    margin-top: 4px;
}

.f_link .f_address .address span {
    color: #fff;
    font-size: 20px;
}


.f_address a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    margin: 30px auto;
    font-weight: 300;
}

.f_address a img {
    width: 19px;
    margin-right: 20px;
}


.footer_sec .f_bottom .des {
    margin: 0;
    text-align: center;
    color: #A1A1A1;
    font-weight: 300;
    font-size: 14px;
}



.footer_sec .f_bottom .f_bottom_menu {
    padding: 0 0 40px;
    display: flex;
    margin: 0 0 40px;
    justify-content: center;
    border-bottom: 1px solid #3a3a3a;
}

.footer_sec .f_bottom .f_bottom_menu li  a {
    color: #fff;
    margin: 0 22px;
    font-size: 18px;
}


/* Footer New Css */
.footer_new {
    background: #181818;
    padding: 30px 0;
    text-align: center;
    margin-top: 190px;
}
.footer_new .footer-socials {
    list-style-type: none;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #4a4a4a;
}

.footer_new .footer-socials li {
    margin: 0 30px 30px;
}

.footer_new .footer-socials li a {
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
}
.footer_new .footer-socials li a:hover  {
    color: #c5c5c5;
}

.footer-logo-copyright .footer-menu {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.footer-logo-copyright .footer-menu li {
    padding: 0 15px;
    list-style-type: none;
}
.footer-logo-copyright .footer-menu a {
    color: #999;
    font-weight: 600;
}
.footer-logo-copyright .footer-menu a:hover  {
    color: #c5c5c5;
}
.footer_new .footer-socials li a i {
    font-size: 14px;
    margin-right: 10px;
}
.footer_new .footer_copyright {
    margin-top: 12px;
}
.footer_new .footer_copyright p {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}
/* Footer New Css */

/*For review Popup*/
.reviewModal .modal-body .iconReview {
    display: block;
    width: 80px;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin: 0 auto;
    padding: 11px;
    background: #fff;
}

.rating_modal .btn_sec .reset_button:hover {
    border: 1px solid #212121;
    color: #fff;
    background: #404040;
}

.reviewModal .modal-body {
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: 0 28px;
    position: relative;
    z-index: 1;
}

.reviewModal .modal-body:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 40px;
    background: #f5d77c;
    z-index: -1;
    border-radius: 7px 7px 0px 0px;
}

.reviewModal .btn-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    line-height: 30px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    background-size: 42% 42%;
}

.reviewModal .btn_sec button {
    margin: 0 0 10px !important;
    width: 100%;
    height: 40px;
    line-height: 38px;
    padding: 0 !important;
    text-align: center !important;
    display: block;
    /*border-radius: 50px !important;*/
    overflow: hidden;
    /*font-weight: 100;
    font-size: 14px !important;*/
}

.reviewModal .modal-body .rating label {
    font-size: 50px;
    padding: 0 5px;
}

.reviewModal .modal-body .rating {
    padding: 20px 0 30px;
}
.dropdown-menu:not(.dropdown-menu.show) {
    display: none !important;
}

.reset_button.btnOk {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    border-radius: 5px;
    background: #2c2d31;
    color: #fff;
}

.msgBox {
    padding-top: 40px;
}
input#email:focus {
    outline: none;
    box-shadow: none;
    border-color: unset;
}
/*For review Popup*/


/*****===== News Blog Page =====*****/
.news_blog_page .best_info .title_content {
    position: relative;
}

.news_blog_page .best_info .title_content .title {
    display: inline-block;
    padding-bottom: 20px;
    background: #fff;
    padding-right: 20px;
}

.news_blog_page .best_info .title_content:before {
    content: "";
    background: #e7e7e7;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}


/* News Tab Sec */
.product_details.news_blog_page .news_tab_sec .container {
    padding: 24px;
    border-radius: 15px;
}
.product_details.news_blog_page .news_tab_sec .container {
    padding-top: 0;
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    margin-bottom: 14px;
    align-items: center;
}
.news_tab_sec .category_tab_slider .owl-nav {
    display: none;
}


.product_details.news_blog_page .news_tab_sec .container .trending_title {
    display: flex;
    align-items: center;
}


/* Category Link Sec */
.category_link_sec .container {
    margin-bottom: 30px !important;
}
.category_link_sec .category_link_content {
    width: 100%;
    display: flex;
    border: 1px solid #eaeaea;
    padding: 15px 20px;
    border-radius: 0;
    align-items: center;
    flex-wrap: wrap;
}

.category_link_sec .category_link_content .trending_icon {
    width: 10%;
    margin-right: 14%;
    flex: 0 0 10%;
}
.category_link_sec .category_link_content .trending_icon svg {
    width: 100%;
    height: auto;
}
.category_link_sec .category_link_content .category_link {
    width: 76%;
}

.category_link_sec .category_link_content .category_link a {
    color: #000000 !important;
    font-weight: 600;
    font-size: 14px;
    margin-right: 0;
    display: block;
    background: #f7f7f7 !important;
    padding: 8px 15px;
    border: 1px solid #bfbfbf;
    text-align: center;
}
.category_link_sec .category_link_content .category_link a:last-child {
    margin-right: 0;
}
.category_link_sec .category_link_content .category_link a.active, .category_link_sec .category_link_content .category_link a:hover {
    color: #212121;
    background: #000000 !important;
    color: #fff !important;
    position: relative;
}
/* Category Link Sec */


/* .product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav.disabled, .product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin-top: 0;
}

.product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav.disabled button.owl-prev, .product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav button.owl-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1%;
    height: 40px;
}
.product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav.disabled button.owl-next, .product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav button.owl-next  {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2%;
    height: 40px;
} */
.product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav.disabled button:hover, .product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav button:hover {
    background: none;
}
.product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav.disabled button span, .product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav button span  {
    font-size: 30px;
    line-height: 5px;
}
.product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav.disabled button span:hover, .product_details.news_blog_page .news_tab_sec .nav-tabs .owl-nav button span:hover {
   color: #415CE7;
}
.product_details.news_blog_page .news_tab_sec .nav-tabs {
    justify-content: center;
}


.product_details.news_blog_page .news_tab_sec .nav-tabs button {
    border: none;
    margin: 0;
    color: #C4C2C2;
    font-weight: 600;
    font-size: 18px;
    padding: 0 20px 0;
}
.blog_tab_sec .nav-tabs .nav-link.active, .blog_tab_sec .nav-tabs .nav-link:hover {
    color: #321926;
    position: relative;
    background: 0 0;
}

.product_details.news_blog_page .news_tab_sec .nav-tabs button.active {
    color: #212121;
    background: none;
    position: relative;
}

.product_details.news_blog_page .news_tab_sec .nav-tabs button:hover {
    color: #212121;
}
.product_details.news_blog_page .news_tab_sec .nav-tabs button.active:after {
    /* background: #212121; */
    position: absolute;
    content: "";
    bottom: 0;
    height: 2px;
    left: 0;
    right: 0;
    width: 100%;
}
/* .product_details.news_blog_page .news_tab_sec .tab_blog_content {
    margin-top: 30px;
} */
.product_details.news_blog_page .news_tab_sec .nav-tabs {
    justify-content: center;
    width: 88%;
    /* margin-left: auto; */
    border-bottom: none;
    padding-top: 4px;
}
.product_details.news_blog_page .news_tab_sec li.nav-item {
    text-align: center;
    display: flex;
}
.product_details.news_blog_page .news_tab_sec .tab_blog_content .title {
    text-align: left;
    margin-bottom: 40px;
    display: block;
}


.product_details.news_blog_page .news_tab_sec .container .trending_title .title {
    background: var(--Blue-Orange, linear-gradient(90deg, #F56040 24.08%, #415CE7 111.24%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
}

.product_details.news_blog_page .news_tab_sec .container .trending_title .icon {
    margin-right: 6px;
    width: 30%;
}

.product_details.news_blog_page .news_tab_sec .container .trending_title .icon svg {
    background: var(--Blue-Orange, linear-gradient(90deg, #F56040 24.08%, #415CE7 111.24%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product_details.news_blog_page .news_tab_sec .container .trending_title .icon svg path {
    background: var(--Blue-Orange, linear-gradient(90deg, #F56040 24.08%, #415CE7 111.24%));
    /* background-clip: text; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}
.product_details.news_blog_page .tab_blog_content .about_mobile_photo {
	background: #F8F8F8;
	padding: 40px 40px 20px;
	/* margin-top: 30px; */
	border-radius: 0 0 15px 15px;
	border-top: 1px solid #e7e7e7;
	width: 100%;
}


.product_details.news_blog_page .tab_blog_content .latest_article_sec .latest_article .text_content .bottom_sec  time {
    padding-left: 6px;
    margin-left: 6px;
    font-size: 13px;
}
.product_details.news_blog_page .tab_blog_content .container {
    padding-top: 0;
}
.product_details.news_blog_page .tab_blog_content .about_mobile_photo .latest_article_sec {
    margin-top: 0;
    background-image: none;
}
.product_details.news_blog_page  .latest_article_sec .latest_article {
    background: #fff;
    height: 100%;
}
.product_details.news_blog_page .tab_blog_content .about_mobile_photo .latest_article_sec .latest_article .text_content .bottom_sec {
    justify-content: start;
}

.product_details.news_blog_page .latest_article .article_photo .text_content {
    position: absolute;
    bottom: 0;
    /* display: flex; */
    left: 0;
    right: 0;
    padding: 0 17px 12px;
}
.product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .text_content .title {
    margin-bottom: 15px;
}


.product_details.news_blog_page .latest_article .article_photo .text_content .blog_title {
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product_details.news_blog_page .latest_article .text_content .bottom_sec .date {
    color: #fff;
    font-size: 15px;
}
.product_details.news_blog_page .latest_article .text_content .bottom_sec .read {
    color: #fff;
    text-transform: capitalize;
}
.product_details.news_blog_page .latest_article .text_content .bottom_sec {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
    align-items: center;
}
.product_details.news_blog_page .latest_article .article_photo {
    position: relative;
    display: block;
    overflow: hidden;
}
.product_details.news_blog_page .latest_article .post_tag {
    position: absolute;
    color: #e2b978;
    background: #321926;
    padding: 8px 10px;
    margin: 0;
    font-size: 13px;
    top: 5%;
    right: 3%;
    border-radius: 3px;
}
.product_details.news_blog_page .latest_article .text_content .bottom_sec .read:hover {
    color: #FF7722;
}
.product_details.news_blog_page .latest_article .text_content .bottom_sec time.entry-date {
    padding-left: 6px;
    font-size: 13px;
}

/* News Tab Sec */


.news_blog_page .latest_article_sec {
    margin-bottom: 0;
}
.news_blog_page .latest_article {
    padding: 15px;
}

.news_blog_page .latest_article .article_photo {
    height: 250px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.news_blog_page .latest_article .article_photo img {
    height: 250px;
    transition: transform 0.5s;
}
.news_blog_page .latest_article .article_photo:hover img {
    transform: scale(1.1);
}
.news_blog_page .latest_article .text_content .title {
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.news_blog_page .latest_article .text_content .bottom_sec {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
    align-items: center;
}

.news_blog_page .latest_article .text_content .bottom_sec span {
    font-size: 13px;
}
.latest_article_sec .latest_article:hover .text_content .title {
    color: #595858;
}
.product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list {
    padding: 20px 10px;
}

.product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article {
    padding: 13px 14px;
    margin: 0;
}
.product_details.news_blog_page .video_features_sec.latest_article_sec {
    margin: 0;
}

.product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content {
    width: 70%;
}

.product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content .bottom_sec {
    justify-content: start;
}

/* Video Sec */
.product_details.news_blog_page .video_features_sec .techwiser_video_sec {
    padding: 26px 30px;
}

.product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video {
    height: 220px;
}
.product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video img {
    height: 100%;
}

.product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video img.play_icon {
    height: auto;
}

.product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video {
    height: 166px;
}

.product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video img {
    height: 100%;
}

.product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video img.play_icon {
    height: auto;
}
/* Video Sec */

.product_details.news_blog_page.video_features_sec .techwiser_video_sec .video_content .video .category {
    font-size: 12px;
}
.product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .text_content .title {
    font-size: 18px;
    margin-bottom: 10px;
}

.product_details.news_blog_page  .latest_article_sec {
    margin-top: 0;
}

/* .product_details.news_blog_page .latest_article_sec .title {
    text-align: center;
} */
.product_details.news_blog_page .latest_article_sec {
    margin-top: 0;
}
.product_details.news_blog_page .latest_article_sec .latest_article .display_tag {
    top: 14px;
    left: 16px;
}
.product_details.news_blog_page .latest_article_sec .latest_article .display_tag.sub_tag {
    left: 78px;
    background: #fff;
    color: #181818;
}
.product_details.news_blog_page .latest_article_sec .latest_article .display_tag:after {
    display: none;
}
.news_details .article_photo {
    margin-bottom: 23px;
    border-radius: 0;
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.news_details .bottom_sec span {
    font-size: 15px;
    color: #585555;
    line-height: 12px;
    height: 10px;
    display: inline-block;
}
.product_details.news_blog_page .video_features_sec.latest_article_sec .view_btn {
    margin: 40px auto 20px;
}


.tag_box_sec {
    position: absolute;
    display: flex;
    top: 23px;
    left: 23px;
}

.tag_box_sec .display_tag {
    left: auto;
    position: relative;
    left: auto !important;
    top: auto !important;
    margin-right: 5px;
}

.tag_box_sec .display_tag.sub_tag {
    position: initial;
    left: auto;
}


/* Top News */
.top_news_sec {
    padding: 60px 0;
}

.top_news_sec .top_sec {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.product_details.news_blog_page .news_tab_sec .container .row {
	width: 100%;
}
.top_news_sec .top_news_blog {
	position: relative;
	border-radius: 0;
	overflow: hidden;
	width: 100%;
	display: block;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.top_news_sec .top_news_blog .tech_photo {
    height: 480px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.top_news_sec .top_news_blog .tech_photo:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(18, 18, 19, 0) 0%, #121213 100%);
    z-index: 1;
}
.top_news_sec .top_news_blog .date {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
}
.top_news_sec .top_news_blog .tech_photo img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.top_news_sec .top_news_blog:hover .tech_photo img {
    transform: scale(1.1);
}

.top_news_sec .top_news_blog .text_content {
    position: absolute;
    bottom: 0;
    padding: 17px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.top_news_sec .top_news_blog:hover .text_content {
    bottom: 2%;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.top_news_sec .top_news_blog .text_content .title {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin: 4px auto;
}
.top_news_sec .top_news_blog .text_content span {
    color: #fff;
    font-style: italic;
}

.top_news_sec .top_news_blog .text_content .display_tag {
    position: relative;
    display: inline-block;
    left: 0;
    top: 0;
}

.top_news_sec .top_news_blog .text_content .display_tag:after {
    display: none;
}

/* Top News */

/* Tech News Sec */
.tech_news_sec .title {
    margin-bottom: 50px;
}
.tech_news_sec .tech_news_content {
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.tech_news_sec .tech_news_content .tech_photo {
    height: 490px;
    display: block;
}
.tech_news_sec .tech_news_content .tech_photo img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.tech_news_sec .tech_news_content:hover .tech_photo img {
    transform: scale(1.1);
}

.tech_news_sec .tech_news_content .text_content {
    position: absolute;
    bottom: 0;
    padding: 0;
    z-index: 1;
}
.tech_news_sec .tech_news_content .tech_photo .top_sec {
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
}

.tech_news_sec .tech_news_content .tech_photo .top_sec .text_content {
    position: relative;
}
.tech_news_sec .tech_news_content .tech_photo .top_sec .text_content .name {
    color: #fff;
    font-size: 14px;
    margin: 0 0 5px;
}
.tech_news_sec .tech_news_content .tech_photo .top_sec .text_content .date {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.tech_news_sec .tech_news_content .text_content .top_sec {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    height: 70%;
}

.tech_news_sec .tech_news_content .text_content .top_sec .text_content {
    position: relative;
    padding: 0;
}

.tech_news_sec .tech_news_content .text_content .top_sec .user_photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.tech_news_sec .tech_news_content .text_content .top_sec .text_content .name {
    color: #fff;
    font-size: 14px;
    margin: 0 0 5px;
}

.tech_news_sec .tech_news_content .text_content .top_sec .text_content  .date {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.tech_news_sec .tech_news_content .text_content .bottom_text_content .title {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 0;
}
.tech_news_sec .tech_news_content .text_content .bottom_content {
    display: flex;
    justify-content: space-between;
    padding: 22px 20px;
    border-top: 1px solid #c9c9c9;
}


.tech_news_sec .tech_news_content .tech_photo:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.49) 77.08%, rgb(0 0 0 / 68%) 82.86%, rgb(0 0 0 / 71%) 95.31%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.tech_news_sec .tech_news_right .tech_news_blog .tech_photo .top_sec .text_content .name {
    color: #fff;
    font-size: 14px;
    margin: 0 0 5px;
}


.tech_news_sec .tech_news_right .tech_news_blog .tech_photo .top_sec .text_content .date {
    color: #fff;
    font-size: 14px;
    margin: 0;
}



.tech_news_sec .tech_news_content .text_content .bottom_content .views {
    color: #fff;
    margin: 0 4px;
    font-size: 12px;
}


.tech_news_sec .tech_news_content .text_content .bottom_content .views i {
    margin-right: 7px;
}

.tech_news_sec .tech_news_content .text_content .title_comment_sec .bottom_text_content {
    padding: 0px 20px 29px;
}
.tech_news_sec .tech_news_content .text_content .title_comment_sec {
    margin-top: 0px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.tech_news_sec .tech_news_content .text_content:hover .title_comment_sec {
    /* margin-top: -70px; */
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}


.tech_news_sec .tech_news_content .text_content .title_comment_sec .bottom_text_content .display_tag {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 10px;
    display: inline-block;
    margin-right: 2px;
}
.tech_news_sec .tech_news_content .text_content .title_comment_sec .bottom_text_content .display_tag.sub_tag {
    background: #fff;
    color: #181818;
}
.tech_news_sec .tech_news_content .text_content .title_comment_sec .bottom_text_content .display_tag:after {
    display: none;
}



.tech_news_sec .tech_news_right .tech_news_blog {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 236px;
    display: block;
}
.tech_news_sec .tech_news_right .tech_news_blog .tech_photo {
    height: 100%;
    display: block;
}

.tech_news_sec .tech_news_right .tech_news_blog .tech_photo img {
    height: 100%;
    transition: transform 0.5s;
    object-fit: cover;
}
.tech_news_sec .tech_news_right .tech_news_blog:hover .tech_photo img {
    transform: scale(1.1);
}
.tech_news_sec .tech_news_right .tech_news_blog .tech_photo:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.49) 70.08%, rgb(0 0 0 / 68%) 82.86%, rgb(0 0 0 / 70%) 105.31%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.tech_news_sec .tech_news_right .tech_news_blog .text_content {
    position: absolute;
    top: auto;
    z-index: 1;
    padding: 20px;
    bottom: 0;
}
.tech_news_sec .tech_news_right .text_content .top_sec {
    display: flex;
    height: 45%;
}

.tech_news_sec .tech_news_right .text_content .top_sec .text_content {
    position: relative;
    padding: 0;
}
.tech_news_sec .tech_news_right .text_content .top_sec .user_photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.tech_news_sec .tech_news_right .tech_news_blog .tech_photo .top_sec {
    position: absolute;
    top: 0;
}

.tech_news_sec .tech_news_right .tech_news_blog .tech_photo .top_sec .text_content {
    position: relative;
}

.tech_news_sec .tech_news_right .text_content .top_sec .text_content .name {
    color: #fff;
    font-size: 14px;
    margin: 0 0 5px;
}


.tech_news_sec .tech_news_right .text_content .top_sec .text_content  .date {
    color: #fff;
    font-size: 14px;
    margin: 0;
}
.tech_news_sec .tech_news_right .text_content .bottom_text_content .display_tag {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 10px;
    display: inline-block;
}

.tech_news_sec .tech_news_right .text_content .bottom_text_content .display_tag:hover {
    color: #fff;
 }
.tech_news_sec .tech_news_right .text_content .bottom_text_content .display_tag:after {
    display: none;
}
.tech_news_sec .tech_news_right .text_content .bottom_text_content .title {
    color: #fff;
    line-height: 1.4;
    font-size: 18px;
    margin: 0;
}


/* Tech News Sec */
.tech_news_banner {
    margin: 60px auto;
}
.tech_news_banner img {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
/* Tech News Sec */


/* Features Guides Sec */

.features_guides_sec .features_content {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 700px;
    display: block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.features_guides_sec .features_content .features_photo {
    height: 100%;
}

.features_guides_sec .features_content .features_photo img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.features_guides_sec .features_content:hover .features_photo img {
    transform: scale(1.1);
}
.features_guides_sec .features_content:hover .text_content .title_comment_sec {
   
    bottom: 0;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.features_guides_sec .features_content:before {
    content: "";
    background: #212121a1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.features_guides_sec .features_content .text_content {
    position: absolute;
    bottom: 0;
    top: 0;
    padding: 0;
    z-index: 1;
    left: 0;
    right: 0;
}

.features_guides_sec .features_content .text_content .top_sec {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 50px 0;
    height: 70%;
}

.features_guides_sec .features_content .text_content .top_sec .text_content {
    position: relative;
}

.features_guides_sec .features_content .text_content .top_sec .user_photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.features_guides_sec .features_content .text_content .top_sec .text_content .name {
    color: #fff;
    font-size: 14px;
    margin: 0 0 5px;
}

.features_guides_sec .features_content .text_content .top_sec .text_content  .date {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.features_guides_sec .features_content .text_content .bottom_text_content .title {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 0;
}
.features_guides_sec .features_content .text_content .bottom_content {
    display: flex;
    justify-content: space-between;
    padding: 22px 20px;
    border-top: 1px solid #c9c9c9;
}



.features_guides_sec {
    background: #212121;
    padding: 60px 0 146px;
    margin: 60px auto;
}
.features_guides_sec .title span:after {
    background: url(../images/title_border2.png);
    background-repeat: no-repeat;
}
.features_guides_sec .title {
    margin-bottom: 40px;
    color: #fff;
}

.features_guides_sec .features_content .text_content .bottom_text_content {
    padding: 10px 50px;
}

.features_guides_sec .features_content .text_content .bottom_text_content .title {
    width: 56%;
    font-size: 40px;
    font-weight: 900;
}
.features_guides_sec .features_content:hover .text_content .bottom_text_content .title {
    color: #cfcfcf;
}

.features_guides_sec .features_content .text_content .bottom_text_content .des {
    color: #fff;
    width: 60%;
    line-height: 29px;
    margin: 24px 0 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.features_guides_sec .features_content .text_content .bottom_text_content .display_tag {
    position: relative;
    left: 0;
    font-size: 16px;
}

.features_guides_sec .features_content .text_content .bottom_text_content .display_tag:after {
    display: none;
}

.features_guides_sec .features_content .text_content .title_comment_sec {
    position: absolute;
    bottom: 0%;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.features_guides_sec .features_content .text_content .title_comment_sec .bottom_content {
    padding: 22px 50px;
}

.features_guides_sec .features_content .text_content .title_comment_sec .bottom_content .views {
    color: #fff;
}
.features_guides_sec .features_content .text_content .title_comment_sec .bottom_content .views i {
    margin-right: 10px;
}
.features_guides_sec .owl-dots {
    position: absolute;
    left: 19%;
    bottom: -12%;
}

.features_guides_sec  .owl-nav {
    width: 10%;
    position: absolute;
    right: 17%;
    margin-top: 30px;
}

.features_guides_sec .owl-nav button {
    width: 50px;
    height: 50px;
    background: #545454 !important;
    border-radius: 0 !important;
}
.features_guides_sec .owl-nav button:hover {
    background: #999999 !important;
}


.features_guides_sec .owl-nav button span {
    color: #fff;
    font-size: 27px;
    line-height: 34px;
}
/* Features Guides Sec */



/**** Fature News New Css ****/

/* Tech News Grid One */
.tech_news_grid_one .tech_photo {
    height: 600px !important;
}
.tech_news_grid_one .tech_news_content .text_content {
    right: 0;
    left: 0;
}

.tech_news_grid_one .tech_news_content .text_content .top_sec {
    height: auto;
}

.tech_news_grid_one .tech_news_content .text_content .title_comment_sec {
    bottom: 0;
    position: absolute;
}

/* Tech News Grid One */


/* Grid Two */
.tech_news_grid_two .tech_news_content .text_content {
    width: 100%;
}

.tech_news_grid_two .tech_news_content .text_content  .top_sec {
    height: auto;
}

.tech_news_grid_two .tech_news_content .text_content .title_comment_sec {
    position: absolute;
    bottom: 0;
}

.tech_news_grid_two .tech_news_content .text_content .title_comment_sec .bottom_text_content .title {
    font-size: 24px;
}
/* Grid Two */


/* Grid Three */
.tech_news_grid_three .tech_news_content .tech_photo {
    height: 400px;
}
.tech_news_grid_three .tech_news_content .title_comment_sec .title {
    font-size: 19px;
}
.tech_news_grid_three .tech_news_content .text_content {
    width: 100%;
}
.tech_news_grid_three .tech_news_content .text_content .top_sec {
    height: auto;
}
.tech_news_grid_three .tech_news_content .title_comment_sec {
    bottom: 0;
    position: absolute;
    width: 100%;
    right: 0;
}
/* Grid Three */

/* Grid Four */
.tech_news_grid_four .tech_news_content .tech_photo {
    height: 400px;
}

.tech_news_grid_four .tech_news_content .title_comment_sec .title {
    font-size: 19px;
}


.tech_news_grid_four .tech_news_content .text_content {
    width: 100%;
}

.tech_news_grid_four .tech_news_content .text_content .top_sec {
    height: auto;
}

.tech_news_grid_four .tech_news_content .title_comment_sec {
    bottom: 0;
    position: absolute;
    width: 100%;
    right: 0;
}
/* Grid Four */


/* Fature News New Css */

/*****===== News Blog Page =====*****/

/*****===== News Blog Details =====*****/
.news_blog_page .news_details_sec {
    font-family: "Roboto", sans-serif;
}
.news_details h1.title {
    font-size: 34px;
}
.news_details h2.title {
    font-size: 32px;
}
.news_details h3.title {
    font-size: 30px;
}
.news_details h4.title {
    font-size: 28px;
}


.news_details_sec {
    margin-top: 18px;
}
.news_details .bottom_sec span a {
    color: #0a0a0a;
}
.news_details .bottom_sec time {
    border-left: 1px solid #706c6c;
    padding-left: 10px;
    margin-left: 6px;
    height: 12px;
    display: inline-block;
    line-height: 10px;
}
.news_details .article_photo {
    margin: 30px auto 40px;
}
.post-entry .wp-block-quote, .wpb_text_column .wp-block-quote, .woocommerce .page-description .wp-block-quote {
    padding-left: 1em;
    border-left: 4px solid rgb(0, 0, 0);
}
.wp-block-quote {
    padding-left: 1em;
    border-left: 4px solid rgb(0, 0, 0);
    margin: 40px auto;
}
.news_details_sec .news_details .text_content .title {
    margin-bottom: 20px;
}

.news_details_sec .news_details .text_content .bottom_sec {
    margin-bottom: 26px;
}

.news_details_sec .news_details .table_link_content {
    border: 1px solid #dedede;
    padding: 20px;
    margin-bottom: 40px;
}



.news_details_sec .news_details .table_link_content .t_top_sec {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
}
.news_details_sec .news_details .table_link_content .t_top_sec .title {
    margin: 0;
}

.news_details_sec .news_details .table_link_content .t_top_sec .sub_title {
    margin: 0;
}
.news_details_sec .news_details .table_link_content .t_top_sec .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    flex: 0 0 30px;
    background: var(--Blue-Orange, linear-gradient(90deg, #181818 24.08%, #454546 111.24%));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}


.news_details_sec .news_details .table_link_content .t_top_sec .icon i {
    color: #fff;
}

.news_details_sec .news_details .table_link_content .link_list {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.news_details_sec .news_details .table_link_content .link_list li {
    border-top: 1px solid #dedede;
}

.news_details_sec .news_details .table_link_content .link_list li a {
    display: block;
    padding: 12px 0;
    line-height: 30px;
    color: #3C3C3C;
    font-weight: 500;
    font-size: 18px;
}
.news_details_sec .news_details .table_link_content .link_list li:last-child a {
    padding-bottom: 0;
}
.news_details_sec .news_details .table_link_content .link_list li a:hover {
    color: #FF7722;
}

.product_details.news_blog_page .news_details_sec .post-tags {
    margin: 40px auto;
}
.product_details.news_blog_page .news_details_sec .post-tags a {
    text-transform: uppercase;
    color: #888;
    padding: 6px 12px 5px;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 11px !important;
    background: none;
    border: 1px solid #dedede;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    outline: none;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 0;
}
.product_details.news_blog_page .news_details_sec .post-tags a:hover {
    background: #181818;
    color: #fff;
}


.product_details.news_blog_page .news_details_sec .social_share_sec .share {
    min-width: 40px;
    height: 32px;
    line-height: 33px;
    border: 1px solid #dedede;
    display: inline-block;
    padding: 0 15px;
    margin-right: 12px;
    position: relative;
    vertical-align: top!important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    /* line-height: 34px; */
    border-radius: 0;
}
.product_details.news_blog_page .news_details_sec .social_share_sec .share:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 8px 8px;
    border-color: #b4b4b4;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 100%;
    transform: translateY(-50%);
    clip-path: polygon(0 0, 0% 100%, 100% 49%);
    /* background: #000000; */
}
.product_details.news_blog_page .news_details_sec .social_share_sec {
    display: flex;
    align-items: center;
}
.product_details.news_blog_page .news_details_sec .social_share_sec {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product_details.news_blog_page .news_details_sec .social_share_sec a {
    background: #0d47a1;
    border-radius: 0;
    padding: 6px 20px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    margin-right: 7px;
}
.product_details.news_blog_page .news_details_sec .social_share_sec a.twitter_icon {
    background: #40c4ff;
}
.product_details.news_blog_page .news_details_sec .social_share_sec a.pinterest_icon {
    background: #bd081c;
}
.product_details.news_blog_page .news_details_sec .social_share_sec a.email_icon {
    background: #0084ff;
}

.product_details.news_blog_page .news_details_sec .post_author_sec {
    display: flex;
    border-bottom: 1px solid #dedede;
    border-top: 1px solid #dedede;
    padding: 30px 0;
}
.product_details.news_blog_page .news_details_sec .social_share_sec a i {
    font-size: 12px;
    margin-right: 9px;
}

.product_details.news_blog_page .news_details_sec .social_sec {
    margin-left: 6px;
}


.product_details.news_blog_page .news_details_sec .post_author_sec .author-img {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    border-radius: 50%;
    overflow: hidden;
}

.product_details.news_blog_page .news_details_sec .post_author_sec .author-img img {
    height: 100%;
    object-fit: cover;
}

.product_details.news_blog_page .news_details_sec .post_author_sec .author-content {
    width: 84%;
    margin-left: 30px;
}

.product_details.news_blog_page .news_details_sec .post_author_sec .author-content .name {
    color: #212529;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 7px;
    display: block;
}
.product_details.news_blog_page .news_details_sec .post_author_sec .author-content .name:hover {
    color: #7e7b7b;
}
.product_details.news_blog_page .news_details_sec .bio-social a {
    margin-right: 12px;
    color: #9d9d9d;
}
.product_details.news_blog_page .news_details_sec .bio-social a:hover {
    color: #FF7722;
}



.details_right .title_sec {
    border-bottom: 1px solid #181818;
    margin-bottom: 30px;
}

.details_right .title_sec span {
    background: #181818;
    display: inline-block;
    color: #fff;
    padding: 8px 27px;
    border-radius: 0;
    font-weight: 700;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.details_right .related_post_sec {
    position: relative;
}

.details_right .related_post_sec .related_post_photo {
    height: 200px;
    overflow: hidden;
    border-radius: 0;
    display: block;
}

.details_right .related_post_sec .related_post_photo img {
    height: 100%;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
    object-fit: cover;
}

.details_right .related_post_sec .related_post_photo:hover img {
    transform: scale(1.1);
}

.details_right .related_post_sec  .text_content {
    position: absolute;
    background: #fff;
    bottom: 0;
    width: 70%;
    margin: auto;
    left: 15px;
    /* right: 0; */
    padding: 13px;
    border-radius: 0;
}

.details_right .related_post_sec  .title {
    font-size: 18px;
}


.details_right.active {
    position: sticky;
    top: -40%;
}
.details_right .latest_list {
    border-top: 1px solid #ced4da;
    padding-top: 20px;
    margin-top: 20px;
}
.details_right .related_post_sec .bottom_sec time {
    font-size: 13px;
}
.details_list li {
    margin-bottom: 15px;
    line-height: 1.8;
    font-family: "Roboto", sans-serif;
}

.news_details_sec .news_details .text_content .sub_title {
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}
.product_details.news_blog_page .news_details_sec .des {
    text-align: justify;
    font-family: "Roboto", sans-serif;
}
.product_details.news_blog_page .blog_slider_sec.m_related_slider {
    display: none;
}
.details_right .latest_article {
    display: flex;
    flex-wrap: wrap;
    align-items: self-start;
    padding: 0;
    border-bottom: 1px solid #ced4da;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.details_right .latest_article .article_photo {
    width: 25%;
    height: 80px;
    overflow: hidden;
    margin-right: 20px;
}

.details_right .latest_article .text_content {
    width: 68%;
}

.details_right .latest_article .article_photo img {
    object-fit: cover;
    height: 100%;
}
.details_right .latest_article .text_content .title {
    font-size: 14px;
    display: block;
    line-height: 1.2;
    margin-bottom: 0;
}
.details_right .related_post_sec  .title:hover {
    color: #7e7b7b;
}
.details_right .latest_article .text_content .title:hover {
    color: #7e7b7b;
}



.blog_slider_sec .blog_slider .latest_article {
    background: #F8F8F8;
}

.blog_slider_sec .blog_slider .latest_article .article_photo {
    height: 210px;
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
}

.blog_slider_sec .blog_slider .latest_article .article_photo img {
    height: 100%;
    object-fit: cover;
}
.blog_slider_sec .blog_slider .latest_article .text_content .title {
    font-size: 18px;
}
.blog_slider_sec .blog_slider .latest_article:hover .text_content .title {
    color: #7e7b7b;
}
.blog_slider_sec .blog_slider .latest_article .text_content  .bottom_sec {
    justify-content: start;
}
.blog_slider_sec .blog_slider .latest_article .text_content .bottom_sec span {
    font-size: 13px;
}
.blog_slider_sec .blog_slider .latest_article .text_content .bottom_sec  time {
    border-left: 1px solid #706c6c;
    padding-left: 10px;
    margin-left: 6px;
    height: 10px;
    display: inline-block;
    line-height: 10px;
}
.blog_slider_sec .blog_slider .latest_article .text_content .bottom_sec span a {
    color: #3C3C3C;
    font-weight: 600;
}

.blog_slider_sec .blog_slider {
    padding: 0 64px;
}
.blog_slider_sec .blog_slider .owl-nav button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #414040;
    background: #414040;
}
.blog_slider_sec .blog_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
}
.blog_slider_sec .blog_slider .owl-nav button span {
    font-size: 25px;
    height: 20px;
    width: 20px;
    line-height: 17px;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog_slider_sec .blog_slider .owl-nav button:hover {
    background: #181818;
}
.blog_slider_sec .blog_slider .owl-nav button:hover span {
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.blog_slider_sec .blog_slider.owl-nav {
    display: block;
}



.blog_slider_sec .blog_slider.owl-nav button.owl-next {
    right: 0;
    left: auto;
}

.blog_slider_sec .blog_slider .owl-nav button span {
    font-size: 25px;
    height: 20px;
    width: 20px;
    line-height: 17px;
}
.blog_slider_sec .blog_slider .owl-nav.disabled {
    display: block;
}
.blog_slider_sec .blog_slider .owl-nav.disabled button.owl-next {
    right: 0;
    left: auto;
}

.product_details.news_blog_page .blog_slider_sec .title {
    margin-bottom: 40px;
}
.product_details.news_blog_page .blog_slider_sec {
    margin-top: 40px;
}
.product_details.news_blog_page .blog_slider .latest_article .text_content .title {
    margin-bottom: 12px;
}
.details_right .latest_list .bottom_sec time.entry-date.published {
    padding-left: 0 !important;
}
.blog_list_point li {
    line-height: 1.7;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 18px;
}

.blog_list_content {
    border: 1px solid #dedede;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 0;
    padding-bottom: 10px;
    position: relative;
    margin-top: 39px;
}

.blog_list_content .subtitle {
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: -31px;
}

.blog_list_content .blog_list_point {
    padding-left: 32px;
}

.blog_list_content .subtitle span {
    padding: 10px 15px;
}
.title_grdient .title_wrapper {
    display: inline-block;
    background: #fff;
}
.title_grdient span {
    background: var(--Blue-Orange, linear-gradient(90deg, #5a5959 24.08%, #a7a7a7 111.24%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.news_blog_page .top_title_sec {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
}
.news_blog_page .top_title_sec .short_sec {
    display: inline-flex;
    width: 21%;
    flex-wrap: wrap;
    align-items: center;
}

.news_blog_page .top_title_sec .short_sec select {
    width: 61%;
    margin-left: 15px;
}
.blog-details-wrapper nav ul {
    margin: 0 !important;
}

.blog-details-wrapper p {
    text-align: justify;
    font-family: "Roboto", sans-serif;
    color: #444444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 17px;
}

.blog-details-wrapper .counter-hierarchy {
    border: 1px solid #dedede;
    padding: 20px !important;
    margin-bottom: 40px;
    width: 100% !important;
    border-radius: 0 !important;
}

.blog-details-wrapper .counter-hierarchy .ez-toc-title {
    color: #181818 !important;
    font-size: 18px !important;
}

.blog-details-wrapper .counter-hierarchy nav ul a {
    display: block;
}

.blog-details-wrapper ul.ez-toc-list li a {
    display: block !important;
    padding: 8px 0;
    line-height: 25px;
    color: #313131!important;
    font-size: 14px !important;
    border-top: 1px solid #dedede;
    text-decoration: none !important;
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
    opacity: .82;
}
.blog-details-wrapper ul li a:before {
    display: none !important;
}

.blog-details-wrapper ul li a:hover {
    color: #818080 !important;
}
.blog-details-wrapper .wp-block-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 17px;
    margin-top: 0;
    font-family: "Roboto", sans-serif;
    color: #3C3C3C;
}

.blog-details-wrapper .wp-block-image.size-large {
    margin: 17px 0;
}
.blog-details-wrapper .ez-toc-title-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}
.blog-details-wrapper .ez-toc-wrap-center {
    margin-bottom: 20px !important;
}
.blog-details-wrapper .ez-toc-title-container span {
    width: 26px;
    height: 26px;
    align-items: center;
    flex: 0 0 25px;
    background: var(--Blue-Orange, linear-gradient(90deg, #181818 24.08%, #454546 111.24%));
    border-radius: 0;
}
.blog-details-wrapper .ez-toc-title-container span span.ez-toc-js-icon-con {
    left: 0 !important;
    float: none !important;
    border: none !important;
}

.blog-details-wrapper .ez-toc-title-container span span.ez-toc-js-icon-con svg {
    fill: #fff !important;
    color: #fff !important;
}
.blog-details-wrapper .ez-toc-title-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
}
.blog-details-wrapper ul.wp-block-list {
    /* padding: 0; */
    list-style-type: none;
    margin: 0 0 30px;
}
.blog-details-wrapper p a {
    /*color: #181818;*/
    font-weight: 500;
    text-decoration: underline;
}
.blog-details-wrapper p a:hover {
    color: #6a6565;
}
.blog-details-wrapper .wp-block-table {
    border-bottom: 1px solid #dedede;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.wp-block-button__link:hover {
    background-color: #4f5458;
}

.news_details_sec .news_details .text_content .title {
    margin-bottom: 10px;
}
.blog-details-wrapper  nav {
    height: 450px;
    overflow-y: scroll;
}
.blog-details-wrapper .wp-block-list li {
    margin-bottom: 6px;
    list-style-type: square;
    line-height: 1.7;
    font-size: 16px;
    color: #444444;
    font-family: "Roboto", sans-serif;
}
.blog-details-wrapper .wp-block-list li a {
    line-height: 1.7;
    font-size: 16px;
    color: #444444;
    font-family: "Roboto", sans-serif;
}
.blog-details-wrapper .wp-block-button__link.wp-element-button:hover {
    color: #fff;
}
.blog-details-wrapper figure iframe {
    width: 100%;
    height: 540px;
}
.news_details figure table tr th {
    padding: 12px;
    color: #444444;
    font-family: "Roboto", sans-serif;
}

.news_details figure table tr td {
    padding: 12px;
    color: #444444;
    font-family: "Roboto", sans-serif;
}
.blog-details-wrapper h3 {
    font-size: 21px !important;
}
/*****===== News Blog Details =====*****/


/*****===== Benchmark Page =====*****/

.benchmark_page .best_info {
    margin-bottom: 20px;
}
.filter_table_sec .dt-layout-table {
    margin-top: 40px !important;
}
.filter_table_sec .dt-layout-table .filter_table_content {
    border-radius: 0;
    overflow: hidden;
}
.filter_table_sec .dt-layout-table .filter_table_content thead th {
    background: #212121;
    font-size: 16px !important;
    text-align: left;
    padding: 20px 10px;
    color: #fff;
    font-weight: 500;
    width: 20%;
}
.filter_table_sec .dt-layout-table .filter_table_content tbody tr td:first-child {
    text-align: left;
}
.filter_table_sec .dt-layout-table .filter_table_content td span.date {
    display: block;
    color: #c4c2c2;
    font-style: italic;
    font-size: 14px;
    margin-top: 2px;
    font-weight: 400;
}
.benchmark_sec .filter_table_sec .dt-info {
    /* font-weight: 600; */
    text-transform: capitalize;
    font-style: italic;
    color: #c4c2c2;
}

.benchmark_sec .benchmark_wrpper_sec {
    /* background: #F8F8F8; */
    /* padding: 30px; */
    /* border-bottom: 2px solid #F2F2F2; */
    /* border-radius: 15px; */
}

.benchmark_sec .benchmark_wrpper_sec .search_sort_sec {
    /* display: flex; */
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
}
.benchmark_sec .benchmark_wrpper_sec .filter_table_sec .filter_table_content tbody tr td:first-child {
    text-align: left;
}
.benchmark_sec .benchmark_wrpper_sec .filter_table_sec {
    background: #F8F8F8;
    padding: 30px;
    border-radius: 0;
    margin-top: 30px;
}
.benchmark_sec .benchmark_wrpper_sec .filter_table_sec .dt-layout-cell.dt-layout-start select {
    margin-right: 10px;
}
.benchmark_sec .benchmark_wrpper_sec .filter_table_sec .filter_table_content tbody tr td .device_name {
    font-weight: 700;
    color: #3c3c3c;
    font-size: 16px;
    text-align: left;
}
.benchmark_sec .benchmark_wrpper_sec .filter_table_sec .filter_table_content tbody tr td {
    background: #fff;
    border-top: 1px solid #f5f2f2;
    box-shadow: none;
    border-bottom: 1px solid #f5f2f2;
    font-size: 15px;
    font-weight: 600;
    color: #3c3c3c;
    text-align: left;
}

.benchmark_sec .benchmark_wrpper_sec .filter_table_sec .filter_table_content tbody tr:nth-child(2n - 1) td {
    background: #fbfbfb;
}
.benchmark_sec .benchmark_wrpper_sec .title {
    margin-bottom: 60px;
}


.benchmark_sec .benchmark_wrpper_sec .sort_by_sec {
    display: inline-flex;
    align-items: center;
}

.benchmark_sec .benchmark_wrpper_sec .sort_by_sec .filter_title {
    font-size: 15px;
    margin: 0 11px 0 0;
    font-weight: 800;
}
.benchmark_sec .benchmark_wrpper_sec .search_sort_sec {
    margin-bottom: 33px;
}
.benchmark_sec .benchmark_wrpper_sec .search_sort_sec .short_sec {
    margin: 0;
    padding: 0;
    border: none;
    width: 20%;
    margin-left: auto;
}

.benchmark_sec .benchmark_wrpper_sec .search_sort_sec .short_sec  select.form-select {
    width: 68%;
}
.benchmark_sec .benchmark_wrpper_sec .search_sort_sec .form_group input[type="search"] {
    width: 100%;
    height: 44px;
    padding: 7px 20px;
    font-size: 18px;
    font-size: 18px;
    border-radius: 6px;
    border: 1px solid #d1d1d1;
    position: relative;
    z-index: 0;
}

.benchmark_sec .benchmark_wrpper_sec .search_sort_sec .search_box_sec {
    width: 30%;
}
.benchmark_sec .benchmark_wrpper_sec .search_sort_sec .search_box_sec .form_group {
    position: relative;
}

.benchmark_sec .benchmark_wrpper_sec .search_sort_sec .search_box_sec .form_group .search_icon {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 22px;
    right: 19px;
}
.benchmark_sec .benchmark_wrpper_sec .search_sort_sec .form_group input[type="search"]:focus-visible {
    outline: none;
}

.benchmark_sec .benchmark_wrpper_sec .search_sort_sec .search_box_sec .form_group .search_icon i {
    color: #a8a8a8;
}

.benchmark_sec .benchmark_wrpper_sec .sort_by_sec span.select2.select2-container {
    width: 200px !important;
}

.benchmark_sec .benchmark_wrpper_sec .sort_by_sec span.select2.select2-container .select2-selection--single {
    height: 44px;
}

.benchmark_sec .benchmark_wrpper_sec .sort_by_sec span.select2.select2-container .select2-selection--single span {
    line-height: 43px;
}

.benchmark_sec .benchmark_wrpper_sec .sort_by_sec span.select2.select2-container .select2-selection--single span.select2-selection__arrow {
    top: 0;
    bottom: 0;
    height: 100%;
}


.benchmark_sec .benchmark_wrpper_sec .filter_sec .form_group {
    width: 12%;
}

.benchmark_sec .benchmark_wrpper_sec .filter_sec .form_group span.select2 {
    width: 100% !important;
}
.benchmark_sec .benchmark_wrpper_sec .filter_sec .select2-container--default .select2-selection--single {
    height: 40px;
    border-radius: 0;
}
.benchmark_sec .benchmark_wrpper_sec .filter_sec .select2-container--default .select2-selection--single span {
    height: 100% !important;
    line-height: 38px !important;
}
.benchmark_sec .benchmark_wrpper_sec .filter_sec .form_group.btn_rest input[type="button"] {
    width: 100%;
    height: 40px;
    background: #181818;
    color: #fff;
    border-radius: 0;
    text-transform: capitalize;
    z-index: 8;
    overflow: hidden;
    border: none;
}
.benchmark_sec .benchmark_wrpper_sec .filter_sec .form_group.btn_rest input[type="button"]:hover {
    background: #2a2929;
}
.benchmark_sec .benchmark_wrpper_sec .filter_sec .form_group.btn_rest input[type="button"]:after {
    background-color: #0c1c6d;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
}
.benchmark_sec .benchmark_wrpper_sec .filter_sec .form_group.btn_rest input[type="button"]:hover::after {
    left: 5%;
    width: 90%;
}


.benchmark_sec .benchmark_wrpper_sec .filter_sec {
    display: flex;
    align-items: center;
}

.benchmark_sec .benchmark_wrpper_sec .filter_sec .filter_title {
    font-size: 18px;
    margin: 0 12px 0 0;
    font-weight: 800;
}

.benchmark_sec .benchmark_wrpper_sec .filter_sec .form_group {
    margin-right: 10px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #212121;
}
/* .select2-container--default .select2-results__option--highlighted[aria-selected] span {
    color: #FF7722;
} */

.benchmark_sec .benchmark_wrpper_sec .dt-layout-row .dt-paging nav button.dt-paging-button.current {
    background: #181818;
    border: none;
    color: #fff !important;
    border: none;
}
.benchmark_sec .benchmark_wrpper_sec .dt-layout-row .dt-paging nav button.dt-paging-button:hover {
    background: #2a2929;
    border: none !important;
    color: #fff !important;
}
.benchmark_sec .benchmark_wrpper_sec .filter_table_sec .dt-search input:focus-visible {
    outline: none;
}

.benchmark_sec .benchmark_wrpper_sec .dt-layout-row .dt-paging nav button.dt-paging-button {
    border-radius: 0;
    border: none !important;
}
.benchmark_banner {
    overflow: hidden;
    margin-top: 80px;
}
/*****===== Benchmark Page =====*****/


/*****===== Deals Page =====*****/

.product_details .best_info {
    margin-bottom: 30px;
    margin-top: 30px;
}

.deals_product_sec .latest_product {
    border: 1px solid #DBDBDB;
    padding: 15px;
    display: block;
    border-radius: 0px;
    height: 100%;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    position: relative;
    background: #fff;
}
.deals_product_sec .latest_product:before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    background: #f0f;
    bottom: 0;
    background: #fff;
    z-index: -1;
    width: 90%;
    margin: auto;
    height: 88%;
}
.deals_product_sec .latest_product:hover:before {
    background: linear-gradient(270deg, rgb(191 191 191) 0.8%, rgb(127 123 123) 39.2%, rgb(255 255 255) 69.64%, rgb(197 196 196) 97.74%);
    filter: blur(22.170000076293945px);
}
.deals_product_sec .latest_product .latest_phone {
    position: relative;
    overflow: hidden;
}


.deals_product_sec .latest_product .text_content {
    margin-top: 15px;
    position: relative;
}

.deals_product_sec .latest_product .text_content .product_title {
    font-size: 20px;
    color: #46474a;
    margin-bottom: 14px;
}

.deals_product_sec .latest_product .text_content .price {
    font-size: 28px;
    color: #161616;
    font-weight: 700;
    margin: 0;
}

.deals_product_sec .latest_product .display_tag {
    z-index: 1;
    top: -13px;
}

.deals_product_sec .latest_product .text_content .product_title {
    font-size: 20px;
    color: #46474A;
    margin-bottom: 8px;
}
.deals_product_sec .latest_product .text_content .price {
    font-size: 20px;
    color: #a1a1a1;
    font-weight: 400;
    margin: 0 0 5px;
    text-decoration: line-through;
}
.deals_product_sec .latest_product .price_sec .device_score {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}
.deals_product_sec .latest_product .price_sec img {
    width: 40px;
}

.deals_product_sec .latest_product .rating_sec {
    right: 0;
    display: flex;
    align-items: self-start;
    margin-left: auto;
    position: absolute;
    top: 10px;
    background: var(--Blue-Orange, linear-gradient(90deg, #F56040 24.08%, #415CE7 111.24%));
    padding: 4px;
    right: 10px;
    border-radius: 5px;
    z-index: 1;
}
.deals_product_sec .latest_product .rating_sec .rating {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
}
.deals_product_sec .latest_product .rating_sec img {
    width: 13px;
    margin-right: 4px;
    height: auto !important;
    object-fit: none !important;
    filter: brightness(0) invert(1);
    float: left;
    margin-top: 1px;
}
.deals_product_sec .latest_product .text_content .price.offer_price {
    color: #161616;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
}

.deals_product_sec .latest_product .price_sec .view_btn {
    margin-top: 0;
}
.deals_product_sec .latest_product .text_content .btn_ecommerce {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.deals_product_sec .latest_product .text_content .btn_ecommerce .ecommerce_icon {
    width: 12%;
}
/*****===== Deals Page =====*****/


/*****===== Tag Page =====*****/
.tag_breadcrumb_title {
    background: var(--Blue-Orange, linear-gradient(90deg, #464646 24.08%, #444444 111.24%));
    padding-bottom: 34px;
}

.tag_page {
    margin-top: 109px;
}

.tag_page .breadcrumb_sec .breadcrumb_menu li {
    color: #fff;
}
.tag_page .breadcrumb_sec .breadcrumb_menu li a {
    color: #fff;
}

.tag_page .breadcrumb_sec .breadcrumb_menu li i {
    color: #fff;
}

.tag_page .best_info {
    margin: 60px 0 0;
}

.tag_page .best_info .title_content .title {
    background: #464646;
    z-index: 1;
    position: relative;
    color: #fff;
}
.tag_page .tag_content {
    padding: 100px 0 0;
   
}
.tag_page .tag_content .container {
    background: #fff;
    padding: 30px;
}
.tag_page .latest_article_sec {
    background: #F8F8F8;
    padding: 25px;
    border-radius: 0;
    margin-bottom: 40px;
}


.tag_page .best_info .title_content:before {
    z-index: 0;
    background: #fff;
}
.tag_page .tech_news_sec {
    margin-bottom: 40px;
}
.tag_page .tag_content {
    padding: 10px 0 0;
    position: relative;
}
.tag_page .best_info .title_content span:after {
    background: url(../images/tag_border.png);
    background-repeat: no-repeat;
    background-position: center right;
}
/* .tag_page .tag_content:before {
    content: "";
    position: absolute;
    background: #f0f;
    width: 100%;
    height: 120px;
    top: -110px;
    background: url(../images/tag_oval_shape2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */
/*****===== Tag Page =====*****/


/*****===== New Home Page =====*****/

.view_detail {
    color: #181818;
    font-size: 18px;
    padding: 0 0 5px;
    position: relative;
    display: inline-block;
}
.view_detail:after {
    background: #000;
    height: 2px;
    content: "";
    width: 60%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}
.view_detail:hover:after {
    width: 100%;
}
.view_detail:hover {
    color: #181818;
}

.new_home_page {
    padding-top: 110px;
}


.new_home_page {
    padding-top: 110px;
}

.new_home_page .best_camera_sec .top_sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #696464;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.new_home_page .sub_title {
    color: #636261;
    font-size: 18px;
    text-transform: capitalize;
}

.new_home_page .h_title {
    font-size: 28px;
}

.new_home_page .view_all {
    background: #181818;
    color: #fff;
    font-size: 16px;
    border-radius: 0;
    padding: 10px 30px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.new_home_page .view_all:after {
    background-color: #ffffff;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
}
.new_home_page .view_all:hover::after {
    left: 5%;
    width: 90%;
}

.new_home_page .view_all svg {
    width: 12px;
    height: auto;
    margin-left: 10px;
}

.new_home_page .best_camera_explore {
    background: #F3F3F3;
    padding: 110px 0;
}
.new_home_page .best_camera_explore .best_phone_slider .owl-dots {
    margin-top: 40px;
}

.new_home_page .best_camera_explore .best_phone_slider .owl-dots button span {
    border: 1px solid #222222;
    background: #f3f3f3;
}

.new_home_page .best_camera_explore .best_phone_slider .owl-dots button.active span {
    background: #222222;
}
/* Best Phone Slider */

.new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .phone_post {
    margin-bottom: 20px;
    background: #fff;
    padding: 16px;
    display: block;
    align-items: center;
    display: flex;
}
.new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .text_content .product_name {
    font-size: 20px;
    color: #181818;
}

.new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .text_content .price {
    color: #424242;
    font-size: 22px;
    font-weight: 700;
    margin: 14px auto 20px;
}




/* Explore Feature Sec */
.new_home_page .best_camera_explore .explore_feature_sec .top_sec .title_sec .h_title {
    font-size: 20px;
    border-bottom: 1px solid #696464;
    margin-bottom: 30px;
    padding-bottom: 15px;
    margin-top: 47px;
}

.new_home_page .best_camera_explore .explore_feature_sec .features_content {
    background: #222;
    border-radius: 0;
    overflow: hidden;
}
.new_home_page .best_camera_explore .explore_feature_sec .features_content .top_sec {
    background: #464645;
    padding: 10px 24px;
}

.new_home_page .best_camera_explore .explore_feature_sec .features_content .top_sec .title {
    font-size: 24px;
    color: #fff;
}

.new_home_page .best_camera_explore .explore_feature_sec .features_content  .feature_list {
    padding: 24px;
}

.new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a {
    display: flex;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6.300000190734863px);
    color: #fff;
    margin-bottom: 20px;
    padding: 12px 15px;
    align-items: center;
    overflow: hidden;
}

.new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a:after {
    background-color: #020202;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
}
.new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a:hover::after {
    left: 5%;
    width: 90%;
}
.new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a:last-child {
    margin-bottom: 0;
}
.new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list .l_sec {
    margin: 0;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin-left: 13px;
}

.new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a .icon {
    width: 34px;
}

.new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list .l_sec span {
    font-size: 16px;
    margin-right: 12px;
}


/* Explore Feature Sec */


/* banner latest banner sec */
.new_home_page .banner_latest_banner_sec .latest_news {
    display: flex;
    width: 100%;
    background-color: #181818;
    padding: 40px 60px;
    justify-content: space-between;
    position: relative;
    margin: 140px auto;
}
.new_home_page .banner_latest_banner_sec .latest_news .text_content .title {
    color: #fff;
    font-size: 60px;
}

.new_home_page .banner_latest_banner_sec .latest_news .text_content .des {
    font-size: 30px;
    color: #ffffff;
    margin: 20px auto 30px;
}
.new_home_page .banner_latest_banner_sec .latest_news .text_content .view_all {
    background: #fff;
    color: #111;
    overflow: hidden;
}

.new_home_page .banner_latest_banner_sec .latest_news .text_content .view_all:after {
    background: #151515;
}

.new_home_page .banner_latest_banner_sec .latest_news:before {
    content: "";
    position: absolute;
    background: url(../images/h_latest_news_bg.png);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
.new_home_page .banner_latest_banner_sec .latest_news .text_content {
    position: relative;
    z-index: 1;
}
.new_home_page .banner_latest_banner_sec .latest_news .latest_phone {
    position: absolute;
    right: 10%;
    top: -36px;
}
/* banner latest banner sec */



/* Latest Phone Gallery Sec */

.new_home_page .latest_phone_gallery_sec {
    background: #F3F3F3;
    padding: 60px 0;
    position: relative;
}
.new_home_page .latest_phone_gallery_sec .title {
    margin: 20px auto 20px;
}
.new_home_page .latest_phone_gallery_sec .container {
    text-align: center;
}

.new_home_page .latest_phone_gallery_sec .title_content {
    margin-bottom: 70px;
}

.new_home_page .latest_phone_gallery_sec .best_phone_grid {
    overflow: hidden;
}
.new_home_page .latest_phone_gallery_sec .best_phone_grid .phone_post {
    background: #fff;
    padding: 20px 40px 30px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.new_home_page .latest_phone_gallery_sec .best_phone_grid .phone_post img {
    height: auto;
}
.new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content {
    text-align: left;
    margin-top: 20px;
}
.new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content .product_name {
    font-size: 24px;
    margin: 0;
    color: #181818;
}
.new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content .product_name:hover {
    color: #545454;
}

.new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content .price {
    color: #424242;
    margin: 14px auto 20px;
    font-size: 20px;
}

.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery {
    margin-bottom: 90px;
    padding: 0 64px;
}
.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery .owl-nav button span {
    display: none;
}
.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery .owl-nav button {
    position: absolute;
    left: 0;
    top: 140px;
    margin: auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/h_l_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery .owl-nav button.owl-next {
    right: 0;
    left: auto;
    background: url(../images/h_r_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.phone_tag {
    position: absolute;
    background: #F56040;
    color: #fff;
    padding: 5px 10px;
    top: 26px;
}
.new_home_page .phone_tag {
    top: -17px;
}
.phone_tag.camera {
    background: #0F9D58;
}
.phone_tag.display {
    background: #FB9B00;
}
.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two {
    position: relative;
    padding: 0 64px;
    margin-bottom: 60px;
}
.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .phone_post {
    height: 430px;
}
.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .owl-nav button span {
    display: none;
}
.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .owl-nav button {
    position: absolute;
    left: 0;
    top: 190px;
    margin: auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/h_l_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .owl-nav button.owl-next {
    right: 0;
    left: auto;
    background: url(../images/h_r_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .owl-dots {
    margin-top: 17px;
    display: none;
}

.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .owl-dots button span {
    border: 1px solid #222222;
    background: #f3f3f3;
}

.new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .owl-dots button.active span {
    background: #222222;
}
/* Latest Phone Gallery Sec */


/* Featured Video Sec */

.new_home_page .featured_video_sec {
    padding: 120px 0;
    text-align: center;
}
.new_home_page .featured_video_sec .title {
    margin: 20px auto;
}
.new_home_page .featured_video_sec .title_content {
    text-align: center;
}
.new_home_page .featured_video_sec .title_content .t_des {
    margin-bottom: 0;
}

.new_home_page .featured_video_sec .featured_video_content {
    margin: 70px auto;
}

.new_home_page .featured_video_sec .featured_video_content .h_featured_video {
    height: 440px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.new_home_page .featured_video_sec .featured_video_content .h_featured_video:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0000006b;
}
.new_home_page .featured_video_sec .featured_video_content .h_featured_video img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.new_home_page .featured_video_sec .featured_video_content .h_featured_video:hover img {
    transform: scale(1.1);
}
.new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .play_icon {
    width: 90px;
    position: relative;
    z-index: 1;
}

.new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .video_title {
    position: absolute;
    left: 5%;
    bottom: 10%;
    color: #fff;
    width: 40%;
    font-size: 38px;
    line-height: 1.4;
    text-align: left;
}

.new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .review_tag {
    position: absolute;
    top: 5%;
    left: 5%;
    background: #fff;
    padding: 5px;
    border-radius: 0;
    padding: 8px 10px;
    font-weight: 600;
}
.new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video {
    height: 210px;
}
.new_home_page .featured_video_sec .featured_video_content .r_featured_video {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .play_icon {
    width: 70px;
}

.new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .video_title {
    font-size: 24px;
    width: auto;
}

.new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .review_tag {
    font-size: 16px;
}

/* Featured Video Modal */
.new_home_page .featured_video_modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.new_home_page .featured_video_modal .modal-dialog {
    max-width: 40%;
    flex: 0 0 40%;
}

.new_home_page .featured_video_modal .modal-dialog .modal-header {
    position: absolute;
    right: 0;
    z-index: 1;
    background: #fff;
    padding: 0;
}

.new_home_page .featured_video_modal .modal-dialog .modal-body {
    border-radius: 0;
    padding: 15px;
}

.new_home_page .featured_video_modal .modal-dialog .modal-content {
    border-radius: 0;
}

.new_home_page .featured_video_modal .modal-dialog .modal-body iframe {
    width: 100%;
    height: 400px;
    display: block;
}

.new_home_page .featured_video_modal .modal-dialog .modal-header .btn-close {
    position: absolute;
    right: 20px;
    top: 10px;
    background: #000;
    opacity: 1;
    border-radius: 50%;
    padding: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
}

.new_home_page .featured_video_modal .modal-dialog .modal-header .btn-close i {
    color: #fff;
    font-size: 20px;
}
/* Featured Video Sec */





.new_home_page .price_range_sec .price_range_content .top_sec {
    background: #F56040;
    padding: 10px 24px;
}
.new_home_page .price_range_sec .price_range_content .top_sec .title {
    font-size: 24px;
    color: #fff;
}

.new_home_page .price_range_sec .price_range_content {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.new_home_page .price_range_sec .price_range_content .price_range_list {
    padding: 15px;
}

.new_home_page .price_range_sec .price_range_content .price_range_list a {
    display: flex;
    background: #F2F2F2;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    align-items: center;
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.new_home_page .price_range_sec .price_range_content .price_range_list a:hover {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    
}

.new_home_page .price_range_sec .price_range_content .price_range_list a .text_content {
    display: flex;
    width: 75%;
    flex: 0 0 75%;
    justify-content: space-between;
}

.new_home_page .price_range_sec .price_range_content .price_range_list a .price_photo {
    width: 50px;
    flex: 0 0 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
}
.new_home_page .price_range_sec .price_range_content .price_range_list a .price_photo img {
    height: 100%;
}

.new_home_page .price_range_content .price_range_list a .text_content span {
    font-size: 18px;
    color: #010101;
}

.new_home_page .price_range_sec .price_range_content .price_range_list a .text_content .arrow_icon {
    flex: 0 0 20px;
    flex: 0 0 18px;
    width: 18px;
    margin-left: 20px;
}




/* Explore Price */
.new_home_page .explore_price {
    background: #424242;
    text-align: center;
    padding: 80px 0;
}

.new_home_page .explore_price .title {
    color: #fff;
    margin-bottom: 50px;
    font-size: 28px;
}

.new_home_page .explore_price .explore_content {
    display: flex;
    justify-content: center;
}

.new_home_page .explore_price .explore_content a {
    color: #fff;
    border-right: 1px dotted #6D6A6A;
    padding: 10px 30px;
}
.new_home_page .explore_price .explore_content a:hover {
    color: #b7acac;
}
.new_home_page .explore_price .explore_content a:hover .icon svg path {
    fill: #b7acac;
}
.new_home_page .explore_price .explore_content a:last-child {
    border-right: none;
}

.new_home_page .explore_price .explore_content a .icon {
    margin-bottom: 20px;
}
/* Explore Price */


/* Compare Banner Sec */
.new_home_page .compare_banner_sec {
    background: url(../images/compare_banner_bg.png);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px 70px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.new_home_page .latest_phone_gallery_sec .compare_banner_sec {
    margin-top: 120px;
}

.new_home_page .compare_banner_sec .compare_photo {
    flex: 0 0 70%;
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 36%;
}

.new_home_page .compare_banner_sec .text_content {
    text-align: left;
}

.new_home_page .compare_banner_sec .text_content .title {
    font-size: 60px;
    font-weight: 900;
    text-align: left;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 30px;
}

.new_home_page .compare_banner_sec .text_content .title span {
    display: block;
}

.new_home_page .compare_banner_sec .text_content .title span:after {
    display: none;
}
/* Compare Banner Sec */


/* Five G Phone Gallery */
.new_home_page .latest_phone_gallery_sec.fiveg_phone_gallery {
    background: #fff;
}

.new_home_page .latest_phone_gallery_sec.fiveg_phone_gallery .h_latest_gallery .best_phone_grid .phone_post {
    background: #f2f2f2;
}
/* Five G Phone Gallery */


/* Benchmark Banner */
.new_home_page .benchmark_banner {
    background: #424242;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 110px;
}

.new_home_page .benchmark_banner .text_content {
    text-align: left;
    padding-left: 60px;
}
.new_home_page .benchmark_banner .text_content .title {
    color: #fff;
    font-size: 60px;
    text-align: left;
}

.new_home_page .benchmark_banner .text_content .title span:after {
    display: none;
}

.new_home_page .benchmark_banner .text_content .title span {
    display: block;
}

.new_home_page .benchmark_banner .text_content .view_all {
    background: #fff;
    color: #181818;
    overflow: hidden;
}

.new_home_page .benchmark_banner .text_content .view_all:after {
    background-color: #a5a0a0;
}


.new_home_page .benchmark_banner .text_content .title span {
    display: block;
}


/* Brand Sec */
.new_home_page .brand_sec {
    margin: 60px auto;
    text-align: center;
}


.new_home_page .brand_sec .title_content {
    margin-bottom: 70px;
}
.new_home_page .brand_sec .top_sec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}   
.new_home_page .brand_sec .title_content .title {
    margin: 20px auto 20px;
}

.new_home_page .brand_sec .h_brand_slider .brand_content img.brand_icon_hover {
    display: none;
}

.new_home_page .brand_sec .h_brand_slider .brand_content:hover .brand_icon {
    display: none;
}
.new_home_page .brand_sec .h_brand_slider .brand_content:hover img.brand_icon_hover {
    display: block;
}
.new_home_page .brand_sec .h_brand_slider .brand_content {
    border: 1px solid #eaeaea;
    display: block;
    border-radius: 0;
    overflow: hidden;
    height: 150px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.new_home_page .brand_sec .h_brand_slider .brand_content img {
    object-fit: cover;
    height: 150px;
}
.new_home_page .brand_sec .h_brand_slider {
    padding: 0 64px;
}
.new_home_page .brand_sec .h_brand_slider .owl-nav button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/h_l_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.new_home_page .brand_sec .h_brand_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
    background: url(../images/h_r_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.new_home_page .brand_sec .h_brand_slider .owl-nav button span {
   display: none;
}

.new_home_page .brand_sec .owl-nav {
    display: block;
}



.new_home_page .brand_sec .h_brand_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
}

.new_home_page .brand_sec .h_brand_slider .owl-nav button span {
    font-size: 25px;
    height: 20px;
    width: 20px;
    line-height: 17px;
}
.new_home_page .brand_sec .h_brand_slider .owl-nav.disabled {
    display: block;
}
.brand_sec .h_brand_slider .owl-nav.disabled {
    display: block;
}

.new_home_page .brand_sec .h_brand_slider .owl-nav.disabled  button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    border-radius: 50%;
    border: 1px solid #b0d2f34d;
    display: none;
}
.new_home_page .brand_sec .h_brand_slider .owl-nav.disabled  button:hover {
    background: #000;
}
.new_home_page .brand_sec .h_brand_slider .owl-nav.disabled  button:hover span {
    color: #fff;
}
.new_home_page .brand_sec .h_brand_slider .owl-nav.disabled button.owl-next {
    right: 0;
    left: auto;
}

.new_home_page .brand_sec .h_brand_slider .owl-nav.disabled button span {
    font-size: 25px;
}

/* Brand Sec */



/* Latest Article Sec */
.new_home_page .latest_article_sec {
    background-image: none;
    margin-top: 0;
}
.new_home_page .latest_article_sec .title_content {
    text-align: center;
    margin-bottom: 70px;
}

.new_home_page .latest_article_sec .title_content .title {
    margin-bottom: 0;
    margin-top: 20px;
}
.new_home_page .latest_article_sec .article_right {
    background: #F3F3F3;
    padding: 20px;
}
.new_home_page .latest_article_sec .r_blog_grid {
    margin-top: 0;
}

.new_home_page .latest_article_sec .article_right .article_blog {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-bottom: 1px solid #a3a3a3;
    padding-bottom: 20px;
}

.new_home_page .latest_article_sec .article_right .article_blog .text_content {
    width: 67%;
    margin-left: 18px;
}

.new_home_page .latest_article_sec .article_right .article_post {
    width: 100px;
    height: 94px;
    overflow: hidden;
}

.new_home_page .latest_article_sec .article_right .article_post img {
    height: 100%;
    object-fit: cover;
}

.new_home_page .latest_article_sec .article_right .article_blog .text_content .title {
    font-size: 15px;
    margin: 0 0 2px;
    color: #000;
    font-weight: 500;
    line-height: 21px;
}
.new_home_page .latest_article_sec .article_right .article_blog .text_content .name_date {
    display: flex;
    flex-direction: column;
}
.new_home_page .latest_article_sec .article_right .article_blog:hover .text_content .title {
    color: #3c3a3a;
}
.new_home_page .latest_article_sec .article_right .article_blog:hover .text_content .name_date .name {
    color: #3c3a3a;
}
.new_home_page .latest_article_sec .article_right .article_blog .text_content .name_date {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}
.new_home_page .latest_article_sec .article_right .article_blog .text_content .name_date .name {
    font-size: 13px;
    color: #000;
    font-weight: 300;
    margin: 0;
    float: left;
    white-space: nowrap;
    line-height: 14px;
    height: 16px;
    margin: 0 0 6px;
}

.new_home_page .latest_article_sec .article_right .article_blog .text_content .name_date .date {
    font-size: 12px;
    color: #000;
    font-weight: 300;
    white-space: initial;
}
.new_home_page .latest_article_sec .article_right .article_blog .text_content .name_date .date:hover {
   color: #3c3a3a;
}
.new_home_page .latest_article_sec .article_right .article_blog:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.new_home_page .latest_article_sec .article_blog_sec .article_post {
    height: 440px;
    margin-bottom: 30px;
    display: block;
}

.new_home_page .latest_article_sec .article_blog_sec .article_post img {
    height: 100%;
}

.new_home_page .latest_article_sec .article_blog_sec .text_content .title {
    margin-bottom: 10px;
    font-size: 26px;
}
.new_home_page .latest_article_sec .article_blog_sec .text_content .title:hover {
  color: #000;
}

.new_home_page .latest_article_sec .article_blog_sec .text_content .bottom_sec {
    display: flex;
    justify-content: space-between;
}

.latest_article_sec .article_blog_sec .text_content .bottom_sec .name_date {
    display: flex;
    align-items: center;
}

.new_home_page .latest_article_sec .article_blog_sec .text_content .bottom_sec .name_date .name {
    margin: 0;
    color: #636261;
    font-size: 16px;
    line-height: 18px;
    border-right: 1px solid #636261;
    padding-right: 6px;
    margin-right: 6px;
}

.new_home_page .latest_article_sec .article_blog_sec .text_content .bottom_sec .name_date  .date {
    color: #636261;
    font-size: 16px;
    line-height: 18px;
    margin: 0;
}
/* Latest Article Sec */


/* Comparisons Sec */
.new_home_page .comparisons_sec {
    padding: 120px 0;
    text-align: center;
}

.new_home_page .comparisons_sec .title_content {
    text-align: center;
    margin-bottom: 70px;
}
.new_home_page .comparisons_sec .title_content .title {
    margin: 20px auto 20px;
}
.new_home_page .comparisons_sec .comparisons_grid .comparisons_content {
    display: flex;
    flex-wrap: wrap;
    background: #F2F2F2;
    position: relative;
}



.new_home_page .comparisons_sec .comparisons_grid .comparisons_content:after {
    background-color: #ffffff;
    content: "";
    height: 100%;
    left: 0;
    opacity: .12;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    -webkit-transition: all .4s ease 0s;
    -khtml-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    width: 0;
}
.new_home_page .comparisons_sec .comparisons_grid .comparisons_content:hover::after {
    left: 5%;
    width: 90%;
}

.new_home_page .comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono {
    width: 44%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 289px;
    flex: 0 0 44%;
}

.new_home_page .comparisons_sec .comparisons_grid .comparisons_content .vs_logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 26%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.new_home_page .comparisons_sec .comparisons_grid .comparisons_content img {
    width: 94px;
    margin-top: 40px;
}
.new_home_page .comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono.left_phone {
    background: #424242;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    flex: 0 0 56%;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%);
    position: relative;
}
.new_home_page .comparisons_sec .comparisons_grid .text_content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 12px;
    text-align: left;
}
.new_home_page .comparisons_sec .comparisons_grid .text_content .name {
    width: 48%;
    font-size: 17px;
    margin: 0;
    color: #3C3C3C;
    padding: 0 10px;
}

.new_home_page .comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono.left_phone img {
    position: relative;
    left: -13%;
    margin-top: -60px;
}
.new_home_page .comparisons_sec .comparisons_grid .text_content .title {
    font-size: 16px;
    margin-top: 20px;
}

.new_home_page .comparisons_sec .comparisons_slider {
    position: relative;
    padding: 0 64px 40px;
}
.new_home_page .comparisons_sec .comparisons_slider .owl-nav button span {
    display: none;
}
.new_home_page .comparisons_sec .comparisons_slider .owl-nav button {
    position: absolute;
    left: 0;
    top: 124px;
    margin: auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/h_l_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.new_home_page .comparisons_sec .comparisons_slider .owl-nav button.owl-next {
    right: 0;
    left: auto;
    background: url(../images/h_r_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.new_home_page .comparisons_sec .comparisons_slider  .owl-dots {
    margin-top: 17px;
}

.new_home_page .comparisons_sec .comparisons_slider .owl-dots button span {
    border: 1px solid #222222;
    background: #f3f3f3;
}

.new_home_page .comparisons_sec .comparisons_slider .owl-dots button.active span {
    background: #222222;
}
/* Comparisons Sec */





/* Benchmarks Deals */
.new_home_page .benchmarks_deals {
    background: #F3F3F3;
    padding: 100px 0;
}
.new_home_page .benchmarks_deals .top_sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* .new_home_page .benchmarks_deals .top_sec .view_all svg path {
    fill: #ffffff;
} */


.new_home_page .benchmarks_deals .top_sec .view_all {
    background: none;
    color: #181818;
    padding: 0;
    font-size: 18px;
}
.new_home_page .benchmarks_deals .top_sec .view_all:after {
    background: #000;
    height: 2px;
    content: "";
    width: 60%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    top: auto;
    opacity: 1;
}
.new_home_page .benchmarks_deals .top_sec .view_all:hover:after {
    width: 100%;
}


.new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table thead th {
    background: #181818;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    width: 26%;
}
.new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table thead th span.dt-column-title {
    padding-left: 10px;
}
.new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table tbody tr td {
    background: #fff !important;
    box-shadow: none;
    vertical-align: top;
    text-align: left;
    padding: 8px 10px;
    border-bottom: 1px dashed #9E9E9E !important;
    border-top: none;
    font-weight: 900;
}
.new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table tbody tr td .brand_name {
    font-size: 14px;
    color: #3c3c3c;
    margin: 0 0 4px;
    line-height: 1.2;
    font-weight: 900;
}

.new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table tbody tr td .date {
    font-size: 14px;
    color: #c4c2c2;
    margin-bottom: 0;
    font-style: italic;
}

.new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table tbody tr td:first-child {
    padding: 10px;
}
.new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table tbody tr:last-child td {
    border-bottom: none !important;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .top_sec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}


.new_home_page .benchmarks_deals .ongoing_deals_sec .top_sec .view_all {
    background: none;
    color: #181818;
    padding: 0;
    font-size: 18px;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .top_sec .view_all:after {
    background: #000;
    height: 2px;
    content: "";
    width: 60%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    top: auto;
    opacity: 1;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .top_sec .view_all:hover:after {
    width: 100%;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .phone_post {
    background: #fff;
    padding: 30px 20px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .phone_post .phone_tag {
    top: 16px;
    font-size: 12px;
}

.new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .product_name {
    font-size: 18px;
    color: #181818;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .price {
    font-size: 16px;
    margin: 3px 0 2px;
    color: #181818;
    font-weight: 900;
}

.new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .view_detail {
    font-size: 16px;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content  .btn_ecommerce {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .btn_ecommerce .ecommerce_icon {
    width: 28px;
    margin-right: 13px;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .best_phone_grid .display_tag {
    top: 2px;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .owl-item {
    padding: 15px 0;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .price.offer_price {
    margin: 4px 0 0;
    text-decoration: line-through;
    color: #a1a1a1;
    font-weight: 400;
    font-size: 15px;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec .owl-nav {
    display: none;
}
.new_home_page .benchmarks_deals .ongoing_deals_sec  .owl-dots {
    margin-top: 17px;
    text-align: left;
}

.new_home_page .benchmarks_deals .ongoing_deals_sec .owl-dots button span {
    border: 1px solid #222222;
    background: #f3f3f3;
}

.new_home_page .benchmarks_deals .ongoing_deals_sec .owl-dots button.active span {
    background: #222222;
}
/* Benchmarks Deals */

/*****===== New Home Page =====*****/





 /*=============== Start Responsive css ===============*/

@media(min-width: 1366px){
.reviewModal .modal-body {
    width: 400px;
    background-color: #fff;
    border-radius: 7px;
}
}
 
/* 1800px */
@media screen and (max-width: 1800px) {

    .best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .specifications_sec .specifications_content {
        margin-bottom: 0;
    }


    /* Product Details Page */
    .compare_mobile_sec.product_details_compare .container {
        width: 54%;
    }

    /* Product Details Page */

    /* Comparison Modal */
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product {
        height: 100px;
    }
    .compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone {
        height: 142px;
    }
    .compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone img {
        height: 126px;
    }
    .compare_mobile_sec.product_details_compare .view_btn.compare_btn1.compare {
        margin-top: 30px;
    }
    
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone {
        height: 86px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone img {
        height: 78px;
    }
     /* Comparison Modal */

     /* Phone Finder */
     .best_phone_content .phone_details_content .product_text_content .specifications_sec .specifications_content .text_content .des {
        font-size: 11px;
        line-height: 15px;
    }
     /* Phone Finder */


    /****==== New Home Page ====****/
  
    .new_home_page .featured_video_modal .modal-dialog {
        max-width: 46%;
        flex: 0 0 46%;
    }

    /****==== New Home Page ====****/

   
}


/* 1600px */
@media screen and (max-width: 1600px) {


    .container {
        max-width: 1200px;
    }
    .title {
        font-size: 24px;
    }
    h1.title {
        font-size: 24px;
    }
    h2.title {
        font-size: 22px;
    }
    h3.title {
        font-size: 20px;
    }
    h4.title {
        font-size: 18px;
    }
    .heade_sec .menu_nav .container .navbar-nav a {
        padding: 10px 28px 15px;
    }
    .heade_sec .top_heade .dropdown.search_dropdown {
        width: 66%;
    }
    /****==== Search Product  ====****/
    /* .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec:after {
        left: 44%;
        width: 56%;
    }
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price  .title_sec:after {
        width: 28% !important;
        left: 73% !important;
    }
    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec.features:after {
        width: 30% !important;
        left: 74% !important;
    } */
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price .best_price_list a {
        padding: 6px 11px;
        font-size: 15px;
    }
    .heade_sec .menu_nav .container .navbar-nav .dropdown-menu.mobile {
        left: 8px;
    }
    /****==== Search Product  ====****/

    /****==== Home Page  ====****/
    .latest_product_sec .latest_product_slider .latest_product .text_content .product_title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .latest_product_sec .latest_product_slider .latest_product .text_content .price {
        font-size: 20px;
    }
    /* .best_mobile_sec .container .best_mobile_slider .best_product .text_content {
        padding-right: 30px;
    } */
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        font-size: 16px;
    }
    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 5px;
    }
    .features_sec .features_tab_sec .nav-tabs button span {
        font-size: 11px;
    }

    .video_features_sec .techwiser_video_sec .video_content .video, .video_features_sec .techwiser_video_sec .video_content .video img {
        height: 130px;
    }
    .video_features_sec .techwiser_video_sec .video_content.youtube_video .video, .video_features_sec .techwiser_video_sec .video_content.youtube_video .video img {
        height: 190px;
    }
    .features_sec .bottom_sec {
        margin-top: 21px;
    }

    .latest_article_sec .latest_article .text_content .title {
        font-size: 22px;
    }
    .latest_article_sec .latest_article .article_photo, .latest_article_sec .latest_article .article_photo img {
        height: 316px;
    }
    .latest_article_sec .latest_article_list .latest_article .article_photo {
        width: 118px;
        flex: 0 0 118px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content {
        width: 70%;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content .title {
        font-size: 17px;
    }
    .latest_article_sec .latest_article .text_content .bottom_sec  time {
        padding-left: 10px;
        margin-left: 5px;
    }
    .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 14px;
    }

    /* .latest_product_sec .latest_product_slider .latest_product .latest_phone {
        height: 214px;
    }
    .latest_product_sec .latest_product_slider .latest_product .latest_phone img {
        height: 190px;
    } */

    .comparisons_product_sec .comparisons_product_slider .comparisons_product .comparisons_content .text_content .product_title {
        font-size: 16px;
        line-height: 1.5;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .latest_phone {
        height: 83px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .latest_phone img {
        height: 70px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content  .price {
        font-size: 13px;
    }

    .latest_product_sec .latest_product_slider .latest_product {
        height: 100%;
    }
    .brand_sec .brand_slider .brand_content {
        height: 120px;
    }
    .brand_sec .brand_slider .brand_content img {
        height: 120px;
    }
    .comparisons_content .text_content .product_title {
        font-size: 16px;
        margin: 14px auto 0;
    }
    /****==== Home Page  ====****/

    /****==== New Home Page ====****/
  
    .new_home_page .latest_phone_gallery_sec {
        padding: 100px 0;
    }
    .new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content .product_name {
        font-size: 20px;
    }
    .new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content .price {
        margin: 14px auto 18px;
        font-size: 18px;
    }
    .new_home_page .compare_banner_sec .text_content .title {
        font-size: 48px;
    }
    .new_home_page .benchmark_banner .text_content .title {
        font-size: 48px;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content {
        width: 66%;
        margin-left: 13px;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content .title {
        font-size: 14px;
    }
    .new_home_page .latest_article_sec .article_right .article_post {
        width: 68px;
        height: 78px;
    }
    .new_home_page .latest_article_sec .title {
        margin-bottom: 30px;
    }
    .new_home_page .latest_article_sec .r_blog_grid {
        margin-top: 0;
    }
    .new_home_page .latest_article_sec .article_blog_sec .article_post {
        height: 400px;
    }
    
    .new_home_page .view_detail {
        font-size: 16px;
    }

    .new_home_page .featured_video_modal .modal-dialog {
        max-width: 54%;
        flex: 0 0 54%;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery .owl-nav button {
        top: 120px;
    }
    .new_home_page .brand_sec .h_brand_slider .brand_content, .new_home_page .brand_sec .h_brand_slider .brand_content img {
        height: 120px;
    }
    /****==== New Home Page ====****/


    /****==== Best Phone Page  ====****/
    .best_phone_list .best_phone_content .top_sec .phone_title_sec .number {
        width: 44px;
        height: 44px;
        font-size: 24px;
        margin-right: 14px;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec a {
        font-size: 24px;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec .education_choice {
        width: 48px;
        margin-left: 15px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .specifications_sec .des {
        font-size: 13px;
    }

    .best_gaming_banner .gaming_banner {
        height: 250px;
    }
    .best_gaming_banner .gaming_banner img {
        height: 250px;
    }
    .best_gaming_banner .gaming_banner .play_icon img {
        width: 80px;
    }

    .pros_cons_content .pros_list li .icon {
        margin-right: 20px;
    }

    /* .best_phone_content .phone_details_content .phone_photo_sec .product_photo {
        height: 188px;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .product_photo img {
        height: 154px;
    } */
    .best_phone_content .phone_details_content .phone_photo_sec .form-check label {
        font-size: 17px;
    }   
    .compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone {
        height: 122px;
    }
    .compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone img {
        height: 107px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_add_sec .add_sec span {
        font-size: 17px;
    }
    .compare_search .search-results ul li {
        font-size: 14px;
    }
    /****==== Best Phone Page  ====****/

    /****==== Ranking Page  ====****/
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group {
        width: 17.6%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.brand {
        width: 13.5%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.year {
        width: 13.6%;
    }
    /****==== Ranking Page  ====****/


    /****==== Compare Mobiles Page  ====****/

    .search_product .text_content .product_title {
        font-size: 15px;
       
    }
    .search_product .text_content .price {
        font-size: 22px;
    }
    
    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone {
        height: 178px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone img {
        height: 156px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product .text_content .product_title {
        font-size: 14px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product {
        height: 100%;
        min-height: 200px;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product {
        min-height: 87px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content .price {
        font-size: 12px;
    }
   
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .container {
        max-width: 1180px;
    }
    .compare_mobile_sec .search_compare_check label {
        font-size: 18px;
    }
    section.compare_mobile_sec.hide_features .search_compare_check {
        padding: 10px;
    }
    .compare_mobile_sec .search_compare_check label {
        font-size: 13px;
    }
    .compare_mobile_sec .search_compare_check input {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }
    
    .product_details.compare_mobiles_page.active .new_comparisons_sec {
        padding: 0;
    }
    .new_comparisons_sec .title_content {
        margin-bottom: 40px;
    }
    .new_comparisons_sec .title_content .title {
        margin: 10px auto;
    }
    /****==== Compare Mobiles Page  ====****/


   /****==== Product Details Page  ====****/
   
    .rate .form_group [type="radio"]:checked + label:before, .rate .form_group [type="radio"]:not(:checked) + label:before {
        font-size: 40px;
    }
    .compare_mobile_sec.product_details_compare .container {
        width: 58%;
    }
    .product_info_details .product_thumbnail_slider .owl-nav button {
        top: -12px;
    }

    /* .product_slider {
        height: 335px;
    } */
    /* .product_details .product_details_photo .product_slider {
        height: 330px;
    } */
    /* .product_info_details .product_details_photo .product_slider .product_photo img {
        height: 290px;
    } */

    /* .user_actions_sec {
        width: 71%;
    } */
    .user_actions_sec .user_btn_list {
        width: 100%;
    }
    /****==== Product Details Page  ====****/


    /****==== All Brand Page  ====****/
    .brand_slider .brand_content_sec .barand_wrapper .brand_icon {
        width: 86px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_info .count {
        font-size: 24px;
        margin-bottom: 20px;
    }
    /****==== All Brand Page  ====****/


    /****==== News Blog Page  ====****/
    .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo, .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo img {
        height: 200px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video, .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video img {
        height: 200px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .article_photo, .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .article_photo img {
        height: 82px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .article_photo, .product_details.news_blog_page .latest_article_sec .latest_article .article_photo img {
        height: 220px;
    }

    .features_guides_sec .features_content .text_content .bottom_text_content .title {
        font-size: 34px;
        font-weight: 900;
    }
    .features_guides_sec .features_content .text_content .bottom_text_content .des {
        width: 70%;
        line-height: 29px;
        margin: 24px 0 0;
    }
    .tech_news_sec .tech_news_content .text_content .top_sec {
        height: 72%;
    }
    .tech_news_sec .tech_news_right .text_content .top_sec {
        height: 32%;
    }

    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video {
        height: 145px;
    }
    .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .text_content .title {
        margin-bottom: 15px;
        font-size: 16px;
    }
    /* Featured News Sec  */
    .tech_news_grid_four .tech_news_content .title_comment_sec .title {
        font-size: 18px;
    }
    .tech_news_grid_one .tech_photo {
        height: 510px !important;
    }
    /* Featured News Sec  */


    /****==== News Blog Page  ====****/

    /****==== News Blog Details Page  ====****/
    .details_right .latest_article .text_content {
        width: 67%;
    }
    

    /****==== News Blog Details Page  ====****/

    /****==== Benchmark Page  ====****/
    .filter_table_sec .dt-layout-table .filter_table_content thead th {
        font-size: 13px !important;
    }
     /****==== Benchmark Page  ====****/


    /****==== Tag List Page  ====****/
    .tag_page .latest_article_sec .latest_article .text_content .title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 12px;
    }
    .product_details.news_blog_page .tab_blog_content .latest_article_sec .latest_article .text_content .bottom_sec  time {
        padding-left: 0;
        margin: 8px 0 0px;
        font-size: 13px;
        border-left: none;
    }
    .product_details.news_blog_page .latest_article .text_content .bottom_sec {
        align-items: start;
        flex-direction: column;
    }
    .product_details.news_blog_page .latest_article .text_content .bottom_sec time.entry-date {
        padding-left: 0;
        margin-top: 5px;
    }
    /****==== Tag List Page  ====****/

   
  
 

   



    
}


/* 1400px */
@media screen and (max-width: 1400px) {

    .container {
        max-width: 1100px;
    }
    .title {
        font-size: 22px;
    }
    .view_btn {
        padding: 6px 8px;
    }


    /****==== Search Product ====****/

    .heade_sec .menu_nav .container .navbar-nav a {
        padding: 6px 15px;
        font-size: 14px;
    }

    .heade_sec .top_heade .dropdown.search_dropdown {
        width: 70%;
        margin-left: 20px;
    }
   
    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown {
        padding: 18px 10px;
    }
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .resent_search {
        width: 48%;
        flex: 0 0 48%;
        padding-right: 14px;
        margin-right: 13px;
    }
    
   
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price {
        width: 48%;
    }
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price .best_price_list a {
        padding: 6px 4px;
        font-size: 14px;
    }

    .heade_sec .dropdown-menu.mega_menu, .heade_sec .dropdown-menu.mega_menu.show {
        min-width: 890px;
        top: 33px;
    }
    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content {
        width: 77%;
    }
    .heade_sec .dropdown-menu.mega_menu, .heade_sec .dropdown-menu.mega_menu.show {
        top: 34px;
    }
    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .article_photo {
        height: 120px;
    }
    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .text_content .title {
        font-size: 15px;
        line-height: 19px;
    }
    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec .view_all {
        padding: 6px 10px;
    }
    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec .view_all svg {
        width: 10%;
        margin-left: 6px;
        flex: 0 0 12%;
    }
     /****==== Search Product ====****/

    /****==== Home Page  ====****/
    .container {
        max-width: 900px;
    }
    .latest_product_sec .latest_product_slider .latest_product .text_content .product_title {
        font-size: 16px;
    }
    .latest_product_sec .latest_product_slider .latest_product .text_content .price {
        font-size: 14px;
    }
   
    .video_features_sec .techwiser_video_sec {
        border-radius: 8px;
    }
    .video_features_sec .techwiser_video_sec .video_content .video, .video_features_sec .techwiser_video_sec .video_content .video img {
        height: 80px;
    }
    .video_features_sec .techwiser_video_sec .video_content .text_content .video_title {
        font-size: 15px;
    }
    .video_features_sec .techwiser_video_sec .video_content .video .category {
        padding: 4px 8px;
        font-size: 8px;
    }
    .video_features_sec .techwiser_video_sec .video_content .video .play_icon {
        width: 25px;
    }
    .video_features_sec .techwiser_video_sec .video_content.youtube_video .video, .video_features_sec .techwiser_video_sec .video_content.youtube_video .video img {
        height: 130px;
    }
    .video_features_sec .techwiser_video_sec .video_content.youtube_video .video .play_icon {
        width: 30px;
    }
    .features_sec {
        padding: 16px;
        border-radius: 8px;
    }
    .features_sec .features_tab_sec .nav-tabs button span {
        font-size: 10px;
    }
    .features_sec .features_tab_sec {
        padding: 10px;
    }
    .features_sec .features_tab_sec .nav-tabs {
        padding: 0 0px 14px;
    }
    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 1px;
    }
    .features_sec .features_tab_sec .nav-tabs button .tab_content {
        margin-bottom: 0;
    }
    .features_sec .features_tab_sec .nav-tabs button svg {
        width: 35px;
        height: 37px;
    }
    .features_sec .features_tab_sec .tab-content .device_content .device_list li {
        padding: 6px 10px;
        font-size: 13px;
    }
    .features_sec .features_tab_sec .tab-content .device_content .device_list li span img {
        width: 28px;
    }
    .features_sec .features_tab_sec .tab-content .device_content .device_title {
        font-size: 12px;
        padding: 0px 10px;
    }
    .features_sec .bottom_sec .ranking {
        font-size: 13px;
    }
    .features_sec .bottom_sec {
        margin-top: 14px;
    }
    .features_sec .bottom_sec .ranking svg {
        width: 14px;
    }
    .best_mobile_sec {
        margin: 44px auto;
    }
    .best_mobile_sec .container {
        border-radius: 10px;
    }
    .best_mobile_sec .top_sec {
        margin-bottom: 24px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product {
        padding: 8px;
        border-radius: 9px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .latest_phone {
        width: 58px;
        border-radius: 6px;
        padding: 4px;
        margin-right: 7px;
        flex: 0 0 58px;
        height: 60px;
    }
    .best_mobile_sec .best_mobile_slider .owl-nav button span {
        font-size: 25px;
        line-height: 28px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content {
        padding-right: 0;
        width: 100%;
        margin-bottom: 11px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        font-size: 12px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content  .price {
        font-size: 14px;
    }
    .best_mobile_sec .best_mobile_slider .owl-nav button {
        width: 38px;
        height: 38px;
    }
    /* .best_mobile_sec .container .best_mobile_slider .best_product .rating_sec {
        right: 5%;
        top: 4px;
    } */
    .best_mobile_sec .container .best_mobile_slider .best_product .rating_sec .rating {
        margin: 0;
        font-size: 11px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .rating_sec {
        right: 3%;
        bottom: 5px;
        padding: 2px 4px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .rating_sec .rating {
        font-size: 10px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .rating_sec img {
        width: 10px;
    }
    .explore_price_sec .container {
        border-radius: 0;
        padding: 30px 30px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
}
    .explore_price_sec .explore_btn_sec .explore_btn {
        font-size: 16px;
        padding: 10px 18px;
        margin-right: 18px;
        border-radius: 4px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .rating_sec img {
        width: 10px;
        margin-right: 2px;
    }
    .comparisons_product_sec .comparisons_product_slider .comparisons_product .comparisons_content .text_content .product_title {
        font-size: 12px;
        line-height: 17px;
    }
    .comparisons_product_sec .comparisons_product_slider .comparisons_product .vs_icon {
        top: 44px;
        width: 40px;
    }
    .comparisons_product_sec .comparisons_product_slider .comparisons_product .vs_icon svg {
        width: 44px;
        height: 50px;
    }
    .comparisons_product_sec .comparisons_product_slider .comparisons_product img.vs_icon {
        width: 28px;
        top: 29%;
    }
    .comparisons_product_sec .comparisons_product_slider .comparisons_product .comparisons_content .text_content {
        margin-top: 6px;
    }
    .comparisons_product_sec .comparisons_product_slider .comparisons_product .comparisons_content .comparisons_phone {
        padding: 2px;
        border-radius: 12px;
    }
    .news_letter_sec .news_letter_content .news_letter input.form-control {
        height: 44px;
        font-size: 16px;
    }
    .news_letter_sec .news_letter_content .news_letter  button.submit_btn {
        height: 36px;
        padding: 0 12px;
    }
    .latest_article_sec {
        margin: 60px auto;
    }
    .latest_article_sec .latest_article .text_content .title {
        font-size: 18px;
    }
    .latest_article_sec .latest_article_list {
        padding: 16px;
    }

    .latest_article_sec .latest_article .article_photo, .latest_article_sec .latest_article .article_photo img {
        height: 228px;
    }
    .latest_article_sec .latest_article_list .latest_article {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content .bottom_sec {
        margin-top: -11px;
    }
    .latest_article_sec .latest_article_list .latest_article .article_photo {
        width: 84px;
        height: 48px;
        flex: 0 0 84px;
        border-radius: 5px;
    }

    .latest_article_sec .latest_article_list .latest_article .article_photo img {
        height: 48px;
    }
    .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 14px;
    }
    .latest_article_sec .latest_article .text_content .bottom_sec  time {
        padding-left: 6px;
        margin-left: 3px;
        font-size: 14px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content {
        width: 65%;
    }

    .latest_article_sec .latest_article_list .latest_article .text_content .title {
        font-size: 14px;
        line-height: 13px;
        position: relative;
        top: -6px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content {
        width: 69%;
    }
    

  

    /* .latest_product_sec .latest_product_slider .latest_product .latest_phone {
        border-radius: 10px;
        height: 138px;
    }
    .latest_product_sec .latest_product_slider .latest_product .latest_phone img {
        height: 117px;
    } */
    .best_mobile_sec .container .best_mobile_slider .best_product .latest_phone img {
        height: 50px;
    }
    .brand_sec .brand_slider .brand_content {
        height: 88px;
    }
    .brand_sec .brand_slider .brand_content img {
        height: 86px;
    }

    .latest_article_sec .latest_article_list .latest_article .text_content .bottom_sec span {
        font-size: 10px;
    }
    
    .latest_article_sec .latest_article_list .latest_article .text_content .bottom_sec .published {
        font-size: 10px;
    }

    .popular_comparisons_sec .comparisons_product .vs_icon {
        top: 50px;
        width: 44px;
    }
    .popular_comparisons_sec .comparisons_product .vs_icon svg {
        width: 44px;
        height: 44px;
    }
    .comparisons_content .text_content .product_title {
        font-size: 16px;
        margin: 14px auto 0;
        line-height: 1.4;
    }
    /****==== Home Page  ====****/


    /****==== New Home Page ====****/
    .new_home_page {
        padding-top: 102px;
    }
    .new_home_page .view_all {
        font-size: 16px;
        padding: 8px 18px;
    }
    .new_home_page .view_all svg {
        width: 10px;
        margin-left: 10px;
    }
    .new_home_page .latest_phone_gallery_sec .title_content {
        margin-bottom: 40px;
    }
    /* .new_home_page .latest_phone_gallery_sec .best_phone_grid .phone_post {
        padding: 50px 20px 30px;
    } */
    .new_home_page .latest_phone_gallery_sec .title {
        margin: 12px auto;
    }
    .new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content .product_name {
        font-size: 16px;
    }
    .new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content .price {
        margin: 12px auto 8px;
        font-size: 16px;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery .owl-nav button {
        top: 94px;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery {
        margin-bottom: 50px;
    }
    .new_home_page .banner_latest_banner_sec .latest_news {
        padding: 40px 60px;
        margin: 100px auto;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .text_content .title {
        font-size: 54px;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .text_content .des {
        font-size: 24px;
        margin: 8px auto 20px;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .latest_phone {
        right: 6%;
        top: -36px;
        width: 24%;
    }
    .new_home_page .best_camera_sec .top_sec .title_sec .h_title {
        font-size: 24px;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .top_sec .title_sec .h_title {
        font-size: 16px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        margin-top: 47px;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .features_content  .feature_list {
        padding: 15px;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a .icon {
        width: 28px;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list .l_sec span {
        font-size: 13px;
        margin-right: 7px;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a {
        margin-bottom: 20px;
        padding: 10px 10px;
        align-items: center;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a .icon {
        width: 28px;
    }
    .new_home_page .featured_video_modal .modal-dialog {
        max-width: 62%;
        flex: 0 0 62%;
    }

    .new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .text_content .product_name {
        font-size: 18px;
    }
    .new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .text_content .price {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .features_content .top_sec .title {
        font-size: 20px;
    }
    .new_home_page .featured_video_sec {
        padding: 80px 0;
    }
    .new_home_page .featured_video_sec .title {
        margin: 10px auto 14px;
    }
    .new_home_page .featured_video_sec .featured_video_content {
        margin: 40px auto 30px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video {
        height: 300px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .video_title {
        font-size: 26px;
        line-height: 1.2;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .review_tag {
        padding: 6px 10px;
        font-size: 16px;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video {
        height: 140px;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .play_icon {
        width: 40px;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .review_tag {
        font-size: 12px;
        padding: 3px 10px;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .video_title {
        font-size: 18px;
        bottom: 10%;
        margin: 0;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .phone_post {
        padding: 20px 15px 20px;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .product_name {
        font-size: 14px;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .price {
        font-size: 14px;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .view_detail {
        font-size: 14px;
    }
    .new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table thead th {
        font-size: 13px;
    }
    .new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table tbody tr td .brand_name {
        font-size: 11px;
    }
    .new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table tbody tr td .date {
        font-size: 11px;
    }
    .new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table tbody tr td {
        padding: 4px 30px;
        font-size: 11px;
    }
    .new_home_page .benchmarks_deals .benchmarks_table_sec .title {
        font-size: 20px;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .top_sec .title {
        font-size: 20px;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .top_sec .view_all {
        font-size: 16px;
    }
    .new_home_page .benchmarks_deals {
        padding: 80px 0;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .product_name {
        font-size: 15px;
    }
    .new_home_page .comparisons_sec {
        padding: 80px 0;
    }
    .new_home_page .comparisons_sec .title_content {
        margin-bottom: 50px;
    }
    .new_home_page .comparisons_sec .title_content .title {
        margin: 10px auto 14px;
    }
    .new_home_page .comparisons_sec .comparisons_grid .comparisons_content img {
        width: 64px;
    }
    .new_home_page .comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono {
        width: 44%;
        height: 200px;
    }
    .new_home_page .latest_phone_gallery_sec {
        padding: 80px 0;
    }
    .new_home_page .compare_banner_sec .text_content .title {
        font-size: 40px;
    }
    .new_home_page .benchmark_banner .text_content .title {
        font-size: 40px;
        margin: 0 0 20px;
    }
    .new_home_page .latest_phone_gallery_sec .compare_banner_sec {
        margin-top: 90px;
        padding: 30px 70px;
    }
    .new_home_page .phone_tag {
        top: -12px;
    }
    .new_home_page .comparisons_sec .comparisons_slider .owl-nav button {
        top: 84px;
    }
    .phone_tag {
        padding: 4px 6px;
        font-size: 14px;
    }
    .view_detail {
        font-size: 14px;
    }
    .new_home_page .brand_sec {
        padding: 60px 0 20px;
        margin: 0 0 40px;
    }
    .new_home_page .brand_sec .title_content {
        margin-bottom: 40px;
    }
    .new_home_page .brand_sec .h_brand_slider .brand_content{
        align-items: center;
        height: 80px;
    }
   
    .new_home_page .brand_sec .h_brand_slider .brand_content img {
        height: 80px;
    }
    .new_home_page .brand_sec .brand_content .brands_icon {
        margin: 0 8px;
        width: 13%;
    }
    .new_home_page .latest_article_sec .title_content {
        margin-bottom: 40px;
    }
    .new_home_page .latest_article_sec .article_right {
        padding: 13px;
    }
    .new_home_page .latest_article_sec .article_right .article_blog {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .new_home_page .latest_article_sec .article_right .article_post {
        width: 54px;
        height: 60px;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content {
        width: 73%;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content .name_date {
        display: flex;
        flex-direction: column;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content .title {
        font-size: 12px;
        line-height: 17px;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content .name_date .name {
        font-size: 11px;
        margin: 0 0 2px;
        border-right: none;
    }
    .new_home_page .latest_article_sec .article_blog_sec .article_post {
        height: 320px;
    }
    .new_home_page .latest_article_sec .article_blog_sec .text_content .title {
        font-size: 22px;
    }
    .new_home_page .latest_article_sec .article_blog_sec .text_content .bottom_sec .name_date .name {
        font-size: 14px;
        line-height: 16px;
    }
    .phone_tag {
        padding: 4px 6px;
        font-size: 12px;
        top: 18px;
    }

    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .owl-nav button {
        top: 130px;
    }
    .new_home_page .latest_phone_gallery_sec .best_phone_grid .phone_post {
        padding: 20px;
    }
    /* .new_home_page .latest_phone_gallery_sec .best_phone_grid .phone_post {
        height: 250px;
    }
    .new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .phone_post {
        height: 250px;
    } */
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .phone_post {
        height: 310px;
    }
  
    /****==== New Home Page ====****/

    
    .best_phone_content .phone_details_content .phone_photo_sec .product_photo {
        /* height: 140px; */
        padding: 10px;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .product_photo img {
        /* height: 116px; */
    }
    .best_phone_content .phone_details_content .phone_photo_sec .form-check {
        padding-left: 0;
    }


    .brand_sec.all_brand .brand_content_sec {
        padding: 13px;
    }
    .brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_info .count {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_icon {
        width: 54px;
    }


   /****==== Product Details Page  ====****/
   .product_slider {
        width: 94%;
    }
    .product_info_details .product_thumbnail_slider {
        width: 70%;
    }
    .product_specifications {
        padding: 26px;
    }
    .product_specifications .specifications_content .text_content  .des {
        font-size: 14px;
        line-height: 24px;
    }
    .product_info_details {
        margin-bottom: 80px;
    }
    .product_details .product_text_content .pros_cons_sec .pros_content .pros_list li {
        padding: 3px 0;
        font-size: 14px;
    }
    .product_details .product_text_content .pros_cons_sec .pros_content .pros_list {
        padding: 10px 27px;
    }
    .product_details .product_text_content .alert_sec {
        padding: 10px 10px;
    }
    .product_details .product_text_content .alert_sec .des {
        font-size: 16px;
    }
    .product_details .product_text_content .alert_sec .view_btn {
        font-size: 10px;
    }
    .product_details .product_text_content .alert_sec .view_btn i {
        margin-left: 8px;
        font-size: 14px;
    }
    .specifications_sec {
        padding: 20px 20px;
    }
    .specifications_sec .specifications_info .specifications .accordion-button {
        font-size: 18px;
    }
    .specifications_sec .specifications_info .specifications {
        padding: 16px 18px;
    }
    .specifications_sec .specifications_info .specifications .accordion-body .product_list li {
        font-size: 16px;
    }

    .product_details .product_text_content .pros_cons_content .pros_cons_middle {
        width: 170px;
        height: 170px;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons {
        width: 130px;
        height: 130px;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons_middle:after {
        width: 144px;
        height: 144px;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons span {
        font-size: 16px;
    }
    .product_details .product_text_content .pros_cons_content .pros_list li .icon {
        width: 18px;
        height: 17px;
    }
    .pros_cons_mobile .pros_cons_content .pros_content_sec .bottom_sec {
        font-size: 17px;
        line-height: 14px;
    }
    .pros_cons_mobile .pros_cons_content .pros_content_sec .bottom_sec .icon {
        width: 14px;
        margin-right: 8px;
        position: relative;
        top: -2px;
    }
    /* .user_actions_sec {
        width: 95%;
    } */
    /* .product_details .product_text_content .pros_cons_content .pros_list li  span {
        width: 116px;
        font-size: 10px;
    } */

    .product_details .product_text_content .pros_cons_content .pros_list li span {
        font-size: 12px;
        line-height: 17px;
    }
    /* .product_details .product_details_photo .product_slider {
        height: 280px;
    } */
    /* .product_info_details .product_details_photo .product_slider .product_photo img {
        height: 234px;
    } */
    /****==== Product Details Page  ====****/

    /****==== Best Phone Page  ====****/
    .best_phone_list .best_phone_content {
        padding: 20px;
        margin-bottom: 40px;
    }
    .product_specifications .specifications_content .icon {
        width: 34px;
        margin-right: 10px;
        flex: 0 0 34px;
    }
    .product_specifications .specifications_content .icon svg {
        width: 100%;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .specifications_sec .specifications_content {
        margin-bottom: 7px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .specifications_sec .des {
        font-size: 12px;
        line-height: 17px;
        word-wrap: break-word;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_photo {
        padding: 11px;
        border-radius: 15px;
        flex: 0 0 25%;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec .number {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec a {
        font-size: 20px;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec .education_choice {
        width: 42px;
        margin-left: 15px;
    }
    .best_phone_list .best_phone_content .top_sec .compare_btn {
        padding: 10px 14px;
        line-height: 17px;
    }
    .best_phone_list .best_phone_content .top_sec {
        margin-bottom: 25px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content  .price_feature {
        margin: 20px auto;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .price_feature .price {
        font-size: 28px;
    }
    .best_phone_content .phone_details_content .product_text_content .specifications_sec .specifications_content .icon {
        width: 24px;
        flex: 0 0 24px;
        margin-right: 4px;
    }
    .product_specifications .specifications_content .text_content .process {
        font-size: 13px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .specifications_sec {
        padding: 6px 10px;
        height: 100%;
    }

    .pros_cons_content .pros_cons_middle {
        width: 330px;
        height: 330px;
    }
    .pros_cons_content .pros_cons_middle:after {
        width: 300px;
        height: 300px;
    }
    .pros_cons_content .pros_cons {
        width: 250px;
        height: 250px;
    }
    .pros_cons_content .pros_cons span {
        font-size: 24px;
    }
    .pros_cons_content .pros_list li .icon {
        width: 44px;
        height: 55px;
    }
    .pros_cons_content .pros_list.cons li .icon {
        margin-left: 20px;
    }
    .pros_cons_content .pros_list li span {
        font-size: 12px;
        width: 36%;
    }
    .product_info_details .product_thumbnail_slider .owl-nav button {
        top: -22px;
    }
  
    /****==== Best Phone Page  ====****/

    /****==== Phone Finder Page  ====****/
    .l_sec .title_sec .title {
        font-size: 22px;
    }
    .l_sec .title_sec .title a {
        font-size: 16px;
    }
    .l_sec .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 17px;
    }
    .l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li .form-check label {
        font-size: 17px;
        line-height: 25px;
    }
    .l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li .form-check input {
        width: 20px;
        height: 17px;
    }


    .best_phone_content .phone_details_content .product_text_content .score_sec .feature_storage {
        font-size: 12px;
        border-radius: 25px;
        padding: 6px 10px;
    }
    .best_phone_content .phone_details_content .product_text_content .title_price .price {
        font-size: 22px;
    }
    .best_phone_content .phone_details_content .product_text_content .product_specifications {
        padding: 12px;
        margin-top: 12px;
    }
    .best_phone_content .phone_details_content .product_text_content .specifications_sec .specifications_content .text_content .des {
        font-size: 8px;
        line-height: 10px;
    }
    .best_phone_content .phone_details_content .product_text_content .product_specifications .more {
        font-size: 14px;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .product_photo {
        margin-bottom: 17px;
    }

    .best_phone_content .phone_details_content .phone_photo_sec .form-check label {
        font-size: 13px;
    }
    /****==== Phone Finder Page  ====****/

    /****==== Ranking Page  ====****/
    .ranking_table_sec .ranking_table tr td {
        padding: 12px 3px;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group {
        width: 24%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.brand {
        width: 18.2%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.year {
        width: 18%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form  .form_group.reset_btn {
        width: 18%;
    }
    /****==== Ranking Page  ====****/

    /****==== Compare Mobiles Page  ====****/
    .compare_mobile_sec .search_compare_wrapper {
        padding: 15px;
    }
    .search_product .text_content .price {
        font-size: 18px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_add_sec .add_sec span {
        font-size: 16px;
    }
    .compare_mobile_sec .search_compare_wrapper .compare_search span.select2.select2-container span.select2-selection--single span.select2-selection__rendered {
        font-size: 13px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_add_sec .add_sec .add_ico svg {
        width: 90px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_add_sec .add_sec .add_ico {
        margin: 25px auto;
    }
    .compare_mobile_sec .view_btn.compare_btn {
        margin: 40px auto 0;
        font-size: 16px;
        padding: 10px 30px;
    }
    .comparisons_info .comparisons_accordion .accordion-item {
        padding: 0 10px;
    }
    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td:first-child {
        width: 16%;
    }
    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td {
        font-size: 14px;
        width: 20%;
        padding: 10px;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header {
        top: 104px;
    }
    .compare_mobile_sec.compare_mobile_header .container {
        max-width: 900px;
        padding: 20px 15px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .close_icon {
        left: auto;
         line-height: 15px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content .product_title {
        font-size: 10px;
        width: 80%;
        line-height: 15px;
    }
    .compare_search .search-results ul li {
        font-size: 12px;
        padding: 3px 4px;
    }
  
    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone {
        height: 126px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone img {
        height: 104px;
    }

    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .container {
        max-width: 880px;
    }
    
    .compare_mobile_sec .search_compare_check {
        width: 17%;
    }
    section.compare_mobile_sec.compare_mobile_header .search_compare_check .mobile_title_sec .m_title {
        
        font-size: 16px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone {
        height: 60px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone img {
        height: 48px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper {
        padding: 16px 20px;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product {
        min-height: 63px;
        height: 74px;
    }
    .compare_mobile_sec.hide_features .search_compare_wrapper .text_content .price_sec .price {
        font-size: 15px;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_check .form-check label {
        font-size: 12px;
    }
    .compare_mobile_sec.hide_features .search_compare_wrapper .text_content .price_sec .price {
        font-size: 8px;
    }

    .new_comparisons_sec .title_content .title {
        margin: 10px auto 14px;
    }

    .new_comparisons_sec .comparisons_grid .comparisons_content img {
        width: 110px;
    }
    .new_comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono {
        width: 44%;
        height: 200px;
    }
    .new_comparisons_sec .comparisons_slider .owl-nav button {
        top: 94px;
    }
    .new_comparisons_sec .comparisons_grid .text_content .name {
        font-size: 14px;
        padding: 0 4px;
    }
    .new_comparisons_sec .view_btn svg {
        width: 8px;
        margin-left: 10px;
    }
    /****==== Compare Mobiles Page  ====****/

    

    /****==== Product Details Page  ====****/


    /****==== All Brand Page  ====****/
    .brand_slider .brand_content_sec .barand_wrapper .brand_icon {
        width: 63px;
    }
    .brand_slider .brand_content_sec {
        height: 110px;
        padding: 17px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_info 
    .view_btn {
        font-size: 12px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_icon {
        width: 74px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_info .count {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_info 
    .view_btn {
        font-size: 12px;
        padding: 3px 8px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .close_icon {
        width: 16px;
        height: 16px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .close_icon svg {
        width: 10px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_info {
        margin-left: 10px;
    }
     /****==== All Brand Page  ====****/

     /****==== News Blog Page  ====****/
     .product_details.news_blog_page .news_tab_sec .nav-tabs {
        width: 84%;
    }

   
     .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo {
        margin-bottom: 10px;
    }
     .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo, .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo img {
        height: 130px;
    }
    .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .text_content .title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
        display: block;
        text-align: left;
    }
    .product_details.news_blog_page .tab_blog_content .about_mobile_photo {
        padding: 40px 30px 20px;
    }

    .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .text_content .title {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
        display: block;
        text-align: left;
    }

    .product_details.news_blog_page .tab_blog_content .about_mobile_photo .latest_article_sec .latest_article .text_content .bottom_sec time {
        font-size: 11px;
        margin-left: 0;
        padding-left: 0;
    }

    .product_details.news_blog_page .tab_blog_content .about_mobile_photo .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 11px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video, .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video img {
        height: 110px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video, .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video img {
        height: 140px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content {
        width: 68%;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content .title {
        line-height: 19px;
        display: inline-block;
        text-align: left;
        margin-bottom: 8px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .article_photo, .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .article_photo img {
        height: 60px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .article_photo, .product_details.news_blog_page .latest_article_sec .latest_article .article_photo img {
        height: 160px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .article_photo {
        margin-bottom: 10px;
    }
    .product_details.news_blog_page .video_features_sec .techwiser_video_sec .video_content .text_content .video_title {
        font-size: 13px;
        line-height: 17px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article {
        padding-bottom: 10px;
        margin-bottom: 10px;
        align-items: center;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article:last-child {
        margin-bottom: 0;
    }

    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article:last-child {
        margin-bottom: 0;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .title {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 10px;
    }
    
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .title {
        font-size: 14px;
    }
    
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .bottom_sec span {
        font-size: 12px;
        line-height: 7px;
    }
    
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .bottom_sec  time {
        padding-left: 6px;
        margin-left: 6px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo {
        width: 19%;
        flex: 0 0 19%;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content {
        width: 76%;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo, .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo img {
        height: 50px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 12px;
    }
    
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .bottom_sec  time {
        font-size: 12px;
    }
    .user_actions_sec .user_btn {
        margin-right: 68px;
    }
    .features_guides_sec .features_content {
        height: 510px;
    }
    .features_guides_sec .features_content .text_content .bottom_text_content .des {
        width: 80%;
    }
    .features_guides_sec .features_content .text_content .bottom_text_content .title {
        font-size: 30px;
        width: 76%;
    }
    .features_guides_sec .features_content .text_content .title_comment_sec {
        bottom: 0;
    }
    .tech_news_sec .tech_news_right .text_content .bottom_text_content .title {
        font-size: 16px;
        margin: 0;
    }
    .tech_news_sec .tech_news_right .text_content .top_sec .text_content  .date {
        font-size: 12px;
    }
    .tech_news_sec .tech_news_right .text_content .top_sec .text_content .name {
        font-size: 12px;
    }
    .tech_news_sec .tech_news_content .text_content .top_sec {
        height: 74%;
    }
    .top_news_sec .top_news_blog .tech_photo {
        height: 330px;
    }
    .top_news_sec .top_news_blog .date {
        right: 10px;
        font-size: 14px;
    }


    /* Tab & News New css*/
    .category_link_sec .category_link_content .trending_icon {
        width: 12%;
        margin-right: 12%;
        flex: 0 0 12%;
    }
    .tech_news_grid_four .tech_news_content .title_comment_sec .title {
        font-size: 15px;
    }
    .tech_news_grid_four .tech_news_content .tech_photo {
        height: 260px;
    }
    .tech_news_grid_three .tech_news_content .tech_photo {
        height: 280px;
    }
    .tech_news_grid_three .tech_news_content .title_comment_sec .title {
        font-size: 16px;
    }
    .tech_news_grid_two .tech_news_grid .tech_photo {
        height: 330px;
    }
    .tech_news_grid_two .tech_news_content .text_content .title_comment_sec .bottom_text_content .title {
        font-size: 18px;
    }




    
   
   
    /* Tab & News New css*/
     /****==== News Blog Page  ====****/

     /****==== News Details Page  ====****/
     .news_details_sec {
        margin-top: 50px;
    }
    .details_right .related_post_sec  .text_content {
        width: 80%;
        padding: 10px;
    }
    .details_right .latest_article .text_content {
        width: 67%;
    }
    .details_right .latest_article .article_photo {
        width: 28%;
        height: 50px;
        margin-right: 8px;
        border-radius: 5px;
    }
    .details_right .latest_article .text_content .title {
        font-size: 12px;
        line-height: 15px;
        display: block;
    }
    .blog_slider_sec .blog_slider .latest_article .text_content .title {
        font-size: 16px;
    }
    .blog_slider_sec .blog_slider .latest_article .article_photo {
        height: 140px;
    }
    .product_details.news_blog_page .latest_article .text_content .bottom_sec {
        margin-top: 0;
    }
    .blog_slider_sec .blog_slider .latest_article .text_content .bottom_sec span {
        font-size: 10px;
    }
    .blog_slider_sec .blog_slider .latest_article .text_content .bottom_sec  time {
        font-size: 10px;
        padding-left: 5px;
        margin-left: 6px;
        height: 10px;
        line-height: 10px;
    }
    .details_right .related_post_sec  .title {
        font-size: 15px;
        line-height: 1.2;
        display: block;
    }
   
    .details_right .latest_article .text_content {
        width: 65%;
    }
    .news_blog_page .latest_article .text_content .bottom_sec span {
        font-size: 12px;
    }
    .news_blog_page .latest_article .text_content .bottom_sec time {
        font-size: 12px;
    }

    .product_details.news_blog_page .news_details_sec {
        margin-top: 40px;
    }
    .news_details_sec .news_details .text_content .bottom_sec {
        margin-bottom: 8px;
    }
    .news_details_sec .news_details .text_content .sub_title {
        margin-top: 28px;
        font-size: 20px;
    }
    .blog_slider_sec .blog_slider .latest_article .text_content .title {
        font-size: 14px;
        line-height: 18px;
        display: block;
    }

    .product_details.news_blog_page .blog_slider_sec .blog_slider .latest_article .text_content .bottom_sec span {
        font-size: 10px;
        height: 18px;
    }
    .product_details.news_blog_page .blog_slider_sec .blog_slider .latest_article .bottom_sec time {
        margin-left: 4px;
        padding-left: 4px;
        font-size: 10px;
    }
    .details_right .related_post_sec .related_post_photo {
        height: 160px;
    }
    .details_right .related_post_sec  .title {
        font-size: 14px;
    }
    .details_right .related_post_sec .bottom_sec time {
        font-size: 12px;
    }
    /* .blog-details-wrapper .wp-block-heading {
        font-size: 20px;
        margin-bottom: 20px;
        margin-top: 0;
    } */
    .blog-details-wrapper ul li a {
        padding: 12px 0;
        font-size: 16px !important;
    }
    /****==== News Details Page  ====****/

    /****==== Benchmark Page  ====****/
    .benchmark_page .container {
        max-width: 100%;
    }
    .benchmark_page .best_info {
        margin-bottom: 40px;
    }
    .benchmark_page .best_info {
        margin-bottom: 40px;
    }
    /****==== Benchmark Page  ====****/

    /****==== Deals Page  ====****/
    .product_details .best_info {
        margin-top: 50px;
    }
    .deals_page .deals_product_sec .latest_product .display_tag {
        top: -2%;
    }
    .deals_product_sec .latest_product .text_content .product_title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .deals_product_sec .latest_product .text_content .price {
        font-size: 18px;
    }
    .deals_product_sec .latest_product .text_content .price.offer_price {
        font-size: 20px;
    }
   /****==== Deals Page  ====****/

    /****==== Tag List Page  ====****/

    .tag_page {
        margin-top: 103px;
    }
    .tag_page .tag_content:before {
        top: -110px;
    }
    .tag_page.product_details.news_blog_page  .latest_article_sec .latest_article .text_content .title {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 10px;
    }
    .tag_page.product_details.news_blog_page  .latest_article_sec .latest_article .text_content .bottom_sec  time, .tag_page.product_details.news_blog_page  .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 11px;
    }
    /****==== Tag List Page  ====****/




     .display_tag {
        padding: 3px 7px;
        font-size: 10px;
        top: 4%;
        left: 13%;
    }

    .latest_product_sec .latest_product_slider .latest_product .rating_sec {
        top: 25px;
        padding: 4px;
        right: auto;
    }

    

    /* Footer Sec */
    .footer_sec {
        padding-bottom: 60px;
    }
    .footer_sec .f_about .f_logo {
        width: 150px;
    }
    .footer_sec .f_about .des {
        margin-top: 20px;
    }
    .footer_sec .f_link .f_title {
        margin-bottom: 20px;
    }
    .footer_sec .f_link .f_nav_list li {
        margin-bottom: 10px;
    }
    .footer_sec .footer_top {
        padding: 60px 0;
    }
    .footer_sec .f_about .f_social_content .f_social a {
        width: 34px;
        margin-right: 14px;
        height: 34px;
        flex: 0 0 34px;
    }
    .footer_sec .f_about .f_social_content .f_social a img {
        width: 20px;
    }
    .footer_sec .f_bottom .f_bottom_menu {
        padding: 0 0 30px;
        margin: 0 0 30px;
    }

    /* Footer New */
    .footer_new .footer-socials li {
        margin: 0 26px 30px;
    }
}


/* 1200px */
@media screen and (max-width: 1200px) {

    .container {
        max-width: 900px;
    }
    .title {
        font-size: 20px;
    }
    /****==== Serarch Product  ====****/

   
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .resent_search {
        width: 48%;
        flex: 0 0 48%;
    }
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price {
        width: 48%;
    }
   
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a .text_content .product_title {
        font-size: 15px;
        color: #3c3c3c;
    }
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .product_search_list a .text_content .price {
        font-size: 14px;
        color: #898585;
        margin-bottom: 0;
    }
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price .best_price_list a {
        margin-bottom: 6px;
    }
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price .best_price_list a {
        padding: 5px 14px;
        margin-bottom: 6px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
        font-size: 14px;
    }


    .heade_sec .top_heade .dropdown.search_dropdown {
        width: 70%;
        margin-left: 18px;
    }

    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .text_content .title {
        font-size: 15px;
        line-height: 20px;
    }
    /****==== Serarch Product  ====****/

    /****==== Home Page  ====****/
    .latest_product_sec {
        margin-top: 30px;
    }
    .latest_product_sec .top_sec {
        margin-bottom: 22px;
    }
    .latest_product_sec .latest_product_slider .latest_product .text_content .product_title {
        font-size: 14px;
    }
    .latest_product_sec .latest_product_slider .latest_product .text_content .price {
        font-size: 16px;
    }
    .latest_product_sec .latest_product_slider .latest_product .price_sec img {
        width: 34px;
    }
    .video_features_sec .techwiser_video_sec .video_content .video, .video_features_sec .techwiser_video_sec .video_content .video img {
        height: 90px;
    }
   
    .features_sec .features_tab_sec .tab-content .device_content .device_list li {
        padding: 7px 10px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product {
        border-radius: 6px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .latest_phone {
        border-radius: 4px;
    }
    /* .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        width: 65%;
    } */
    .best_mobile_sec .container {
        padding: 20px 30px;
    }
    .brand_sec .brand_slider .brand_content {
        height: 120px;
    }
    .brand_sec .brand_slider .brand_content {
        height: 90px;
    }
    .brand_sec .brand_slider .brand_content img {
        height: 90px;
    }
    .explore_price_sec .explore_btn_sec .explore_btn img {
        height: 20px;
    }
    
    /****==== Home Page  ====****/

    /****==== New Home Page ====****/
    .new_home_page .view_all {
        font-size: 14px;
        padding: 8px 12px;
    }
    .new_home_page .view_all svg {
        width: 8px;
        margin-left: 10px;
    }
    .new_home_page .latest_phone_gallery_sec {
        padding: 50px 0;
    }
    .new_home_page .banner_latest_banner_sec .latest_news {
        padding: 40px 60px;
        margin: 80px auto;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .text_content .title {
        font-size: 40px;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .text_content .des {
        font-size: 22px;
        margin: 5px auto 18px;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .latest_phone {
        right: 6%;
        top: -33px;
        width: 21%;
    }
    .new_home_page .best_camera_explore {
        padding: 60px 0;
    }
    .new_home_page .sub_title {
        font-size: 16px;
    }
    .new_home_page .best_camera_sec .top_sec .title_sec .h_title {
        font-size: 20px;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .top_sec .title_sec .h_title {
        font-size: 16px;
        margin-top: 40px;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a {
        margin-bottom: 15px;
        padding: 6px 10px;
    }
    .new_home_page .best_camera_explore .explore_feature_sec .features_content .feature_list a .icon {
        width: 27px;
    }
    .new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .text_content .product_name {
        font-size: 16px;
    }
    .new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .text_content .price {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .new_home_page .best_camera_explore .best_phone_slider .owl-dots {
        margin-top: 30px;
    }
    .new_home_page .featured_video_sec {
        padding: 50px 0;
    }
    .new_home_page .benchmarks_deals {
        padding: 50px 0;
    }
    .new_home_page .comparisons_sec {
        padding: 50px 0;
    }
    .new_home_page .comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono {
        height: 170px;
    }
    .new_home_page .comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono.left_phone img {
        left: -13%;
        margin-top: -40px;
    }
    .new_home_page .comparisons_sec .comparisons_grid .comparisons_content img {
        width: 60px;
    }
    .new_home_page .comparisons_sec .comparisons_grid .text_content .title {
        font-size: 13px;
        margin-top: 11px;
        line-height: 1.4;
    }
    .new_home_page .explore_price {
        padding: 50px 0;
    }
    .new_home_page .explore_price .title {
        margin-bottom: 40px;
        font-size: 24px;
    }
    .new_home_page .featured_video_modal .modal-dialog {
        max-width: 74%;
        flex: 0 0 74%;
    }
    .new_home_page .comparisons_sec .comparisons_slider .owl-nav button {
        top: 68px;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .phone_post {
        padding: 20px 15px 20px;
        margin-bottom: 12px;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .text_content .btn_ecommerce .ecommerce_icon {
        width: 25px;
    }
    .new_home_page .brand_sec .h_brand_slider .brand_content {
        height: 80px;
    }
    .new_home_page .brand_sec .h_brand_slider .brand_content img {
        height: 80px;
    }
    /****==== New Home Page ====****/



     /****==== Product Details Page  ====****/
     .product_slider {
        width: 70%;
    }
    .product_info_details .product_thumbnail_slider {
        width: 58%;
    }
    .product_info_details .product_thumbnail_slider .owl-nav button span {
        font-size: 64px;
    }
    .product_details .product_text_content .top_sec .compare_btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    .product_details .product_text_content .score_sec {
        margin-top: 6px;
    }
    .product_details .product_text_content .price span {
        font-size: 24px;
    }
    .product_details .product_text_content  .price {
        font-size: 16px;
        margin: 0 auto 20px;
    }
    .product_details .product_text_content .market_company .company {
        width: 62px;
    }
    .product_specifications .specifications_content .icon {
        width: 30px;
        margin-right: 14px;
        flex: 0 0 30px;
    }
    .product_specifications {
        padding: 16px;
    }
    .product_specifications .specifications_content .text_content  .des {
        font-size: 13px;
        line-height: 16px;
    }
    .product_specifications .specifications_content {
        margin-bottom: 28px;
    }
    .product_specifications .more {
        font-size: 14px;
    }
    .product_details .product_text_content .device_info_sec {
        padding: 10px 8px;
        margin-top: 20px;
    }
    .product_details .product_text_content .device_info_sec img {
        width: 15px;
        margin-right: 6px;
    }
    .product_details .product_text_content .device_info_sec .device_info_des {
        font-size: 12px;
    }
    .product_details .product_text_content .pros_cons_sec {
        margin-top: 20px;
    }
    .product_details .product_text_content .pros_cons_sec .pros_content .top_sec {
        padding: 8px 8px;
        margin-bottom: 2px;
    }
    .product_details .product_text_content .top_sec .pros {
        font-size: 14px;
    }
    .product_details .product_text_content .top_sec .pros svg {
        width: 16px;
        margin-left: 3px;
    }
    
    .product_details .product_text_content .pros_cons_sec .pros_content .pros_list li {
        padding: 3px 0;
        font-size: 13px;
    }
    .product_details .product_text_content .alert_sec .des {
        font-size: 14px;
    }
    .product_details .product_text_content .alert_sec .view_btn {
        font-size: 11px;
    }
    .product_details .product_text_content .alert_sec .view_btn i {
        margin-left: 6px;
        font-size: 11px;
    }
    .product_details .product_text_content .alert_sec .des {
        font-size: 13px;
    }
    .specifications_sec .specifications_info .specifications .accordion-body .product_list li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .style_timeline .timeline_content_sec .date {
        font-size: 12px;
        padding: 6px 12px;
    }
    .style_timeline .timeline_content_sec .text_content .des {
        font-size: 13px;
        margin: 0;
        line-height: 21px;
    }

    .product_specifications .specifications_content .icon {
        margin-right: 6px;
    }

   
    /*.user_actions_sec*/ 
    .user_actions_sec {
        padding: 10px;
    }
   
    .user_actions_sec .title {
        margin-bottom: 40px;
    }
    .user_actions_sec .user_btn {
        margin-right: 70px;
    }
    .user_actions_sec .user_btn .icon {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
    }
    
    .user_actions_sec .user_btn.want .icon svg {
        width: 18px;
    }
    .user_actions_sec .user_btn.have .icon svg {
        width: 19px;
    }
    .user_actions_sec .user_btn.had .icon svg {
        width: 18px;
    }
    .user_actions_sec .user_btn.review .icon svg {
        height: 18px;
    }
    .user_actions_sec .user_btn .icon i {
        font-size: 15px;
    }
    .user_actions_sec .user_btn.alert .icon svg {
        width: 15px;
    }
    .user_actions_sec .user_btn.alert .add_icon {
        left: 45px;
    }
    .product_details .product_text_content .link_sec {
        margin-top: 17px;
    }
    .product_details .product_text_content .link_sec .view_btn svg {
        margin: 0 7px 0 0;
        width: 21px;
    }
    .product_details .product_text_content .link_sec .view_btn svg {
        margin: 0 7px 0 0;
        width: 19px;
        height: 22px;
    }
    .product_details .product_text_content .pros_cons_content {
        margin-top: 20px;
    }
    .pros_cons_content .pros_list li {
        font-size: 20px;
        margin: 20px auto !important;
        flex-wrap: wrap;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons_middle {
        width: 120px;
        height: 120px;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons {
        width: 90px;
        height: 90px;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons_middle:after {
        width: 100px;
        height: 100px;
    }
    .product_details .product_text_content .pros_cons_content .pros_list li .icon {
        width: 16px;
        height: 12px;
        margin-right: 4px;
        margin-top: 2px;
    }
    .product_details .product_text_content .pros_cons_content .pros_list li .icon svg {
        width: 13px;
        height: 27px;
    }
    /* .product_details .product_details_photo .product_slider {
        height: 260px;
    }
    .product_info_details .product_details_photo .product_slider .product_photo img {
        height: 214px;
    } */
    .product_details .product_text_content .pros_cons_content .pros_list li  span {
        width: 144px;
        font-size: 11px;
    }
    .pros_cons_mobile .pros_cons_content .pros_content_sec .bottom_sec {
        font-size: 13px;
        line-height: 14px;
    }
    .pros_cons_mobile .pros_cons_content .pros_content_sec .bottom_sec .icon {
        width: 12px;
    }
    .pros_cons_mobile .pros_cons_content .pros_content_sec .bottom_sec {
        width: 51%;
    }
    /****==== Product Details Page  ====****/


    /****==== Best Phone Page  ====****/
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .price_feature .price {
        font-size: 24px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .price_feature  .feature_storage {
        font-size: 12px;
        padding: 6px 12px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .score_sec .date {
        font-size: 16px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications {
        padding: 14px;
    }


    .pros_cons_content .pros_cons_middle {
        width: 280px;
        height: 280px;
    }
    .pros_cons_content .pros_cons_middle:after {
        width: 240px;
        height: 240px;
    }
    .pros_cons_content .pros_cons {
        width: 200px;
        height: 200px;
    }
    .pros_cons_content .pros_cons span {
        font-size: 20px;
    }
    .pros_cons_content .pros_list li span {
        font-size: 12px;
        width: 44%;
    }
    .pros_cons_mobile .pros_cons_content .pros_list li span {
        width: 84%;
        font-size: 16px;
    }

    .product_details .product_text_content .pros_cons_content .pros_cons span {
        font-size: 11px;
    }

    .product_details .product_text_content .link_sec .view_btn {
        font-size: 12px;
        margin-bottom: 4px;
    }
    /* .best_phone_content .phone_details_content .phone_photo_sec .product_photo {
        height: 118px;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .product_photo img {
        height: 96px;
    } */
    .best_phone_content .phone_details_content .phone_photo_sec .form-check input {
        height: 20px;
    }
     /****==== Best Phone Page  ====****/

     /****==== Compare Page  ====****/
     .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .close_icon {
        left: auto;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .container {
        max-width: 880px;
    }
    .compare_mobile_sec.hide_features .search_compare_wrapper .text_content .price_sec .price {
        font-size: 11px;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product .price {
        font-size: 8px;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product {
        padding: 6px 6px;
    }

    .new_comparisons_sec {
        padding: 50px 0;
    }
    .new_comparisons_sec .comparisons_slider .owl-nav button {
        top: 66px;
    }
    .new_comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono {
        height: 170px;
    }
    .new_comparisons_sec .comparisons_grid .comparisons_content .comparisons_phono.left_phone img {
        left: -13%;
        margin-top: -40px;
    }
    .new_comparisons_sec .comparisons_grid .comparisons_content img {
        width: 100px;
    }
    .new_comparisons_sec .comparisons_grid .text_content .title {
        font-size: 13px;
        margin-top: 11px;
        line-height: 1.4;
    }
    /****==== Compare Page  ====****/

     /****==== Phone Finder Page  ====****/
     .l_sec .title_sec .title {
        font-size: 20px;
    }
     .filter_product_sec .short_sec {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
     .best_phone_content .phone_details_content {
        margin-bottom: 30px;
    }
    .best_phone_content .phone_details_content .phone_photo_sec {
        width: 22%;
        flex: 0 0 22%;
        margin-right: 10px;
    }
    .best_phone_content .phone_details_content .product_text_content .title_price .price {
        font-size: 20px;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .form-check label {
        font-size: 11px;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .product_photo {
        margin-bottom: 14px;
    }
    
    /****==== Phone Finder Page  ====****/

    /****==== Rankings Page  ====****/
    .smart_phone_table .nav-tabs li .nav-link {
        padding: 11px 34px;
    }
    /****==== Rankings Page  ====****/

    /****==== Rankings Page  ====****/
    .comparisons_info .comparisons_accordion .accordion-item {
        margin-bottom: 40px;
        padding: 0 20px;
    }


    /****==== Product Details Page  ====****/
    .compare_mobile_sec.product_details_compare .container {
        width: 80%;
    }
    .rating_modal .modal-dialog {
        width: 30%;
    }
    .rate .form_group [type="radio"]:checked + label, .rate .form_group [type="radio"]:not(:checked) + label {
        width: 28px;
    }
    .product_details .brand_sec .brand_slider .owl-nav {
        display: none;
    }
    /****==== Product Details Page  ====****/

    /****==== News Blog Page  ====****/
    .features_guides_sec  .owl-nav {
        width: 14%;
        margin-top: 8px;
    }
    .tech_news_sec .tech_news_content .text_content .top_sec {
        height: 75%;
    }
    .features_guides_sec {
        padding: 40px 0 116px;
        margin: 40px auto;
    }

    /* New css Fatured Css */
    .tech_news_grid_three .tech_news_content .title_comment_sec .title {
        font-size: 15px;
    }
     /* New css Fatured Css */

     /****==== News Blog Page  ====****/

    /****==== News Details Page  ====****/
    .details_right .related_post_sec .title {
        font-size: 12px;
    }
    .news_details_sec .news_details .text_content .title {
        margin-bottom: 4px;
    }
    .details_right .latest_article .article_photo {
        width: 28%;
        height: 54px;
        margin-right: 13px;
    }
    .details_right .latest_article .text_content {
        width: 64%;
    }
    .details_right .related_post_sec .related_post_photo {
        height: 130px;
    }
    .details_right .latest_article {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .product_details.news_blog_page .details_right .latest_article .text_content .bottom_sec time.entry-date {
        padding-left: 6px;
        font-size: 10px;
    }
    .product_details.news_blog_page .details_right .latest_article .text_content .bottom_sec span {
        font-size: 10px;
    }
    .blog-details-wrapper figure iframe {
        height: 340px;
    }
    /****==== News Details Page  ====****/

    /****==== Benchmark Page  ====****/
    .benchmark_sec .benchmark_wrpper_sec .search_sort_sec .short_sec {
        margin: 0;
        padding: 0;
        border: none;
        width: 30%;
    }
    /****==== Benchmark Page  ====****/
  

    .display_tag {
        padding: 4px 7px;
        font-size: 10px;
    }

    .footer_sec {
        padding-bottom: 20px;
    }



}


/* 991px */
@media only screen and (max-width: 991px) {

    .container {
        max-width: 90%;
    }

    .title {
        font-size: 18px;
    }
    .heade_sec .dropdown-menu.mega_menu, .heade_sec .dropdown-menu.mega_menu.show {
        min-width: 650px;
        top: 30px;
    }
    .dropdown-menu.mega_menu .mega_menu_content .l_menu_list {
        width: 30%;
        flex: 0 0 30%;
        margin-right: 30px;
    }
    .heade_sec .top_heade .logo {
        width: 190px;
    }
    .heade_sec .top_heade .dropdown.search_dropdown {
        width: 65%;
        margin-left: 18px;
    }

    /****==== Search Product  ====****/
    .heade_sec .menu_nav .container .navbar-nav a {
        padding: 6px 10px;
        font-size: 11px;
    }
   
    /* .dropdown-menu.product_search_dropdown .resent_search_wrapper .resent_search .resent_search_content.popular_search_content {
        display: none;
    } */
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .resent_search {
        width: 100%;
        flex: 0 0 100%;
    }
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .resent_search {
        width: 100%;
        flex: 0 0 100%;
        border-right: none;
        padding-right: 0;
        margin-left: 0;
    }
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price {
        width: 100%;
    }
  
    .heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown {
        left: 194px;
    }
    .heade_sec .menu_nav .container .navbar-nav .dropdown-menu.mobile {
        left: -10px;
    }
    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content {
        width: 64%;
    }
    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .text_content .title {
        font-size: 13px;
        line-height: 18px;
    }
    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .latest_article .article_photo {
        height: 118px;
    }
    .dropdown-menu.mega_menu .mega_menu_content .menu_blog_content .menu_top_sec .menu_border {
        width: 70%;
    }
    
    /****==== Search Product  ====****/

    /****==== Home Page  ====****/
    .latest_product_sec .latest_product_slider .latest_product .latest_phone {
        padding: 10px;
    }
    .latest_product_sec .latest_product_slider .latest_product .text_content .product_title {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    .latest_product_sec .latest_product_slider .latest_product .text_content .price {
        font-size: 14px;
    }
    .latest_product_sec .latest_product_slider .latest_product .price_sec img {
        width: 30px;
    }
    
    .latest_product_sec .latest_product_slider .owl-nav button {
        width: 38px;
        height: 38px;
    }
    .latest_product_sec .latest_product_slider .owl-nav button span {
        font-size: 25px;
        line-height: 17px;
    }

    .features_sec .features_tab_sec .nav-tabs button svg {
        width: 33px;
        height: 30px;
    }
    .video_features_sec .techwiser_video_sec {
        padding: 12px;
    }
    
    .video_features_sec .techwiser_video_sec .video_content .video .category {
        padding: 4px 4px;
        font-size: 7px;
    }
    .video_features_sec .techwiser_video_sec .video_content .text_content .video_title {
        font-size: 13px;
        line-height: 1.2;
    }
    .video_features_sec .techwiser_video_sec .video_content .video .play_icon {
        width: 18px;
    }
    .video_features_sec .techwiser_video_sec .video_content.youtube_video .video, .video_features_sec .techwiser_video_sec .video_content.youtube_video .video img {
        height: 90px;
    }
    .video_features_sec .techwiser_video_sec .title {
        margin-bottom: 20px;
    }

    .explore_price_sec .container {
        text-align: center;
    }

    .video_features_sec .techwiser_video_sec .video_content .video, .video_features_sec .techwiser_video_sec .video_content .video img {
        height: 60px;
    }
    section.latest_article_sec .latest_article_list .latest_article {
        padding-bottom: 10px;
    }


    .latest_article_sec .latest_article_list .latest_article .text_content .title {
        font-size: 11px;
        line-height: 18px;
        display: inline-block;
        margin: 0;
    }
    .latest_article_sec .latest_article .text_content .bottom_sec  time {
        padding-left: 3px;
        margin-left: 2px;
        font-size: 14px;
    }
  
    
    .latest_article_sec .latest_article_list .latest_article .text_content  .bottom_sec {
        line-height: 16px;
    }
    .latest_article_sec .latest_article_list .latest_article .article_photo {
        width: 66px;
        flex: 0 0 66px;
        margin-right: 8px;
        border-radius: 4px;
        overflow: hidden;
        height: 40px;
    }
    .latest_article_sec .latest_article_list .latest_article .article_photo img {
        height: 40px;
        /* height: auto; */
    }
    .latest_article_sec .latest_article_list .latest_article .text_content {
        width: 74%;
    }

    .latest_article_sec .latest_article {
        padding: 18px;
    }
    .latest_article_sec .latest_article .text_content .title {
        font-size: 15px;
        line-height: 23px;
    }
    .latest_article_sec .latest_article .article_photo, .latest_article_sec .latest_article .article_photo img {
        height: 165px;
    }
    .features_sec .title {
        margin-bottom: 12px;
        font-size: 16px;
    }
    .features_sec .features_tab_sec .smartphones {
        font-size: 16px;
        margin-bottom: 18px;
    }
    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 2px;
    }
    .features_sec .features_tab_sec .nav-tabs button .tab_content img {
        height: 20px;
    }
   
    .features_sec .features_tab_sec .nav-tabs button span {
        font-size: 9px;
    }
    .features_sec .features_tab_sec .tab-content .device_content .device_title {
        font-size: 11px;
        padding: 0px 10px;
    }
    .features_sec .features_tab_sec .tab-content .device_content .device_list li {
        padding: 4px 10px;
        font-size: 11px;
    }
    .features_sec .features_tab_sec .smartphones {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .features_sec .features_tab_sec .tab-content .device_content .device_list li span img {
        width: 22px;
    }
    .explore_price_sec .explore_btn_sec .explore_btn {
        font-size: 14px;
        padding: 10px 20px;
        margin-right: 6px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        font-size: 11px;
    }
    .news_letter_sec .news_letter_content .news_letter {
        width: 84%;
    }
    .comparisons_product_sec .title {
        margin-bottom: 20px;
    }
    .comparisons_product_sec .comparisons_product_slider .owl-nav.disabled {
        display: block;
    }
    .brand_sec .owl-nav, .brand_sec .owl-dots {
        display: none;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .latest_phone {
        height: 57px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .latest_phone img {
        height: 48px;
    }
    .brand_sec .brand_slider .brand_content {
        height: 80px;
    }
    .brand_sec .brand_slider .brand_content img {
        height: 80px;
    }
    .brand_sec .brand_slider .owl-nav {
        display: block;
    }
    .popular_comparisons_sec .comparisons_product .vs_icon {
        top: 70px;
        width: 44px;
    }
    /****==== Home Page  ====****/

     /****==== Home Page  ====****/
   
     /* .new_home_page .latest_phone_gallery_sec .best_phone_grid .phone_post {
        height: 210px;
    } */
     .new_home_page .banner_latest_banner_sec .latest_news .text_content .des {
        font-size: 20px;
        margin: 5px auto 18px;
    }
    .new_home_page .banner_latest_banner_sec .latest_news {
        padding: 30px 60px;
        margin: 80px auto 60px;
    }
    
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .play_icon {
        width: 50px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .review_tag {
        padding: 6px 8px;
        font-size: 14px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .video_title {
        font-size: 20px;
        line-height: 1.4;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video {
        flex-direction: row;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video {
        flex-direction: row;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video {
        height: 170px;
        width: 48%;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video {
        height: 340px;
        margin-bottom: 23px;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .play_icon {
        width: 70px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .play_icon {
        width: 100px;
    }
    .new_home_page .featured_video_modal .modal-dialog {
        max-width: 88%;
        flex: 0 0 88%;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec {
        margin-top: 20px;
    }
    .new_home_page .compare_banner_sec .text_content .title {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .new_home_page .compare_banner_sec .compare_photo {
        flex: 0 0 38%;
        width: 38%;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .owl-nav button {
        top: 100px;
    }
    .new_home_page .benchmark_banner .text_content .title {
        font-size: 30px;
        margin: 0 0 20px;
    }
    .new_home_page .benchmark_banner {
        margin-top: 60px;
    }

    .new_home_page .brand_sec .brand_content {
        margin-top: 30px;
    }

    .new_home_page .benchmark_banner .compare_photo {
        width: 20%;
    }

    .new_home_page .brand_sec {
        padding: 0;
        margin: 50px 0;
    }
    .new_home_page .brand_sec .h_brand_slider .owl-nav button {
        top: 34px;
    }
    .new_home_page .brand_sec .title_content {
        margin-bottom: 0;
    }
    .new_home_page .brand_sec .title_content .title {
        margin: 12px auto 0px;
    }
    .new_home_page .brand_sec .h_brand_slider .brand_content {
        height: 80px;
    }
    .new_home_page .brand_sec .h_brand_slider .brand_content img {
        height: 80px;
    }
    .new_home_page .latest_phone_gallery_sec .compare_banner_sec {
        margin-top: 50px;
        padding: 30px 70px;
    }
    .new_home_page .latest_article_sec .r_blog_grid {
        margin-top: 0;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content {
        width: 70%;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content .title {
        font-size: 11px;
        line-height: 16px;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content .name_date .name {
        font-size: 10px;
    }
    .new_home_page .latest_article_sec .article_right .article_blog .text_content .name_date  .date {
        font-size: 10px;
        margin: 0;
    }
    
    .new_home_page .latest_article_sec .article_blog_sec .article_post {
        height: 270px;
        margin-bottom: 18px;
    }
    .new_home_page .latest_article_sec .article_blog_sec .article_post img {
        object-fit: cover;
    }
    .new_home_page .latest_article_sec .article_blog_sec .text_content .title {
        font-size: 18px;
    }
    .new_home_page .latest_article_sec .title_content {
        text-align: center;
        margin-bottom: 40px;
    }
    .new_home_page .latest_article_sec .title_content .title {
        margin: 12px auto 0;
    }
   
    .new_home_page .latest_article_sec .article_blog_sec .text_content .bottom_sec .name_date .name {
        font-size: 12px;
        line-height: 13px;
    }
    .new_home_page .latest_article_sec .article_blog_sec .text_content .bottom_sec .name_date  .date {
        font-size: 12px;
        line-height: 18px;
    }
    
    .new_home_pag .latest_article_sec .article_blog_sec .text_content .bottom_sec .name_date {
        width: 100%;
    }
    .new_home_page .latest_article_sec .article_blog_sec .text_content .bottom_sec {
        flex-wrap: wrap;
    }
    /* .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .phone_post {
        height: 280px;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .phone_post {
        height: 220px; 
    }*/
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery .owl-nav button {
        top: 90px;
    }
    /****==== Home Page  ====****/

     /****==== Product Details Page  ====****/
     .product_details .product_text_content {
        margin-top: 34px;
    }

    .product_details .product_text_content .pros_cons_content .pros_cons_middle {
        width: 240px;
        height: 240px;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons_middle:after {
        width: 200px;
        height: 200px;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons {
        width: 180px;
        height: 180px;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons span {
        font-size: 24px;
    }
    .product_details .product_text_content .pros_cons_content .pros_cons span {
        font-size: 24px;
    }
    .product_info_details .product_thumbnail_slider .owl-nav button {
        top: 14px;
    }
    .product_details .product_details_photo .product_slider {
        /* height: 300px; */
        width: 50%;
    }
    /* .product_info_details .product_details_photo .product_slider .product_photo img {
        height: 264px;
    } */
    .product_details .product_text_content .pros_cons_content .pros_list li  span {
        width: 93%;
        font-size: 11px;
    }
    .user_actions_sec .user_btn {
        margin-right: 47px;
    }
    /* .user_actions_sec {
        width: 62%;
    } */
    /****==== Product Details Page  ====****/

    /****==== Best Phone Page  ====****/
    .best_phone_list .best_phone_content .phone_details_content .product_text_content {
        margin-top: 0;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_photo {
        flex: 0 0 40%;
        width: 40%;
        margin: 0 auto 20px;
    }

    .pros_cons_content {
        padding: 20px;
    }
    .pros_cons_content .pros_cons_middle {
        width: 240px;
        height: 240px;
    }
    .pros_cons_content .pros_cons {
        width: 174px;
        height: 174px;
    }
    .pros_cons_content .pros_cons_middle:after {
        width: 190px;
        height: 190px;
    }
    .pros_cons_content .pros_list li .icon {
        width: 44px;
        height: 38px;
        margin-right: 8px;
    }
    .pros_cons_content .pros_list li span {
        font-size: 10px;
        width: 42%;
    }
    .pros_cons_content .pros_list.cons li .icon {
        margin-left: 8px;
    }
    
    /****==== Best Phone Page  ====****/



    /****==== Phone Finder Page  ====****/
    .best_phone_content .phone_details_content {
        flex-direction: column;
    }
    .best_phone_content .phone_details_content .phone_photo_sec {
        width: 40%;
        flex: 0 0 40%;
        margin-right: 0;
    }
    .best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings .ratings {
        margin-left: 2px;
    }
    .best_phone_content .phone_details_content .product_text_content .score_sec .feature_storage {
        font-size: 9px;
        padding: 5px 5px;
    }
    .best_phone_content .phone_details_content .product_text_content .specifications_sec .specifications_content .icon {
        width: 20px;
        flex: 0 0 20px;
        margin-right: 5px;
    }
    .best_phone_content .phone_details_content .product_text_content .specifications_sec .specifications_content .text_content .des {
        font-size: 10px;
        line-height: 13px;
    }


    /* L Sec */
    .l_sec .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 17px;
    }
    .l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li .form-check input {
        width: 16px;
        height: 14px;
    }

    .l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li span {
        font-size: 14px;
        margin: 0 auto;
    }
    .l_sec .accordion .accordion-item .accordion-body .content_sec .list_content li .form-check label {
        font-size: 14px;
        line-height: 21px;
    }
    .lunch_sec .title {
        font-size: 16px;
    }
    .l_sec .accordion .accordion-item .accordion-header {
        margin-bottom: 14px;
        margin-top: 13px;
    }
    .l_sec .accordion .accordion-item .accordion-header .accordion-button:after {
        background-size: 14px;
        background-position: center;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .form-check input {
        height: 16px;
        width: 16px;
    }
    /* .l_sec .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
        background-size: 17px;
    } */
    /* L Sec */
    /****==== Phone Finder Page  ====****/

    /****==== Ranking Page  ====****/
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form label {
        font-size: 19px;
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form {
        flex-wrap: wrap;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group {
        width: 29.5%;
    }
    .filter_form_sec .dropdown-menu .form-check label.form-check-label {
        text-align: left;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.brand {
        width: 24%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.year {
        width: 24%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form  .form_group.reset_btn {
        width: 22%;
        margin: 10px auto 0;
    }
    .ranking_table_sec .ranking_table th {
        min-width: 170px;
    }
    .ranking_table_sec .table_wrapp {
        overflow: hidden;
        overflow-x: scroll;
    }
    /****==== Ranking Page  ====****/


    /****==== Compare Mobiles Page  ====****/
    .compare_mobile_sec .search_compare_grid {
        width: 31%;
        margin: 0 6px;
    }
    .product_details.compare_mobiles_page .container {
        max-width: 100%;
    }
    .comparisons_info .container {
        max-width: 100%;
    }
    .compare_mobile_sec {
        padding: 0 10px;
    }
    .compare_mobile_sec.compare_mobile_header .four_field {
        display: none;
    }
    .compare_mobile_sec .four_field {
        display: none;
    }
    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec {
        overflow-x: scroll;
    }
    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td {
        font-size: 16px;
        min-width: 80px;
    }
    .title.compare_title {
        line-height: 29px;
        margin-bottom: 15px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone {
        height: 70px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone img {
        height: 60px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content {
        width: 66%;
        padding-left: 5px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content .product_title {
        font-size: 12px;
        width: 80%;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone {
        height: 146px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone img {
        height: 124px;
    }

    .compare_mobile_sec .search_compare_check {
        width: 20%;
        padding: 6px;
    }
    .compare_mobile_sec.hide_features .container {
        padding: 20px 15px;
    }
   .compare_mobile_sec.hide_features .search_compare_grid {
        width: 25%;
        margin: 0 0px;
    }
    section.compare_mobile_sec.hide_features .search_compare_grid {
        width: 25%;
        margin: 0 0px;
    }

    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td:last-child {
        display: none;
    }
    
    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td:first-child {
        width: 15%;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header {
        top: 102px;
    }

    /****==== Compare Mobiles Page  ====****/

    /****==== Product Details Page  ====****/
    .rating_modal .modal-dialog {
        width: 40%;
    }
    /****==== Product Details Page  ====****/

    /****==== All Brand Page  ====****/
    .brand_sec.all_brand {
        margin-top: 40px;
    }
     /****==== All Brand Page  ====****/

    /****==== News Blog Page  ====****/
    .news_tab_sec .trending_icon {
        width: 18%;
    }
    .news_tab_sec .trending_icon svg {
        width: 100%;
        height: 100%;
    }
    .product_details.news_blog_page .video_features_sec .techwiser_video_sec .video_content .video .play_icon {
        width: 48px;
    }
    .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo, .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo img {
        height: 160px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video, .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video img {
        height: 160px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video, .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video img {
        height: 100px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo {
        margin-bottom: 0;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo, .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo img {
        height: 76px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article {
        align-items: self-start;
    }
    .product_details.news_blog_page .news_tab_sec .nav-tabs {
        width: 72%;
    }
    .features_guides_sec .features_content {
        height: 400px;
    }
    .features_guides_sec .features_content .text_content .bottom_text_content .title {
        font-size: 28px;
        width: 78%;
    }
    .features_guides_sec .features_content .text_content .bottom_text_content .des {
        width: 100%;
        margin: 0;
        line-height: 22px;
        -webkit-line-clamp: 2;
    }
    .features_guides_sec .features_content .text_content .title_comment_sec {
        bottom: -0%;
    }
    .features_guides_sec  .owl-nav {
        width: 16%;
    }
   
    .tech_news_banner {
        margin: 20px auto;
    }
    .tech_news_sec .title {
        margin-bottom: 30px;
    }
    .tech_news_sec .tech_news_grid {
        margin-bottom: 30px;
    }
    .tech_news_sec .tech_news_content .text_content {
        right: 0;
        left: 0;
    }
    .tech_news_sec .tech_news_content .tech_photo {
        height: 369px;
    }
    .tech_news_sec  .tech_news_right .row {
        width: auto !important;
    }
    .tech_news_sec .tech_news_right .text_content .top_sec {
        height: 50%;
    }
    .top_news_sec {
        padding: 30px 0;
    }
    .top_news_sec .top_sec {
        margin-bottom: 30px;
    }
    .top_news_sec .top_news_grid {
        margin-bottom: 20px;
    }

    /* Category Featured News new css */
    .category_link_sec .category_link_content .trending_icon {
        width: 20%;
        margin-right: 12%;
        flex: 0 0 20%;
    }
    .category_link_sec .category_link_content .category_link {
        width: 66%;
    }
    .tech_news_grid_two .tech_news_content .tech_photo {
        height: 260px;
    }
    /* Category Featured News new css */
    /****==== News Blog Page  ====****/

    /****==== Benchmark Page  ====****/
    .benchmark_sec .benchmark_wrpper_sec .filter_sec .form_group {
        width: 20%;
    }
    .filter_table_sec .dt-layout-table {
        overflow-x: scroll;
    }
    .filter_table_sec .dt-layout-table .filter_table_content {
        border-radius: 15px 15px 0 0;
        overflow: scroll;
        width: 1200px !important;
    }
    .benchmark_banner {
        margin-top: 40px;
    }
    /****==== Benchmark Page  ====****/

   /****==== News Details Page  ====****/
    .news_details_sec {
        margin-top: 37px;
    }
    .news_details_sec .news_details .text_content .title {
        margin-bottom: 13px;
    }
    .news_details_sec .news_details .text_content .sub_title {
        margin-bottom: 5px;
        margin-top: 16px;
        font-size: 18px;
        line-height: 28px;
    }
    .blog_slider_sec .blog_slider .owl-nav button.owl-next {
        right: 0;
        left: auto;
    }
    .product_details.news_blog_page .blog_slider_sec.m_related_slider {
        display: block;
    }
    .product_details.news_blog_page .blog_slider_sec {
        display: none;
    }
    .details_right .related_post_sec .related_post_photo {
        height: 440px;
    }
    .details_right .related_post_sec .title {
        font-size: 16px;
        line-height: 1.5;
    }
    .details_right .related_post_sec .bottom_sec {
        margin-top: 7px;
    }
    .details_right .related_post_sec .bottom_sec time {
        font-size: 16px;
    }
    .details_right .latest_article .article_photo {
        width: 28%;
        height: 114px;
        margin-right: 13px;
    }
    .details_right .latest_article .text_content .title {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    .product_details.news_blog_page .details_right .latest_article .text_content .bottom_sec time.entry-date {
        padding-left: 6px;
        font-size: 14px;
    }
    .product_details.news_blog_page .details_right .latest_article .text_content .bottom_sec span {
        font-size: 14px;
    }

    .product_details.news_blog_page .news_details_sec {
        margin-top: 26px;
    }
    .news_details h1.title {
        font-size: 28px;
    }
    .news_blog_page .breadcrumb_menu li a {
        font-size: 13px;
    }
    .news_details_sec .news_details .text_content .title {
        margin-bottom: 6px;
    }
    .news_details_sec .news_details .text_content .bottom_sec {
        font-size: 12px;
    }

    /****==== News Details Page  ====****/

    /****==== Deals Page  ====****/
    .deals_product_sec .latest_product .text_content .product_title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .deals_product_sec .latest_product .text_content .price {
        font-size: 16px;
    }
    .deals_product_sec .latest_product .text_content .price.offer_price {
        font-size: 18px;
    }
    .deals_product_sec .latest_product .price_sec .view_btn {
        font-size: 12px;
        padding: 6px 8px;
    }
    .deals_product_sec .latest_product .price_sec  .view_btn svg {
        margin-left: 3px;
        width: 14px;
    }
    /****==== Deals Page  ====****/

    /****==== Tag List Page  ====****/
    .tag_page .tag_content:before {
        top: -70px;
        z-index: -1;
    }
    .tag_page .tag_content {
        padding: 10px 0 0;
        position: relative;
        z-index: 2;
    }
     /****==== Tag List Page  ====****/

     


  
    .footer_new {
        margin-top: 140px;
    }
    .footer_sec .footer_top {
        padding: 60px 0 20px;
    }
    
    .footer_sec .f_about {
        padding-right: 0;
        text-align: center;
    }
    
    .footer_sec .f_about .f_logo {
        width: 150px;
        margin: auto;
    }
    .footer_sec .f_about .f_social_content .f_social {
        justify-content: center;
    }
    .footer_sec .f_about {
        margin-bottom: 40px;
    }
    .footer_sec .f_bottom .f_bottom_menu li  a {
        margin: 0 10px;
        font-size: 16px;
    }
    .footer_sec .f_bottom .f_bottom_menu {
        padding: 0 0 20px;
        margin: 0 0 20px;
    }

    /* Footer Sec */

    .footer_new .footer-socials li a i {
        font-size: 14px;
        margin: 0;
    }
    .footer_new .footer-socials li a i {
        font-size: 14px;
    }

}




/* 767px */
@media only screen and (max-width: 767px) {
    
    .category_link_sec .category_link_content {
    padding: 10px 15px;
    }

    .compare_mobile_sec .search_compare_check input {
        width: 28px;
        height: 22px;
        flex: 0 0 22px;
    }
    .compare_mobile_sec .search_compare_check label {
        font-size: 12px;
        margin-left: 11px;
    }


    .view_btn {
        padding: 6px 5px;
        font-size: 12px;
    }
    .view_btn svg {
        margin-left: 7px;
        width: 12px;
    }
    
    h1.title {
        font-size: 28px;
    }
    h2.title {
        font-size: 26px;
    }
    h3.title {
        font-size: 24px;
    }
    h4.title {
        font-size: 22px;
    }
    
    /* Search Header */
    .heade_sec .top_heade {
        padding: 10px 0 0;
    }
    .heade_sec .top_heade .search_box input[type="text"] {
        height: 38px;
    }
    .heade_sec .top_heade .search_box svg {
        top: 10px;
    }
    .heade_sec .top_heade .dropdown.search_dropdown {
        width: 100%;
        margin-left: 0;
    }
   
    .heade_sec .top_heade .container {
        max-width: 100%;
        align-items: center;
    }
    .heade_sec .top_heade .techwiser_link {
        height: 42px;
    }
    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec .title {
        font-size: 15px;
    }
  

    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper .brand_link_cta a {
        display: flex;
        align-items: center;
    }
   
    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a span {
        font-size: 12px;
    }
    /* Search Header */


    .heade_sec {
        display: flex;
        flex-direction: column-reverse;
        padding: 13px 0;
    }
    .heade_sec .top_heade .logo {
        display: none;
    }
    .heade_sec .top_heade .search_box {
        width: 100%;
        flex: 0 0 100%;
        position: relative;
        margin: 0;
    }
    .heade_sec .m_logo.logo {
        display: block;
        width: 210px;
        border-radius: 0;
    }
    .heade_sec .menu_nav .container {
        justify-content: center;
        max-width: 100%;
        justify-content: space-between;
    }
    .heade_sec .menu_nav .navbar-toggler {
        background: #181818;
        padding: 6px 10px;
        border: none;
        border: 1px solid #595656;
        border-radius: 0;
    }
    .heade_sec .menu_nav .navbar-toggler span i {
        color: #fff;
    }
    
    .heade_sec .menu_nav .navbar-toggler:focus {
        box-shadow: none;
    }

    .heade_sec .nav_list {
        display: block;
        position: fixed;
        z-index: 1;
        background: #181818;
        height: 100vh;
        top: 0;
        width: 64%;
        right: -64%;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        overflow: scroll;
    }
    .heade_sec .nav_list.show .navbar-nav, .heade_sec .nav_list.navbar-collapse.show {
        right: 0;
    }
    .heade_sec .nav_list .navbar-nav li {
        width: 100%;
    }
    .heade_sec .nav_list .navbar-nav li a {
        color: #fff !important;
        margin: 0;
        padding: 8px;
        border-bottom: 1px solid #474747;
        padding: 10px 13px !important;
        line-height: 1.5;
        border-right: none;
        font-size: 14px;
        /* width: 100%; */
        display: block;
    }
    .heade_sec .menu_nav .container .navbar-nav .dropdown-menu {
        padding: 0 0;
        background: #292929;
        border: none;
        box-shadow: none;
    }
    .heade_sec .nav_list.show .navbar-nav li.dropend a.dropdown-item {
        background: #353434;
    }
    .heade_sec .nav_list.show .navbar-nav li.dropend a.dropdown-item:after {
        transform: rotate(90deg);
    }
    .heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown {
        padding: 0;
        background: #2d2929;
        width: 100%;
        min-width: 100%;
        border-radius: 0;
        margin-left: 0px;
        display: block;
    }
    .heade_sec .menu_nav .container .navbar-nav li:hover .dropdown-menu {
        display: inherit !important;
    }
    .heade_sec .menu_nav .container .navbar-nav li .dropdown-menu li.dropend .dropdown-menu.sub_dropdown {
        position: relative;
        left: 0;
    }
    .heade_sec .menu_nav .container .navbar-nav ul.sub_dropdown li a:before {
        background: #ffffff;
    }
    .heade_sec .menu_nav .container .navbar-nav .dropdown-menu li a:active {
        background: #2d2929;
        color: #fff !important;
    }
    .heade_sec .menu_nav .container .navbar-nav li.dropend:hover ul.dropdown-menu.sub_dropdown {
        display: block;
        position: relative;
        left: 0;
    }
    .heade_sec .menu_nav .container .navbar-nav li .dropdown-menu li.dropend:hover .dropdown-menu.sub_dropdown {
        display: initial !important;
    }
    .heade_sec .nav_list .navbar-nav li.mega_menu_dropdown {
        display: none;
    }
    
    .heade_sec .menu_nav .container .navbar-nav .dropdown.m_news {
        display: block;
    }
    

   
    /****==== Home Page  ====****/
    .latest_product_sec  .latest_product_slider {
        padding: 0 44px;
    }
   
    .video_features_sec .techwiser_video_sec .video_content .video, .video_features_sec .techwiser_video_sec .video_content .video img {
        height: 62px;
    }
    .video_features_sec .techwiser_video_sec .video_content .video .category {
        padding: 3px 3px;
        font-size: 6px;
        top: 3px;
        line-height: 8px;
    }
    .video_features_sec .techwiser_video_sec .video_content .text_content {
        margin-top: 9px;
    }
    .video_features_sec .techwiser_video_sec .video_content .text_content .video_title {
        font-size: 12px;
        line-height: 1.2;
    }
    .video_features_sec .techwiser_video_sec .video_content .text_content {
        margin-top: 6px;
    }
    .best_mobile_sec .best_mobile_slider {
        padding: 0 40px;
    }
    .features_sec {
        margin-top: 30px;
    }
    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 9px;
    }
    .explore_price_sec .container .title {
        margin-bottom: 16px;
        font-size: 18px;
    }
    .explore_price_sec .container {
        border-radius: 9px;
        padding: 20px 10px;
        text-align: center;
    }
    .explore_price_sec .explore_btn_sec .explore_btn {
        margin-right: 6px;
        font-size: 12px;
        padding: 10px 8px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        font-size: 10px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content  .price {
        font-size: 12px;
    }
    .best_mobile_sec .container {
        padding: 20px 10px;
    }

    .brand_sec .brand_slider .brand_content, .brand_sec .brand_slider .brand_content img {
        height: 60px;
    }
    .comparisons_product_sec .comparisons_product_slider .comparisons_product {
        padding: 10px;
    }
   
    .comparisons_product_sec .comparisons_product_slider .owl-nav button {
        width: 38px;
        height: 38px;
    }
    .comparisons_product_sec .comparisons_product_slider {
        padding: 0 50px;
    }
    .latest_article_sec .latest_article_list {
        padding: 18px;
        margin-top: 20px;
    }
    .latest_product_sec .latest_product_slider .latest_product .text_content .price {
        font-size: 16px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content {
        width: 100%;
    }
    .latest_article_sec .latest_article_list .latest_article .article_photo {
        width: 100%;
        height: 210px;
        flex: 0 0 100%;
        border-radius: 15px;
        margin: 0 auto 20px;
    }
    .latest_article_sec .latest_article_list .latest_article .article_photo img {
        height: 210px;
    }
    .latest_article_sec .latest_article .text_content .title {
        font-size: 18px;
        margin-bottom: 6px;
        display: inline-block;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content .title {
        font-size: 18px;
        line-height: 23px;
        display: inline-block;
        margin: 0 auto 6px;
        top: 0;
    }
    section.latest_article_sec .latest_article_list .latest_article {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content .bottom_sec span {
        font-size: 14px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content .bottom_sec .published {
        font-size: 14px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content .bottom_sec {
        margin-top: 0;
    }
   
    /* .latest_product_sec .latest_product_slider .latest_product .latest_phone {
        height: 124px;
    }
    .latest_product_sec .latest_product_slider .latest_product .latest_phone img {
        height: 104px;
    } */
    .brand_sec .brand_slider .owl-nav button {
        width: 38px;
        height: 38px;
    }

    section.latest_article_sec .latest_article_list .latest_article {
        flex-direction: column;
    }
    .latest_article_sec .latest_article .article_photo, .latest_article_sec .latest_article .article_photo img {
        height: 210px;
    }
    .explore_price_sec .explore_btn_sec .explore_btn img {
        height: 16px;
    }
    .popular_comparisons_sec .comparisons_product .vs_icon {
        top: 70px;
        width: 64px;
    }
    .popular_comparisons_sec .comparisons_product .vs_icon svg {
        width: 54px;
        height: 64px;
    }
    /****==== Home Page  ====****/

    /****==== New Home Page  ====****/
    .new_home_page {
        padding-top: 134px;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery {
        padding: 0 30px;
    }
    .new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content {
        margin-top: 18px;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery .owl-nav button {
        margin: auto;
        width: 28px;
        height: 28px;
        background-size: 80% !important;
        top: 90px;
    }
    .new_home_page .explore_price .explore_content {
        flex-wrap: wrap;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .text_content {
        text-align: center;
        margin-top: 8px;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .latest_phone {
        right: 0;
        top: -40px;
        width: 22%;
        left: 0;
        margin: auto;
    }
    .new_home_page .banner_latest_banner_sec .latest_news {
        padding: 100px 20px 40px;
        margin: 80px auto 60px;
        flex-direction: column-reverse;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .text_content .title {
        font-size: 28px;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .text_content .des {
        font-size: 16px;
        margin: 5px auto 18px;
    }
    .new_home_page .featured_video_sec .featured_video_content {
        margin: 20px auto 10px;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video {
        height: 110px;
        width: 48%;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .play_icon {
        width: 35px;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .review_tag {
        font-size: 11px;
        padding: 3px 7px;
    }
    .new_home_page .featured_video_sec .featured_video_content .r_featured_video .h_featured_video .text_content .video_title {
        font-size: 14px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video {
        height: 220px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .play_icon {
        width: 70px;
    }
    .new_home_page .featured_video_modal .modal-dialog {
        max-width: 78%;
        flex: 0 0 78%;
    }
    .new_home_page .featured_video_modal .modal-dialog .modal-body {
        padding: 10px;
    }
    .new_home_page .featured_video_modal .modal-dialog .modal-body iframe {
        height: 195px;
    }
    .new_home_page .featured_video_modal .modal-dialog .modal-header .btn-close {
        right: 10px;
        top: 10px;
    }
    .new_home_page .benchmarks_deals .benchmarks_table_sec .title {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
    }
    .new_home_page .explore_price {
        padding: 30px 0;
    }
    .new_home_page .explore_price .title {
        margin-bottom: 18px;
        font-size: 20px;
    }
    .new_home_page .explore_price .explore_content a {
        padding: 10px 11px;
        margin: 9px 7px;
        width: 29%;
    }
    .new_home_page .explore_price .explore_content a {
        padding: 10px 11px;
        border-bottom: none;
        margin: 9px 7px;
        width: 28%;
        text-align: center;
        border-right: none;
    }
    .new_home_page .explore_price .explore_content a .icon {
        margin-bottom: 20px;
        width: 50px;
        margin: auto;
    }
    .new_home_page .explore_price .explore_content a .icon svg {
        width: 70%;
        margin: auto;
        display: block;
    }
    .new_home_page .explore_price .explore_content a span {
        font-size: 12px;
    }

    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two {
        padding: 0 30px;
        margin-bottom: 40px;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .owl-nav button {
        width: 28px;
        height: 28px;
        background-size: 80% !important;
    }
    .new_home_page .compare_banner_sec .compare_photo {
        flex: 0 0 44%;
        width: 44%;
        top: -20px;
        left: 0;
        right: 0;
        margin: auto;
    }
    .new_home_page .latest_phone_gallery_sec .compare_banner_sec {
        margin-top: 90px;
        padding: 130px 30px 20px;
    }
    .new_home_page .compare_banner_sec .text_content {
        text-align: center;
        width: 100%;
    }
    .new_home_page .compare_banner_sec .text_content .title {
        font-size: 28px;
        margin-bottom: 10px;
        text-align: center;
    }
    .new_home_page .latest_phone_gallery_sec .title {
        margin: 8px auto 8px;
    }
    .new_home_page .benchmark_banner .compare_photo {
        display: none;
    }
    .new_home_page .benchmark_banner .text_content {
        text-align: center;
        padding: 20px;
    }
    .new_home_page .benchmark_banner .text_content {
        text-align: center;
        padding: 20px;
        width: 100%;
    }
    .new_home_page .benchmark_banner .text_content .title {
        font-size: 20px;
        margin: 0 0 20px;
        text-align: center;
        line-height: 1.5;
    }
    .new_home_page .brand_sec .brand_content .brands_icon {
        margin: 8px 8px;
        width: 26%;
    }
    .new_home_page .brand_sec .title_content .sub_title {
        margin-bottom: 10px;
    }
    .new_home_page .brand_sec {
        padding: 40px 0;
        margin: 0px;
    }
    .new_home_page .latest_article_sec .title_content {
        margin-bottom: 30px;
    }
    .new_home_page .latest_article_sec .r_blog_grid {
        margin: 0 auto 30px;
    }
    .new_home_page .latest_article_sec .article_blog_sec .article_post {
        height: 210px;
        margin-bottom: 20px;
    }
    .new_home_page .latest_article_sec .article_blog_sec .text_content .bottom_sec .name_date {
        width: 100%;
        margin-bottom: 10px;
    }
    /* .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .phone_post {
        height: 260px;
    } */
    /* .new_home_page .latest_phone_gallery_sec .best_phone_grid .phone_post {
        height: 220px;
    } */
    .new_home_page .brand_sec .h_brand_slider .brand_content, .new_home_page .brand_sec .h_brand_slider .brand_content img {
        height: 70px;
    }
  
   /****==== New Home Page  ====****/




    .breadcrumb_sec {
        padding-top: 40px;
    }
    /****==== Product Details Page  ====****/
    .product_details .breadcrumb_menu li a {
        font-size: 14px;
    }
    .product_details .breadcrumb_menu li {
        margin-right: 5px;
    }
    .product_details .breadcrumb_menu li i {
        font-size: 9px;
        margin-left: 5px;
    }
    .product_info_details {
        padding-top: 10px;
    }
    .product_info_details .product_thumbnail_slider {
        display: none;
    }
    .product_slider {
        width: 100%;
    }
    .product_slider .owl-dots {
        display: block;
    }
    .product_details .product_text_content .market_company .company {
        width: 80px;
    }
    .product_details .product_text_content .pros_cons_sec .pros_content .pros_list {
        padding: 4px 24px;
    }
    .product_details .product_text_content .device_info_sec .device_info_des {
        font-size: 11px;
    }
    .product_details .product_text_content .alert_sec {
        margin-top: 20px;
    }
    .product_info_details {
        margin-bottom: 28px;
    }
    .specifications_sec .specifications_info .specifications .accordion-body .product_list li span {
        width: 68%;
    }
    .store_sec .des {
        font-size: 16px;
    }
    .user_actions_sec .user_btn.compare .add_icon {
        left: 34px;
    }
    .user_actions_sec .user_btn_list .user_btn.alert .add_icon {
        left: 26px;
    }

    .rating_modal .modal-dialog {
        width: 100%;
        margin: 30px auto;
    }
    .compare_mobile_sec.product_details_compare .container {
        width: 100%;
        padding: 20px 10px;
    }
    .compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .text_content .price_sec .price {
        font-size: 15px;
    }
    .product_details .product_text_content .pros_cons_content {
        display: none;
    }
    .product_details  .pros_cons_mobile {
        display: block;
    }
    
    .product_details .pros_cons_mobile .pros_cons_content {
        display: block;
    }
    .product_details .product_text_content .pros_cons_content .pros_list li  span {
        width: auto;
        font-size: 10px;
    }
    /* .pros_cons_mobile .pros_cons_content .pros_list li {
        align-items: center;
    } */
    .product_details .product_text_content .pros_cons_content .pros_list li .icon svg {
        width: 11px;
        height: 10px;
    }
    .pros_cons_mobile .pros_cons_content .pros_list li {
        margin: 0 auto 5px!important;
    }
    .product_details .product_text_content .pros_cons_content .pros_list {
        padding: 0;
        margin: 0;
        padding-bottom: 0;
    }
    /* .product_details .product_details_photo .product_slider {
        height: 200px;
    }
    .product_info_details .product_details_photo .product_slider .product_photo img {
        height: 134px;
    } */

    .product_details .product_text_content .alert_sec .des {
        font-size: 13px;
        width: 70%;
    }
    .pros_cons_content_sec .pros_more {
        display: none;
    }
    .product_details .product_text_content .link_sec .view_btn {
        margin-right: 3px;
    }
    .user_actions_sec {
        width: 100%;
    }
    .user_actions_sec .user_btn {
        margin-right: 80px;
    }

    /****==== Product Details Page  ====****/
   

    .product_score .text_content span {
        font-size: 9px;
        line-height: 10px;
    }
    .product_score .text_content .score {
        font-size: 5px;
        line-height: 5px;
    }
    .news_letter_sec .news_letter_content {
        padding: 30px 10px;
    }
    .news_letter_sec .news_letter_content .title {
        margin-bottom: 30px;
        font-size: 20px;
    }
    .news_letter_sec .news_letter_content .news_letter .form_group {
        width: 100%;
        flex-direction: column;
    }
    .news_letter_sec .news_letter_content .title span {
        display: block;
    }
    .news_letter_sec .news_letter_content .title :after {
        bottom: -17px;
        background-size: 11%;
        background-position: 67% center;
    }


    
    .news_letter_sec .news_letter_content .news_letter  button.submit_btn {
        position: relative;
        width: 100%;
        right: 0;
        margin-top: 12px;
    }

    .pros_cons_mobile .pros_cons_content .pros_content_sec {
        margin-bottom: 30px;
        width: 100%;
        padding-bottom: 40px;
        padding: 8px 10px 40px;
    }
    .user_actions_sec {
        margin-top: 30px;
    }
    .user_actions_sec .user_btn .text_content .action {
        font-size: 11px;
    }
    .user_actions_sec .user_btn .text_content .sub {
        font-size: 10px;
        line-height: 12px;
    }
    .user_actions_sec .user_btn .icon {
        width: 34px;
        height: 34px;
        margin-bottom: 7px;
    }
    .user_actions_sec .user_btn.want .icon svg {
        width: 18px;
    }
    .user_actions_sec .user_btn.have .icon svg {
        width: 19px;
    }
    .user_actions_sec .user_btn.had .icon svg {
        width: 18px;
    }
    .user_actions_sec .user_btn.review .icon svg {
        height: 17px;
    }
    .user_actions_sec .user_btn .icon i {
        font-size: 16px;
    }
    .user_actions_sec .user_btn.alert .icon svg {
        width: 16px;
    }
    .user_actions_sec .user_btn .add_icon {
        width: 16px;
        height: 16px;
        left: 33px;
    }
    .user_actions_sec .user_btn .add_icon i {
        font-size: 9px;
    }
    .user_actions_sec .user_btn.want .add_icon {
        left: 33px;
    }
    .user_actions_sec .user_btn.review .add_icon {
        left: 28px;
    }

    .store_sec .store_list_sec li {
        padding: 6px;
        margin: 11px auto;
    }
    .store_sec .store_list_sec li .store_icon {
        height: 40px;
    }
    .store_sec .store_list_sec li .store_icon img {
        width: 84px;
    }
    .store_sec .store_list_sec li .price {
        font-size: 18px;
    }
    .compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone {
        height: 144px;
    }
    .compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone img {
        height: 130px;
    }
    /****==== Best Phone Page  ====****/

    .best_phone_list .best_phone_content .phone_details_content {
        flex-direction: column;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_photo {
        padding: 10px;
        border-radius: 0;
        flex: 0 0 15%;
        width: 80%;
        margin: 0 auto 30px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
}
    .best_phone_list .best_phone_content .phone_details_content {
        margin-bottom: 0;
    }
    .best_gaming_banner .gaming_banner {
        height: 190px;
    }
    .best_gaming_banner .gaming_banner img {
        height: 200px;
    }
    .best_gaming_banner .gaming_banner .play_icon img {
        width: 60px;
    }
    .best_gaming_banner .gaming_banner .category {
        position: absolute;
        top: 18px;
        padding: 8px 18px;
        font-size: 20px;
    }
    .best_phone_list .best_phone_content .pros_cons_sec .title {
        font-size: 20px;
        margin-bottom: 0;
    }
    .best_phone_list .best_phone_content .pros_cons_wrapper.show .pros_cons_sec .pros_cons_content {
        display: none;
    }
    .best_phone_list .best_phone_content .pros_cons_wrapper.show .pros_cons_sec .title {
        margin-bottom: 20px;
    }
    
    .best_phone_list .best_phone_content .pros_cons_wrapper .pros_cons_mobile {
        display: block;
    }
    .best_phone_list .best_phone_content .pros_cons_wrapper.show .pros_cons_mobile .pros_cons_content {
        display: block;
    }

    .best_phone_list .best_phone_content .top_sec .phone_title_sec .number {
        width: 28px;
        height: 28px;
        font-size: 16px;
        margin-right: 6px;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec a {
        font-size: 15px;
    }
    /* .best_phone_content .phone_details_content .phone_photo_sec .product_photo {
        height: 285px;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .product_photo img {
        height: 256px;
    } */
    
     /****==== Best Phone Page  ====****/

    /****==== Phone Finder Page  ====****/
    .best_phone_content .phone_details_content .phone_photo_sec {
        width: 78%;
        flex: 0 0 80%;
        margin: auto;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .form-check input {
        top: 4px;
    }



    /****==== Filter Sec  ====****/
    .filter_product_sec .l_sec {
        display: none;
    }

    
    .filter_sort {
        position: fixed;
        bottom: 0;
        background: #fff;
        left: 0;
        right: 0;
        height: 54px;
	z-index: 9;
    }
    
    .filter_sort a {
        width: 49%;
        display: inline-flex;
        text-align: center;
        border-right: 1px solid #d0cece;
        color: #3C3C3C;
        font-size: 18px;
        padding: 7px 0;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    .filter_sort a svg {
        width: 22px;
        margin-right: 14px;
    }
    
    .filter_sort a svg {
        width: 18px;
        margin-right: 4px;
    }
    
    .filter_sort a:last-child {
        border-right: none;
    }

    .sort_active, .filter_active {
        overflow: hidden;
    }

    .sort_active:before, .filter_active:before {
        background: #000000b5;
        position: fixed;
        content: "";
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9;
        transition: all 0.6s ease-in 0.2s;
        height: 100vh;
    }

    .sort_active .heade_sec, .filter_active .heade_sec {
        z-index: 0;
        /* border-bottom: none; */
    }

    /* .sort_active .heade_sec:before {
        content: "";
    } */
    .m_sort_content_sec {
        position: fixed;
        z-index: 9;
        background: #fff;
        left: 0;
        right: 0;
        bottom: -61%;
        transition: all 0.6s ease-in 0.2s;
        height: 60vh;
	opacity:0;
	visibility: hidden;
    }
    .sort_active .m_sort_content_sec {
        transition: all 0.6s ease-in 0.2s;
        bottom: 0;
	opacity:1;
    	visibility: visible;
    }
    .m_sort_content_sec .sort_list {
        padding: 20px 20px;
    }
    
    .m_sort_content_sec .sort_list .form_group {
        margin-bottom: 18px;
    }

    .sort_list .sort_check_form [type="radio"]:checked,.sort_list .sort_check_form [type="radio"]:not(:checked) {
        position: absolute;
        left: -9999px;
    }
    .sort_list .sort_check_form [type="radio"]:checked + label, .sort_list .sort_check_form [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #2c2d31;
        font-size: 14px;
        font-weight: 600;
    }
    .sort_list .sort_check_form [type="radio"]:checked + label:before, .sort_list .sort_check_form [type="radio"]:not(:checked) + label:before {
        content: '';
        position: absolute;
        left: 0;
        top: 2px;
        width: 15px;
        height: 15px;
        border: 1px solid #ddd;
        border-radius: 100%;
        background: #fff;
    }
    .sort_list .sort_check_form [type="radio"]:checked + label:after, .sort_list .sort_check_form [type="radio"]:not(:checked) + label:after {
        content: '';
        width: 9px;
        height: 9px;
        background: #3c3c3c;
        position: absolute;
        top: 5px;
        left: 3px;
        border-radius: 100%;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .sort_list .sort_check_form [type="radio"]:not(:checked) + label:after {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    .sort_list .sort_check_form [type="radio"]:checked + label:after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    
    .m_sort_content_sec .top_sec {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 1px solid #e1e1e1;
    }
    
    .m_sort_content_sec .top_sec .title {
        font-size: 16px;
        color: #2c2d31;
    }
    
    .m_sort_content_sec .top_sec  .close_icon {
        width: 18px;
    }
    
    .m_sort_content_sec .top_sec .close_icon svg {
        width: 100%;
    }


    /* M Filter Content Sec */
    .m_filter_content_sec {
        position: fixed;
        z-index: 9;
        background: #fff;
        left: 0;
        right: 0;
        bottom: -80%;
        transition: all 0.6s ease-in 0.2s;
        height: 80%;
    }

    .filter_active .m_filter_content_sec {
        bottom: 0;
    }
    .m_filter_content_sec .top_sec {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 1px solid #e1e1e1;
    }
    .m_filter_content_sec .top_sec .more {
        font-size: 14px;
    }
    
    .m_filter_content_sec .top_sec .more svg {
        width: 17px;
    }

    .m_filter_content_sec  .lunch_sec {
        display: flex;
        border-top: none;
        flex-wrap: wrap;
        padding: 0;
    }
    
    .m_filter_content_sec .lunch_sec .filter_tab {
        width: 42%;
        background: #f9f9f9;
        height: 64vh;
        position: relative;
        z-index: 0;
        overflow: auto;
        padding-bottom: 23px;
    }
    .m_filter_content_sec .lunch_sec .filter_tab .nav-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .m_filter_content_sec .lunch_sec .accordion {
        width: 58%;
        flex: 0 0 58%;
        padding: 20px;
    }
    
    .m_filter_content_sec .l_sec {
        padding: 0;
        border: none;
    }
    
    
    /* .m_filter_content_sec .filter_tab_sec {
        margin-top: 10px;
    } */
    .m_filter_content_sec .lunch_sec .filter_tab button {
        border: none;
        /* background: #eaeaea; */
        border-radius: 0;
        text-align: left;
        padding: 13px 15px;
    }
    .m_filter_content_sec .lunch_sec .filter_tab button .title {
        font-size: 16px;
    }


    .filter_active .m_filter_content_sec .filter_btn_sec {
        position: absolute;
        bottom: 0;
        background: #ffffff;
        left: 0;
        right: 0;
        padding: 10px;
        justify-content: center;
        display: flex;
    }
    
    .filter_active .m_filter_content_sec .filter_btn_sec .view_btn {
        font-size: 14px;
        padding: 9px 12px;
        margin: 0 7px;
        overflow: hidden;
    }
    
    .filter_active .m_filter_content_sec .filter_btn_sec .view_btn.apply {
        background: #2c2d31;
        color: #fff;
    }
    
    .filter_active .m_filter_content_sec .filter_btn_sec .view_btn.apply svg {
        fill: #ffffff;
    }
    
    .filter_active .m_filter_content_sec .btn_sec .view_btn.apply:hover:before {
        background: #fff;
    }
    
    .filter_active .m_filter_content_sec .btn_sec .view_btn.apply:hover {
        color: #2c2d31;
    }

    .filter_tab_sec .l_sec .accordion .accordion-item {
        border-bottom: none;
    }
    .m_filter_content_sec .lunch_sec .filter_tab button .title span {
        margin-left: auto;
        float: right;
        font-style: normal;
    }
    
    .m_filter_content_sec .lunch_sec .filter_tab button .title span:after {
        display: none;
    }
    .l_sec .accordion .accordion-item .accordion-body .content_sec .list_content {
        padding: 0 10px;
        height: 50vh;
        margin: 0;
    }

    /* M Filter Content Sec */

    .m_sort_content_sec, .m_filter_content_sec, .filter_sort {
        display: block;
    }

     /****==== Filter Sec  ====****/

    /****==== Phone Finder Page  ====****/


     /****==== Ranking Page  ====****/
     .smart_phone_table .nav-tabs li .nav-link {
        padding: 9px 8px;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group {
        width: 48%;
        margin-right: 0;
        margin-bottom: 17px;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.brand {
        width: 40%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.year {
        width: 40%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .smart_phone_table .nav-tabs {
        overflow-x: scroll;
        width: 90%;
        flex-wrap: nowrap;
        justify-content: space-around;
    }
 
    /****==== Ranking Page  ====****/

    /****==== Compare Mobiles Page  ====****/
    .compare_mobile_sec.compare_mobile_header  .three_field {
        display: none;
    }
    .compare_mobile_sec .three_field {
        display: none;
    }
    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td {
        font-size: 11px;
        min-width: 117px;
    }
    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td:first-child {
        width: 13%;
    }
    .search_product .price_sec {
        align-items: center;
    }
    .compare_mobile_sec .view_btn.compare_btn {
        margin: 30px auto 0;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone {
        height: 134px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone img {
        height: 114px;
    }
    section.compare_mobile_sec.hide_features .search_compare_grid {
        width: 33%;
        margin: 0 0px;
    }
    .compare_mobile_sec .search_compare_check {
        width: 30%;
    }
    .compare_mobile_sec .search_compare_grid {
        width: 47%;
        margin: 0 6px;
    }
    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td:nth-child(4) {
        display: none;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product {
        min-height: 63px;
        height: 84px;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header {
        top: 108px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone {
        height: 74px;
        width: 38%;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone img {
        height: 68px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content .product_title {
        font-size: 10px;
        width: 87%;
        line-height: 13px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content {
        width: 58%;
        padding-left: 4px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec .product_score {
        left: -1px;
        top: -7px;
        position: relative;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product .price {
        font-size: 6px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content .price {
        font-size: 10px;
    }
    section.compare_mobile_sec.compare_mobile_header .search_compare_check .mobile_title_sec .m_title {
        font-size: 14px;
    }
   
    .new_comparisons_sec .title_content .title {
        margin: 10px auto 10px;
    }
    .new_comparisons_sec .title_content .t_des {
        margin-bottom: 0 !important;
        font-size: 14px;
    }
    .new_comparisons_sec .comparisons_slider {
        padding: 0 64px 20px;
    }
    /****==== Compare Mobiles Page  ====****/


    /****==== Product Page  ====****/
    .compare_mobile_sec.product_details_compare .search_add_sec {
        padding: 62px 10px;
    }
    .compare_mobile_sec.product_details_compare .title {
        font-size: 20px;
        margin-bottom: 15px;
    }


    /****==== Product Page  ====****/


    /****==== Brand Page  ====****/
    .brand_slider .brand_content_sec .barand_wrapper .brand_icon {
        width: 60px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_info .count {
        font-size: 15px;
        margin-bottom: 7px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_info 
    .view_btn {
        font-size: 11px;
    }
  
    .brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_info .count {
        font-size: 16px;
        width: 100%;
        display: block;
    }
    .brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_info .view_btn {
        font-size: 12px;
        padding: 3px 7px;
    }

    .brand_sec.all_brand .brand_content_sec .barand_wrapper {
        flex-direction: column;
    }
    
    .brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_icon {
        width: 50px;
    }
    
    .brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_info {
        margin: 13px auto 0;
        width: 100%;
        text-align: center;
    }

    /****==== Brand Page  ====****/

    /****==== News Blog Page  ====****/
    
    .news_blog_page {
        margin-top: 135px;
    }
    .news_blog_page .breadcrumb_sec {
        padding-top: 40px;
    }
    .product_details .best_info {
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .product_details.news_blog_page .tab_blog_content .container {
        padding: 0;
    }
    .news_blog_page .title {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .news_blog_page .best_info .title_content .title {
        padding-bottom: 0;
    }
    .product_details.news_blog_page .des {
        font-size: 14px;
        display: none;
    }
    .product_details.news_blog_page .news_tab_sec .nav-tabs button {
        font-size: 15px;
        padding: 0 15px 7px;
    }
    .product_details.news_blog_page .news_tab_sec .tab_blog_content .title {
        margin-bottom: 26px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec {
        margin: 30px auto  6px;
    }
    .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo, .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo img {
        height: 190px;
    }
    .product_details.news_blog_page .tab_blog_content .about_mobile_photo {
        padding: 24px 24px 0;
    }
    .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .text_content .title {
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video, .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video img {
        height: 100px;
    }
    .product_details.news_blog_page .video_features_sec .techwiser_video_sec .video_content .video .play_icon {
        width: 34px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video, .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video img {
        height: 60px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video img.play_icon {
        height: auto;
        width: 22px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article {
        padding: 18px;
        border-radius: 15px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo, .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo img {
        height: 90px;
        width: 100%;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo {
        margin-bottom: 10px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article {
        display: flex;
        flex-direction: row;
    }
    
   
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .article_photo {
        margin: 0;
        height: 20;
        width: 80px;
        flex: 0 0 80px;
        height: 86px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content {
        width: 71%;
        margin-left: 8px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 10px;
    }
    /* .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content {
        width: 100%;
    } */
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .title {
        font-size: 16px;
        line-height: 21px;
        display: block;
        text-align: left;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content  .bottom_sec {
        display: inline-block;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .bottom_sec  time {
        margin-left: 3px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list {
        margin-top: 0;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content .title {
        line-height: 19px;
        display: inline-block;
        text-align: left;
        margin-bottom: 0;
        padding-bottom: 3px;
    }
    .product_details.news_blog_page .latest_article .text_content .bottom_sec {
        justify-content: start;
    }
    .product_details.news_blog_page .news_tab_sec  .view_btn {
        padding: 9px 10px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .article_photo, .product_details.news_blog_page .latest_article_sec .latest_article .article_photo img {
        height: 190px;
    }
    .product_details.news_blog_page .video_features_sec .techwiser_video_sec {
        padding: 26px 18px;
    }
    .product_details.news_blog_page .video_features_sec .techwiser_video_sec .video_content .text_content .video_title {
        font-size: 12px;
        line-height: 15px;
    }
    .features_guides_sec .features_content {
        height: 290px;
    }
    .features_guides_sec .features_content .text_content .bottom_text_content {
        padding: 10px 30px;
        bottom: -32%;
    }
    .features_guides_sec .features_content .text_content .top_sec {
        padding: 40px 20px 0;
        height: 70%;
    }
    .features_guides_sec .features_content .text_content .bottom_text_content .title {
        font-size: 16px;
        width: 100%;
        margin-top: 10px;
        padding-bottom: 4px;
    }
    .features_guides_sec  .owl-nav {
        width: 26%;
    }
    .features_guides_sec .owl-nav button {
        width: 40px;
        height: 40px;
    }
    .features_guides_sec .owl-dots {
        left: 19%;
        bottom: -16%;
    }
    .top_news_sec .top_sec {
        margin-bottom: 15px;
        align-items: center;
    }
    .top_news_sec .title {
        padding-bottom: 10px;
        margin-bottom: 0;
    }
    .tech_news_banner {
        margin: 0 auto;
    }
    .tech_news_sec .tech_news_content .text_content .top_sec {
        height: 69%;
    }
    .tech_news_sec .tech_news_right .text_content .bottom_text_content .title {
        font-size: 14px;
    }
    .tech_news_sec .tech_news_right .text_content .top_sec {
        height: 39%;
    }
    .top_news_sec .top_news_blog .text_content .title {
        font-size: 16px;
        margin: 4px auto;
    }
    .top_news_sec .top_news_blog .date {
        font-size: 13px;
    }
    .tech_news_banner img {
        border-radius: 10px;
    }

    .tech_news_sec  .tech_news_right {
        margin-top: 30px;
    }
    /****==== News Blog Page  ====****/

     /****==== News Details Page  ====****/
     .product_details .breadcrumb_menu {
        line-height: 22px;
    }
    .product_details .breadcrumb_menu li {
        font-size: 12px;
    }
    .product_details .breadcrumb_menu li a {
        font-size: 12px;
    }
    .news_blog_page .product_details .breadcrumb_menu li {
        font-size: 12px;
    }
    .breadcrumb_menu {
        flex-wrap: wrap;
        display: block;
    }
    .product_details .breadcrumb_menu li {
        display: inline;
    }
    .news_details_sec {
        margin-top: 20px;
    }
    .details_right .latest_article {
        flex-direction: column;
    }
    .details_right .latest_article .article_photo {
        width: 100%;
        height: 260px;
        margin: 0 auto 11px;
    }
    .details_right .latest_article .text_content {
        width: 100%;
    }
    .details_right .latest_article .text_content .title {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 5px;
    }
    .details_right .latest_article .text_content .bottom_sec time {
        font-size: 15px;
    }
    .details_right .latest_article .text_content .bottom_sec time span {
        font-size: unset;
    }
    .news_details_sec .news_details .text_content .title {
        line-height: 37px;
        font-size: 28px;
        font-weight: 800;
        padding-bottom: 3px;
    }
    .news_details .article_photo {
        margin: 13px auto 20px;
    }
    .product_details.news_blog_page .news_details_sec .news_details .des {
        display: block;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 17px;
    }
    .blog-details-wrapper p {
        font-size: 16px;
        line-height: 1.8;
    }
    .news_details_sec .news_details .text_content .sub_title {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 42px;
        font-weight: 900;
    }
    .details_list li {
        margin-bottom: 6px;
    }
    .product_details.news_blog_page .news_details_sec {
        margin-top: 20px;
    }

    .news_details .bottom_sec span, .news_details .bottom_sec time  {
        font-size: 13px;
    }
    .news_details_sec .news_details .table_link_content .link_list li a {
        padding: 10px 0;
        line-height: 20px;
        font-size: 16px;
    }
    .product_details.news_blog_page .news_details_sec .post-tags {
        margin: 24px auto;
    }
    .product_details.news_blog_page .news_details_sec .social_share_sec a span {
        display: none;
    }
    .product_details.news_blog_page .news_details_sec .social_share_sec a i {
        font-size: 12px;
        margin: 0;
    }
    .product_details.news_blog_page .news_details_sec .post_author_sec .author-img {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
    }
    .product_details.news_blog_page .news_details_sec .post_author_sec .author-content {
        width: 94%;
        margin-left: 15px;
    }
    .product_details.news_blog_page .news_details_sec .post_author_sec .author-content .name {
        font-size: 18px;
        line-height: 20px;
    }
    .product_details.news_blog_page .news_details_sec .post_author_sec .des {
        line-height: 24px;
        margin-bottom: 10px;
    }
    .product_details.news_blog_page .blog_slider_sec.m_related_slider .container {
        max-width: 100%;
    }
    .product_details.news_blog_page .blog_slider_sec.m_related_slider .blog_slider {
        padding: 0 50px;
    }
    .product_details.news_blog_page .blog_slider_sec.m_related_slider .blog_slider button {
        width: 38px;
        height: 38px;
        bottom: auto;
        top: 90px;
    }
    .product_details.news_blog_page .blog_slider_sec .blog_slider .latest_article .article_photo {
        height: 170px;
    }
    .product_details.news_blog_page .blog_slider_sec.m_related_slider .blog_slider .owl-dots {
        display: none;
    }
    .details_right .related_post_sec .related_post_photo {
        height: 270px;
    }
    .product_details.news_blog_page .blog_slider_sec.m_related_slider .title {
        text-align: center;
        margin-bottom: 20px;
    }
    .product_details.news_blog_page .blog_slider_sec.m_related_slider .latest_article .text_content .title {
        text-align: left;
        margin-bottom: 0;
        padding-bottom: 5px;
    }
    .blog-details-wrapper .wp-block-heading {
        line-height: 1.5;
    }
    .blog-details-wrapper .wp-block-image.size-large {
        margin: 28px 0;
    }
    .blog-details-wrapper .counter-hierarchy .ez-toc-title {
        font-size: 24px !important;
    }
    .blog-details-wrapper ul li a {
        padding: 10px 0;
    }
    .blog-details-wrapper ul.wp-block-list {
        margin: 0 0 20px;
    }
    .blog-details-wrapper figure iframe {
        height: 230px;
    }
    /****==== News Details Page  ====****/

    /****==== Detals Page  ====****/
    .deals_page .best_info .des {
        font-size: 16px;
        text-align: justify;
        line-height: 1.4;
        display: none;
    }
    .product_details .deals_product_sec .mb-5 {
        margin-bottom: 30px !important;
    }
    .product_details .best_info {
        margin-bottom: 30px;
        margin-top: 40px;
    }
    .deals_page .best_info .title {
        padding-bottom: 20px;
    }
    .deals_page .deals_product_sec .latest_product .display_tag {
        top: -4%;
    }

    /****==== Detals Page  ====****/

    /****==== Benchmark Page  ====****/
    .benchmark_sec .benchmark_wrpper_sec .search_sort_sec {
        flex-direction: column;
        margin-bottom: 20px;
    }
   
    .benchmark_sec .benchmark_wrpper_sec .search_sort_sec .search_box_sec {
        width: 100%;
        margin-bottom: 20px;
    }
    .benchmark_sec .benchmark_wrpper_sec .sort_by_sec {
        display: inline-flex;
        align-items: start;
        flex-direction: column;
    }
    .benchmark_sec .benchmark_wrpper_sec .sort_by_sec span.select2.select2-container {
        width: 100%!important;
    }
    .benchmark_sec .benchmark_wrpper_sec .sort_by_sec .filter_title {
        font-size: 17px;
        display: block;
        width: 100%;
        margin: 0 0 10px;
    }
    .benchmark_sec .benchmark_wrpper_sec .filter_sec {
        flex-direction: column;
    }
    .benchmark_sec .benchmark_wrpper_sec .filter_sec .filter_title {
        font-size: 18px;
        margin: 0 0 11px;
        width: 100%;
    }
    .benchmark_sec .benchmark_wrpper_sec .filter_sec .form_group {
        width: 100%;
        margin: 0 0 18px;
    }
    .benchmark_sec .benchmark_wrpper_sec .search_sort_sec .short_sec {
        width: 100%;
        flex-direction: column;
        align-items: baseline;
    }
    .benchmark_page .best_info {
        margin-top: 20px;
    }
    .benchmark_sec .benchmark_wrpper_sec .search_sort_sec .short_sec  select.form-select {
        width: 100%;
    }
    .benchmark_sec .benchmark_wrpper_sec .search_sort_sec .short_sec label {
        display: block;
        font-weight: 700;
        margin-bottom: 11px;
        font-size: 18px;
    }
    .benchmark_sec .benchmark_wrpper_sec .filter_sec .select2-container--default .select2-selection--single {
        height: 40px;
    }
    .benchmark_sec .benchmark_wrpper_sec .search_sort_sec .short_sec  select.form-select {
        width: 100%;
        height: 40px;
        line-height: 30px;
    }
    .benchmark_banner {
        margin-top: 30px;
    }
    /****==== Benchmark Page  ====****/

    .latest_product_sec .latest_product_slider .latest_product .rating_sec img {
        width: 11px;
        margin-right: 4px;
    }
    .latest_product_sec .latest_product_slider .latest_product .rating_sec .rating {
        font-size: 12px;
    }
    .display_tag {
        padding: 4px 5px;
        font-size: 10px;
    }



    /****==== Tag List Page  ====****/
   
    .tag_page .tag_content:before {
        top: -38px;
    }
    .tag_breadcrumb_title {
        padding-bottom: 30px;
    }
    /* .tag_page .best_info .title_content .title {
        background: var(--Blue-Orange, linear-gradient(90deg, #F56040 24.08%, #db5f58 111.24%));
    } */
    .tag_page .best_info .title_content:before {
        top: -19px;
    }
    .tag_page .tag_content .container {
        padding: 30px 0 0;
    }
    /****==== Tag List Page  ====****/

    /* category_link sec */
    .category_link_sec .category_link_content .category_link {
        width: 64%;
    }
    .category_link_sec .category_link_content .category_link {
        width: 64%;
    }
    .category_link_sec .category_link_content .category_link a {
        font-size: 13px;
    }
    .tech_news_grid_five .tech_news_grid {
        margin-bottom: 20px !important;
    }
    .tech_news_grid_two .tech_news_grid {
        margin-bottom: 20px !important;
    }
    .tech_news_grid_three .tech_news_grid {
        margin-bottom: 18px !important;
    }
    .tech_news_grid_four .tech_news_grid {
        margin-bottom: 18px !important;
    }
    /* tech news grid four */
    .tech_news_grid_four .tech_news_content .tech_photo {
        height: 280px;
    }
    .tech_news_grid_four .tech_news_content .title_comment_sec .title {
        font-size: 14px;
    }
    .tech_news_grid_four .tech_news_content .text_content .top_sec .text_content  .date {
        color: #fff;
        font-size: 12px;
        margin: 0;
    }
    /* tech news grid four */
    .tech_news_grid_one .tech_photo {
        height: 260px !important;
    }
    .tech_news_grid_one .tech_news_content .text_content .title_comment_sec .title {
        font-size: 16px;
    }
    .tech_news_sec .tech_news_grid {
        margin-bottom: 0;
    }

    /* category_link sec */

   

   

   
    

    

   
    .footer_sec .f_about .f_logo {
        width: 40%;
    }
    .footer_sec .f_link .f_title {
        margin-bottom: 20px;
        text-align: center;
    }
    .footer_sec .f_link .f_nav_list {
        text-align: center;
    }
    .footer_sec .f_about .des {
        font-size: 14px;
        margin-top: 30px;
        margin-bottom: 10px;
        line-height: 24px;
    }
    .footer_sec .f_bottom .f_bottom_menu {
        padding: 0 0 15px;
        margin: 0 0 15px;
        flex-wrap: wrap;
    }

    /* Footer Sec */
    .footer_new .footer-socials li a span {
        display: none;
    }
    .footer_new .footer-socials li {
        margin: 0 16px 15px;
    }
    .footer_new .footer-socials li a i {
        margin: 0;
    }
    .footer-logo-copyright .footer-menu {
        flex-wrap: wrap;
    }
    
}



/* 480px */
@media only screen and (max-width: 480px) {

    /* .title {
        font-size: 16px;
    } */
    
    .category_link_sec .category_link_content .trending_icon svg {
    width: 80px;
    height: auto;
    }
    
    .view_btn {
        padding: 3px 7px;
        font-size: 10px;
    }

    /****==== Product Seaech Page  ====****/
    .heade_sec .top_heade .techwiser_link {
        height: 35px;
        margin-left: 10px;
        width: 48%;
    }
    .heade_sec .top_heade .search_box input[type="text"] {
        height: 38px;
    }
    .heade_sec .top_heade .search_box svg {
        top: 9px;
    }
    .heade_sec .top_heade .techwiser_link img {
        height: auto !important;
        /* width: 100%; */
    }
    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec {
        margin-bottom: 4px;
    }
   
   
    .dropdown-menu.product_search_dropdown .resent_search_wrapper .best_price .best_price_list a {
        padding: 5px 5px;
        margin-bottom: 6px;
        border-radius: 6px;
        font-size: 11px;
    }
  
    .heade_sec .nav_list {
        width: 75%;
        right: -75%;
    }

    /* .heade_sec .top_heade .techwiser_link img {
        height: 34px;
    } */
    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec .title {
        font-size: 14px;
    }

    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a .text_content .product_info .product_title {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .search_result_wrapper a .text_content .product_info  .price {
        font-size: 14px;
    }

    .heade_sec .top_heade .dropdown.search_dropdown .dropdown-menu.product_search_dropdown .title_sec .title {
        font-size: 12px;
    }
        /****==== Product Seaech Page  ====****/


    /****==== Home Page  ====****/
    .features_sec .title {
        font-size: 18px;
    }
    .best_mobile_sec .title {
        font-size: 18px;
    }
    .latest_product_sec .latest_product_slider .owl-nav button {
        width: 28px;
        height: 28px;
        display: none;
    }
    .latest_product_sec .latest_product_slider .owl-nav button span {
        font-size: 22px;
        line-height: 17px;
    }
    .latest_product_sec  .latest_product_slider {
        padding: 0 0;
    }
   
    .latest_product_sec .latest_product_slider .latest_product .text_content .product_title {
        font-size: 11px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    .latest_product_sec .latest_product_slider .latest_product .text_content .price {
        font-size: 12px;
    }
    .latest_product_sec .latest_product_slider .latest_product .price_sec img {
        width: 28px;
    }
    .latest_product_sec .latest_product_slider .latest_product .rating_sec .rating {
        font-size: 10px;
    }
    .latest_product_sec .latest_product_slider .latest_product .rating_sec img {
        width: 10px;
    }
    .video_features_sec {
        margin-top: 37px;
    }
    .video_features_sec .techwiser_video_sec .video_content .video, .video_features_sec .techwiser_video_sec .video_content .video img {
        height: 50px;
    }
    .video_features_sec .techwiser_video_sec .video_content .text_content .video_title {
        font-size: 9px;
        line-height: 1.2;
    }
    .video_features_sec .techwiser_video_sec .video_content .video .category {
        padding: 2px 2px;
        font-size: 6px;
        top: 3px;
        line-height: 8px;

    }
    .video_features_sec .techwiser_video_sec .video_content .video .play_icon {
        width: 14px;
    }
    .best_mobile_sec {
        margin: 16px auto;
    }
    /* .best_mobile_sec .title {
        font-size: 14px;
    } */
    .best_mobile_sec .best_mobile_slider .owl-nav button {
        width: 28px;
        height: 28px;
    }
    .best_mobile_sec .best_mobile_slider .owl-nav button span {
        font-size: 25px;
        line-height: 24px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .latest_phone {
        width: 60px;
        border-radius: 6px;
        padding: 4px;
        margin-right: 7px;
        flex: 0 0 60px;
    }
    
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        font-size: 11px;
        margin-bottom: 2px;
        width: 99%;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content  .price {
        font-size: 12px;
    }
    .explore_price_sec .explore_btn_sec .explore_btn {
        margin-right: 3px;
        /* font-size: 10px; */
        padding: 5px 7px;
        margin-bottom: 9px;
    }
    .explore_price_sec .container .title {
        /* margin-bottom: 6px; */
        font-size: 16px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .rating_sec .rating {
        margin: 0;
        font-size: 8px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .rating_sec img {
        width: 7px;
        margin-right: 2px;
    }
    .comparisons_product_sec {
        margin: 40px auto;
    }
    .comparisons_product_sec .comparisons_product_slider .owl-nav button {
        width: 28px;
        height: 28px;
        display: none;
    }
    .comparisons_product_sec .comparisons_product_slider .owl-nav button  span {
        font-size: 24px;
        line-height: 24px;
    }
    .comparisons_product_sec .comparisons_product_slider {
        padding: 0 0;
    }
    .comparisons_product_sec .comparisons_product_slider .comparisons_product .comparisons_content .text_content .product_title {
        font-size: 10px;
        line-height: 15px;
    }
    .latest_article_sec .latest_article .article_photo, .latest_article_sec .latest_article .article_photo img {
        height: 165px;
    }
    .latest_article_sec .latest_article .text_content .title {
        font-size: 15px;
        line-height: 23px;
    }
    .latest_article_sec .latest_article_list .latest_article .article_photo {
        width: 100%;
        height: 80px;
        flex: 0 0 100%;
    }
    .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 13px;
    }
    .latest_article_sec .latest_article .text_content .bottom_sec  time {
        font-size: 13px;
    }
    .latest_article_sec .latest_article .article_photo {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    .latest_article_sec .latest_article_list .latest_article .article_photo {
        width: 100%;
        height: 165px;
        flex: 0 0 100%;
        margin: 0 auto 10px;
        border-radius: 4px;
    }
    .latest_article_sec .latest_article_list .latest_article .article_photo img {
        height: 165px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content {
        width: 100%;
    }
    /* .latest_product_sec .latest_product_slider .latest_product .latest_phone {
        height: 94px;
    }
    .latest_product_sec .latest_product_slider .latest_product .latest_phone img {
        height: 77px;
    } */
    .latest_article_sec .latest_article_list .latest_article .text_content .title {
        font-size: 15px;
        line-height: 23px;
        margin: 0 auto 6px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content .bottom_sec span {
        font-size: 12px;
    }
    .latest_article_sec .latest_article_list .latest_article .text_content .bottom_sec .published {
        font-size: 12px;
    }
    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 13px;
    }
    .brand_sec .brand_slider {
        padding: 0 0;
    }

    .brand_sec .brand_slider .brand_content, .brand_sec .brand_slider .brand_content img {
        height: 84px;
    }
    .brand_sec .brand_slider .owl-nav button {
        width: 28px;
        height: 28px;
        display: none;
    }
   
    .brand_sec .brand_slider .owl-nav button span {
        font-size: 25px;
        height: 10px;
        width: 10px;
        line-height: 7px;
    }
    .best_mobile_sec .best_mobile_slider .owl-nav button {
        display: none;
    }
    .best_mobile_sec .best_mobile_slider {
        padding: 0 0;
    }
    .explore_price_sec .explore_btn_sec .explore_btn img {
        height: 14px;
        margin-right: 4px;
    }
    .popular_comparisons_sec .comparisons_product .vs_icon {
        top: 50px;
        width: 54px;
    }
    .new_home_page .latest_article_sec .title_content {
        margin-bottom: 20px;
    }
    .new_home_page .latest_article_sec .title_content .title {
        margin: 14px auto 0;
    }
    /****==== Home Page  ====****/


     /****==== New Home Page  ====****/
     .view_detail {
        font-size: 13px;
    }
    .new_home_page .view_all {
        font-size: 14px;
        padding: 6px 10px;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery {
        margin-bottom: 30px;
    }
    .new_home_page .latest_phone_gallery_sec .title_content .t_des {
        font-size: 14px;
    }
    .new_home_page .sub_title {
        font-size: 14px;
    }
    .new_home_page .latest_phone_gallery_sec {
        padding: 30px 0;
    }
    .new_home_page .latest_phone_gallery_sec .title {
        margin: 8px auto;
    }
    .new_home_page .latest_phone_gallery_sec .title_content {
        margin-bottom: 22px;
    }
    .new_home_page .latest_phone_gallery_sec .best_phone_grid .text_content .product_name {
        font-size: 14px;
        line-height: 1.4;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .text_content .title {
        font-size: 26px;
    }
    .new_home_page .banner_latest_banner_sec .latest_news .latest_phone {
        top: -50px;
        width: 30%;
    }
    .new_home_page .latest_phone_gallery_sec .best_phone_grid .phone_post {
        /* padding: 30px 15px 10px; */
        /* height: 180px; */
        padding: 15px;
    }
    /* .new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .phone_post {
        height: 180px;
    } */
    .new_home_page .best_camera_sec .top_sec .title_sec .h_title {
        font-size: 18px;
        margin: 0;
    }
    .new_home_page .sub_title {
        font-size: 12px;
    }
    .new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .text_content .product_name {
        font-size: 14px;
    }
    .new_home_page .best_camera_sec .best_phone_slider .best_phone_grid .text_content .price {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .new_home_page .featured_video_sec .title_content .t_des {
        margin-bottom: 0;
        font-size: 14px;
    }
    .new_home_page .featured_video_sec .title {
        margin: 10px auto 5px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video {
        height: 160px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .play_icon {
        width: 58px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .video_title {
        font-size: 16px;
    }
    .new_home_page .featured_video_sec .featured_video_content .h_featured_video .text_content .review_tag {
        padding: 6px 8px;
        font-size: 12px;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .top_sec .title {
        font-size: 18px;
    }
    .new_home_page .benchmarks_deals .ongoing_deals_sec .top_sec .view_all {
        font-size: 15px;
    }
    .new_home_page .view_all svg {
        width: 7px;
        margin-left: 9px;
    }
    .new_home_page .latest_phone_gallery_sec .compare_banner_sec {
        margin-top: 90px;
        padding: 109px 30px 20px;
    }
    .new_home_page .compare_banner_sec .text_content .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .new_home_page .latest_article_sec .article_blog_sec .article_post {
        height: 150px;
        margin-bottom: 20px;
    }
    .new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table thead th {
        font-size: 12px;
    }
    .new_home_page .benchmarks_deals .benchmarks_table_sec .dt-layout-row.dt-layout-table .benchmarks_table tbody tr td .brand_name {
        font-size: 12px;
    }
    .new_home_page .brand_sec .h_brand_slider .owl-nav button {
        top: 30px;
        height: 28px;
    }
    .new_home_page .brand_sec .h_brand_slider .brand_content {
        height: 40px;
    }
    .new_home_page .brand_sec .h_brand_slider .brand_content img {
        height: 40px;
    }
    /* .new_home_page .benchmarks_deals .ongoing_deals_sec .h_deals_slider .best_phone_grid .phone_post {
        height: 200px;
    } */
    .new_home_page .benchmarks_deals .ongoing_deals_sec .best_phone_grid .display_tag {
        top: 7px;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery_two .phone_post {
        height: 170px;
    }
    /* .new_home_page .latest_phone_gallery_sec .best_phone_grid .phone_post {
        height: 180px;
    } */
    .new_home_page .comparisons_sec .comparisons_slider .owl-nav button {
        top: 65px;
    }
    .new_home_page .comparisons_sec .comparisons_grid .text_content .name {
        font-size: 13px;
        padding: 0 6px;
    }
    .new_home_page .benchmarks_deals .benchmarks_table_sec .benchmarks_table {
        overflow: scroll;
        width: 320px !important;
        display: block;
    }
    .new_home_page .latest_phone_gallery_sec .latest_phone_gallery .h_latest_gallery .owl-nav button {
        top: 66px;
    }
    .new_home_page .phone_tag {
        top: -10px;
        padding: 4px 6px;
        font-size: 9px;
    }
    .new_home_page .view_detail {
        font-size: 13px;
    }
    /****==== New Home Page  ====****/

    /****==== Product Details Page  ====****/
    .product_details .breadcrumb_menu li {
        margin-right: 5px;
        font-size: 12px;
    }
    .product_details .breadcrumb_menu li a {
        font-size: 12px;
    }
    .product_details .breadcrumb_menu li i {
        font-size: 8px;
        margin-left: 2px;
    }
    .product_info_details .announced {
        font-size: 14px;
    }
    .product_details .product_text_content .alert_sec .view_btn {
        font-size: 11px;
    }
    .specifications_sec .specifications_info .specifications .accordion-body .product_list li {
        font-size: 12px;
    }
    .specifications_sec .specifications_info .specifications .accordion-body .product_list li span {
        width: 54%;
    }
    .specifications_sec .specifications_info .specifications .accordion-button {
        font-size: 16px;
    }
    .specifications_sec {
        padding: 16px 10px;
        border-radius: 10px;
    }
    .specifications_sec .title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .specifications_sec .specifications_info .specifications {
        padding: 15px 8px;
        margin-bottom: 20px;
    }
    .specifications_sec .specifications_info .specifications .accordion-button {
        font-size: 14px;
    }
    .store_sec .des {
        font-size: 14px;
        line-height: 1.5;
    }
    .store_sec .bottom_sec .store_des {
        font-size: 14px;
        font-weight: 500;
    }
     .compare_mobile_sec.product_details_compare .search_add_sec {
        padding: 62px 8px;
    }

    
    .product_details .product_text_content .link_sec .view_btn {
        font-size: 10px;
        margin-right: 1px;
        padding: 2px 4px;
    }
    .store_sec {
        padding: 7px;
        margin-top: 20px;
    }
    .product_details .product_text_content .link_sec .view_btn svg {
        margin: 0 4px 0 0;
        width: 13px;
    }
    .product_details .product_text_content .link_sec .view_btn.google svg {
        width: 15px;
    }
    .product_details .product_text_content .link_sec .view_btn.atricle svg {
        width: 16px;
    }
    .product_details .product_details_photo .product_slider {
        /* height: 230px; */
        width: 88%;
    }
    /* .product_info_details .product_details_photo .product_slider .product_photo img {
        height: 168px;
    } */
    .product_details .product_text_content .pros_cons_content .pros_list li  span {
        width: 84%;
        font-size: 10px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_add_sec .add_sec span {
        font-size: 14px;
        line-height: 27px;
    }
    .user_actions_sec .user_btn {
        margin-right: 48px;
    }
    /****==== Product Details Page  ====****/

    .best_phone_content .phone_details_content .product_text_content .score_sec .score_ratings .ratings .text_content .ratings_number {
        font-size: 13px;
    }
    .best_phone_content .phone_details_content .product_text_content .title_price .title {
        font-size: 14px;
    }
    .best_phone_content .phone_details_content .product_text_content .title_price .price {
        font-size: 15px;
    }

    /****==== Best Phone Page  ====****/
    .best_info {
        margin-bottom: 30px;
    }
    .best_info .best_mobile_info table.mobile_price_table tr th {
        font-size: 16px;
        padding: 8px 20px;
    }
    .best_info .best_mobile_info table.mobile_price_table tr  td {
        padding: 12px 20px;
        width: 50%;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec .number {
        width: 38px;
        height: 38px;
        font-size: 19px;
        flex: 0 0 38px;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec .number {
        width: 22px;
        height: 22px;
        font-size: 12px;
        flex: 0 0 22px;
    }
    .compare_count_btn.view_btn span {
        padding: 2px 6px;
        margin-left: 10px;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec a {
        font-size: 9px;
    }
    .best_phone_list .best_phone_content .top_sec .phone_title_sec .education_choice {
        width: 30px;
        margin-left: 8px;
    }
    .best_phone_list .best_phone_content .top_sec .compare_btn {
        padding: 10px 8px;
        line-height: 17px;
    }
    .compare_btn i {
        font-size: 12px;
        margin-right: 6px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_photo {
        padding: 10px;
        flex: 0 0 100%;
        width: 100%;
        margin: 0 auto 20px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content {
        padding: 8px;
    }
    .best_phone_list .best_phone_content {
        padding: 15px;
        margin-bottom: 20px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .score_sec {
        flex-direction: column;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .score_sec .number {
        width: 38%;
        margin-bottom: 8px;
    }
    .best_gaming_banner .gaming_banner .category {
        top: 18px;
        padding: 8px 12px;
        font-size: 16px;
    }
    .compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone {
        height: 94px;
    }
    .compare_mobile_sec.product_details_compare .container .search_compare_wrapper .search_product .latest_phone img {
        height: 80px;
    }

   
    /****==== Best Phone Page  ====****/

    /****==== Product Details Page  ====****/
  
    .user_actions_sec .user_btn .icon {
        width: 24px;
        height: 24px;
    }
    .user_actions_sec .user_btn.want .icon svg {
        width: 12px;
    }
    .user_actions_sec .user_btn.have .icon svg {
        width: 12px;
    }
    .user_actions_sec .user_btn.had .icon svg {
        width: 14px;
    }
    .user_actions_sec .user_btn.review .icon svg {
        height: 14px;
    }
    .user_actions_sec .user_btn .icon i {
        font-size: 12px;
    }
    .user_actions_sec .user_btn.alert .icon svg {
        width: 13px;
    }
    .user_actions_sec .user_btn .text_content .action {
        font-size: 8px;
    }
    .user_actions_sec .user_btn .text_content .sub {
        font-size: 7px;
        line-height: 9px;
    }
    .user_actions_sec .user_btn .add_icon {
        width: 13px;
        height: 13px;
        left: 23px;
    }
    .user_actions_sec .user_btn.want .add_icon {
        left: 23px;
    }
    .user_actions_sec .user_btn.have .add_icon {
        left: 23px;
    }
    .user_actions_sec .user_btn .add_icon i {
        line-height: 25px;
    }
    .user_actions_sec .user_btn.review .add_icon {
        left: 22px;
    }
    .user_actions_sec .user_btn.review .add_icon {
        left: 20px;
    }
    .user_actions_sec .user_btn.compare .add_icon {
        left: 25px;
    }
    .user_actions_sec .user_btn.alert .add_icon {
        left: 28px;
    }
    /****==== Product Details Page  ====****/

    /****==== Ranking Page  ====****/
      .smart_phone_table .nav-tabs li .nav-link {
        padding: 7px 2px;
        font-size: 13px;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group {
        width: 66%;
        margin-right: 0;
        margin-bottom: 17px;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.brand {
        width: 54%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group.year {
        width: 54%;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form .form_group {
        margin-bottom: 10px;
    }
    .table_ranking_wrapper .top_sec .filter_form_sec .filter_form  .form_group.reset_btn {
        width: 52%;
    }
    .filter_form_sec .select_item_sec a {
        margin-bottom: 10px;
    }
    /* .best_phone_content .phone_details_content .phone_photo_sec .product_photo {
        height: 209px;
    }
    .best_phone_content .phone_details_content .phone_photo_sec .product_photo img {
        height: 184px;
    } */

    /****==== Ranking Page  ====****/

    /****==== Compare Mobiles Page  ====****/
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content {
        width: 56%;
        padding-left: 7px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content .product_title {
        font-size: 8px;
        line-height: 10px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .text_content .price {
        font-size: 10px;
        margin: 0;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec .product_score .text_content span {
        font-size: 9px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .close_icon svg {
        width: 13px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .close_icon {
        left: 45px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product {
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product {
        border-radius: 0px;
        padding: 6px 6px;
        height: 58px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .latest_phone {
        width: 44%;
        padding: 4px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .close_icon {
        left: auto;
        top: 0;
    }
    .compare_mobile_sec .container {
        padding: 20px 20px;
    }
    .compare_mobile_sec .search_compare_wrapper {
        padding: 10px;
      
    }
    .search_product {
        padding: 10px;
        border-radius: 8px;
    }
    .search_product .latest_phone {
        padding: 8px;
        border-radius: 10px;
    }
    .search_product .close_icon {
        right: 6px;
        top: 3px;
        width: 20;
    }
    .search_product .close_icon svg {
        width: 15px;
    }
    .search_product .text_content .product_title {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .search_product .text_content .price {
        font-size: 12px;
    }
    .search_product .text_content img {
        width: 11px !important;
    }
    .search_product .price_sec .product_score {
        width: 40px;
        flex: 0 0 40px;
    }
    .search_product .text_content img {
        width: 11px !important;
    }

    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone img {
        height: 52px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .latest_phone {
        height: 60px;
    }

    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper {
        padding: 12px 10px;
        height: 70px;
    }
    
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product {
        min-height: 68px;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header {
        top: 109px;
    }
    .best_phone_list .best_phone_content .pros_cons_wrapper.show .pros_cons_sec {
        margin-bottom: 0;
    }
    .pros_cons_mobile .pros_cons_content .pros_list {
        width: 100%;
        padding: 0 0 20px;
    }
    
    .pros_cons_mobile .pros_cons_content .pros_list li span {
        width: 82%;
        font-size: 16px;
    }

    .compare_mobile_sec .search_compare_grid {
        width: 46%;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product {
        height: 100%;
        min-height: 170px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone {
        height: 94px;
    }
    .compare_mobile_sec .search_compare_wrapper .search_product .text_content .product_title {
        font-size: 10px;
        margin-bottom: 4px;
    }
    .compare_mobile_sec.hide_features .search_compare_wrapper .text_content .price_sec .price {
        font-size: 8px;
    }
    section.compare_mobile_sec.compare_mobile_header .search_compare_check .mobile_title_sec .m_title {
        font-size: 11px;
    }
    section.compare_mobile_sec .search_compare_check .mobile_title_sec .m_title {
        font-size: 14px;
    }
    .comparisons_info {
        margin-top: 20px;
    }
    .comparisons_info .comparisons_accordion .accordion-item {
        margin-bottom: 30px;
    }
    .comparisons_info .comparisons_accordion .accordion-button {
        padding: 12px 0;
    }
    .comparisons_info .comparisons_accordion .accordion-item .accordion-body {
        padding: 13px 0;
    }
    .comparisons_info .comparisons_accordion .accordion-body .comparisons_table_sec table.comparisons_table tbody tr td {
        font-size: 11px;
        min-width: 85px;
        padding: 10px;
    }
    

    .compare_mobile_sec .search_compare_wrapper .search_product .latest_phone img {
        height: 75px;
    }

    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec .product_score {
        left: -13px;
        top: -10px;
        position: relative;
    }
    .compare_mobiles_page.active .compare_mobile_sec.compare_mobile_header .search_compare_wrapper.search_active .search_product .price {
        font-size: 6px;
        margin-top: 14px;
    }
    .product_details.compare_mobiles_page .new_comparisons_sec .sub_title {
        font-size: 16px;
    }
    .new_comparisons_sec .title_content {
        margin-bottom: 30px;
    }
    .new_comparisons_sec .comparisons_grid .comparisons_content img {
        width: 70px;
    }
     /****==== Compare Mobiles Page  ====****/

     /****==== All Brand Page  ====****/
     .brand_slider .brand_content_sec {
        height: 72px;
        padding: 6px;
        border-radius: 5px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_icon {
        width: 40px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_info .count {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .brand_slider .brand_content_sec .barand_wrapper .brand_info 
    .view_btn {
        font-size: 11px;
        padding: 2px 8px;
    }
    .best_phone_list .best_phone_content .phone_details_content .product_text_content .product_specifications .more {
        padding: 10px;
    }
  
     /****==== All Brand Page  ====****/

     /****==== News Blog Page  ====****/
     .product_details.news_blog_page .best_info {
        margin-bottom: 0;
    }
    .product_details.news_blog_page .latest_article_sec {
        margin-top: 0;
    }
     .product_details.news_blog_page .tab_blog_content .about_mobile_photo .title {
        font-size: 16px;
    }
   
    .product_details.news_blog_page .tab_blog_content .about_mobile_photo .latest_article_sec .latest_article {
        padding: 14px;
    }
    .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo, .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .article_photo img {
        height: 150px;
    }
    .product_details.news_blog_page .news_tab_sec .tab_blog_content .latest_article .text_content .title {
        font-size: 11px;
        line-height: 17px;
        margin-bottom: 0;
    }
    .product_details.news_blog_page .video_features_sec .techwiser_video_sec {
        padding: 18px 12px 8px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video, .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video img {
        height: 65px;
    }
    .product_details.news_blog_page .video_features_sec .techwiser_video_sec .video_content .video .play_icon {
        width: 24px;
    }
    .product_details.news_blog_page .video_features_sec .techwiser_video_sec .video_content .text_content .video_title {
        font-size: 9px;
        line-height: 12px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video, .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video img {
        height: 45px;
    }
   
    .product_details.news_blog_page .video_features_sec.latest_article_sec .techwiser_video_sec .video_content.youtube_video .video img.play_icon {
        height: auto;
        width: 18px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo, .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article .article_photo img {
        height: 150px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article_list .latest_article {
        padding: 16px 12px;
        border-radius: 10px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .bottom_sec  time {
        font-size: 11px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 10px;
        line-height: 11px;
    }
    .product_details.news_blog_page .latest_article_sec .container {
        padding-top: 0px;
    }
    .product_details.news_blog_page .latest_article_sec .title {
        text-align: center;
        margin-bottom: 20px;
    }
    .product_details.news_blog_page .news_tab_sec .nav-tabs button {
        font-size: 16px;
        padding: 0 7px 7px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .title {
        font-size: 14px;
        line-height: 21px;
    }
    .product_details.news_blog_page .news_tab_sec .container {
        padding: 0 10px;
    }
    .news_tab_sec .trending_icon {
        width: 24%;
    }
    .news_tab_sec .trending_icon {
        width: 24%;
        margin-right: 10px;
    }
   
    .product_details.news_blog_page .latest_article_sec .latest_article_list {
        padding: 18px;
        margin-top: 0;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec {
        margin: 0 auto  6px;
    }
    .product_details.news_blog_page .news_tab_sec .container.text-center {
        padding: 0;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .article_photo {
        width: 64px;
        flex: 0 0 64px;
        height: 84px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .article_photo img{
        height: 100%;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content {
        width: 67%;
        margin-left: 8px;
    }
    .product_details.news_blog_page .video_features_sec.latest_article_sec .latest_article_list .latest_article .text_content .title {
        font-size: 12px;
        line-height: 15px;
    }
    .product_details.news_blog_page .news_tab_sec .latest_article_sec.latest_blog .container {
        padding-top: 0;
    }
    .product_details.news_blog_page  .features_guides_sec  .owl-nav {
        width: 33%;
    }
    .features_guides_sec .container {
        padding: 0 !important;
    }
    .features_guides_sec {
        padding: 30px 0 80px;
    }
    .features_guides_sec .owl-dots {
        bottom: -17%;
    }
    .features_guides_sec .features_content {
        height: 250px;
    }
    /* .features_guides_sec .features_content .text_content .title_comment_sec {
        bottom: -17%;
    } */
    .tech_news_sec .tech_news_right .text_content .top_sec {
        height: 32%;
    }
    
    .features_guides_sec .features_content .text_content .bottom_text_content {
        padding: 10px 20px;
    }
    .features_guides_sec .features_content .text_content .bottom_text_content .title {
        font-size: 16px;
    }
    .tech_news_sec .tech_news_content .text_content:hover .title_comment_sec {
        margin-top: -40px;
    }
    .features_guides_sec .features_content .text_content .title_comment_sec .bottom_content {
        padding: 12px 15px;
    }
    .features_guides_sec .features_content .text_content .title_comment_sec .bottom_content .views {
        font-size: 11px;
    }
    /* .features_guides_sec .features_content .text_content .title_comment_sec {
        bottom: -17%;
    } */
    .features_guides_sec .features_content .text_content .title_comment_sec .bottom_content .views i {
        margin-right: 2px;
        font-size: 10px;
    }
    .tech_news_sec .tech_news_content .tech_photo {
        height: 220px;
    }
    .tech_news_sec .tech_news_content .text_content .top_sec {
        height: 60%;
    }
    .tech_news_sec .tech_news_content .text_content .bottom_text_content .title {
        padding-bottom: 0;
        font-size: 15px;
    }
    .tech_news_sec .tech_news_content .text_content .bottom_content {
        padding: 12px 8px;
    }
    .tech_news_sec .tech_news_content .text_content .title_comment_sec .bottom_text_content {
        padding: 0px 15px 10px;
    }
    .tech_news_sec .tech_news_right .tech_news_blog .text_content {
        padding: 12px;
    }
    .tech_news_sec .tech_news_right .text_content .bottom_text_content .title {
        font-size: 12px;
    }
    .tech_news_sec .tech_news_right .text_content .top_sec .text_content  .date {
        font-size: 11px;
    }
    .top_news_sec .top_news_blog .text_content {
        padding: 12px;
    }
    .top_news_sec .top_news_blog .text_content .title {
        font-size: 12px;
        margin: 4px auto 0;
        padding-bottom: 10px;
    }
    .top_news_sec .top_news_blog .text_content .title {
        margin: 4px auto 0;
        padding-bottom: 7px;
    }
    .top_news_sec .top_news_blog .text_content span {
        font-size: 12px;
    }
    .top_news_sec .top_news_blog .date {
        right: 5px;
        font-size: 9px;
    }
    .top_news_sec .top_news_blog .tech_photo {
        height: 230px;
    }
    .product_details.news_blog_page .news_tab_sec  .view_btn {
        padding: 6px 10px;
    }

    .product_details.news_blog_page .tab_blog_content .about_mobile_photo .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 10px;
    }
    .product_details.news_blog_page .tab_blog_content .about_mobile_photo .latest_article_sec .latest_article .text_content .bottom_sec time {
        font-size: 10px;
    }
     /****==== News Blog Page  ====****/

    /****==== News Details Page  ====****/
    .product_details.news_blog_page .breadcrumb_sec {
        padding-top: 24px;
    }
    .details_right .related_post_sec .related_post_photo {
        height: 200px;
    }
    .details_right .related_post_sec .title {
        font-size: 15px;
    }
    .details_right .related_post_sec .bottom_sec time {
        font-size: 15px;
    }
    .product_details.news_blog_page .news_details_sec {
        margin-top: 20px;
    }
    .news_details .bottom_sec span {
        font-size: 11px;
    }
    .news_details .bottom_sec time {
        padding-left: 5px;
        margin-left: 2px;
        font-size: 11px;
    }
    .news_details_sec .news_details .text_content .sub_title {
        margin-bottom: 5px;
        margin-top: 8px;
        /* font-size: 16px; */
        line-height: 37px;
    }
    .news_details .bottom_sec span {
        font-size: 11px;
    }
    .news_details_sec .news_details .table_link_content .link_list li a {
        padding: 8px 0;
        line-height: 20px;
        font-size: 14px;
    }
    .details_right .latest_article .article_photo {
        height: 200px;
        margin: 0 auto 11px;
    }
    .blog_slider_sec .blog_slider {
        padding: 0 30px;
    }
    .blog_slider_sec .blog_slider .owl-nav button {
        width: 28px;
        height: 28px;
    }
    .product_details.news_blog_page .news_details_sec .social_share_sec a {
        padding: 7px 12px;
        font-size: 13px;
        margin-right: 7px;
    }
    .product_details.news_blog_page .news_details_sec .social_share_sec .share {
        min-width: 53px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
    .product_details.news_blog_page .news_details_sec .social_share_sec .share i {
        font-size: 12px;
        margin-right: 7px;
    }
    .product_details.news_blog_page .news_details_sec .post_author_sec .author-content .name {
        font-size: 18px;
        line-height: 18px;
    }
  
    .product_details.news_blog_page .blog_slider_sec.m_related_slider .blog_slider {
        padding: 0 30px;
    }
    .product_details.news_blog_page .blog_slider_sec .blog_slider .latest_article {
        padding: 10px;
    }
    
    .product_details.news_blog_page .blog_slider .latest_article .text_content .title {
        margin-bottom: 6px;
        font-size: 12px;
    }
    .product_details.news_blog_page .blog_slider_sec .blog_slider .latest_article .article_photo {
        height: 130px;
    }
    .product_details.news_blog_page .blog_slider_sec.m_related_slider .blog_slider button {
        width: 26px;
        height: 26px;
    }
    .blog_list_content .subtitle span {
        padding: 16px 15px;
        font-size: 28px;
    }
    .blog_list_point li {
        font-size: 16px;
    }

    .blog-details-wrapper .wp-block-heading {
        font-size: 28px;
    }
    .blog-details-wrapper h3 {
        font-size: 26px !important;
    }
    .blog-details-wrapper figure iframe {
        height: 170px;
    }
     /****==== News Details Page  ====****/

     /****==== Deals Page  ====****/
     .product_details .best_info {
        margin-bottom: 30px;
        margin-top: 30px;
    }
    .deals_page .deals_product_sec .latest_product .display_tag {
        top: -3%;
    }
     /****==== Deals Page  ====****/

    /****==== Tag List Page  ====****/
    .tag_page .tag_content:before {
        top: -13px;
    }
    .product_details.news_blog_page .latest_article_sec .title {
        margin-bottom: 20px;
        font-size: 18px;
    }
    .tag_page .latest_article_sec {
        padding: 14px;
    }
    .tag_page.product_details.news_blog_page  .latest_article_sec .latest_article .text_content .title {
        margin-bottom: 0;
    }
    .tag_page.product_details.news_blog_page  .latest_article_sec .latest_article .text_content .bottom_sec  time, .tag_page.product_details.news_blog_page  .latest_article_sec .latest_article .text_content .bottom_sec span {
        font-size: 10px;
    }
    .product_details.news_blog_page .latest_article_sec .latest_article .text_content .bottom_sec  time {
        margin-left: 2px;
        padding-left: 2px;
    }
    /****==== Tag List Page  ====****/

    /* New Tab Clss */
    .category_link_sec .category_link_content .trending_icon {
        width: 30%;
        margin-right: 10px;
        flex: 0 0 30%;
    }
    .category_link_sec .category_link_content .category_link {
        width: 66%;
    }

    .tech_news_grid_four .tech_news_content .title_comment_sec .title {
        font-size: 12px !important;
    }
    .tech_news_grid_four .tech_news_content .text_content .top_sec .text_content .name {
        font-size: 12px;
    }
    .tech_news_grid_four .tech_news_content .text_content .top_sec .text_content  .date {
        font-size: 11px;
    }
    .tech_news_grid_two .tech_news_content .text_content .title_comment_sec .bottom_text_content .title {
        font-size: 16px;
    }
     /* New Tab Clss */

     .news_letter_sec .news_letter_content .title:after {
        bottom: -20px;
        background-size: 17%;
        background-position: 73% center;
    }
    
    .footer-logo-copyright .footer-menu a {
        font-size: 16px;
    }
    .footer_new .footer_copyright {
        margin-top: 4px;
    }
    .footer-logo-copyright .footer-menu li {
        padding: 0 6px;
    }
}   



/* 440px */
@media only screen and (max-width: 440px) {


    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec .product_score {
        left: -16px;
        top: -10px;
    }

    .footer-logo-copyright .footer-menu a {
        font-size: 15px;
    }
}


/* 430px */
@media only screen and (max-width: 430px) {
    /* .latest_product_sec .latest_product_slider .latest_product .latest_phone {
        height: 124px;
    }
    .latest_product_sec .latest_product_slider .latest_product .latest_phone img {
        height: 100px;
    } */

    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec .product_score {
        left: -20px;
    }
    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 11px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        font-size: 12px;
    }


    .footer-logo-copyright .footer-menu li {
        padding: 0 5px;
    }

}

/* 414px */
@media only screen and (max-width: 414px) {
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        font-size: 8px;
    }
    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 9px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        font-size: 10px;
        line-height: 1.6;
    }

    .brand_sec.all_brand .brand_content_sec {
        padding: 10px;
    }
    .brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_icon {
        width: 30px;
    }
    .brand_sec.all_brand .brand_content_sec .barand_wrapper .brand_info {
        margin-left: 7px;
    }

    .latest_product_sec .latest_product_slider .latest_product .rating_sec {
        top: 20px;
    }
    .display_tag {
        padding: 2px 5px;
        font-size: 10px;
    }

    .footer-logo-copyright .footer-menu li {
        padding: 0 3px;
    }
    .footer-logo-copyright .footer-menu a {
        font-size: 13px;
    }


}
/* 390px */
@media only screen and (max-width: 390px) {
    .brand_sec .brand_slider .brand_content, .brand_sec .brand_slider .brand_content img {
        height: 80px;
    }
    .compare_mobile_sec.compare_mobile_header .search_compare_wrapper .search_product .price_sec .product_score {
        left: -28px;
        top: -10px;
    }
    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 7px;
    }
    .best_mobile_sec .container .best_mobile_slider .best_product .text_content .product_title {
        font-size: 9px;
        line-height: 1.4;
    }
    .display_tag {
        padding: 2px 5px;
        font-size: 9px;
    }
    
}
/* 375px */
@media only screen and (max-width: 375px) {
    .brand_sec .brand_slider .brand_content, .brand_sec .brand_slider .brand_content img {
        height: 80px;
    }
    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 6px;
    }

}

/* 360px */
@media only screen and (max-width: 360px) {
    .brand_sec .brand_slider .brand_content, .brand_sec .brand_slider .brand_content img {
        height: 94px;
    }

    /* .latest_product_sec .latest_product_slider .latest_product .latest_phone img {
        height: 70px;
    }
    .latest_product_sec .latest_product_slider .latest_product .latest_phone {
        height: 90px;
    } */

    .features_sec .features_tab_sec .nav-tabs li {
        margin: 0 5px;
    }

}
 /*=============== End Responsive css ===============*/

.countFilter {
    width: 30px;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #dd5c00;
    color: #dd5c00;
    border-radius: 50%;
}
.m_filter_content_sec .lunch_sec .filter_tab button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hasFilter:after {
    content: "";
    position: relative;
    width: 10px;
    height: 10px;
    background: #d67042;
    border-radius: 50%;
    margin-left: 5px;
    margin-top: -13px;
}



/*08-29-2025*/
.mega_menu_dropdown > .d-flex > button.dropdown-toggle {
    background: transparent !important;
    border: 0;
    color: #fff;
    padding: 0;
    z-index: 9;
    margin-left: -11px;
}



.dropdown.m_news > .d-flex > button.dropdown-toggle {
    background: transparent !important;
    border: 0;
    color: #fff;
    padding: 0;
    z-index: 9;
    margin-left: -8px;
}

.dropdown.m_news > .d-flex > a {
    border: 0 !important;
}

.dropdown.m_news > .d-flex {
    border-bottom: 1px solid #474747;
}