/* default settings */
.c-form {
  text-align: left;
}
.c-form dl {
  margin-bottom: 1.25rem;
  display: block;
  width: 100%;
}
.c-form dl dt {
  margin-bottom: 0.3125rem;
}
.c-form dl dt span {
  color: #ff0909;
}
.c-form input,
.c-form textarea,
.c-form .file-control,
.c-form select {
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
  background-color: #fff;
  border: 1px solid #a7a7a7;
  padding: 0.3125rem 0.875rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.875rem;
  line-height: 1.875rem;
  outline: none;
}
.c-form input::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder,
.c-form .file-control::-webkit-input-placeholder,
.c-form select::-webkit-input-placeholder {
  color: #aeabab;
}
.c-form input::-moz-placeholder,
.c-form textarea::-moz-placeholder,
.c-form .file-control::-moz-placeholder,
.c-form select::-moz-placeholder {
  color: #aeabab;
}
.c-form input:-ms-input-placeholder,
.c-form textarea:-ms-input-placeholder,
.c-form .file-control:-ms-input-placeholder,
.c-form select:-ms-input-placeholder {
  color: #aeabab;
}
.c-form input::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder,
.c-form .file-control::-ms-input-placeholder,
.c-form select::-ms-input-placeholder {
  color: #aeabab;
}
.c-form input::placeholder,
.c-form textarea::placeholder,
.c-form .file-control::placeholder,
.c-form select::placeholder {
  color: #aeabab;
}
.c-form select {
  width: 12.625rem;
  height: 2.1875rem;
}
.c-form input {
  width: 100%;
  height: 2.1875rem;
}
.c-form textarea {
  display: block;
  width: 100%;
  height: 11.25rem;
  padding: 0.625rem 0.875rem;
  resize: none;
}
.c-form label.error {
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-style: italic;
  color: red;
}
.c-form .file-control {
  font-family: SVN-GilroySemiBold, sans-serif;
  font-style: normal;
  display: block;
  border-radius: 0;
  cursor: pointer;
  padding: 0.625rem 1.25rem 1.0625rem;
  text-align: center;
}
.c-form .file-control small {
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
  color: #aeabab;
  font-size: 0.75rem;
  line-height: 0.8125rem;
  display: block;
}
.c-form .btn-send {
  background-color: #10623a;
  font-family: SVN-GilroyBold, sans-serif;
  font-style: normal;
  border-radius: 0.625rem;
  margin-left: auto;
  margin-top: 1.5625rem;
  padding-top: 0.1875rem;
  width: 8.9375rem;
  height: 2.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.875rem;
  font-size: 1.25rem;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  color: #fff;
}
.c-form .btn-send:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .c-form input,
  .c-form textarea,
  .c-form .file-control {
    padding: 0.3125rem 0.875rem;
  }
  .c-form textarea {
    height: 6.25rem;
  }
  .c-form .file-control {
    height: auto;
  }
  .c-form .c-btn {
    margin-top: 0.625rem;
  }
}

.c-accordion {
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
}
.c-accordion__btn {
  border: 1px solid #707070;
  position: relative;
  padding: 0.8125rem 1.875rem 0.8125rem 6.875rem;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #10623a;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.c-accordion__btn:after {
  content: "";
  position: absolute;
  top: -0.3125rem;
  left: -0.3125rem;
  width: 6.125rem;
  height: 100%;
  background: url(../img/common/icon-toggle.png) no-repeat center center/100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.c-accordion__main {
  padding: 1.0625rem 0.9375rem 0;
  display: none;
}
.c-accordion__main ul li {
  list-style: disc inside;
}
.c-accordion.is-active .c-accordion__btn {
  background-color: #10623a;
  color: #fff;
}
.c-accordion.is-active .c-accordion__btn:after {
  background-image: url(../img/common/icon-toggle-on.png);
}
.c-accordion.is-active .c-accordion__main {
  display: block;
  font-size: 16px;
  line-height: 22px;
}
.c-accordion.is-active .c-accordion__main > p {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .c-accordion {
    font-size: 1.1875rem;
  }
}
@media (max-width: 767px) {
  .c-accordion__btn {
    padding: 0.3125rem 0.9375rem 0.3125rem 4.375rem;
    font-size: 1.0625rem;
  }
  .c-accordion__btn:after {
    top: -0.3125rem;
    left: -0.3125rem;
    width: 3.75rem;
  }
  .c-accordion.is-active .c-accordion__main {
    padding: 16px 0 0;
  }
  .c-accordion.is-active .c-accordion__main > p {
    padding-bottom: 0;
  }
}

.news-related .c-card .photo a {
  padding-top: calc(145 / 267 * 100%);
  display: block;
}
.news-related .c-card .group .title {
  margin-top: 1rem;
  font-size: 1rem;
}

.c-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-card {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: block;
  text-align: left;
}
.c-card .photo {
  display: block;
  position: relative;
  padding-top: calc(145 / 257 * 100%);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  overflow: hidden;
}
.c-card .photo:hover {
  opacity: 0.7;
}
.c-card .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-card .group {
  position: relative;
}
.c-card .group .title {
  font-family: SVN-GilroySemiBold, sans-serif;
  font-style: normal;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin-top: 1.875rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #10623a;
  margin-top: 8px;
}
.c-card .group .title:hover {
  opacity: 0.8;
}
.c-card .group .date {
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
  margin-top: 0.9375rem;
}
.c-card .group .extra {
  font-size: 0.875rem;
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .c-card .group .title {
    font-size: 0.875rem;
  }
  .c-card .group .date {
    font-size: 0.875rem;
  }
}

.bg-tree-small:before {
  background-image: url(../img/index/second_img1.jpg);
}

.bg-hand:before {
  background-image: url(../img/index/second_img2.jpg);
}

.bg-tree-big:before {
  background-image: url(../img/index/second_img3.jpg);
}

.link-more a {
  background: url(../img/news/icon-viewmore.png) no-repeat top 5px right/0.75rem;
  font-family: SVN-GilroySemiBold, sans-serif;
  font-style: normal;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  display: inline-block;
  padding-right: 1rem;
  font-size: 1rem;
  line-height: 1;
  color: #807653;
}
.link-more a:hover {
  opacity: 0.8;
}

.keyvisual {
  position: relative;
  color: #fff;
}
.keyvisual .slick-list {
  overflow: inherit;
}
.keyvisual .item {
  padding-top: calc(500 / 1366 * 100%);
  position: relative;
  height: auto !important;
}
.keyvisual .item img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
}
.keyvisual .slick-arrow {
  border-radius: 0;
  width: 2.25rem;
  height: 4.375rem;
  margin-top: -2.1875rem;
  background-image: url(../img/common/arrow-slider.png);
}
.keyvisual .slick-arrow:hover {
  background-image: url(../img/common/arrow-slider-on.png);
}
@media (max-width: 767px) {
  .keyvisual {
    height: auto;
  }
  .keyvisual .item {
    height: 21.875rem;
    max-height: inherit;
  }
  .keyvisual .slick-arrow {
    width: 1.25rem;
    height: 2.5rem;
    margin-top: -1.25rem;
  }
}

.first {
  padding: 4rem 0 5rem;
  position: relative;
}
.first .item {
  width: 18.75rem;
  position: relative;
}
.first .item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin-left: 2.1875rem;
  border-right: 1px solid #707070;
  opacity: 0.5;
}
.first .item .photo {
  -webkit-box-shadow: 0px 0px 5.82px 0.18px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 5.82px 0.18px rgba(0, 0, 0, 0.16);
}
.first .item .title {
  font-family: SVN-GilroyBold, sans-serif;
  font-style: normal;
  margin: 18px 0;
  text-align: center;
  font-size: 1.25rem;
  color: #807653;
}
.first .item .title:hover {
  color: #10623a;
}
.first .item .except {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .first {
    /* padding: 2.5rem 0 4.375rem; */
    padding: 40px 0;
  }
  .first .item {
    width: 100%;
  }
  .first .item:not(:last-child) {
    margin-bottom: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .first .item:not(:last-child):after {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    margin-left: 0;
    border-top: 1px solid #707070;
  }
}

.about {
  background: url(../img/index/first_deco.png) no-repeat center top/85.375rem;
  padding-bottom: 6.375rem;
}
.about .txt {
  margin: 1.5625rem 0 1.375rem;
}
@media (min-width: 768px) {
  .about .photo {
    width: 25.125rem;
  }
  .about .group {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 35.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .about {
    background-size: cover;
    padding-bottom: 3.75rem;
  }
  .about .group {
    margin-top: 1.875rem;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .about .txt {
    margin: 0.75rem 0 0.9375rem;
  }
}

.video {
  /* background: url(../img/index/second_img.png) no-repeat center center/cover; */
  position: relative;
  cursor: pointer;
  /* height: 37.5rem; */
  overflow: hidden;
  padding-top: calc(600 / 1440 * 100%);
}
.video.is-active::after {
  opacity: 0;
}
.video.is-active .video-wrapper {
  opacity: 1;
}
.video img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 6.5625rem;
  height: 6.5625rem;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  background: url(../img/common/icon-play.png) no-repeat center center/99.9% 99.9%;
}
.video .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  padding-bottom: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  height: 100%;
}
.video .video-wrapper iframe {
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .video {
    height: 0;
    padding-bottom: 56.25%;
  }
  .video::after {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.whychoose {
  background: url(../img/index/third_bg.png) no-repeat center top/85.375rem;
  padding: 80px 0;
}
.whychoose .c-accordion + .c-accordion {
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .whychoose .c-title {
    font-size: 1.875rem;
    margin-bottom: 40px;
  }
  .whychoose .photo {
    width: calc(50% - 40px);
  }
  .whychoose .group {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .whychoose {
    padding: 3.75rem 0 3.125rem;
  }
  .whychoose .txt {
    margin: 0.75rem 0 0.9375rem;
  }
  .whychoose .group {
    margin-top: 2.5rem;
  }
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}
.gallery__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* flex-direction: column; */
  gap: 20px;
  width: 100%;
}
.gallery__row .photo {
  width: calc(25% - 10px);
}
.gallery__row .photo .inner {
  position: relative;
  padding-top: 100%;
  width: 100%;
  overflow: hidden;
}
.gallery__row .photo .inner img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__row:nth-child(even) {
  flex-direction: row-reverse;
}
.gallery__row .photo:first-child {
  width: calc(50% - 10px);
  flex-shrink: 0;
}
.gallery__row .photo:first-child .inner {
  padding-top: 0;
  height: 100%;
}
@media (max-width: 767px) {
  .gallery {
    margin-top: 40px;
    gap: 10px;
  }
  .gallery__row {
    gap: 10px;
    flex-wrap: wrap;
  }
  .gallery__row .photo {
    width: calc(50% - 5px);
  }
  .gallery__row .photo:first-child {
    width: 100%;
  }
  .gallery__row .photo:first-child .inner {
    padding-top: 50%;
    height: auto;
  }
}
.map .wrap {
  height: 28.625rem;
}
.map .wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 767px) {
  .map .wrap {
    height: 25rem;
    margin: 0;
  }
}

.news {
  background: url(../img/index/news_deco.png) no-repeat center top/85.375rem;
  padding: 6.25rem 0 6.875rem;
}
.news .c-title {
  margin-bottom: 1.875rem;
}
.news .txt {
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
}
.news .slider {
  position: static;
  padding: 0.625rem;
}
.news .slider .slick-list {
  overflow: inherit;
}
.news .slider .slick-arrow {
  top: auto;
  margin-top: 0;
  bottom: 0;
  left: 0;
}
.news .slider .slick-arrow.slick-prev {
  left: 0;
}
.news .slider .slick-arrow.slick-next {
  left: 3.375rem;
}
.news .c-card {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5.82px 0.18px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 5.82px 0.18px rgba(0, 0, 0, 0.16);
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
  padding: 1rem;
}
.news .c-card .date {
  margin-top: 0.9375rem;
  color: #10623a;
}
.news .c-card .title {
  font-family: SVN-GilroySemiBold, sans-serif;
  font-style: normal;
  margin-top: 0;
}
.news .c-card .view-more {
  color: #807653;
}
.news .c-card .view-more:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .news .col-left {
    width: 20.625rem;
    padding-top: 1.4375rem;
  }
  .news .col-right {
    margin-right: -0.625rem;
    width: 41.625rem;
    overflow: hidden;
  }
  .news .c-card {
    width: 18.75rem;
  }
  .news .c-card .group .date {
    margin-top: 1.25rem;
    font-size: 13px;
  }
  .news .c-card .group .title {
    margin-bottom: 0.9375rem;
    margin-top: 8px;
    min-height: 3.8125rem;
  }
  .news .c-card ~ .c-card {
    margin-left: 2.8125rem;
  }
}
@media (max-width: 767px) {
  .news {
    /* padding: 3.75rem 0 5rem; */
    padding: 40px 0;
  }
  .news .col-right {
    margin-top: 1.875rem;
    padding-bottom: 3.125rem;
    width: 100%;
  }
  .news .c-card {
    margin: 0 0.9375rem;
    width: 20.9375rem;
    padding: 0.625rem;
  }
  .news .c-card .group .title {
    min-height: 2.75rem;
    margin-bottom: 0.625rem;
  }
  .news .slider {
    margin: 0 -0.625rem;
  }
  .news .slider .slick-arrow.slick-prev {
    left: 50%;
    margin-left: -2.5rem;
  }
  .news .slider .slick-arrow.slick-next {
    left: auto;
    right: 50%;
    margin-right: -2.5rem;
  }
}
