/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,700;1,6..12,300&family=Playfair+Display+SC:wght@400;700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/*
$font-main: "Jost", sans-serif;
$font-accent: "Forum", cursive;
*/
/*360*/
/*
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Jost:ital,wght@0,300;0,400;0,700;1,400&display=swap");
*/
html {
  font-size: 32px;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background-color: #fff;
  color: #000;
}

a {
  color: #fff;
  transition: color 0.2s ease-in;
}
a:hover, a:target, a:active {
  color: #d2ba85;
}

h1 {
  font-size: 2rem;
  font-family: "Nunito Sans", sans-serif;
  color: #563d01;
  line-height: 1;
  text-align: center;
  /*text-shadow: 0px 0px 50px $color-accent;*/
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.2rem;
  }
}

h2 {
  font-family: "Playfair Display SC", serif;
  color: #563d01;
  font-size: 1.4rem;
  padding-bottom: 50px;
  text-align: center;
  text-shadow: 0px 0px 50px #563d01;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1rem;
  }
}

h3 {
  font-family: "Playfair Display SC", serif;
  color: #563d01;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 0.8rem;
  }
}

p {
  font-size: 0.8rem;
  margin: 0.5em 0;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 0.6rem;
  }
}

b {
  color: #563d01;
}

ol {
  margin-left: 2em;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1310px;
}

.btn {
  cursor: pointer;
  display: inline-block;
  background: linear-gradient(90deg, #e8d09b 0%, #a08550 100%);
  transition: color 0.5s ease-in;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  padding: 10px 40px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .btn {
    padding: 6px 30px;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 5px 20px;
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 0.5rem;
  }
}
.btn:hover {
  color: #563d01;
}

.visually-hidden {
  /* Contain text within 1px box */
  height: 1px;
  overflow: hidden;
  width: 1px;
  /* Keep the layout */
  position: absolute;
  /* Remove any visible trace (e.g. background color) */
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%); /* browsers in the future */
  /* Prevent the screen reader to skip spaces between words */
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.none {
  display: none;
}

.no-scroll {
  overflow-y: hidden;
}

.header {
  position: sticky;
  top: -1px;
  z-index: 20;
}

.header__top {
  background-color: #313131;
  color: #ede3d9;
}

.header__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__top-row--mobile {
  position: fixed;
  z-index: 9;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #313131;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  row-gap: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.header__top-row--mobile .header__nav {
  display: block;
}
.header__top-row--mobile .nav__list--header {
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
.header__top-row--mobile .header__nav-btn {
  position: fixed;
  top: 50px;
  right: 15px;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 0.6rem;
  }
}

.header__title {
  text-align: right;
}

.header__title h1 {
  margin-bottom: 40px;
}

.header__title p {
  font-family: "Playfair Display SC", serif;
}

.icon__list {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: right;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .icon__list {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}

@media screen and (max-width: 768px) {
  .social {
    height: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__nav-btn {
    display: block;
  }
}

.nav__list--header {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  font-size: 0.6rem;
}

.intro--about {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 900px;
  background: url(./../images/bg/intro-about-bg.jpg) no-repeat center center #ede3d9;
  background-size: cover;
}

@media screen and (min-width: 769px) {
  .intro--about {
	display: block;	
  }
  .header__title h1 {
	  margin-bottom: 180px;
	  margin-top: 80px;
	}
  .intro--phone {
	display: none;
  }
  .section--none {
	display: none;
  }
  .section--block{
	display: block;
  }
}

@media screen and (max-width: 768px) {
  .intro--about {
	display: none;
  }
  .intro--phone {
	display: block;
	padding: 0;
  } 
  .header__title h1 {
    margin-bottom: 10px;
  }  
  .icon__list {
    padding-bottom: 0px;
  }
  .section--none {
	display: block;
  }
  .section--block{
	display: none;
  }
}

@media screen and (max-width: 1024px) {
  .intro--about {
    min-height: unset;
    row-gap: 60px;
  }
}
.intro--about h1,  .intro--about p {
  text-align: right;
  text-shadow: 0px 0px 5px #fff, 0px 0px 10px #fff;
}

.intro--book {
  /*background-image: url(./../images/bg/intro-book-bg.jpg);
  background-position: center center;
  background-size: cover;*/
  max-height: 300px;
}

.intro--story {
  background-image: url(./../images/bg/intro-story-bg.jpg);
  background-position: center center;
  background-size: cover;
  max-height: 300px;
}

.intro--consultation {
  background-image: url(./../images/bg/intro-consultation-bg.jpg);
  background-position: center center;
  background-size: cover;
  max-height: 300px;
}

.intro--blog {
  background-image: url(./../images/bg/intro-blog-bg.jpg);
  background-position: center center;
  background-size: cover;
  max-height: 300px;
}

.work__row {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .work__row {
	display: flex;
    overflow-x: auto;
    justify-content: start;
  }
}

.work__item {
  width: 450px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .work__item {
    min-width: 250px;
  }
}

.work__item-text {
  font-size: 0.7rem;
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .work__item-text {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .work__item-text {
    min-width: 110px;
  }
}

.mission p {
  text-align: center;
}
.mission p:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .mission p {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .mission p {
    font-size: 0.4rem;
  }
}

/*.about__row {
  display: flex;
  justify-content: center;
}*/

.about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 480px) {
  .about__row {
    grid-template-columns: 1fr;
  }
}

.about__list {
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .about__list {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .about__list {
    font-size: 0.4rem;
  }
}

.education__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 480px) {
  .education__content {
    grid-template-columns: 1fr;
  }
}

.education__item {
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .education__item {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .education__item {
    font-size: 0.4rem;
  }
}

.education__items--vuz, .education__items--up {
  position: relative;
  padding-left: 35px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .education__items--vuz, .education__items--up {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .education__items--vuz, .education__items--up {
    padding-left: 0px;
  }
}
.education__items--vuz::before, .education__items--up::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 5px;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
}
.education__items--vuz::before {
  background-image: url(./../images/icons/icon-education.svg);
}
@media screen and (max-width: 768px) {
  .education__items--vuz::before {
    background-image: none;
  }
}
.education__items--up::before {
  background-image: url(./../images/icons/icon-up.svg);
}
@media screen and (max-width: 768px) {
  .education__items--up::before {
    background-image: none;
  }
}

.education__read-more {
  text-align: center;
}

.education a {
  color: #d2ba85;
  transition: color 0.2s ease-in;
}
.education a:hover {
  color: #fff;
}

.publication__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .publication__item {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

.publication__inner {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  padding: 0 5px;
}

.recall--text .publication__inner {
  border-left: 1px solid #563d01;
  border-top: 1px solid #563d01;
  border-top-left-radius: 20px;
  padding: 0 10px 10px 15px;
}

.publication__book {
  text-align: center;
  margin-bottom: 30px;
}

.publication__purchase {
  margin: 30px 0 0 0;
}
@media screen and (max-width: 1024px) {
  .publication__purchase {
    margin-top: 0px;
  }
}

@media screen and (max-width: 1024px) {
  .publication__item img {
    max-width: 80%;
  }
}

.smi__row {
  display: flex;
  justify-content: center;
}

.smi__img {
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .smi__img {
    padding: 6px;
  }
}
@media screen and (max-width: 768px) {
  .smi__img {
    padding: 5px;
  }
}

.publication__read-more {
  text-align: center;
}

.publication__read-more a {
  color: #d2ba85;
  transition: color 0.2s ease-in;
}
.publication__read-more a:hover {
  color: #fff;
}

.publication__img {
  padding: 10px;
  text-align: center;
}

.text__author {
  margin-top: 20px;
}

.text__discription {
  font-style: italic;
  font-weight: bold;
  font-size: 0.7em;
}

.text__reviews {
  font-size: 0.7em;
}

.reviews {
  margin-top: -50px;
}

.review__row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0px 80px;
/*  margin-bottom: -50px;*/
}
@media screen and (max-width: 1024px) {
  .review__row {
    padding: 0px 40px;
  }
}
@media screen and (max-width: 768px) {
  .review__row {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    padding-bottom: 20px;
    justify-content: center;
  }
}

.reviews__author {
  text-align: right;
  font-size: 0.7em;
}

.ahtung {
  font-size: 0.5em;
  font-style: italic;
  margin-top: 50px;
}

.footer {
  background-color: #313131;
  color: #c1c1c1;
  padding: 30px 0;
  font-size: 0.5rem;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    font-size: 0.4rem;
  }
}
.footer p {
  font-size: 0.5rem;
}
@media screen and (max-width: 768px) {
  .footer p {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .footer p {
    font-size: 0.4rem;
  }
}

.footer__row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
@media screen and (max-width: 480px) {
  .footer__row {
    grid-template-columns: 1fr 1fr;
  }
}

.footer__info--tablet {
  font-size: 0.9em;
}
@media screen and (max-width: 480px) {
  .footer__info--tablet {
    display: none;
  }
}
.footer__info--phone {
  display: none;
}
@media screen and (max-width: 480px) {
  .footer__info--phone {
    display: block;
    margin-top: 20px;
    text-align: center;
  }
}

.footer__policy {
  text-align: center;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

footer a {
  color: #c1c1c1;
}

.footer-text__link {
  color: #fff;
}

.footer__link {
  text-align: right;
}

.aside--sticky {
  position: sticky;
  top: 60px;
  text-align: center;
  font-size: 0.4rem;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .aside--sticky {
    top: 36px;
  }
}
@media screen and (max-width: 768px) {
  .aside--sticky {
    top: 29px;
  }
}

.aside__row {
  display: flex;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1024px) {
  .aside__row {
    display: block;
  }
}

.aside__link {
  background-color: #313131;
  padding: 15px;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 1024px) {
  .aside__link {
    padding: 5px;
    border-radius: 0 0 10px 10px;
  }
}

@media screen and (max-width: 1024px) {
  .aside__inner {
    padding: 5px;
  }
}

.goto {
  padding-top: 50px;
}
@media screen and (max-width: 1024px) {
  .goto {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .goto {
    padding-top: 80px;
  }
}

.excerpt .publication__purchase {
  margin-bottom: 50px;
}

.reception__row,
.choice__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.reception--inners {
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .reception--inners {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .reception--inners {
    font-size: 0.4rem;
  }
}

.consultation,
.reception,
.choice {
  text-align: center;
}

.column__blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .column__blog {
    grid-template-columns: 1fr;
  }
}

.column__blog a {
  color: #563d01;
}
.column__blog a:hover, .column__blog a:target, .column__blog a:active {
  color: #d2ba85;
}

.column__blog img {
  float: left;
  margin: 0 20px 10px 0;
  height: 200px;
}

/* Nav Icon */
.nav-icon-btn {
  --time: 0.1s;
  --width: 40px;
  --height: 30px;
  --line-height: 1px;
  --line-margin: 2;
  --color: #fff;
  height: var(--height);
  width: var(--width);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  top: calc(var(--line-height) * -8);
}

.nav-icon::after {
  top: calc(var(--line-height) * 8);
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

.modal-windows {
  padding: 0;
}

.modal a {
  color: #563d01;
}

.modal:before {
  content: "";
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.modal:target:before {
  display: block;
}

.modal__dialog {
  background: linear-gradient(#fff 0%, #ede3d9 100%);
  margin-left: -350px;
  position: fixed;
  left: 50%;
  z-index: 11;
  width: 700px;
  height: 90vh;
  transform: translate(0, -500%);
  -webkit-transform: translate(0, -500%);
  -ms-transform: translate(0, -500%);
  transition: transform 0.5s ease-out;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  -moz-transition: -moz-transform 0.5s ease-out;
  -o-transition: -o-transform 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .modal__dialog {
    margin-left: -200px;
    width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .modal__dialog {
    margin-left: -150px;
    width: 300px;
  }
}

.modal:target .modal__dialog {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  top: 5%;
}

.modal__body {
  padding: 20px;
  height: 90%;
  overflow-y: auto;
}

.modal__header {
  padding: 10px 20px;
  height: 10%;
  border-bottom: #c1c1c1 solid 1px;
}

.btn__close {
  color: #563d01;
  font-size: 30px;
  text-decoration: none;
  position: absolute;
  right: 15px;
  top: 0;
}

.btn__close:hover {
  color: #c1c1c1;
}

#close {
  display: none;
}

.gallery__row {
  display: flex;
  justify-content: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2000px);
    @media screen and (max-width: 768px) {
      transform: translateX(-1500px);
    }
    @media screen and (max-width: 480px) {
      transform: translateX(-1000px);
    }
  }
}
.gallery__line {
  background: #fff;
  height: 200px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 1310px;
}
@media screen and (max-width: 768px) {
  .gallery__line {
    height: 150px;
    width: 800px;
  }
}
@media screen and (max-width: 480px) {
  .gallery__line {
    height: 100px;
    width: 500px;
  }
}
.gallery__line::before, .gallery__line::after {
  content: "";
  height: 200px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .gallery__line::before, .gallery__line::after {
    height: 150px;
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .gallery__line::before, .gallery__line::after {
    height: 100px;
    width: 100px;
  }
}
.gallery__line::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.gallery__line::before {
  left: 0;
  top: 0;
}
.gallery__line .gallery__track {
  animation: scroll 80s linear infinite;
  display: flex;
  width: 4000px;
}
@media screen and (max-width: 768px) {
  .gallery__line .gallery__track {
    width: 3000px;
  }
}
@media screen and (max-width: 480px) {
  .gallery__line .gallery__track {
    width: 2000px;
  }
}
.gallery__line .gallery__item {
  height: 200px;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .gallery__line .gallery__item {
    height: 150px;
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .gallery__line .gallery__item {
    height: 100px;
    width: 100px;
  }
}

.section--light .gallery__line::before, .section--light .gallery__line::after {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.section--dark .gallery__line::before, .section--dark .gallery__line::after {
  background: linear-gradient(to right, rgb(237, 227, 217) 0%, rgba(237, 227, 217, 0) 100%);
}

.carousel > input[type=radio]:nth-child(10):checked ~ .carousel__next > label:nth-child(1), .carousel > input[type=radio]:nth-child(10):checked ~ .carousel__prev > label:nth-child(9), .carousel > input[type=radio]:nth-child(9):checked ~ .carousel__next > label:nth-child(10), .carousel > input[type=radio]:nth-child(9):checked ~ .carousel__prev > label:nth-child(8), .carousel > input[type=radio]:nth-child(8):checked ~ .carousel__next > label:nth-child(9), .carousel > input[type=radio]:nth-child(8):checked ~ .carousel__prev > label:nth-child(7), .carousel > input[type=radio]:nth-child(7):checked ~ .carousel__next > label:nth-child(8), .carousel > input[type=radio]:nth-child(7):checked ~ .carousel__prev > label:nth-child(6), .carousel > input[type=radio]:nth-child(6):checked ~ .carousel__next > label:nth-child(7), .carousel > input[type=radio]:nth-child(6):checked ~ .carousel__prev > label:nth-child(5), .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__next > label:nth-child(6), .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__prev > label:nth-child(4), .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__next > label:nth-child(5), .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__prev > label:nth-child(3), .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__next > label:nth-child(4), .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__prev > label:nth-child(2), .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__next > label:nth-child(3), .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__prev > label:nth-child(1), .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__next > label:nth-child(2), .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__prev > label:nth-child(10) {
  opacity: 1 !important;
  z-index: 3;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.carousel__container {
  width: 900px;
  min-width: 900px;
  margin: 50px auto;
}
@media screen and (max-width: 1024px) {
  .carousel__container {
    width: 700px;
    min-width: 700px;
  }
}
@media screen and (max-width: 768px) {
  .carousel__container {
    width: 400px;
    min-width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .carousel__container {
    width: 300px;
    min-width: 300px;
  }
}

.carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.carousel > input[type=radio] {
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
}
.carousel > input[type=radio]:checked ~ .carousel__items .carousel__item,
.carousel > input[type=radio]:checked ~ .carousel__prev > label,
.carousel > input[type=radio]:checked ~ .carousel__next > label {
  opacity: 0;
}
.carousel > input[type=radio]:nth-child(1):checked ~ .carousel__items .carousel__item:nth-child(1) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(1):checked ~ .carousel__nav > label:nth-child(1) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(2):checked ~ .carousel__items .carousel__item:nth-child(2) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(2):checked ~ .carousel__nav > label:nth-child(2) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(3):checked ~ .carousel__items .carousel__item:nth-child(3) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(3):checked ~ .carousel__nav > label:nth-child(3) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(4):checked ~ .carousel__items .carousel__item:nth-child(4) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(4):checked ~ .carousel__nav > label:nth-child(4) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(5):checked ~ .carousel__items .carousel__item:nth-child(5) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(5):checked ~ .carousel__nav > label:nth-child(5) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(6):checked ~ .carousel__items .carousel__item:nth-child(6) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(6):checked ~ .carousel__nav > label:nth-child(6) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(7):checked ~ .carousel__items .carousel__item:nth-child(7) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(7):checked ~ .carousel__nav > label:nth-child(7) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(8):checked ~ .carousel__items .carousel__item:nth-child(8) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(8):checked ~ .carousel__nav > label:nth-child(8) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(9):checked ~ .carousel__items .carousel__item:nth-child(9) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(9):checked ~ .carousel__nav > label:nth-child(9) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(10):checked ~ .carousel__items .carousel__item:nth-child(10) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(10):checked ~ .carousel__nav > label:nth-child(10) {
  background: #563d01;
  cursor: default;
  pointer-events: none;
}
.carousel__items {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  height: 600px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .carousel__items {
    height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .carousel__items {
    height: 280px;
  }
}
@media screen and (max-width: 480px) {
  .carousel__items {
    height: 220px;
  }
}
.carousel__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 2s;
  -webkit-transition: opacity 2s;
}
.carousel__item img {
  width: 100%;
  vertical-align: middle;
}
.carousel__prev > label, .carousel__next > label {
  border: 1px solid #563d01;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 8%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  opacity: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .carousel__prev > label, .carousel__next > label {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 480px) {
  .carousel__prev > label, .carousel__next > label {
    width: 20px;
    height: 20px;
  }
}
.carousel__prev > label:hover, .carousel__prev > label:focus, .carousel__next > label:hover, .carousel__next > label:focus {
  opacity: 0.5 !important;
}
.carousel__prev > label:before, .carousel__prev > label:after, .carousel__next > label:before, .carousel__next > label:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
}
.carousel__prev > label:before, .carousel__next > label:before {
  background: linear-gradient(to top, #563d01 0%, #563d01 10%, rgba(51, 51, 51, 0) 10%), linear-gradient(to left, #563d01 0%, #563d01 10%, rgba(51, 51, 51, 0) 10%);
  width: 60%;
  height: 60%;
  top: 20%;
}
.carousel__prev > label {
  left: 3%;
}
.carousel__prev > label:before {
  left: 35%;
  top: 20%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.carousel__next > label {
  right: 3%;
}
.carousel__next > label:before {
  left: 10%;
  transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
}
.carousel__nav {
  position: absolute;
  bottom: 5%;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .carousel__nav {
    bottom: 0%;
  }
}
.carousel__nav > label {
  border: 1px solid #563d01;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0.125%;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .carousel__nav > label {
    width: 15px;
    height: 15px;
    margin: 0;
  }
}

section {
  padding: 50px 0;
  background: linear-gradient(#fff 0%, #ede3d9 100%);
}
@media screen and (max-width: 1024px) {
  section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 30px 0;
  }
}

.section--light {
  background: #fff;
}
.section--dark {
  background: #ede3d9;
}
.section--none {
  background: none;
  padding: 0;
}

article {
  font-size: 0.8rem;
  /*text-align: justify;*/
}
@media screen and (max-width: 1024px) {
  article {
    padding: 50px 0;
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  article {
    padding: 30px 0;
    font-size: 0.4rem;
  }
}

.column__count--excerpt {
  -moz-column-count: 3;
       column-count: 3;
}
@media screen and (max-width: 1024px) {
  .column__count--excerpt {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 768px) {
  .column__count--excerpt {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.column__count--blog {
  -moz-column-count: 2;
       column-count: 2;
}
@media screen and (max-width: 768px) {
  .column__count--blog {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.column__inner {
  padding-left: 10px;
  border-left: 1px #563d01 solid;
  margin-bottom: 50px;
}

.column__intro {
  font-style: italic;
}

.column__img {
  text-align: center;
}

.mb-50 {
	margin-bottom: 100px;
}

.text-content {
	text-align: left;
	text-indent: 1.5em;
}

summary {
  font-family: "Playfair Display SC", serif;
  color: #563d01;
  font-size: 1.4rem;
  padding-bottom: 50px;
  text-shadow: 0px 0px 50px #563d01;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  summary {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  summary {
    font-size: 1rem;
  }
  
}/*# sourceMappingURL=main.css.map */

.carousel-3d {
    padding: 20px;
    -webkit-perspective: 500px;
    perspective: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.carousel-3d > * {
    flex: 0 0 auto;
}
.carousel-3d figure {
    margin: 0;
    width: 50%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
.carousel-3d figure img,
.carousel-3d figure div {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}
.carousel-3d figure img {
    user-select: none;
}
.carousel-3d figure div:not(:first-of-type),
.carousel-3d figure img:not(:first-of-type) {
    position: absolute;
    left: 0;
    top: 0;
}
.carousel-3d nav {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}
.carousel-3d nav button {
    flex: 0 0 auto;
    margin: 0 5px;
    cursor: pointer;
    /*color: #337AB7;
    background: #BFE2FF;
    border: 1px solid #337AB7;*/
    padding: 5px 10px;
    font-weight: bold;
    transition: all .3s ease;
}
.carousel-3d nav button:hover {
    color: #FFF;
    /*background: #337AB7;*/
}

/*********************************/

.new-link {
	text-align: center;
	font-weight: bold;
	color: red;
	margin-top: 0px;
  padding: 10px;
}
.site-link {
	color: black;
}
.tap-tap {
	background-color: white;
}
