@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap");
* {
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  background: #1b1b1b;
}

a {
  text-decoration: none;
  color: #999;
  transition: 0.2s ease-in-out;
}
a:hover {
  color: #c29032;
}

.toggle-button {
  display: none;
  transition: 0.3s linear;
  opacity: 0.85;
  background: #c29032;
  position: fixed;
  width: 50px;
  top: 15px;
  height: 50px;
  z-index: 9999;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}
.toggle-button i {
  width: 45%;
  height: 0.5px;
  background: #fff;
  position: relative;
}
.toggle-button i:before {
  transition: 0.2s ease-in-out;
  content: "";
  position: absolute;
  background: #fff;
  height: 1px;
  width: 100%;
  top: 6px;
}
.toggle-button i:after {
  transition: 0.2s ease-in-out;
  content: "";
  position: absolute;
  background: #fff;
  height: 1px;
  width: 100%;
  bottom: 6px;
}
.toggle-button:hover {
  opacity: 1;
}
.toggle-button:hover i:after {
  bottom: 8px;
}
.toggle-button:hover i:before {
  top: 8px;
}

.main-inp {
  background: #333;
  border: none;
  box-shadow: none;
  outline: none;
  color: white;
  padding: 12px 15px;
  border-radius: 0;
  transition: 0.2s ease-in-out;
}
.main-inp:focus {
  box-shadow: none;
  outline: none;
  background: #333;
  color: white;
}

.main-btn {
  background: #c29032;
  color: white;
  font-weight: 100;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  border-top-right-radius: 3px;
}
.main-btn:hover {
  background: #222222;
  color: white;
}
.main-btn:focus {
  box-shadow: none;
  outline: none;
}
.main-btn:active {
  box-shadow: none;
  outline: none;
}

.alert-success {
  color: #ffffff;
  background: #333333;
  border-color: #333333;
}

.section-title {
  font-weight: 100;
  font-size: 24px;
  color: #fff;
}

.subtitle {
  font-weight: 100;
  font-size: 13px;
  color: #c29032;
  padding-bottom: 5px;
}

.info-title {
  margin: 0;
  font-size: 20px;
  color: #fff;
  padding: 0;
  font-weight: 600;
  transition: 0.2s ease-in-out;
  word-break: break-word;
}

.logo-wrapper-with-info {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.logo-wrapper-with-info .img-wrapper {
  width: 100px;
}
.logo-wrapper-with-info .text-wrapper {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}
.logo-wrapper-with-info .text-wrapper .brand-name {
  color: #c29032;
  font-size: 26px;
  font-weight: 100;
}
.logo-wrapper-with-info .text-wrapper .slogan {
  color: #999;
  font-size: 14px;
  font-weight: 100;
  margin-top: 5px;
}

.aside-bar {
  transition: 0.3s linear;
  position: fixed;
  background: #1b1b1b;
  width: 20%;
  height: 100vh;
  padding: 60px 30px 30px 30px;
  min-width: 280px;
  z-index: 999;
}
.aside-bar .lang-wrapper {
  margin-bottom: 25px;
}
.aside-bar .nav {
  padding: 50px 0;
}
.aside-bar .nav .nav-items {
  list-style: none;
  color: #999;
  padding: 0;
  margin: 0;
}
.aside-bar .nav .nav-items .nav-item {
  color: #999;
  font-size: 18px;
  padding: 5px 0;
  font-weight: 100;
}
.aside-bar .nav .nav-items .nav-item a {
  display: flex;
  align-items: center;
}
.aside-bar .nav .nav-items .nav-item a i {
  font-size: 10px;
  margin-right: 7px;
}
.aside-bar .nav .nav-items .nav-item {
  color: #c29032;
}
.aside-bar .nav .nav-items .nav-item a.active {
  color: #c29032;
}
@media (max-width: 991px) {
  .aside-bar .nav {
    padding-bottom: 25px;
  }
}
.aside-bar .contact-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.aside-bar .contact-wrapper .info {
  color: #c29032;
  font-weight: 100;
  width: 100%;
  font-size: 13px;
}
.aside-bar .contact-wrapper .info-value {
  margin-top: 12px;
  font-weight: 300;
  color: #999;
  width: 100%;
  font-size: 20px;
}
.aside-bar .copyright {
  margin: 70px 0 0;
  color: #999;
  width: 100%;
  font-size: 10px;
}

.main {
  background: #222222;
  transition: 0.3s linear;
  width: 80%;
  margin-left: auto;
}
.main section, .main footer {
  width: 100%;
  padding: 70px 50px 70px;
}
@media (max-width: 576px) {
  .main section, .main footer {
    padding: 50px 16px;
  }
}
.main .section-slide {
  padding: 0;
}
.main .section-slide .splide__pagination {
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: flex-end;
  margin: 0 41px 48px;
}
.main .section-slide .splide__pagination .splide__pagination__page {
  transition: 0.2s ease-in-out;
  background: #fff;
  height: 30px;
  border-radius: 0;
  width: 4px;
  margin: 4px;
}
.main .section-slide .splide__pagination .splide__pagination__page.is-active {
  background: #c29032;
  transform: scale(1);
  width: 6px;
}
.main .section-slide .slide-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.main .section-slide .slide-wrapper .image-wrapper {
  height: 100%;
}
.main .section-slide .slide-wrapper .image-wrapper img {
  object-fit: cover;
}
.main .section-slide .slide-wrapper .info-wrapper {
  position: absolute;
  bottom: 7vh;
  left: 50px;
  background: #1b1b1b;
  padding: 30px 25px;
  text-align: right;
}
.main .section-slide .slide-wrapper .info-wrapper .slogan-title {
  text-align: left;
  width: 100%;
  color: white;
  font-weight: 100;
  font-size: 28px;
}
.main .section-slide .slide-wrapper .info-wrapper .info-description {
  text-align: left;
  width: 100%;
  color: #999;
  font-weight: 100;
  font-size: 18px;
  margin-bottom: 21px;
}
.main .section-slide .slide-wrapper .info-wrapper .main-btn {
  margin-left: auto;
}
@media (max-width: 576px) {
  .main .section-slide .slide-wrapper .info-wrapper {
    left: 0;
    right: 0;
    bottom: 20vh;
  }
}
.main .section-cases .case-wrapper {
  position: relative;
  transition: 0.3s ease-in-out;
  margin-bottom: 80px;
}
.main .section-cases .case-wrapper .image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}
.main .section-cases .case-wrapper .image-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1882352941);
  transition: 0.2s ease-in-out;
}
.main .section-cases .case-wrapper .image-wrapper img {
  transition: 0.7s ease-in-out;
}
.main .section-cases .case-wrapper .name-wrapper {
  text-align: center;
  position: absolute;
  width: 90%;
  left: 5%;
  bottom: 0;
  transform: translateY(50%);
  transition: 0.2s ease-in-out;
  z-index: 2;
}
.main .section-cases .case-wrapper .name-wrapper .info-title {
  width: 100%;
  padding: 17px 10px;
  background: #282828;
  font-size: 18px;
  font-weight: 300;
}
.main .section-cases .case-wrapper:hover .name-wrapper {
  transform: translateY(-20%);
}
.main .section-cases .case-wrapper:hover .image-wrapper:before {
  background: rgba(0, 0, 0, 0.4);
}
.main .section-cases .case-wrapper:hover .image-wrapper img {
  transform: scale(1.1);
}
.main .section-services {
  background: #282828;
}
.main .section-services .service-wrapper {
  transition: 0.2s ease-in-out;
  padding: 20px 30px 20px;
  height: 100%;
  width: 100%;
  background: #222;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  overflow: hidden;
  max-height: 200px;
}
@media (max-width: 1366px) {
  .main .section-services .service-wrapper {
    padding: 20px 5px 20px 20px;
  }
}
.main .section-services .service-wrapper .icon-wrapper {
  width: 80px;
  margin-bottom: 10px;
  transition: 0.2s ease-in-out;
}
.main .section-services .service-wrapper .text-wrapper {
  width: 100%;
}
.main .section-services .service-wrapper .text-wrapper .card-description {
  transition: 0.2s ease-in-out;
  margin-top: 17px;
  color: transparent;
  margin-bottom: 0;
  height: 0;
}
.main .section-services .service-wrapper:hover {
  border-bottom: 3px solid #c29032;
}
.main .section-services .service-wrapper:hover .icon-wrapper {
  transform: translateY(-90px);
  opacity: 0;
}
.main .section-services .service-wrapper:hover .text-wrapper {
  width: 100%;
  position: relative;
}
.main .section-services .service-wrapper:hover .text-wrapper .info-title {
  transform: translateY(-90px);
}
@media (max-width: 1366px) {
  .main .section-services .service-wrapper:hover .text-wrapper .info-title {
    font-size: 18px;
  }
}
.main .section-services .service-wrapper:hover .text-wrapper .card-description {
  transform: translateY(-90px);
  color: #999;
  display: block;
}
@media (max-width: 1366px) {
  .main .section-services .service-wrapper:hover .text-wrapper .card-description {
    transform: translateY(-100px);
  }
}
.main .section-about-us {
  background-image: url("/uploads/img_2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.main .section-about-us .section-title {
  color: #c29032;
}
.main .section-about-us .text-slogan {
  color: #fff;
  margin-top: 13px;
}
.main .section-about-us .about-wrapper {
  background: rgba(34, 34, 34, 0.7411764706);
  padding: 30px 30px;
  transition: 0.3s ease-in-out;
}
.main .section-about-us .about-wrapper .about-description {
  margin-top: 13px;
  color: #999;
  margin-bottom: 0;
}
.main .section-about-us .about-wrapper:hover {
  background: #222;
}
.main .section-blog .blog-wrapper {
  background: #282828;
}
.main .section-blog .blog-wrapper .image-wrapper {
  width: 100%;
  overflow: hidden;
}
.main .section-blog .blog-wrapper .image-wrapper img {
  transition: 0.2s ease-in-out;
}
.main .section-blog .blog-wrapper .text-wrapper {
  padding: 20px 18px;
}
.main .section-blog .blog-wrapper .text-wrapper .description {
  color: #fff;
  font-size: 20px;
}
.main .section-blog .blog-wrapper .text-wrapper .date-wrapper {
  color: #999;
  width: 100%;
  text-align: right;
  font-size: 12px;
}
.main .section-blog .blog-wrapper:hover .image-wrapper img {
  transform: scale(1.1);
}
.main .section-contact .contacts-wrapper .contact-item-wrapper {
  margin-top: 10px;
  display: flex;
}
.main .section-contact .contacts-wrapper .contact-item-wrapper .icon {
  width: 55px;
  font-size: 37px;
  color: #c29032;
}
.main .section-contact .contacts-wrapper .contact-item-wrapper .info-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 7px;
}
.main .section-contact .contacts-wrapper .contact-item-wrapper .info-wrapper .contact-title {
  font-size: 18px;
  width: 100%;
  color: #fff;
}
.main .section-contact .contacts-wrapper .contact-item-wrapper .info-wrapper .info {
  font-size: 15px;
  width: 100%;
  color: #999;
}
.main .section-contact .contact-form-wrapper .form-header .description {
  color: #999;
  margin: 0;
}
.main .section-contact .contact-form-wrapper .form-wrapper .inp-wrapper {
  margin-top: 15px;
  text-align: right;
}
.main .section-contact .contact-form-wrapper .form-wrapper .inp-wrapper .main-btn:hover {
  background: #333;
}
.main .section-faq {
  background: #282828;
}
.main .section-faq .accordion .accordion-item {
  background: transparent;
  border: none;
  padding: 15px 0;
}
.main .section-faq .accordion .accordion-item .accordion-header .accordion-custom-button.collapsed {
  background: #1b1b1b;
}
.main .section-faq .accordion .accordion-item .accordion-header .accordion-custom-button.collapsed:before {
  transform: rotate(0deg);
  background: #c29032;
}
.main .section-faq .accordion .accordion-item .accordion-header .accordion-custom-button.collapsed:after {
  transform: rotate(0deg);
  background: #c29032;
}
.main .section-faq .accordion .accordion-item .accordion-header .accordion-custom-button {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: #c29032;
  color: #fff;
  width: 100%;
  text-align: left;
  padding: 15px 40px 15px 20px;
  font-size: 18px;
  position: relative;
}
.main .section-faq .accordion .accordion-item .accordion-header .accordion-custom-button:before {
  transform: rotate(360deg);
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  right: 20px;
  top: 25px;
}
.main .section-faq .accordion .accordion-item .accordion-header .accordion-custom-button:after {
  transform: rotate(450deg);
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background: #fff;
  right: 29px;
  top: 16px;
}
.main .section-faq .accordion .accordion-item .accordion-collapse {
  margin-top: 30px;
  background: transparent;
}
.main .section-faq .accordion .accordion-item .accordion-collapse .accordion-body {
  padding-left: 35px;
  color: #999;
  font-size: 14px;
  border-left: 1px solid #c29032;
}
.main .section-faq .accordion .accordion-item .accordion-collapse .accordion-body * {
  margin: 0;
}
.main .section-footer {
  background: rgba(27, 27, 27, 0.8);
}
.main .section-footer .copyright {
  margin-top: 30px;
  color: #999;
  font-size: 11px;
}
.main .section-view .view-wrapper .image-wrapper {
  margin-bottom: 40px;
}
.main .section-view .view-wrapper .description {
  color: #999;
  margin: 20px 0 0;
}
.main .section-view .recent-articles {
  background: #282828;
  padding: 30px 25px;
}
.main .section-view .recent-articles .section-title {
  margin-bottom: 13px;
  position: relative;
  padding-bottom: 6px;
  font-size: 22px;
}
.main .section-view .recent-articles .section-title:before {
  position: absolute;
  content: "";
  background: #c29032;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
}
.main .section-view .recent-articles .article-item-wrapper .article-title {
  margin-top: 20px;
  font-size: 16px;
  color: #999;
  transition: 0.3s ease-in-out;
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
  word-break: break-all;
  line-height: 1.2;
  width: 100%;
}
.main .section-view .recent-articles .article-item-wrapper .article-title:before {
  position: absolute;
  content: "";
  background: #c29032;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: 0.3s ease-in-out;
}
.main .section-view .recent-articles .article-item-wrapper .article-title:hover {
  color: #c29032;
}
.main .section-view .recent-articles .article-item-wrapper .article-title:hover:before {
  width: 70%;
}
.main .section-view .recent-articles .article-item-wrapper .article-title.active {
  color: #c29032;
}
.main .section-view .recent-articles .article-item-wrapper .article-title.active:before {
  width: 70%;
}

@media screen and (max-width: 991px) {
  .aside-bar {
    transform: translateX(-100%);
    padding: 20px 30px 10px 30px;
  }
  .toggle-button {
    display: flex;
  }
  .main {
    width: 100%;
  }
  body.open-toggle .aside-bar {
    transform: translateX(0);
    padding: 40px 30px 10px 30px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  body.open-toggle .aside-bar .nav {
    padding-top: 18px;
  }
  body.open-toggle .aside-bar .copyright {
    margin-top: 30px;
  }
  body.open-toggle .toggle-button {
    margin-left: 300px;
  }
  body.open-toggle .toggle-button i {
    background: transparent;
  }
  body.open-toggle .toggle-button i:before {
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
  }
  body.open-toggle .toggle-button i::after {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
  }
  body.open-toggle .main {
    transform: translateX(28%);
  }
  .cmt-2 {
    margin-top: 8px;
  }
  .cdn {
    display: none;
  }
}
@media (max-width: 576px) {
  .section-about-us {
    padding: 0 !important;
  }
  .section-about-us .same-text {
    padding: 16px 40px 8px;
    background: rgba(34, 34, 34, 0.7411764706);
    margin-bottom: 0 !important;
  }
  .section-about-us .about-wrapper {
    padding-top: 0 !important;
  }
}

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