@charset "UTF-8";
/*--------------------------------------------------------------
 *# General
 *-------------------------------------------------------------- */
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  background-color: #353535;
}

.main-background {
  background: url("../img/hero.png") top center no-repeat;
  background-size: cover;
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
}

a {
  color: #bb0f0f;
  text-decoration: none;
}

a:hover {
  color: #bb0f0f;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
}

/*--------------------------------------------------------------
 *# Sections General
 *-------------------------------------------------------------- */
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-dark {
  padding: 120px 0;
  color: #fff;
}

.section-dark:before {
  content: "";
  position: absolute;
  background: #242424;
  bottom: 50px;
  top: 50px;
  left: 0;
  right: 0;
}

.section-title {
  text-align: center;
  padding: 0 7% 30px 7%;
  position: relative;
}

@media (min-width: 992px) {
  .section-title {
    padding: 0 20% 30px 20%;
  }
}

.section-title h2 {
  font-size: 32px;
  text-shadow: 2px 2px 5px #000000;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #bb0f0f;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
 *# Back to top button
 *-------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0;
  bottom: 15px;
  z-index: 996;
  background: #000000a9;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

@media (max-width: 767.98px) {
  .back-to-top {
    left: 0;
  }
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
  transition: 0.4s;
}

@media (min-width: 767.98px) {
  .back-to-top:hover {
    width: 55px;
  }
  .back-to-top:hover i {
    color: #bb0f0f;
    transition: .4s;
  }
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.text-call {
  position: fixed;
  left: 0;
  bottom: 10px;
  z-index: 996;
  background: #000000a9;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

@media (max-width: 767.98px) {
  .text-call {
    left: 0;
  }
}

.text-call i {
  color: #fff;
  font-size: 20px;
  line-height: 0;
  transition: 0.4s;
}

@media (min-width: 767.98px) {
  .text-call:hover {
    width: 55px;
  }
  .text-call:hover i {
    color: #bb0f0f;
    transition: .4s;
  }
}

.back-call {
  margin-bottom: 225px;
}

.youtube {
  margin-bottom: 170px;
}

.instagramm {
  margin-bottom: 115px;
}

.facebook {
  margin-bottom: 60px;
}

/*--------------------------------------------------------------
 *# Disable aos animation delay on mobile devices
 *-------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
 *# Header
 *-------------------------------------------------------------- */
#header {
  background-color: #353535;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  box-shadow: 0px 0px 8px #000;
}

#header.header-scrolled {
  padding: 0;
  box-shadow: 0px 8px 8px #000;
}

#header .logo img {
  max-height: 60px;
  padding: 0;
}

#header .round {
  background-color: #bb0f0f;
  box-shadow: 0px 2px 5px #000;
  border: 1px solid #bb0f0f;
  width: 40px;
  color: red;
  padding: 8px;
}

#header .round:hover {
  background-color: #000000;
}

#header .round .language {
  color: #fff600;
  border-radius: 5px;
}

#header .round .language:hover {
  color: #ffffff;
}

#header .top-nav {
  list-style: none;
  margin-top: 0.1rem;
  background-color: #bb0f0f;
}

#header .top-nav .dropdown-menu {
  border: 2px solid #2b2a2a;
  border-radius: 3px;
  background: #bb0f0f;
  box-shadow: 10px 10px 7px #000000;
  transition: 0.4s;
}

#header .top-nav a {
  color: #fff600;
}

#header .top-nav a:hover {
  color: #000;
  background-color: #bb0f0f;
}

#header .top-nav .dropdown-item {
  color: #fff;
}

#header .top-nav .dropdown-item:hover {
  background-color: #bb0f0f;
  color: #000;
}

/*--------------------------------------------------------------
 *# Navigation Menu
 *-------------------------------------------------------------- */
/**
 ** Desktop Navigation */
.navbar {
  padding: 0;
  background-color: #353535;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.4s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover {
  color: #bb0f0f;
}

.navbar .active, .navbar li:hover > a {
  color: #bb0f0f;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: -100px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  border: 2px solid #2b2a2a;
  border-radius: 3px;
  background: #bb0f0f;
  box-shadow: 10px 10px 7px #000000;
  transition: 0.4s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover {
  color: #000;
}

.navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #000;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropstart ul {
  top: -100px;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropstart:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
 *# Mobile Navigation
 *-------------------------------------------------------------- */
.mobile-nav-toggle {
  color: #bb0f0f;
  font-size: 50px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #bb0f0f;
  margin-left: 82%;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  left: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #353535;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .navbar-mobile a {
    font-size: 20px;
  }
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #bb0f0f;
  box-shadow: #000000 0 0 10px 5px;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  font-size: 10px;
}

@media (min-width: 370px) {
  .navbar-mobile .dropdown ul a {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .navbar-mobile .dropdown ul a {
    font-size: 16px;
  }
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover {
  color: #bb0f0f;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
 *# Головна
 *-------------------------------------------------------------- */
.main-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  margin-top: 80px;
}

@media (min-width: 992px) {
  .main-hero {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .main-hero .main-hero-images {
    margin: 30% 5% 0 0;
  }
}

@media (min-width: 1400px) {
  .main-hero .main-hero-images {
    margin: 35% 12% 0 0;
  }
}

.main-hero .main-hero-images .yellow-square {
  width: 60%;
  height: 250px;
  background: #fff600;
  box-shadow: #000000 0 0 10px 5px;
  margin: -60% auto 0 auto;
  padding-bottom: 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 360px) {
  .main-hero .main-hero-images .yellow-square {
    height: 330px;
  }
}

@media (min-width: 400px) {
  .main-hero .main-hero-images .yellow-square {
    height: 370px;
  }
}

@media (min-width: 460px) {
  .main-hero .main-hero-images .yellow-square {
    height: 450px;
  }
}

@media (min-width: 576px) {
  .main-hero .main-hero-images .yellow-square {
    height: 520px;
  }
}

@media (min-width: 690px) {
  .main-hero .main-hero-images .yellow-square {
    height: 560px;
  }
}

@media (min-width: 768px) {
  .main-hero .main-hero-images .yellow-square {
    height: 650px;
  }
}

@media (min-width: 868px) {
  .main-hero .main-hero-images .yellow-square {
    height: 750px;
  }
}

@media (min-width: 992px) {
  .main-hero .main-hero-images .yellow-square {
    width: 80%;
    height: 370px;
    margin-top: -65%;
  }
}

@media (min-width: 1200px) {
  .main-hero .main-hero-images .yellow-square {
    width: 100%;
    height: 500px;
    margin-top: -80%;
  }
}

.main-hero .main-hero-images .yellow-square .main-hero-btn-box {
  margin-bottom: -5%;
}

@media (min-width: 992px) {
  .main-hero .main-hero-images .yellow-square .main-hero-btn-box {
    display: none;
  }
}

.main-hero .main-hero-images .yellow-square .main-hero-btn-box .hero-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 3px 8px;
  border: 3px solid #bb0f0f;
  border-radius: 40px;
  transition: 0.6s;
  color: #fff;
  background: #353535;
  text-align: center;
  box-shadow: 0 0 8px #000;
}

.main-hero .main-hero-images .yellow-square .main-hero-btn-box .hero-btn:hover {
  background: #bb0f0f;
  color: #fff;
}

@media (min-width: 768px) {
  .main-hero .main-hero-images .yellow-square .main-hero-btn-box .hero-btn {
    padding: 10px 20px;
    font-size: 18px;
  }
}

.main-hero .main-hero-images .comercial-square img {
  width: 72%;
  margin: 3% 0 0 35%;
  box-shadow: #000000 0 0 10px 5px;
}

@media (min-width: 992px) {
  .main-hero .main-hero-images .comercial-square img {
    width: 80%;
    margin-top: 0%;
  }
}

@media (min-width: 1200px) {
  .main-hero .main-hero-images .comercial-square img {
    width: 100%;
  }
}

.main-hero .main-hero-images .home-square img {
  width: 72%;
  margin: -25% 0 0 0;
  box-shadow: #000000 0 0 10px 5px;
}

@media (min-width: 992px) {
  .main-hero .main-hero-images .home-square img {
    width: 80%;
    margin-left: -15%;
    margin-top: -30%;
  }
}

@media (min-width: 1200px) {
  .main-hero .main-hero-images .home-square img {
    width: 100%;
    margin-left: -25%;
  }
}

.main-hero .main-hero-text {
  display: flex;
  flex-direction: column;
}

@media (min-height: 800px) {
  .main-hero .main-hero-text {
    margin-top: 18%;
  }
}

@media (min-width: 576px) {
  .main-hero .main-hero-text {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .main-hero .main-hero-text {
    margin: 5% 0 0 5%;
    max-width: 45%;
  }
}

.main-hero .main-hero-text .main-hero-title {
  margin-top: 10%;
  margin-left: 10%;
}

@media (min-width: 450px) {
  .main-hero .main-hero-text .main-hero-title {
    margin-top: 7%;
  }
}

@media (min-width: 768px) {
  .main-hero .main-hero-text .main-hero-title {
    margin-top: 5%;
  }
}

.main-hero .main-hero-text .main-hero-title .main-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 0px 2px #000;
  line-height: 90%;
}

@media (min-width: 450px) {
  .main-hero .main-hero-text .main-hero-title .main-title {
    font-size: 40px;
  }
}

@media (min-width: 576px) {
  .main-hero .main-hero-text .main-hero-title .main-title {
    font-size: 46px;
  }
}

@media (min-width: 768px) {
  .main-hero .main-hero-text .main-hero-title .main-title {
    font-size: 46px;
  }
}

@media (min-width: 992px) {
  .main-hero .main-hero-text .main-hero-title .main-title {
    text-align: start;
    font-size: 36px;
  }
}

@media (min-width: 1200px) {
  .main-hero .main-hero-text .main-hero-title .main-title {
    font-size: 52px;
  }
}

@media (min-width: 1400px) {
  .main-hero .main-hero-text .main-hero-title .main-title {
    font-size: 60px;
  }
}

.main-hero .main-hero-text .main-hero-title .main-title .yelow-title {
  color: #fff600;
  transition: 0.9s;
}

.main-hero .main-hero-text .main-hero-title .main-subtitle {
  color: #fff600;
  margin-top: 4%;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0px 0px 2px #000;
}

@media (min-height: 800px) {
  .main-hero .main-hero-text .main-hero-title .main-subtitle {
    margin-top: 5%;
  }
}

@media (min-width: 450px) {
  .main-hero .main-hero-text .main-hero-title .main-subtitle {
    font-size: 26px;
  }
}

@media (min-width: 576px) {
  .main-hero .main-hero-text .main-hero-title .main-subtitle {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .main-hero .main-hero-text .main-hero-title .main-subtitle {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .main-hero .main-hero-text .main-hero-title .main-subtitle {
    text-align: start;
    margin-top: 3%;
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .main-hero .main-hero-text .main-hero-title .main-subtitle {
    font-size: 30px;
  }
}

@media (min-width: 1400px) {
  .main-hero .main-hero-text .main-hero-title .main-subtitle {
    font-size: 32px;
  }
}

.main-hero .main-hero-text .main-hero-title .hero-text-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 5px 0px;
  display: inline-block;
  text-align: center;
  margin-top: 5%;
  border: 3px solid #bb0f0f;
  border-radius: 40px;
  transition: 0.6s;
  color: #fff;
  background: transparent;
  box-shadow: 0 0 8px #000;
  width: 40%;
  display: none;
}

.main-hero .main-hero-text .main-hero-title .hero-text-btn:hover {
  background: #bb0f0f;
  color: #fff;
}

@media (min-width: 992px) {
  .main-hero .main-hero-text .main-hero-title .hero-text-btn {
    display: block;
  }
}

@media (min-width: 1200px) {
  .main-hero .main-hero-text .main-hero-title .hero-text-btn {
    font-size: 18px;
    padding: 5px 0px;
  }
}

@media (min-width: 1400px) {
  .main-hero .main-hero-text .main-hero-title .hero-text-btn {
    font-size: 20px;
    padding: 10px 0px;
  }
}

.main-hero .main-hero-text .main-hero-subtitle {
  margin-left: 10%;
}

@media (min-width: 992px) {
  .main-hero .main-hero-text .main-hero-subtitle {
    margin-top: 20%;
  }
}

@media (min-width: 1200px) {
  .main-hero .main-hero-text .main-hero-subtitle {
    width: 70%;
  }
}

@media (min-width: 1400px) {
  .main-hero .main-hero-text .main-hero-subtitle {
    margin-top: 15%;
  }
}

.main-hero .main-hero-text .main-hero-subtitle .utp-title {
  margin-top: 10%;
  font-size: 24px;
  color: #ffffff;
  text-shadow: 0px 0px 2px #000;
  letter-spacing: 1px;
  line-height: 90%;
  font-weight: 600;
}

@media (max-width: 992px) {
  .main-hero .main-hero-text .main-hero-subtitle .utp-title {
    display: none;
  }
}

@media (min-width: 1200px) {
  .main-hero .main-hero-text .main-hero-subtitle .utp-title {
    margin-top: 30%;
    font-size: 24px;
  }
}

@media (min-width: 1400px) {
  .main-hero .main-hero-text .main-hero-subtitle .utp-title {
    font-size: 28px;
    margin-top: 30%;
  }
}

.main-hero .main-hero-text .main-hero-subtitle .utp-title .yelow-title {
  color: #fff600;
}

.main-hero .main-hero-text .main-hero-subtitle .utp {
  font-size: 18px;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .main-hero .main-hero-text .main-hero-subtitle .utp {
    font-size: 18px;
  }
}

@media (min-width: 1400px) {
  .main-hero .main-hero-text .main-hero-subtitle .utp {
    font-size: 22px;
  }
}

.main-hero .main-hero-text .main-hero-subtitle .utp i {
  color: #f3f712;
}

.main-hero .main-hero-text .main-hero-subtitle .hero-text-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 5px 0px;
  display: inline-block;
  text-align: center;
  margin-top: 5%;
  border: 3px solid #bb0f0f;
  border-radius: 40px;
  transition: 0.6s;
  color: #fff;
  background: transparent;
  box-shadow: 0 0 8px #000;
  width: 50%;
  display: none;
}

.main-hero .main-hero-text .main-hero-subtitle .hero-text-btn:hover {
  background: #bb0f0f;
  color: #fff;
}

@media (min-width: 992px) {
  .main-hero .main-hero-text .main-hero-subtitle .hero-text-btn {
    display: block;
  }
}

@media (min-width: 1200px) {
  .main-hero .main-hero-text .main-hero-subtitle .hero-text-btn {
    width: 60%;
    font-size: 18px;
    padding: 5px 0px;
  }
}

@media (min-width: 1400px) {
  .main-hero .main-hero-text .main-hero-subtitle .hero-text-btn {
    width: 60%;
    font-size: 20px;
    padding: 10px 0px;
  }
}

/*--------------------------------------------------------------
 *# Послуги та товари
 *-------------------------------------------------------------- */
.about {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin-top: 0%;
}

@media (min-width: 992px) {
  .about {
    flex-direction: row;
    justify-content: space-between;
  }
}

.about .main-section-title {
  margin-bottom: -14%;
  text-align: center;
  z-index: 3;
}

@media (min-width: 992px) {
  .about .main-section-title {
    display: none;
  }
}

.about .main-section-title h2 {
  font-size: 26px;
  font-weight: 700;
  text-shadow: 0 0 3px #000000;
}

@media (min-width: 450px) {
  .about .main-section-title h2 {
    font-size: 36px;
  }
}

@media (min-width: 576px) {
  .about .main-section-title h2 {
    font-size: 40px;
  }
}

.about .about-items {
  display: flex;
}

.about .about-items .item-square {
  width: 50%;
  height: 650px;
  background: #bb0f0f;
  box-shadow: #0000008f 0 0 10px 5px;
}

@media (min-width: 576px) {
  .about .about-items .item-square {
    height: 800px;
  }
}

@media (min-width: 768px) {
  .about .about-items .item-square {
    height: 850px;
  }
}

.about .about-items .item-table {
  display: flex;
  flex-direction: column;
  padding: 5px;
  margin-top: 15%;
  margin-left: -50%;
  width: 100%;
  z-index: 2;
}

.about .about-items .item-table .table-title {
  display: inline-block;
  margin-left: 30%;
  width: 150%;
  display: none;
}

@media (min-width: 992px) {
  .about .about-items .item-table .table-title {
    display: block;
  }
}

.about .about-items .item-table .table-title h2 {
  font-size: 32px;
  text-shadow: 0 0 3px #000000;
  margin-left: 15%;
}

@media (min-width: 1200px) {
  .about .about-items .item-table .table-title h2 {
    font-size: 36px;
    font-weight: 700;
  }
}

.about .about-items .item-table .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  height: 70px;
  width: 100%;
  background-color: #262626;
  box-shadow: #0000008f 0 0 10px 5px;
  z-index: 2;
}

@media (min-width: 375px) {
  .about .about-items .item-table .table-header {
    height: 90px;
  }
}

@media (min-width: 450px) {
  .about .about-items .item-table .table-header {
    height: 100px;
  }
}

@media (min-width: 576px) {
  .about .about-items .item-table .table-header {
    height: 120px;
  }
}

@media (min-width: 992px) {
  .about .about-items .item-table .table-header {
    width: 120%;
    margin-left: -2%;
    margin-top: 5%;
  }
}

.about .about-items .item-table .table-header .title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: #bb0f0f;
  text-shadow: 0 0 3px #000000;
}

@media (min-width: 450px) {
  .about .about-items .item-table .table-header .title {
    font-size: 20px;
  }
}

@media (min-width: 576px) {
  .about .about-items .item-table .table-header .title {
    font-size: 26px;
  }
}

.about .about-items .item-table .table-header .price {
  font-size: 19px;
  font-weight: 900;
  margin-left: 10%;
  color: #bb0f0f;
  text-shadow: 0 0 3px #000000;
}

@media (min-width: 450px) {
  .about .about-items .item-table .table-header .price {
    font-size: 26px;
  }
}

@media (min-width: 576px) {
  .about .about-items .item-table .table-header .price {
    font-size: 32px;
  }
}

.about .about-items .item-table .table-body {
  background-color: #262626;
  box-shadow: #000000 0 0 10px 5px;
  width: 90%;
  margin: 0 auto;
  z-index: 1;
}

@media (min-width: 992px) {
  .about .about-items .item-table .table-body {
    margin-left: 10%;
  }
}

@media (min-width: 1400px) {
  .about .about-items .item-table .table-body {
    width: 95%;
  }
}

.about .about-items .item-table .table-body a {
  color: #fff;
}

.about .about-items .item-table .table-body i {
  font-size: 20px;
  color: #bb0f0f;
}

@media (min-width: 576px) {
  .about .about-items .item-table .table-body i {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .about .about-items .item-table .table-body i {
    font-size: 20px;
  }
}

.about .about-items .item-table .table-body thead {
  background-color: #323131;
}

.about .about-items .item-table .table-body thead th {
  color: #fff;
  font-size: 18px;
}

@media (min-width: 450px) {
  .about .about-items .item-table .table-body thead th {
    font-size: 22px;
  }
}

@media (min-width: 576px) {
  .about .about-items .item-table .table-body thead th {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .about .about-items .item-table .table-body thead th {
    font-size: 24px;
  }
}

.about .about-items .item-table .table-body tbody {
  background-color: #262626;
  max-width: 90%;
}

.about .about-items .item-table .table-body tbody td, .about .about-items .item-table .table-body tbody a {
  color: #fff;
}

.about .about-items .item-table .table-body tbody td:hover, .about .about-items .item-table .table-body tbody a:hover {
  color: #bb0f0f;
}

@media (min-width: 450px) {
  .about .about-items .item-table .table-body tbody td, .about .about-items .item-table .table-body tbody a {
    font-size: 18px;
  }
}

@media (min-width: 576px) {
  .about .about-items .item-table .table-body tbody td, .about .about-items .item-table .table-body tbody a {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .about .about-items .item-table .table-body tbody td, .about .about-items .item-table .table-body tbody a {
    font-size: 18px;
  }
}

.about .about-items .item-table .table-body tbody .table-price {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 450px) {
  .about .about-items .item-table .table-body tbody .table-price {
    font-size: 22px;
  }
}

@media (min-width: 576px) {
  .about .about-items .item-table .table-body tbody .table-price {
    font-size: 24px;
  }
}

.about .about-items .item-table .table-body tbody .go-to-shop {
  color: #bb0f0f;
  font-size: 16px;
  display: inline-block;
  margin-top: 5%;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 2px #000000;
}

@media (min-width: 450px) {
  .about .about-items .item-table .table-body tbody .go-to-shop {
    font-size: 22px;
    margin-top: 2%;
  }
}

@media (min-width: 576px) {
  .about .about-items .item-table .table-body tbody .go-to-shop {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .about .about-items .item-table .table-body tbody .go-to-shop {
    font-size: 22px;
  }
}

.about .about-items .item-table .table-body tbody i {
  margin-left: 5px;
  font-size: 28px;
}

@media (min-width: 576px) {
  .about .about-items .item-table .table-body tbody i {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .about .about-items .item-table .table-body tbody i {
    font-size: 28px;
  }
}

.about .icon-boxes {
  margin-top: 5%;
  margin-left: 5%;
}

@media (min-width: 992px) {
  .about .icon-boxes {
    margin-left: 0;
    margin-top: 40%;
  }
}

.about .icon-boxes span {
  display: inline-block;
  margin-top: 5%;
  color: #bb0f0f;
  text-shadow: 0 0 2px #000000;
  font-size: 18px;
  font-weight: 700;
}

@media (min-width: 450px) {
  .about .icon-boxes span {
    font-size: 26px;
  }
}

@media (min-width: 576px) {
  .about .icon-boxes span {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .about .icon-boxes span {
    font-size: 18px;
  }
}

.about .icon-boxes .square {
  margin-left: -3%;
  margin-bottom: 20px;
  padding-bottom: 30px;
  background: #252525;
}

@media screen and (min-width: 992px) {
  .about .icon-boxes .square {
    background: transparent;
  }
}

.about .icon-boxes i {
  font-size: 60px;
  color: #bb0f0f;
  margin: 0 0 10px 8%;
  text-shadow: 0px 0px 2px #000000;
}

@media (min-width: 576px) {
  .about .icon-boxes i {
    font-size: 70px;
  }
}

.about .icon-boxes h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 8%;
  text-shadow: 0px 0px 2px #000000;
}

@media (min-width: 450px) {
  .about .icon-boxes h4 {
    font-size: 30px;
  }
}

@media (min-width: 576px) {
  .about .icon-boxes h4 {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .about .icon-boxes h4 {
    font-size: 22px;
  }
}

.about .icon-boxes p {
  font-size: 14px;
  color: #ffffff;
  margin-left: 8%;
  text-shadow: 0px 0px 2px #000000;
}

@media (min-width: 450px) {
  .about .icon-boxes p {
    font-size: 22px;
  }
}

@media (min-width: 576px) {
  .about .icon-boxes p {
    font-size: 22px;
  }
}

@media (min-width: 992px) {
  .about .icon-boxes p {
    font-size: 16px;
  }
}

.about .icon-boxes p i {
  margin-left: 10px;
  font-size: 16px;
  color: #bb0f0f;
  text-shadow: 0px 0px 2px #000000;
}

@media (min-width: 576px) {
  .about .icon-boxes p i {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .about .icon-boxes p i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
 *# second
 *-------------------------------------------------------------- */
.second {
  margin-left: 7%;
  margin-right: 7%;
}

.second .container {
  position: relative;
  z-index: 10;
}

.second .content {
  padding: 30px 30px 30px 0;
}

.second .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.second .content p {
  margin-bottom: 30px;
}

.second .content .second-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #bb0f0f;
}

.second .content .second-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.second .content .second-btn:hover {
  background: #bb0f0f;
}

.second .icon-boxes .icon-box {
  margin-top: 30px;
}

.second .icon-boxes .icon-box i {
  font-size: 40px;
  color: #bb0f0f;
  margin-bottom: 10px;
}

.second .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.second .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .second .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .second {
    text-align: center;
  }
}

/*--------------------------------------------------------------
 *# СЕС під ключ
 *-------------------------------------------------------------- */
.full-konstruction {
  margin-top: -25%;
}

@media (min-width: 450px) {
  .full-konstruction {
    margin-top: -10%;
  }
}

@media (min-width: 992px) {
  .full-konstruction .full-konstruction-box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}

.full-konstruction .full-konstruction-box .full-text {
  min-width: 40%;
}

@media (min-width: 992px) {
  .full-konstruction .full-konstruction-box .full-text {
    margin-top: 10%;
  }
}

.full-konstruction .full-konstruction-box .content {
  position: relative;
}

.full-konstruction .full-konstruction-box .content h3 {
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 2px 2px 5px #000000;
}

@media (min-width: 450px) {
  .full-konstruction .full-konstruction-box .content h3 {
    font-size: 36px;
  }
}

@media (min-width: 1200px) {
  .full-konstruction .full-konstruction-box .content h3 {
    font-size: 40px;
    text-align: start;
    margin-left: 7%;
  }
}

.full-konstruction .full-konstruction-box .content ul {
  margin-top: 10%;
}

.full-konstruction .full-konstruction-box .content li {
  list-style: none;
}

.full-konstruction .full-konstruction-box .content li h4 {
  margin-left: 2%;
  font-size: 16px;
  font-weight: 700;
  color: #d8d7d7;
  text-shadow: 2px 2px 5px #000000;
}

@media (min-width: 450px) {
  .full-konstruction .full-konstruction-box .content li h4 {
    font-size: 24px;
  }
}

.full-konstruction .full-konstruction-box .content li h4 span {
  color: #d8d7d7;
}

.full-konstruction .full-konstruction-box .content li h4 a {
  color: #d8d7d7;
}

.full-konstruction .full-konstruction-box .content li i {
  font-size: 32px;
  padding-right: 10px;
  color: #bb0f0f;
  text-shadow: 0 0 18px #fff600;
}

@media (min-width: 576px) {
  .full-konstruction .full-konstruction-box .content li i {
    font-size: 42px;
  }
}

.full-konstruction .full-konstruction-box .content .full-konstruction-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 30px;
  margin-top: 10%;
  margin-left: 15%;
  border: 3px solid #bb0f0f;
  border-radius: 40px;
  transition: 0.6s;
  color: #fff;
  background: transparent;
  box-shadow: #000000 0 0 5px 3px;
}

@media (min-width: 450px) {
  .full-konstruction .full-konstruction-box .content .full-konstruction-btn {
    font-size: 22px;
  }
}

@media (min-width: 992px) {
  .full-konstruction .full-konstruction-box .content .full-konstruction-btn {
    display: none;
  }
}

.full-konstruction .full-konstruction-box .content .full-konstruction-btn:hover {
  background: #bb0f0f;
  color: #ffffff;
}

.full-konstruction .full-konstruction-box .video {
  margin-top: 10%;
  padding-bottom: 7%;
}

@media (min-width: 576px) {
  .full-konstruction .full-konstruction-box .video {
    margin-top: 12%;
  }
}

@media (min-width: 992px) {
  .full-konstruction .full-konstruction-box .video {
    display: flex;
    flex-direction: column-reverse;
  }
}

.full-konstruction .full-konstruction-box .video .color-square {
  background-color: #fff600;
  box-shadow: #000000 0 0 10px 5px;
  width: 70%;
  height: 150%;
  margin-left: 35%;
  margin-top: -80%;
  z-index: -1;
  display: none;
}

@media (min-width: 992px) {
  .full-konstruction .full-konstruction-box .video .color-square {
    display: block;
    margin-top: -90%;
    margin-left: 55%;
    width: 45%;
    height: 500px;
    z-index: -1;
  }
}

@media (min-width: 1200px) {
  .full-konstruction .full-konstruction-box .video .color-square {
    margin-left: 60%;
    z-index: -1;
  }
}

.full-konstruction .full-konstruction-box .video .laptop {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 992px) {
  .full-konstruction .full-konstruction-box .video .laptop {
    margin-left: 13%;
  }
}

.full-konstruction .full-konstruction-box .video iframe {
  position: absolute;
  width: 80%;
  height: 76%;
  margin-top: -59%;
  margin-left: -40%;
  border-radius: 7px;
}

@media (min-width: 768px) {
  .full-konstruction .full-konstruction-box .video iframe {
    margin-top: -60%;
    border-radius: 20px;
  }
}

@media (min-width: 992px) {
  .full-konstruction .full-konstruction-box .video iframe {
    height: 39%;
    margin-top: -59%;
    margin-left: -27%;
  }
}

@media (min-width: 1050px) {
  .full-konstruction .full-konstruction-box .video iframe {
    height: 41%;
  }
}

@media (min-width: 1100px) {
  .full-konstruction .full-konstruction-box .video iframe {
    height: 43%;
  }
}

@media (min-width: 1150px) {
  .full-konstruction .full-konstruction-box .video iframe {
    height: 45%;
  }
}

@media (min-width: 1150px) {
  .full-konstruction .full-konstruction-box .video iframe {
    height: 45%;
  }
}

@media (min-width: 1150px) {
  .full-konstruction .full-konstruction-box .video iframe {
    height: 46%;
  }
}

.full-konstruction .full-konstruction-box .video .full-konstruction-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  text-align: center;
  padding: 5px 10px;
  margin-top: 10%;
  margin-left: 15%;
  border: 3px solid #bb0f0f;
  border-radius: 40px;
  transition: 0.6s;
  color: #fff;
  cursor: pointer;
  background: transparent;
  box-shadow: #000000 0 0 5px 3px;
  display: none;
}

@media (min-width: 450px) {
  .full-konstruction .full-konstruction-box .video .full-konstruction-btn {
    font-size: 22px;
  }
}

@media (min-width: 992px) {
  .full-konstruction .full-konstruction-box .video .full-konstruction-btn {
    display: block;
    width: 60%;
    margin-left: 30%;
  }
}

.full-konstruction .full-konstruction-box .video .full-konstruction-btn:hover {
  background: #bb0f0f;
  color: #ffffff;
}

/*--------------------------------------------------------------
 *# СЕС для бізнесу
 *-------------------------------------------------------------- */
.for-business {
  margin-top: -22%;
}

.for-business .for-business-title {
  text-align: center;
  padding: 5% 8%;
}

@media (min-width: 450px) {
  .for-business .for-business-title {
    padding: 5% 15%;
  }
}

@media (min-width: 768px) {
  .for-business .for-business-title {
    padding-top: 15%;
  }
}

@media (min-width: 768px) {
  .for-business .for-business-title {
    padding-top: 25%;
  }
}

.for-business .for-business-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #cccccc;
  text-shadow: 2px 2px 5px #000000;
}

@media (min-width: 450px) {
  .for-business .for-business-title h2 {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .for-business .for-business-title h2 {
    font-size: 40px;
  }
}

.for-business .for-business-title h2 span {
  color: #fff;
  text-shadow: 2px 2px 5px #bb0f0f;
  font-weight: 700;
}

.for-business .for-business-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 992px) {
  .for-business .for-business-list {
    flex-direction: row;
    padding: 2%;
  }
}

.for-business .for-business-list img {
  margin: 40px;
}

@media (min-width: 992px) {
  .for-business .for-business-list img {
    margin-left: 15%;
  }
}

.for-business .for-business-list p {
  text-align: center;
  padding: 0 10%;
  font-size: 30px;
}

.for-business .for-business-list p span {
  color: #fff;
  text-shadow: 2px 2px 3px #bb0f0f;
  font-weight: 600;
}

@media (min-width: 576px) {
  .for-business .for-business-list p {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .for-business .for-business-list p {
    text-align: start;
  }
}

.for-business .for-business-list p .details {
  font-size: 20px;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .for-business .for-business-list p .details br {
    display: none;
  }
}

.for-business .for-business-img2 {
  margin-top: 15%;
}

@media (min-width: 992px) {
  .for-business .for-business-img2 {
    margin-top: 5%;
  }
}

.for-business .for-business-img2 img {
  width: 80%;
  margin: 0 10%;
  box-shadow: #000000 0 0 10px 5px;
}

@media (min-width: 992px) {
  .for-business .for-business-img2 img {
    width: 50%;
    margin: 0 25%;
  }
}

.for-business .for-business-img3 {
  margin-top: -25%;
}

@media (min-width: 992px) {
  .for-business .for-business-img3 {
    margin-top: -28%;
  }
}

.for-business .for-business-img3 img {
  width: 40%;
  margin: 0 30% 0 30%;
}

@media (min-width: 992px) {
  .for-business .for-business-img3 img {
    width: 20%;
    margin: 0 auto 0 65%;
  }
}

.for-business hr {
  width: 80%;
  height: 3px;
  margin: 0 10% 0 10%;
  background: #fff;
}

.projects-section {
  margin: -5rem 0;
  z-index: 2;
}

@media (min-width: 992px) {
  .projects-section {
    margin: -1rem 0;
  }
}

.projects-section .row {
  box-shadow: #222222 0 0 10px 5px;
}

.projects-section h2 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px #000000;
  padding: 0px 5% 15% 5%;
}

@media (min-width: 992px) {
  .projects-section h2 {
    padding: 20px 25% 5% 25%;
  }
}

.projects-section .main-text {
  color: #e7e7e7;
  text-shadow: 2px 2px 5px #000000;
  font-size: 16px;
}

.projects-section .apple {
  margin-left: 2rem;
}

.projects-section .android {
  margin-right: 2rem;
}

.projects-section .project {
  background: linear-gradient(45deg, #000000, #bb0f0f);
}

.projects-section .solar-fon {
  background: linear-gradient(55deg, #000000, #bb0f0f);
  box-shadow: #222222 0 0 10px 5px;
}

.projects-section .solar-fon .featured-text {
  padding: 2rem;
}

.projects-section .solar-fon .featured-text h4 {
  font-size: 26px;
  font-weight: 600;
  color: #e7e7e7;
  text-shadow: 2px 2px 5px #000000;
  margin-bottom: 10px;
}

.projects-section .project-text {
  padding: 2rem;
  font-size: 90%;
}

.projects-section hr {
  border-color: #ffffff;
  border-width: 0.25rem;
  width: 40%;
  height: 2px;
}

/*--------------------------------------------------------------
 *# Portfolio
 *-------------------------------------------------------------- */
.portfolio-details {
  height: 1400px;
  margin-top: -20%;
}

@media (min-width: 450px) {
  .portfolio-details {
    height: 1700px;
  }
}

@media (min-width: 750px) {
  .portfolio-details {
    margin-top: -10%;
  }
}

@media (min-width: 992px) {
  .portfolio-details {
    height: 950px;
    margin-top: -20%;
  }
}

@media (min-width: 1200px) {
  .portfolio-details {
    min-height: 1200px;
  }
}

.portfolio-details .portfolio-details-slider {
  width: 100%;
  height: 500px;
}

@media (min-width: 450px) {
  .portfolio-details .portfolio-details-slider {
    height: 670px;
  }
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-details-slider {
    width: 100%;
    height: 550px;
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  .portfolio-details .portfolio-details-slider {
    min-height: 635px;
  }
}

@media (min-width: 1400px) {
  .portfolio-details .portfolio-details-slider {
    min-height: 735px;
    width: 90%;
  }
}

.portfolio-details .portfolio-details-slider .color-item {
  position: relative;
  margin-top: 33%;
  width: 100%;
  height: 80%;
  padding: 25% 15%;
  background-color: #bb0f0f;
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-details-slider .color-item {
    width: 60%;
  }
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-details-slider .color-item {
    padding: 3% 15% 5% 5%;
    width: 70%;
  }
}

@media (min-width: 1200px) {
  .portfolio-details .portfolio-details-slider .color-item {
    padding: 5% 18% 0 10%;
  }
}

@media (min-width: 1400px) {
  .portfolio-details .portfolio-details-slider .color-item {
    width: 80%;
  }
}

.portfolio-details .portfolio-details-slider .color-item a {
  font-size: 18px;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

@media (min-width: 450px) {
  .portfolio-details .portfolio-details-slider .color-item a {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-details-slider .color-item a {
    font-size: 18px;
  }
}

.portfolio-details .portfolio-details-slider .color-item p {
  font-size: 16px;
}

@media (min-width: 450px) {
  .portfolio-details .portfolio-details-slider .color-item p {
    font-size: 22px;
  }
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-details-slider .color-item p {
    font-size: 16px;
  }
}

.portfolio-details .portfolio-details-slider .color-item h3 {
  margin-top: -25%;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0px 0px 3px #000000;
}

@media (min-width: 450px) {
  .portfolio-details .portfolio-details-slider .color-item h3 {
    margin-top: -15%;
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-details-slider .color-item h3 {
    font-size: 22px;
    margin-top: -75%;
  }
  .portfolio-details .portfolio-details-slider .color-item h3 br {
    display: none;
  }
}

@media (min-width: 1200px) {
  .portfolio-details .portfolio-details-slider .color-item h3 {
    font-size: 34px;
    margin-top: -50%;
  }
}

.portfolio-details .portfolio-details-slider img {
  margin-top: -90%;
  margin-left: 35%;
  width: 75%;
  box-shadow: #000000 0 0 10px 5px;
  border-radius: 50%;
  z-index: 9;
}

@media (min-width: 450px) {
  .portfolio-details .portfolio-details-slider img {
    margin-top: -80%;
  }
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-details-slider img {
    width: 70%;
    margin-left: 94%;
    margin-top: 10%;
  }
}

@media (min-width: 1200px) {
  .portfolio-details .portfolio-details-slider img {
    width: 60%;
    margin-left: 110%;
  }
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  text-shadow: 2px 2px 5px #000000;
  margin-bottom: 20px;
  color: #bb0f0f;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-box {
  width: 100%;
  margin-left: 0%;
  margin-top: -63%;
  padding: 1%;
}

@media (min-width: 576px) {
  .portfolio-details .portfolio-box {
    margin-top: -50%;
  }
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-box {
    margin-top: -27%;
    margin-left: 35%;
    width: 80%;
  }
}

@media (min-width: 1200px) {
  .portfolio-details .portfolio-box {
    margin-left: 24%;
    width: 100%;
  }
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-item {
  padding: 0.1px;
  width: 33%;
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-box .portfolio-container .portfolio-item {
    width: 17%;
  }
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-box .portfolio-container .hide-img {
    display: none;
  }
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(17, 17, 17, 0.6);
  box-shadow: 3px 3px 8px #000000;
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-box .portfolio-container .portfolio-wrap {
    height: 130px;
  }
}

@media (min-width: 1200px) {
  .portfolio-details .portfolio-box .portfolio-container .portfolio-wrap {
    height: 150px;
  }
}

@media (min-width: 1400px) {
  .portfolio-details .portfolio-box .portfolio-container .portfolio-wrap {
    height: 170px;
  }
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.705);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 1;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
  border: 1px solid #fff;
  min-width: 150px;
  min-height: 150px;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap .portfolio-info {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap .portfolio-links {
  text-align: center;
  margin-left: 34%;
  margin-bottom: 20%;
  z-index: 4;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap .portfolio-links a {
  color: #666565;
  display: inline-block;
  transition: 0.3s;
  font-size: 36px;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap .portfolio-links a:hover {
  color: #ff0000;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap:hover::before {
  opacity: 0;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio-details .portfolio-box .portfolio-container .portfolio-wrap:hover a {
  color: #bb0f0f;
}

.portfolio-details .portfolio-box .portfolio-container .color-square {
  background-color: #fff600;
  box-shadow: #000000 0 0 10px 5px;
  width: 70%;
  height: 100%;
  margin-left: 21%;
  margin-top: 20%;
  z-index: 1;
}

@media (min-width: 992px) {
  .portfolio-details .portfolio-box .portfolio-container .color-square {
    width: 30%;
  }
}

@media (min-width: 1200px) {
  .portfolio-details .portfolio-box .portfolio-container .color-square {
    margin-top: 15%;
  }
}

/*--------------------------------------------------------------
 *# Testimonials
 *-------------------------------------------------------------- */
.testimonials .testimonial-item {
  box-sizing: content-box;
  margin: 30px 15px;
  min-height: 200px;
  border-radius: 3px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #bb0f0f;
  border-right-width: 3px;
  border-right-style: solid;
  border-right-color: #bb0f0f;
  box-shadow: #000000 0 0 5px 3px;
  position: relative;
  background: #2b2b2b;
}

.testimonials .testimonial-item iframe {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 4px;
  box-shadow: #000000 0 0 5px 3px;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 25px 30px 5px 30px;
  color: #bb0f0f;
}

.testimonials .testimonial-item h4 {
  font-size: 18px;
  color: #ffffff;
  margin: 10px 30px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 30px;
  color: #a5a5a5;
}

.testimonials .testimonial-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.testimonials .testimonial-item .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonials .testimonial-item .btn-buy:hover {
  border-color: #fff;
}

.testimonials .testimonial-item .price-panels {
  color: #fff600;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #bb0f0f;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #bb0f0f;
}

/*--------------------------------------------------------------
 *# Pricing
 *-------------------------------------------------------------- */
.pricing .box {
  margin-bottom: 30px;
  background: #2b2b2b;
  box-shadow: #000000 0 0 5px 3px;
  text-align: center;
  border-radius: 3px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #999999;
  border-right-width: 3px;
  border-right-style: solid;
  border-right-color: #999999;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 22px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .pricing .box h3 {
    font-size: 18px;
  }
}

.pricing .box h4 {
  font-size: 42px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul li h3 {
  font-weight: 700;
  font-size: 22px;
  padding: 0;
}

.pricing .box ul i {
  color: #bb0f0f;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing .box .btn-buy:hover {
  border-color: #fff;
}

.pricing .featured {
  background: #bb0f0f;
}

/*--------------------------------------------------------------
 *# Калькулятор розрахунку СЕС
 *-------------------------------------------------------------- */
.calculator {
  margin-bottom: 5%;
  margin-top: -50px; }
  @media screen and (min-width: 768px) {
    .calculator {
      margin-top: 0%; } }
  @media (min-width: 992px) {
    .calculator {
      margin-top: 0%; } }
  .calculator form {
    background: linear-gradient(45deg, #000000, #ff0000);
    box-shadow: 10px 10px 7px #000000;
    border: 3px solid #000000;
    padding: 26px;
    max-width: 94%; }
    .calculator form:hover {
      background: linear-gradient(45deg, #000000, #ff0000);
      color: #fff;
      box-shadow: #ff0000 10px 10px 7px; }
    @media (min-width: 992px) {
      .calculator form {
        max-width: 70%; } }
    .calculator form select {
      border: 3px solid #000000; }
    .calculator form input {
      border: 3px solid #000000; }
    .calculator form .btn-red {
      margin-top: 10%;
      font-family: "Raleway", sans-serif;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 1px;
      display: inline-block;
      padding: 3px 8px;
      border: 3px solid #ffffff;
      border-radius: 40px;
      transition: 0.6s;
      color: #fff;
      background: linear-gradient(45deg, #ff0000, #000000);
      text-align: center;
      box-shadow: 0 0 8px #000; }
      .calculator form .btn-red:hover {
        background: linear-gradient(45deg, #000000, #ff0000);
        color: #fff;
        box-shadow: #ff0000 0 0 5px 3px; }
      @media (min-width: 768px) {
        .calculator form .btn-red {
          margin-top: 3%;
          padding: 10px 20px;
          font-size: 1; } }
    .calculator form .result-calc {
      padding: 0 3% 0px 3%;
      margin-top: 8%;
      position: relative;
      width: 100%;
      font-size: 18px;
      text-align: center;
      text-shadow: 2px 2px 5px #000000;
      font-weight: bold;
      text-transform: uppercase;
      position: relative; }
      @media (min-width: 768px) {
        .calculator form .result-calc {
          margin-top: 6%; } }
      @media (min-width: 992px) {
        .calculator form .result-calc {
          padding: 0px 20% 0 20%;
          margin-top: 4%; } }

/*--------------------------------------------------------------
 *# Запитання та відповіді
 *-------------------------------------------------------------- */
.faq {
  margin-top: -10%;
}

@media screen and (min-width: 768px) {
  .faq {
    margin-top: -5%;
  }
}

@media screen and (min-width: 1400px) {
  .faq {
    margin-top: 5%;
  }
}

@media screen and (min-width: 768px) {
  .faq .title {
    width: 70%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .faq .title {
    width: 50%;
  }
}

.faq .title h2 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 2px 2px 5px #000000;
}

@media (min-width: 450px) {
  .faq .title h2 {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .faq .title h2 {
    font-size: 40px;
  }
}

.faq .faq-list {
  margin-top: 20%;
  margin-left: 8%;
  padding: 0;
  list-style: none;
  color: #bb0f0f;
}

@media screen and (min-width: 768px) {
  .faq .faq-list {
    margin-top: 10%;
  }
}

.faq li {
  border-bottom: 2px solid #000000;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq a {
  display: block;
  position: relative;
  font-family: #bb0f0f;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #bb0f0f;
  text-shadow: 2px 2px 8px #000;
  padding-right: 25px;
  cursor: pointer;
}

.faq i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
  color: #bb0f0f;
}

.faq p {
  color: #fff;
  margin-bottom: 0;
  padding: 10px 0 0 0;
  text-shadow: 2px 2px 5px #000000;
}

.faq .icon-show {
  display: none;
}

.faq a.collapsed {
  color: #ffffff;
}

.faq a.collapsed:hover {
  color: #bb0f0f;
}

.faq a.collapsed .icon-show {
  display: inline-block;
}

.faq a.collapsed .icon-close {
  display: none;
}

.faq h2 {
  text-align: center;
  color: #bb0f0f;
  text-shadow: 2px 2px 5px #000000;
  margin-bottom: 3%;
}

.contacts iframe {
  width: 100%;
  height: 360px;
}

@media (min-width: 992px) {
  .contacts iframe {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

.contacts .info-box {
  color: #000000;
  text-align: center;
  box-shadow: 3px 3px 8px #000000;
  padding: 30px 0 32px 0;
  border-radius: 4px;
  border: 1px solid #fff;
  transition: 0.5s;
}

.contacts .info-box:hover {
  transition: 0.5s;
  box-shadow: 5px 5px 5px 2px #000;
  border: 1px solid #fff;
}

.contacts .info-box .btn-road {
  margin-top: 20px;
  background-color: transparent;
  border: none;
  border: 2px solid #bb0f0f;
  box-shadow: 5px 5px 5px #000;
}

.contacts .info-box .btn-road:hover {
  border: 2px solid #fff;
}

.contacts .info-box i {
  font-size: 32px;
  color: #bb0f0f;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;
}

.contacts .info-box h3 {
  font-size: 20px;
  color: #bb0f0f;
  text-shadow: 2px 2px 2px #000000;
  font-weight: 700;
  margin: 10px 0;
}

.contacts .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #fff;
  text-shadow: 2px 2px 5px #000000;
}

.contacts .info-box a {
  color: #fff;
  transition: 0.6s;
}

.contacts .info-box a:hover {
  transition: 0.6s;
  background-color: #bb0f0f;
  color: #fff;
}

.contacts .info-box hr {
  height: 2px;
  background-color: #fff;
}

.contacts img {
  height: 400px;
  width: 100%;
  margin-top: 30px;
  box-shadow: 3px 3px 8px #000;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.copyright {
  color: #4d4c4c;
}

.credits {
  color: #4d4c4c;
}

.credits a {
  color: #4d4c4c;
}

.close:focus {
  outline: 1px dotted #fff !important;
}

.modal-body {
  background: #696969;
  padding: 0rem !important;
}

.modal-body h2 {
  color: #bb0f0f;
  font-weight: 700;
  text-shadow: 2px 2px 5px #000;
}

.modal-title {
  font-size: 36px;
  color: #fff;
  margin-left: 10%;
}

.modal-header {
  background: linear-gradient(45deg, #bb0f0f, #202020);
}

.heading {
  font-weight: 500 !important;
}

.icon-close {
  font-weight: 700;
  font-size: 52px;
  color: #bb0f0f;
  text-shadow: 2px 2px 5px #000;
}

.fs-9 {
  font-size: 9px;
}

.pulse-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  padding: 10px;
  border: none;
  background: #bb0f0f;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 30px;
  right: 10px;
  cursor: pointer;
  outline: none;
  z-index: 1000;
}

@media (min-width: 992px) {
  .pulse-button {
    left: 10px;
  }
}

.pulse-button__text {
  display: block;
  width: 100%;
  height: 43px;
  font: 12px 'Open Sans', sans-serif;
  color: #fff;
  text-shadow: 1px 1px 1px #000000;
  text-align: center;
  line-height: 1.2;
  opacity: 1;
  position: absolute;
  transition: .3s;
  margin-top: 1px;
}

.pulse-button__rings {
  border: 5px solid #bb0f0f;
  box-shadow: 2px 2px 10px #bb0f0f;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
  width: auto;
  border-radius: 50%;
  animation-duration: 2.0s;
  animation-name: pulse_1;
  animation-iteration-count: infinite;
  z-index: -1;
}

.pulse-button__rings:nth-child(2) {
  animation-name: pulse_2;
}

.pulse-button__rings:nth-child(3) {
  animation-name: pulse_3;
}

@keyframes pulse_1 {
  from {
    opacity: 1;
    transform: scale(0.9, 0.9);
  }
  to {
    opacity: 0;
    transform: scale(1.6, 1.6);
  }
}

@keyframes pulse_2 {
  from {
    opacity: 1;
    transform: scale(2, 2);
  }
  to {
    opacity: 0;
    transform: scale(1.8, 1.8);
  }
}

@keyframes pulse_3 {
  from {
    opacity: 1;
    transform: scale(0.8, 0.8);
  }
  to {
    opacity: 0;
    transform: scale(2.3, 2.3);
  }
}
