@charset "utf-8";
*, *:after, *:before {box-sizing: border-box;}
body {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 14px;
    line-height: 25px;
	padding: 0;
	margin: 0;
    color: #5a5a5a;  
    background: #ffffff;
    overflow-x: hidden;
}
html{overflow-x: hidden;}
.container{position: relative;max-width: 1100px;}
.container:after, .clearfix:after{content: ""; display: block; clear: both;}
.spacer, .clear {height: 0; line-height: 0; clear: both; font-size: 0; display: block;}
.page-container{position: relative;max-width: 1200px;margin: 50px auto;}
.section{padding: 30px 0;position: relative;z-index: 1;}
a{text-decoration: none;}
a:hover{text-decoration: none;}
ul{list-style: none;margin-bottom: 0;padding-left: 0;}
.main_container{position: relative;}
img{max-width: 100%;height: auto;}
figure {margin: 0;}
/* ------------------------ */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    text-transform: capitalize;
}
/*----------------------------------------------------
scroll bar
------------------------------------------------------*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
    border-radius: 0px;
    background-color: #fff;
    width: 8px;
}
::-webkit-scrollbar {
    width: 10px;
    background-color: #fff;
}
::-webkit-scrollbar-thumb {
    border-radius: 20px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, .3);
    background-color: #000;
}
.scrollup {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 5;
    width: 50px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    color: #fff;
    border-radius: 5px 5px 0 0;
    background: #00000080;
    text-align: center;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    display: none;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.scrollup:hover {
    background: #000000;
    color: #ffffff;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    width: 100%;
    line-height: 60px;
    padding: 0 20px;
    font-size: 16px;
    height: 60px;
    border: 1px solid #ccc;
}
/* Header
--------------------------------*/
header {
    position: relative;
    
  z-index: 9;
  padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: ease-out 0.5s;
  -webkit-transition: ease-out 0.5s;
  -moz-transition: ease-out 0.5s;
}
.logo {
    margin-right: 30px;
    width: 180px;
}


/*Header END*/

/* Navigation
------------------------------------ */
.nav-menu{text-align: center;}
.nav-menu ul{list-style: none;margin: 0;padding: 0;}
.nav-menu li {
    margin: 0 20px 0 0px;
    position: relative;
    float: left;
}
.nav-menu li > a {
    display: block;
    padding: 0 2px;
    font-size: 14px;
    line-height: 30px;
    color: #000;
    text-transform:uppercase;
}
/* Top and Bottom borders go out */
.nav-menu li > a:before, .nav-menu li > a:after
{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #000;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

.nav-menu li > a:before
{
    top: 0px;
    transform: translateY(10px);
    opacity: 0;
    display: none;
}

.nav-menu li > a:after
{
    bottom: 0px;
    transform: translateY(-10px);
}

.nav-menu li:hover > a:before, .nav-menu li:hover > a:after, .nav-menu li.current-menu-item > a:before, .nav-menu li.current-menu-item  > a:after
{
    opacity: 1;
    transform: translateY(0px);
}
.nav-menu ul li.menu-item-has-children{margin-right: 35px;}
.nav-menu ul li.menu-item-has-children .subarrow{
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid #000;
    transform: rotate(45deg);
    top: 8px;
    right: -12px;
    border-top: 0;
    border-left: 0;
    
}
.nav-menu ul .sub-menu{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    color: #000;
    width: 200px;
	box-shadow: 0 0 10px 0px #ccc;
}
.nav-menu ul .sub-menu li{
    display: block;
    margin: 0;
    float: none;
}
.nav-menu ul .sub-menu li > a{
    color: inherit;
    text-align: left;
    font-size: 13px;
    line-height: 34px;
    display: block;
    padding: 5px 20px;
    border-bottom: 1px solid #ddd;
}
.nav-menu ul .sub-menu li:last-child > a{border-bottom: 0px solid #ddd;}
.nav-menu .sub-menu li > a:before, .nav-menu .sub-menu li > a:after{display: none;}
.nav-menu .sub-menu li:hover > a{background-color: #000;color: #fff;}
.nav-menu ul li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
}
.subarrow.fa.fa-caret-down {
    position: absolute;
    color: #000;
    right: -10px;
    top: 7px;
}
.responsive_nav .subarrow.fa.fa-caret-down {
    right: 0;
    height: 40px;
    width: 50px;
    background: #ffffff52;
    top: 0;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
	z-index: 1;
}
.nav_menu .fa.fa-home a {
    font-size: 0;
    line-height: 0;
    padding: 0;
}
/* ---------Heading----------- */
.heading-section {
    position: relative;
}
.heading-section .big {
    font-family: "Lato", Arial, sans-serif;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    font-size: 100px;
    color: rgba(0, 0, 0, 0.04);
    font-weight: 900;
    letter-spacing: 1px;
}
.heading-section h2 {
    font-size: 30px;
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
    font-family: "Roboto Condensed", Arial, sans-serif;
    letter-spacing: 6px;
}
.logo a{display: block;}
/* ------------social-------------------- */
.social a{font-size: 0;}
.social a i{font-size: 20px;}

/* FOOTER
---------------------------------*/
.mainFooter {
    font-size: 16px;
    line-height: 30px;
    color: #fff !important;
    padding-top: 50px;
    position: relative;
    background: #000;
    border: none;
}
.fheading {
    font-size: 20px;
    font-weight: 400;
    border-bottom: none;
    padding: 0 0 20px;
    margin: 0 0 0px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ftop .social a {color: #000000;}
.ftop .contact-info li{margin-top: 5px;}
.ftop .contact-logo {padding-bottom: 15px;}
.mainFooter a{color: inherit;}
.mainFooter a:hover, .mainFooter .active > a, .mainFooter .current-menu-item > a, .companyname:hover {
    color: #1ebbd7;
}
.copyright {
    padding: 0 0 15px;
    font-size: 15px;
    line-height: 40px;
    border-top: 0px solid #ccc;
}
.copyright .row {
    align-items: end;
    justify-content: space-between;
}
.copyright p{padding: 0;margin-bottom: 0;}
.fsvg{
  position: absolute;
  top: -320px;
  left: 0;
  bottom: 0;
}
/*FOOTER END*/

/* ------------Banner------------ */
.banner {
  background: #f0f6ff;
  min-height: 100vh;
  padding: 180px 0 50px;
  
}
.inner-banner{
    min-height: 440px;
}

.hook-banner {
    padding: 50px 0;
}

/* --------------Button Start--------------- */
.btn {
    position: relative;
    display: inline-block;
    padding: 0px 25px;
    text-align: center;
    font-size: 14px;
    line-height: 54px;
    min-width: 300px;
    letter-spacing: 0px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #000000;
    cursor: pointer;
    border-radius: 0;
    box-shadow: 0 0 18px 0px rgb(0 0 0 / 2%);
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}
.btn-sm {
    line-height: 34px;
    min-width: 110px;
}
.btn:hover, .btn-black {
    color: #fff;
    background: #000000;
    border-color: #000000;
}
.btn-black:hover{
    color: #000000;
    background: #1ebbd7;
    border: 1px solid #1ebbd7;
}
.btn-grp .btn{margin-right: 15px;}
.form-wrap  .btn .wpcf7-submit {
    border-bottom: none;
    padding: 0;
    line-height: inherit;
    height: auto;
    width: auto;
    background-color: transparent;
    text-align: center;
    margin: 0 auto;
    color: #fff;
}
.btn-wrap{margin-top: 20px;}
/* --------------Button End--------------- */
footer {
    padding: 50px 0 15px;
    background: #e3e3e3;
    color: #000;
}
.heading-border {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}
.heading-border::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    background: #000;
    height: 3px;
    z-index: -1;
    width: 50%;
    margin: 0 auto;
}
.heading-border h1, .heading-border h2, .heading-border h3, .heading-border h4, .heading-border h5, .heading-border h6 {
    display: inline-block;
    margin: 0;
    background: #fff;
    padding: 0 15px;
    font-size: 32px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic;
}
.hide{display: none;}
.rtp-sign-up{
    display: none;
    padding: 0 2px;
    font-size: 13px;
    line-height: 30px;
    color: #000;
}
.rtp-sign-up a{color: #000;}
.sbox{position: relative;margin-bottom: 30px;overflow: hidden;cursor: pointer;}
.sbox .simg{
    border:1px solid #eee;
}
.simg img{
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    object-fit: cover;
    width: 100%;
    height: 120px;
}
.sbox:hover img {
    scale: 1.1;
}
.hook-banner-wrap .sbox.small .simg img{
    height: 220px;
}
.hook-banner-wrap .sbox .scontent{
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 1;
}
.sheading {
    color: #000;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}
.sbox .sheading a{color:inherit;}
.hook-banner-wrap .sbox .sheading {
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}
.hook-banner-wrap {
    padding: 30px 0;
}
.hook-banner-wrap .sbox.big {
    height: 380px;
}
.hook-banner-wrap .sbox.big img{
    height: 380px;
}
.hook-banner-wrap .sbox{border: 1px solid #ddd;}
.simg{position: relative;overflow: hidden;margin-bottom: 15px;}
.simg-overlay{margin-bottom: 0px;}
.simg-overlay a::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    z-index: 1;
}
.sbox a{display:block;}
.hook-countributer .fimg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-right: 15px;
}
.hook-countributer .sbox {
    margin-bottom: 30px;
    padding: 0 35px;
}
.rtp-search-input {
    border: none;
    border-bottom: 1px solid #ccc;
    width: 250px;
    padding: 0 10px;
    margin: 0 0px 0 5px;
    font-size: 14px;
    height: 40px;
}
.rtp-search-button.button.tiny {
    border: none;
    font-size: 0;
    width: 30px;
    background: no-repeat center;
    background-color: transparent;
    position: absolute;
    right: 0;
    background-image: url(../images/s.png);
    top: -10px;
}
.rtp-search-form-wrapper{position: relative;}
.hook-simple-listing .simg{
    margin-bottom: 15px;
}
.author-name {
    text-transform: uppercase;
    font-size: 16px;
}
.hook-latest-wrap .simg{margin-bottom: 15px;border: 1px solid #ddd;}
.hook-latest-wrap .scontent{text-align: center;}
.hook-latest-wrap .sheading {
    font-size: 24px;
    line-height: 34px;
}
.hook-full-ad img{width: 100%;}
.hook-banner-middle-wrap .sbox img {
    height: 254px;
}
.hook-banner-wrap.hook-banner-middle-wrap .sbox .sheading {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}
.hook-banner-middle-wrap .heading {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 170px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}
.catlog-list li {
    margin-bottom: 20px;
    font-size: 20px;
}
.catlog-list li a{color: #000;}
.catlog-list li{
    margin-top:10px;
}
.hook-latest-ad-wrap .scontent {
    background: #fff;
    display: inline-block;
    padding: 30px;
    margin: -100px auto 0;
    z-index: 1;
    position: relative;
}
.small-box .sheading {
    font-size: 18px;
    line-height: 22px;
}
.small-box .sbox img {
    object-fit: cover;
    width: 100%;
    height: 220px;
}
.hook-seven-blog .small-box .sbox img {height: 100px;}
.hook-countributer{padding-top: 80px;}
.hook-three-latest-wrap .sbox{margin-bottom: 15px;}
.hook-three-latest-wrap .sbox .simg{margin-bottom: 10px;}
.hook-three-latest-wrap .sbox.big .sheading{font-size: 30px;}
.hook-three-latest-wrap .sbox.big .spara {
    padding: 10px 80px;
    color: #787878;
    font-size: 16px;
    line-height: 26px;
}
.hook-top-story .simg{margin-bottom: 15px;}
.hook-top-story .sbox.big .simg{margin-bottom: 0px;}
.hook-top-story .sbox .sheading {
    color: #000;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.hook-top-story .sbox.big .scontent{
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 1;
    text-align: center;
}
.hook-top-story .sbox.big .sheading {
    color: #fff;
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 500;
    line-height: 35px;
}
.hook-top-story .sbox.big img{height: 390px;}
.hook-top-story .sbox.big .author-name {
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    margin-top: 15px;
}
.ftop .sbox {margin-bottom: 0px;}
.ftop .sbox .sheading {
    color: #000;
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
footer hr {margin: 40px 0;}
.hook-countributer .fcontent {
    font-size: 15px;
    line-height: 24px;
}
.fmiddle ul li a {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    margin-bottom: 10px;
}
.fbottom .flogo{margin-bottom: 10px;}
.fbottom {
    padding-top: 120px;
    font-size: 12px;
    letter-spacing: 0.3px;
}
#hautetime-signup li.rtp-signup-item{
    margin-bottom: 15px;
}
.hook-banner-wrap .category-name, .hook-banner-wrap .author-name{color: #fff;}
.hook-banner-wrap .sbox.small .sheading{
    font-size: 16px;
    line-height: 22px;
}
body #site-footer input[type="submit"] {
    background-color: #000000;
    color: #fff;
    border: 1px solid #000;
}
.hook-simple-listing .simg img {
    height: 220px;
}
.hook-magazine {
    background: #fff;
    padding: 50px 0;
    margin:0;
}
footer .rtp-signup-items .rtp-signup-item.email{
    padding-right: 0;
}
footer .rtp-signup-items .rtp-signup-item.subscribe-button{
    padding-left: 0;
}
.hook-latest-ad-wrap.main-banner .scontent {
    background: #fff;
    display: inline-block;
    padding: 25px;
    margin: -100px auto 0;
    z-index: 1;
    position: relative;
    width: 80%;
}
.main-banner .sheading {
    font-size: 24px;
    line-height: 36px;
}
.main-banner .category-name {
    font-size: 16px;
    text-transform: uppercase;
}
.main-banner .author-name {
    font-size: 14px;
}
.heading-border h6  {
    font-size: 16px;
}
.col-sm-3 .heading-border::before { width: 60%;}
.hook-latest-ad-wrap .blog-small-list .scontent{margin-top:0;padding: 0;}
.blog-small-list img {height: 150px;}
.hook-magazine .simg::before{opacity:0;}
footer .sbox img {height: 120px;}
.hook-magazine .simg img {height: 100%;}
.hook-magazine .sbox.big .simg img {height: 100%;}
.hook-basic-story .simg img { object-fit: cover;}
.fimg img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
footer .sbox .simg {
    border: 0px solid #eee;
}
.hook-magazine .heading-border h6 {background: #f1f1f1;}
.hook-magazine .small .sbox .sheading {
    font-size: 18px;
    line-height: 28px;
}
.hook-about-section .container{max-width: 1000px;}
.hook-about-section{padding: 50px 0;}
.hook-about-section .heading {
    font-size: 44px;
    margin: 0 0 30px;
}
.hook-about-section .content-wrap {
    padding-top: 20px;
}
.hook-about-section .content-wrap h6 {
    font-size: 18px;
    margin-top: 50px;
}
.hook-about-section .content-wrap hr {
    margin-top: 3px;
    margin-bottom: 0px;
}
.hook-about-section .content-wrap figure p {
    font-size: 14px;
    color: #4c4b4b;
}
.hook-about-section .content-wrap figure figure img{width:100%;}
.hook-single-blog .blog-image {
    margin: 0 0 50px;
    text-align: center;
}
.hook-single-blog .blog-image img{
    height: auto;
    width: 100%;
    object-fit: cover;
}
.hook-single-blog .meta {
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    margin: 15px 0;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hook-single-blog .author-img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-right: 15px;
}
.hook-single-blog .author-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hook-single-blog .meta-date {
    display: block;
    font-size: 12px;
    line-height: initial;
}
.rtp-photo-credit {
    font-size: 14px;
    color: #4c4b4b;
    margin-top: 6px;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    display: block;
    line-height: initial;
}
.post_para p {
    margin-top: 0;
    margin-bottom: 30px;
}
.sidebar-list {
    margin-bottom: 100px;
}
.sidebar-list li figure {
    margin: 0;
    float: left;
    width: 90px;
    height: 90px;
    position: absolute;
    top: 0;
    left: 0;
}
.sidebar-list li figure img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.sidebar-list .subheading {
    font-size: 16px;
    font-weight: 500;
}
.sidebar-list li .sk_box a {
    clear: both;
    display: block;
}
.sidebar-list li .sk_box.withimg {
    margin-top: 25px;
    min-height: 90px;
    position: relative;
    padding-left: 100px;
}
.hook-contact-section .heading-border::before {width: 70%;}
.hook-contact-section .heading-border {margin-bottom: 50px;}
.hook-contact-section form textarea {height: 100px;}
.contact-address-lists p{margin-bottom: 0;}
.hook-contact-section h3 { margin-top: 25px;}
.hook-contact-section .wpcf7-form-control.wpcf7-submit{width: auto;background-color: transparent;}
.hook-contact-section .wpcf7-form-control.wpcf7-submit:hover{ background-color: #000;color:#fff;}
.hook-contact-section h3 { font-size: 25px; margin-bottom: 25px;}
.hook-contact-section a{color:#000;text-decoration:underline;}
.hook-contact-section {padding: 50px 0;}
.hook-single-author .meta {
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.author-img {
    margin: 0;
    float: left;
    margin-right: 25px;
    width: 180px;
}
.hook-single-author .author-name {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.hook-single-author .meta:before, .hook-single-author .meta:after{
    content:'';
    clear:both;
    margin:0;
    padding:0;
    display:block;
}
.pagination {
    text-align: center;
    margin-top: 20px;
    justify-content: center;
}

.pagination a, .pagination .page-numbers  {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
}

.pagination a.prev,
.pagination a.next {
    background-color: #f4f4f4;
}

.pagination a.page:hover {
    background-color: #f4f4f4;
}

.pagination a.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}
.pagination .page-numbers.current {
    cursor: no-drop;
    background: #000;
    color: #fff;
}
.hook-search-result .simg img {height: 280px;}
.hook-search-result .rtp-search-input{width:100%;border: 1px solid #ccc;}
.hook-search-result #search {
    margin-bottom: 20px;
    width: 100%;
}
.hook-one-on-one .col-sm-12 > .row {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.one-add {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    width: 100%;
}
.hook-one-on-one .simg img {
    height: 270px;
}
.hook-one-on-one .sheading {
    color: #000;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 30px;
}
.hook-single-author.hook-one-on-one .author-name {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-top: 20px;
}
.hook-countributer .fpara {
    height: 46px;
    overflow: hidden;
}
.hook-feature .col-sm-4:nth-child(2) .sbox{
    display: flex;
    flex-direction: column-reverse;
}
.reverse-sbox .simg {
    margin-top: 15px;
    margin-bottom: 0;
}
.post_para img{
    width:100%;
    max-width:unset;
}
.post_para figure {
    width:100% !important;
}
.author .hook-single-author .spara {
    height: 58px;
    overflow: hidden;
}
.hook-magazine-main .sbox .simg {
    border: 0px solid #eee;
}
.hook-magazine-main .sbox .simg {
    border: 0px solid #eee;
}
.hook-latest-ad-wrap.main-banner.hook-magazine-main .scontent{margin:0;}
.hook-one-on-one .simg img {
    height: 300px;
    object-fit: contain;
    background-color: #eee;
}
body .rtsocial-twitter-icon-link, body .rtsocial-fb-icon-link, body .rtsocial-linkedin-icon-link, body .rtsocial-pinterest-icon-link {
    filter: grayscale(1) !important;
    border: none !important;
}
.archive .sbox .spara{height:74px;overflow:hidden;}
.responsive_btn {
    cursor: pointer;
    text-align: center;
    width: 60px;
    height: 60px;
    margin: -2px 0;
    float: right;
    position: relative;
    z-index: 20;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.responsive_btn span {
    display: block;
    height: 2px;
    width: 34px;
    position: relative;
    top: 50%;
    margin: 0;
}
.responsive_btn span:before, .responsive_btn span:after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
}
.responsive_btn span, .responsive_btn span:before, .responsive_btn span:after {
    background: #000;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.responsive_btn span:before {
    top: -10px;
}
.responsive_btn span:after {
    bottom: -10px;
}
.responsive .responsive_btn span {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.responsive .responsive_btn span:after {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    top: 0;
}
.responsive .responsive_btn span:before {
    opacity: 0;
}
.responsive_search {
    position: fixed;
    background: #fff;
    z-index: 9999;
    top: 60px;
    bottom: 0;
    left: -100%;
     width: 100%;
}
.responsives .responsive_search {
    left: 0 !important;
}
.responsive_nav {
    display: block;
    position: fixed;
    left: -100%;
    top: 61px;
    bottom: 0;
    width: 100%;
    min-height: 100%;
    z-index: 20;
    background: #fff;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.responsive .responsive_nav {
    left: 0 !important;
}
.responsive_nav .nav-menu li {
    margin: 0;
    position: relative;
    float: none;
    padding: 5px 20px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}
.responsive_nav .rtp-sign-up a {
    color: #000;
    display: block;
    padding: 5px 20px;
    font-size: 20px;
}
.responsive_nav .nav-menu li > a {
    display: block;
    padding: 0;
    font-size: 18px;
    line-height: 46px;
    color: #000;
    
}
.responsive_nav .rtp-sign-up a img {width: auto;}
.mob-icon{
    width: 30px;
    height:30px;
    background: no-repeat center;
    background-color: transparent;
    background-image: url(../images/s.png);
}
.mob-icon.mob-icon-nav{background-image: none;}
.responsives .mob-icon-search{background-image: url(../images/close.png);}
.responsives .rtp-search-input {
    border: none;
    border-bottom: 1px solid #ccc;
    width: 98%;
}
.site-header-mobile{display:none;}
.footer-social-icons li.social-links {
    display: inline;
    margin: 0 5px 0 0;
}
.fmiddle ul li.social-links a {font-size: 18px;line-height: 24px;}
#main-wrapper{position:relative;z-index:9;}
.mob{display:none !important;}
.hook-latest-ad-wrap.main-banner{padding-bottom:0;}
.hook-single-blog .heading{
    font-size: 30px;
}
.post_para img {
    width: auto;
    max-width: 100%;
}
.hook-banner-wrap.hook-banner-middle-wrap .sbox .scontent {
    background: rgba(255,255,255,0.8);
}
.hook-banner-wrap.hook-banner-middle-wrap .sbox .sheading {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #000;
}
.hook-single-blog .blog-image img {
    width: 100%;
    object-fit: contain;
}
.category-name {
    text-transform: uppercase;
}
.hook-top-story .sbox.big .category-name {
    color: #fff;
}
.wp-caption-text {
    color: #a09e9e;
    margin-bottom: 10px;
    margin-top: 5px;
    border-top: 1px solid #e9e6e6;
    font-size: 12px;
}
.single-post .hook-basic-story .simg img {
    object-fit: cover;
    height: 180px;
}
.hook-one-on-one .simg img {object-fit: cover;}
.hook-marketplace-link .sheading {
    color: #000;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
}
.hook-marketplace-link .price{font-size: 14px;font-weight: 700;line-height: 25px;text-align: center;color: #000;}
.search-wrap {
    margin-bottom: 20px;
}
.search-results-list{
    margin-top: 25px ;
}
.search-wrap .rtp-search-button.button.tiny {
    border: none;
    font-size: 16px;
    width: unset;
    background: no-repeat center;
    background-color: #000;
    color: #fff;
    position: absolute;
    right: -5px;
    background-image: none;
    top: 0;
    line-height: 40px;
    padding: 0 35px;
    height: auto;
}
.hook-banner-wrap.hook-one-on-one .sbox.small .sheading, .hook-banner-wrap-top .sbox .sheading {
    min-height: 104px;
}

/*================================================================*/
@media only screen and (max-width: 770px) {
    .hook-banner-wrap.hook-one-on-one .sbox.small .sheading {min-height: unset;}
  footer .sbox img {height: 134px;}
  footer .fmiddle .col-sm-2, footer .ftop .col-sm-2{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
img {
    max-width: unset;
    height: auto;
    width: 100%;
}
.hook-magazine .simg img {
    height: unset;
}
.hook-magazine .sbox.big .simg img {
    height: 100% !important;
}
.hook-magazine .sbox.big .btn{display:none;}
.sbox {text-align: center;}
.simg img {height: 120px;}
.hook-countributer .sbox {text-align: left;padding: 0;}
.heading-border::before {width: 100%;}
.heading-border h1, .heading-border h2, .heading-border h3, .heading-border h4, .heading-border h5, .heading-border h6 {
        padding: 0 10px;
    font-size: 24px;

    letter-spacing: 0px;
}
.hook-three-latest-wrap .sbox.big .spara {padding: 0;}
.small-box .sbox img {
    height: unset;
}
.hook-banner-middle-wrap .heading {margin-bottom: 20px;}
.hook-banner-wrap{text-align:center;}
.hook-latest-ad-wrap.main-banner .scontent {
    padding: 10px;
    margin: -100px auto 0;
    width: 96%;
    border: 1px solid #eee;
}
.fbottom p{text-align: center;}
.fheading {margin: 35px 0 0px;}
footer .rtp-signup-items .rtp-signup-item.email {
    padding-right: 15px;
}
footer .rtp-signup-items .rtp-signup-item.subscribe-button {
    padding-left: 15px;
}
#hautetime-signup li.rtp-signup-item {
    margin-bottom: 0;
}
.hook-single-blog .meta {
    align-items: baseline;
    flex-direction: column;
}
.rtsocial-container-align-right {
    margin: 15px 0 0 0;}
    .hook-single-blog .blog-image img {
    height: unset;
    width: 100%;
    object-fit: cover;
}
.hook-single-blog h1 {
    font-size: 34px;
}
.site-header-desktop{display:none;}
.site-header-mobile{display:block;}
.logo {
    margin-right: 0;
    width: 200px;
}

.sticky .site-header {
    position: fixed;
    background: #fff;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9;
}
.archive .hook-latest-ad-wrap.main-banner .scontent {margin: 0;}
.nav-menu ul .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    width: 100%;
    box-shadow: none;
    display: none;
}
.nav-menu ul li.menu-item-has-children {
    margin-right: 0;
}
.nav-menu ul li.menu-item-has-children .subarrow {
    top: 20px;
    right: 15px;
}
.nav-menu li > a:before, .nav-menu li > a:after{display:none;}
.nav-menu ul .sub-menu li > a{border-bottom: none;}
.responsive_nav .nav-menu .sub-menu li {
    border-top: 1px solid #ccc;
    border-bottom: none;
}
.responsive_nav .nav-menu li {padding: 5px 0px;}
.responsive_nav .nav-menu li > a {padding: 0 10px;}
.hook-basic-story .col-sm-6{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.hook-three-latest-wrap .sbox .simg , .hook-latest-wrap .sbox .simg{
    margin-bottom: 10px;
    float: left;
    width: 28%;
    margin-right: 2%;
}
.hook-three-latest-wrap .sbox .simg img, .hook-latest-wrap .sbox .simg img{height:80px !important;}
.hook-three-latest-wrap .sbox.big .spara, .hook-three-latest-wrap .sbox.big .author-name, .hook-latest-wrap .sbox .spara, .hook-latest-wrap .sbox .author-name{display:none;}
.sheading {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
}
.hook-latest-ad-wrap .scontent {
    padding: 0;
    margin: 0px auto 0;
}
.hook-latest-ad-wrap .scontent p{display:none;}
.hook-latest-ad-wrap .blog-small-list .col-sm-6, .hook-top-story .col-sm-6{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.sbox {margin-bottom: 15px;}
.hook-top-story .sbox.big .scontent {
    position: static;
    padding: 0;
}
.hook-top-story .sbox.big .sheading {
    color: #000;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 28px;
}
.hook-top-story .sbox.big .author-name {
    font-size: 12px;
    color: #000;
    margin-top: 10px;
}
.hook-top-story .sbox.big .text-white{display:none;}
.hook-top-story .sbox.big img {
    height: unset;
    margin-bottom: 10px;
}
.hook-latest-ad-wrap.main-banner .simg-overlay img{height: 250px !important;}
.hook-latest-ad-wrap.main-banner .scontent {
    padding: 10px;
    margin: -40px auto 0;
    width: 95%;
    border: 0px solid #eee;
}
.main-banner .sheading {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}
.hook-banner-wrap .sbox .scontent {
    position: static;
    padding: 0;
    z-index: 1;
}
.hook-banner-wrap .sbox .simg {
    border: 0px solid #eee;
    width: 28%;
    float: left;
    margin-right:2%;
}
.hook-banner-wrap .sbox.big img, .hook-banner-wrap .sbox img {
    height: 80px !important;
}
.hook-banner-wrap .sbox.big {
    height: unset;
    border: 0px solid #ddd;
}
.hook-banner-wrap .sbox .sheading {
    color: #000;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.hook-banner-wrap {
    padding: 0;
}
.hook-latest-wrap .sheading {
    font-size: 16px;
    line-height: 24px;
}
.hook-banner-wrap .sbox {
    border: 0px solid #ddd;
    height: auto !important;
}
.hook-banner-wrap .author-name {
    display: none;
}
.hook-magazine.hook-latest-wrap .sbox .simg {
    margin-bottom: 10px;
    float: none;
    width: auto;
    margin-right: 0;
} 
.hook-magazine.hook-latest-wrap .small .col-sm-6{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.hook-latest-wrap.hook-magazine .small .sbox .simg img {
    height: 200px !important;
}
.hook-explore-wrap .simg{border: 1px solid #ccc;}
.hook-banner-wrap.hook-banner-middle-wrap.hook-explore-wrap .sbox .sheading {
    font-size: 18px;
    line-height: 28px;
    text-align: left;
}
.hook-banner-middle-wrap .heading {
    font-size: 28px;
    line-height: 42px;
    
}
.blog-small-list .simg img {
    height: 120px;
    object-fit: contain;
    background-color: #eaeaec;
}
.hook-three-latest-wrap .sbox.big .sheading {
    font-size: 16px;
}
.desk{display:none !important;}
.mob{display:block !important;}
.heading br{display:none;}
.ftop .sbox .sheading {
    font-size: 14px;
    line-height: 20px;
}
.hook-single-author .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.archive .sbox .spara {
    display: none;
}
.hook-single-author .simg img {
    height: 120px;
    object-fit: contain;
}
.pagination {margin-bottom: 50px;}
.section.hook-latest-ad-wrap.main-banner {padding-bottom: 0;}
.main-banner .sheading {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}
.hook-single-blog .heading {
    font-size: 22px;
}
.hook-single-blog .post_para {
    font-size: 14px;
    line-height: 25px;
}
.hook-basic-story h2{font-size: 20px;}
.hook-basic-story .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.hook-latest-ad-wrap img {
    height: auto !important;
    width: 100% !important;
}
.hook-single-author.hook-one-on-one .col-sm-12 .col-sm-6:first-child{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}
.hook-single-author.hook-one-on-one .col-sm-12 .col-sm-6:last-child{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
}
.hook-one-on-one .sheading {
    color: #000;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}
.hook-single-author.hook-one-on-one .author-name {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0;
    padding-top: 10px;
    text-align: left;
}
.hook-one-on-one .col-sm-12 > .row {
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.post-type-archive-magazine .hook-single-author .col-sm-3{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
    max-width: 33.3%;
}
.hook-contact-section img {width: auto;}
.hook-about-section .heading {
    font-size: 25px;
    margin: 0 0 30px;
}
.category-name {text-align: left;}
.main-banner .category-name {text-align: center;}
.hook-banner-wrap .category-name, .hook-banner-wrap .author-name {
    color: #000;
    text-align: left;
}
.hook-top-story .category-name {
    color: #000;
    text-align: left;
}
.hook-top-story .big .category-name {text-align: center;}
.hook-banner-wrap .sbox .scontent, .hook-three-latest-wrap .sbox .scontent, .hook-latest-wrap .sbox .scontent {
    width: 70%;
    float: left;
}
.hook-one-on-one .col-md-6{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.hook-banner-wrap.hook-one-on-one .sbox .simg {
    border: 0px solid #eee;
    width: 100%;
    float: left;
    margin-right: 0;
}
.hook-banner-wrap.hook-one-on-one .sbox .scontent {
    width: 100%;
    float: left;
}
.hook-banner-wrap.hook-one-on-one .sbox img {
    height: 130px !important;
}
.simg-overlay a::before { opacity: 0;}
.hook-explore-wrap .simg {
    width: 28%;
    float: left;
    margin-right: 2%;
}
.hook-explore-wrap .scontent{
    width: 70%;
    float: left;
    text-align: left;
}
.hook-banner-middle-wrap .sbox img {
    height: 100px;
}
.hook-marketplace-link.hook-explore-wrap .sheading, .hook-marketplace-link.hook-explore-wrap .price{text-align: left;}
.hook-marketplace-link .sheading {font-size: 13px;}
.hook-search-result-wrap > .container > .row {
    flex-direction: column-reverse;
}
.search-results-list .col-sm-6{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.search-results-list .sbox .spara {
    display: none;
}
.search-results-list .simg img {
    height: 120px;
    object-fit: contain;
    background-color: #eaeaec;
}
}
.home .hook-one-on-one .col-sm-12 > .row{border-bottom: 0px solid #ccc;}
.category-name {
    text-transform: uppercase;
    font-size: 13px;
}
.hook-magazine-left{
    background: #f1f1f1;
    padding: 50px 0;
}
.hook-in-case-you-meet .simg img {height: 170px;}
.hook-banner-wrap.hook-banner-wrap-top .sbox.big {
    height: 200px;
}
.hook-banner-wrap.hook-banner-wrap-top .sbox.big img {
    height: 200px;
}
.hook-banner-wrap-top .sbox .sheading {
    min-height: 80px;
}
.hook-basic-story.hook-marketplace-link .simg img {
    object-fit: contain;
}