@charset "UTF-8";
/* -----------------------------------------
   General fixes
----------------------------------------- */
html, body {
  height: auto;
  background-color: #D9D9D9;
}

html {
  min-height: 100%;
  position: relative;
  scroll-behavior: smooth;
}

body {
  position: static;
}

/* Placeholder styling */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #555;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #555;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #555;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #555;
}

/* Input Styling */
[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select {
  /* STYLES GO THERE */
  margin-bottom: 0;
}

/* -----------------------------------------
   Typography
----------------------------------------- */
body {
  color: #060606;
  font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: inherit;
  color: inherit;
}

h1 {
  /*basic heading styles*/
}

h2 {
  /*basic heading styles*/
}

h3 {
  /*basic heading styles*/
}

h4 {
  /*basic heading styles*/
}

h5 {
  /*basic heading styles*/
}

h6 {
  /*basic heading styles*/
}

p {
  /*basic paragraph styles*/
}
p:empty {
  display: none;
}
p a {
  text-decoration: underline;
}

ul {
  /*basic list styles*/
}
ul li {
  /*basic list-item styles*/
}

a {
  color: #504C4C;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  /*basic hover and focus effects*/
  color: rgb(27.6923076923, 26.3076923077, 26.3076923077);
}

/* Clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}

/* Align Middle */
.align-middle {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* 404 page */
.not-found {
  padding-top: 100px;
  padding-bottom: 100px;
}
.not-found .label {
  text-decoration: none;
  cursor: pointer;
  background-color: #504C4C;
}
.not-found .label:hover {
  background-color: rgb(59.0769230769, 56.1230769231, 56.1230769231);
  color: #fff;
}

.btn {
  border: 1px solid #060606;
  color: #060606;
  font-weight: 900;
  font-size: 16px;
  line-height: 100%;
  padding: 10px 22px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: #504C4C;
  color: #fff;
}

/* Глобальний гаттер, якщо потрібно */
:root {
  --container-gutter: 16px;
}

.wp-block-group.is-style-container {
  max-width: var(--wp--style--global--content-size, 1140px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}

/* Повна ширина для фонових секцій */
.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}
.socials-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}
.socials-list a {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 26px;
}
.socials-list a:hover i {
  transform: scale(1.2);
}
.socials-list i {
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
.socials-list i.facebook-f {
  background-image: url(../images/icon-facebook.svg);
}
.socials-list i.instagram {
  background-image: url(../images/icon-instagram.svg);
}
.socials-list i.tiktok {
  background-image: url(../images/icon-tiktok.svg);
}

.section-title {
  font-size: 80px;
}

@media only screen and (max-width: 991px) and (min-width: 767px) {
  .section-title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 766.98px) and (min-width: 641px) {
  .section-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 640.98px) {
  .section-title {
    font-size: 40px;
  }
}
.header {
  padding: 37px 0;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 991.98px) {
  .link-container {
    display: none;
  }
}
/* -----------------------------------------
   Home page slider
----------------------------------------- */
.slick-slider:not(.slick-initialized) .slick-slide:not(:first-child) {
  display: none;
}

#home-slider .slick-slide {
  position: relative;
  height: 500px; /*define the height of slide*/
  transition: height 0.3s ease;
}
#home-slider .slider-caption {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 100%;
  max-width: 500px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
#home-slider .slider-caption p, #home-slider .slider-caption h3 {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#home-slider .videoHolder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
#home-slider .video, #home-slider .responsive-embed {
  position: absolute;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
#home-slider .responsive-embed {
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  #home-slider .slick-slide {
    height: 400px; /*define the height of slide*/
  }
}
@media only screen and (max-width: 640px) {
  #home-slider .slick-slide {
    height: 300px; /*define the height of slide*/
  }
}
.contact-us {
  background-color: #504C4C;
  padding: 160px 0;
  position: relative;
}
.contact-us:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #D9D9D9;
  border-radius: 0 0 80px 80px;
  height: 80px;
  z-index: 1;
}
.contact-us__left {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
  width: 100%;
  max-width: 50%;
  flex: 50%;
}
.contact-us__side {
  width: 100%;
  max-width: 50%;
  flex: 50%;
}
.contact-us__side .gform_wrapper.gravity-theme .gform_description {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 32px;
}
.contact-us__side .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 24px;
}
.contact-us__side .gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}
.contact-us__side .gform_wrapper.gravity-theme input[type=text], .contact-us__side .gform_wrapper.gravity-theme input[type=email], .contact-us__side .gform_wrapper.gravity-theme input[type=tel] {
  background-color: #AFAFAF;
  padding: 16px 32px;
  border: 1px solid #AFAFAF;
}
.contact-us__side .gform_wrapper.gravity-theme textarea {
  background-color: #AFAFAF;
  padding: 16px 32px;
  border: 1px solid #AFAFAF;
}
.contact-us__side .gform_wrapper.gravity-theme .gfield textarea.medium {
  height: 150px;
}
.contact-us__side .gform_wrapper.gravity-theme .gfield_label {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.contact-us__side .gform_wrapper.gravity-theme .gform-footer {
  padding-bottom: 0;
}
.contact-us__side .gform_wrapper.gravity-theme .gform-footer input[type=submit] {
  font-weight: 900;
  font-size: 16px;
  color: #504C4C;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
  padding: 10px 22px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.contact-us__side .gform_wrapper.gravity-theme .gform-footer input[type=submit]:hover {
  background-color: #AFAFAF;
}
.contact-us__side .gform_wrapper.gravity-theme .gfield_required {
  color: #AFAFAF;
}
.contact-us p {
  margin-bottom: 0;
  font-size: 16px;
  color: #fff;
}
.contact-us p.contact-us__label {
  color: #AFAFAF;
}
.contact-us__title {
  color: #fff;
}
.contact-us__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.contact-us__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}
.contact-us__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-us__links a {
  color: #fff;
}
.contact-us__license {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

@media only screen and (max-width: 766px) {
  .contact-us {
    padding: 100px 0;
  }
  .contact-us:before {
    border-radius: 0 0 40px 40px;
    height: 40px;
  }
  .contact-us__left {
    max-width: 100%;
    flex: 100%;
    gap: 30px;
  }
  .contact-us__info {
    gap: 20px;
  }
  .contact-us__wrapper {
    flex-direction: column;
  }
  .contact-us__side {
    max-width: 100%;
    flex: 100%;
    padding: 60px 0 40px;
  }
}
/* ------------------------------------
    Footer Styles
------------------------------------- */
.footer {
  position: relative;
  background-color: #060606;
  padding: 80px 0;
  margin-top: -80px;
  border-radius: 80px 80px 0 0;
}
.footer:before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  position: absolute;
  z-index: -1;
  background-color: #504C4C;
  border-radius: 0;
}
.footer .btn {
  background-color: #060606;
  color: #fff;
  border-color: #fff;
  transition: all 0.3s ease-in-out;
}
.footer .btn:hover {
  background-color: #504C4C;
  text-decoration: none;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  color: #999898;
}

.footer-menu {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-menu li {
  display: inline-block;
}
.footer-menu li a {
  display: block;
  padding: 5px 10px;
  color: #fff;
}
.footer-menu li a:hover {
  color: #AFAFAF;
  text-decoration: none;
}

@media only screen and (max-width: 991px) {
  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
  .footer__top {
    gap: 36px;
  }
  .footer__link-wrap {
    padding: 0 10px;
  }
  .footer__nav-wrap {
    padding: 0;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    border-radius: 40px 40px 0 0;
  }
  .footer__top {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 400px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}