/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/images/vendor/owl.carousel/dist/owl.video.play.png?7f01b07148f205f6e8258e92bbf652d9) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

#home_banner_section {
  background-image: url(/images/banner.png?c4688aaca9524d4ae2d0dda5921326bc);
  background-repeat: no-repeat;
  background-size: cover;
}
#home_banner_section .home-banner {
  padding: 75px 100px;
}
#home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area {
  color: #fff;
}
#home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area h1 {
  font-size: 80px;
}
#home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area p {
  font-size: 24px;
}
#home_banner_section .home-banner .home-banner-image-area-col {
  position: relative;
}
#home_banner_section .home-banner .home-banner-image-area-col .home-banner-image-area .banner-all-image {
  animation: scaleAnimation 1.5s infinite alternate;
}
#home_banner_section .home-banner .home-banner-image-area-col .home-banner-image-area .sound-image {
  width: 510px;
  position: absolute;
  right: 110px;
  bottom: 0px;
  top: 0;
  animation: scaleAnimation 1.5s infinite alternate;
}
#home_banner_section .home-banner .home-banner-image-area-col .home-banner-image-area .like-image {
  position: absolute;
  right: 320px;
  bottom: 0;
  top: 0;
  width: 60px;
  animation: scaleAnimation 1.4s infinite alternate;
}
#home_banner_section .home-banner .home-banner-image-area-col .home-banner-image-area .user-image {
  position: absolute;
  right: 189px;
  top: 0px;
  width: 50px;
  animation: scaleAnimation 1.3s infinite alternate;
}
#home_banner_section .home-banner .home-banner-image-area-col .home-banner-image-area .search-image {
  position: absolute;
  right: 380px;
  top: 0px;
  width: 70px;
  animation: scaleAnimation 1.2s infinite alternate;
}
@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.small-image-box {
  margin-bottom: 10px;
}

.video-box-height {
  height: 420px;
  width: 100%;
}

#add_posting_section .big-add-image-text-area {
  position: relative;
  background-color: #fef8dd;
  text-align: center;
}
#add_posting_section .big-add-image-text-area img {
  height: 636px;
  -o-object-fit: cover;
     object-fit: cover;
}
#add_posting_section .big-add-image-text-area .big-add-contents {
  position: absolute;
  bottom: 0;
  padding: 40px;
}
#add_posting_section .big-add-image-text-area .big-add-contents h3 {
  font-size: 36px;
}
#add_posting_section .big-add-image-text-area .big-add-contents p {
  font-size: 22px;
}
#add_posting_section .add-posting-card .big-image {
  height: 420px;
  width: 100%;
}
#add_posting_section .add-posting-card .small-image {
  height: 205px;
}
#add_posting_section .add-posting-card .text-add-area {
  padding: 8px 20px;
  justify-content: space-between;
  height: 204px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
#add_posting_section .add-posting-card .text-add-area h3 {
  font-size: 36px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}
#add_posting_section .add-posting-card .text-add-area .text-add-area-description {
  font-size: 22px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#add_posting_section .add-posting-card .text-add-area .text-add-area-description p {
  margin-bottom: 0;
}
#add_posting_section .add-posting-card .text-add-area .text-add-area-company-name {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#add_posting_section .add-posting-card .text-add-area .text-add-area-company-name h4 {
  margin-bottom: 0;
  font-size: 24px;
}
#add_posting_section .add-posting-card .text-add-area .company-logo {
  width: 90px;
  height: 90px;
  margin-top: 15px;
}
#add_posting_section .add-posting-card .text-add-area .text-add-share-icon {
  position: absolute;
  right: 20px;
  top: 10px;
}
#add_posting_section .add-posting-card .text-add-area .text-add-share-icon img {
  width: 19px;
}
#add_posting_section .add-posting-card .card-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5333333333), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: 0.3s;
  border-radius: 8px;
}
#add_posting_section .add-posting-card .add-share-icon {
  position: absolute;
  right: 15px;
  bottom: 15px;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}
#add_posting_section .add-posting-card .add-share-icon img {
  transition: 0.3s;
  width: 30px;
}
#add_posting_section .add-posting-card .content-card-1 {
  background-color: #e1f8dc !important;
}
#add_posting_section .add-posting-card .content-card-2 {
  background-color: #fef8dd !important;
}
#add_posting_section .add-posting-card .content-card-3 {
  background-color: #d9ecf4 !important;
}
#add_posting_section .add-posting-card .content-card-4 {
  background-color: #fefaf4 !important;
}
#add_posting_section .add-posting-card .add-posting-card-bottom {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  align-items: center;
}
#add_posting_section .add-posting-card .add-posting-card-bottom img {
  width: 35px;
  height: 35px;
  border-radius: 100%;
}
#add_posting_section .add-posting-card .add-posting-card-bottom h4 {
  font-size: 20px;
}
#add_posting_section .add-posting-card .add-posting-card-video {
  position: relative;
  background-color: rgba(43, 68, 211, 0.0509803922);
  text-align: center;
}
#add_posting_section .add-posting-card .add-posting-card-video video {
  height: 420px;
  width: 100%;
}
#add_posting_section .add-posting-card .add-posting-card-video:hover .card-overlay {
  opacity: 1;
}
#add_posting_section .add-posting-card .add-posting-card-video:hover .add-share-icon {
  opacity: 1;
}
#add_posting_section .add-posting-card-contents {
  margin-bottom: 10px;
}
#add_posting_section .add-posting-card-vide {
  margin-bottom: 10px;
}

.dummy-image {
  height: 204px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}

@media screen and (max-width: 1600px) {
  .big-add-image-text-area img {
    height: 636px !important;
  }
  #home_banner_section .home-banner {
    padding: 60px 100px;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area h1 {
    font-size: 60px !important;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area h2 {
    font-size: 28px;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area p {
    font-size: 20px !important;
  }
  #add_posting_section .add-posting-card .add-posting-card-contents p {
    font-size: 18px;
  }
  #add_posting_section .add-posting-card .add-posting-card-contents h3 {
    font-size: 28px;
  }
  .big-add-image-text-area .big-add-contents h3 {
    font-size: 28px !important;
  }
  .big-add-image-text-area .big-add-contents p {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 1440px) {
  .big-add-image-text-area img {
    height: 502px !important;
  }
  #add_posting_section .add-posting-card .add-posting-card-contents p {
    font-size: 14px;
  }
  #add_posting_section .add-posting-card .add-posting-card-contents h3 {
    font-size: 22px;
  }
  .big-add-image-text-area .big-add-contents h3 {
    font-size: 24px !important;
  }
  .big-add-image-text-area .big-add-contents p {
    font-size: 16px !important;
  }
  #home_banner_section .home-banner {
    padding: 60px 60px;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area h1 {
    font-size: 40px !important;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area h2 {
    font-size: 24px;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area p {
    font-size: 17px !important;
  }
  #add_posting_section .add-posting-card .big-image {
    height: 331px !important;
    width: auto;
  }
  #add_posting_section .add-posting-card .add-posting-card-video video {
    height: 331px;
    width: auto;
  }
  .video-box-height {
    height: 331px;
  }
  #add_posting_section .add-posting-card .small-image {
    height: 160px;
  }
  .dummy-image {
    height: 160px;
  }
  #add_posting_section .add-posting-card .text-add-area {
    height: 160px;
  }
}
@media screen and (max-width: 1366px) {
  #add_posting_section .big-add-image-text-area img {
    height: 502px !important;
    width: auto;
  }
}
@media screen and (max-width: 1240px) {
  #add_posting_section .big-add-image-text-area img {
    height: 472px !important;
  }
  #add_posting_section .big-add-image-text-area .big-add-contents {
    padding: 20px;
  }
  #add_posting_section .add-posting-card .text-add-area {
    padding: 8px 10px;
  }
  .big-add-image-text-area img {
    height: 500px !important;
    width: auto;
  }
  #add_posting_section .add-posting-card .big-image {
    height: 310px !important;
    width: auto;
  }
  #add_posting_section .add-posting-card .add-posting-card-video video {
    height: 310px;
    width: auto;
  }
  .video-box-height {
    height: 310px;
  }
  #add_posting_section .add-posting-card .small-image {
    height: 150px;
  }
  .dummy-image {
    height: 150px;
  }
  #add_posting_section .add-posting-card .text-add-area {
    height: 150px;
  }
  #add_posting_section .add-posting-card .text-add-area .text-add-share-icon {
    right: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .blog-grid {
    -moz-column-count: 2 !important;
         column-count: 2 !important;
  }
  #add_posting_section .big-add-image-text-area img {
    height: 310px !important;
  }
}
@media screen and (max-width: 991px) {
  #home_banner_section .home-banner {
    padding: 20px !important;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area h1 {
    font-size: 36px !important;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area h2 {
    font-size: 22px;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area p {
    font-size: 15px !important;
  }
  .home-banner-image-area img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #add_posting_section .big-add-image-text-area img {
    height: 260px !important;
  }
  #add_posting_section .big-add-image-text-area .big-add-contents {
    padding: 15px;
  }
  .company-logo {
    width: 50px !important;
    height: 50px !important;
  }
  .big-add-image-text-area img {
    height: 260px !important;
    width: auto;
  }
  #add_posting_section .add-posting-card .big-image {
    height: 260px !important;
    width: auto;
  }
  #add_posting_section .add-posting-card .add-posting-card-video video {
    height: 260px;
    width: auto;
  }
  .video-box-height {
    height: 260px;
  }
  #add_posting_section .add-posting-card .small-image {
    height: 125px;
  }
  .dummy-image {
    height: 125px;
  }
  #add_posting_section .add-posting-card .text-add-area {
    height: 125px;
  }
  #add_posting_section .add-posting-card .text-add-area .text-add-area-company-name h4 {
    font-size: 16px;
  }
  #add_posting_section .add-posting-card .add-posting-card-contents h3 {
    font-size: 18px;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area h1 {
    font-size: 30px !important;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area h2 {
    font-size: 20px;
  }
  #home_banner_section .home-banner .home-banner-title-area-col .home-banner-title-area p {
    font-size: 14px !important;
  }
  .big-add-image-text-area .big-add-contents h3 {
    font-size: 22px !important;
  }
  .big-add-image-text-area .big-add-contents p {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 600px) {
  .blog-grid {
    -moz-column-count: 1 !important;
         column-count: 1 !important;
    padding: 10px !important;
  }
  #add_posting_section .big-add-image-text-area .big-add-contents {
    padding: 10px;
  }
}
figure {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 10px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

figure > img {
  grid-row: 1/-1;
  grid-column: 1;
}

figure a {
  color: black;
  text-decoration: none;
}

figcaption {
  grid-row: 2;
  grid-column: 1;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.2em 0.5em;
  justify-self: start;
}

.blog-grid {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
