@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global
    ## Global
    ## Mixins
    ## Theme
    ## Variables
    ## Common

# Sections
    ## Nav Bar
    ## Banner
    ## Brand Area
    ## Footer
    ## Widgets

# Elements
    ## accordion
    ## filter
    ## apartment
    ## blog
    ## city
    ## feature
    ## gallery
    ## intro
    ## main-search
    ## pricing
    ## service
    ## team
    ## user-list


--------------------------------------------------------------*/
/*** Template Main Color***/
/***font***/
/*-----------------
    # Typography
-----------------*/





/*--------------------------------------------------------------
## New Categoriges
--------------------------------------------------------------*/



@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;500&display=swap");
/***transition***/
:root {
  --main-color: #ff1d5b;
  --heading-color: #292929;
  --paragraph-color: #383838;
  --heading-font: 'Noto Sans KR', sans-serif !important;
  --body-font: 'Noto Sans KR', sans-serif !important;
  --body-font-size: 16px;
  --line-height30: 1.6;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: #767575;
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);
}

h1 {
  font-size: 60px;
  line-height: 1.3333333333;
}

h2 {
  font-size: 40px;
  line-height: 1.3380952381;
}

h3 {
  font-size: 36px;
  line-height: 1.3833333333;
}

h4 {
  font-size: 30px;
  line-height: 1.3380952381;
}

h5 {
  font-size: 24px;
  line-height: 1.3380952381;
}

h6 {
  font-size: 18px;
  line-height: 1.3380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  color: var(--main-color-one);
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

button:hover,
button:active,
button:focus {
  outline: 0;
}


/*---------------------------------------
    ## Button
---------------------------------------*/
.btn {
  height: 57px;
  line-height: 57px;
  padding: 0 33px;
  overflow: hidden;
  position: relative;
  border: 0;
  transition: all 0.5s ease;
  font-weight: 500;
  display: inline-block;
  transform: perspective(1px) translateZ(0);
  border-radius: 10px;
}
.btn:focus, .btn:active {
  outline: 0;
  box-shadow: none;
}
.btn.btn-buy {
  background: #fff;
}
.btn.btn-buy:hover {
  background: #5856d5;
  color: #fff;
}
.btn.btn-main {
  background-color: #ff1d5b;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}
.btn.btn-main:hover {
  background-color: #ea1c55;
}
.btn.btn-white {
  background: #fff;
  font-weight: 400;
  color: #383838;
}
.btn.btn-white:hover {
  background: #ff1d5b;
  color: #fff;
}

.load-more-btn {
  text-align: center;
  display: block;
  height: 60px;
  box-shadow: 0px 8px 27px 0px rgba(216, 216, 216, 0.16);
  border: 1px solid whitesmoke;
  font-size: 16px;
  color: #282828;
  line-height: 58px;
  border-radius: 4px;
}
.load-more-btn:hover {
  background: #ff1d5b;
  color: #ffffff;
}

.load-more-btn-2 {
  border-radius: 5px;
  background-color: #ffebf0;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  font-size: 16px;
  font-family: 'Noto Sans KR', sans-serif !important;
  color: #eb1650;
  font-weight: 700;
  padding: 0 45px;
  position: relative;
}
.load-more-btn-2:hover {
  color: white;
  background: #ff1d5b;
}
/* *video-play-btn* */

/*
.video-play-btn {
  border-radius: 50%;
  background: rgba(216, 216, 216, 0.38);
  width: 81px;
  height: 81px;
  display: inline-block;
  text-align: center;
  line-height: 88px;
  position: absolute;
  right: 40px;
  top: 40px;
}
.video-play-btn i {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background-color: #d8d8d8;
  color: #eb1650;
  text-align: center;
  line-height: 53px;
  font-size: 24px;
  padding-left: 9px;
}

.tag {
  background: #e0ceff;
  border-radius: 3px;
  height: 30px;
  font-size: 14px;
  color: #6600ff;
  font-weight: 300;
  display: inline-block;
  line-height: 30px;
  padding: 0 10px;
  margin-right: 5px;
}
.tag:active, .tag:focus, .tag:hover {
  background: #7f31ff !important;
  color: #fff !important;
}

.meta {
  display: inline-flex;
  font-size: 14px;
  color: #767575;
  align-items: center;
}
.meta .author {
  margin-right: 13px;
}
.meta .author img {
  margin-right: 8px;
  border-radius: 50%;
}
.meta .date {
  margin-right: 17px;
}
.meta .date i {
  color: #ff1d5b;
}
.meta .comments {
  margin-left: 22px;
}
*/

.shadow-none {
  box-shadow: none !important;
}

.pagination {
  margin-bottom: 0;
  display: inline-block;
}
.pagination .page-item {
  margin-right: 6px;
  display: inline-block;
}
.pagination .page-item .page-link {
  border-radius: 5px;
  background-color: #efefef;
  width: 54px;
  height: 38px;
  font-size: 18px;
  font-weight: 500;
  color: black;
  border: 0;
  padding: 0;
  text-align: center;
  line-height: 38px;
}
.pagination .page-item .page-link:active, .pagination .page-item .page-link:focus, .pagination .page-item .page-link:hover {
  background-color: #ff1d5b;
  color: #ffffff;
  box-shadow: none;
  outline: 0;
}


/*------------------------------------------------
    ## Section title
------------------------------------------------*/
.section-title {
  position: relative;
  text-shadow: 0px 0px 1px #68c3bb
  /* padding-bottom: 39px; */
}
.section-title .title {
  margin-bottom: 0;
}
.section-title .see-all-btn {
  font-size: 18px;
  color: #292929;
  position: relative;
  font-weight: 700;
}
.section-title .see-all-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #292929;
  left: 0;
  bottom: 0;
  transition: 0.4s;
}
.section-title .see-all-btn:hover {
  color: var(--main-color);
}
.section-title .see-all-btn:hover:after {
  background: var(--main-color);
}
.section-title.section-title-2 .title {
  color: #ffffff;
}
.section-title.section-title-2 .see-all-btn {
  color: #ffffff;
  transition: 0.4s;
}
.section-title.section-title-2 .see-all-btn:after {
  background: #ffffff;
}
.section-title.section-title-2 .see-all-btn:hover {
  color: var(--main-color);
}
.section-title.section-title-2 .see-all-btn:hover:after {
  background: var(--main-color);
}
.section-title.section-title-3 .title {
  position: relative;
  padding-left: 23px;
}
.section-title.section-title-3 .title:before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ff1d5b;
  top: 50%;
  margin-top: -5px;
  left: 0;
}


/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.border-none {
  border: 0 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.bg-black {
  background: #1b1f2b;
}

.pd-top-20 {
  padding-top: 20px;
}

.pd-top-30 {
  padding-top: 30px;
}

.pd-top-40 {
  padding-top: 40px;
}

.pd-top-50 {
  padding-top: 50px;
}

.pd-top-70 {
  padding-top: 70px;
}

.pd-top-80 {
  padding-top: 80px;
}

.pd-bottom-20 {
  padding-bottom: 20px;
}

.pd-bottom-30 {
  padding-bottom: 30px;
}

.pd-bottom-50 {
  padding-bottom: 50px;
}

.pd-bottom-55 {
  padding-bottom: 55px;
}

.pd-bottom-70 {
  padding-bottom: 70px;
}

.pd-bottom-75 {
  padding-bottom: 75px;
}

.pd-bottom-80 {
  padding-bottom: 80px;
}


/*--------------------------------------------------------------
## Editors and Visitors
--------------------------------------------------------------*/

/**top-post-wrap**/

/*
.top-post-wrap {
  position: relative;
  margin-bottom: 30px;
}
.top-post-wrap .thumb {
  position: relative;
}

.top-post-wrap .thumb .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 52%, rgba(0, 0, 100, 0));
  height: 70%;
  left: 0;
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
}

.top-post-wrap .thumb img {
  border-radius: 5px;
}
.top-post-wrap .thumb .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 5px;
  height: 26px;
  line-height: 26px;
}
.top-post-wrap .thumb .tag-1 {
  background-color: #5856d5;
}
.top-post-wrap .top-post-details {
  position: absolute;
  bottom: 22px;
  left: 40px;
  margin-right: 20px;
}
.top-post-wrap .top-post-details h3 {
  color: #ffffff;
}
.top-post-wrap .top-post-details h3:hover {
  color: var(--main-color);
}
.top-post-wrap .top-post-details .meta {
  color: #ffffff;
}
.top-post-wrap .top-post-details .meta .date i {
  color: #ffffff;
}
.top-post-wrap .top-post-details-2 {
  position: absolute;
  bottom: 22px;
  left: 20px;
  margin-right: 20px;
}
.top-post-wrap .top-post-details-2 h6 {
  color: #ffffff;
}
.top-post-wrap .top-post-details-2 h6:hover {
  color: var(--main-color);
}
*/

/**editors-slider**/
.editors-slider .top-post-wrap .thumb .tag {
  left: 30px;
  top: 30px;
  height: 34px;
  line-height: 34px;
  border-radius: 3px;
}
.editors-slider .top-post-wrap .top-post-details h6 {
  color: #ffffff;
  font-weight: 500;
  line-height: 28px;
}
.editors-slider .owl-nav {
  display: none;
}

/**visitors-slider**/
.visitor-slider .single-post-wrap .thumb {
  margin-bottom: 20px;
}
.visitor-slider .single-post-wrap .tag {
  position: initial;
  font-family: 'Noto Sans KR', sans-serif !important;
}
.visitor-slider .single-post-wrap .tag.tag-2 {
  background: #153fca;
}
.visitor-slider .single-post-wrap .tag.tag-3 {
  background: #dfb50b;
}
.visitor-slider .single-post-wrap h6 {
  padding: 16px 0 0 0;
  font-weight: 600;
  line-height: 24px;
}
.visitor-slider .owl-nav {
  position: absolute;
  right: 0;
  top: -70px;
}
.visitor-slider .owl-nav button {
  background: transparent;
  border: 0;
  font-size: 24px;
  color: #7f7f7f;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
}

/*--------------------------------------------------------------
## Popular and Most Liked
--------------------------------------------------------------*/

/**single-post-wrap**/
.single-post-wrap {
  margin-bottom: 30px;
}
.single-post-wrap .thumb {
  position: relative;
}
.single-post-wrap .thumb img {
  border-radius: 10px;
}
.single-post-wrap .thumb .tag {
  position: absolute;
  top: 20px;
  left: 20px;
}
.single-post-wrap h5 {
  margin: 15px 0 14px;
}
.single-post-wrap h5:hover {
  color: var(--main-color);
}
.single-post-wrap h6 {
  color: #292929;
  font-weight: 500;
  padding: 18px 0 10px;
}
.single-post-wrap h6:hover {
  color: var(--main-color);
}


/**category-area**/
.single-category-wrap {
  margin-bottom: 20px;
}
.single-category-wrap .thumb {
  position: relative;
}
.single-category-wrap .thumb:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  top: 0;
  left: 0;
}
.single-category-wrap .thumb img {
  border-radius: 10px;
  width: 100%;
  box-shadow: 2px 2px 5px #555;
}
.single-category-wrap .thumb a {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  height: 39px;
  line-height: 39px;
  width: 142px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.859);
  padding: 0;
  border-radius: 50px;
  margin-left: -71px;
  margin-top: -20px;
  box-shadow: none;
  font-size: 16px;
  font-family: 'Noto Sans KR', sans-serif !important;
  color: #292929;
}
.single-category-wrap .thumb a img {
  margin-right: 11px;
  margin-top: -3px;
  width: auto;
}
.single-category-wrap .thumb a:hover {
  background-color: white;
  color: #292929;
}

.category-wrap {
  margin-bottom: 30px;
}
.category-wrap a {
  border-radius: 19px;
  background-color: white;
  box-shadow: 0px 0px 25px 0px rgba(208, 208, 208, 0.22);
  height: 39px;
  display: inline-block;
  line-height: 39px;
  width: 100%;
  text-align: center;
}
.category-wrap a img {
  margin-right: 10px;
}
.category-wrap a:hover {
  box-shadow: 0px 0px 25px 0px rgba(208, 208, 208, 0.6);
}

/**blog-details**/
.blog-details-wrap .category {
  font-size: 12px;
  color: #888888;
  font-family: 'Noto Sans KR', sans-serif !important;
  margin-bottom: 14px;
}
.blog-details-wrap .subtitle {
  color: #888888;
  font-size: 18px;
  font-weight: 400;
  margin: 13px 0 23px;
}
.blog-details-wrap p {
  margin-bottom: 20px;
}
.blog-details-wrap .tag-1 {
  background: #153fca;
  margin-left: 7px;
}
.blog-details-wrap .meta {
  margin: 30px 0 43px;
}
.blog-details-wrap .meta .time {
  margin-left: 15px;
}
.blog-details-wrap .blog-details-slider {
  margin-bottom: 18px;
}
.blog-details-wrap .blog-details-slider .owl-nav button {
  border-radius: 50%;
  background-color: #6a14d1;
  width: 60px;
  height: 60px;
  border: 0;
  cursor: pointer;
  top: 50%;
  position: absolute;
  margin-top: -30px;
  left: 8px;
  transition: all 0.4s ease-in;
}
.blog-details-wrap .blog-details-slider .owl-nav button:hover {
  background: #ff1d5b;
}
.blog-details-wrap .blog-details-slider .owl-nav button span {
  color: #fff;
  font-size: 24px;
}
.blog-details-wrap .blog-details-slider .owl-nav button.owl-next {
  right: 8px;
  left: auto;
}
.blog-details-wrap .blog-details-slider .item {
  border-radius: 10px;
}
.blog-details-wrap h5 {
  font-weight: 600;
  margin-bottom: 15px;
}
.blog-details-wrap blockquote {
  background-color: #f7f7f7;
  padding: 26px 46px 19px 31px;
  margin: 27px 0 30px;
  border-radius: 6px;
}
.blog-details-wrap blockquote p {
  color: #292929;
  font-style: italic;
  margin-bottom: 13px;
}
.blog-details-wrap blockquote h6 {
  color: #383838;
  font-style: italic;
  font-weight: 500;
}
.blog-details-wrap .thumb {
  margin-bottom: 25px;
  border-radius: 6px;
  overflow: hidden;
}
.blog-details-wrap .thumb img {
  width: 100%;
  border-radius: 6px;
}
.blog-details-wrap .ad-area img {
  width: 100%;
  border-radius: 8px;
}
.blog-details-wrap .blog-content {
  font-weight: 400;
  margin-bottom: 36px;
}
.blog-details-wrap .top-post-wrap .meta {
  margin: 5px 0 0;
}
.blog-details-wrap .top-post-wrap .video-play-btn {
  right: 50%;
  top: 50%;
  margin-top: -34px;
  margin-right: -34px;
}
.blog-details-wrap .blog-share-area {
  align-items: center;
  border: 1px solid whitesmoke;
  margin: 53px 0 51px 0;
  padding: 42px 37px 42px 42px;
  text-align: right;
  border-radius: 8px;
}
.blog-details-wrap .blog-share-area h5 {
  font-weight: 600;
  margin: 0;
  float: left;
  margin-top: 15px;
}
.blog-details-wrap .blog-tags {
  background-color: #fafafa;
  padding: 63px 70px 58px;
  margin-bottom: 50px;
  border-radius: 8px;
}
.blog-details-wrap .blog-tags h5 {
  font-family: 'Noto Sans KR', sans-serif !important;
}
.blog-details-wrap .blog-tags .tagcloud a {
  border: 2px solid #fafafa;
  border-radius: 3px;
  height: 54px;
  display: inline-block;
  background: #fff;
  font-size: 16px;
  color: #292929;
  line-height: 51px;
  text-align: center;
  padding: 0 20px;
  margin: 0 6px 10px 0;
  transition: all 0.4s ease-in;
  border-radius: 5px;
}
.blog-details-wrap .blog-tags .tagcloud a:hover {
  background: #ff1d5b;
  color: #ffffff;
}
.blog-details-wrap .blog-author-area {
  border: 1px solid whitesmoke;
  padding: 27px 32px;
  margin-bottom: 50px;
  border-radius: 8px;
}
.blog-details-wrap .blog-author-area .blog-author-details .media-body {
  margin-left: 40px;
}
.blog-details-wrap .blog-author-area .blog-author-details .media-body h6 {
  font-weight: 600;
}
.blog-details-wrap .blog-author-area .blog-author-details .media-body p {
  margin-bottom: 0;
}
.blog-details-wrap .recent-blog-area {
  border-bottom: 1px solid #efefef;
  padding-bottom: 19px;
  margin-bottom: 47px;
}
.blog-details-wrap .recent-blog-area h6 {
  font-weight: 600;
  padding: 0;
  margin-bottom: 24px;
}
.blog-details-wrap .recent-blog-area .single-post-wrap .thumb {
  margin-bottom: 19px;
}
.blog-details-wrap .recent-blog-area .single-post-wrap .meta {
  margin: 0;
}
.blog-details-wrap .recent-blog-area .single-post-wrap h6 {
  padding: 0;
  margin: 0;
  margin-bottom: 19px;
}
.blog-details-wrap .comment-area h5 {
  margin-bottom: 28px;
}
.blog-details-wrap .comment-area .media {
  background-color: white;
  box-shadow: 0px 0px 32px 0px rgba(241, 241, 241, 0.57);
  margin-bottom: 30px;
  padding: 20px 35px;
  align-items: center;
  border-radius: 8px;
}
.blog-details-wrap .comment-area .media.media-last {
  margin-top: 60px;
  position: relative;
}
.blog-details-wrap .comment-area .media.media-last:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #efefef;
  top: -30px;
  left: 0;
}
.blog-details-wrap .comment-area .media.nesting {
  margin-left: 70px;
  background-color: #f7f7f7;
}
.blog-details-wrap .comment-area .media .thumb {
  margin-bottom: 0;
}
.blog-details-wrap .comment-area .media .media-body {
  margin-left: 26px;
}
.blog-details-wrap .comment-area .media .media-body .btn {
  padding: 0;
  height: 27px;
  line-height: 26px;
}
.blog-details-wrap .comment-area .media .media-body h6 {
  font-weight: 600;
}
.blog-details-wrap .comment-area .media .media-body p {
  margin-bottom: 0;
}
.blog-details-wrap .comment-form {
  margin-top: 60px;
  position: relative;
  padding-top: 43px;
}
.blog-details-wrap .comment-form:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #efefef;
  top: 0px;
  left: 0;
}
.blog-details-wrap .comment-form .single-input-wrap {
  margin-bottom: 13px;
  border: 0;
}
.blog-details-wrap .comment-form .single-input-wrap textarea {
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background-color: #fafafa;
}
.blog-details-wrap .comment-form .single-input-wrap .form-control {
  border: 1px solid #cfcfcf;
  border-radius: 30px;
}
.blog-details-wrap .comment-form .comment-check {
  margin-top: 12px;
  margin-bottom: 25px;
}
.blog-details-wrap .comment-form .btn {
  border-radius: 5px;
}

.single-blog-wrap {
  margin-bottom: 67px;
}
.single-blog-wrap h3 {
  margin: 14px 0 20px;
  font-size: 30px;
}
.single-blog-wrap h3:hover {
  color: var(--main-color);
}
.single-blog-wrap .thumb {
  margin-bottom: 30px;
}
.single-blog-wrap .thumb .tag {
  top: 30px;
  left: 30px;
}
.single-blog-wrap .thumb .tag-1 {
  left: 125px;
  background: #153fca;
}
.single-blog-wrap .meta .time {
  margin-left: 12px;
}
.single-blog-wrap p {
  margin-top: 24px;
}
.single-blog-wrap p a {
  color: #ff1d5b;
  margin-left: 5px;
}

.blog-category-area .breadcrumb-inner {
  margin-bottom: 30px;
}
.blog-category-area .section-title h5 {
  font-family: 'Noto Sans KR', sans-serif !important;
}
.blog-category-area .btn-wrap {
  position: relative;
}
.blog-category-area .btn-wrap:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #e6e6e6;
  top: 50%;
  left: 0;
  z-index: 0;
}
.blog-category-area .btn-wrap .btn-main {
  border-radius: 5px;
  height: 56px;
  line-height: 56px;
  background-color: #ff1d5b;
  padding: 0 72px;
  font-size: 16px;
  font-family: 'Noto Sans KR', sans-serif !important;
  font-weight: 400;
  z-index: 1;
}
.blog-category-area .btn-wrap .btn-main:hover {
  background: #ea1c55;
}

.blog-gallery-area .category {
  margin-bottom: 30px;
  font-size: 12px;
  color: #888888;
}
.blog-gallery-area .blog-gallery-tab .nav-tabs {
  border: 0;
}
.blog-gallery-area .blog-gallery-tab .nav-tabs li {
  border: 0;
  margin-right: 26px;
}
.blog-gallery-area .blog-gallery-tab .nav-tabs li a {
  font-size: 18px;
  font-family: 'Noto Sans KR', sans-serif !important;
  color: #292929;
  font-weight: 700;
}
.blog-gallery-area .blog-gallery-tab .nav-tabs li a.active {
  color: var(--main-color);
}

.blog-list-area .breadcrumb-inner {
  margin-bottom: 19px;
}
.blog-list-area h6,
.blog-list-area h5 {
  font-weight: 600;
}
.blog-list-area h6.title,
.blog-list-area h5.title {
  margin-bottom: 32px;
}
.blog-list-area .single-post-wrap {
  margin-bottom: 43px;
}
.blog-list-area .single-post-wrap h5:hover {
  text-decoration: underline;
  text-underline-position: under;
}
.blog-list-area .recent-news-area-3 .media-post-wrap-2 {
  border: 1px solid #fafafa;
}
.blog-list-area .recent-news-area-3 .media-post-wrap-2 .thumb {
  position: relative;
}
.blog-list-area .recent-news-area-3 .media-post-wrap-2 .thumb .tag {
  position: absolute;
  left: 20px;
  top: 20px;
}

.post-banner-area-2 .col-sm-6, 
.blog-category-area .col-sm-6 {
    position: relative;
    width: 50%;
    min-height: 35px;
    padding-right: 10px;
    padding-left: 10px;
}

.post-banner-area-2 .col-sm-6 ul li,
.blog-category-area .col-sm-6 ul li { margin-bottom: 15px;}




@media screen and (max-width: 767px) {
	.post-banner-area-2 { padding: 10px 0 0;}
	.blog-area .col-xxs-12 {padding: 0 7px;}
}



@media screen and (max-width: 520px) {
	.blog-area .col-xxs-12 {
		position: relative;
		width: 100%;
		min-height: 35px;
		padding-right: 10px;
		padding-left: 10px;
	}
}