:root {
  --margin: -40px;
  --padding: 40px;
  --font-family: 'Tahoma', Helvetica, Arial, sans-serif;
  --font-weight-normal: normal;
  --font-weight-bold: bold;
  --color-link: #427bca;
}
@media(max-width: 992px) {
  :root {
    --margin: -25px;
    --padding: 25px;
  }
}
@media(max-width: 768px) {
  :root {
    --margin: -15px;
    --padding: 15px;
  }
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}:focus{outline:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{-webkit-appearance:none;-moz-appearance:none}input[type=search]{-webkit-appearance:none;-moz-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}textarea{overflow:auto;vertical-align:top;resize:vertical}audio,canvas,video{display:inline-block;max-width:100%}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted}a:active,a:hover{outline:0}img{border:0;-ms-interpolation-mode:bicubic}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}button,html,input,select,textarea{color:#222}::-moz-selection{background:#b3d4fc;text-shadow:none}::selection{background:#b3d4fc;text-shadow:none}img{vertical-align:middle}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  margin: 0;
  padding: 0 var(--padding);
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.4;
  font-weight: var(--font-weight-normal);
  color: #000;
  background: #fff;
}

.container::before,
.container::after {
  content: '';
  display: table;
  clear: both;
}
.container {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 1140px;
}

/* Стили для текстового поля с кнопкой "Далее" */
.limiter {
  max-height: 200px;
  overflow: hidden;
  position: relative;
}
.limiter .bottom {
  position: absolute; /* Если прыгает - можно попробовать sticky */
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgb(255 255 255 / 0%),
    rgb(255 255 255)90%);
  width: 100%;
  height: 80px;
  opacity: 1;
  transition: 0.3s;
}

.wp-block-quote
{
margin: 0.25em 0;
padding: 0.25em 40px;
line-height: 1.45;
position: relative;
color: #FFF;
border-left:20px solid #fbf530;
background:#000;	
}
.wp-block-preformatted
{
margin: 0.25em 0;
padding: 0.25em 40px;
line-height: 1.45;
position: relative;
border:5px solid #fbf600;		
}
.read-more-checker {
  opacity: 0;
  position: absolute;
}
.read-more-checker:checked ~ .limiter {
  max-height: none;
}
.read-more-checker:checked ~ .limiter .bottom {
  opacity: 0;
  transition: 0.3s;
}
.read-more-checker ~ .read-more-button:before {
  content: "Подробнее »";
}
.read-more-checker:checked ~ .read-more-button:before {
  content: "Свернуть «";
}
.read-more-button {
  cursor: pointer;
  display: inline-block;
  color: #000;
  text-decoration: underline;
  float: right;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  outline: none;
  text-decoration: none;
}
a {
  color: var(--color-link);
}
a:hover {
  color: #49aedf;
}
p {
  margin: 15px 0;
}
b,
strong {
  font-weight: var(--font-weight-bold);
}

.br.xs {
  display: block;
}
@media (min-width: 768px) {
  .br.xs {
    display: none;
  }
  .br.sm {
    display: block;
  }
}
@media (min-width: 992px) {
  .br.sm {
    display: none;
  }
  .br.md {
    display: block;
  }
}
@media (min-width: 1200px) {
  .br.md {
    display: none;
  }
  .br.lg {
    display: block;
  }
}

.btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  margin: 0;
  padding: 15px 25px;
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 20px;
  font-weight: var(--font-weight-normal);
  color: #000;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  background: #f3bf35;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  transition: all .2s ease;
}
.btn:hover {
  color: #000;
  background: #ffd565;
  box-shadow: none;
}
.btn.sm {
  padding: 10px 20px;
  font-size: 16px;
}
.btn:disabled {
  background: #ddd;
  opacity: .5;
  cursor: default;
}

.form-control {
  display: block;
  position: relative;
  width: 100%;
  padding: 9px 14px;
  font-size: 14px;
  line-height: 20px;
  font-weight: var(--font-weight-normal);
  color: #000;
  vertical-align: middle;
  box-shadow: none;
  background: #fff;
  border: 1px solid #636363;
  border-radius: 0;
  outline: 0;
}
.form-control::placeholder {
  color: #aaa;
}
.form-group {
  display: block;
  margin: 0;
  padding: 0;
}
.form-group p, .input-group p, .modal-foot p, .modal-head p{
  margin: 0;
  padding: 0;
}
.form-group label {
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: var(--font-weight-normal);
}

.input-group {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
.input-group input {
  display: none;
}
.input-group label {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 0 25px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: normal;
  text-align: left;
  letter-spacing: 0;
  transition: all .2s ease;
  cursor: pointer;
}
.input-group label a {
  color: #000;
  text-decoration: underline;
}
.input-group label::before,
.input-group label::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 8px;
  left: 8px;
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  -webkit-transition: all .2s ease;
          transition: all .2s ease;
}
.input-group label::before {
  width: 16px;
  height: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #636363;
}
.input-group label::after {
  width: 10px;
  height: 10px;
  background: #636363;
  opacity: 0;
}
.input-group input:checked + label::after {
  opacity: 1;
}

.form-group.lg .form-control {
  padding: 14px;
}
.form-group.lg label {
  font-size: 24px;
}
.input-group.lg label {
  padding-left: 40px;
  font-size: 24px;
}
.input-group.lg label::before,
.input-group.lg label::after {
  top: 14px;
  left: 14px;
}
.input-group.lg label::before {
  width: 28px;
  height: 28px;
}
.input-group.lg label::after {
  width: 18px;
  height: 18px;
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.no-js .owl-carousel {
  display: block;
}
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;}
  100% {
    opacity: 0;}
}
.owl-height {
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-dots {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: 20px 0 0 0;
  padding: 0;
}
.owl-carousel .owl-dot {
  display: block;
  width: 5px;
  height: 5px;
  margin: 0;
  padding: 0;
  background: #aaa;
  border: 0;
  border-radius: 4px;
}
.owl-carousel .owl-dot.active {
  width: 30px;
  background: #333;
}
.owl-carousel .owl-nav {
  display: block;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
}
.owl-carousel .owl-nav .disabled {
   opacity: .5;
   cursor: default;
 }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  outline: 0;
  background: rgba(255,255,255,.2);
  border: 1px solid #ddd;
  transition: all .2s ease;
  border-radius: 50%;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
}
.owl-carousel .owl-nav .owl-prev span,
.owl-carousel .owl-nav .owl-next span {
  display: none;
}
.owl-carousel .owl-nav .owl-prev::before,
.owl-carousel .owl-nav .owl-next::before {
  content: '';
  display: block;
  width: 70%;
  height: 70%;
  background: no-repeat center url('data:image/svg+xml;base64, PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE3LjE3IDMyLjkybDkuMTctOS4xNy05LjE3LTkuMTcgMi44My0yLjgzIDEyIDEyLTEyIDEyeiIvPjxwYXRoIGQ9Ik0wLS4yNWg0OHY0OGgtNDh6IiBmaWxsPSJub25lIi8+PC9zdmc+');
  background-size: contain;
  transition: all .2s ease;
  opacity: .5;
}
.owl-carousel .owl-nav .owl-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  background: rgba(0,0,0,.7);
  border-color: transparent;
}
.owl-carousel .owl-nav .owl-prev:hover::before,
.owl-carousel .owl-nav .owl-next:hover::before {
  background: no-repeat center url('data:image/svg+xml;base64, PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE3LjE3IDMyLjkybDkuMTctOS4xNy05LjE3LTkuMTcgMi44My0yLjgzIDEyIDEyLTEyIDEyeiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0wLS4yNWg0OHY0OGgtNDh6IiBmaWxsPSJub25lIi8+PC9zdmc+');
  background-size: contain;
  opacity: 1;
}

.modal-close {
  display: block;
  position: absolute;
  float: right;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
  border: 0;
  border-radius: 0;
  outline: none;
}
.modal-close::before,
.modal-close::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #999;
}
.modal-close::before {
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg);
}
.modal-close::after {
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 50px 20px;
  visibility: hidden;
  opacity: 0;
  background: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.modal.opened {
  visibility: visible;
  opacity: 1;
}
.modal-body {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  margin: 0;
  padding: 25px;
  background: #fff;
  box-shadow: 0 0 100px 0 rgba(0,0,0,.5);
}
.modal-body form {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.modal-body form .form-group {
  width: calc((100% - 20px) / 2);
}
.modal-body form .form-group.full {
  width: 100%;
}
.modal-head {
  display: block;
  width: 100%;  
  margin: 0 0 10px 0;
  padding: 0 0 20px 0;
  font-size: 26px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  border-bottom: 2px solid #fbf600;
}
.modal-foot {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 10px 0 0 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #ddd;
}
@media(max-width: 768px) {
  .modal {
    padding: 20px 10px;
  }
}
@media(max-width: 500px) {
  .modal-body .form-group:not(.full) {
    width: 100%;
  }
}

section {
  display: block;
  position: relative;
  margin: 0 var(--margin);
  padding: 0 var(--padding);
}
section .container {
  position: relative;
  z-index: 2;
}
section .bg {
  display: block;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  max-height: 600px;
  opacity: .4;
  text-align: center;
}
section .bg img {
  width: auto;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center bottom;
}

header {
  display: block;
  position: relative;
  z-index: 20;
  margin: 0 var(--margin);
  padding: 10px var(--padding);
  background: #000;
  border-bottom: 5px solid #f9f400;
}
.header {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: space-between;
}
.header-burger {
  cursor: pointer;
  display: none;
  flex-flow: column;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 11px 9px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.header-burger .line {
  display: block;
  height: 2px;
  background: #f3bf35;
}
.header-menu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-menu li {
  display: block;
  font-size: 24px;
  line-height: 1;
}
.header-menu li a {
  display: block;
  margin: 0;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
}
.header-menu li.current_page_item a {
  color: #f9f400;
}
.header-contact {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  position: relative;
  gap: 5px;
  margin: 0;
  padding: 0 0 0 80px;
  font-size: 26px;
  line-height: 1;
}
.header-contact img {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0,-50%);
          transform: translate(0,-50%);
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
}
.header-contact a.phone {
  color: #fff;
  text-decoration: none;
}
.header-contact a.mail {
  color: #2fedf4;
  text-decoration: none;
}
.mobile-menu {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: -2;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  margin: -100px 0 0 0;
  padding: 30px var(--padding);
  background: rgba(0,0,0,.9);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  transition: all .2s ease;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu .shadow {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0, transparent 100%);
}
.mobile-menu ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu ul li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 16px;
  text-align: center;
}
.mobile-menu ul li:not(:first-child)::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%,0);
          transform: translate(-50%,0);
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,.2);
}
.mobile-menu ul li a {
  display: block;
  margin: 0;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}
@media(max-width: 1100px) {
  .header-menu li {
    font-size: 16px;
  }
  .header-contact {
    padding-left: 55px;
    font-size: 16px;
  }
  .header-contact img {
    width: 45px;
    height: 45px;
  }
  .mobile-menu.opened {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}
@media(max-width: 768px) {
  .header {
    align-items: center;
  }
  .header-burger {
    display: flex;
  }
  .header-menu {
    display: none;
  }
  .header-contact {
    gap: 3px;
    font-size: 13px;
  }
  .header-contact img {
    left: 15px;
    width: 30px;
    height: 30px;
  }
}

footer {
  display: block;
  margin: 0 var(--margin);
  padding: 20px var(--padding);
}
footer a,
footer a.hover {
  color: #000;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline 1.5px solid #ddd;
}
.footer-container  {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 70px;
  margin: 0;
  padding: 20px 0;
  font-size: 20px;
}
.footer-contact {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 0 0 auto;
}
.footer-contact ul {
  display: block;
  list-style: none;
  margin: -10px 0;
  padding: 0;
}
.footer-contact ul li {
  display: block;
  position: relative;
  margin: 0;
  padding: 10px 0 10px 42px;
}
.footer-contact ul li figure {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0,-50%);
          transform: translate(0,-50%);
  width: 30px;
  height: 30px;
}
.footer-contact ul li figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer-nav {
  display: block;
  flex: 0 0 auto;
  list-style: none;
  margin: -10px 0;
  padding: 0;
}
.footer-nav li {
  display: block;
  margin: 0;
  padding: 10px 0;
}
.footer-copyright {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid #000;
}
@media(max-width: 992px) {
  .footer-container {
    gap: 40px;
    font-size: 14px;
  }
  .footer-copyright {
    font-size: 12px;
  }
  .footer-contact ul li {
    padding-left: 35px;
  }
  .footer-contact ul li figure {
    width: 24px;
    height: 24px;
  }
}
@media(max-width: 768px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-contact {
    flex: 0 0 100%;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
  }
  .footer-copyright {
    flex-flow: column;
    align-items: center;
    text-align: center;
  }
  .footer-copyright a {
    order: 1;
  }
  .footer-copyright div {
    order: 2;
  }
}
@media(max-width: 450px) {
  .footer-container {
    flex-flow: column;
    align-items: center;
    gap: 20px;
  } 
  .footer-contact {
    padding-bottom: 20px;
  }
  .footer-nav {
    text-align: center;
  }
}

.phone-s {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #000;
  font-size: 20px;
  color: #fff;
}
.phone-s a,
.phone-s a:hover {
  color: #fff;
  white-space: nowrap;
}
.phone-s a:hover {
  text-decoration: underline 1.5px solid #777;
}
.phone-c {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.phone-c .title {
  text-align: left;
}
.phone-c .phone {
  text-align: right;
}
@media(max-width: 768px) {
  .phone-c {
    flex-flow: column;
    align-items: center;
    gap: 10px;
  }
  .phone-c .title,
  .phone-c .phone {
    text-align: center;
  }
}
@media(max-width: 500px) {
  .phone-s {
    font-size: 16px;
  }
}

.section-head {
  display: block;
  margin: 0 0 60px 0;
  padding: 0;
}
h2 {
	margin: 0 0 60px 0 !important;
}
.section-head .title, h2 {
  display: block;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  font-size: 36px;
  font-weight: var(--font-weight-normal);
  color: #000;
}
.section-head .title::after, h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  max-width: 350px;
  height: 5px;
  background: #fbf600;
}

.about-c h3{
font-size: 20px;
background: #fbf600;
display: inline;
padding: 0px 10px;
}
.section-head.inverse .title {
  color: #fff;
}

.about-s {
  padding-top: 50px;
  padding-bottom: 50px;
}
.about-c {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
@media(max-width: 768px) {
  .about-c {
    font-size: 14px;
  }
}

.service-s {
  padding-top: 50px;
  padding-bottom: 100px;
  background: #000;
}
.service-c {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.service-card {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc((100% - 25px) / 2);
  margin: 0;
  padding: 100px 50px 70px 50px;
  background: #000;
  border: 1px solid #e4e100;
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.service-card .title {
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 0 70px 0;
}
.service-card .btn {
  position: relative;
  z-index: 2;
}
.service-card figure {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.service-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media(max-width: 992px) {
  .service-card {
    padding: 70px 30px 50px 30px;
    font-size: 24px;
  }
  .service-card .title {
    margin-bottom: 40px;
  }
}
@media(max-width: 768px) {
  .service-s {
    padding-bottom: 50px;
  }
  .service-card {
    width: 100%;
    max-width: 400px;
  }
}

.license-s {
  padding-top: 120px;
  padding-bottom: 120px;
}
.license-c {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.license-card {
  display: block;
  width: calc((100% - 45px) / 4);
  height: auto;
}
.license-card img {
  width: 100%;
  height: auto;
}
@media(max-width: 992px) {
  .license-s {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .license-card {
    width: 100%;
  }
}

.contact-s {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #f9f9f9;
}
.contact-c {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  margin: 0;
  padding: 0;
}
.contact-form {
  display: block;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
}
.contact-form form {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 35px;
  margin: 0;
  padding: 0;
}
.contact-form form .form-group {
  width: calc((100% - 35px) / 2);
}
.contact-form form .form-group.full,
.contact-form form .input-group {
  width: 100%;
}
.contact-form form .foot {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.contact-reviews {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 400px;
  margin: 0;
  padding: 20px 20px 50px 20px;
  background: #fff;
  border: 1px solid #636363;
  font-size: 20px;
  text-align: center;
}
.contact-reviews .avatar {
  display: block;
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.contact-reviews .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-reviews .reating {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: 10px 0 0 0;
}
.contact-reviews .reating img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
}
.contact-reviews .author {
  display: block;
  font-size: 24px;
  font-weight: var(--font-weight-bold)
}
@media(max-width: 992px) {
  .contact-c {
    flex-flow: column;
    align-items: center;
  }
  .contact-form {
    flex: 1 1 100%;
  }
  .contact-reviews {
    flex: 1 1 100%;
    max-width: 400px;
  }
}
@media(max-width: 768px) {
  .contact-s {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .contact-form form {
    gap: 15px;
  }
  .contact-form form .form-group.lg:not(.full) {
    width: calc((100% - 15px) / 2);
  }
  .contact-form form .form-group.lg label {
    font-size: 14px;
  }
  .contact-form form .form-group.lg .form-control {
    padding: 9px 14px;
  }
  .contact-form form .input-group.lg label {
    padding-left: 25px;
    font-size: 14px;
  }
  .contact-form form .input-group.lg label::before,
  .contact-form form .input-group.lg label::after {
    top: 8px;
    left: 8px;
  }
  .contact-form form .input-group.lg label::before {
    width: 16px;
    height: 16px;
  }
  .contact-form form .input-group.lg label::after {
    width: 10px;
    height: 10px;
  }
}
@media(max-width: 450px) {
  .contact-form form .form-group {
    width: 100%;
  }
  .contact-reviews {
    font-size: 14px;
  }
  .contact-reviews .author {
    font-size: 16px;
  }
  .contact-reviews .reating img {
    width: 20px;
    height: 20px;
  }
}

.banner-pc {
  display: block;
  margin: 0 var(--margin);
  padding: 0;
}
.banner-pc img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

@media(max-width: 992px) {
  .banner-pc {
    display: none;
  }
}

.banner-mb {
  display: block;
  margin: 0 var(--margin);
  padding: 30px 0;
  background: url('../images/banner/bg.webp') no-repeat center;
  background-size: cover;
}
.banner-mb .logo {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}
.banner-mb .text {
  display: block;
  position: relative;
  margin: 30px 0 -30px 0;
  padding: 10px 20px;
  text-align: left;
  background: rgba(255,255,255,.7);
  box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.banner-mb .text .subtitle {
  display: block;
  font-size: 14px;
}
.banner-mb .text .title {
  display: block;
  margin: 5px 0;
  padding: 0;
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}
.banner-mb .text p {
  display: block;
  max-width: 230px;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
.banner-mb .text .car {
  display: block;
  position: absolute;
  z-index: 6;
  bottom: -20px;
  left: 235px;
  right: 0;
  width: auto;
  height: 150px;
  object-fit: contain;
  object-position: right center;
}
@media(min-width: 480px) {
  .banner-mb .text .car {
    left: auto;
  }
}
@media(min-width: 768px) {
  .banner-mb .text .car {
    height: 200px;
  }
}
@media(min-width: 992px) {
  .banner-mb {
    display: none;
  }
}

.banner {
  display: none;
  position: relative;
  z-index: 1;
  height: 600px;
  margin: 0 var(--margin);
  padding: 0;
  background: url('../images/banner/bg.webp') no-repeat center;
  background-size: cover;
}
.banner::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(0deg, rgba(0,0,0,.5) 0, transparent 100%);
}
.banner .human {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 1000px;
}
.banner .human-image {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}
.banner .human-text {
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(100% - 250px);
  top: 100px;
  margin: 0;
  padding: 20px;
  padding-left: 200px;
  line-height: var(--font-weight-normal);
  color: #000;
  background: rgba(255,255,255,.7);
}
.banner .human-text .title {
  display: block;
  margin: 10px 0;
  padding: 0;
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}
.banner .human-text .subtitle {
  font-size: 16px;
}
.banner .human-text .text {
  font-size: 16px;
}
.banner .car-image {
  display: block;
  position: absolute;
  z-index: 6;
  bottom: -50px;
  right: 0;
  height: 200px;
  width: auto;
  object-fit: contain;
  object-position: right center;
}
.banner .logo-image {
  display: block;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 70%;
  height: 80%;
  width: auto;
  -webkit-transform: translate(0,-50%);
          transform: translate(0,-50%);
  object-fit: contain;
  object-position: right center;
  opacity: 1;
  border-radius: 50%;
}
@media(max-width: 992px) {
  .banner .human-text .title {
    font-size: 28px;
  }
  .banner .human-text .subtitle {
    font-size: 14px;
  }
  .banner .human-text .text {
    font-size: 12px;
  }
}
@media(max-width: 768px) {
  .banner {
    height: 380px;
  }
  .banner::after {
    display: none;
  }
  .banner .human {
    left: 0;
    width: auto;
    opacity: 1;
  }
  .banner .human-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .banner .human-text {
    z-index: 3;
    top: auto;
    left: 0;
    bottom: -30px;
    width: 100vw;
    padding: 15px 20px;
    background: #fff;
    opacity: 1;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
  }
  .banner .human-text .title {
    margin: 5px 0;
  }
  .banner .human-text .text {
    max-width: 250px;
  }
  .banner .car-image {
    width: 50%;
    height: auto;
    margin-right: -50px;
  }
  .banner .logo-image {
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%,0);
            transform: translate(-50%,0);
    width: 200px;
    height: 200px;
    opacity: 1;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0,0,0,1);
  }
}
@media(max-width: 500px) {
  .banner .human {
    right: 30%;
  }
}





.banner .container {
  position: relative;
  z-index: 5;
  height: 600px;
}

.about-s ul {
	list-style: disc;
    padding-inline-start: 20px;
}

.ftb {
  display: block;
  position: fixed;
  z-index: 99;
  bottom: 30px;
  right: 30px;
  margin: 0;
  padding: 0;
}
.ftb-link {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  margin: 10px 0 0 0;
  padding: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.ftb-link.tlg {
  background: #2ca8dd;
  animation: fbt-shadow 1.5s linear 0s infinite;
}
.ftb-link.wa {
  background: #01e675;
  animation: fbt-shadow 1.5s linear 0s infinite;
}
.ftb-link.tlg img, .ftb-link.wa img {
  width: 35px;
  height: auto;
}





/**/