:root {
  --white-main: #fff;
  --black-main: #000;
  --gray-main: #3c3c3c;
}
:root {
  --font-family: 'Merriweather', serif;
  --second-family: 'Open Sans', sans-serif;
}
* {
  padding: 0;
  margin: 0;
  border: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
html {
  background-color: #fbf3e7;
}
body * {
  font-family: 'Merriweather', serif;
}
body.sgk-noscroll {
  overflow: hidden;
}
a,
a:link,
a:visited {
  text-decoration: none;
  display: inline-block;
}
a,
a:hover,
a:focus,
a:active {
  outline: none;
  text-decoration: none;
}
aside,
nav,
footer,
header,
section,
main {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
}
img {
  display: block;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
input {
  appearance: none;
}
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
}
input::-ms-clear {
  display: none;
}
button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
  border: none;
}
input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
a,
input,
button,
svg,
path,
span,
i,
em,
b,
strong {
  transition: 0.3s;
}
p,
a,
span,
input,
textarea {
  font-family: 'Merriweather', serif;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Merriweather', serif;
}
input.sgk-btn,
button.sgk-btn {
  cursor: pointer;
}
textarea {
  resize: none;
}
ul,
ol {
  margin: 0;
  padding-left: 20px;
  list-style-position: outside;
}
ul li {
  list-style: disc;
}
ol li {
  list-style: decimal;
}
.sgk-row {
  display: flex;
  flex-wrap: wrap;
}
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
  flex: 0 0 100%;
}
@media (min-width: 576px) {
  .col-11 {
    flex: 0 0 calc(100% / 12 * 11);
  }
  .col-10 {
    flex: 0 0 calc(100% / 12 * 10);
  }
  .col-9 {
    flex: 0 0 calc(100% / 12 * 9);
  }
  .col-8 {
    flex: 0 0 calc(100% / 12 * 8);
  }
  .col-7 {
    flex: 0 0 calc(100% / 12 * 7);
  }
  .col-6 {
    flex: 0 0 calc(100% / 12 * 6);
  }
  .col-5 {
    flex: 0 0 calc(100% / 12 * 5);
  }
  .col-4 {
    flex: 0 0 calc(100% / 12 * 4);
  }
  .col-3 {
    flex: 0 0 calc(100% / 12 * 3);
  }
  .col-2 {
    flex: 0 0 calc(100% / 12 * 2);
  }
  .col-1 {
    flex: 0 0 calc(100% / 12);
  }
  body.search .sgk-blogGrid .sgk-row .col-4 {
    flex: 0 0 calc(32.133333%);
  }
}
.sgk-container {
  width: 100%;
  max-width: 1130px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
.sgk-container-fluid {
  width: 100%;
  padding: 0 15px;
  position: relative;
}
.sgk-clearfix::after {
  content: '';
  clear: both;
  display: table;
}
.sgk-btn,
a.sgk-btn,
button.sgk-btn,
input.sgk-btn,
.sgk-btn-reverse,
a.sgk-btn-reverse,
button.sgk-btn-reverse,
input.sgk-btn-reverse,
.sgk-btn-transparent,
a.sgk-btn-transparent,
button.sgk-btn-transparent,
input.sgk-btn-transparent {
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 10px 25px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  max-width: max-content;
}
.sgk-btn,
a.sgk-btn,
input.sgk-btn,
button.sgk-btn {
  background-color: #3c3c3c;
  color: #fff;
  border-color: #3c3c3c;
}
.sgk-btn:hover,
a.sgk-btn:hover,
input.sgk-btn:hover,
button.sgk-btn:hover,
.sgk-btn:focus,
a.sgk-btn:focus,
input.sgk-btn:focus,
button.sgk-btn:focus,
.sgk-btn:active,
a.sgk-btn:active,
input.sgk-btn:active,
button.sgk-btn:active {
  background-color: #fbf3e7;
  color: #3c3c3c;
}
.sgk-btn-reverse,
a.sgk-btn-reverse,
input.sgk-btn-reverse,
button.sgk-btn-reverse {
  background-color: #fff;
  color: #000;
}
.sgk-btn-reverse:hover,
a.sgk-btn-reverse:hover,
input.sgk-btn-reverse:hover,
button.sgk-btn-reverse:hover,
.sgk-btn-reverse:focus,
a.sgk-btn-reverse:focus,
input.sgk-btn-reverse:focus,
button.sgk-btn-reverse:focus,
.sgk-btn-reverse:active,
a.sgk-btn-reverse:active,
input.sgk-btn-reverse:active,
button.sgk-btn-reverse:active {
  background-color: #000;
  color: #fff;
}
.sgk-btn-transparent,
a.sgk-btn-transparent,
button.sgk-btn-transparent,
input.sgk-btn-transparent {
  background-color: transparent;
  color: #000;
}
.sgk-btn-transparent:hover,
a.sgk-btn-transparent:hover,
button.sgk-btn-transparent:hover,
input.sgk-btn-transparent:hover,
.sgk-btn-transparent:focus,
a.sgk-btn-transparent:focus,
button.sgk-btn-transparent:focus,
input.sgk-btn-transparent:focus,
.sgk-btn-transparent:active,
a.sgk-btn-transparent:active,
button.sgk-btn-transparent:active,
input.sgk-btn-transparent:active {
  background-color: #000;
  color: #fff;
}
.sgk-nothingFound {
  text-align: center;
}
.sgk-nothingFoundInfo h1 {
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.sgk-nothingFoundInfo p {
  margin-bottom: 30px;
}
.sgk-searchForm {
  margin-bottom: 30px;
}
.sgk-searchForm input {
  border-radius: 3px;
  border: 1px solid #eee;
  padding: 10px;
  margin-bottom: 40px;
}
.sgk-search {
  margin-top: 40px;
  margin-bottom: 40px;
}
.sgk-search span {
  font-weight: 600;
}
body.search .sgk-blogGrid .sgk-row {
  gap: 20px;
}
.sgk-blogGridItem__img {
  margin-bottom: 15px;
}
.sgk-blogGridItem__info > div {
  margin-bottom: 5px;
}
.sgk-blogGridItem__title a {
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 22px;
}
.sgk-blogGridItem__desc {
  line-height: 1.8;
  font-size: 13px;
  margin-bottom: 15px !important;
}
.sgk-blogGridItem__date {
  font-size: 12px;
}
.sgk-404Info,
.sgk-nothingFound {
  padding: 130px 0;
  min-height: 400px;
  display: flex;
  text-align: center;
  margin-bottom: 70px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  align-content: center;
  flex-direction: column;
}
.sgk-404Info h1 {
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 200px;
}
.wpcf7-spinner {
  display: none;
}
.wpcf7-not-valid-tip {
  position: absolute;
  top: -30px;
  font-size: 12px;
  width: 280px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  max-width: 280px;
  margin: 10px auto;
  background: #fff;
  font-size: 14px;
}
.wpcf7 p {
  margin-bottom: 0;
}
.sgk-page h1,
.sgk-page h2,
.sgk-page h3,
.sgk-page h4,
.sgk-page h5,
.sgk-page h6 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #fff;
}
.sgk-page h1 {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}
.sgk-page h2 {
  font-size: 32px;
}
.sgk-page h3 {
  font-size: 26px;
}
.sgk-page h4 {
  font-size: 20px;
}
.sgk-page h5 {
  font-size: 18px;
}
.sgk-page h6 {
  font-size: 14px;
}
.sgk-page p {
  margin-bottom: 15px;
  line-height: 1.8;
}
.sgk-page hr {
  background-color: rgba(0, 0, 0, 0.5);
}
.sgk-page ul,
.sgk-page ol {
  margin-left: 35px;
  margin-bottom: 20px;
}
.sgk-page ul li,
.sgk-page ol li {
  line-height: 1.8;
}
.sgk-page ul li {
  list-style: disc;
}
.sgk-page ol li {
  list-style: auto;
}
.sgk-page p,
.sgk-page a,
.sgk-page li,
.sgk-page span,
.sgk-page b,
.sgk-page strong,
.sgk-page i,
.sgk-page em {
  font-family: 'Open Sans', sans-serif;
}
.sgk-page a {
  text-decoration: underline;
}
.wpforms-is-hcaptcha {
  margin-top: 10px;
  margin-bottom: 10px;
}
.grecaptcha-badge {
  display: none;
}
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
}
.slick-prev:hover,
.slick-next:hover {
  opacity: 0.3;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #3c3c3c;
}
::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 10px;
  border: 3px solid #3c3c3c;
}
body {
  scrollbar-width: thin;
  scrollbar-color: #000 #3c3c3c;
}
.sgk-general {
  margin-bottom: 50px;
}
.sgk-general h2 {
  font-size: 32px;
}
.sgk-general h3 {
  font-size: 28px;
}
.sgk-general h4 {
  font-size: 26px;
}
.sgk-general h5 {
  font-size: 24px;
}
.sgk-general h6 {
  font-size: 12px;
}
.sgk-general h2,
.sgk-general h3,
.sgk-general h4,
.sgk-general h5,
.sgk-general h6 {
  margin-bottom: 20px;
}
.sgk-general p {
  margin-bottom: 15px;
}
.sgk-general ul,
.sgk-general ol {
  padding-left: 20px;
  margin-bottom: 15px;
}
.sgk-general ol li {
  list-style: decimal;
}
.sgk-general ul li {
  list-style: disc;
}
.sgk-container .sgk-container-fluid,
.sgk-container-fluid .sgk-container-fluid,
.sgk-container .sgk-container,
.sgk-container-fluid .sgk-container {
  padding-left: 0;
  padding-right: 0;
}
.sgk-main {
  padding-top: 20px;
  position: relative;
  z-index: 2;
}
.sgk-bg-white {
  background-color: #fff;
}
.sgk-text-align-center {
  text-align: center;
}
.sgk-color-white {
  color: #fff;
}
.sgk-border-full {
  border: 1px solid #3c3c3c !important;
}
.sgk-open-form,
.sgk-open-contact {
  cursor: pointer;
}
body * {
  color: #fff;
}
.sgk-header {
  color: #fff;
  position: relative;
  z-index: 9001;
  transition: 0.3s;
}
.sgk-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-image: url(../img/full.png);
  background-repeat: repeat;
  background-size: contain;
  box-shadow: 0px 0px 2px #fff;
}
.sgk-header .sgk-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.sgk-header .sgk-header-logo {
  height: 108px;
  margin-right: 30px;
}
.sgk-header .sgk-header-menu ul {
  display: flex;
  gap: 25px;
  padding: 0;
}
.sgk-header .sgk-header-menu ul li {
  list-style: none;
}
.sgk-header .sgk-header-menu ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: 0.3s;
}
.sgk-header .sgk-header-menu ul li a:hover {
  text-decoration: underline;
}
.sgk-header .sgk-header-right {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}
.sgk-header .sgk-header-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}
.sgk-header .sgk-header-socials a img {
  height: 22px;
}
.sgk-header .sgk-header-btn {
  border: 1px solid #fff;
  padding: 8px 18px;
  color: #fff;
  text-decoration: none;
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.sgk-header .sgk-header-lang {
  display: flex;
  gap: 15px;
}
.sgk-header .sgk-header-lang a {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  transition: 0.3s;
}
.sgk-header .sgk-header-lang a:hover,
.sgk-header .sgk-header-lang a.active {
  text-decoration: underline;
}
.sgk-header .sgk-burger {
  display: none;
  width: 26px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
}
.sgk-header .sgk-burger span {
  width: 100%;
  height: 3px;
  background: #fff;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.sgk-header .sgk-burger.sgk-open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.sgk-header .sgk-burger.sgk-open span:nth-child(2) {
  opacity: 0;
}
.sgk-header .sgk-burger.sgk-open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}
@media (max-width: 1090px) {
  .sgk-header .sgk-header-menu,
  .sgk-header .sgk-header-socials,
  .sgk-header .sgk-header-lang {
    display: none;
  }
  .sgk-header .sgk-header-right {
    gap: 14px;
  }
  .sgk-header .sgk-burger {
    display: flex;
  }
}
.sgk-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9000;
  padding: 40px 25px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-image: url(../img/full.png);
  background-repeat: repeat;
  background-size: contain;
  padding-top: 200px;
}
.sgk-mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 40px;
  padding: 0;
}
.sgk-mobile-menu nav ul li {
  list-style: none;
}
.sgk-mobile-menu nav ul li a {
  display: block;
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}
.sgk-mobile-menu .sgk-mobile-socials {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
.sgk-mobile-menu .sgk-mobile-socials a svg {
  height: 45px;
  width: 100%;
}
.sgk-mobile-menu .sgk-mobile-lang {
  display: flex;
  gap: 20px;
}
.sgk-mobile-menu .sgk-mobile-lang a {
  color: #fff;
  font-size: 28px;
}
.sgk-mobile-menu.sgk-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sgk-footer {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 8999;
}
.sgk-footer .sgk-footer-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: flex-start;
  gap: 20px;
}
.sgk-footer .sgk-footer-col * {
  color: #fff;
}
.sgk-footer .sgk-footer-col-text p {
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 8px;
  font-family: 'Open Sans', sans-serif;
}
.sgk-footer .sgk-footer-col-text p:last-child {
  margin-bottom: 0;
}
.sgk-footer .sgk-footer-menu-1 ul,
.sgk-footer .sgk-footer-menu-2 ul {
  padding: 0;
}
.sgk-footer .sgk-footer-menu-1 ul li,
.sgk-footer .sgk-footer-menu-2 ul li {
  list-style: none;
  margin-bottom: 14px;
}
.sgk-footer .sgk-footer-menu-1 ul li:last-child,
.sgk-footer .sgk-footer-menu-2 ul li:last-child {
  margin-bottom: 0;
}
.sgk-footer .sgk-footer-menu-1 li a,
.sgk-footer .sgk-footer-menu-2 li a {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-family: 'Merriweather', serif;
  transition: 0.3s;
}
.sgk-footer .sgk-footer-menu-1 li a:hover,
.sgk-footer .sgk-footer-menu-2 li a:hover {
  text-decoration: underline;
}
.sgk-footer .sgk-footer-menu-2 li * {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: 0.3s;
}
.sgk-footer .sgk-footer-menu-2 li *:hover {
  text-decoration: underline;
}
.sgk-footer .sgk-footer-socials {
  display: flex;
  gap: 15px;
}
@media (max-width: 1090px) {
  .sgk-footer .sgk-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .sgk-footer .sgk-footer-col-text {
    grid-column: 1 / 3;
  }
  .sgk-footer .sgk-footer-socials {
    grid-column: 1 / 3;
  }
}
.sgk-hero .sgk-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: block;
  position: relative;
  padding-bottom: 260px;
}
.sgk-hero .sgk-hero-inner::after {
  position: absolute;
  content: url('../img/feather.png');
  right: 0;
  bottom: -10px;
}
.sgk-hero .sgk-hero-inner .sgk-hero-title {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  font-family: 'Merriweather', serif;
}
.sgk-hero .sgk-hero-inner .sgk-hero-subtitle {
  color: #fff;
  font-family: 'Great Vibes', cursive;
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 38px;
  line-height: 1.4;
}
.sgk-hero .sgk-hero-inner .sgk-hero-quote {
  display: block;
  padding: 55px;
  width: 100%;
  margin: 0 auto 20px;
  background-color: #fbf3e7;
}
.sgk-hero .sgk-hero-inner .sgk-hero-quote .sgk-hero-quote-text {
  color: #000;
  max-width: 860px;
  margin: 0 auto 20px;
  font-family: 'Great Vibes', cursive;
  text-align: center;
  font-size: 42px;
  line-height: 1;
}
.sgk-hero .sgk-hero-inner .sgk-hero-quote .sgk-hero-quote-author {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  color: #000;
  font-family: 'Open Sans', sans-serif;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-title {
  font-weight: 700;
  font-size: 35px;
  color: #3c3c3c;
  margin-bottom: 38px;
  text-align: center;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 100px;
  margin-bottom: 70px;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item {
  display: block;
  margin: 0 auto;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item:hover .sgk-memorial-name {
  text-decoration: underline;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item .sgk-memorial-photo {
  margin-bottom: 10px;
  width: 300px;
  height: 410px;
  overflow: hidden;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item .sgk-memorial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item .sgk-memorial-name {
  font-weight: 700;
  font-size: 21px;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: 0.3s;
  font-family: 'Merriweather', serif;
  height: 55px;
  padding: 0 25px;
  text-align: center;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item .sgk-memorial-name::after {
  position: absolute;
  content: url('../img/arrow_right.svg');
  width: 24px;
  height: 24px;
  display: block;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item .sgk-memorial-age {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #000;
  font-family: 'Open Sans', sans-serif;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-more {
  margin-bottom: 40px;
}
.sgk-memorial .sgk-memorial-inner .sgk-memorial-more a {
  font-family: 'Open Sans', sans-serif;
  display: block;
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-align: center;
  color: #000;
}
.sgk-media .sgk-media-inner {
  padding-top: 120px;
  margin: 0 auto;
}
.sgk-media .sgk-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sgk-media .sgk-media-title {
  font-weight: 700;
  font-size: 35px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #3c3c3c;
}
.sgk-media .sgk-media-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  padding: 20px 30px;
  background: #fbf3e7;
  gap: 25px;
  transition: 0.3s;
}
.sgk-media .sgk-media-item:hover .sgk-media-text {
  text-decoration: underline;
}
.sgk-media .sgk-media-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5625;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 10px;
  transition: 0.3s;
}
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type='text'],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type='tel'],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type='email'],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column textarea,
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column select,
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column select option,
body .wpforms-container textarea.wpforms-field-medium {
  color: #3c3c3c;
}
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column textarea,
body .wpforms-container textarea.wpforms-field-medium {
  height: 75px;
}
.wpforms-is-hcaptcha {
  display: flex;
  justify-content: center;
}
div.wpforms-container div.wpforms-uploader {
  width: 100%;
  padding: 0;
}
div.wpforms-container div.wpforms-uploader .dz-message {
  font-size: 10px !important;
  line-height: 1 !important;
}
div.wpforms-container div.wpforms-uploader .dz-message svg {
  width: 20px !important;
  height: 20px !important;
  margin-bottom: 0 !important;
}
.modern-hint {
  display: none !important;
}
.sgk-main-form {
  padding: 40px 70px 75px;
}
.sgk-main-form .sgk-container {
  max-width: 790px;
  padding: 0;
}
.sgk-main-form .sgk-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
.sgk-main-form .sgk-formWrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sgk-main-form .sgk-form .sgk-title {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #3c3c3c;
  margin-bottom: 35px;
}
.sgk-main-form .sgk-form .sgk-row-form {
  display: flex;
  width: 100%;
  gap: 20px;
}
.sgk-main-form .sgk-form .sgk-input {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #3c3c3c;
  color: #000;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.sgk-main-form .sgk-form .sgk-input::placeholder {
  color: #000;
}
.sgk-main-form .sgk-form .sgk-text {
  height: 100px;
  resize: none;
  padding-bottom: 28px;
}
.sgk-main-form .sgk-form .sgk-text-wrap,
.sgk-main-form .sgk-form .sgk-btn-photo {
  width: 315px;
  position: relative;
  display: flex;
}
.sgk-main-form .sgk-form .sgk-counter {
  position: absolute;
  right: -15px;
  bottom: -5px;
  font-size: 12px;
  color: #3c3c3c;
  pointer-events: none;
}
.sgk-main-form .sgk-form .sgk-btn-photo {
  cursor: pointer;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100px;
}
.sgk-main-form .sgk-form .sgk-submit {
  display: block;
  margin: 0 auto;
}
.sgk-main-contact {
  padding: 40px 70px 40px;
}
.sgk-main-contact .sgk-container {
  max-width: 790px;
  padding: 0;
}
.sgk-main-contact .sgk-contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
.sgk-main-contact .sgk-contact-form .sgk-contactWrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sgk-main-contact .sgk-contact-form .sgk-title {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #3c3c3c;
  margin-bottom: 50px;
}
.sgk-main-contact .sgk-contact-form .sgk-row-form {
  display: flex;
  width: 100%;
  gap: 60px;
}
.sgk-main-contact .sgk-contact-form .sgk-input {
  width: 100%;
  padding: 13px 20px;
  border: none;
  border-bottom: 1px solid #3c3c3c;
  color: #000;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.sgk-main-contact .sgk-contact-form .sgk-input::placeholder {
  color: #000;
}
.sgk-main-contact .sgk-contact-form .sgk-text {
  height: 140px;
  resize: none;
  padding-bottom: 28px;
}
.sgk-main-contact .sgk-contact-form .sgk-text-wrap {
  width: 100%;
  position: relative;
  display: flex;
}
.sgk-main-contact .sgk-contact-form .sgk-counter {
  display: none;
}
.sgk-main-contact .sgk-contact-form .sgk-submit {
  display: block;
  margin: 0 auto;
}
.sgk-main-contact .sgk-contact-form .sgk-border-full {
  margin-top: 25px;
  height: 105px;
}
.sgk-main-contact .sgk-contact-form .sgk-file-btn {
  cursor: pointer;
  text-align: center;
  background: #fff;
  margin-top: 0;
  height: auto;
  max-width: 215px;
}
.sgk-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 10000;
}
.sgk-overlay.sgk-active {
  opacity: 1;
  pointer-events: auto;
}
.sgk-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 10001;
  max-height: 100%;
  overflow: auto;
  background: #fbf3e7;
}
.sgk-popup.sgk-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.sgk-popup .sgk-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 32px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #3c3c3c;
}
.sgk-memorial-template .sgk-memorial .sgk-memorial-inner .sgk-memorial-title {
  color: #fff;
  margin-bottom: 60px;
}
.sgk-memorial-template .sgk-memorial-pagination {
  margin-bottom: 150px;
}
.sgk-memorial-template .sgk-memorial-pagination nav ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
}
.sgk-memorial-template .sgk-memorial-pagination nav ul li {
  list-style: none;
}
.sgk-memorial-template .sgk-memorial-pagination nav ul li span,
.sgk-memorial-template .sgk-memorial-pagination nav ul li a {
  display: block;
  font-weight: 400;
  font-size: 21px;
  text-align: center;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  transition: 0.3s;
}
.sgk-memorial-template .sgk-memorial-pagination nav ul li a:hover {
  text-decoration: underline;
}
.sgk-memorial-template .sgk-memorial-pagination nav ul li a.next:hover,
.sgk-memorial-template .sgk-memorial-pagination nav ul li a.prev:hover {
  text-decoration: none;
}
.sgk-memorial-template .sgk-memorial-pagination nav ul li .current {
  text-decoration: underline;
}
.sgk-team .sgk-team-title {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  margin-bottom: 250px;
}
.sgk-teamWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 65px 75px;
  justify-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 270px;
}
.sgk-teamWrapper .sgk-team-item {
  max-width: 250px;
}
.sgk-teamWrapper .sgk-team-item:hover .sgk-team-photo img {
  transform: scale(1.1);
}
.sgk-teamWrapper .sgk-team-item .sgk-team-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #d9d9d9;
  margin-bottom: 20px;
  overflow: hidden;
}
.sgk-teamWrapper .sgk-team-item .sgk-team-photo img {
  transition: 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sgk-teamWrapper .sgk-team-item .sgk-team-name {
  font-weight: 700;
  font-size: 21px;
  text-align: center;
  color: #000;
  margin-bottom: 10px;
}
.sgk-teamWrapper .sgk-team-item .sgk-team-role {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 10px;
}
.sgk-teamWrapper .sgk-team-item .sgk-team-mail {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #000;
  text-decoration: none;
}
.sgk-teamWrapper .sgk-team-item .sgk-team-mail:hover {
  text-decoration: underline;
}
.sgk-team-support-title {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}
.sgk-team-support ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.sgk-team-support ul li {
  list-style: none;
  font-weight: 700;
  font-size: 21px;
  text-align: center;
  color: #fff;
}
.sgk-partners-head {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  margin-bottom: 250px;
}
.sgk-partners {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sgk-partnersWrapper {
  padding-bottom: 150px;
}
.sgk-partnersWrapper .sgk-partners-title,
.sgk-partnersWrapper .sgk-partners-imgs__row--title {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #3c3c3c;
  margin-bottom: 17px;
}
.sgk-partnersWrapper .sgk-partners-imgs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.sgk-partnersWrapper .sgk-partners-imgs .sgk-partners-img-1 {
  height: 220px;
}
.sgk-partnersWrapper .sgk-partners-imgs .sgk-partners-img-2 {
  height: 65px;
}
.sgk-partnersWrapper .sgk-partners-imgs .sgk-partners-img-3 {
  height: 65px;
}
.sgk-partnersWrapper .sgk-partners-imgs__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 20px;
}
.sgk-partnersWrapper .sgk-partners-imgs__row a {
  height: 220px;
}
.sgk-partnersWrapper .sgk-partners-imgs__row img {
  display: block;
  margin: 0 auto 20px;
  max-height: 220px;
}
.sgk-partnersWrapper .sgk-partners-imgs__row .sgk-partners-text {
  font-size: 16px;
}
.sgk-projects-title {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  margin-bottom: 250px;
}
.sgk-projectsWrapper {
  padding-bottom: 250px;
}
.sgk-projectsWrapper h1,
.sgk-projectsWrapper h2,
.sgk-projectsWrapper h3,
.sgk-projectsWrapper h4,
.sgk-projectsWrapper h5,
.sgk-projectsWrapper h6 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #3c3c3c;
}
.sgk-projectsWrapper p,
.sgk-projectsWrapper b,
.sgk-projectsWrapper span,
.sgk-projectsWrapper em,
.sgk-projectsWrapper i,
.sgk-projectsWrapper strong,
.sgk-projectsWrapper a,
.sgk-projectsWrapper li {
  color: #3c3c3c;
}
.sgk-projectsWrapper h1 {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}
.sgk-projectsWrapper h2 {
  font-size: 32px;
}
.sgk-projectsWrapper h3 {
  font-size: 26px;
}
.sgk-projectsWrapper h4 {
  font-size: 20px;
}
.sgk-projectsWrapper h5 {
  font-size: 18px;
}
.sgk-projectsWrapper h6 {
  font-size: 14px;
}
.sgk-projectsWrapper p {
  margin-bottom: 15px;
  line-height: 1.8;
}
.sgk-projectsWrapper hr {
  background-color: rgba(0, 0, 0, 0.5);
}
.sgk-projectsWrapper ul,
.sgk-projectsWrapper ol {
  margin-left: 35px;
  margin-bottom: 20px;
}
.sgk-projectsWrapper ul li,
.sgk-projectsWrapper ol li {
  line-height: 1.8;
}
.sgk-projectsWrapper ul li {
  list-style: disc;
}
.sgk-projectsWrapper ol li {
  list-style: auto;
}
.sgk-projectsWrapper p,
.sgk-projectsWrapper a,
.sgk-projectsWrapper li,
.sgk-projectsWrapper span,
.sgk-projectsWrapper b,
.sgk-projectsWrapper strong,
.sgk-projectsWrapper i,
.sgk-projectsWrapper em {
  font-family: 'Open Sans', sans-serif;
}
.sgk-projectsWrapper a {
  text-decoration: underline;
}
.sgk-404 {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sgk-404Wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sgk-404Wrapper .sgk-404-title {
  font-weight: 700;
  font-size: 128px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #3c3c3c;
  margin-bottom: 40px;
}
.sgk-404Wrapper .sgk-404-subtitle {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #3c3c3c;
  margin-bottom: 20px;
}
.sgk-404Wrapper .sgk-404-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  color: #3c3c3c;
  max-width: 450px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
}
.sgk-404Wrapper .sgk-404-text a {
  font-family: 'Open Sans', sans-serif;
  color: #3c3c3c;
  font-weight: 700;
  text-decoration: underline;
  transition: 0.3s;
}
.sgk-article .sgk-fallen-card {
  max-width: 930px;
  margin: 20px auto 100px;
  padding-bottom: 80px;
  background-color: #fbf3e7;
  position: relative;
}
.sgk-article .sgk-fallen-card__title {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 30px;
  max-width: 490px;
}
.sgk-article .sgk-fallen-card__content {
  display: block;
  padding: 50px 50px 0;
}
.sgk-article .sgk-fallen-card__info {
  display: block;
}
.sgk-article .sgk-fallen-card__row {
  display: flow-root;
  margin-bottom: 15px;
}
.sgk-article .sgk-fallen-card__row * {
  font-family: 'Open Sans', sans-serif;
  color: #000;
  font-size: 14px;
}
.sgk-article .sgk-fallen-card__row--name {
  display: none;
}
.sgk-article .sgk-fallen-card__row--name .sgk-fallen-card__value p {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 21px;
}
.sgk-article .sgk-fallen-card__row--call .sgk-fallen-card__value,
.sgk-article .sgk-fallen-card__row--birth .sgk-fallen-card__value,
.sgk-article .sgk-fallen-card__row--education .sgk-fallen-card__value,
.sgk-article .sgk-fallen-card__row--prof .sgk-fallen-card__value,
.sgk-article .sgk-fallen-card__row--military .sgk-fallen-card__value,
.sgk-article .sgk-fallen-card__row--death .sgk-fallen-card__value {
  font-weight: 400;
  letter-spacing: 0.02em;
}
.sgk-article .sgk-fallen-card__row--call .sgk-fallen-card__value {
  font-size: 18px;
  line-height: 1.16667;
}
.sgk-article .sgk-fallen-card__row--birth .sgk-fallen-card__value,
.sgk-article .sgk-fallen-card__row--education .sgk-fallen-card__value,
.sgk-article .sgk-fallen-card__row--prof .sgk-fallen-card__value,
.sgk-article .sgk-fallen-card__row--death .sgk-fallen-card__value {
  font-size: 14px;
  line-height: 1.5;
}
.sgk-article .sgk-fallen-card__label {
  float: left;
  width: 150px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #000;
  font-family: 'Open Sans', sans-serif;
}
.sgk-article .sgk-fallen-card__value {
  margin-left: 155px;
}
.sgk-article .sgk-fallen-card__photo {
  width: 350px;
  height: 450px;
  float: right;
  margin: 0 0 20px 40px;
}
.sgk-article .sgk-fallen-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sgk-article .sgk-fallen-card__buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  clear: both;
}
.sgk-article .sgk-fallen-card__btn {
  max-width: 285px;
  width: 285px;
  display: block;
}
@media (min-width: 768px) {
  .sgk-memorial-template .sgk-filter-white {
    margin-bottom: 80px;
  }
  .sgk-memorial-template .sgk-filter-white .sgk-region-filter-icon svg path {
    stroke: #fff;
  }
  .sgk-memorial-template .sgk-filter-white .sgk-region-filter-label {
    color: #fff;
  }
}
body {
  position: relative;
}
body::before,
body::after {
  content: '';
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
body::before {
  top: 0;
  left: 0;
}
body::after {
  bottom: 0;
  left: 0;
}
@media (max-width: 1440px) {
  body::before {
    background-size: auto;
  }
}
body::before {
  background-image: url(../img/top.png);
  height: 455px;
  background-position: center bottom;
}
body::after {
  background-image: url(../img/bottom.png);
  height: 650px;
  background-position: center top;
}
body.sgk-home-template::before {
  height: 945px;
 background-position: center bottom 110px;
}
body.sgk-home-template::after {
  height: 900px;
}
body.sgk-memorial-template::before {
  height: 550px;
}
body.sgk-team-template::after {
  height: 950px;
}
@media (max-width: 1440px) {
  .sgk-home-template::before {
    height: 955px;
  }
  .sgk-team-template::before {
    height: 380px;
  }
  .sgk-404-template::before {
    height: 410px;
  }
}
@media (max-width: 1200px) {
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .sgk-article .sgk-fallen-card {
    margin: 0px auto;
    padding: 20px;
  }
  .sgk-article .sgk-fallen-card__photo {
    position: relative;
    width: 280px;
    height: 380px;
    float: none;
    margin: 0 auto 20px;
  }
  .sgk-article .sgk-fallen-card__content {
    display: flex;
    gap: 20px;
    padding: 0;
  }
  .sgk-mobile-menu nav ul li a {
    font-size: 28px;
  }
  .sgk-mobile-menu .sgk-mobile-socials a svg {
    height: 35px;
  }
  .sgk-mobile-menu .sgk-mobile-lang a {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-grid {
    grid-template-columns: 1fr;
  }
  .sgk-media .sgk-media-inner {
    padding-top: 0;
  }
  .sgk-popup {
    max-width: 95%;
  }
  .sgk-main-form .sgk-form .sgk-title {
    font-size: 26px;
  }
  .sgk-main-form .sgk-form .sgk-submit {
    margin: 20px auto 0;
  }
  .sgk-main-form {
    padding: 20px;
  }
  .sgk-team .sgk-team-title {
    margin-bottom: 150px;
  }
  .sgk-footer .sgk-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .sgk-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sgk-footer .sgk-footer-col-text,
  .sgk-footer .sgk-footer-socials {
    justify-content: center;
    margin-top: 20px;
  }
  .sgk-footer-col.sgk-footer-menu-2 ul li * {
    text-align: right;
  }
  .sgk-footer .sgk-footer-col-text {
    margin-top: 0;
    text-align: center;
  }
  .sgk-article .sgk-fallen-card__content {
    flex-direction: column;
  }
  .sgk-article .sgk-fallen-card__content .sgk-fallen-card__info {
    order: 2;
  }
  .sgk-article .sgk-fallen-card__content .sgk-fallen-card__photo {
    margin: 0 auto;
    order: 1;
  }
  .sgk-article .sgk-fallen-card__title {
    text-align: center;
    margin: 0 auto;
  }
  .sgk-main-contact {
    padding: 20px;
  }
  #wpforms-241-field_28-container .wpforms-layout-column.wpforms-layout-column-50,
  #wpforms-248-field_28-container .wpforms-layout-column.wpforms-layout-column-50 {
    width: 100% !important;
  }
  .sgk-main-contact .sgk-contact-form .sgk-file-btn {
    max-width: 100%;
  }
  div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column {
    padding: 0 !important;
  }
  .sgk-main-contact .sgk-contact-form .sgk-title {
    font-size: 24px;
    margin-bottom: 0px;
  }
  div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-field-layout-columns {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .sgk-contact-form.wpforms-container .wpforms-field {
    padding: 0 !important;
  }
  body .sgk-main-contact .sgk-contact-form .sgk-input {
    padding: 13px 20px !important;
  }
  #wpforms-241-field_10-container,
  #wpforms-248-field_10-container {
    margin-bottom: 20px !important;
  }
  .sgk-main-form .sgk-form .sgk-input {
    overflow: hidden;
  }
  div.sgk-form.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-field-layout-columns {
    gap: 20px;
  }
  .sgk-partners-head,
  .sgk-projects-title {
    margin-bottom: 150px;
  }
  .sgk-projectsWrapper {
    padding-bottom: 70px;
  }
  body::before {
    height: 380px;
  }
  body::after {
    height: 460px;
  }
  .sgk-partnersWrapper {
    padding-bottom: 100px;
  }
  .sgk-partnersWrapper .sgk-partners-imgs__row {
    grid-template-columns: repeat(1, 1fr);
  }
  .sgk-partnersWrapper .sgk-partners-title,
  .sgk-partnersWrapper .sgk-partners-imgs__row--title {
    font-size: 24px;
  }
  .sgk-partnersWrapper .sgk-partners-imgs__row a {
    height: auto;
  }
}
@media (max-width: 575px) {
  .sgk-hero .sgk-hero-inner .sgk-hero-title,
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-title,
  .sgk-media .sgk-media-title,
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-title,
  .sgk-team .sgk-team-title,
  .sgk-team-support-title,
  .sgk-partnersWrapper .sgk-partners-title {
    font-size: 26px;
  }
  .sgk-hero .sgk-hero-inner .sgk-hero-subtitle {
    font-size: 20px;
  }
  .sgk-hero .sgk-hero-inner .sgk-hero-quote {
    padding: 25px;
  }
  .sgk-hero .sgk-hero-inner .sgk-hero-quote .sgk-hero-quote-text {
    font-size: 32px;
  }
  .sgk-hero .sgk-hero-inner::after,
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item .sgk-memorial-name::after {
    content: none;
  }
  .sgk-hero .sgk-hero-inner {
    padding-bottom: 0;
  }
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-title,
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item .sgk-memorial-name,
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-grid .sgk-memorial-item .sgk-memorial-age,
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-more a,
  .sgk-memorial-template .sgk-memorial-pagination nav ul li,
  .sgk-teamWrapper .sgk-team-item .sgk-team-name,
  .sgk-teamWrapper .sgk-team-item .sgk-team-role,
  .sgk-teamWrapper .sgk-team-item .sgk-team-mail,
  .sgk-404Wrapper .sgk-404-title,
  .sgk-404Wrapper .sgk-404-subtitle,
  .sgk-404Wrapper .sgk-404-text,
  .sgk-404Wrapper .sgk-404-text a,
  .sgk-memorial-template .sgk-memorial-pagination nav ul li span,
  .sgk-memorial-template .sgk-memorial-pagination nav ul li a {
    color: #3c3c3c;
  }
  .sgk-media .sgk-media-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .sgk-memorial-template .sgk-memorial-pagination {
    margin-bottom: 0;
  }
  .sgk-teamWrapper,
  .sgk-team .sgk-team-title {
    margin-bottom: 150px;
  }
  .sgk-team-support ul li,
  .sgk-article .sgk-fallen-card__row--name .sgk-fallen-card__value {
    font-size: 18px;
  }
  .sgk-partnersWrapper .sgk-partners-text {
    line-height: 1.5;
  }
  .sgk-article .sgk-fallen-card__label {
    width: 100px;
  }
  .sgk-article .sgk-fallen-card__value {
    margin-left: 100px;
  }
  .sgk-mobile-menu .sgk-mobile-socials a svg {
    height: 30px;
  }
  body.sgk-home-template::before {
    height: 850px;
  }
  body.sgk-home-template::after {
    height: 1150px;
  }
  body.sgk-team-template::after {
    height: 800px;
  }
  .sgk-home-template .sgk-memorial {
    margin-bottom: 150px;
  }
  .sgk-memorial-template .sgk-memorial {
    margin-bottom: 100px;
  }
  .sgk-memorial-template .sgk-filter-white {
    margin-bottom: 100px;
  }
  .sgk-memorial .sgk-memorial-inner .sgk-memorial-title {
    color: #fff;
  }
  .sgk-header .sgk-header-btn {
    padding: 8px 10px;
  }
}
