@import url('https://fonts.googleapis.com/css2?family=Candal&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background: #f6f6f6;
}
.df-r, .df-l {
    background: #fff;
}
h1, h2, h3, h4, h5, h6 {
    margin: 5px;
}
.sec2 h2, .sec1 h2 {
    color: #3b3b3b;;
}
.container {
    max-width: 1324px;
    margin: 0 auto;
}
main {
    width: 99%;
    margin: 0 auto;
    line-height: 1.3;
    padding-left: 1rem;
}
img {
    max-width: 100%;
    max-height: 100%;
}
a {
    text-decoration: none;
}
.d-f {
    display: flex;
}

.df-l {
    width: 76%;
    padding-top: 0.5rem;
    padding-left:10px;
    padding-right: 10px;
}
.df-r {
    width: 23%;
    padding-top: 1.3rem;
}
.container, main {
    min-height: calc(100vh - 46px);
}
main > .d-f {
    justify-content: space-between;
    margin: 10px 0;
}
.line-blue {
    width: 99.8%;
    height: 2px;
    background: #1e98e4;
}
.show {
    display: block;
}
.hide {
    display: none;
}
/* text */
.text-center {
    text-align: center !important;
}
.text-prink {
    color: #ff0077;
}
.text-green {
    color: #0D475F;
}
/* padding and margin */
.pt-2 {
    padding-top: 20px;
}
.pt-3 {
    padding-top: 30px;
}
/* about */
.d-f.about .df-l {
    padding: 2rem 8rem;
    background: url(https://firstnewshealth.com/assets/images/bg-about.png);
   -moz-background-size:100% 100%;
    -webkit-background-size:100% 100%;
    background-size:100% 100%;

}
.d-f.about .df-l h1 {
    padding-bottom: 1rem;
    color: #333;
}
.d-f.about .df-l p {
    font-size: 1.2rem;
    padding-bottom: 1rem;
    color: #333;
}
/* button to top */
#button {
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  height: 60px;
  width: 60px;
  border: 2px solid #fff;
  text-align: center;
  border-radius: 100px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f106";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
/* header */
.td-none {
	text-decoration: none;
	color: inherit;
}

.hide {
	display: none;
}

header {
	width: 100%;
	height: 80px;
	background-color: #0D475F;
	border-bottom: 1px solid #dfe2e4;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .menu-icon {
	font-size: 32px;
	display: none;
}

header .nav-overlay {
	display: none;
}

header nav {
	display: flex;
	align-items: center;
	height: inherit;
}

header ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

header .navmenu {
	display: flex;
}

header .navmenu .navitem a {
	display: block;
	text-decoration: none;
	padding: 5px 10px;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
}

header .navmenu .navitem a:hover {
	color: #6babf3;
}

header .navmenu .navitem .navicon {
	transform: translateY(4px);
	font-size: 16px;
}

header .navmenu .navitem {
	position: relative;
}

header .navmenu .navitem .dropdown {
	width: 190px;
	position: absolute;
	top: 80px;
	left: 0px;
	background-color: #0D475F;
	border-radius: 5px;
	-webkit-box-shadow: -1px -12px 28px 7px rgba(0, 0, 0, 0.11);
	-moz-box-shadow: -1px -12px 28px 7px rgba(0, 0, 0, 0.11);
	box-shadow: -1px -12px 28px 7px rgba(0, 0, 0, 0.11);
	opacity: 0;
	z-index: -5;
	transform: translateY(35px);
}

header .navmenu .navitem:hover .dropdown {
	opacity: 1;
	z-index: 5;
	transform: translateY(0);
	transition: all 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
	top: 50px;
	left: 15%;
}

header .navmenu .navitem .dropdown::after {
	content: '';
	position: absolute;
	top: -20px;
	left: 15%;
	border-top: 10px solid transparent;
	border-bottom: 10px solid white;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;

}

header .navmenu .navitem .dropdown li::after {
	content: '';
	display: block;
	margin: 0px 16px;
	border-bottom: 1px solid #dfeef3;
}

header .navmenu .navitem .dropdown li:last-child::after {
	display: none;
}

header .navmenu .navitem .dropdown a {
	padding: 16px;
}

.logo-wrapper {
	font-size: 1.4rem;
}

.logo-wrapper span {
	background-color: #3e86ac;
	padding: 0 5px;
	line-height: 0;
	border-radius: 2px;
	color: white;
}

/* HEADER - media queries  */
@media only screen and (max-width: 1284px) {
	header .navmenu .navitem a {
	    font-size: 16px;
	    padding: 5px 5px;
	}
}
@media only screen and (max-width: 1084px) {
	header .navmenu .navitem a {
	    font-size: 15px;
	    padding: 4px 4px;
	}
}
@media only screen and (max-width: 1024px) {
	header {
		padding: 0 10px;
	}
}

@media only screen and (max-width: 978px) {
	header .menu-icon {
		display: block;
        color: #fff;
	}
	header .navmenu .navitem a {
	    font-size: 18px;
	}

	header .nav-overlay.open {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.45);
	}

	header .logo-wrapper {
		width: 100%;
		text-align: center;
	}
	
	header nav {
		flex-grow: 1;
	}

	header .search-item, header .search-item input {
		width: 100%;
	}
	
	header .navmenu {
		position: fixed;
		left: 0;
		top: 0;
		flex-direction: column;
		height: 100%;
		width: 250px;
		background-color: #0D475F;
		overflow-y: scroll;
		z-index: 99999;
		padding: 50px 0;
		transform: translateX(-250px);
		transition: all 0.25s ease-in-out;
	}

	header .navmenu.open {
		transform: translateX(0px);
		transition: all 0.25s ease-in-out;
	}
	
	header .navmenu .navitem a {
		padding: 16px;
	}
	
	header .navmenu .navitem {
		flex-direction: column;
	}
	
	header .navmenu .navitem .dropdown {
		width: 100%;
		position: static;
		border-radius: 0px;
		box-shadow: none;
		opacity: 1;
		max-height: 0px;
		overflow: hidden;
		z-index: 1;
		transform: translateY(0px);
		transition: max-height 0.25s ease-in-out;
	}

	header .navmenu .navitem.active .dropdown {
		max-height: 300px;
		transition: max-height 0.25s ease-in-out;
	}

	header .navmenu .navitem .dropdown a {
		padding-left: 32px;
	}
}

/* sign up */
.auth-content {
    width: 30%;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}
.auth-content form > div {
    margin: 10px 0;
}
.auth-content .form-title {
    text-align: center;
}
.text-input {
    padding: 0.7rem 1rem;
    display: block;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    outline: none;
    color: #444;
    line-height: 1.5rem;
    font-size: 1.2em;
    font-family: "Lora", serif;
}
.btn-big {
    padding: 0.7rem 1.3rem;
    line-height: 1.3rem;
}

.btn {
    padding: 0.5rem 1rem;
    background: #006669;
    color: white;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-size: 1.08em;
    font-family: "Lora", serif;
}


/* Post slider */
.post-slider {
    padding-top: 1rem;
}

.post-slider .oder.pulse {
    box-shadow: 0 0 0 0 rgba(235, 151, 151, 0.8);
    transform: scale(0.95);
    animation: pulse 2s infinite;
    border-radius: .25rem;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        background-color: rgb(224, 189, 189);
        box-shadow: 0 0 0 0 rgba(236, 119, 119, 0.6);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(236, 124, 124, 0);
    }
    90% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(236, 148, 148, 0);
    }
}


#post-wrapper2, #post-wrapper3 {
    display: none;
}

.post-wrapper a {
    display: block;
    text-decoration: none;
}
.post-slider {
    position: relative;
    text-align: center;
}
.post-slider h2 {
    display: inline-block;
    color: red;
    margin-bottom: .5rem;
}
.post-slider .line-red {
    width: 100%;
    height: 1px;
    background: red;
}

.post-slider .next {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 1rem;
    border: 1px solid rgb(197, 191, 191);
    padding: 6px;
    border-radius: 7px;
    color: rgb(68, 66, 66);
}
.post-slider .next:hover {
    color: #007185;
    background-color: #e0f0f3;
}
.post-slider .prev {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 1rem;
    border: 1px solid rgb(197, 191, 191);
    padding: 6px;
    border-radius: 7px;
    color: rgb(68, 66, 66);
}
.post-slider .prev:hover {
    color: #007185;
    background-color: #e0f0f3;
}
.post-wrapper .post-text {
    display: flex;
    flex-direction: column;
    height: 120px;
}
.post-slider .post-wrapper {
    width: 97%;
    height: 340px;
    margin: 0 auto;
    overflow: hidden;
}
.post-wrapper .post-text p:last-of-type {
    margin-top: auto;
}
.post-slider .post-wrapper .post {
    padding: 25px 5px 5px 5px;
    height: 330px;
    margin: 0 10px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    background-color: #fff;
    position: relative;
}

.post-slider .post-wrapper .post .mh {
    height: 170px;
    text-align: center;
    border: 1px solid  #d9e7ed;

}
.post-slider .post-wrapper .post .slider-img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.post-slider .post-wrapper .post .img-sup-sale {
    background-image: url(https://assets.pharmeasy.in/web-assets/dist/1602b4ce.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 25px 5px 5px;
    color: #fff;
    border-radius: 6px 0 0 0;
}
.post-slider .post-wrapper .post h4 {
    color: #4f585e;
    font-size: 1rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding-top: 5px;
    -webkit-box-orient: vertical;
}
.post-slider .post-wrapper .post .deal-1 {
    color: #8897a2;
    font-size: 15px;
}
.post-slider .post-wrapper .post .deal-2 {
    font-weight: 400;
    color: #77a9be;
    font-size: 14px;
}

.sec1 .sec1l-post .postnew2-text {
    padding-top: 1rem;
}
.sec1 .sec1l-post .postnew2-text p {
    padding-bottom: .4rem;
    font-size: 14px;
}

.sec1 .sec1l-post.sec1l-post-sub {
    box-shadow: 0 !important;
}

.postnew2 {
   /*  text-align: center; */
   justify-content: space-between;
}

.postnew2 .postnew2-img {
    width: 30%;
}
.postnew2 .postnew2-text {
    width: 68%;
}
.postnew2 h3 {
    font-size: 1rem;
    color: rgb(51, 51, 51);
    font-weight: 400;
}

/* sec1 */
.sec2-post .slick-track img {
    height: 150px;
}

.sec1 .sec1l {
    width: 35%;
    padding: 5px;
}
.sec1 .sec1l-post {
    height: 180px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgb(1 1 1 / 20%);
    justify-content: space-around;
    padding-right: .4rem;
    transition: 0.5;
    width: 98.5%;
}
#sec1l-post-slider2, #sec1l-post-slider3 {
    display: none;
}
.sec1 .sec1l-post:hover {
    transform: scale(1.01);
    transition: 0.5;
}
.sec1 .sec1l-post .img-post {

    width: 25%;
}
.sec1 .sec1l-post .text-post {
    width: 70%;
}
.sec1 .sec1l-post .img-post img {
    padding-left: .5rem;
    padding-top: .6rem;
    max-height: 150px;
    margin-top: auto;
    margin-bottom: auto;
}
.sec1 .sec1l-post h3 {
    font-size: 1.2rem;
    color: rgb(29, 29, 29);
    padding-top: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.sec1 .sec1l-post p {
    font-size: 1rem;
    color: rgb(51, 51, 51);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.sec1l-post-slider {
    width: 96%;
    margin: 0 auto;
    overflow: hidden;   
}
.sec1l-post-slider a {
    margin: 5px;
    box-shadow: 0 5px 15px rgb(1 1 1 / 20%);
    padding: 5px;
    display: inline-block;
}
.sec1l-post-slider a .c-img {
    text-align: center;
    height: 150px;
}
.sec1l-post-slider a .c-img img {
    height: 150px;
}
.sec1l-post-slider a .c-text {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.sec1l-post-slider h3 {
    font-size: 14px;
     display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    color: rgb(51, 51, 51);
}
.sec1l-post-slider p {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    color: rgb(51, 51, 51);
}
.sec1l-post2 {
    position: relative;
    width: 98%;
    margin: 0 auto;
}
.prev2 {
    position: absolute;
    left: 0;
    top: 50%;
}
.next2 {
    position: absolute;
    right: 0;
    top: 50%;
}
p.date {
    font-size: 12px!important;
    line-height: 1;
    padding-bottom: 0.5rem;
    padding-top: 2px;
}
.date em{
    color: rgb(58, 57, 57);
    font-size: 12px;
    text-decoration: underline;
    text-align: right
}


.sec1 .sec1r {
    width: 65%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33.33333%, 1fr));
}
.sec1 .sec1r .sec1r-post {
    margin: 5px;
}
.sec1 .sec1r h3 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    color: rgb(29, 29, 29);
    padding: 0.2rem 0;
}
/* pagination */
.pagination {
    text-align: center;
    margin: .5rem;
    user-select: none;
}
.pagination li {
    display: inline-block;
    margin: 2px;
    
}
.previous-page, .next-page {
    border-radius: 45px;
    width: 66px;
    color: #fff;
}
.previous-page::before {
    content: "\f053";
    font-family: fontawesome;
    color: #000;
}
.next-page::before {
    content: "\f054";
    font-family: fontawesome;
    color: #000;
}
.current-page, .dots {
     width: 25px;
}
.pagination li a {
    color: rgb(46, 45, 45);
    text-decoration: none;
    font-size: 1em;
    line-height: 25px;
}
/* .active {
    background: #0D475F;
}
.disable {
    background: #ccc;
} */

.banner-ads {
    text-align: center;
    overflow: hidden;
}
.banner-ads .banner {
    display: inline-block;
    
}




/* sec2 */
.sec2 .sec2-content {
    display: flex;
    flex-wrap: wrap;
    
}
.sec2 .sec2-post {
    min-height: 360px;
    margin: 15px;
    box-shadow: 0 5px 15px rgb(1 1 1 / 20%);
    padding: .2rem .3rem;
    transition: .2s;
    text-align: center;
    
}
.sec2 .sec2-post:hover {
    transform: scale(1.01);
    transition: .2s;
}
.sec2 .card {
    width: 33.33333%;
    display: block;
}
.sec2 .sec2-post .text-content {

}
.sec2 .sec2-post h3{
    color: rgb(29, 29, 29);
    font-size: 1.2rem;
    padding-top: .4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    
}
.sec2 .sec2-post p {
    color: rgb(51, 51, 51);
    display: -webkit-box;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}
.sec2 .sec2-post img {
    height: 180px;
}
.banner-ads img {
    margin: 0 auto;
}

/* hotsale */
.hotsale {
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin: 1rem 0;
    border: 1px solid rgb(245, 173, 173);
    border-radius: .75rem;
    padding: .2rem;
    text-align: center;
}
.hotsale .line-blue {
    margin-bottom: 0.5rem;
}
.hotsale h2 {
    color: red;
}
.hotsale a {
    display: inline-block;
    max-width: 90%;
}
.hotsale a h3 {
    color: #474644;
    display: -webkit-box;
    height: 2.8rem;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    
}
.hotsale img {
    max-width: 100%;
}
.hotsale .text-red {
    font-size: 2rem;
    font-weight: 700;
    color: red;
    text-align: center;
}

/* secr-1 */
/* search */
input[type="search"] {
    -webkit-appearance: none !important;
    background-clip: padding-box;
    background-color: white;
    vertical-align: middle;
    border-radius: 0.25rem;
    border: 1px solid #e0e0e5;
    font-size: 1rem;
    width: 100%;
    line-height: 2;
    padding: 0.375rem 1.25rem;
    -webkit-transition: border-color 0.2s;
    -moz-transition: border-color 0.2s;
    transition: border-color 0.2s;
  }
  
  input[type="search"]:focus {
    transition: all 0.5s;
    box-shadow: 0 0 40px #f9d442b9;
    border-color: #f9d342;
    outline: none;
  }
  
  form.search-form {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
  .accordion1 {
    margin-top: 0.5rem;
    padding: 0.5rem;
}
.contentBx .question h6 {
    position: relative;
    font-size: 1rem;
    display: block;
    padding: 15px 0px 15px 0px;
    font-weight: 500;
    
    transition: all 0.3s;
}
.contentBx .anwser li {
    color: rgb(84, 82, 122);
}
.contentBx .anwser li span {
  position: relative;
  left: -10px;
  
}
.accordion1:nth-child(2) {
    border-top: 1px solid #e0e0e0;
}
.contentBx .question .bi-chevron-down {
    position: absolute;
    right: 0;
    transition: 0.2s;
}

.content-2 .accordion ul {
    padding-left: 0;
}

.accordion1 .anwser {
    padding-left: .5rem;
    padding-bottom: 1rem;
}
.accordion1 .contentBx {
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.accordion1 .contentBx.active .anwser  {
    height: 100%;
}
.accordion1 .contentBx .anwser a {
    color: rgb(84, 82, 122);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.accordion {
    position: relative;
}
.accordion {

    background: url(https://firstnewshealth.com/assets/images/down.png) no-repeat 98% center;
    background-size: 20px;
}
.acdn-heading.accordion-open {
    background: url(https://firstnewshealth.com/assets/images/up.png) no-repeat 98% center;
    background-size: 20px;
}

/* sec3r */
.secr3 img {
    width: 100% !important;
}



/* footer */
footer {
    background-color: #0D475F !important;
    padding-top: 1rem;
    padding-bottom: .5rem;
    text-align: center;
    color: #fff;
    margin-top: 1rem;

}
footer li {
    display: inline-block;
}
footer li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-right: 2rem;
}
footer p {
    margin-top: .5rem;
}

/* single */
.main-content.single h3 {
    text-align: left;
}
.main-content.single .post-content h1 {
    font-family: 'Candal', serif;
    text-align: center;
    margin: 5px;
    font-size: 30px;
    
}
.main-content.single .post-content ol {
    padding: 0.5rem 2rem 0.5rem 4rem;
    font-size: 1.1em;
    font-family: 'Lora', serif;
}
.main-content.single .post-content ul {
    padding: 0.5rem 2rem 0.5rem 4rem;
    font-size: 1.1em;
    font-family: 'Lora', serif;
}
.main-content.single .post-content p {
    padding: 0.5rem 2rem;
    font-size: 1.1em;
    font-family: 'Lora', serif;
}
.main-content.single .post-content h2, .main-content.single .post-content h3, .main-content.single .post-content h4 {
    padding: 0.5rem 2rem;
    margin: 0;
}
.main-content.single .post-content img {
    margin: 2rem .5rem;
}

@media only screen and (max-width: 974px) {
    header {
        padding: 0 0;
    }
    header .logo {
        margin-left: 20px;
    }
    header > ul {
        width: 100%;
        background-color: #0D475F;
        max-height: 0;
        overflow: hidden;
        padding-left: 20px;
        z-index: 2030;
        display: block;
    }
    .showing {
        max-height: 100em;
    }.showing3 {
        height: 30em;
    }
    header ul li {
        width: 100%;
    }
    header .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 10px;
        font-size: 2em;
    }
    .nav-right.showing2 {
       display: none;
    }
    .nav-right.showing2 ul {
        background-color: #0D475F;
        max-height: 100%;
    }
    .nav-right.showing2 li ul {
        left: 0;
        
    }
    .nav-right.showing2 ul li:hover ul {
        display: block;
        overflow: 1;

    }
}
@media only screen and (max-width: 821px) {
   .post-slider {
       text-align: left;
   }
   #post-wrapper1 {
       display: none;
   }
   #post-wrapper2 {
    display: block;
   }
   .post-slider .post-wrapper {
       height: 250px;
   }
   .post-slider h2 {
       margin-bottom: 0;
   }
   .post-slider .post-wrapper .post {
       height: 240px;
   }
   .sec1 .sec1l-post {
       width: 100%;
   }
   .sec1 .sec1l-post h3 {
       font-size: 1rem;
   }
   .sec1 .sec1l-post p {
       font-size: .9rem;
    -webkit-line-clamp: 3;
   }
   .sec1 .sec1l-post .img-post {
       width: 40%;
   }
   .sec1 .sec1l-post .text-post {
       width: 55%;
   }
   .sec1 .sec1l-post .img-post img {
    padding-left: 0rem;
    padding-top: 0rem;
    margin-top: auto;
    margin-bottom: auto;
    height: 100%;
   }
   
   /* sec1l-post-slider */
   #sec1l-post-slider1 {
       display: none;
   }
   #sec1l-post-slider2 {
       display: block;
   }

   /* sec2 */
   .sec2 .sec2-post {
    margin: 5px;
   }
   .sec2 .sec2-post h3 {
       font-size: 1rem;
       -webkit-line-clamp: 2;
       overflow: hidden;
       -webkit-box-orient: vertical;
   }
   .sec2 .sec2-post p {
       font-size: .9rem
   }

   /* yoga */

   .about .about-content {
    grid-template-columns: repeat(auto-fit, minmax(33.3333%, 1fr));
   }
   .about .about-post img {
       height: 150px;
   }

}
@media only screen and (max-width: 668px) {
    .df-r, .post-slider, .nav-right {
        display: none;
    }
    .df-l {
        width: 100%;
        padding-top: 1rem;
    }
    
}
@media only screen and (max-width: 440px) {
  #sec1l-post-slider2 {
      display: none;
  }
  .sec1l-post-slider3 {
      display: block;
  }
  .sec2 .card {
      width: 100%;
  }
  /* yoga */
  .about .about-content {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
  .about .about-post img {
      height: 150px;
  }
  
  .ads-hf1 {
      display: none;
  }
  .ads-hf2 {
      display: block;
  }
  .ads-hf {
      height: 240px;
  }
  .ads-hf .about-post {
      height: 200px;
  }
  .ads-hf .about-post img {
    height: 100px;
  }  
}
