/* FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
  --color-orange: #DC6319;
  --color-bg: #200D03;
}

/*RESET CSS*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.button {
  border: none;
  cursor: pointer;
}

.button > span {
  display: block;
  padding: 0 30px;
}


/* GLOBAL ELEMENTS */
#wrapper {
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1480px;
  padding: 0 80px;
  box-sizing: border-box;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.section {
  position: relative;
  overflow: hidden;
}

/* Button global */
.button {
  position: relative;
  overflow: hidden;
  font-size: 20px;
  font-weight: 700;
  display: block;
  padding: 18px 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  max-width: 419px
}

/* Button bg */
.button-bg {
  transition: all 0.3s;
  z-index: 1;
}
.button-bg:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-orange);
  z-index: -2;
}
.button-bg:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #8B4316;
  transition: all 0.3s;
  z-index: -1;
}
.button-bg:hover {
  color: #fff;
}
.button-bg:hover:before {
  width: 100%;
}
/* End button bg */

/* Button light */
.button-light {
  border: 2px solid var(--color-orange);
  transition: all .35s;
  color: var(--color-orange);
  margin-top: 24px;
}

.button-light span{
  position: relative;
  z-index: 2;
}

.button-light:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-orange);
  transition: all .35s;
}

.button-light:hover{
  color: #fff;
}

.button-light:hover:after{
  width: 100%;
}
/* End button light */

/* Title section n */
.title-section-n {
  max-width: 900px;
  padding: 81px 0 40px 0;
}

.title-section-n h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}
/* End title section n */

/* Modal Wind */

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal h5 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2em;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
}

.closeModal, .closeModalColl {
  cursor: pointer;
  display: block;
  max-width: 30px;
  margin-left: auto;
  padding-bottom: 5px;
  transition: 2s ease all;
}

.closeModal:hover, .closeModalColl:hover {
  transform: rotate(90deg);
}

/* End modal wind */
/* HEADER */
header {
  position: fixed;
  left: 0;
  top: 0;
  padding: 13px 0;
  box-sizing: border-box;
  width: 100%;
  color: #FFFFFF;
  background-color: var(--color-bg);
  border-bottom: 1px solid #5B4B42;
  z-index: 10000;
}

header .row {
  justify-content: space-between;
}

@media screen and (min-width: 861px) and (max-width: 1025px) {
  header .row {
    justify-content: space-around;
  }
}
/* End Header */

/* Mobile header */
#mobile-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  width: 100%;
  box-sizing: border-box;
  display: none;
  padding: 10px 0 10px 0
}

#mobile-header li {
  border-bottom: 1px solid  var(--color-orange);
  margin: 0 25px;
}

#mobile-header li {
  border-bottom: 1px solid  var(  --color-orange);
  padding: 10px 0;
}

#mobile-header .social-media-wrapp > .row {
  justify-content: center;
}

.social-media-wrapp-mobile {
  margin-bottom: 10px;
}

/* menu button */
.menuBtn {
  display: block;
  margin-left: 0;
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 1000;
> span {
  background-color: #fff;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -15px;
  transition: height 100ms;
  &:after, &:before {
    content: '';
    background-color: #fff;
    border-radius: 1px;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    transition: all 200ms;
  }
  &:after {
    top: -7px;
  }
  &:before {
    bottom: -7px;
  }
}
&.act {
  > span {
    height: 0;
    &:after, &:before {
      background-color: #F6F6F6;
      top: 1px;
    }
    &:after {
      transform: rotate(45deg);
    }
    &:before {
      transform: rotate(-45deg);
    }
  }
}
}
/* main menu block */
.mainMenu {
background-color: #1C1C1E;
position: absolute;
left: 0;
top: 0;
z-index: 100;
height: 100%;
width: 100%;
display: table;
text-align: center;
opacity: 0;
transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
transform: scale(0);
&.act {
  opacity: 1;
  transform: scale(1);
  ul li {
  opacity: 1;
  transform: translateX(0);
}
}
ul {
  display: table-cell;
  vertical-align: middle;
}
li {
  padding: 8px 0;
  transition: all 400ms 510ms;
  opacity: 0;
  &:nth-child(odd) {
    transform: translateX(30%);
  }
  &:nth-child(even) {
    transform: translateX(-30%);
  }
  &:last-child {
    transform: none;
  }
}
a {
  color: #F6F6F6;
  display: inline-block;
  font-size: 18px;
  &.suBtn {
    color: #fff;
  }
}

}

.mainMenu.act {
  height: 100vh;
}

.menuItem {
  transition: 0.3s ease;
}

.menuItem a:hover {
  
}

.mainMenu li {
  margin: 0 auto;
  text-align: center;
}

.mainMenu .logo {
  max-width: 100px;
  margin: auto;
}

.mainMenu .logo .service {
  margin-left: 33px;
}


/* End mobile header */


/*Logo*/
.logo {
  text-transform: uppercase;
  line-height: 1.2;
}

.orange {
  background-color: var(--color-orange);
  padding: 0 5px; 
  box-sizing: border-box;
  border-radius: 3px;
}

.profi {
  font-weight: 700;
  font-size: 32px;
  line-height: 1em;
}

.service {
  display: block;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
}

.logo-mobile {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
  max-width: 70px;
}

.orange-mobile {
  background-color: var(--color-orange);
  padding: 0 2px; 
  box-sizing: border-box;
  border-radius: 3px;
}

.profi-mobile {
  font-weight: 600;
  font-size: 20px;
  line-height: 1em;
}

.service-mobile {
  font-size: 16px;
  font-weight: 400;
  text-align: right;
}

/*End Logo*/



/*Adress hours work wrapp*/
.adress-hours-phone-work-wrapp {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .adress-hours-phone-work-wrapp a {
  color: var(--color-orange);
} */

.adress-hours-phone-work-wrapp img {
  margin-right: 10px;
}

.adress-hours-phone-work {
  margin-left: 10 px;
}

.adress-hours-phone-work span {
  display: block;
  font-size: 14px;
}

.hours-work {
  font-weight: 400px;
}

.adress {
  font-weight: 700;
  padding-top: 7px;
  transition: 0.5s ease all;
}

.adress > a {
  transition: 0.5s ease all;
}

.adress:hover {
  color: var(--color-orange);  
}

span.adress > a:hover {
  color: var(--color-orange); 
}
/*End adress hours work wrapp*/

/* Social Media */
.social-media-wrapp {
  margin: auto 0;
}

.mdi-icons {
  position: relative;
  display: flex;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-left: 16px;
  padding: 5px;
  box-sizing: border-box;
  border: 2px solid var(--color-orange);
  overflow: hidden;
}

.mdi-icons::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 100%;
  background-color: var(--color-orange);
  transition: 0.4s ease all;
}

.mdi-icons:hover.mdi-icons::before {
  bottom: 0px;
  z-index: 100;
}

.mdi-icons img {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 100;
}

/* End socila media */





/* SECTION-1 */
#section-1 {
  background: var(--color-bg);
  padding-top: 110px;
  color: #FFFFFF;
  box-sizing: border-box;
  overflow: hidden;
}

#section-1 .container {
  position: relative;
}

.d-grid-1 {
  display: grid;
  grid-template-columns: minmax(auto, 840px) minmax(auto, 417px);
  gap: 5px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки, кожна займає 1/4 ширини */
    gap: 16px; /* Відступи між елементами */
}

#section-1 > .container > .row {
  justify-content: space-between;
}

.mobile-block-1 {
  display: none;
}

.videoItemHome video {
  position: relative;
  z-index: 5000 ! important;
}

.mobile-block-1 .adress-hours-phone-work-wrapp {
  margin: 15px 0;
}

/* Title section-1 */
.title-section-1 {
  max-width: 842px;
  margin-top: 55px;
  padding-bottom: 20px;
  z-index: 10;
}

.title-section-1 h1 {
  padding-bottom: 45px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3em;
  text-transform: uppercase;
}

.orange-text {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-orange);
}

#section-1 .social-media-wrapp {
  margin-top: 24px;
}

#section-1 .mdi-icons {
  margin-left: 0;
  margin-right: 16px;
}

/* End title section-1 */

/* Carousel section-1 */
.carousel-section-1 {
  position: relative;
  padding-top: 67px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.carousel-section-item {
  position: absolute;
  right: -1000px;
  transition: 1.1s ease all;
}

.carousel-section-item.active {
  position: relative;
  right: 0;
}


.carousel-section-1 img {
  margin-left: auto;
  display: block;
}
/* End carousel section-1 */

/* Video Section-1 */
.videoItemHome {
  max-width: 300px;
  z-index: 1000;
}

.videoItemHome video {
  max-width: 100%;
  height: auto;
}



/* Section-2 */
.services-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.services-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-item {
  position: relative;
  text-transform: uppercase;
  box-sizing: border-box;
}

.service-item-box {
  position: absolute;
  display: flex;
  padding: 10px;
  background-color: rgba(13,5,1, 0.5);
  color: #FFFFFF;
  flex-direction: column;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: 0.4s ease all;
}

.services-item span {
  display: block;
  text-align: center;
  max-width: 270px;
  margin: auto;
  font-size: 20px;
  font-weight: 600;
}

.services-item img {
  width: 100%;
  height: 100%;
}

/* End section-2 */

/* Section-3 */
#section-3 {
  background: var(--color-bg);
  margin-top: 79px;
  color: #FFFFFF;
  padding-bottom: 63px;
}

#section-3 .title-section-n h2 {
  color: #FFFFFF;
}

.clients-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.clients-item {
  position: relative;
  width: 315px;
  text-align: center;
  padding: 25px 5px 45px 5px;
  border: 2px solid var(--color-orange);
  box-sizing: border-box;
}

.clients-item:first-child::before {
  content: '';
  display: block;
  position: absolute;
  right: -2px;
  top: -5px;
  width: 60px;
  height: 3px;
  background: var(--color-orange);
}

.clients-item:first-child::after {
  content: '';
  display: block;
  position: absolute;
  right: -5px;
  top: -5px;
  width: 3px;
  height: 60px;
  background: var(--color-orange);
}

.clients-item:last-child::before {
  content: '';
  display: block;
  position: absolute;
  left: -2px;
  bottom: -5px;
  width: 60px;
  height: 3px;
  background: var(--color-orange);
}

.clients-item:last-child::after {
  content: '';
  display: block;
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: 3px;
  height: 60px;
  background: var(--color-orange);
}

.clients-item img {}

.clients-item h6 {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 5px 30px 5px;
  text-transform: uppercase;
  line-height: 1.1em;
}

.clients-item p {
  font-size: 18px;
  font-weight: 300;
  padding: 0 5px;
}

/* End section-3 */

/* Portfolio */
#portfolio {

}

#portfolio .row {
  justify-content: space-between;
}

#portfolio video {
  max-width: 24%;
  margin-top: 20px;
}

/* End portfolio */


/* How Work */
#how-work {
  background: var(--color-bg);
  margin-top: 79px;
  color: #FFFFFF;
  padding-bottom: 63px;
}

#how-work h2 {
  color: #FFFFFF;
}

.how-work-wrapp {

}

.how-work-wrapp .row {
  justify-content: space-between;
}

.how-work-item {
  max-width: 20.333333%;
  text-align: center;
  padding: 0 5px;
}

.how-work-item img {
  max-width: 160px;
  max-height: 160px;
  margin-bottom: 10px;
  background: #d6d0cd;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  box-sizing: border-box;
}

.how-work-item-body {

}

.how-work-item-body {
  justify-content: center;
  margin-bottom: 5px;
}

.how-work-item-title {
  text-align: center;
  font-size: 18px;
}

.how-work-item-title h5 {
  margin-bottom: 5px;
  font-weight: 500;
}

.how-work-item-title span {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}

.how-work-item-desc {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}

/* End how work */



/* Section 4 */
#section-4 {
  position: relative;
}

.commnets-wrap {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
}

.comments-item {
  background: var(--color-bg);
  color: #FFFFFF;
  padding: 24px;
  margin: 0 10px;
}

.commnet-name {
  font-size: 24px;
  font-weight: 700;
}

.comments-item div {
  display: flex;
}

.comment-header {
  padding: 16px 0 20px 0;
}

.comment-header img {
  margin-right: 16px;
}

.comment-header span {
  display: block;
  margin: auto 0;
}

.comments-item p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
}

.add-comments-wrap {
  margin-top: 36px;
}

.add-comments-wrap a {
  font-size: 20px;
  max-width: 250px;
}

.commnets-wrap-arrows {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 100%;
  height: 30px;
}

.commnets-wrap-box {
  display: flex;
  margin: auto;
  max-width: 200px;
}

.custom-arrows {
  cursor: pointer;
}

.custom-prev {
  margin-right: 20px;
}

.custom-next {
  margin-left: 20px;
}

/* End section 4 */

/* Section-5 */
#section-5 {
  margin-top: 30px;
  background: var(--color-bg);
  color: #FFFFFF;
  padding-bottom: 326px;
}

#section-5 .row {
  justify-content: space-between;
  flex-wrap: nowrap;
}

.title-section-5 {
  max-width: 635px;
  box-sizing: border-box;
  margin-right: 10px;
}

#section-5 h2 {
  color: #FFFFFF;
}

#section-5 p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4em;
  padding-top: 36px;
}

#section-5 p span {
  display: block;
  color: var(--color-orange);
}

.section-5-contacts-mobile {
  display: none;
}

/* Contact Form Wrapp */
.contact-form-wrapp {
  max-width: 650px;
  margin-top: 81px;
  background: #45352B;
}

.contact-form-wrapp form {
  box-sizing: border-box;
  padding: 48px;
}

.form-control {
  font-size: 20px;
  font-weight: 400;
  padding: 12px;
  width: 100%;
  margin-top: 20px;
  background: #F7F0EC;
  border: 1px solid #d6d0cd;
  resize: none;
  box-sizing: border-box;
}

.invalid-feedback {
  font-size: 16px;
}

.form-control-radio {
  color: #000000;
}

.form-control-radio label {
  display: block;
}

.contact_method {
  display: block;
  font-size: 18px;
  padding-bottom: 15px;
}

.form-check {
  display: flex;
  gap: 3px;
  align-items: center;
  padding-bottom: 13px;
  transition: 0.15s ease all;
}

.form-check:hover {
  color: var(--color-orange);
}

.form-check-input {
  display: block;
  min-width: 18px;
  min-height: 18px;
}

.form-check-label {
  display: block;
  font-size: 16px;
}

form .button {
  margin-top: 20px;
}

/* End contact Form Wrapp */

/* End section-5 */


/* Section-6 */
#section-6 {
  margin-top: -270px;
}

#section-6 iframe {
  width: 100%;
  height: 100%;
  /*490px*/
}

#section-6 .container {

}

#section-6 .row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#section-6 .mapItem {
  /* width: calc(100% / 12 * 8 - 15px); */
  width: 100%;
  height: 500px;
}

#section-6 .videoItem {
  width: calc(100% / 12 * 4 - 15px);
}

#section-6 .videoItem > video {
  max-width: 100%;
  display: block;
}

/* End section-6 */


/* Section-7 */
#section-7 {
  margin-top: 50px;
}

#section-7 .container {
  position: relative;
}

/* Section-8 */
#section-8 {
  background: var(--color-bg);
  margin-top: 40px;
  color: #FFFFFF;
  padding-bottom: 63px;
}

#section-8 h2 {
  color: #FFFFFF;
}

.faq-wrap {
  position: relative;
  z-index: 1000;
}

/* FAQ  Slider */
.faq-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #9c4c19;
  color: white;
  overflow: hidden;
  transition: all 0.3s ease;
  line-height: 1.3rem;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
  text-align: left;
}

.questionIcon {
  font-size: 25px;
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-answer.open {
  display: block;
}

.faq-question .text {
  margin-left: 10px;
}

.toggle-btn {
  background: none;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

faq-question. .toggle-btn.rotate {
  transform: rotate(180deg);
}


.title-section-7-wrapp {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.title-section-7 {
  margin: auto;
  background: var(--color-bg);
  text-align: center;
  color: #FFFFFF;
  width: 50%;
  padding: 42px 0;
}

.title-section-7 h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-orange);
}

.title-section-7 p {
  max-width: 360px;
  margin: 27px auto 27px auto;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
}

.title-section-7 .button {
  margin: 0 auto;
}

#section-7 img {
  display: block;
  max-width: 33.3333%;
}

/* End section-7 */

/* Footer */
#footer {
  background-color: var(--color-bg);
  color: #FFFFFF;
  padding: 37px 0 10px 0;
}

#footer .row {
  justify-content: space-between;
  align-items: center;
}

#footer .logo {
  margin: auto 0;
}

#footer .adress-hours-phone-work-wrapp {
  margin: auto 0;
}

#footer .social-media-wrapp {
  margin: auto 0;
}

.footer-elem {
  margin: 3px 5px;
}

.copyright {
  margin-top: 10px;
  border-top: 1px solid var(--color-orange);
  text-align: center;
  font-size: 12px;
  padding-top: 10px;
  opacity: 0.6;
}

.copyright span {
  display: block;
  margin: 10px 0;
}

#footer span a {
  color: var(--color-orange);
}

/* End footer */

/* Form Eror */
.invalid-feedback {
  color: #d60f0f;
  margin-top: 7px;
}

.form-control.is-invalid {
  border: 2px solid #d60f0f;
  background-color: #edb8b8;
}

#section-5 textarea {
  min-height: 100px;
}

/* Order Page */

#section-order {
  padding: 100px 0;
  background-color: var(--color-bg);
  color: #FFFFFF;
  height: 79vh;
  box-sizing: border-box;
  overflow-y: auto;
}

#section-order .container {

}

#section-order .row {
  justify-content: center;
}

#section-order .title-section-n h1 {
  font-size: 50px;
  text-align: center;
}

#section-order .title-section-n p {
  font-size: 30px;
  margin-top: 10px;
  text-align: center;
}

/* Login Form */
#sectionForm {
  min-height: 80vh;
}

#sectionForm .form-control {
  width: 320px;
}

#sectionForm .row {
  justify-content: center;
}

.loginForm {
  margin-top: 20%;
}

.loginForm .invalid-feedback {
  font-size: 13px;
}

.loginForm label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 15px 0 5px 0;
}

.loginForm input {
  margin: 0 0 0 0;
  font-size: 14px;
}

.remeberMe {
  display: flex;
  margin-bottom: 15px;
}

.loginForm #inputRememberPassword {
  width: 18px;
  height: 18x;
  margin: 7px 7px 0 0 ;
}

.password-request {
  font-size: 14px;
  transition: 0.5s ease;
  display: block;
}

.password-request a:hover {
  color: rgb(26, 26, 158);
  font-weight: 600;
}

#sectionForm .button {
  font-size: 16px;
  padding: 10px 30px;
  margin: 15px 0 0 0 ;
}

/* End Login Form */






/* Animation Section-1 Cube */
.cube {
  position: absolute;
  top: 80%;
  left: 25%;
  width: 10px;
  height: 10px;
  border: solid 1px #AC4E14;
  transform-origin: top left;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  -webkit-animation: cube 13s ease-in forwards infinite;
          animation: cube 13s ease-in forwards infinite;

}
.cube:nth-child(2n) {
  border-color: var(--color-orange);
}
.cube:nth-child(2) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  left: 60%;
  top: 70%;
}
.cube:nth-child(3) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  left: 35%;
  top: 60%;
}
.cube:nth-child(4) {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
  left: 5%;
  top: 10%;
}
.cube:nth-child(5) {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
  left: 80%;
  top: 5%;
}
.cube:nth-child(6) {
  -webkit-animation-delay: 11s;
          animation-delay: 11s;
  left: 90%;
  top: 70%;
}

@-webkit-keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}

@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}

.cubeStock {
  position: absolute;
  border: 5px solid rgba(86,39,10, 0.8);
}

.cubeStock:nth-child(1) {
  border: 10px solid rgba(86,39,10, 0.8);
  width: 250px;
  height: 250px;
  left: -30px;
  top: -10px;
  transform: rotate(45deg);
}

.cubeStock:nth-child(2) {
  border: 20px solid rgba(86,39,10, 0.8);
  width: 250px;
  height: 250px;
  right: -70px;
  bottom: -120px;
  transform: rotate(75deg);
}

.cubeStock:nth-child(3) {
  border: 16px solid rgba(86,39,10, 0.8);
  width: 200px;
  height: 200px;
  left: 60%;
  top: -60px;
  transform: rotate(25deg);
}

/* Feedback button */
.feedback-button {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 10000;
  border-radius: 9999px;
  overflow: hidden;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
  transition: transform 0.4s ease, bottom 0.4s ease;
}

.feedback-button a {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.feedback-button-text {
  display: block;
  border-right: 1px solid #FFFFFF;
  padding: 11px 10px 11px 0;
}

.feedback-button-icon {
  width: 28px;
  height: 28px;
}
/* End Feedback button */

.grecaptcha-badge {
  visibility: hidden !important;
}





































@media screen and (max-width: 1300px) {
  .container {
    padding: 0 20px;
  }
  .contact-form-wrapp form {
    padding: 20px;
  }
  .title-section-1 {
    max-width: 700px;
  }
}

@media screen and (max-width: 1120px) {
  .title-section-1 h1 {
    font-size: 25px;
  }
  .orange-text {
    font-size: 32px;
  }
  .button {
    font-size: 16px;
  }
  .button {
    max-width: 300px;
  }
  .title-section-1 {
    max-width: 500px;
  }

}

@media screen and (max-width: 935px) {
  .clients-wrap {
    flex-wrap: wrap;
  }
  .clients-item {
    width: 48%;
    padding: 30px;
  }
  .commnets-wrap-arrows {
    width: 30%;
    right: 0;
  }
  .title-section-1 {
    width: 100%;
  }
  .videoItemHome {
    max-width: 240px;
  }
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 4 колонки для великих екранів */
    gap: 16px;
  }
}

@media screen and (max-width: 860px) {
  header {
    display: none;
  }
  #mobile-header {
    display: block;
  }
  .mobile-block-1 {
    display: block;
  }
  .title-section-1, .carousel-section-1 {
    padding-top: 0;
    margin-top: 0;
  }
  .title-section-1 h1 {
    font-size: 18px;
    padding-bottom: 20px;
  }
  .social-media-wrapp-desc {
    display: none;
  }
  .orange-text {
    font-size: 24px;
  }
  .carousel-section-1 {
    min-width: 170px;
  }
  .mobile-block-1 .adress-hours-phone-work-wrapp {
    margin: 24px 0;
  }
  .adress-hours-phone-work-wrapp img {
    margin-right: 5px;
  }
  .title-section-n {
    padding: 30px 0 20px 0;
    font-size: 22px;
  }
  .services-item span {
    font-size: 16px;
  }
  #section-5 .row {
    justify-content: center;
    flex-wrap: wrap;
  }
  .title-section-5 {
    max-width: 100%;
  }
  .contact-form-wrapp {
    max-width: 100%;
    margin-top: 0;
  }
  .section-5-contacts-desc {
    display: none;
  }
  .section-5-contacts-mobile {
    display: block;
    position: relative;
    z-index: 1001;
  }
  .section-5-contacts-mobile .social-media-wrapp {
    margin-top: 10px;
  }
  .section-5-contacts-mobile .social-media-wrapp .row {
    display: flex;
    justify-content: flex-start !important;
    margin-left: -16px;
  }
  #section-7 img {
    max-width: 50%;
  }
  .title-section-7 {
    width: 70%;
  }
  #footer .row {
    justify-content: space-evenly;
  }
  #portfolio video {
    max-width: none;
  }
  .how-work-item-title h5 {
    font-size: 13px;
  }
  .how-work-item {
    max-width: none;
    width: 40%;
    padding-bottom: 15px;
  }
  .how-work-item-desc {
    font-size: 13px;
  }
  .modal-content {
    width: 80%;
    margin: 30% auto;
  }
  #how-work {
    padding-bottom: 10px;
  }
  .how-work-item {
    padding-bottom: 40px;
  }
  #section-1 > .container > .row {
    display: block;
  }
  .videoItemHome {
    max-width: 100%;
  }
  .title-section-1 {
    max-width: 100%;
  }
  #section-1 .button {
    max-width: 100%;
  }
}

@media screen and (max-width: 620px) {
  .d-grid-1 {
    grid-template-columns: 1fr;
  }
  .button {
    margin: 0 auto;
    max-width: 100%;
  }
  .button-light {
    margin-top: 15px;
  }
  .carousel-section-1 div {
    margin: 0 auto;
  }
  .title-section-1 h1 {
    font-size: 22px;
    padding-bottom: 20px;
  }
  .orange-text {
    font-size: 30px;
  }
  .services-wrap {
    display: block;
    gap: 0;
  }
  .services-box {
    display: block;
  }
  .services-item {
    margin-bottom: 10px;
    max-height: 300px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .services-item span {
    font-size: 20px;
    font-weight: 700;
    max-width: 80%;
  }
  .service-item-box {
    height: 100%;
  }
  .clients-item {
    width: 100%;
    padding: 30px 15px; 
  }
  .commnets-wrap-arrows {
    position: relative;
    margin: 30px auto 0 auto;
  }
  .add-comments-wrap {
    margin-top: 10px;
  }
  #section-5 .button {
    margin: 0;
  }
  .title-section-7 {
    width: 70%;
    padding: 30px 20px;
    background: rgba(13,5,1, 0.8);
  }
  .title-section-7 h3 {
    font-size: 18px;
  }
  .how-work-item {
    width: 50%;
    box-sizing: border-box;
  }
  .how-work-item img {
    max-width: 100px;
    max-height: 100px;
  }
  .comments-item div {
    display: block;
  }
  .comment-header span {
    margin-left: 5px;
  }
  .commnet-name {
    font-size: 18px;
  }
  .comment-header span {
    font-size: 14px;
  }
  .comments-item p {
    font-size: 14px;
  }
  #section-5 p {
    font-size: 16px;
    padding-top: 15px;
  }
  .footer-elem {
    font-size: 13px;
  }
  .footer-elem .profi, .footer-elem .service {
    font-size: 14px;
  }
  .footer-elem .row {
    margin-top: 10px;
  }
  .form-control {
    font-size: 16px;
  }
  #section-4 .container {
    padding: 0;
  }
  #section-4 .title-section-n {
    padding: 30px 20px 20px 20px;
  }
  #form-lid .form-control-radio {
    margin-bottom: 20px;
  }
  .cubeStock:nth-child(3) {
    left: 70%;
    top: 45%;
  }
  .cube:nth-child(2) {
    left: 70%;
    top: 35%;
  }
  .cube:nth-child(6) {
    left: 20%;
    top: 50%;
  }
  #section-6 .row {
    flex-wrap: wrap;
  }
  .videoItem > video {
    margin: 0 auto;
    margin-top: 20px;
  }
  #section-6 .mapItem {
    width: calc(100% / 12 * 12 - 0px);
  }
  #section-6 .videoItem {
    width: calc(100% / 12 * 12 - 0px);
  }
  #section-6 iframe {
    height: 490px;
  }
  #section-7 {
    margin-top: 20px;
  }
  .feedback-button {
    right: 5px;
    font-size: 13px;
    padding: 8px 14px;
  }
  .feedback-button a {
    gap: 6px;
  }
  .feedback-button-text {
    padding: 6px 5px 6px 0;
  }
  .feedback-button-icon {
    width: 24px;
    height: 24px;
  }
}


.mouse {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  position: absolute;
  left: 48%;
  bottom: 20px;
  height: 36px;
  width: 18px;
  z-index: 100;
}

.mouse:before,
.mouse:after {
  animation: mouse-wheel 1.5s ease-in-out infinite;
  background: #fff;
  border-radius: 100px;
  content: "";
  height: 4px;
  width: 4px;
  opacity: 0;
  position: absolute;
  left: 7px;
  top: 16px;
}

.mouse:after {
  animation-delay: 0.75s;
}

@keyframes mouse-wheel {
  0% {
    transform: translateY(-11px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    transform: translateY(11px);
  }
}

#how-work .cubeStock {
  border-radius: 50%;
  opacity: 0.4;
}






/* Policy Baner */
#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;  
  background: #ffe5d4; 
  padding: 10px 5px 10px 5px; 
  text-align: center; 
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  z-index: 10000;
}

#consent-banner a {
  color: var(--color-orange);
  display: block;
  margin: 5px 0;
}

/* Policy Page */
.private-policy {
  min-height: 100vh;
  padding: 100px 10px 50px 10px;
  line-height: 1.2rem;
}

.private-policy h1 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
}

.private-policy h2 {
  margin-bottom: 5px;
  margin-left: 5px;
}

.private-policy a {
  display: inline;
  color: var(--color-orange);
}

.private-policy p {
  margin-top: 10px;
}
