/* pre-header */
.pre-header {
   padding: 0.375rem 0;
   transition: 200ms ease-out;
   transition-property: margin-top;
	-webkit-transform: translateZ(0);
}
.ph_content {
   gap: 2rem;
}
.ph_work {
   font-size: 0.725rem;
   font-weight: 500;
   gap: 0.35em;
}
.ph_dot {
   width: 0.875em;
   height: 0.875em;
   flex: 0 0 0.875em;
   border-radius: 0.875em;
	margin-top: -0.2em;
}
.working .ph_dot {
   background: #04cf19;
}
.notworking .ph_dot {
   background: #eb5757;
}
.ph_socials {
   gap: 0.625rem;
}
.ph_contucts,
.ph_phones {
   gap: 1.25rem;
}
.ph_socials a {
   width: 1.5rem;
   transition: 250ms ease-out;
   transition-property: opacity;
}
.ph_socials a:hover {
   opacity: 0.65;
}
.ph_socials a img{
	white-space:nowrap;
	text-overflow:ellipsis;
}
.ph_phones a {
   font-size: 0.825rem;
   font-weight: 500;
   margin-bottom: -0.125em;
}
@media screen and (max-width: 678px) {
   .ph_phones {
      display: none;
   }
}
@media screen and (max-width: 420px) {
   .ph_content {
      gap: 1rem;
   }
   .ph_contucts,
   .ph_phones,
   .ph_socials {
      gap: 0.5rem;
   }
}/* header */
.header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 100;
   background: rgba(255, 255, 255, 1);
}
.header-main {
   padding: 0.725rem 0;
}
body {
   padding-top: 7.25rem;
}
.btn.open-nav {
   margin-left: 3rem;
   border: 1px solid rgb(48, 34, 52, 0.225);
   display: none;
}

.btn.open-nav:before {
   background: #fef3dd;
}

.header-content {
   display: grid;
   grid-template-columns: 1fr 2fr;
}
.header-logo {
   max-width: 8.75rem;
   display: block;
   margin-right: 3rem;
   user-select: none;
}
.down-border,
.nav li.menu-item-has-children {
   position: relative;
}
.nav > li.menu-item-has-children {
   padding-right: 0.5rem;
}
.nav > li.menu-item-has-children::before {
   content: "";
   position: absolute;
   top: 0.65rem;
   right: -0.7rem;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 48'%3E%3Cpath d='m6 9 6 6 6-6m0 30-6-6-6 6' stroke='%23302234' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
   width: 1rem;
   height: 1rem;
   background-size: 100% 200%;
   background-position: 0 0%;
   background-repeat: no-repeat;
   transition: 350ms ease-out;
   transition-property: background-position;
}
.nav > li.menu-item-has-children:hover::before {
   background-position: 0 100%;
}
.nav li a,
button.down-border {
   display: block;
   position: relative;
   padding: 0.5rem 0;
   line-height: 1.2em;
   font-weight: 500;
}
/* defoult menu */
/* .nav li ul.sub-menu {
   position: absolute;
   left: -1rem;
   padding: 0;
   list-style: none;
   display: flex;
   justify-content: flex-start;
   align-items: flex-start;
   flex-direction: column;
   width: max-content;
   padding: 0.5rem 1rem;
   border-radius: 0.5rem;
   visibility: hidden;
   opacity: 0;
   pointer-events: none;
   transform: translate(0, 0.25rem);
   transition: 250ms ease-in-out;
   transition-property: opacity, transform, visibility;
   box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12),
      0px 0px 4px 0px rgba(0, 0, 0, 0.06);
   background: #fff;
}
.nav li.menu-item-has-children:hover > ul.sub-menu {
   visibility: visible;
   opacity: 1;
   pointer-events: all;
   transform: translate(0, 0);
} */
/* full menu */
.fixed-nav > ul > li.menu-item-has-children {
   position: relative;
}
.fixed-nav > ul > li.menu-item-has-children::after {
   content: "";
   position: absolute;
   width: calc(100% + 0.5rem);
   bottom: -0.75rem;
   height: 1.25rem;
}
.fixed-nav > ul > li.menu-item-has-children > ul.sub-menu {
   position: fixed;
   left: 0;
   transform: translate(0, 1em);
   list-style: none;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   row-gap: 2rem;
   column-gap: 1.5rem;
   width: 100%;
   padding-left: calc((100% - 83.875rem) / 2 + 2rem);
   padding-right: calc((100% - 83.875rem) / 2 + 2rem);
   padding-bottom: 1.25rem;
   padding-top: 1.25rem;
   max-height: calc(100vh - 8rem);
   overflow-y: auto;
   box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08), 0 0 4px 0 rgba(0, 0, 0, 0.04);
   background: white;
   border-bottom-left-radius: 2rem;
   border-bottom-right-radius: 2rem;
   overflow-y: auto;
   visibility: hidden;
   opacity: 0;
   transition: 250ms ease-in-out;
   transition-property: opacity, transform, visibility;
}
@media screen and (max-width: 1240px) {
   .fixed-nav > ul > li.menu-item-has-children > ul.sub-menu {
      padding-left: 3.5rem;
      padding-right: 3.5rem;
   }
}
.fixed-nav > ul > li.menu-item-has-children:hover > ul.sub-menu {
   visibility: visible;
   opacity: 1;
   transform: translate(0, 0.65em);
}
.fixed-nav > ul > li.menu-item-has-children ul {
   list-style: none;
   padding: 0;
}
.fixed-nav
   > ul
   > li.menu-item-has-children
   > ul.sub-menu
   li.menu-item-has-children
   > a {
   pointer-events: none;
   font-size: 0.825rem;
   padding: 0;
   margin-bottom: 0.525rem;
   color: var(--gray-75);
   font-weight: 400;
}
.fixed-nav > ul > li.menu-item-has-children > ul.sub-menu li > a {
   width: max-content;
}
.fixed-nav > ul > li.menu-item-has-children ul li.goto-all {
   grid-column: span 3;
   justify-self: end;
   overflow: hidden;
	margin-top: -0.5rem;
}
.fixed-nav > ul > li.menu-item-has-children ul li.goto-all a {
   z-index: 2;
   position: relative;
padding: 0.675rem 1.35rem 0.675rem 1.35rem;
   border-radius: 2rem;
   border: 1px solid var(--gray-50);
   display: flex;
   align-items: center;
   column-gap: 0.375rem;
}
.fixed-nav > ul > li.menu-item-has-children ul li.goto-all a:before {
   content: "";
   position: absolute;
   top: -1px;
   left: -1px;
   width: calc(100% + 2px);
   height: calc(100% + 2px);
   transform: scale(0);
   transition: 225ms ease-out;
   transition-property: transform;
   z-index: -1;
   background: var(--main);
   border-radius: inherit;
}
.fixed-nav > ul > li.menu-item-has-children ul li.goto-all a:after {
   content: "";
   display: block;
   width: 1.25rem;
   height: 1.25rem;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath d='M4.2 10h11.6M10 4.2l5.8 5.8-5.8 5.8' stroke='%23302234' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.fixed-nav > ul > li.menu-item-has-children ul li.goto-all a:hover:before {
   transform: scale(1);
}
.nav li.menu-item-has-children > a::before {
   content: none;
}
/* full menu end */
.nav li {
   margin: 0 1rem;
}
.nav li ul.sub-menu li {
   margin: 0.125rem 0;
   width: auto;
}
.nav li ul.sub-menu li a {
   font-size: 0.875rem;
   padding: 0.35rem 0 0.5rem 0;
}
.nav li a:before,
.down-border:before,
button.down-border:before {
   content: "";
   position: absolute;
   width: 0%;
   height: 0.1025rem;
   bottom: 0.25rem;
   background: var(--black-80);
   border-radius: 0.25rem;
   right: 0;
   left: auto;
   transition: 250ms ease-in-out;
   transition-property: width, right, left;
}
.down-border:before {
   bottom: 0rem;
}
.nav li a:hover:before,
.down-border:hover:before {
   width: 100%;
   transform-origin: center center;
   left: 0;
   right: auto;
}
.nav li.current-menu-item > a:before,
.nav li.current-menu-item > a:hover:before {
   width: 100%;
   left: 0;
   right: auto;
}
.overlay,
.menu-panel,
.modal {
   position: fixed;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
   opacity: 0;
   pointer-events: none;
   visibility: hidden;
}
.modal {
   z-index: 150;
}
.menu-panel {
   z-index: 120;
}
.modal,
.menu-panel {
   overflow-y: auto;
   transform: translate(0, 5rem);
   transition: 450ms cubic-bezier(0.25, 1, 0.5, 1);
   transition-property: visibility, opacity, transform;
}

.overlay {
   background: rgba(48, 34, 52, 0.5);
   z-index: 110;
   transition: 200ms ease-in;
   transition-property: opacity, visibility;
}
.overlay.open,
.menu-panel.open,
.modal.open {
   visibility: visible;
   pointer-events: all;
   opacity: 1;
}
.menu-panel.open,
.modal.open {
   transform: translate(0, 0);
}
.panel-inner {
   background: rgba(48, 34, 52, 0.929);
   color: #fff;
}
.panel-inner,
.modal-inner {
   padding: 1.75rem 0 2rem 0;

   display: flex;
}
.panel-inner {
   min-height: calc(100% - 3rem);
   margin-top: 3rem;
}
.modal-inner {
   min-height: calc(100% - 2rem);
   margin-top: 2rem;
}
.menu-header {
   display: grid;
   grid-template-columns: 1fr auto;
   align-items: center;
   align-self: start;
}
.menu-slogan p {
   color: var(--gray-5);
   font-weight: 500;
   font-size: 0.925rem;
   margin: 0;
}
.print-zone {
   position: relative;
   display: block;
}
.print-zone:after {
   content: "|";
   margin-left: 0.125em;
   animation: type 700ms linear infinite alternate;
}
.menu-slogan p + p {
   margin-left: 1em;
}
.menu {
   display: grid;
   grid-template-columns: 1fr;
   align-items: end;
   align-self: center;
}

.menu ul {
   list-style: none;
   padding: 0;
   margin: 0;
   font-size: 3.5rem;
}
.menu-content {
   display: grid;
   row-gap: 3rem;
   grid-template-rows: min-content 1fr auto;
}
.menu-content,
.modal-content {
   width: calc(100vw - 4rem);
   max-width: 83.875rem;
   margin: 0 auto;
   padding: 0 2rem;
}
.menu-footer {
   display: grid;
   grid-template-columns: 1fr max-content 1fr;
   align-items: end;
   column-gap: 2rem;
   margin-top: -6rem;
}
.menu-footer .cta {
   justify-self: end;
   color: var(--black-100);
}
.menu-footer a {
   display: block;
   font-size: 1.85rem;
   justify-self: start;
}
.menu-footer a.down-border:before {
   background: var(--black-40);
}
.menu-footer .socials {
   margin-bottom: 0.45rem;
}
.menu-footer .socials a {
   font-size: 1.125rem;
}
.menu-footer .socials a + a {
   margin-left: 1rem;
}

.menu li {
   display: flex;
   justify-content: flex-start;
   align-content: center;
   flex-wrap: wrap;
}
.menu li.current-menu-item > a,
.menu li.current-menu-item > a:hover {
   color: var(--main);
}
.menu li a {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   position: relative;
   transition: 250ms ease-in;
   transition-property: color;
}
.menu li a:after {
   content: "";
   margin-left: 0.25em;
   margin-bottom: 0.075em;
   width: 0.65em;
   height: 0.65em;
   flex: 0 0 0.65em;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M7 7h10v10' stroke='%23AEA7B0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
   background-size: 100% 200%;
   background-position: 0 50%;
   background-repeat: repeat;
   transition: 350ms ease-out;
   transition-property: background-position;
}

.menu li a:hover:after {
   background-position: 0 250%;
}
.menu li.menu-item-has-children > a:after {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 48'%3E%3Cpath d='m6 9 6 6 6-6m0 30-6-6-6 6' stroke='%23AEA7B0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
   background-position: 0 0%;
   margin-bottom: 0;
   margin-top: 0.1em;
}
.menu li.menu-item-has-children > a.open:after {
   background-position: 0 100%;
}
.menu li.menu-item-has-children {
   display: flex;
   flex-direction: column;
   align-content: flex-start;
}
.menu li.menu-item-has-children .sub-menu {
   font-size: 0.5em;
   margin: 0.75em 0 1.25em 0.75em;
   display: none;
}
.menu li.menu-item-has-children .sub-menu a[href="#"] {
   color: #888;
}
.menu li.menu-item-has-children .sub-menu .sub-menu {
   display: block;
   font-size: 1rem;
}
.menu li.menu-item-has-children .sub-menu li + li {
   margin-top: 0.5em;
}
.menu li.menu-item-has-children .sub-menu li a:after {
   display: none;
}
.menu li a:hover,
.menu li.menu-item-has-children > a.open {
   color: var(--main);
}
.btn.hide-menu {
   color: var(--gray-25);
   border: 1px solid var(--black-80);
}
.hide-menu:before {
   background: var(--black-80);
}
@media screen and (max-width: 1054px) {
   .header-content {
      grid-template-columns: 20rem 1fr;
   }
   .btn.open-nav {
      display: flex;
   }
   .nav.no-list {
      display: none;
   }
}
@media screen and (max-width: 1024px) {
   .header-logo {
      margin-right: 2rem;
   }
   .btn.open-nav {
      margin-left: 2rem;
   }
   .menu-footer {
      grid-template-columns: 1fr 1fr 1fr;
   }
   .menu ul {
      font-size: 3rem;
   }
   .menu-content,
   .modal-content {
      padding: 0 1.25rem;
      width: 100%;
   }
}
@media screen and (max-width: 924px) {
   .menu-footer {
      grid-template-columns: 1fr;
      justify-items: start;
      row-gap: 2rem;
      margin-top: 1.5rem;
   }
   .menu-footer .socials {
      order: 2;
   }
   .menu-footer .cta {
      justify-self: center;
   }
   .menu-footer .socials {
      margin-bottom: 0rem;
      display: inline-flex;
      flex-wrap: wrap;
      margin: -0.25rem -0.5rem;
      justify-content: flex-start;
   }
   .menu-footer .socials a + a {
      margin-left: unset;
   }
   .menu-footer .socials.c-e a {
      margin: 0.25rem 0.5rem;
      font-size: 0.95rem;
   }
}
@media screen and (max-width: 768px) {
   .menu ul {
      font-size: 2.2rem;
   }
   .menu-footer a {
      font-size: 1.5rem;
   }
   .menu li + li {
      margin-top: 0.5em;
   }
   .menu li.menu-item-has-children .sub-menu li + li {
      margin-top: 1em;
   }
   .menu-content {
      grid-template-rows: auto min-content 1fr;
      align-content: start;
   }
   .menu-footer {
      align-self: end;
   }
   .menu {
      margin-top: 1rem;
   }
}
@media screen and (max-width: 548px) {
   .header-logo {
      max-width: 7.25rem;
   }
   .header-action .btn {
      display: none;
   }
   .header-content {
      grid-template-columns: 1fr 1fr;
   }
   .btn.open-nav {
      margin-left: 0;
   }
   .header-main {
      padding: 0.5rem 0;
   }

   .menu-content {
      row-gap: 2rem;
   }
   .panel-inner {
      padding: 1.5rem 0 1rem 0;
   }
}
@media screen and (max-width: 392px) {
   .menu-header .btn .button-text {
      display: none;
   }
   .menu-header .btn {
      padding: 0.625rem;
   }
   .menu-header .btn .icon {
      margin: 0;
   }
}/* backcall */
.backcall {
   position: fixed;
   right: 0;
   top: 2.75rem;
   z-index: 101;
   transform: translate(0, 1.5rem);
   visibility: hidden;
   opacity: 0;
   pointer-events: none;
   transition: 250ms cubic-bezier(0.5, 0.04, 1, 1);
   transition-property: transform, opacity, visibility;
   width: 100%;
}

.backcall-content {
   padding: 1rem;
   border-radius: 0.675rem;
   max-width: 22rem;
   background: #fff;
   box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12),
      0px 0px 4px 0px rgba(0, 0, 0, 0.06);
}
.backcall.open {
   transform: translate(0, 0rem);
   visibility: visible;
   opacity: 1;
}
.backcall.open .backcall-content {
   pointer-events: all;
}

.b_header {
   gap: 2rem;
   margin-bottom: 0.85rem;
}
.b_name {
   font-size: 0.925rem;
   font-weight: 500;
}
.b_send {
   display: none;
}
.sended .b_send {
   display: block;
}
.b-success {
   background: var(--main);
   padding: 1.25rem;
   margin: 1rem -0.5rem;
   border-radius: 0.5rem;
}
.b-s_icon {
   background: #fff;
   padding: 0.5rem;
   border-radius: 0.35rem;
}
.b-success .b-s_icon img {
   width: 4rem;
   height: 4rem;
}
.b_title {
   font-weight: 500;
   font-size: 1.2rem;
   margin-bottom: 0.35rem;
   line-height: 1.15;
}
.b_sub {
   color: var(--black-80);
   font-size: 0.925rem;
}
.b_content{
	margin-bottom:0.5rem;
}
.b_content .input-row + .input-row {
   margin-top: 1.5rem;
}
.alternate-btn .submit-btn .btn {
   padding: 1rem 2rem;
   font-size: 0.925rem;
   width: 100%;
}
.alternate-btn .submit-btn .btn:before {
   padding-bottom: 0;
}
.alternate-btn .submit-btn .btn:after {
   border-radius: 2rem;
}
.alternate-btn.form-submit{
	margin-top:1.25rem;
}
.b_content .checkbox {
   margin-top: 0.85rem;
}
.sended .b_content {
   display: none;
}
.b_content .wpcf7-not-valid-tip, .b_content .checkbox .wpcf7-not-valid-tip{
	font-size:0.75rem;
}
.b_content .checkbox-label{
	font-size:0.825rem;
	margin-top:0.0625rem;
}
.b_content .checkbox .wpcf7-not-valid-tip{
	bottom:-1rem;
}
.b_content .checkbox label span.wpcf7-list-item-label{
	width: 2rem;
    height: 1.2rem;
}
.b_content .checkbox label span.wpcf7-list-item-label:before{
	width: 0.8rem;
    height: 0.8rem;
}
@media screen and (max-width: 480px) {
   .backcall {
      right: 0rem;
      bottom: 1rem;
   }
}.modal-inner {
   background: white;
}
.modal-descr a {
   display: inline-block;
   line-height: inherit;
   vertical-align: bottom;
}
.modal-descr {
   font-size: 1.35rem;
}
.modal-header {
   display: grid;
   grid-template-columns: 1fr auto;
   align-items: center;
   margin-bottom: 0.5rem;
}
.modal-header .btn {
   grid-column: 2/3;
}
.modal-title {
   font-size: 2.75rem;
   margin: 0;
}
.success-content {
   max-width: 54rem;
   margin: 0 auto;
}
.success-content .modal-descr {
   margin-top: 0.5rem;
}
.success-content .to-blog {
   margin-top: 2rem;
}
.success-img {
   background: var(--main);
   padding: 3rem;
   margin-bottom: 2rem;
   margin-top: 2rem;
   border-radius: 0.5rem;
   overflow: hidden;
	position:relative;
}
.success-icon {
   padding: 1rem;
   border-radius: 1rem;
   background: white;
   box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
   transform: translate(0, 15%);
   opacity: 0;
   transition: 250ms ease-in 450ms;
   transition-property: transform, opacity;
}
.modal.open .success-icon {
   transform: translate(0, 0);
   opacity: 1;
}
.success .success-icon img {
   width: 6rem;
}
@media screen and (max-width: 1024px) {
   .modal-content {
      width: 100%;
      padding: 0 1.25rem;
   }
   .modal-title {
      font-size: 2.25rem;
   }
   .modal-descr {
      font-size: 1.25rem;
   }
   .modal-header {
      margin-top: 0;
      margin-bottom: 0.75rem;
   }
}
@media screen and (max-width: 768px) {
   .modal-title {
      font-size: 2rem;
   }
   .modal-descr {
      font-size: 1.125rem;
   }
}
@media screen and (max-width: 540px) {
   .modal-title {
      font-size: 1.5rem;
      line-height: 1.25;
   }
   .modal-descr {
      font-size: 1rem;
   }
}
@media screen and (max-width: 392px) {
   .modal-header .btn .button-text {
      display: none;
   }
   .modal-header .btn {
      padding: 0.625rem;
   }
   .modal-header .btn .icon {
      margin: 0;
   }
   .modal-inner {
      padding-top: 1.5rem;
   }
}/* form */
.count-to{
	margin-left:0.75ch;
}
.input-count{
	color: var(--black-40);
	font-size:0.785rem
}
.country-input,.more-info {
   display: none;
}
.wpcf7 .screen-reader-response {
   position: absolute;
   overflow: hidden;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
   height: 1px;
   width: 1px;
   margin: -1px;
   padding: 0;
   border: 0;
   word-wrap: normal !important;
}

.input input,
.input textarea {
   width: 100%;
   padding: 0.75rem 0 0.625rem 0;
   line-height: 1.5rem;
   border: none;
   border-bottom: 1px solid var(--gray-35);
   transition: 200ms ease-in;
   transition-property: border;
}
.input.hiden-input {
   display: none;
}
.input input:-webkit-autofill,
.input input:-webkit-autofill:active,
.input input:-webkit-autofill:focus,
.input input:-webkit-autofill:hover {
   box-shadow: inset 0 0 0 30px #fff !important;
}
.input textarea {
   overflow: unset;
   resize: none;
   -webkit-appearance: none;
}
.input textarea.auto {
   overflow-y: hidden;
}
.input input:focus,
.input textarea:focus {
   border-bottom: 1px solid var(--main-dark);
   outline: none;
}

.form-input {
   position: relative;
}
.input label {
   font-size: 1rem;
   margin: 0;
   padding: 0;
   position: absolute;
   top: 0.75rem;
   left: 0;
   color: var(--black-40);
   pointer-events: none;
   transition: 200ms ease-in;
   transition-property: transform;
   transform-origin: left top;
}

.input.has-value label,
.input.focus label {
   transform: translate(0, -1.275rem) scale(0.8);
}
.wpcf7-not-valid-tip,
.checkbox .wpcf7-not-valid-tip {
   font-size: 0.825rem;
   font-weight: 500;
   display: block;
   margin-top: 0.25rem;
   color: #d92d20;
}
.form-col-2 {
   display: grid;
   grid-template-columns: 1fr 1fr;
   column-gap: 2rem;
   row-gap: 3rem;
}
.form-col-3 {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
}
.form-col-3 .line:first-child {
   flex-basis: calc(50% - 2rem);
   flex-shrink: 0;
}
.form-col-3 .line:last-child {
   /*flex-grow: 1;*/
   flex:1 1 0;
}
.form-col-2 .form-title {
   grid-column: span 2;
}
.form-row {
   margin-top: 2.5rem;
}
.inline-form .form-row {
   margin-top: 2rem;
}
.inline-form{
   margin-top: 1rem;
}
.form-title {
   font-size: 1.5rem;
   margin-bottom: 1.25rem;
}
.radio-group input {
   visibility: hidden;
   opacity: 0;
   z-index: -1;
   overflow: hidden;
   width: 0;
   height: 0;
}
.radio-group label,
.radio-group .wpcf7-list-item {
   margin: 0;
}
.radio-group .wpcf7-list-item-label {
   border-radius: 2rem;
   font-weight: 500;
   display: inline-block;
   padding: 0.5rem 1rem;
   font-size: 0.95rem;
   line-height: 1;
   color: var(--black-100);
   background: rgba(48, 34, 52, 0.04);
   transition: 200ms ease-in;
   transition-property: background;
}
.radio-group .wpcf7-form-control {
   margin: 0rem 0 0 -0.5rem;
   display: inline-flex;
   flex-wrap: wrap;
}
.radio-group .wpcf7-list-item-label {
   margin: 0.5rem 0 0 0.5rem;
}
.radio-group .wpcf7-list-item-label:hover {
   background: rgba(48, 34, 52, 0.09);
   cursor: pointer;
}

.radio-group input:checked + .wpcf7-list-item-label {
   background: var(--main);
}
.radio-group + .input {
   margin-top: 1.25rem;
}
.form-submit {
   flex-direction: column;
   margin-top: 2rem;
}
.submit-btn {
   display: inline;
}
.submit-btn .btn {
   padding: 2.25rem;
   position: relative;
   line-height: 1;
   font-weight: 500;
   font-size: 1rem;
}
.submit-btn .btn:after {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   transform: scale(1);
   transition: 250ms ease-in-out;
   transition-property: transform;
   background: var(--main);
   border-radius: 100%;
}
.submit-btn .btn span {
   position: relative;
   z-index: 2;
}
.submit-btn .btn:hover:after {
   transform: scale(1.15);
}
.submit-btn .btn {
   text-align: center;
}
.submit-btn .btn:before {
   padding-bottom: 100%;
   content: "";
   display: table;
   box-sizing: border-box;
   width: 0;
   height: 100%;
   outline: none;
   border: none;
}

@media screen and (max-width: 1024px) {
   .form-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
   }
   .form-submit {
      margin-top: 1.75rem;
   }
   .form-col-3 {
       flex-wrap: wrap;
   }
   .form-col-3 .line {
      flex: 1 1 0;
   }
   .form-col-3 .line:first-child {
      flex-basis: 100%;
   }
}
@media screen and (max-width: 768px) {
   .form-title {
      font-size: 1.25rem;
   }
   .form-col-2 {
      column-gap: 1rem;
      row-gap: 2rem;
   }
}
@media screen and (max-width: 540px) {
   .form-col-2 {
      grid-template-columns: 1fr;
      row-gap: 1.5rem;
   }
   .radio-group .wpcf7-list-item-label {
      font-size: 0.875rem;
   }
   .submit-text {
      font-size: 0.825rem;
   }
   .form-col-3 {
      flex-direction: column;
   }
}

/* checkbox */
.checkbox {
   position: relative;
   font-size: 0.925rem;
   margin-top: 2rem;
}
.checkbox + .checkbox{
	margin-top:1.75rem;
}
.checkbox label {
   display: flex;
   justify-content: flex-start;
   align-items: flex-start;
   margin: 0;
   cursor: pointer;
}
.checkbox label a {
   display: inline-block;
   color: var(--black-100);
}
.checkbox label input {
   position: absolute;
   width: 1px;
   height: 1px;
   z-index: -1;
   visibility: hidden;
   overflow: hidden;
}
.checkbox-label {
   margin-top: 0.125rem;
   color: var(--black-60);
}
.checkbox label span.wpcf7-list-item-label {
   display: block;
   width: 2.6rem;
   height: 1.5rem;
   background: rgba(48, 34, 52, 0.1);
   font-size: 1px;
   color: transparent;
   border-radius: 1rem;
   position: relative;
   margin-right: 0.65rem;
   transition: 225ms ease-in;
   transition-property: background;
}
.checkbox label span.wpcf7-list-item-label:before {
   content: "";
   position: absolute;
   width: 1.1rem;
   height: 1.1rem;
   border-radius: 100%;
   background: white;
   z-index: 2;
   left: 0.2rem;
   top: 0.2rem;
   transition: 225ms ease-in;
   transition-property: transform;
}
.checkbox input:checked + span.wpcf7-list-item-label:before {
   transform: translate(100%, 0);
}
.checkbox input:checked + span.wpcf7-list-item-label {
   background: var(--main);
}
.checkbox .wpcf7-not-valid span.wpcf7-list-item-label {
   background: #ff766b;
}
.checkbox .wpcf7-not-valid-tip {
   position: absolute;
   bottom: -1.35rem;
}
.shower {
   position: fixed;
   bottom: 3rem;
   right: 2rem;
   flex-direction: column;
   justify-items: flex-end;
   align-items: flex-end;
   z-index: 90;
   pointer-events: none;
}
.show-btn,
.show-in li,
.shower {
   display: flex;
}
.show-in {
   padding: 0;
   margin: 0;
}
.show-btn,
.show-in li a {
   padding: 0.875rem;
   border-radius: 3rem;
}
.show-in li a,
.show-btn {
   transition: 200ms ease-in;
   transition-property: background;
}
.show-in li a,
.show-show .show-btn {
   background: var(--gray-20);
}
.show-btn,
.show-in li a:hover {
   background: var(--main-light);
}
.show-in li + li {
   margin-top: 1rem;
}
.show-in li {
   transform: translate(0, 75%);
   visibility: hidden;
   opacity: 0;
   pointer-events: none;
   transition: 200ms ease-in;
   transition-property: visibility, opacity, transform;
}
.show-in li:nth-child(3) {
   transition-delay: 0ms;
}
.show-in li:nth-child(2) {
   transition-delay: 50ms;
}
.show-in li:nth-child(1) {
   transition-delay: 100ms;
}
.show-show .show-in li,
.show-in li.show-action {
   pointer-events: all;
   transform: translate(0, 0);
}
.show-in li.show-action {
   transition: none;
}
.show-btn,
.show-in li {
   justify-content: flex-end;
   align-items: center;
}
.show-in li img,
.show-icons {
   width: 1.5rem;
   height: 1.5rem;
}
.show-name {
   font-size: 0.75rem;
   margin-right: 0.75rem;
   font-weight: 500;
   pointer-events: none;
   position: absolute;
   right: 100%;
   top: 50%;
   transform: translate(0, -50%);
   white-space: nowrap;
   padding: 0.25rem 0.5rem;
   border-radius: 1rem;
   background: var(--black-100);
   color: white;
	line-height:1.25;
}
.show-icons .icon,
.show-name {
   transition: 225ms ease-in-out;
   transition-property: visibility, opacity;
}
.show-show .show-in li.show-action:hover .show-name,
.show-icons .icon,
.show-name,
.show-show .show-icons .icon.open-show {
   visibility: hidden;
   opacity: 0;
}
.show-in li:hover .show-name,
.show-icons .icon.open-show,
.show-show .show-icons .icon.close-show,
.show-show .show-in li,
.show-in li.show-action {
   opacity: 1;
   visibility: visible;
}
.show-icons,
.show-in li {
   position: relative;
}
.show-icons .icon {
   position: absolute;
}
@media screen and (max-width: 1024px) {
   .show-icons,
   .show-in li img {
      width: 1.25rem;
      height: 1.25rem;
   }
   .show-in li + li {
      margin-top: 0.75rem;
   }
   .shower {
      bottom: 8rem;
      right: 1rem;
   }
}
.page-header {
   margin-top: 4rem;
   margin-bottom: 6rem;
}
.has-back {
   margin-top: 3.85rem;
}
.page-title {
   font-size: 4rem;
   line-height: 1.15;
   margin-left: -0.05em;
}
.has-cat .page-title {
   margin-bottom: 1.5rem;
}
.page-header.has-img .header-img {
   margin-top: 2.35rem;
   border-radius: 0.75rem;
   overflow: hidden;
}
.iconed-title {
   display: grid;
   grid-template-columns: 1fr 10rem;
   column-gap: 2rem;
   row-gap: 1.5rem;
   align-items: center;
}
.iconed-title .page-title {
   margin-top: 1rem;
   margin-bottom: 1rem;
}
.header-icon {
   margin-bottom: 0rem;
   background: var(--gray-5);
   border-radius: 1rem;
   padding: 7.5% 7.5%;
}
.has-back .back-link {
   margin-bottom: 2rem;
}
.has-back.has-icon .back-link {
   margin-bottom: 0.5rem;
}
.back-link {
   margin-bottom: 0.5rem;
}
.back-link a {
   line-height: 1.25rem;
   font-weight: 500;
}
.back-link a .icon {
   font-size: 1.125rem;
   transition: 450ms cubic-bezier(0.54, 0, 0.1, 1) 10ms;
   transition-property: transform;
}
.slide-left {
   width: 1.125rem;
   overflow: hidden;
   margin-right: 0.25rem;
}
.back-link a:hover .slide-left .icon {
   transform: translate(-100%, 0);
}
.page-descr {
   font-size: 1.375rem;
}
.page-descr p {
   margin: 0;
}
.page-descr p.decore-rect {
   position: relative;
   padding-left: 1.25em;
}
.page-descr p.decore-rect::before {
   content: "";
   position: absolute;
   width: 0.75em;
   height: 0.75em;
   left: 0;
   top: 0.35em;
   background: var(--main);
}
@media screen and (max-width: 1120px) {
   .page-title {
      font-size: 3.5rem;
   }
}
@media screen and (max-width: 1024px) {
   .page-title {
      font-size: 3rem;
   }
   .page-header {
      margin-top: 4rem;
      margin-bottom: 4rem;
   }
   .page-header.has-back {
      margin-top: 3rem;
   }
   .iconed-title {
      grid-template-columns: 1fr 8rem;
   }
}
@media screen and (max-width: 664px) {
   .page-header.has-back {
      margin-top: 1.5rem;
   }
   .has-back .back-link {
      margin-bottom: 1.5rem;
   }
   .iconed-title {
      grid-template-columns: 1fr;
      row-gap: 1rem;
      margin-top: 2.5rem;
   }
   .page-title {
      font-size: 2.5rem;
   }
   .iconed-title .page-title {
      margin-top: 0.5rem;
      margin-bottom: 0;
   }
   .iconed-title .page-descr,
   .iconed-title .page-title {
      order: 2;
   }
   .header-icon {
      max-width: 10rem;
      padding: 1rem;
   }
}
@media screen and (max-width: 540px) {
   .page-header {
      margin-top: 3rem;
      margin-bottom: 2rem;
   }
   .page-title {
      font-size: 2.25rem;
   }
   .page-descr {
      font-size: 1.125rem;
   }
   .header-icon {
      max-width: 8rem;
      padding: 0.75rem;
   }
}
.cat {
   display: inline-flex;
   margin: 0rem 0 0 -0.5rem;
   flex-wrap: wrap;
}
.cat > li {
   margin: 0.5rem 0 0 0.5rem;
   line-height: 1;
}
.cat > li a,
.cat > li span {
   font-size: 0.875rem;
   padding: 0.375rem 0.75rem;
   border-radius: 2rem;
   font-weight: 500;
   display: block;
}
.cat-xl.cat > li a,
.cat-xl.cat > li span {
   padding: 0.5rem 1rem;
   font-size: 0.95rem;
}
.cat > li a,
.cat > li span {
   color: var(--black-100);
   background: rgba(48, 34, 52, 0.04);
}
.cat > li a {
   transition: 250ms ease-in;
   transition-property: background;
}
.cat > li a.active,
.cat > li a.active:hover {
   background: var(--main);
}
.cat > li a:hover {
   background: rgba(48, 34, 52, 0.09);
}
.cat.cat-light > li a,
.cat.cat-light > li span {
   background: rgba(255, 255, 255, 0.3);
   color: white;
}

.load-more {
   position: relative;
}
.load-more:after {
   padding-bottom: 100%;
   content: "";
   display: table;
   box-sizing: border-box;
   width: 0;
   height: 100%;
   outline: none;
   border: none;
}
.full-img{
	margin:4rem auto;
	max-width:100rem;
}
.full-img .container{
	padding:0;
	max-width:none;
	width:auto;
}
.full-img .img-descr {
   font-size: 0.825rem;
   color: var(--black-100);
   text-align: left;
   margin: 0.5rem 0 0 0;
	display:block;
}
@media screen and (max-width: 1024px){
	.full-img{
		margin:3rem auto;
	}
}
@media screen and (max-width: 540px){
	.full-img{
		margin:2rem auto;
	}
}.single-footer .btn.hover-scale {
   padding: 0.825rem;
}
.next-inner {
   display: block;
}
.single-links {
   border-top: 1px solid var(--gray-35);
   display: grid;
   grid-template-columns: 1fr 1fr;
   column-gap: 2rem;
   align-items: start;
   padding-top: 1.5rem;
}
.to-link {
   display: grid;
   column-gap: 0.75rem;
   row-gap: 0.425rem;
   align-items: center;
}
.next.to-link {
   grid-template-columns: 1fr auto;
   justify-items: end;
}
.back.to-link {
   grid-template-columns: auto 1fr;
}

.back .btn {
   transform: rotate(-180deg);
}
.to-name {
   margin: 0;
   font-size: 1rem;
}
.to-link:hover .btn:before {
   transform: scale(1);
}

@media screen and (max-width: 768px) {
   .next-title {
      font-size: 0.875rem;
      color: var(--black-10);
      font-weight: 500;
   }
   .to-name {
      font-size: 0.925rem;
   }
}
@media screen and (max-width: 540px) {
   .to-name {
      font-size: 0.875rem;
      font-weight: 500;
      white-space: nowrap;
   }
   .single-links {
      column-gap: 1rem;
   }
   .single-links {
      padding-top: 1.25rem;
      grid-template-columns: 1fr 1fr;
   }
   .single-footer .btn.hover-scale {
      padding: 0.575rem;
   }
}
/* page-single */
.page-single .page-header {
   margin-bottom: 3rem;
}
.page-single .page-header.has-img .header-img {
   margin-top: 2rem;
}
.page-single .page-header .page-title {
   font-size: 2.75rem;
}
.single {
   margin-bottom: 5rem;
}
.single ul,
.single ol,
.single p,
.single .wp-block-image,
.single .wp-block-table,
.single .wp-block-heading {
   padding: 0 25%;
}
.single-wide .single ul,
.single-wide .single ol,
.single-wide .single p,
.single-wide .single .wp-block-heading,
.single-wide .single .wp-block-image,
.single-wide .single .wp-block-table {
   padding: 0 20%;
}
.single ul,
.single ol,
.single p,
.single .wp-block-image,
.single .wp-block-table,
.single-wide .single ul,
.single-wide .single ol,
.single-wide .single p,
.single-wide .single .wp-block-image,
.single-wide .single .wp-block-table {
   line-height: 1.65;
}
.single ul ul,
.single-wide .single ul ul {
   padding: 0rem;
   margin-left: -0.75em;
}
.single ol ul,
.single-wide .single ol ul {
   padding-left: 0.75em;
}
.single ul li ul,
.single ol li ul {
   padding: 0;
   margin: 1rem 0 1.25rem 0;
}
.single .cols-title-content p {
   line-height: 1.65;
   padding-left: 0;
   padding-right: 0;
}
.single .cols-title-content ul {
   padding-left: 0;
   padding-right: 0;
   margin-bottom: 0;
}
.single p + p,
.single p + ul,
.single ul + p,
.single ol + p,
.single p + ul,
.single ul + ul,
.single ol + ol {
   margin-top: 1.5rem;
}
.single h2.wp-block-heading {
   margin: 2.5rem 0 1rem 0;
}
.single h3.wp-block-heading {
   margin: 1.85em 0 0.65em 0;
}
.single h2.wp-block-heading + h3.wp-block-heading {
   margin: 1.5em 0 0.65em 0;
}
.cols-title {
   display: grid;
   grid-template-columns: 1fr 2fr 1fr;
   align-items: start;
   position: relative;
   margin-top: 4rem;
}
.cols-title + .cols-title {
   margin-top: 4rem;
}
.stack + .cols-title {
   margin-top: 6rem;
}
.cols-title h2 {
   font-size: 1.825rem;
   line-height: 1.25;
   position: relative;
   z-index: 2;
   margin-bottom: 2rem;
   grid-column: 2/3;
}
.cols-title h2 + p {
   margin-top: 2rem;
   margin-bottom: 0;
}

.cols-title .cols-speech {
   font-size: 0.85rem;
   margin: 0;
   padding: 1em;
   font-weight: 500;
   background: var(--gray-10);
   line-height: 1.5;
   margin-left: 2rem;
   position: absolute;
   width: calc(100% - 2rem);
   right: 0;
   grid-column: 3/4;
}

.single-sub {
   color: var(--black-80);
   font-size: 0.925rem;
   padding-right: 2rem;
}

.stack {
   position: relative;
   padding: 3rem 0;
}

.stack ul.stack-list {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
   column-gap: 1rem;
   row-gap: 1rem;
   list-style: none;
   padding: 0;
   margin: 0;
}
.stack .stack-list li {
   background: #fff;
   padding: 1.75rem;
   border-radius: 0.5rem;
   box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.02), 0px 2px 4px rgba(0, 0, 0, 0.08);
}
.stack .stack-list li::before,
.single ul.stats-list li:before {
   display: none;
}
.stack .stack-list li + li {
   margin-top: 0;
}
.stack .stack-list li img {
   padding: 0;
}
.stack-logo {
   width: 100%;
   height: 2.875rem;
   display: flex;
   justify-content: center;
   align-items: center;
}
.stack-logo img {
   object-fit: contain;
   width: inherit;
   height: inherit;
   object-position: center center;
}
.single p.stack-name {
   text-align: center;
   margin-top: 1.25rem;
   font-weight: 500;
   color: var(--black-80);
   padding: 0;
   font-size: 0.925rem;
}

/* ul ol */
.single ul,
.single ol {
   list-style: none;
}
.single ol {
   counter-reset: customCounter;
}
.single ol > li {
   counter-increment: customCounter;
}
.single ul > li {
   position: relative;
   padding-left: 1.5em;
}
.single ul > li + li,
.single ol > li + li {
   margin-top: 0.65em;
}
.single ul > li::before {
   content: "—";
   display: block;
   position: absolute;
   left: 0;
   line-height: inherit;
   color: var(--main-dark);
}
.single ol > li::before {
   content: counter(customCounter) ".";
   width: 1em;
   display: inline-block;
   margin-right: 0.25em;
}
.block.stats {
   padding: 0 15%;
   margin-top: 0.5rem;
}
.stats-list {
   list-style: none;
   padding: 0;
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
   column-gap: 0.5rem;
   row-gap: 0.5rem;
}

.single ul.stats-list {
   padding: 0;
   list-style: none;
}
.single ul.stats-list li + li {
   margin: 0;
}

.block.stats .stats-el {
   padding: 0;
   background: var(--main-light);
   border-radius: 0.5rem;
   padding: 1rem 0.75rem;
}
.stats-el .stats-number {
   font-size: 2.125rem;
   line-height: 1;
   margin-bottom: 0.5rem;
   line-height: 1;
}
.stats-el p {
   padding: 0;
   margin: 0;
}
.stats-el p.stats-descr {
   font-size: 0.775rem;
   font-weight: 500;
   margin: 0;
   line-height: 1.35;
}
.stats + * {
   margin-top: 2.5rem;
}
figcaption {
   font-size: 0.825rem;
   color: var(--black-100);
   text-align: left;
   margin: 0.5rem 0 0 0;
}
.wp-block-image,
.wp-block-table {
   margin-top: 2rem;
   margin-bottom: 2.5rem;
}
.wp-block-table table {
   width: 100%;
}
.wp-block-table table td,
.wp-block-table table th {
   border: 1px solid var(--gray-50);
   font-size: 0.925rem;
   padding: 0.5em;
}

.wp-block-table table th {
   font-weight: 500;
   background: var(--gray-10);
}
.wp-block-table thead {
   border: none;
}

@media screen and (max-width: 1024px) {
   .page-single .page-header .page-title {
      font-size: 2.25rem;
   }
}

@media screen and (max-width: 924px) {
   .single .wp-block-heading {
      margin-top: 2.75rem;
   }
   .page-single .page-header {
      margin-bottom: 3rem;
   }
   .cols-title {
      grid-template-columns: 1fr;
      row-gap: 0.25rem;
   }
   .cols-title .cols-speech {
      margin: 0.5rem 0 0 0;
      order: 1;
      position: relative;
      right: auto;
      width: 100%;
      font-size: 0.925rem;
   }
   .cols-title h2,
   .cols-title .cols-speech {
      grid-column: 1/1;
   }
   .cols-title h2 {
      font-size: 1.5rem;
      margin-bottom: 0;
   }
   .cols-content {
      order: 2;
   }
   .single-blog .single ul,
   .single-blog .single ol,
   .single-blog .single p,
   .single-blog .single img,
   .page-single .single ul,
   .page-single .single ol,
   .page-single .single p,
   .page-single .single img,
   .block.stats,
   .single-blog .single .wp-block-heading,
   .single-blog .single .wp-block-image,
   .single-blog .single .wp-block-table {
      padding: 0;
   }
   .block.cols-title + * {
      margin-top: 1.5rem;
   }
   .block.cols-title + .stack {
      margin-top: 0;
   }
   .stack {
      padding: 2rem 0;
   }
   .stack + .cols-title {
      margin-top: 4rem;
   }
   .stats-el .stats-number {
      font-size: 1.725rem;
   }
}
@media screen and (max-width: 540px) {
   .page-single .page-header .page-title {
      font-size: 1.825rem;
      margin-bottom: 0.75rem;
   }
   .page-single .page-header {
      margin-bottom: 2rem;
   }
   .page-single .page-header.has-img .header-img {
      margin-top: 1rem;
      border-radius: 0;
      margin-left: -1.25rem;
      margin-right: -1.25rem;
   }
   .cols-title {
      margin-top: 2.75rem;
   }
   .stack ul.stack-list {
      grid-template-columns: 1fr 1fr;
      column-gap: 0.5rem;
      row-gap: 0.5rem;
   }
   .stack .stack-list li {
      padding: 1rem;
   }
   .stack-logo img {
      width: 80%;
   }
   .stack {
      padding-bottom: 0;
   }
   .stack + .cols-title {
      margin-top: 4rem;
   }
   .cols-title h2 {
      font-size: 1.5rem;
   }
   .single p.stack-name {
      font-size: 0.925rem;
      margin-top: 1rem;
   }
   .stats-el p.stats-descr {
      font-size: 0.85rem;
   }
   .single {
      margin-bottom: 2.5rem;
   }
   .stats-list {
      grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
   }
}
/* like-block */
.liked {
   padding: 0 25%;
   margin-top: 3rem;
   margin-bottom: 2rem;
}
.single-wide .liked {
   padding: 0 20%;
}
.liked-btn.btn {
   justify-content: flex-start;
   padding: 0.625rem 1rem 0.625rem 1rem;
   width: 5.25rem;
   transition: 150ms ease-in;
   transition-property: width, padding;
   overflow: hidden;
}
.liked-btn .icon-20.icon.svg {
   font-size: 1.25rem;
}
.liked-btn.btn.active {
   width: calc(2.5rem + 2px);
   padding: 0.625rem;
   pointer-events: none;
}
.liked-btn.btn .button-text {
   line-height: 1;
   display: block;
   margin-left: 0.625rem;
}

.liked-btn.btn.active::before {
   transform: scale(1);
}

.liked-total {
   font-weight: 500;
   margin-left: 0.75rem;
}
.liked-content {
   flex-direction: column;
   padding: 2.5rem 2rem;
   background: var(--gray-10);
   border-radius: 0.75rem;
}
.single-liked .liked-content {
   padding: 2rem;
}
.liked-content .liked-title,
.liked-content span,
.liked-sub,
.single-liked .liked-content .liked-title {
   text-align: center;
   padding: 0;
}
.single-liked .liked-content .liked-title {
   font-size: 1.25rem;
   font-weight: 500;
}
.liked-content .liked-title {
   font-size: 1.5rem;
   font-weight: 500;
}
.liked-footer {
   margin-top: 1.75rem;
}
.liked-sub {
   display: block;
   margin-top: 5rem;
   padding: 0;
}
.single-liked .liked-footer {
   margin-top: 1rem;
}

@media screen and (max-width: 924px) {
   .liked,
   .single-wide .liked {
      padding: 0;
   }
}
@media screen and (max-width: 640px) {
   .liked-sub {
      margin-top: 3.75rem;
   }
   .liked-content .liked-title {
      font-size: 1.25rem;
   }
   .liked-content span {
      font-size: 0.95rem;
   }
   .liked-content {
      padding: 2rem;
   }
   .single-liked .liked-content .liked-title {
      font-size: 1.125rem;
   }
   .single-liked .liked-content {
      padding: 1.5rem;
   }
   .liked.single-liked {
      margin-top: 2rem;
   }
}
/* lightbox */
.wp-block-image img,
.full-img img {
   cursor: zoom-in;
   transition: 200ms ease-in;
   transition-property: opacity;

}
.wp-block-image img:hover,
.full-img img:hover {
   opacity: 0.9;
}
.lightbox {
   position: fixed;
   z-index: 155;
   position: fixed;
   top: 0;
   bottom: 0;
   right: 0;
   left: 0;
    background: rgba(48, 34, 52, 0.3);
   visibility: hidden;
   pointer-events: none;
   display: flex;
   flex-direction: column;
   height: 100vh;
   overflow: hidden;
   visibility: hidden;
   opacity: 0;
   transition: 333ms cubic-bezier(0.4, 0, 0.22, 1);
   transition-property: opacity, visibility;
}
.lightbox .lazy-progress::after {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='12' stroke='%23302234' stroke-opacity='.2'/%3E%3Cpath stroke='%23302234' stroke-linecap='round' d='M26 14A12 12 0 1 1 14 2'/%3E%3C/svg%3E");
}
.lightbox.open {
   visibility: visible;
   pointer-events: all;
   opacity: 1;
}
.close-lightbox.btn {
   padding: 0.75rem;
   background: white;
	border:none;
}
.lightbox-header {
   position: absolute;
   top: 0.75rem;
   right: 0.75rem;
   z-index: 5;
}
.lightbox-inner {
   flex: 0 0 100%;
   padding: 2rem;
   z-index: 2;
   position: relative;
}
.lightbox-inner img {
   width: auto;
   max-width: 100%;
   height: auto;
   max-height: calc(100vh - 4rem);
   display: inline-block;
   line-height: 0;
   box-sizing: border-box;
   opacity: 0;
   visibility: hidden;
   transform: scale(0.95);
   transition: 200ms ease-out;
   transition-property: visibility, opacity, transform;
   cursor: zoom-out;
}
.lightbox-inner img.loaded {
   opacity: 1;
   visibility: visible;
   transform: scale(1);
}

@media screen and (max-width: 924px) {
   .lightbox-inner {
      padding: 0.75rem;
   }
   .lightbox-inner img {
      max-height: calc(100vh - 1.5rem);
   }
}
.wp-block-code {
   margin: 1.5rem 25% 2rem;
}
.single-wide .wp-block-code {
   margin-left: 20%;
   margin-right: 20%;
}
@media screen and (max-width: 924px) {
   .single-wide .wp-block-code,
   .wp-block-code {
      margin-left: 0;
      margin-right: 0;
   }
}
.wp-block-code > span {
   display: block;
   overflow: auto;
   padding: 1rem;
   background: #282c34;
   border-radius: 0.5rem;
}
.wp-block-code mark.shcb-loc,
.wp-block-code > span {
   color: #abb2bf;
}
.wp-block-code .shcb-language {
   position: absolute;
   z-index: 10;
   background-color: rgba(0, 0, 0, 0.6);
   top: 0.5rem;
   right: 0.5rem;
   color: #fff;
   padding: 0.25rem 0.5rem;
   border-radius: 0.25rem;
}
.wp-block-code .shcb-language__label,
.wp-block-code .shcb-language__paren,
.wp-block-code .shcb-language__slug {
   display: none;
}
.single-wide .wp-block-code,
.wp-block-code {
   position: relative;
}
.wp-block-code .hljs {
   color: #abb2bf;
   background: #282c34;
}
.wp-block-code .hljs-comment,
.wp-block-code .hljs-quote {
   color: #5c6370;
   font-style: italic;
}
.wp-block-code .hljs-doctag,
.wp-block-code .hljs-formula,
.wp-block-code .hljs-keyword {
   color: #c678dd;
}
.wp-block-code .hljs-deletion,
.wp-block-code .hljs-name,
.wp-block-code .hljs-section,
.wp-block-code .hljs-selector-tag,
.wp-block-code .hljs-subst {
   color: #e06c75;
}
.wp-block-code .hljs-literal {
   color: #56b6c2;
}
.wp-block-code .hljs-addition,
.wp-block-code .hljs-attribute,
.wp-block-code .hljs-meta .hljs-string,
.wp-block-code .hljs-regexp,
.wp-block-code .hljs-string {
   color: #98c379;
}
.wp-block-code .hljs-attr,
.wp-block-code .hljs-number,
.wp-block-code .hljs-selector-attr,
.wp-block-code .hljs-selector-class,
.wp-block-code .hljs-selector-pseudo,
.wp-block-code .hljs-template-variable,
.wp-block-code .hljs-type,
.wp-block-code .hljs-variable {
   color: #d19a66;
}
.wp-block-code .hljs-bullet,
.wp-block-code .hljs-link,
.wp-block-code .hljs-meta,
.wp-block-code .hljs-selector-id,
.wp-block-code .hljs-symbol,
.wp-block-code .hljs-title {
   color: #61aeee;
}
.wp-block-code .hljs-built_in,
.wp-block-code .hljs-class .hljs-title,
.wp-block-code .hljs-title.class_ {
   color: #e6c07b;
}
.wp-block-code .hljs-emphasis {
   font-style: italic;
}
.wp-block-code .hljs-strong {
   font-weight: 700;
}
.wp-block-code .hljs-link {
   text-decoration: underline;
}
.wp-block-code mark.shcb-loc {
   background: rgba(223, 198, 10, 0.2);
}
/* cta */
.cta-content {
   flex-direction: column;
}
.cta-btn {
   padding: 1.75rem;
   position: relative;
   line-height: 1;
   font-weight: 500;
}
.cta-btn:after {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   transform: scale(1);
   transition: 250ms ease-in-out;
   transition-property: transform;
   background: var(--main);
   border-radius: 100%;
}
.cta-btn span {
   position: relative;
   z-index: 2;
}
.cta-btn:hover:after {
   transform: scale(1.15);
}
.cta-btn,
.cta-sub {
   text-align: center;
}
.cta-btn:before {
   padding-bottom: 100%;
   content: "";
   display: table;
   box-sizing: border-box;
   width: 0;
   height: 100%;
   outline: none;
   border: none;
}
.cta-sub {
   font-size: 0.875rem;
   color: var(--black-80);
   margin-top: 1.5rem;
   line-height: 1.5;
   max-width: 15.875rem;
}
/* cta-section */
.cta-section {
   margin: 6rem 0;
}
.cta-section .cta-content {
   background: var(--main-lighten);
   border-radius: 1rem;
   padding: 2.5rem 4rem;
   display: grid;
   grid-template-columns: 1.5fr 1fr;
   align-items: center;
   column-gap: 1.5rem;
}
.cta-section .cta-button {
   flex-direction: column;
}
.cta-section .cta-info p:last-child {
   margin-bottom: 0;
}
.cta-section .cta-content{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 2537 1455'%3E%3Cpath d='M523 859h282l101.8 128 172.3 195.7 224.5 271.5H982.5l-159.3-185.4-107-154L523 859Zm778-172.3c0 148.8-29 274.3-86.8 376.6-58 101.8-136 179-234.3 231.7-98.4 52.2-208 78.3-329 78.3-121.8 0-231.9-26.3-330.2-79-97.9-53-175.8-130.5-233.6-232.3C29.6 959.7.9 834.6.9 686.7c0-148.8 28.7-274 86.2-375.9 57.8-102.2 135.7-179.5 233.6-231.7C419 26.5 529.1.1 651 .1c121 0 230.6 26.4 329 79 98.3 52.2 176.4 129.5 234.3 231.7 57.8 101.8 86.8 227.1 86.8 376Zm-373.4 0c0-80-10.6-147.5-32-202.3-20.8-55.3-52-97-93.3-125.3-40.9-28.7-91.3-43-151.4-43-60 0-110.7 14.3-152 43-41 28.3-72 70-93.3 125.3-21 54.8-31.4 122.3-31.4 202.3 0 80 10.5 147.7 31.4 203 21.3 54.8 52.4 96.6 93.3 125.3 41.3 28.3 92 42.4 152 42.4s110.5-14.1 151.4-42.4c41.4-28.7 72.5-70.5 93.4-125.3 21.3-55.3 32-123 32-203Zm622.1 668.3h-391.6L1599.3 18.4h496L2536.5 1355h-391.6l-292.4-968.5h-10.4L1549.7 1355Zm-73.1-527.3h736.2v271.5h-736.2V827.7Z' fill='%23FFF4E2'/%3E%3C/svg%3E");
	background-repeat:no-repeat;
	background-size:200%;
	background-position:center center;
}
@media screen and (max-width: 1024px) {
   .cta-section .cta-content {
      padding: 2.25rem 2.5rem;
   }
}
@media screen and (max-width: 768px) {
   .cta-section .cta-content {
      grid-template-columns: 1fr;
      row-gap: 2rem;
   }
	.cta-section .cta-content{
	background-size:270%;

}
}
@media screen and (max-width: 540px) {
   .cta-section .cta-content {
      margin: 0 -1.25rem 0 -1.25rem;
      padding: 2.25rem 1.25rem;
   }
   .cta-section {
      margin: 4rem 0;
   }
}
/* quote */
.quote {
   margin: 12rem 0;
}
.single .quote {
   margin: 4rem 0;
}
.quote-content {
   max-width: 40rem;
   margin: 0 auto;
}
.single .quote-content {
   max-width: none;
   padding: 0 25%;
}
.single-wide .quote-content {
   padding: 0 20%;
}
.quote-text {
   font-size: 2rem;
   /*text-indent: 2.5em;*/ 
}
.quote-text,
.single p.quote-text {
   line-height: 1.33;
   margin-bottom: 1em;
}
.single .quote-text {
   font-size: 1.5rem;
   text-indent: 1.5em;
}
.author-icon {
   width: 3.25rem;
   height: 3.25rem;
   border-radius: 100%;
   overflow: hidden;
   color: var(--black-100);
   background: var(--main);
   line-height: 1;
   text-align: center;
	flex:0 0 3.25rem;
}
.author-icon,
.author-name,
.single .author-name {
   font-weight: 500;
   font-size: 0.95rem;
}
.author-info {
   margin-left: 0.75rem;
}
.author-name,
.single p.author-name {
   margin-top: 0.35rem;
   line-height: 1.2;
   margin-bottom: 0rem;
}
.author-role {
   color: var(--black-60);
   font-size: 0.95rem;
}
@media screen and (max-width: 1024px) {
   .quote-text {
      font-size: 1.75rem;
      text-indent: 1em;
   }
   .quote {
      margin: 10rem 0;
   }
}
@media screen and (max-width: 924px) {
   .single .quote-content,
   .single-wide .quote-content {
      padding: 0;
   }
   .single p.quote-text {
      font-size: 1.35rem;
      text-indent: 0.75em;
      margin-bottom: 0.75em;
   }
   .single .quote {
      margin: 3rem 0;
   }
}
@media screen and (max-width: 540px) {
   .quote {
      margin: 6rem 0;
   }
   .quote-text {
      font-size: 1.5rem;
      text-indent: 1em;
   }
   .author-icon {
      width: 2.85rem;
      height: 2.85rem;
	   flex: 0 0 2.85rem;
   }
   .author-info {
      margin-left: 0.625rem;
   }
   .author-name {
      margin-top: 0.25rem;
   }
   .author-role {
      line-height: 1;
   }
}
.single .single-author p,
.single p.author-name,
.single p.quote-text {
   padding: 0;
}
.single-author,.single-wide .single-author {
   padding: 0 25%;
   margin-top: 3rem;
}
.single-wide .single-author {
   padding: 0 20%;
}
.author-sub {
   font-size: 0.825rem;
   color: var(--black-100);
}
.author-header .line {
   flex: 1 1 auto;
   height: 1px;
   background: var(--gray-50);
}
.author-header {
   margin-bottom: 0.75rem;
   gap: 0.75rem;
}
@media screen and (max-width: 924px) {
   .single-author,.single-wide .single-author {
      padding: 0;
      margin-top: 2rem;
   }
}/* blog-card */
.article {
   height: 100%;
   transition: var(--bloghoverspeed) ease-in;
   transition-property: opacity;
}
.article-hover .article {
   opacity: var(--bloghover);
}
.article-hover .article:hover {
   opacity: 1;
}
.article a {
   display: block;
}

.article-content,
.article a {
   height: inherit;
}
.article-content {
   display: grid;
   align-items: start;
   grid-auto-rows: auto 1fr auto;
}

.article-info {
   display: grid;
   grid-template-columns: 1fr 2.25rem;
   column-gap: 1rem;
   row-gap: 1.25rem;
   align-items: start;
   order: 1;
   margin-top: 1.5rem;
}
.article-img {
   overflow: hidden;
   border-radius: 0.5rem;
}

.article-info .article-excerpt {
   font-size: 1.125rem;
}
.article-title {
   font-size: 1.5rem;
   line-height: 1.25;
   margin-bottom: 0;
}
.article .btn {
   grid-column: 2/3;
   grid-row: 1/3;
   padding: 0.5rem;
   justify-self: end;
   margin-top: -0.25rem;
   background: var(--gray-10);
   transition: 250ms ease-in;
   transition-property: background;
}
.article:hover .btn {
   background: var(--main);
}
.article-meta {
   column-gap: 1rem;
   padding: 0.75rem 0 1rem 0;
   border-top: 1px solid var(--gray-25);
   margin-top: 1.25rem;
   order: 2;
   flex-wrap: wrap;
   row-gap: 0.5rem;
}
.page-blog .meta-numbers {
   margin-top: 0.25rem;
}
.article-published .text,
.read-time .text,
.views .text {
   font-size: 0.825rem;
   line-height: 1;
   text-align: right;
   font-weight: 500;
}
.article-published,
.read-time,
.views {
   padding: 0.4rem 0;
   color: var(--black-80);
   gap: 0.25rem;
   margin-top: 0;
}
.article-published .icon,
.read-time .icon,
.views .icon {
   color: var(--black-60);
}
.meta-numbers {
   gap: 1rem;
   flex-wrap: wrap;
}
.meta-extend {
   flex-wrap: wrap;
   column-gap: 2rem;
   row-gap: 1rem;
	margin-top:0.5rem;
}
@media screen and (max-width: 840px) {
   .article-info,
   .article-meta {
      order: 1;
   }
   .article-info {
      border-top: none;
      align-items: start;
   }
   .article-published {
      padding: 0;
      flex-wrap: wrap;
   }
}
@media screen and (max-width: 540px) {
   .blog-list {
      row-gap: 2rem;
   }
   .article-info {
      grid-template-columns: 1fr;
      row-gap: 0.65rem;
      margin-top: 1rem;
   }
   .article-meta {
      padding-top: 0.5rem;
      margin-top: 0.75rem;
   }
   .article .btn {
      display: none;
   }
   .article-title {
      font-size: 1.35rem;
   }
   .article-info .article-excerpt {
      font-size: 1rem;
   }
}/* slider */
.slider.will-init {
   display: flex;
   justify-content: flex-start;
   align-content: flex-start;
}
.slider-wrap {
   position: relative;
	margin: 0 -0.5rem;
   padding-bottom: 2.5rem;
}
.slider:after {
   content: "";
   display: table;
   clear: both;
}
.btn.slider-btn {
   background: white;
   padding: 0.825rem;
}
.btn.slider-btn.prew .icon {
   transform: rotate(-180deg);
}
.slider-btns.static {
   gap: 0.5rem;
}
.slider-btns {
   z-index: 3;
   pointer-events: none;
}
.btn.slider-btn {
   pointer-events: all;
}
.slider-dots {
   position: absolute;
   bottom: 0;
   width: 100%;
}
.slider-dot {
   background: var(--gray-25);
   width: 0.725rem;
   height: 0.725rem;
   border-radius: 100%;
   transition: 250ms ease-in;
   transition-property: background;
}
.slider-dot.active {
   background: var(--main);
}
.slider-dot + .slider-dot {
   margin-left: 0.45rem;
}
@media screen and (max-width: 1024px) {
   .slider-btns {
      display: none;
   }
}
/* more articles slider + partners slider */
.more,.partners {
   overflow: hidden;
   margin-bottom: 3rem;
   margin-top: 9rem;
}
.more-title,.partners-title {
   font-size: 2rem;
}
.more-header,.partners-header  {
   margin-bottom: 1.75rem;
}

.more .slider.will-init .article {
   flex: 0 0 33%;
}
@media screen and (max-width: 1024px) {
   .more .slider.will-init .article {
      flex: 0 0 50%;
   }
}
@media screen and (max-width: 640px) {
   .more .slider.will-init .article {
      flex: 0 0 100%;
   }
}
.more .article-title {
   font-size: 1.2rem;
   font-weight: 500;
   transition: 250ms ease-in;
   transition-property: color;
}
.more .article {
   padding: 0 0.5rem;
}
.more .article-info {
   grid-template-columns: 1fr;
}
.more .article .btn {
   display: none;
}
.more .article-info .article-excerpt {
   font-size: 0.95rem;
}
.more .article-info {
   row-gap: 0.75rem;
   margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
   .more-title,.partners-title {
      font-size: 1.75rem;
   }
   .more,.partners {
      margin-top: 6rem;
   }
}
@media screen and (max-width: 640px) {
   .more-title,.partners-title {
      font-size: 1.5rem;
   }
   .more,.partners {
      margin-bottom: 2rem;
      margin-top: 4.5rem;
   }
   .more-header..partners-header {
      margin-bottom: 0.75rem;
   }
}
/* partners slider */
.partners-slide {
   padding: 0.5rem;
   border-radius: 0.75rem;
   background: var(--gray-5);
   margin: 0 0.5rem;
}
.partners-slide img {
   object-fit: contain;
   height: 4rem;
   max-width: 70%;
   filter: grayscale(90);
   opacity: 0.45;
   transition: 250ms ease-in-out;
   transition-property: opacity, filter;
}
.partners-slide:hover img {
   opacity: 1;
   filter: grayscale(0);
}
.partners-slider-wrap {
   overflow: hidden;
}/* tgch */
.tgch-content {
   border-radius: 0.875rem;
   background-size: cover;
   background-position: left center;
   display: grid;
   align-items: end;
   grid-template-columns: 2fr 1.25fr;
   column-gap: 3rem;
   padding-right: 2rem;
   margin-top: 12rem;
   margin-bottom: -4rem;
}
.tgch-info {
   flex-direction: column;
   align-items: flex-start;
   padding: 2rem 0 2.5rem 4rem;
}
.tgch-info > * {
   color: white;
   max-width: 36rem;
}
.tgch-title {
   font-size: 2.5rem;
   line-height: 1.25;
}
.tgch-img {
   margin-top: -10%;
   overflow: hidden;
}
.tgch-img img {
   transform: translate(0, 7%);
   transition: 300ms ease-out;
   transition-property: transform;
}
.tgch-content:hover .tgch-img img {
   transform: translate(0, 0);
}
.tgch-info .btn {
   margin-top: 0.75rem;
}
@media screen and (max-width: 1024px) {
   .tgch-title {
      font-size: 2rem;
   }
   .tgch-info {
      padding: 2rem 0 2.5rem 2.5rem;
   }
   .tgch-content {
      grid-template-columns: 2fr 1.5fr;
      column-gap: 2rem;
      padding-right: 0rem;
      margin-top: 9rem;
   }
   .tgch-img {
      margin-top: 0;
   }
}
@media screen and (max-width: 768px) {
   .tgch-content {
      grid-template-columns: 2fr 2fr;
      column-gap: 0rem;
   }
}
@media screen and (max-width: 664px) {
   .tgch .container {
      padding: 0;
   }
}
@media screen and (max-width: 624px) {
   .tgch-content {
      grid-template-columns: 1fr;
      row-gap: 1rem;
      margin-top: 5rem;
      margin-bottom: -3rem;
   }
   .tgch-img img {
      max-width: 24rem;
   }
   .tgch-info {
      padding: 1.5rem 1.25rem 1rem 1.25rem;
   }
   .tgch-title {
      font-size: 1.75rem;
   }
}/* footer */
.footer {
   padding-top: 4rem;
   margin-top: 8rem;
}
.footer-cta .cta {
   display: flex;
   justify-content: flex-end;
   z-index: 4;
   position: relative;
}
.footer-cta {
   position: relative;
   margin: -4rem 0 -4.25rem 0;
}
.footer-cta:after {
   content: "";
   position: absolute;
   width: calc(100% - 4rem);
   height: 1px;
   top: 50%;
   left: 0;
   transform: translate(0, -2rem);
   background: var(--gray-50);
   z-index: 1;
}
.footer-header {
   line-height: 1.2;
   margin-bottom: 3.25rem;
}
.footer-title {
   font-size: 3rem;
}
.contacts-label {
   font-size: 0.775rem;
   color: var(--black-100);
   display: block;
   margin-bottom: 0.25rem;
}
.contacts-list a {
   display: block;
   width: max-content;
}
.mail a {
   font-size: 2.25rem;
}
.mail {
   margin-bottom: 2.5rem;
}
.phones,
.s_links,
.footer-address,
.only-contacts .mail {
   margin-bottom: 2rem;
}
.adv-address.footer-address {
   margin-bottom: 1rem;
}
.phones a,
.footer-address p {
   font-size: 1.25rem;
}
.adv-address.footer-address p {
   font-size: 1rem;
}
.adv-address.footer-address p + p {
   margin-top: 0.35em;
}
.phones a + a {
   margin-top: 0.25rem;
}
.flip-container {
   display: block;
   overflow: hidden;
   line-height: 1.5em;
   height: 1.5em;
}
.flip-container span {
   display: block;
   transition: 450ms cubic-bezier(0.54, 0, 0.1, 1) 10ms;
   transition-property: transform;
}
.hover-flip:hover .flip-container span {
   transform: translate(0, -100%);
}
.hover-main {
   transition: 350ms cubic-bezier(0.54, 0, 0.1, 1);
   transition-property: color;
}
.hover-main:hover {
   color: var(--main-dark);
}
.footer-contacts {
   display: grid;
   grid-template-columns: 1fr;
   align-items: end;
   position: relative;
   z-index: 4;
}
.contacts-list {
   justify-self: start;
}
.s_links-links {
   justify-self: end;
}
.footer-s_link {
   margin-top: 0.5rem;
}
.s_links-links .contacts-label,
.s_link-name {
   display: none;
}
.contacts-list .s_link-link {
   display: block;
   width: 2.25rem;
   height: 2.25rem;
   transition: 250ms ease-out;
   transition-property: opacity;
}
.s_link-link img {
   font-size: 1px;
}
.s_link-link:hover {
   opacity: 0.65;
}
.s_link-link + .s_link-link {
   margin-left: 0.85rem;
}
.footer-docs ul {
   margin: -0.25rem 0 0 -0.5rem;
}
.footer-docs {
   margin-top: 5rem;
}
.footer-docs ul {
   display: inline-flex;
   flex-wrap: wrap;
}
.footer-docs ul li {
   margin: 0.25rem 0.5rem;
}
.footer-docs ul li a,
.copyright {
   color: var(--black-100);
}
.footer-docs ul li a {
   transition: 200ms ease-in;
   opacity: 0.65;
   transition-property: opacity;
}
.footer-docs ul li,
.copyright {
   font-size: 0.825rem;
   line-height: 1.25;
}
.footer-docs ul li a:hover {
   opacity: 1 !important;
}
.copyright {
   margin-top: 1rem;
   margin-bottom: 2rem;
}
.footer.footer-min {
   border-top: 1px solid var(--gray-25);
   margin-top: 0;
}
.footer-min .footer-docs {
   margin-top: 0rem;
}

@media screen and (min-width: 764px) {
   .only-contacts .contacts-list {
      display: grid;
      grid-template-columns: 1fr 1fr 1.75fr;
      width: 100%;
      column-gap: 2rem;
      align-items: start;
   }
   .only-contacts .contacts-list .mail {
      order: 3;
   }
   .only-contacts .contacts-list .phones {
      order: 2;
   }
   .only-contacts .footer-docs {
      margin-top: 2rem;
   }
}
@media screen and (max-width: 1024px) {
   .footer-header {
      margin-bottom: 2rem;
   }
   .footer-title {
      font-size: 2.25rem;
   }
   .footer-cta {
      margin-top: -2rem;
      margin-bottom: -4.25rem;
   }
   .mail a {
      font-size: 1.75rem;
   }
   .phones a,
   .footer-address p {
      font-size: 1rem;
   }
   .adv-address.footer-address p {
      font-size: 0.85rem;
   }
}
@media screen and (max-width: 800px) {
   .footer-s_link {
      justify-self: start;
   }
   .footer {
      border-top: 1px solid var(--gray-25);
   }
   .footer-cta {
      margin: 4rem 0 2.5rem 0;
      order: 2;
   }
   .footer-cta:after {
      display: none;
   }
   .footer-content {
      display: flex;
      flex-direction: column;
   }
   .footer-docs,
   .copyright {
      order: 3;
   }
   .footer-docs {
      margin-top: 0;
   }
   .footer-cta .cta {
      justify-content: center;
   }
}

@media screen and (max-width: 540px) {
   .phones {
      margin-bottom: 1.75rem;
   }
   .footer {
      padding-top: 2rem;
      margin-top: 6rem;
   }
   .footer-title {
      font-size: 2rem;
   }
   .mail {
      margin-bottom: 1.5rem;
   }
   .mail a {
      font-size: 1.5rem;
   }
   .footer-contacts {
      grid-template-columns: 1fr;
   }
   .s_links-links {
      justify-self: start;
   }
   .s_links-links .contacts-label {
      display: block;
   }
   .footer-address {
      margin-bottom: 2rem;
   }
   .s_link-name {
      display: block;
   }
   .contacts-list .s_link-link {
      width: auto;
      height: auto;
   }
   .s_link-link img {
      display: none;
   }
   .footer-cta {
      margin: 2.5rem 0;
   }
   .footer-s_link {
      display: inline-flex;
      flex-wrap: wrap;
      margin: -0.25rem -0.5rem;
   }
   .s_link-link + .s_link-link {
      margin-left: 0;
   }
   .footer-s_link .s_link-link {
      margin: 0.25rem 0.5rem;
      font-size: 0.95rem;
   }
}
