@charset "UTF-8";
/*
Theme Name: Plitka
Version: 1.0
Description: Вполне себе годная темка, получше некоторых
Author: Vlad Taranukha
Author URI: https://creatick.com.ua
*/
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
  font-family: "PT Sans", sans-serif;
  font-size: 1rem;
  color: #283440;
}

body {
  max-width: 1280px;
  margin: 0 auto;
  box-shadow: 0 0 4px 1px #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

/*Header styles*/
.pre-header {
  padding: 10px 20px;
  background: #283440;
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 768px) {
  .pre-header {
    flex-direction: column;
    align-items: center;
  }
}
.pre-header__location-schedule {
  display: inline-flex;
}
@media all and (max-width: 768px) {
  .pre-header__location-schedule {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 576px) {
  .pre-header__location-schedule {
    flex-direction: column;
    align-items: center;
  }
}
.pre-header__location-schedule span {
  color: #fff;
}
.pre-header__location, .pre-header__schedule, .pre-header__phone {
  display: inline-flex;
  align-items: center;
}
.pre-header__location img, .pre-header__schedule img, .pre-header__phone img {
  margin-right: 10px;
}
.pre-header__location a, .pre-header__schedule a, .pre-header__phone a {
  color: #ffffff;
  text-decoration: none;
}
.pre-header__location a:hover, .pre-header__schedule a:hover, .pre-header__phone a:hover {
  color: #09ba00;
}
.pre-header__location {
  margin-right: 50px;
}
@media all and (max-width: 576px) {
  .pre-header__location {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.main-header {
  padding: 10px 20px;
  background: url("images/header_bg.jpg") -40px center no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 992px) {
  .main-header {
    flex-direction: column;
  }
}
@media all and (max-width: 768px) {
  .main-header {
    flex-direction: row;
    align-items: center;
  }
}

.burger {
  display: none;
}
@media all and (max-width: 768px) {
  .burger {
    display: inline-flex;
	padding: 10px;
	background: #283440;
	border: 2px solid #27a419;
	border-radius: 50%;
  }
}

@media all and (max-width: 992px) {
  .logo {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 768px) {
  .logo {
    margin-bottom: 0;
  }
}
@media all and (max-width: 480px) {
  .logo {
    max-width: 240px;
  }
  
  .logo a{
	  display: block;
  }
  
  .logo a img{
	  max-width: 100%;
  }
}

.main-menu {
  flex-grow: 1;
  /*Mobile*/
}
@media all and (max-width: 768px) {
  .main-menu {
    display: none;
  }
}
.main-menu__list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}
.main-menu__item {
  margin-left: 20px;
}
.main-menu__item:first-of-type {
  margin-left: 0;
}
.main-menu__item a {
  padding: 5px 0;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  border-bottom: 2px solid transparent;
  letter-spacing: 1.25px;
}
.main-menu__item a:hover {
  border-bottom: 2px solid #09ba00;
  transition: border-bottom-color 0.25s;
}
.main-menu__mobile {
  background: #283440;
  display: none;
}
@media all and (min-width: 768px) {
  .main-menu__mobile {
    display: none;
  }
}
.main-menu__mobile-list {
  padding: 0 25px;
}
.main-menu__mobile-item:last-of-type a {
  border-bottom: none;
}
.main-menu__mobile-item a {
  display: block;
  padding: 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

/*Main styles*/
/*Products section*/
.products {
  padding: 10px 20px;
}
.products__header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.products__header-line {
  flex-grow: 1;
  height: 2px;
  background: #09ba00;
}
.products__header-name {
  margin: 0 25px;
  padding: 10px 0;
  border-top: 2px solid #09ba00;
  border-bottom: 2px solid #09ba00;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1.25px;
}
.products__list {
  display: flex;
  justify-content: space-evenly;
}
@media all and (max-width: 992px) {
  .products__list {
    flex-direction: column;
    align-items: center;
  }
}

.product {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 992px) {
  .product {
    margin-bottom: 10px;
  }
  .product:last-of-type {
    margin-bottom: 0;
  }
}
@media all and (max-width: 576px) {
  .product {
    margin-bottom: 0;
  }
}
.product__img {
  max-width: 150%;
}
.product__link {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.75);
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: transparent;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  text-decoration: none;
  border-top: 4px solid #09ba00;
  border-bottom: 4px solid #09ba00;
}
@media all and (max-width: 576px) {
  .product__link {
    transform: rotate(0);
    width: 100%;
    left: 0;
    color: #283440;
  }
  .product__link:hover {
    height: 100px;
    top: calc(50% - 50px);
    left: 0;
    border-top: 4px solid #09ba00;
    border-bottom: 4px solid #09ba00;
    border-left: none;
    border-right: none;
    border-radius: 0;
    transition: all 0s;
  }
}
.product__link:hover {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid #09ba00;
  border-radius: 10px;
  color: #283440;
  transform: rotate(0);
  transition: all 0.5s;
}

/*Consult*/
.consult {
  padding: 10px 20px;
  background: #283440;
  display: flex;
  justify-content: center;
}
.consult__link {
  background: #09ba00;
  color: #fff;
  padding: 10px 50px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1.25px;
  text-decoration: none;
  border-radius: 5px;
}
@media all and (max-width: 576px) {
  .consult__link {
    padding: 10px 25px;
  }
}
.consult__link:hover {
  background: #fff;
  color: #09ba00;
  transition: all 0.25s;
}

/*Why plitka*/
.why-plitka {
  padding: 10px 20px;
}
.why-plitka__info {
  display: flex;
  justify-content: space-evenly;
}
@media all and (max-width: 768px) {
  .why-plitka__info {
    flex-direction: column;
  }
}
.why-plitka__advantages-left {
  align-items: flex-end;
}
.why-plitka__advantages-left p{
  text-align: right;
}
.why-plitka__advantages-left, .why-plitka__advantages-right {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.why-plitka__advantages-right .why-plitka__advantage-check {
  margin-right: 25px;
  margin-left: 0;
}
.why-plitka__advantage {
  display: flex;
  align-items: center;
}
.why-plitka__advantage-check {
  margin-left: 25px;
  max-width: 48px;
}
@media all and (max-width: 992px) {
  .why-plitka__img {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .why-plitka__img {
    display: block;
    align-self: center;
  }
}

/*Call us*/
.call-us {
  padding: 10px 20px;
  background: #283440;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 768px) {
  .call-us {
    justify-content: space-between;
  }
}
@media all and (max-width: 576px) {
  .call-us {
    flex-direction: column;
    align-items: center;
  }
}
.call-us__txt {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  color: #fff;
  margin-right: 25px;
}
@media all and (max-width: 768px) {
  .call-us__txt {
    margin-right: 0;
  }
}
@media all and (max-width: 576px) {
  .call-us__txt {
    margin-bottom: 10px;
  }
}
.call-us__link {
  margin-left: 25px;
  color: #fff;
  background: #09ba00;
  display: inline-flex;
  align-items: center;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}
@media all and (max-width: 768px) {
  .call-us__link {
    margin-left: 0;
  }
}
.call-us__link:hover {
  background: #fff;
  color: #09ba00;
  transition: all 0.25s;
}

/*Advantages*/
.our-advantages {
  padding: 10px 20px;
}

.advantages-list {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 992px) {
  .advantages-list {
    flex-wrap: wrap;
  }
}

.advantage {
  padding: 0 10px;
  width: 25%;
}
@media all and (max-width: 992px) {
  .advantage {
    width: 45%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.advantage:last-of-type {
  margin-right: 0;
}
.advantage__header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
}
@media all and (max-width: 576px) {
  .advantage__header {
    justify-content: center;
  }
}
.advantage__txt {
  text-align: center;
}
.advantage__img {
  margin-right: 10px;
}

/*Contacts styles*/
.contacts {
  padding: 10px 20px;
}
.contacts__sections {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 768px) {
  .contacts__sections {
    flex-direction: column;
  }
}
.contacts__section {
  width: 45%;
  padding: 20px;
  background: #283440;
  border-radius: 10px;
}
@media all and (max-width: 768px) {
  .contacts__section {
    width: auto;
  }
}
.contacts__address, .contacts__links a, .contacts__map-link {
  color: #ffffff;
}
.contacts__address {
  text-align: center;
}
@media all and (max-width: 768px) {
  .contacts__address-wrapper {
    margin-bottom: 10px;
  }
}
.contacts__links a {
  display: inline-block;
  text-decoration: none;
}
.contacts__links a:first-of-type {
  margin-bottom: 10px;
}
.contacts__links a:hover {
  color: #09ba00;
}
.contacts__map-link:hover {
  color: #09ba00;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
@media all and (max-width: 768px) {
  .contacts__info {
    margin-bottom: 10px;
  }
}

.contact-form__inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.contact-form__inputs input {
  width: 45%;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  outline: none;
}
.contact-form textarea {
  width: 100%;
  resize: none;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 5px;
}
.contact-form__sbmt {
  width: 45% !important;
  padding: 10px !important;
  border-radius: 5px !important;
  border: none !important;
  outline: none !important;
  background: #09ba00 !important;
  color: #fff !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  letter-spacing: 1.25px !important;
}
.contact-form__sbmt:hover {
  cursor: pointer !important;
  background: #fff !important;
  color: #09ba00 !important;
  transition: all 0.25s !important;
}

/*Footer styles*/
.footer {
  background: #283440;
  padding: 10px 20px;
}

.copy {
  text-align: center;
  color: #fff;
}

/*Plitka*/
.single-product {
  border-bottom: 1px solid #283440;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.single-product:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.single-product__header {
  text-transform: uppercase;
  letter-spacing: 1.25px;
  margin-bottom: 10px;
}
.single-product__images {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.single-product__img {
  border-radius: 10px;
  max-width: 320px;
  max-height: 320px;
}
@media all and (max-width: 1024px) {
  .single-product__img {
    max-width: 240px;
  }
}
@media all and (max-width: 768px) {
  .single-product__img {
    width: auto;
    max-width: 100%;
  }
}
.single-product__tbl {
  margin-bottom: 10px;
}
.single-product__tbl table {
  border-collapse: collapse;
  border: 2px solid #283440;
  width: 100%;
}
.single-product__tbl table th {
  background: #283440;
  color: #fff;
}
.single-product__tbl table th sup {
  color: #fff;
}
.single-product__tbl table th, .single-product__tbl table td {
  border: 1px solid #283440;
  padding: 10px 0;
  vertical-align: middle;
  text-align: center;
}
.single-product__buy {
  display: inline-block;
  text-decoration: none;
  background: #09ba00;
  padding: 10px 20px;
  outline: none;
  border: 2px solid transparent;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}
.single-product__buy:hover {
  cursor: pointer;
  color: #09ba00;
  background: #fff;
  border: 2px solid #09ba00;
  transition: all 0.25s;
}

/*Projects*/
.projects {
  padding: 10px 20px 0;
}

.gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gallery img {
  max-width: 320px;
  margin-bottom: 10px;
}

/*Services*/
.services {
  padding: 10px 20px;
}

.service {
  border-bottom: 1px solid #283440;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.service:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.service__header {
  text-transform: uppercase;
  letter-spacing: 1.25px;
  margin-bottom: 10px;
}
.service__info {
  display: flex;
}
@media all and (max-width: 768px) {
  .service__info {
    flex-direction: column;
  }
}
.service__img {
  max-width: 320px;
  margin-right: 25px;
}
@media all and (max-width: 768px) {
  .service__img {
    max-width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.service__txt {
  text-align: justify;
}

.slider{
	position: relative;
}

.slider__img{
	max-width: 100%;
}

.slider__link{
	position: absolute;
	right: 50px;
	top: calc(50% - 21px);
	padding: 10px 25px;
	background: #09ba00;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 2rem;
	box-shadow: 0 0 10px #fff;
}

@media all and (max-width: 640px) {
  .slider__link {
    top: 30px;
  }
}

@media all and (max-width: 540px) {
  .slider__link {
    top: 10px;
  }
}

@media all and (max-width: 420px) {
  .slider__link {
    font-size: 1.25rem;
  }
}

@media all and (max-width: 360px) {
  .slider__link {
    padding: 7px 25px;
    font-size: 1rem;
  }
}

.slider__link1 {
  right: 300px;
}

@media all and (max-width: 640px) {
  .slider__link1 {
    right: 50px;
    bottom: 30px;
    top: unset;
  }
}

@media all and (max-width: 540px) {
  .slider__link1 {
    bottom: 10px;
  }
}



.slider > .wprt-container{
	height: 0;
}

@media all and (max-width: 992px) {
    .wprt-container {
        width: 100%;
    }

    .table-responsive table.table {
      width: 100%!important;
    }
}

/*# sourceMappingURL=style.css.map */
