.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.div_gorisontal_scroll {
  display: inline-flex;
}

.page_height {
  min-height: 660px;
}

/* ====================== LOADING ====================== */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #000;
	z-index: 9999999999999;
}
.loading .middle {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
}
.loading .middle .lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
}
.loading .middle .lds-ellipsis div {
	position: absolute;
	top: 27px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #00aab7;
	-webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading .middle .lds-ellipsis div:nth-child(1) {
	left: 6px;
	-webkit-animation: lds-ellipsis1 0.6s infinite;
	animation: lds-ellipsis1 0.6s infinite;
}
.loading .middle .lds-ellipsis div:nth-child(2) {
	left: 6px;
	-webkit-animation: lds-ellipsis2 0.6s infinite;
	animation: lds-ellipsis2 0.6s infinite;
}
.loading .middle .lds-ellipsis div:nth-child(3) {
	left: 26px;
	-webkit-animation: lds-ellipsis2 0.6s infinite;
	animation: lds-ellipsis2 0.6s infinite;
}
.loading .middle .lds-ellipsis div:nth-child(4) {
	left: 45px;
	-webkit-animation: lds-ellipsis3 0.6s infinite;
	animation: lds-ellipsis3 0.6s infinite;
}
.loading img{
  max-width:100%;
  animation: pulse 1.2s linear infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ====================== SCROLLBAR ====================== */
::-webkit-scrollbar{width: 6px; height: 6px;}
::-webkit-scrollbar-button{background-color: #afafafb3; width:0; height:0;}
::-webkit-scrollbar-track{background-color:transparent;}
::-webkit-scrollbar-track-piece{background: transparent;}
::-webkit-scrollbar-thumb{height: 50px; background-color: #afafafb3; border-radius: 3px;}
::-webkit-scrollbar-corner{background-color: #afafafb3;}
::-webkit-resizer{background-color: #afafafb3;}

.scrolling-wrapper::-webkit-scrollbar{height: 0;}


.fit-cover {
  object-fit: cover;
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bg-white-300 {
  background: rgba(255, 255, 255, 0.3) !important;
}

.rounded-bottom-left {
  border-radius: 0;
  border-bottom-left-radius: .25rem!important;
}

.rounded-bottom-right {
  border-radius: 0;
  border-bottom-right-radius: .25rem!important;
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.cat_gorisontal_scroll_width {
  width:140px;
  padding-right: 10px;
}

/* ---------------- MEDIA ---------------- */
@media (min-width: 360px) {
  .descr_line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 768px) {
  .descr_line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

@media (min-width: 360px) {
  .title_line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 768px) {
  .title_line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media (min-width: 300px) {
  .card_title {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .card_title {
    font-size: 16px;
  }
}

@media (min-width: 360px) {
  .descr_line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 768px) {
  .descr_line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media (min-width: 360px) {
  .card-height {
    height: 230px;
  }
}
@media (min-width: 768px) {
  .card-height {
    height: 330px;
  }
}

@media (min-width: 360px) {
  .bnr_height {
    height: 230px;
  }
}
@media (min-width: 768px) {
  .bnr_height {
    height: 330px;
  }
}

@media (min-width: 360px) {
  .category_scroll {
    height: 120px;
  }
}
@media (min-width: 768px) {
  .category_scroll {
    height: 230px;
  }
}

@media (min-width: 360px) {
  .services {
    height: 160px;
  }
}
@media (min-width: 768px) {
  .services {
    height: 280px;
  }
}

@media (min-width: 360px) {
  .portfolio {
    height: 160px;
  }
}
@media (min-width: 768px) {
  .portfolio {
    height: 280px;
  }
}

@media (min-width: 360px) {
  .direction {
    height: 150px;
  }
}
@media (min-width: 768px) {
  .direction {
    height: 420px;
  }
}

@media (min-width: 360px) {
  .card_descr {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .card_descr {
    font-size: 16px;
  }
}

@media (min-width: 360px) {
  .padding_mobile {
    padding-bottom: 55px;
  }
}
@media (min-width: 768px) {
  .padding_mobile {
    padding-bottom: 0;
  }
}


/* ------------- Button WhatsApp ----------- */
#zcwMiniButton {
  position: fixed;
  right: 15px;
  bottom: 70px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.8;
  z-index: 101;
  display: none;
}
@media (max-width: 750px) {
  #zcwMiniButton {
      display: block;
  }
}
#zcwMiniButton #zcwMiniButtonMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgb(107 128 94);
  width: 40px;
  height: 40px;
  -webkit-animation: zcwmini 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini 1.5s 0s ease-out infinite;
  animation: zcwmini 1.5s 0s ease-out infinite;
}
#zcwMiniButton #zcwMiniButtonMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/mini.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
  -webkit-animation: zcwphone 1.5s linear infinite;
  -moz-animation: zcwphone 1.5s linear infinite;
  animation: zcwphone 1.5s linear infinite;
}
#zcwMiniButton:hover {
  opacity: 1;
}
#zcwMiniButton:hover #zcwMiniButtonMain {
  -webkit-animation: zcwmini2 1s 0.4s ease-out infinite;
  -moz-animation: zcwmini2 1s 0.4s ease-out infinite;
  animation: zcwmini2 1s 0.4s ease-out infinite;
}
#zcwMiniButton:hover #zcwMiniButtonMain:before {
  -webkit-animation: zcwphone2 1s linear infinite;
  -moz-animation: zcwphone2 1s linear infinite;
  animation: zcwphone2 1s linear infinite;
}

@-webkit-keyframes zcwphone {
  0% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  25% {
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
  }

  50% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  75% {
      -ms-transform: rotate(-30deg);
      -webkit-transform: rotate(-30deg);
      transform: rotate(-30deg);
  }

  100% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
}
@-moz-keyframes zcwphone {
  0% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  25% {
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
  }

  50% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  75% {
      -ms-transform: rotate(-30deg);
      -webkit-transform: rotate(-30deg);
      transform: rotate(-30deg);
  }

  100% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
}
@keyframes zcwphone {
  0% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  25% {
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
  }

  50% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  75% {
      -ms-transform: rotate(-30deg);
      -webkit-transform: rotate(-30deg);
      transform: rotate(-30deg);
  }

  100% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
}
@-webkit-keyframes zcwphone2 {
  0% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  25% {
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
  }

  50% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  75% {
      -ms-transform: rotate(-30deg);
      -webkit-transform: rotate(-30deg);
      transform: rotate(-30deg);
  }

  100% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
}
@-moz-keyframes zcwphone2 {
  0% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  25% {
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
  }

  50% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  75% {
      -ms-transform: rotate(-30deg);
      -webkit-transform: rotate(-30deg);
      transform: rotate(-30deg);
  }

  100% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
}
@keyframes zcwphone2 {
  0% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  25% {
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
  }

  50% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  75% {
      -ms-transform: rotate(-30deg);
      -webkit-transform: rotate(-30deg);
      transform: rotate(-30deg);
  }

  100% {
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
}
@-webkit-keyframes zcwmini {
  0% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
      box-shadow: 0 0 8px 6px rgba(0, 0, 0, 1), 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 1);
  }

  100% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 30px rgba(0, 0, 0, 0), 0 0 0 30px rgba(207, 8, 8, 0);
  }
}
@-moz-keyframes zcwmini {
  0% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
      box-shadow: 0 0 8px 6px rgba(0, 0, 0, 1), 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 1);
  }

  100% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 30px rgba(0, 0, 0, 0), 0 0 0 30px rgba(207, 8, 8, 0);
  }
}
@keyframes zcwmini {
  0% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
      box-shadow: 0 0 8px 6px rgba(0, 0, 0, 1), 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 1);
  }

  100% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 30px rgba(0, 0, 0, 0), 0 0 0 30px rgba(207, 8, 8, 0);
  }
}
@-webkit-keyframes zcwmini2 {
  0% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
      box-shadow: 0 0 8px 6px rgba(0, 0, 0, 1), 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 1);
  }

  100% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 30px rgba(0, 0, 0, 0), 0 0 0 30px rgba(207, 8, 8, 0);
  }
}
@-moz-keyframes zcwmini2 {
  0% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
      box-shadow: 0 0 8px 6px rgba(0, 0, 0, 1), 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 1);
  }

  100% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 30px rgba(0, 0, 0, 0), 0 0 0 30px rgba(207, 8, 8, 0);
  }
}
@keyframes zcwmini2 {
  0% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
      box-shadow: 0 0 8px 6px rgba(0, 0, 0, 1), 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 1);
  }

  100% {
      box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 30px rgba(0, 0, 0, 0), 0 0 0 30px rgba(207, 8, 8, 0);
  }
}