/*
Theme Name: BUC-Theme
*/

@charset "UTF-8";
/*Цвет фона сайта */
/*Цвет активного елемента сайта */
.slick-active {
  outline: none !important;
}

.slick-slide {
  margin: 0 10px;
}

.slick-list {
  margin: 0 -10px;
}

button:focus, input:focus, textarea:focus, a:focus {
  outline: none;
}

@font-face {
  font-family: 'fontelloNew';
  src: url("assets/fonts/fontelloNew.eot?66064561");
  src: url("assets/fonts/fontelloNew.eot?66064561#iefix") format("embedded-opentype"),url("assets/fonts/fontelloNew.woff2?66064561") format("woff2"),url("assets/fonts/fontelloNew.woff?66064561") format("woff"),url("assets/fonts/fontelloNew.ttf?66064561") format("truetype"),url("assets/fonts/fontelloNew.svg?66064561#fontelloNew") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?66064561#fontello') format('svg');
  }
}
*/
[class^="ico-"]:before, [class*=" ico-"]:before {
  font-family: "fontelloNew";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.ico-mail:before {
  content: '\e800';
}

/* '' */
.ico-search:before {
  content: '\e801';
}

/* '' */
.ico-heart:before {
  content: '\e802';
}

/* '' */
.ico-heart-empty:before {
  content: '\e803';
}

/* '' */
.ico-star:before {
  content: '\e804';
}

/* '' */
.ico-star-empty:before {
  content: '\e805';
}

/* '' */
.ico-chat:before {
  content: '\e806';
}

/* '' */
.ico-location:before {
  content: '\e807';
}

/* '' */
.ico-basket:before {
  content: '\e808';
}

/* '' */
.ico-phone-squared:before {
  content: '\f098';
}

/* '' */
.ico-facebook:before {
  content: '\f09a';
}

/* '' */
.ico-filter:before {
  content: '\f0b0';
}

/* '' */
.ico-menu:before {
  content: '\f0c9';
}

/* '' */
.ico-star-half-alt:before {
  content: '\f123';
}

/* '' */
.ico-sort-alt-up:before {
  content: '\f160';
}

/* '' */
.ico-sort-alt-down:before {
  content: '\f161';
}

/* '' */
.ico-youtube-squared:before {
  content: '\f166';
}

/* '' */
.ico-youtube:before {
  content: '\f167';
}

/* '' */
.ico-instagram:before {
  content: '\f16d';
}

/* '' */
.ico-paper-plane:before {
  content: '\f1d8';
}

/* '' */
.ico-calc:before {
  content: '\f1ec';
}

/* '' */
.ico-whatsapp:before {
  content: '\f232';
}

/* '' */
.ico-balance-scale:before {
  content: '\f24e';
}

/* '' */
.ico-telegram:before {
  content: '\f2c6';
}

/* '' */
html {
  font-size: 10px;
}

body {
  margin: 0;
  background-color: #eef3f5;
  color: #131313;
  font-family: "Roboto", sans-serif;
  padding-top: 40px;
  font-size: 14px;
}

a {
  color: #228b22;
}

h2 {
  font-size: 24px;
}

hr {
  height: 2px;
  border: none;
  background-color: #228b22;
}

.btn {
  border: none;
  padding: 20px 30px;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}
.btn-primary {
  background-color: #228b22;
  border-bottom: 5px solid #186218;
}
.btn-primary:hover {
  background-color: #249324;
}

.top-nav {
  position: relative;
  background-color: #fff;
  padding: 15px 34px;
}
.top-nav_btn {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  font-size: 30px;
  right: 4rem;
  top: 6rem;
  margin-top: -20px;
  color: #228b22;
}
.top-nav_btn:hover {
  cursor: pointer;
}
.top-nav_menu {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-nav_menu li {
  margin-right: 45px;
}
.top-nav_menu li:last-child {
  margin-right: 0;
}
.top-nav_menu li a {
  text-transform: uppercase;
  text-decoration: none;
  color: #131313;
  font-weight: 700;
}
.top-nav_menu li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #228b22;
  -webkit-transform: translateY(37px) scale(0);
          transform: translateY(37px) scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.top-nav_menu li a:hover {
  text-decoration: none;
}
.top-nav_menu li a:hover::after {
  -webkit-transform: translateY(38px) scale(1);
          transform: translateY(38px) scale(1);
}

.left-sidebar {
  margin-top: 4rem;
}
.left-sidebar_btn {
  display: none;
  background-color: #fff;
  padding: 15px;
  position: relative;
}
.left-sidebar_btn:hover {
  cursor: pointer;
}
.left-sidebar_btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 3.3rem;
  width: 15px;
  height: 15px;
  content: "";
  border-bottom: 2px solid #228b22;
  border-right: 2px solid #228b22;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.left-sidebar_menu {
  background-color: #fff;
  list-style: none;
  padding: 0;
}
.left-sidebar_menu li {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.left-sidebar_menu li:first-child a {
  padding-top: 20px;
}
.left-sidebar_menu li:last-child a {
  padding-bottom: 20px;
}
.left-sidebar_menu li a {
  display: block;
  padding: 15px 29px;
  text-decoration: none;
  color: #131313;
  font-size: 16px;
  font-weight: 400;
}
.left-sidebar_menu li .children li{
  display: block;
}
.left-sidebar_menu li  a:hover {
  background-color: #228b22;
  color: #fff;
}
.left-sidebar_item {
  margin-top: 30px;
  background-color: #fff;
  padding-top: 30px;
}
.left-sidebar_item:hover {
  cursor: pointer;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 1, 0.5);
            box-shadow: 0 5px 10px rgba(0, 0, 1, 0.5);
    
}
.left-sidebar_item img {
  max-width: 80%;
  height: fit-content;
  display: block;
  margin: auto;
  
  /*max-width: 80%;
  margin-right: auto;
  
  */
}
.left-sidebar_item_description {
  padding: 30px;
}
.left-sidebar_item_description h3 {
  text-transform: uppercase;
  font-weight: 400;
}

.content {
  padding-right: 10px;
  margin-top: 40px;
  margin-bottom: 70px;
}

.directions {
  padding-right: 10px;
  margin-top: 80px;
  -webkit-column-gap: 78px;
          column-gap: 78px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0px;
}
.directions-block {
  position: relative;
  background-color: #fff;
  height: 300px;
  text-align: center;
}
.directions-block:hover {
  cursor: pointer;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 1, 0.5);
            box-shadow: 0 5px 10px rgba(0, 0, 1, 0.5);
    
}
.directions-block h3 {
  color: #228b22;
  height: 3rem;
}
.directions-block img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0px;
}
.footer {
  margin-top: 60px;
  background-color: #131313;
  padding: 50px 0;
  color: #666666;
}
.footer-policy-link {
  font-size: 12px;
}
.footer p {
  margin-bottom: 14px;
}
.footer a {
  color: #666666;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer small {
  display: block;
  margin-top: 56px;
  line-height: 16px;
  font-style: 10px;
  max-width: 80%;
}
.footer ul {
  padding: 0;
  list-style: none;
}
.footer ul li {
  line-height: 32px;
}
.footer-contact, .footer-social-links {
  text-align: right;
}
.footer-contact_phone a{
  font-weight: 400;
  font-size: 20px;
  color: #228b22;
}
.footer-social-links li {
  display: inline-block;
}
.footer-social-links li a {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer-social-links li a img {
  display: block;
  padding-top: 15%;
  padding-left: 15%;
  width: 70%;
}
.footer-social-links li a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/*About Team */
.team {
  text-align: center;
}
.team h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}
.team p {
  margin-bottom: 40px;
}

/*Contacts */
.contacts {
  font-size: 16px;
  line-height: 2;
}
.contacts i {
  font-size: 30px;
  color: #228b22;
  margin-right: 12px;
  vertical-align: middle;
}
.contacts-adr {
  display: block;
  text-decoration: none;
}
.contacts-btn {
  margin-top: 40px;
}
.contacts-social-links ul {
  margin-top: 40px;
  padding: 0;
  list-style: none;
}
.contacts-social-links ul li {
  display: inline-block;
  padding-right: 15px;
}
.contacts-social-links ul li a {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-color: white;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.contacts-social-links ul li a img {
  display: block;
  padding-top: 15%;
  padding-left: 15%;
  width: 70%;
}
.contacts-social-links ul li a:hover {
  background-color: rgba(34, 139, 34, 0.2);
}
.map-parent{
  /*position: relative;*/
}
.contacts_map{
 height: 100%;
  /*position: absolute; 
  left:0;
  right:0;
  top:0;
  bottom:0;*/
}
.map-parent iframe{
  display: block;
  width: 95%;
  height: 95%;
  min-height: 450px;
}
/*Items */
.items_item {
  position: relative;
  height: 300px;
  background-color: #fff;
  padding: 25px 25px;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.items_item:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 1, 0.5);
          box-shadow: 0 5px 10px rgba(0, 0, 1, 0.5);
  cursor: pointer;
}
.items_item img {
  max-width: 100%;
  height: fit-content;
  margin-bottom: 20px;
}
.items_item a {
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}
.items_item_description p{
    position: absolute;
    left: 25px;
    right: 0px;
    margin: 0 auto;
    bottom: 25px;
}

/*Item */
.item_card_link {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}
.item_card_link a {
  font-size: 1rem;
}
.item_card_link h2 {
  font-size: 1.5rem;
  display: inline-block;
}
.item_card_info {
  padding: 10px;
  display: inline-block;
}
.item_card_info img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  min-height: 50rem;
  margin-bottom: 30px;
}
.item_card_info_header {
  font-size: 4rem;
  margin-bottom: 30px;
}
.item_card_info_header_price {
  text-align: right;
}
.item_card_info_header_call a {
  margin-top: 30px;
  display: block;
  text-align: center;
}

/*Calc */
.calc {
  margin-bottom: 30px;
}
.calc h4 {
  margin-top: 0;
  margin-bottom: 30px;
}
.calc-radio {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.calc-legal {
  font-size: 12px;
}
.calc-programms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.calc label {
  display: inline-block;
  margin-bottom: 20px;
}
.calc label small {
  display: block;
  margin-left: 24px;
  opacity: 0.5;
  font-size: 10px;
}
.calc label:hover {
  cursor: pointer;
}
.calc label::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  -webkit-box-shadow: 0 5px rgba(0, 0, 1, 0.1);
          box-shadow: 0 5px rgba(0, 0, 1, 0.1);
  background-color: #fff;
  outline: 6px solid #fff;
  outline-offset: -5px;
  border-radius: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.calc input[type="radio"] {
  display: none;
}
.calc input[type="radio"]:checked + label::before {
  background-color: #228b22;
  outline: 6px solid #fff;
  outline-offset: -5px;
}
.calc-sum_size {
  margin-top: 30px;
}
.calc-sum_size_label {
  margin-right: 10px;
}
.calc-sum_size_number {
  display: inline-block;
  padding: 10px 48px;
  background-color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.calc-unit {
  max-width: 38%;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  padding: 10px 20px;
  margin-right: 10px;
}
.calc-unit strong {
  font-size: 18px;
  color: #228b22;
  font-weight: 700;
}
.calc-unit small {
  font-size: 10px;
}
.calc-total {
  max-width: 38%;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
}
.calc-total strong {
  font-size: 18px;
  color: #228b22;
  font-weight: 700;
}
.calc-total small {
  font-size: 10px;
}

.modal {
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.modal-content {
  position: relative;
  background-color: #fff;
  padding: 30px 50px;
  width: 100%;
  max-width: 370px;
  margin: 100px auto;
  text-align: center;
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 1, 0.18);
          box-shadow: 0 12px 24px rgba(0, 0, 1, 0.18);
}
.modal-content .close {
  position: absolute;
  right: 10px;
  top: 10px;
  line-height: 1;
  font-size: 25px;
  opacity: 0.5;
}
.modal-content .close:hover {
  cursor: pointer;
}
.modal-content h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  color: #228b22;
}
.modal-content p {
  font-size: 12px;
  margin-top: 0;
}
.modal-form {
  margin-top: 30px;
}
.modal-form input {
  display: block;
  width: 90%;
  border: 1px solid rgba(19, 19, 19, 0.15);
  font-size: 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 20px;
}
.modal-form input[type="submit"] {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

/*services*/
/*.service-card{
    display:block;    
}
.service-card_img{
    display:inline-block;
}
.service-card_head{
    display:inline-block;
}
.service-card_text{
    display:inline-block;
}*/
.service-card {
  /*border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  */
  margin-bottom: 30px;
  background-color:#fff ;
}

.service-card_header {
  text-align: center;
  padding: 20px;
}

.service-card_header h3 {
  font-size: 24px;
  color: #228b22;
  margin: 0;
}

.service-card_body {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.service-card_body img {
  width: 40%;
  height: auto;
  margin-right: 20px;
}

.service-card_body p {
  font-size: 18px;
  line-height: 1.5;
  padding: 3px;
}

@media (max-width: 767px), {
  html {
    font-size: 7px;
  }

  .top-nav_btn {
    display: block;
  }
  .top-nav_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: none;
  }
  .top-nav_menu__active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top-nav_menu li {
    line-height: 2;
  }
  .top-nav_menu li a::after {
    display: none;
  }

  .left-sidebar_btn {
    display: block;
  }
  .left-sidebar_menu {
    display: none;
  }
  .left-sidebar_menu__active {
    display: block;
  }
  .left-sidebar_item {
    display: none;
  }

  .directions-block {
    /*height: 30rem; - при переносе на wordpress не работает*/
  }

  .footer_menu {
    font-size: 1.5rem;
  }
  .footer-contact, .footer-social-links {
    text-align: center;
  }

  .copy {
    text-align: center;
  }

  small {
    display: block;
    margin: 36px auto;
  }

  .items_item {
    background-color: #fff;
  }
  .items_item img {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  .items_item_description {
    margin-left: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 7px;
  }

  .top-nav_btn {
    display: block;
  }
  .top-nav_menu {
    display: none;
  }
  .top-nav_menu__active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .top-nav_menu li {
    margin-right: 10px;
    line-height: 2;
  }
  .top-nav_menu li a::after {
    display: none;
  }

  .left-sidebar_btn {
    display: block;
  }
  .left-sidebar_menu {
    display: none;
  }
  .left-sidebar_menu__active {
    display: block;
  }
  .left-sidebar_item {
    display: none;
  }

  .footer_menu {
    font-size: 1.5rem;
  }
  .footer-contact, .footer-social-links {
    text-align: center;
  }

  .team img {
    max-width: 90%;
  }

  .calc-unit {
    max-width: 36%;
    display: inline-block;
    text-align: center;
    background-color: #fff;
    padding: 10px 20px;
    margin-right: 10px;
  }
  .calc-unit strong {
    font-size: 18px;
    color: #228b22;
    font-weight: 700;
  }
  .calc-unit small {
    font-size: 10px;
  }

  .calc-total {
    max-width: 36%;
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
  }
  .calc-total strong {
    font-size: 18px;
    color: #228b22;
    font-weight: 700;
  }
  .calc-total small {
    font-size: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .top-nav .col-xl-auto {
    width: auto;
  }

  .team img {
    max-width: 90%;
  }

  .calc-unit {
    max-width: 36%;
    display: inline-block;
    text-align: center;
    background-color: #fff;
    padding: 10px 20px;
    margin-right: 10px;
  }
  .calc-unit strong {
    font-size: 18px;
    color: #228b22;
    font-weight: 700;
  }
  .calc-unit small {
    font-size: 10px;
  }

  .calc-total {
    max-width: 36%;
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
  }
  .calc-total strong {
    font-size: 18px;
    color: #228b22;
    font-weight: 700;
  }
  .calc-total small {
    font-size: 10px;
  }
}

