/*!***************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./styles/templates/author.scss ***!
  \***************************************************************************************************************************************************/
.folder {
  --radius: 24px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1080px) {
  .folder {
    --corner: 40px;
  }
  .folder.large {
    --corner: 25px;
    --radius: 0;
  }
  .folder.caseInfo {
    --corner: 33px;
    --radius: 0;
  }
}
@media screen and (min-width: 1081px) {
  .folder {
    --corner: 60px;
  }
  .folder.large {
    --corner: 40px;
    --radius: 40px;
  }
  .folder.caseInfo {
    --corner: 47px;
    --radius: 0;
  }
}
.folder.service, .folder.vItem {
  --corner: 28px;
}
.folder.memberInfo {
  --corner: 16px;
  --radius: 16px;
}
.folder::before {
  content: "";
  position: absolute;
  height: var(--corner);
  width: 58%;
  background-color: inherit;
  z-index: -1;
}
.folder::after {
  content: "";
  position: absolute;
  border-width: var(--corner);
  border-style: solid;
  border-color: transparent;
  z-index: -1;
}
.folder.topLeft {
  border-radius: 0 var(--radius) var(--radius) var(--radius);
}
.folder.topLeft::before {
  bottom: 100%;
  left: 0;
  border-radius: var(--radius) 0 0 0;
}
.folder.topLeft::after {
  bottom: 100%;
  left: calc(58% - var(--corner));
  border-bottom-color: inherit;
  border-top: none;
}
.folder.topRight {
  border-radius: var(--radius) 0 var(--radius) var(--radius);
}
.folder.topRight::before {
  bottom: 100%;
  right: 0;
  border-radius: 0 var(--radius) 0 0;
}
.folder.topRight::after {
  bottom: 100%;
  right: calc(58% - var(--corner));
  border-bottom-color: inherit;
  border-top: none;
}
.folder.bottomRight {
  border-radius: var(--radius) var(--radius) 0 var(--radius);
}
.folder.bottomRight::before {
  top: 100%;
  right: 0;
  border-radius: 0 0 var(--radius) 0;
}
.folder.bottomRight::after {
  top: 100%;
  right: calc(58% - var(--corner));
  border-top-color: inherit;
  border-bottom: none;
}
.folder.bottomLeft {
  border-radius: var(--radius) var(--radius) var(--radius) 0;
}
.folder.bottomLeft::before {
  top: 100%;
  left: 0;
  border-radius: 0 0 0 var(--radius);
}
.folder.bottomLeft::after {
  top: 100%;
  left: calc(58% - var(--corner));
  border-top-color: inherit;
  border-bottom: none;
}

.post {
  background: #fff;
  position: relative;
  padding: 16px 16px 24px;
  border-radius: 20px;
  display: block;
  color: #003c3e;
}
.post .cats {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}
.post .cats div {
  display: inline-block;
  border-radius: 8px;
  background: #30aa86;
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}
.post figure {
  position: relative;
  padding-bottom: 60%;
  margin-bottom: 24px;
  border-radius: 10px;
  z-index: 0;
}
.post figure::before {
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.post figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 10px;
  z-index: 1;
}
.post .info h3 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 28px;
}
.post .info .post-footer {
  font-size: 14px;
  font-weight: 600;
  color: #b3b3b3;
}
@media screen and (min-width: 1081px) {
  .post {
    padding: 20px 24px 40px;
  }
  .post .cats {
    top: 36px;
    left: 32px;
    right: 32px;
  }
  .post figure {
    margin-bottom: 32px;
    overflow: hidden;
  }
  .post figure img {
    transform: scale(1);
  }
  .post .info h3 {
    font-size: 22px;
    padding-bottom: 33px;
  }
  .post:hover {
    box-shadow: 13px 10px 30px 0 rgba(0, 60, 62, 0.25);
    color: #30aa86;
  }
  .post:hover figure img {
    transform: scale(1.1);
  }
}

.load_more_holder {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 80px;
}

.preloader {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  bottom: 82px;
  margin-left: -20px;
  background-image: url("preloader.svg");
  background-repeat: no-repeat;
  animation: spin 1s ease infinite;
  transition: all 0.4s ease;
  opacity: 0%;
  visibility: hidden;
}
.preloader.is_loading {
  opacity: 100%;
  visibility: visible;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cooBox {
  position: fixed;
  z-index: 300;
  left: 0;
  right: 0;
  bottom: 0;
  background: #30aa86;
  color: #fff;
  opacity: 0%;
  transition: all 0.4s ease;
}
.cooBox.visible {
  opacity: 100%;
}
.cooBox > div {
  padding: 25px 7%;
}
.cooBox .info {
  font-size: 14px;
}
.cooBox p {
  padding: 0;
}
.cooBox p a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.cooBox p a:hover {
  text-decoration: none;
}
.cooBox .button {
  background: #003c3e;
  color: #fff;
}
.cooBox .button:hover {
  background: #fff;
  color: #003c3e;
}
@media screen and (max-width: 767px) {
  .cooBox {
    border-radius: 16px 16px 0 0;
    text-align: center;
  }
  .cooBox .accept {
    margin: 20px auto 0;
  }
  .cooBox br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .cooBox {
    border-radius: 24px 24px 0 0;
    text-align: left;
  }
  .cooBox > div {
    align-items: center;
  }
  .cooBox .info {
    flex: 1;
  }
  .cooBox .accept {
    margin-left: 5%;
  }
}

.content {
  padding-bottom: 160px;
}
.content .folder {
  padding-top: 60px;
}
@media screen and (min-width: 1081px) {
  .content {
    padding-bottom: 240px;
  }
}

.back {
  position: relative;
  background: #edeff4;
  color: #b3b3b3;
  margin-bottom: 20px;
}
.back span {
  padding-left: 32px;
}
.back svg {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 22px;
  transition: all 0.4s ease;
}
.back path {
  fill: #b3b3b3;
}
.back:hover {
  background: #003c3e;
  color: #fff;
}
.back:hover svg {
  left: 15px;
}
.back:hover path {
  fill: #30aa86;
}
@media screen and (min-width: 768px) {
  .back {
    margin-bottom: 50px;
  }
}

.authorTop {
  padding-top: 25px;
  padding-bottom: 130px;
}
.authorTop .leftBox {
  text-align: center;
  position: relative;
  padding: 15px 0 40px;
}
.authorTop .leftBox figure {
  width: 280px;
  height: 280px;
  overflow: hidden;
  border-radius: 50%;
  background: #eeeff4;
  margin: 0 auto;
}
.authorTop .leftBox p {
  color: #30aa86;
  font-weight: 500;
}
.authorTop .authorImg {
  position: relative;
  width: 360px;
  max-width: 100%;
  margin: 0 auto 24px;
}
.authorTop h1 {
  font-size: 28px;
  padding-bottom: 16px;
}
.authorTop .lkd {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #30aa86;
}
.authorTop .lkd svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.authorTop .rightBox .info {
  padding-bottom: 55px;
}
.authorTop .partners .item {
  margin-bottom: 20px;
}
.authorTop .partners figure {
  margin-right: 16px;
  flex-basis: 75px;
}
.authorTop .partners figure img {
  margin: 0 auto;
}
.authorTop .partners h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 0;
  flex: 1;
}
.authorTop .partners h5 strong {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .authorTop .leftBox {
    flex-basis: 28.3%;
    margin-right: 10%;
    padding-bottom: 0;
  }
  .authorTop .authorImg {
    width: auto;
  }
  .authorTop .rightBox {
    flex: 1;
    padding-top: 15px;
  }
}
@media screen and (min-width: 1081px) {
  .authorTop {
    padding-top: 60px;
    padding-bottom: 160px;
  }
  .authorTop .leftBox {
    cursor: pointer;
    margin-left: 52px;
    margin-right: 18.7%;
  }
  .authorTop .leftBox .lkd {
    opacity: 0%;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .authorTop .leftBox .lkd:hover {
    background: #003c3e;
  }
  .authorTop .leftBox .lkd:hover svg path {
    fill: #30aa86;
  }
  .authorTop .leftBox:hover .lkd {
    opacity: 100%;
    visibility: visible;
  }
  .authorTop h1 {
    font-size: 32px;
  }
  .authorTop .partners {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
  }
  .authorTop .partners .item {
    margin-bottom: 0;
  }
}

.posts {
  display: grid;
  grid-gap: 30px;
  grid-auto-rows: auto;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .posts {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1080px) and (min-width: 768px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1081px) {
  .posts {
    grid-gap: 34px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 160px;
  }
}

.titleBox h3 {
  padding-bottom: 50px;
}
@media screen and (min-width: 1081px) {
  .titleBox h3 {
    font-size: 40px;
    padding-bottom: 40px;
  }
}
