html {
  margin: 0px;
  padding: 0px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  min-width: 320px;
}
body {
  position: relative;
  margin: 0px auto;
  padding: 0px 0px 0px 0px;
  width: 100%;
  min-height: 100%;
  max-width: 1920px;
  box-shadow: 0px 0px 150px -10px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 400;
  overflow-y: scroll;
  font-family: "gilroy", sans-serif;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "lnum" 1;
  -o-font-feature-settings: "lnum" 1;
  -ms-font-feature-settings: "lnum" 1;
  -moz-font-feature-settings: "lnum" 1;
  -webkit-font-feature-settings: "lnum" 1;
  text-size-adjust: none;
  -o-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
.wrapper {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.row {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .wrapper {
    max-width: 740px;
  }
}
@media only screen and (min-width: 992px) {
  .wrapper {
    max-width: 965px;
  }
}
@media only screen and (min-width: 1200px) {
  .wrapper {
    max-width: 1170px;
  }
}
.wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.wrapper > .row {
  width: 100%;
}

.title {
  font-weight: bold;
  font-size: 48px;
  line-height: 54px;
  color: #333333;
  position: relative;
}
.title.title-line:before {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  border-radius: 1px;
  width: 32px;
  height: 5px;
  top: -20px;
  left: 0;
}
.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-row a.title-link-border {
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  border: 2px solid #f8df95;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 10px 35px;
  width: max-content;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.title-row a.title-link-border:hover {
  background: white;
  color: black;
  border-color: #f8df95;
}
.title-row a.title-link-fill {
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  border: 2px solid #f8df95;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 10px 35px;
  width: max-content;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.title-row a.title-link-fill:hover {
  color: #333333;
  background: #ffffff;
  border: 2px solid #f8df95;
}
@media only screen and (max-width: 1199px) {
  .title {
    font-size: 42px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 991px) {
  .title {
    font-size: 36px;
    line-height: 46px;
  }
  .title-row a.title-link-border,
  .title-row a.title-link-fill {
    padding: 7px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .title-row .title {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 500px) {
  .title {
    font-size: 28px;
    line-height: 40px;
  }
}

h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
  color: #333333;
  margin-bottom: 30px;
  margin-top: 40px;
}
h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
  color: #333333;
  margin-bottom: 30px;
  margin-top: 40px;
}
h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #333333;
  margin-bottom: 20px;
  margin-top: 30px;
}
p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  margin-top: 0;
  margin-bottom: 10px;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 22px;
}
li {
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  margin-bottom: 10px;
  padding-left: 5px;
}
@media screen and (max-width: 1199px) {
  h1,
  h2 {
    font-size: 30px;
    line-height: 38px;
  }
  h3 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  p,
  li {
    font-size: 16px;
    line-height: 24px;
  }
  h1,
  h2 {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}
.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw !important;
}
@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 1920px !important;
    margin-left: calc(-1 * (1920px - 1600px) / 2) !important;
    margin-right: calc(-1 * (1920px - 1600px) / 2) !important;
  }
}

/*================ HEADER ===============*/
#header-3 {
  /*position: fixed;*/
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in;
  background-color: #fff;
  z-index: 999;
}
#header-3 .wrapper {
  /*max-width: 1220px;*/
  margin: 0 auto;
  width: 100%;
  /*padding: 0 15px;*/
}
#header-3 .btn {
  padding: 10px 35px;
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  border-radius: 2px;
  border: 2px solid #fff;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #ffffff;
  transition: 0.3s;
}
#header-3 .btn:hover {
  border-color: #f8df95;
  color: #333333;
  background: #fff;
}
#header-3.painted {
  padding: 5px 0 0;
}
#header-3 .top__line .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header-3 .top__line .logo__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  max-width: 445px;
  width: 100%;
}
#header-3 .top__line .logo__holder img {
  object-fit: contain;
  max-width: 130px;
  width: 100%;
  height: 70px;
}
#header-3 .top__line .logo__holder .logo__info {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  font-size: 14px;
  color: #333333;
  font-weight: 600;
}

#header-3 .top__line .phones__holder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 20px;
}

#header-3 .top__line .phones__holder .phone__item:before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background-image: url(../images/phone.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
}
#header-3 .top__line .phones__holder .phone__item:hover:before {
  filter: grayscale(1);
}
#header-3 .top__line .phones__holder .holder__title {
  color: #1962d0;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}
#header-3 .top__line .phones__holder .phone__item {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #333333;

  display: flex;
  align-items: center;
}
#header-3 .top__line .phones__holder .phone__item:hover {
  color: #f8df95;
}
#header-3 .top__line {
  padding: 10px 0;
}
#header-3 .header-soc__holder {
  display: flex;
  align-items: center;
}
#header-3 .header-soc__holder .soc__item {
  display: block;
  width: 30px;
  height: 30px;

  margin-right: 20px;
}
#header-3 .header-soc__holder .soc__item img {
  width: 100%;
  height: 100%;
}
#header-3 .header-soc__holder .soc__item:hover {
  filter: grayscale(1);
}
#header-3 .header-soc__holder .soc__item:last-child {
  margin-right: 0;
}
#header-3 .bot__line {
  width: 100%;
  background: linear-gradient(180deg, #878681 0%, #c0c0c0 100%);
}
#header-3 .bot__line .nav-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  list-style-type: none;
  margin: 0;
}
#header-3 .bot__line .nav-menu li {
  margin-bottom: 0;
  padding: 13px 0;
}
#header-3 .bot__line .nav-menu li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #333333;
  text-decoration: none;
  position: relative;
}
#header-3 .bot__line .nav-menu > li.has-childs {
  position: relative;
  padding-right: 17px;
}
#header-3 .bot__line .nav-menu > li.has-childs:after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  background-image: url(../images/menu-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 8px;
  transform-origin: center center;
}
#header-3 .bot__line .nav-menu > li.has-childs:hover:after {
  transform: rotate(180deg);
}
#header-3 .bot__line .nav-menu li.active a:after,
#header-3 .bot__line .nav-menu li:hover a:after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  border-radius: 1px;
  width: 100%;
  height: 5px;
  top: 100%;
}
#header-3 .bot__line .nav-menu ul.sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: max-content;
  background-color: #fff;
  display: none;
  flex-direction: column;
  list-style-type: none;
  border-radius: 2px;
  padding: 30px;
  z-index: 2;
  box-shadow: 0px 2px 25px #9f9f9f66;
}
#header-3 .bot__line .nav-menu ul.sub-menu > li > a {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  display: block;
  max-width: 340px;
  margin-bottom: 15px;
}
#header-3 .bot__line .nav-menu ul.sub-menu > li:last-child > a {
  margin-bottom: 0;
}
#header-3 .bot__line .nav-menu ul.sub-menu > li > a:after {
  display: none;
}
#header-3 .bot__line .nav-menu li.has-childs > ul.sub-menu > li.has-childs {
  margin-bottom: 35px;
}
#header-3
  .bot__line
  .nav-menu
  li.has-childs
  > ul.sub-menu
  > li.has-childs
  ul.sub-menu {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 30px;
  list-style-type: none;
}
#header-3
  .bot__line
  .nav-menu
  li.has-childs
  > ul.sub-menu
  > li.has-childs
  ul.sub-menu
  li
  a {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#header-3
  .bot__line
  .nav-menu
  li.has-childs
  > ul.sub-menu
  li
  ul.sub-menu
  li
  a:hover,
#header-3 .bot__line .nav-menu li.has-childs > ul.sub-menu li a:hover {
  color: #f8df95;
  opacity: 1;
}

#header-3 .bot__line .nav-menu > li.has-childs:hover > ul.sub-menu {
  display: flex;
}
#header-3 .bot__line .nav-menu > li.has-childs:hover > ul.sub-menu li {
  padding: 0;
}
/*================ MOBILE MNU =============*/
#header-3 .burger.open_menu {
  display: none;
  flex-shrink: 0;
  position: relative;
  width: 40px;
  height: 32px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
#header-3 .burger.open_menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #f8df95;
  border-radius: 4px;
}
#header-3 .burger.open_menu span:nth-of-type(1) {
  top: 0;
}
#header-3 .burger.open_menu span:nth-of-type(2) {
  top: 14px;
}
#header-3 .burger.open_menu span:nth-of-type(3) {
  bottom: 0;
}
#menu07 span:nth-of-type(1) {
  animation: menu07-bar01 0.75s forwards;
}
@keyframes menu07-bar01 {
  0% {
    transform: translateY(14px) rotate(45deg);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#menu07 span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
#menu07 span:nth-of-type(3) {
  animation: menu07-bar03 0.75s forwards;
}
@keyframes menu07-bar03 {
  0% {
    transform: translateY(-14px) rotate(-45deg);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#menu07.clicked span:nth-of-type(1) {
  animation: active-menu07-bar01 0.75s forwards;
}
@keyframes active-menu07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(14px) rotate(45deg);
  }
}
#menu07.clicked span:nth-of-type(2) {
  opacity: 0;
}
#menu07.clicked span:nth-of-type(3) {
  animation: active-menu07-bar03 0.75s forwards;
}
@keyframes active-menu07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(-14px) rotate(-45deg);
  }
}
#header-3 #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: #fff;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  box-shadow: 0px 2px 25px #9f9f9f66;
}
#header-3 #mobile-mnu.opened {
  transform: translateX(0);
}
#header-3 #mobile-mnu a {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  /* identical to box height, or 133% */

  letter-spacing: 0.01em;

  color: #333333;
  text-decoration: none;
}
#header-3 #mobile-mnu a:hover {
  color: #f8df95;
}
#header-3 #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 150px;
}
#header-3 #mobile-mnu .logo__holder img {
  width: 100%;
}
#header-3 #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 30px;
}
#header-3 #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}
#header-3 #mobile-mnu .menuTop li a {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #333333;
  text-decoration: none;
}
#header-3 #mobile-mnu .menuTop li.active a,
#header-3 #mobile-mnu .menuTop li:hover a {
  opacity: 0.5;
}
#header-3 #mobile-mnu .menuTop ul.sub-menu {
  display: none;
}
#header-3 #mobile-mnu .email__holder,
#header-3 #mobile-mnu .phone__holder {
  display: flex;
  flex-direction: column;
  position: relative;

  margin-bottom: 10px;
  width: 100%;
}
#header-3 #mobile-mnu .email__holder a,
#header-3 #mobile-mnu .phone__holder a {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#header-3 #mobile-mnu .email__holder a img,
#header-3 #mobile-mnu .phone__holder a img {
  margin-right: 10px;
}
#header-3 #mobile-mnu .email__holder:before {
  content: url(images/mail.svg);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#header-3 #mobile-mnu .phone__holder:before {
  content: url(images/phone.svg);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#header-3 #mobile-mnu button.btn {
  margin: auto auto 0;
}
#header-3 #mobile-mnu .soc__holder {
  margin-top: 10px;
}
#header-3 #mobile-mnu .soc__holder .soc__item img {
  margin-right: 5px;
  width: 30px;
  height: 30px;
}
@media (max-width: 1199px) {
  #header-3 .top__line .logo__holder {
    max-width: 255px;
  }
}
@media (max-width: 991px) {
  /*======== HEADER ========*/
  #header-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  body {
    padding-top: 84px;
  }
  #header-3 .bot__line {
    display: none;
  }
  #header-3 .burger.open_menu {
    display: flex;
  }
  #header-3.painted {
    padding: 5px 0;
  }
  #header-3 .btn {
    display: none;
  }
  #header-3 .top__line .phones__holder {
    padding-left: 0;
  }
  #header-3 .header-soc__holder .soc__item {
    margin-right: 10px;
  }
  #header-3.scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 2px 25px #9f9f9f66;
  }
  #header-3.scroll .top__line {
    padding: 4px 0;
    transition: 0.3s;
  }
}
@media (max-width: 767px) {
  #header-3 .top__line .logo__holder {
    max-width: 150px;
  }
}
@media (max-width: 600px) {
  #header-3 .header-soc__holder {
    display: none;
  }
  #header-3 .top__line .logo__holder img {
    height: 85px;
  }
}
@media (max-width: 430px) {
  /*========= HEADER =========*/

  #header-3 .top__line .phones__holder .phone__item span {
    display: none;
  }
  #header-3 .top__line .phones__holder .phone__item:before {
    margin-right: 0;
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
  }

  #header-3 .top__line .phones__holder .phone__item {
    width: 40px;
    height: 40px;
    background: radial-gradient(
      146.9% 146.9% at 20.87% -31.2%,
      #fbd10e 0%,
      #f8df95 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header-3 .top__line .logo__holder {
    margin-right: auto;
  }
  #header-3 .top__line .phones__holder {
    margin-right: 20px;
  }
  #header-3 .top__line .phones__holder .phone__item:hover {
    filter: grayscale(1);
  }
  #header-3 .top__line .phones__holder .phone__item:hover:before {
    filter: brightness(0) invert(1);
  }
}
/*================ BREADCRUMBS ===============*/
.breadcrumbs {
  padding-top: 40px;
  padding-bottom: 20px;
}
.breadcrumbs .wrapper {
  flex-direction: row;
  display: block;
}
.breadcrumbs,
.breadcrumbs span,
.breadcrumbs a {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  text-decoration: none;
}
.breadcrumbs span.current-item {
  color: #d5cb71;
}
.breadcrumbs a:hover span {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs,
  .breadcrumbs span,
  .breadcrumbs a {
    font-size: 14px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.25);
    text-decoration: none;
  }
  .breadcrumbs {
    padding: 20px 0;
  }
}
/*================ SERVICES ===============*/
.archive-services {
  display: flex;
  margin-top: 60px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}
.archive-services .services-front-item {
  margin-right: 30px;
  text-decoration: none;
  width: calc(100% / 4 - 30px * 3 / 4);
  margin-bottom: 30px;
}
.archive-services .services-front-item:nth-child(4n) {
  margin-right: 0;
}
.archive-services .services-front-title {
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  color: #333333;
  margin-top: 25px;
}
.archive-services .services-front-thumb {
  width: 262px;
  height: 262px;
  position: relative;
}
.archive-services .services-front-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.archive-services .services-front-hover {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    146.9% 146.9% at 20.87% -31.2%,
    #fbcf0ee6 0%,
    #fb980de6 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  opacity: 0;
  transition: 0.3s;
}
.archive-services .services-front-hover:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/show.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 15px;
}
.archive-services .services-front-item:hover .services-front-hover {
  opacity: 1;
}
.archive-services .services-front-desc {
  margin-top: 10px;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
}

@media screen and (max-width: 1199px) {
  .archive-services .services-front-thumb {
    width: 211px;
    height: 211px;
  }
  .archive-services .services-front-title {
    font-size: 20px;
    line-height: 25px;
    margin-top: 15px;
  }
  .archive-services .services-front-desc {
    font-size: 16px;
    line-height: 22px;
  }
  .archive-services {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 991px) {
  .archive-services .services-front-info {
    flex-wrap: wrap;
  }
  .archive-services .services-front-item {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
  .archive-services .services-front-item:nth-child(2n) {
    margin-right: 0;
  }
  .archive-services .services-front-thumb {
    width: 96%;
    height: 250px;
  }
  .archive-services .services-front-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .archive-services .services-front-thumb {
    width: 100%;
  }
  .archive-services .services-front-title {
    line-height: 22px;
    font-size: 18px;
  }
  .archive-services .services-front-item {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
}
@media screen and (max-width: 500px) {
  .archive-services {
    flex-direction: column;
  }
  .archive-services .services-front-item {
    width: 100%;
  }
  .archive-services .services-front-thumb {
    height: 100%;
  }

  .archive-services .services-front-hover {
    font-size: 16px;
    line-height: 20px;
  }
  .archive-services .services-front-desc {
    font-size: 14px;
    line-height: 18px;
  }
}
@media screen and (max-width: 400px) {
  .archive-services .services-front-thumb {
    height: 100%;
  }
  .archive-services {
    margin: 40px 0;
  }
  .archive-services .services-front-title {
    line-height: 20px;
    font-size: 16px;
    word-break: break-word;
  }
}
/*================ CONTACT FORM ===============*/
.contact-form {
  background: linear-gradient(180deg, #878681 0%, #c0c0c0 100%);
  padding: 30px 0;
}
.contact-form .form-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.contact-form .form-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #333333;
}
.contact-form .wpcf7-form {
  display: flex;
  align-items: center;
}
.contact-form .wpcf7-form span {
  display: block;
  margin-right: 20px;
}
.contact-form .wpcf7-form input {
  font-family: "gilroy", sans-serif;
  background-color: #e5e5e5;
  border-radius: 2px;
  padding: 8px 30px;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  width: 201px;
  color: #333333;
  outline: none;
}
.contact-form .wpcf7-form input::placeholder {
  color: #333333;
}
.contact-form .wpcf7-form input[type="submit"] {
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  border: 2px solid #ccc;
  border-radius: 2px;
  padding: 10px 35px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  transition: 0.3s;
  color: #ffffff;
  cursor: pointer;
}
.contact-form .wpcf7-form input[type="submit"]:hover {
  color: #333333;
  border-color: #f8df95;
  background: none;
}
.contact-form .form-link {
  width: 270px;
  margin-left: 20px;
}
.contact-form .form-link,
.contact-form .form-link a {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;

  color: #333333;
}
.contact-form .form-link a {
  text-decoration: none;
  border-bottom: 1px solid #333333;
}
.contact-form .form-link a:hover {
  border-bottom-color: #ffffff00;
}
@media screen and (max-width: 991px) {
  .contact-form .form-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form .form-title {
    margin-bottom: 10px;
  }
  .contact-form {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .contact-form .wpcf7-form {
    flex-wrap: wrap;
  }
  .contact-form .form-link {
    margin-left: 0;
    width: auto;
  }
}

@media screen and (max-width: 452px) {
  .contact-form .wpcf7-form span {
    margin-right: 10px;
    width: calc(50% - 5px);
  }
  .contact-form .wpcf7-form span input {
    width: 100%;
    padding: 8px 15px;
    font-size: 14px;
  }
  .contact-form .wpcf7-form input[type="submit"] {
    width: calc(50% - 5px);
    padding: 8px 15px;
    font-size: 14px;
  }
  .form-title {
    font-size: 18px;
    line-height: 22px;
  }
  .form-link {
    margin-top: 10px;
  }
  .form-link,
  .form-link a {
    font-size: 12px;
    line-height: 14px;
  }
}

/*================ SINGLE SERVICE ===============*/
.service-card {
  margin-top: 60px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
}
.service-menu {
  width: 270px;
  padding: 35px;
  background-color: #f4f4f4;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  height: max-content;
  position: sticky;
  top: 20px;
}
.service-menu a {
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}
.service-menu a:last-child {
  margin-bottom: 0;
}
.service-menu a.active {
  font-weight: bold;
  cursor: default;
  pointer-events: none;
}
.service-menu a:hover {
  color: #f8df95;
}
.service-menu a.active:hover {
  color: #333333;
}
.service-content {
  width: calc(100% - 270px - 30px);
}
.service-card h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
  color: #333333;
  margin-bottom: 30px;
  margin-top: 40px;
}
.service-card h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
  color: #333333;
  margin-bottom: 30px;
  margin-top: 40px;
}
.service-card h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #333333;
  margin-bottom: 20px;
  margin-top: 30px;
}
.service-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  margin-top: 0;
  margin-bottom: 10px;
}
.service-card ul,
.service-card ol {
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 22px;
}
.service-card li {
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  margin-bottom: 10px;
  padding-left: 5px;
}
@media screen and (max-width: 1199px) {
  .service-card {
    margin-top: 40px;
  }
  .service-card h1,
  .service-card h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .service-card h3 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .service-menu {
    width: 215px;
    padding: 25px 20px;
  }
  .service-menu a {
    font-size: 16px;
    line-height: 20px;
  }
  .service-content {
    width: calc(100% - 215px - 30px);
  }
  .service-card p,
  .service-card li {
    font-size: 16px;
    line-height: 24px;
  }
  .service-card h1,
  .service-card h2 {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .service-card h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .service-card {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .service-content {
    width: 100%;
  }
  .service-menu {
    width: 100%;
    margin-top: 30px;
  }
}
/*================ SINGLE NEWS ===============*/
.single-new-date {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 60px;
  margin-top: 20px;
}
.back-button {
  background: #ffffff;
  border: 2px solid #f8df95;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 10px 35px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  width: max-content;
  color: #333333;
  margin-bottom: 100px;
  cursor: pointer;
  transition: 0.3s;
}
.back-button:hover {
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  color: #fff;
}
.single-news .title {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .single-news .title {
    margin-bottom: 40px;
  }
  .single-new-date {
    margin-bottom: 40px;
  }
  .back-button {
    margin-bottom: 60px;
  }
}
/*================ REVIEWS ARCHIVE ===============*/
.archive-reviews .reviews-block {
  margin-top: 47px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.archive-reviews .left-side,
.archive-reviews .right-side {
  width: calc(50% - 10px);
}
.archive-reviews .review-item {
  margin-bottom: 50px;
}
.archive-reviews .review-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.archive-reviews .review-thumb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.archive-reviews .review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-reviews .review-title {
  font-size: 24px;
  line-height: 33px;
  color: #343434;
}
.archive-reviews .review-star {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.archive-reviews .review-star.star-full {
  background-image: url(../images/Star-full.svg);
}
.archive-reviews .review-stars {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.archive-reviews .review-star.star-empty {
  background-image: url(../images/Star.svg);
}
.archive-reviews .review-text {
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: rgba(52, 52, 52, 0.5);
}
.archive-reviews .reviews-form {
  background-color: #f6f6f6;
  padding: 35px 50px 70px 50px;
}
.archive-reviews .form-title {
  font-weight: normal;
  font-size: 24px;
  line-height: 33px;
  color: #343434;
  margin-bottom: 45px;
}
.archive-reviews .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.archive-reviews .form-row .wpcf7-form-control-wrap {
  width: calc(50% - 10px);
}
.archive-reviews .form-row .wpcf7-form-control-wrap input {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #fff;
  padding: 25px 20px;
  font-size: 16px;
  line-height: 22px;
  color: rgba(52, 52, 52, 0.5);
  font-family: "manrope", sans-serif;
  outline: none;
}
.archive-reviews .form-row .wpcf7-form-control-wrap input.wpcf7-not-valid,
.archive-reviews .wpcf7-form-control-wrap textarea.wpcf7-not-valid {
  border-color: red;
}
.archive-reviews .form-row .wpcf7-form-control-wrap input::placeholder {
  color: rgba(52, 52, 52, 0.5);
}
.archive-reviews .form-row .wpcf7-form-control-wrap input:focus {
  border-color: #95392a;
  color: #95392a;
}
.archive-reviews textarea {
  width: 100%;
  resize: none;
  background-color: #ffffff;
  border: 1px solid #fff;
  padding: 25px 20px;
  font-size: 16px;
  line-height: 22px;
  color: rgba(52, 52, 52, 0.5);
  font-family: "manrope", sans-serif;
  outline: none;
  height: 275px;
}
.archive-reviews textarea::placeholder {
  color: rgba(52, 52, 52, 0.5);
}
.archive-reviews textarea:focus {
  border-color: #95392a;
  color: #95392a;
}
.archive-reviews .form-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.archive-reviews .wpcf7-spinner {
  display: none;
}

.archive-reviews .wpcf7-list-item {
  margin-left: 0;
}
.archive-reviews .wpcf7-list-item-label::before {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(39, 73, 105, 0.5);
  box-sizing: border-box;
  flex-shrink: 0;
  top: 1px;
  left: 0;
  cursor: pointer;
}
.archive-reviews .wpcf7-list-item-label {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  line-height: 19px;
  display: block;
  color: #343434;
}
.archive-reviews .wpcf7-list-item-label a {
  color: #95392a;
  text-decoration: none;
  border-bottom: 1px solid #95392a;
}
.archive-reviews .wpcf7-list-item input {
  display: none;
}

.archive-reviews .wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #95392a;
  box-sizing: border-box;
  flex-shrink: 0;
  top: 6px;
  left: 5px;
  opacity: 0;
  cursor: pointer;
}
.archive-reviews .wpcf7-list-item-label:hover::after {
  opacity: 0.5;
}
.archive-reviews
  .wpcf7-list-item
  input:checked
  + .wpcf7-list-item-label::after {
  opacity: 1;
}
.archive-reviews .submit-button {
  background-color: #95392a;
  border-radius: 86px;
  padding: 15px 30px;
  font-size: 16px;
  line-height: 19px;
  cursor: pointer;
  outline: none;
  color: #ffffff;
  font-family: "manrope", sans-serif;
  border: 0;
}
.archive-reviews .submit-button:hover {
  background-color: #b75141;
}
.archive-reviews .submit-button:active {
  background-color: #723329;
}
.archive-reviews .submit-button:disabled {
  opacity: 0.7;
}
.archive-reviews .submit-button:disabled:hover {
  background-color: #95392a;
}
.archive-reviews .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.archive-reviews .page-numbers {
  display: block;
  position: relative;
  text-decoration: none;
  color: rgba(52, 52, 52, 0.15);
  width: 24px;
  height: 24px;
  margin: 0 10px;
  text-align: center;
}
.archive-reviews .page-numbers:hover {
  color: #95392a;
}
.archive-reviews .page-numbers:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -11px;
  width: 1px;
  height: 100%;
  background-color: rgba(52, 52, 52, 0.1);
}
.archive-reviews .page-numbers:first-child:before {
  display: none;
}
.archive-reviews .next.page-numbers:before {
  display: none;
}
.archive-reviews .prev.page-numbers + .page-numbers:before {
  display: none;
}
.page-numbers.current + .page-numbers:before {
  display: none;
}
.page-numbers.current {
  border-left: 0;
  color: #fff !important;
  position: relative;
  background-color: #95392a;
  border-radius: 50%;
}
.page-numbers.current:before {
  display: none;
}
.archive-reviews .next.page-numbers,
.archive-reviews .prev.page-numbers {
  background-image: url(../images/arr.svg);
  background-position: center;
  background-size: contain;
}
.archive-reviews .prev.page-numbers {
  transform: rotate(180deg);
}
@media screen and (max-width: 1699px) {
  .archive-reviews .review-thumb {
    width: 100px;
    height: 100px;
  }
  .archive-reviews .form-row .wpcf7-form-control-wrap input,
  .archive-reviews textarea {
    padding: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .archive-reviews .reviews-form {
    padding: 35px 30px 50px 30px;
  }
  .archive-reviews textarea {
    height: 220px;
  }
}
@media screen and (max-width: 991px) {
  .archive-reviews .form-row {
    flex-direction: column;
  }
  .archive-reviews .form-row .wpcf7-form-control-wrap {
    width: 100%;
  }
  .archive-reviews .form-row br {
    display: none;
  }
  .archive-reviews .form-row .wpcf7-form-control-wrap:first-child {
    margin-bottom: 15px;
  }
  .archive-reviews .form-row .wpcf7-form-control-wrap input,
  .archive-reviews textarea {
    padding: 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .archive-reviews .reviews-form {
    padding: 30px 20px;
  }
  .archive-reviews .form-bottom-row {
    flex-direction: column;
  }
  .archive-reviews textarea {
    height: 185px;
  }
  .archive-reviews .form-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  .archive-reviews .review-text {
    font-size: 14px;
  }
  .archive-reviews .review-title {
    font-size: 20px;
  }
  .archive-reviews .review-text {
    font-size: 14px;
  }
  .archive-reviews .review-star {
    margin-right: 3px;
  }
  .archive-reviews .review-thumb {
    width: 80px;
    height: 80px;
    margin-right: 14px;
  }
  .archive-reviews .page-numbers {
    margin: 0 6px;
  }
  .archive-reviews .page-numbers:before {
    left: -7px;
  }
}
@media screen and (max-width: 767px) {
  .archive-reviews .reviews-block {
    flex-direction: column;
  }
  .archive-reviews .left-side,
  .archive-reviews .right-side {
    width: 100%;
  }
  .archive-reviews .left-side {
    margin-bottom: 40px;
  }
}
/*================ FOOTER ===============*/

#footer {
  background-color: #333333;
  padding-top: 40px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
}
.top-footer {
  padding-bottom: 40px;
}
.footer-left {
  display: flex;
  width: 75%;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  max-width: 290px;
}
.footer-menu ul {
  margin: 0;
  padding: 0;
}
.footer-menu ul li {
  margin-bottom: 10px;
  list-style: none;
}
.footer-menu-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
  color: #878681;
}
.footer-menu a {
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #878681;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-menu a:hover {
  color: #d5cb71;
}
.footer-button {
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  border: 2px solid #f8df95;
  border-radius: 2px;
  padding: 10px 35px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
}
.footer-button:hover {
  background: #333333;
}
.footer-phone {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #878681;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-phone:hover {
  color: #f8df95;
}
.footer-phone img {
  margin-right: 15px;
  width: 30px;
  height: 30px;
  filter: grayscale(1);
}
.footer-phone:hover img {
  filter: none;
}
.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-socials a {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 20px;
}

.footer-socials a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
}
.footer-socials a:hover img {
  filter: none;
}
.bottom-footer {
  padding: 20px 0;
  border-top: 1px solid #c0c0c0;
}
#footer .policy-link {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  color: #ffffff;
  width: max-content;
  opacity: 0.7;
}
#footer .policy-link:hover {
  opacity: 1;
  text-decoration: none;
}
.developer-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.02em;
  opacity: 0.7;
  color: #ffffff;
}
.developer-link:hover {
  opacity: 1;
}
.developer-link img {
  margin-left: 20px;
}
.bottom-footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
@media only screen and (max-width: 1199px) {
  .footer-left {
    width: 64%;
  }
}
@media only screen and (max-width: 991px) {
  .footer-left {
    flex-direction: column;
  }
  .footer-menu {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .footer-menu ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding-right: 20px;
  }
  .footer-menu ul li {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-left {
    width: 50%;
  }
}
@media only screen and (max-width: 580px) {
  .footer-main {
    flex-direction: column-reverse;
  }
  .footer-button {
    width: max-content;
  }
  .footer-right {
    margin-bottom: 30px;
  }
  .footer-left {
    width: 100%;
  }
  footer .logo-wrap {
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  .bottom-footer .wrapper {
    flex-direction: column;
  }
  #footer .policy-link {
    margin-bottom: 20px;
  }
}
/*================ 404 ===============*/
.nf-page {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 50px;
}
.nf-page .error {
  font-weight: bold;
  font-size: 250px;
  line-height: 302px;
  margin-right: 52px;
  color: #333333;
}
.nf-page .nf-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
  color: #333333;
}
.nf-page .nf-desc {
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  margin-bottom: 30px;
}
.nf-page a {
  display: block;
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  border-radius: 2px;
  padding: 10px 35px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  width: max-content;
  color: #ffffff;
  border: 2px solid #fff;
  transition: 0.3s;
}
.nf-page a:hover {
  border-color: #f8df95;
  color: #333333;
  background: #fff;
}
@media only screen and (max-width: 991px) {
  .nf-page .error {
    font-size: 158px;
  }
}
@media only screen and (max-width: 767px) {
  .nf-page {
    flex-direction: column;
  }
  .nf-page .error {
    font-size: 200px;
    margin-right: 0;
    line-height: 235px;
  }
  .nf-page .text {
    max-width: 400px;
  }
  .nf-page .nf-title {
    text-align: center;
  }
  .nf-page .nf-desc {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
  .nf-page a {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 440px) {
  .nf-page .error {
    font-size: 143px;
    line-height: 157px;
  }
  .nf-page .nf-title {
    font-size: 20px;
    line-height: 26px;
  }
  .nf-page .nf-desc {
    font-size: 14px;
    line-height: 20px;
  }
  .nf-page a {
    padding: 10px 20px;
  }
}
/*================ TEXT ===============*/
.text-block h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
  color: #333333;
  margin-bottom: 30px;
  margin-top: 40px;
}
.text-block h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
  color: #333333;
  margin-bottom: 30px;
  margin-top: 40px;
}
.text-block h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #333333;
  margin-bottom: 20px;
  margin-top: 30px;
}
.text-block p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  margin-top: 0;
  margin-bottom: 10px;
}
.text-block ul,
.text-block ol {
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 22px;
}
.text-block li {
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  margin-bottom: 10px;
  padding-left: 5px;
}
@media screen and (max-width: 1199px) {
  .text-block h1,
  .text-block h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .text-block h3 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .text-block p,
  .text-block li {
    font-size: 16px;
    line-height: 24px;
  }
  .text-block h1,
  .text-block h2 {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .text-block h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
body.privacy-policy-page .text-block h1 {
  margin-top: 0;
}
/*================ Модалка ===============*/
.popup-fade {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999999;
  position: fixed;
  display: none;
}
.popup-fade:before {
  content: "";
  background: #333333;
  opacity: 0.8;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.popup-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup {
  position: relative;
  /*top: 20%;
  left: 50%;*/
  padding: 50px 55px;
  width: calc(100% - 30px);
  max-width: 570px;
  background-color: #fff;
  border-radius: 2px;
  /*margin-left: -200px;*/
  z-index: 99999;
  opacity: 1;
}
.popup-close {
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  right: 20px;
  cursor: pointer;
  filter: grayscale(1) brightness(0.1);
}
.popup-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.popup-close:hover {
  filter: none;
}
.popup-title {
  font-weight: 800;
  font-size: 36px;
  line-height: 42px;
  color: #333333;
  margin-bottom: 25px;
}
#popup-thanks .popup-title {
  margin-bottom: 0 !important;
}
.popup input {
  width: 100%;
  background-color: #e5e5e5;
  border-radius: 2px;
  border: 1px solid #fff;
  padding: 8px 25px;
  font-size: 18px;
  line-height: 24px;
  font-family: Gilroy, sans-serif;
  color: #333333;
  outline: none;
  margin-top: 5px;
}
.popup input::placeholder {
  color: rgba(52, 52, 52, 0.5);
}
.popup input.wpcf7-not-valid {
  border-color: #ff2200;
}
.popup p {
  margin: 0;
}
#popup br {
  display: none;
}
.popup label {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #333333;
}
.popup .wpcf7-form-control-wrap {
  margin-bottom: 15px;
  display: block;
}
.popup .modal-link {
  position: relative;
  font-size: 14px;
  line-height: 16px;
  color: #232323;
  display: block;
  margin-top: 10px;
}
.popup .modal-link a {
  text-decoration: none;
  color: #232323;
  border-bottom: 1px solid #232323;
}
.popup .modal-link a:hover {
  border-color: #fff;
}
.popup .wpcf7-submit {
  display: block;
  background: linear-gradient(to right, #bf953f, #d5cb71, #b38728);
  border-radius: 2px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  cursor: pointer;
  outline: none;
  color: #ffffff !important;
  font-family: "Gilroy", sans-serif;
  border: 0;
  width: 100%;
  margin-top: 20px;
  border: 2px solid #fff;
}
.popup .wpcf7-submit:hover {
  border-color: #f8df95;
  color: #333333 !important;
  background: #fff;
}
@media only screen and (max-width: 410px) {
  .popup-title {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 18px;
  }
  .popup {
    width: 300px;
    padding: 20px;
  }
  .popup input {
    padding: 11px 13px;
    font-size: 14px;
    line-height: 18px;
  }
  .popup .modal-link {
    font-size: 13px;
    line-height: 18px;
  }
  .popup .wpcf7-submit {
    padding: 12px 30px;
    margin-top: 20px;
  }
}
/*================ CF7 ===============*/
.wpcf7-response-output,
.wpcf7-not-valid-tip,
.wpcf7-spinner {
  display: none !important;
}
