body {
  font-family: "Segoe UI", "Open Sans", sans-serif;
  color: #212121;
  line-height: normal;
}

a {
  color: #feb82b;
  text-decoration: none;
}

a:hover {
  color: #f1775d;
  text-decoration: none;
}
p {
  font-size: 1rem;
}

/*h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #feb82b;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #feb82b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #212121;
  line-height: 0;
}

.back-to-top:hover {
  background: #b88e06;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #ffffff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 54px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a:hover {
   color: #e98809;
  }
@media (min-width: 808px) {
    
.navbar a.firstl,
.navbar a:focus.firstl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 0;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
}
.navbar a.tele,
.navbar a:focus.tele {
  display: block;
  align-items: center;
  justify-content: space-between;
  /*padding: 10px 0 10px 30px;*/
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar .tele .bx {
  color: #feb82b;
  font-size: 16px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #feb726;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  /*background: #feb82b;
  border-radius: 4px;
  color: #212121;*/
  padding: 5px 20px;
  margin-left: 30px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #000;
  background: #feb82b;
  border: solid #fff 1px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #feb82b;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;.counts .count-box i {
    display: block;
    font-size: 30px;
    color: #feb82b;
    float: left;
}
  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: #212121;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background-color: #feb82b;
  padding: 5px;
  border-radius: 4px;
}

.mobile-nav-toggle.bi-x {
  color: #212121;
}

@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(4, 12, 21, 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: #000000;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #feb82b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #feb82b;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Chrome Section
--------------------------------------------------------------*/
#chrome {
  width: 100%;
  height: 80vh;
  background-color: rgba(0, 0, 0, 0.8);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/antichromebg.jpg) top center;
  background-size: cover;
  padding: 0;
}
#chrome .toppadbg {
  padding: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}
  
#chrome .toppad {
  padding: 120px 20px 30px;
}
#chrome h2 {
  color: #fff;
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

#chrome p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
  font-size: 1rem;
}

@media (min-width: 1200px) {
  #chrome p {
    width: 90%;
  }
}
/*--------------------------------------------------------------
# aboutco Section
--------------------------------------------------------------*/
#aboutco {
  width: 100%;
  height: 80vh;
  background-color: rgba(4, 12, 21, 0.8);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/aboutbg.jpg) top center;
  background-size: cover;
  padding: 0;
}
  
#aboutco .toppad {padding: 120px 0 0;}
#aboutco h2 {
 
  font-weight: 700;
}

#aboutco p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
  font-size: 1rem;
}

@media (min-width: 1200px) {
  #aboutco p {
    width: 90%;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background-color: rgba(4, 12, 21, 0.8);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/plenkibg.jpg) top center;
  background-size: cover;
  padding: 0;
}
  
#hero .toppad {padding-top: 120px;}
#hero .toppadtop {padding: 80px 0 0 0;}


#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  /*bottom: 0;*/
  top: 120px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
  font-size: 1.4rem;
}

@media (min-width: 1200px) {
  #hero p {
    width: 90%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
  
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 2s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #feb82b;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #feb82b;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  #hero {
    min-height: 100vh;
  }

  #hero .carousel-container {
    /*text-align: center;*/
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #212121;
}
.section-bg-lgr {
background-color: #f4f4f4;
}

.section-title {
  padding-bottom: 25px;
}

/*.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}*/
.section-title h2 {
  line-height: normal;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
  font-weight: 700;
    font-size: 2.5rem;
  /*text-transform: uppercase;*/
    
}
@media (max-width: 768px) {
  .section-title h2 {    
      font-size: 1.8rem;      
  }
}

/*.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
}*/

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 0;
}
.about h2 {
  font-size: 3rem;
  font-weight: 700;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #feb82b;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #feb82b;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #feb82b;
}

.about .content .btn-learn-more:hover {
  background: #feb82b;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Характеристики
--------------------------------------------------------------*/
.charakter {
  width: 100%;
  color: #fff;
  background-color: rgba(4, 12, 21, 0.5);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/2353207_original.jpg) top center;
  background-size: cover;
}
.charakter .section-title h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}
@media (max-width: 768px) {
  .charakter .section-title h2 {    
      font-size: 1.8rem;      
  }
}
.charakter table {
background-color: transparent;
--bs-table-bg: transparent;
--bs-table-border-color: #fff;
font-size: 1.1rem;
}
.charakter .table-light {
--bs-table-bg: rgba(255, 255, 255, 0.2);
--bs-table-color: #fff;
--bs-table-border-color: transparent;
}
.charakter .table-dark {
  --bs-table-striped-bg: rgba(44, 48, 52, 0.6);
  }



/*--------------------------------------------------------------
# Преимущества
--------------------------------------------------------------*/
.webest {
  width: 100%;
  color: #fff;
  background-color: rgba(4, 12, 21, 0.5);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/2353207_original.jpg) top center;
  background-size: cover;
}
.webest .section-title h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}
@media (max-width: 768px) {
  .webest .section-title h2 {    
      font-size: 1.8rem;      
  }
}
.webest .card {
background-color: #212121;
color: #ffffff;
}
.webest .weicon i {
  display: block;
  font-size: 40px;
  color: #feb82b;
  float: left;
}
.webest .h4 span {
  color: #212121;
  background: #feb82b;
  padding: 7px 10px 4px;
  border-radius: 50%;
  -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
  margin-right: 4px;
  height: 45px;
  width: 45px;
  display: inline-block;

}

.webest p.info {
  font-size: 1.15rem;
}
.webest hr {
  
  opacity: 1;
  border-top:1px #fff solid;
}

/*--------------------------------------------------------------
# Общее
--------------------------------------------------------------*/
.functions {
  padding: 0;
}
.pelengator112 {
  padding: 0 0 60px;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  
  padding: 5px;
  width: 100%;
  text-align: center;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #feb82b;
  float: left;
}

.counts .count-box span {
  font-size: 3.5rem;
  line-height: 24px;
  display: inline-block;
  font-weight: 700;
  color: #feb82b;
  
}
.counts .count-box {
  font-size: 3.5rem;
  line-height: 24px;
  display: inline-block;
  font-weight: 700;
  color: #feb82b;
  
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-size: 14px;
  color: #212121;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}


/*--------------------------------------------------------------
# Plenki
--------------------------------------------------------------*/
.plenki {
  padding-top: 70px;
}
.plenki .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.plenki .section-title {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box, .portfolio .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /*min-height: 400px;*/
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #feb82b;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #feb82b;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn, .portfolio .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#feb82b 50%, rgba(230, 156, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after, .portfolio .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before, .portfolio .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(238, 185, 38, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #feb82b;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# shumka
--------------------------------------------------------------*/
.shumka .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}
.shumka .section-title {
  padding-bottom: 0;
}

.shumka .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #feb82b;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.shumka .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.shumka .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.shumka .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.shumka .icon-box h4 a {
  color: #0b2341;
}

.shumka .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.shumka .icon-box:hover {
  background: #feb82b;
  border-color: #feb82b;
}

.shumka .icon-box:hover .icon {
  background: #fff;
}

.shumka .icon-box:hover .icon i {
  color: #feb82b;
}

.shumka .icon-box:hover .icon::before {
  background: #f1775d;
}

.shumka .icon-box:hover h4 a,
.shumka .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# plenkipu
--------------------------------------------------------------*/
.plenkipu .testimonial-wrap {
  padding-left: 50px;
}

.plenkipu .plenkipu-carousel,
.plenkipu .plenkipu-slider {
  overflow: hidden;
}

.plenkipu .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.plenkipu .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.plenkipu .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.plenkipu .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.plenkipu .testimonial-item .quote-icon-left,
.plenkipu .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.plenkipu .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.plenkipu .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.plenkipu .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.plenkipu .swiper-pagination, .shumka .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.plenkipu .swiper-pagination .swiper-pagination-bullet, .shumka .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #feb82b;
}

.plenkipu .swiper-pagination .swiper-pagination-bullet-active, .shumka .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #feb82b;
}
.swiper {
  padding-top: 45px;
  --swiper-navigation-size: 24px;
  --swiper-navigation-color: #fff;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: auto;
  right: 80px;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}


.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 3%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-wrapper{
  margin-top: 20px;
}
.shumka .swiper {
  padding-top: 45px;
  --swiper-navigation-size: 24px;
  --swiper-navigation-color: #212121;
}

.plenki .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.plenki .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #feb82b;
}

.plenki .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #feb82b;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #feb82b;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #feb82b;
  border: 2px solid #feb82b;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding-top: 10px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #feb82b;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #feb82b;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #feb82b;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #feb82b;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 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;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #feb82b;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #feb82b;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #feb82b;
}

.pricing .featured .get-started-btn {
  background: #feb82b;
  color: #fff;
  border-color: #feb82b;
}

.pricing .featured .get-started-btn:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact i {
  font-size: 20px;
  color: #feb82b;
  padding: 6px;
  
}
.contact .phone a {
  color: #000;
}
.nav-link .adr {
opacity: .5;
}
.nav-link .adr .active {
  opacity: 1;
  }
.contact ul {
  list-style: none;
  margin-left: -25px;
  margin-top: 30px;
}
.contact ul li {
  margin-top: 10px;
}

.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #feb82b;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #feb82b;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #feb82b;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ef6445;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #212121;
  padding: 0 0 10px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 40px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #feb82b;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
#footer small {
  font-size: .8rem;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #feb82b;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ef6445;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ef6445;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #feb82b;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ef6445;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

@media (min-width: 1124px) {
  .logo.abs
      {
          position: absolute;
          width: auto;
          left: 50%;
          transform: translateX(-50%);
          text-align: center;
      }
  }
  .btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #feb82b;
    --bs-btn-border-color: #feb82b;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffca2c;
    --bs-btn-hover-border-color: #ffc720;
    --bs-btn-focus-shadow-rgb: 217,164,6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffcd39;
    --bs-btn-active-border-color: #ffc720;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #feb82b;
    --bs-btn-disabled-border-color: #feb82b;
}
.hero-yellow {
  color: #feb82b;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .hero-yellow  {
    font-size: 1.9rem;
  }
}
.pulse {
  animation: radial-anakausug 1.3s infinite;
}

@keyframes radial-anakausug {
  0% { box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5); }  
   
  100% { box-shadow: 0 0 0 40px rgb(243 243 243 / 0%); }
  }
.zpl {
  min-height: 470px;
  width: 100%;
  background-color: rgba(4, 12, 21, 0.8);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/1.jpg) top center;
  background-size: cover;
  display: block; 
  transition: transform 0.2s ease;
}
.zpl:hover {
  
  transform: scale(1.1);
}
#about .zpl::before {
  content: "";
  background-color: rgba(226, 226, 226, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#plenki .zpl::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#plenki .zpl {
  min-height: 470px;
  width: 100%;
  background-color: rgba(4, 12, 21, 0.8);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/zpl.jpg) top center;
  background-size: cover;
  display: block; 
  transition: transform 0.2s ease;
}

.zpl .yellow {
  color: #212121;
  line-height: 1.5;
  font-weight: 400;
  font-size: 2.4rem;
}
.zpl p{
  line-height: normal;
  padding: 0 50px 0 0;
}
.tzpl {
  z-index: 2;
  padding: 20px;
}
.zpl h3 {
  text-transform: uppercase;
}
/*----*/
#plenki .cvpl::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#plenki .cvpl {
  min-height: 470px;
  width: 100%;
  background-color: rgba(4, 12, 21, 0.8);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/cvpl.jpg) top center;
  background-size: cover;
  display: block; 
  transition: transform 0.2s ease;
}

.cvpl .yellow {
  color: #feb82b;
  line-height: 1.5;
  font-weight: 400;
  font-size: 2.4rem;
}
.cvpl p{
  line-height: normal;
  padding: 0 50px 0 0;
}
.tzpl {
  z-index: 2;
  padding: 20px;
}
.cvpl h3 {
  text-transform: uppercase;
}
.cvpl {
  min-height: 470px;
  width: 100%;
  background-color: rgba(4, 12, 21, 0.8);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/zpm.jpg) top center;
  background-size: cover;
  display: block; 
  transition: transform 0.2s ease;
}
.cvpl:hover {
  
  transform: scale(1.1);
}

/*-----------*/

.shi {
  min-height: 470px;
  width: 100%;
  background-color: rgba(4, 12, 21, 0.8);
  /*overflow: hidden;*/
  position: relative;
  background: url(../img/2.jpg) top center;
  background-size: cover;
  display: block; 
  transition: transform 0.2s ease;
}
.shi:hover {
  
  transform: scale(1.1);
}
#about .shi::before {
  content: "";
  background-color: rgba(226, 226, 226, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#plenki .shi::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.shi .yellow {
  color: #212121;
  line-height: 1.5;
  font-weight: 400;
  font-size: 2.4rem;
}
.shi p{
  line-height: normal;
  padding: 0 50px 0 0;
}
.tzpl {
  z-index: 2;
  padding: 20px;
}
.shi h3 {
  text-transform: uppercase;
}
.pplenki-slider .card {
  background-color: #212121;
  color: #fff;
  border: 0;
}
.shumka .pplenki-slider .card {
  background-color: #fff;
  color: #000;
}
.shumka .btn-outline-warning {
  color: #212121;
}
.pplenki-slider .card-body {
  padding: 1rem 1rem 1rem 1px;
}
.pplenki-slider {
  margin-top: -37px;
}
.btn-md {
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-padding-x: 0.8rem;
  --bs-btn-font-size: 1.095rem;
}

.card-text {
  padding: 0;
  margin-bottom: 3px;
}
.footer-nav {
  font-size: 1.1rem;
}
.footer-nav a {
  color: #fff;
}
.footer-nav a:hover {
  color: #feb82b;
}
header a.tele, header a:focus.tele {
  display: block;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 0 10px 30px; */
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
header a:hover.tele {
  color: #feb82b;
  transition: 0.3s;
}

header .tele .bx {
  color: #feb82b;
  font-size: 16px;
}
.hover-image-scale {
  display: inline-block; 
  overflow: hidden; /* Скрываем всё за контуром */
}
.hover-image-scale img {
  transition: 1s; /* Время эффекта */
  display: block; 
}
.hover-image-scale img:hover {
  transform: scale(1.2); /* Увеличиваем масштаб */
}

.modal-dialog {
  max-width: 900px; }

.modal-content {
  border: none;
  position: relative;
  padding: 0 !important;
  font-size: 14px;
  border-radius: 0;
  -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24); }
  .modal-content .modal-header {
    padding: 0;
    border: none; }
  .modal-content button.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    background: rgba(0, 0, 0, 0.1);
    color: #fff; }
  .modal-content .modal-body {
    border: none;
    position: relative;
    z-index: 0;
    color: rgba(255, 255, 255, 0.8); }
    .modal-content .modal-body.color-1 {
      background: #feb82b; }
    .modal-content .modal-body.color-2 {
      background: #212121; }
    .modal-content .modal-body .icon span {
      font-size: 10vw;
      line-height: 1; }
      @media (max-width: 767.98px) {
        .modal-content .modal-body .icon span {
          font-size: 100px; } }
    .modal-content .modal-body .icon-2 {
      position: absolute;
      top: 0;
      left: 20px;
      font-size: 30px; }
    .modal-content .modal-body a:hover {
      color: #5eb7b7; }
  .modal-content .label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px; }
  .modal-content .form-control {
    background: transparent;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0;
    height: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .modal-content .form-control::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: rgba(255, 255, 255, 0.2) !important; }
    .modal-content .form-control::-moz-placeholder {
      /* Firefox 19+ */
      color: rgba(255, 255, 255, 0.2) !important; }
    .modal-content .form-control:-ms-input-placeholder {
      /* IE 10+ */
      color: rgba(255, 255, 255, 0.2) !important; }
    .modal-content .form-control:-moz-placeholder {
      /* Firefox 18- */
      color: rgba(255, 255, 255, 0.2) !important; }
  .modal-content .btn-primary {
    background: #5eb7b7 !important;
    height: 52px; }

    .no-gutters {
      margin-right: 0;
      margin-left: 0; }
    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
        padding-right: 0;
        padding-left: 0; }

/*--------------------------------------------------------------
# Навигационная панель
---------------------------------------------------------------*/
#sidebarMenu {
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  margin-top: 60px;
  transform: translateX(-360px);
  transition: transform 250ms ease-in-out;
  background: #212121;
}
@media (max-width: 767.98px) {
  #sidebarMenu {
    margin-top: 86px;
  }
}
.sidebarMenuInner{
  margin:0;
  padding:0;
  
}
.sidebarMenuInner li{
  list-style: none;
  color: #fff;
  text-transform: uppercase;
  
  padding: 13px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li span{
  display: block;
  
  color: rgba(255, 255, 255, 0.50);
}
.sidebarMenuInner li a{
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
}
.sidebarMenuInner li a:hover{
  color: #feb82b;
  text-decoration: none;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
  transform: translateX(0);
}

input[type=checkbox] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}
.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  background: #feb82b;
  z-index: 99;
  height: 100%;
  width: 100%;
  padding: 13px 10px;
  height: 40px;
  width: 40px;
 margin: 12px 30px 12px 0;
 border-radius: 3px;
}
.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #212121;
}
.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}
.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 5px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
}

.functions ul li { 
	list-style: none;
	padding: 6px 0 5px 30px;
	position: relative;
  font-size: 1.1rem; 
}

ul.check li:before {
	content: '';
	background: url(../img/check-circle.png) no-repeat left top;
	height: 21px;
	width: 21px;
	position: absolute;
	left: 0;
	top: 8px;
  
}
.functions ul {
  padding-left: 0 !important;
}

@media screen and (max-width: 991px) {
  div.mobinvis  {
      visibility: hidden;
      display: none;
  }
  .mobinvis img {
    width: 0;
  }
}
/* =====================================
* Видео фон
* ==========================================
*
*/
#topvideo { 
  background-color: rgba(4, 12, 21, 0.8);
  position: relative;
  background: url(../img/aboutbg.jpg) top center;
  background-size: cover;
  position: relative;
  height: 90vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

#topvideo video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#topvideo .container {
  position: relative;
  z-index: 1;
}

#topvideo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media screen and (max-width: 670px)  {
  #topvideo {
    background: url('../img/video/real_bg4.jpg') black no-repeat center center scroll;
    height: 100vh;
  }

  #topvideo video {
    display: none;
    visibility: hidden;
  }
}

.blocktext h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #212121;
  top: 13px;
  left: 112px;
}
.blocktext h4 {
  padding-left: 80px;
}
.blocktext {
  position: relative;
}

.px-7 {
  padding-right: 7rem!important;
  padding-left: 7rem!important;
}
@media (max-width: 678px) {
  .px-7 {
    padding-right: 2rem!important;
    padding-left: 2rem!important;
  }
  .blocktext h4::after {
    left: 36px;
  }
  .blocktext h4 {
    padding-left: 80px;
  }
}
.vertical-txt {
  display:inline-block;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); 
  letter-spacing: 0.1em;
  min-height: 250px;
  white-space: nowrap;
  position: absolute;
  top: 145px;
  left: -75px;
}
.services h2.vertical-txt, .services1 h2.vertical-txt, .services h2 .vertical-txt {
  font-size: 3rem;
}
.services1 .vertical-txt {
  display:inline-block;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); 
  letter-spacing: 0.1em;
  min-height: 250px;
  white-space: nowrap;
  position: absolute;
  top: 27px;
  left: 36px;
}
.services2 .vertical-txt {
  display:inline-block;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); 
  letter-spacing: 0.1em;
  min-height: 250px;
  white-space: nowrap;
  position: absolute;
  top: 116px;
  left: -48px;
}
.services3 .vertical-txt {
  display:inline-block;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); 
  letter-spacing: 0.1em;
  min-height: 250px;
  white-space: nowrap;
  position: absolute;
  top: 40px;
  left: 76px;
}
.okleika .vertical-txt, .kuzov .vertical-txt {
  display:inline-block;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); 
  letter-spacing: normal;
  min-height: 250px;
  white-space: nowrap;
  position: absolute;
  top: 170px;
  left: 14px;
}
@media screen and (max-width: 1024px){
  .okleika .vertical-txt, .kuzov .vertical-txt {
    top: 153px;
    left: -15px;
  }
}
.okleika .h2, .okleika .card-title {
  font-weight: 700;
}
.okleika .card-title {
  font-size:  calc(1.325rem + .9vw);
}
@media (min-width: 1200px){
.okleika .card-title {
    font-size: 2rem;
}
}

/*--------------------------------------------------------------
# Услуги
--------------------------------------------------------------*/
.services h2 {

font-weight: 700;
}
.services {
  padding: 0;
}
.services .section-title {
  padding-bottom: 5px;
  padding-top: 25px;
}

/*--------------------------------------------------------------
# Услуги класс 1
--------------------------------------------------------------*/
.services1 h2 {
  
  font-weight: 700;
  }
  .services1 {
    padding: 0;
  }
  .services1 .section-title {
    padding-bottom: 5px;
    padding-top: 25px;
  }


/*--------------------------------------------------------------
# Оклейка
--------------------------------------------------------------*/
.okleika h2 {

  font-weight: 700;
  }
  .okleika, .kuzov {
    padding: 0;
  }
  .okleika .section-title, .kuzov .section-title {
    padding-bottom: 5px;
    padding-top: 25px;
  }
  .okleika h2 span, .kuzov h2 span {
font-size: 1.5rem;
    font-weight: 700;
  }
  .etap h3 {
font-weight: 700;
  }
  .etap h3 span {
    padding: 0 8px;
    background-color: #feb726;
  }
  .zashita {
    padding: 60px 0 0;
  }
  @media screen and (max-width: 576px){
    .border-end.bor-0 {
      border-right: 0 !important;
    }
  }
/*--------------------------------------------------------------
# Слайдер наши работы
--------------------------------------------------------------*/
.slider {
  width: 100%;
 
}
section.slider2 {
  width: 100%;
  padding-top: 0;
}
.slider2 i {
  font-size: 20px;
  color: #feb82b;
  padding: 6px;
  
}
.center {
  padding: 0 0 60px;
}
.center .section-title {
  padding-bottom: 0;
}
.slick-slide {
margin: 0px 20px;
}

.slick-slide img {

height: 100%;
}

.slick-prev:before,
.slick-next:before {
color: black;
}


.slick-slide {
transition: all ease-in-out .3s;
opacity: .2;
}

.slick-active {
opacity: .5;
}

.slick-current {
opacity: 1;
}
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.btnsection {
  padding: 0 0 20px;
}
.slidertitle {
  padding: 20px 0;
}
.slidertitle .section-title {
  padding-bottom: 0;
}
.slick-prev {
  z-index: 3;
}
.youtube {
  height: 550px;
  width: 100%;
}
@media screen and (max-width: 670px){
.youtube {
    height: 202px;
    width: 100%;
}
}
.img-fluid img {
  max-width: 100%;
  height: auto;
}
.stick-bot-wash {
  position: absolute;
  bottom: 0;
  margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
}
.classs {
  padding: 60px 0 30px;
}
.classs2 {
  padding: 60px 0 0;
}
.classs i, .classs2 i {
  font-size: 20px;
  color: #feb82b;
  padding: 6px 6px 6px 0;
}
.classs h5, .classs h4, .classs2 h5, .classs2 h4 {
  font-weight: 700;
}
.card {
  --bs-border-radius: 0;
}
.bglg {
  background-color: #fbfbfb;
}
.tabimg {
	display: inline-block;
	position: relative;    
	line-height: 0;
}
.tabimg {
  background: url("../img/cars/c1.png") no-repeat;
  height: auto; 
  width: 100%; 
  background-position: center;
  background-size: cover;
  transition: 0.5s ease-in-out;
}
.tabimg:hover {
  background: url("../img/cars/c1a.png") no-repeat;
  height: auto; 
  width: 100%; 
  background-position: center;
  background-size: cover;
  transition: 0.5s ease-in-out;
}
.active.tabimg {
  background: url("../img/cars/c1a.png") no-repeat;
  height: auto; 
  width: 100%; 
  background-position: center;
  background-size: cover;
}

.tabimg2 {
	display: inline-block;
	position: relative;    
	line-height: 0;
}
.tabimg2 {
  background: url("../img/cars/c2.png") no-repeat;
  height: auto; 
  width: 100%; 
  background-position: center;
  background-size: cover;
  transition: 0.5s ease-in-out;
}
.tabimg2:hover {
  background: url("../img/cars/c2a.png") no-repeat;
  height: auto; 
  width: 100%; 
  background-position: center;
  background-size: cover;
  transition: 0.5s ease-in-out;
}
.active.tabimg2 {
  background: url("../img/cars/c2a.png") no-repeat;
  height: auto; 
  width: 100%; 
  background-position: center;
  background-size: cover;
}

.tabimg3 {
	display: inline-block;
	position: relative;    
	line-height: 0;
}
.tabimg3 {
  background: url("../img/cars/c3.png") no-repeat;
  height: auto; 
  width: 100%; 
  background-position: center;
  background-size: cover;
  transition: 0.5s ease-in-out;
}
.tabimg3:hover {
  background: url("../img/cars/c3a.png") no-repeat;
  height: auto; 
  width: 100%; 
  background-position: center;
  background-size: cover;
  transition: 0.5s ease-in-out;
}
.active.tabimg3 {
  background: url("../img/cars/c3a.png") no-repeat;
  height: auto; 
  width: 100%; 
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 670px){
  .tabimg3 {
    background: url("../img/cars/c3m.png") no-repeat;
    height: auto; 
    width: 100%; 
    background-position: center;
    background-size: cover;
    transition: 0.5s ease-in-out;
  }
  .tabimg3:hover {
    background: url("../img/cars/c3am.png") no-repeat;
    height: auto; 
    width: 100%; 
    background-position: center;
    background-size: cover;
    transition: 0.5s ease-in-out;
  }
  .active.tabimg3 {
    background: url("../img/cars/c3am.png") no-repeat;
    height: auto; 
    width: 100%; 
    background-position: center;
    background-size: cover;
  }
  .tabimg2 {
    display: inline-block;
    position: relative;    
    line-height: 0;
  }
  .tabimg2 {
    background: url("../img/cars/c2m.png") no-repeat;
    height: auto; 
    width: 100%; 
    background-position: center;
    background-size: cover;
    transition: 0.5s ease-in-out;
  }
  .tabimg2:hover {
    background: url("../img/cars/c2am.png") no-repeat;
    height: auto; 
    width: 100%; 
    background-position: center;
    background-size: cover;
    transition: 0.5s ease-in-out;
  }
  .active.tabimg2 {
    background: url("../img/cars/c2am.png") no-repeat;
    height: auto; 
    width: 100%; 
    background-position: center;
    background-size: cover;
  }
  .tabimg {
    display: inline-block;
    position: relative;    
    line-height: 0;
  }
  .tabimg {
    background: url("../img/cars/c1m.png") no-repeat;
    height: auto; 
    width: 100%; 
    background-position: center;
    background-size: cover;
    transition: 0.5s ease-in-out;
  }
  .tabimg:hover {
    background: url("../img/cars/c1am.png") no-repeat;
    height: auto; 
    width: 100%; 
    background-position: center;
    background-size: cover;
    transition: 0.5s ease-in-out;
  }
  .active.tabimg {
    background: url("../img/cars/c1am.png") no-repeat;
    height: auto; 
    width: 100%; 
    background-position: center;
    background-size: cover;
  }
  
  }
  .tb5 td {
    padding: 16px 7px 16px 5px;
  }
  .img-0 img {
    width: 0px;
  }
  /* transition duration to control the speed of fade effect */
.carousel-item {
  transition: transform 2.6s ease-in-out;
}
.carousel-item .active {
  transform:  2.6s scale(1.05, 1.05);
}


/* Masonry image gallery styling */
.images {
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  .images .gallery {
  gap: 5px;
  max-width: 85%;
  margin: 30px 0;
  columns: 5 210px;
  list-style: none;
  }
  .images .gallery li {
  display: flex;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin-bottom: 7px;
  border-radius: 4px;
  }
  .images .gallery  img {
  width: 100%;
  transition: transform 0.2s ease;
  }
  
  .images .gallery .img:hover img {
  transform: scale(1.1);
  }
  @media screen and (max-width: 670px){
    .images .gallery {
      gap: 5px;
      max-width: 85%;
      margin: 30px 0;
      columns: 5 162px;
      list-style: none;
      }
  }
  /*@media screen and (min-width: 677px){
    .images .gallery {
      gap: 5px;
      max-width: 85%;
      margin: 30px 0;
      columns: 2 200px;
      list-style: none;
      }
  }*/
  @media screen and (max-width: 395px){
    .images .gallery {
      gap: 5px;
      max-width: 85%;
      margin: 30px 0;
      columns: 2 140px;
      list-style: none;
      }
  }
  .h-85 {
    height: 95%!important;
}
.h-phone {
  color: #000;
}
.text-justify {
	text-align: justify;
}