@charset "utf-8";
/* CSS Document */

a {
    text-decoration: none !important;
    color: inherit;
}

a.navbar-brand img {
    max-width: 200px;
    height: auto;
    display: block;
}

.header-sticky {
  height: 104px !important;
  min-height: 104px !important;
  max-height: 104px !important;
}

/* Прибрати відступ зверху на мобільному */
@media (max-width: 991px) {
  .header-sticky {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 0 !important;
  }
  
  .navbar {
    padding: 12px 16px !important;
    align-items: center !important;
  }

  .navbar-brand {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Прибрати верхній відступ */
  .main-header {
    margin-top: 0 !important;
    top: 0 !important;
  }
}



.navbar-nav .nav-item, .navbar-nav .nav-item.active .nav-link, .u-header__section .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: #3797e4 !important;
}


/* SLIDER BUTTONS */
.hero-btn.wow.fadeInUp {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
    .hero-btn .btn-default.btn-highlighted {
        margin: 0px;
    }
}

.hero-btn .btn-default.btn-highlighted {
     margin-left: 0px;
}

.sliders-grid {
    margin-bottom: 40px;
}

/*/////////// FOOTER ///////////*/

.footer-logo img {
    width: 100%;
    max-width: 200px;
}

.how-it-work {
    padding: 100px 0 0px;
}

/*/////////// FOOTER END ///////////*/

/*/////////// ABOUT PAGE ///////////*/

button.aboutTabs:hover {
    color: #fff !important;
}

@media (max-width: 767px) {
    [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( [data-tabs-mobile-type="accordion"]) .nav-item > a, [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( [data-tabs-mobile-type="accordion"]) .nav-item > .nav-link, [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( [data-tabs-mobile-type="accordion"]) [class*="u-tab-link"]:not([class*="-icon"]) {
        padding: 12px 15px;
    }
}

/*/////////// ABOUT PAGE END ///////////*/



/*/////////// SERVICES PAGE ///////////*/

.servicesListRow {
	justify-content: center;
}


/*Ховаємо картки 5-12 на головній сторінці */
.our-services .row > .col-lg-3.ItemLayout:nth-child(n+5) {
  display: none;
}

/* Показуємо кнопку тільки на головній */
.our-services .services-view-all {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

/* Button */
.services-more-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #3797E4;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.services-more-btn:hover {
  background-color: #2a7bc4;
  color: white;
}

/*/////////// SERVICES PAGE END ///////////*/



/*/////////// SERVICES SINGLE PAGE ///////////*/

.services-steps-box {
    width: 100%;
}

.page-header::before {
    background: linear-gradient(360deg, rgb(0 0 0 / 50%) 54.39%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}


/* blockquote */
.paun-quote {
  background: #3797E4;
  background-repeat: no-repeat;
  background-position: 35px 30px;
  background-size: 58px;
  border-radius: 20px;
  padding: 30px 30px 30px 100px;
  margin-bottom: 30px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  font-style: normal;
}

/*/////////// COMPARIZON SLIDER ///////////*/
.image-comparison-slider {
  position: relative;
  width: 100%; /* min(80vw, 768px) */
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: -7px 5px 16px 1px rgba(56, 86, 122, 0.6);
  cursor: col-resize;
}

.image-comparison-slider > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.image-comparison-slider .img-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image-comparison-slider .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.image-comparison-slider .label {
  position: absolute;
  top: 1rem;
  z-index: 3;
  color: #fff;
  background-color: rgba(0,0,0,0.33);
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  user-select: none;
  opacity: 0;
  transition: 0.25s cubic-bezier(.68,.26,.58,1.22);
}
.image-comparison-slider:hover .label { opacity: 1; }
.image-comparison-slider .label-before { left: 1rem; }
.image-comparison-slider .label-after  { right: 1rem; background-color: #3797e4; }

.image-comparison-slider .handle {
  position: absolute;
  top: 0;
  left: calc(50% - 25px);
  width: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  user-select: none;
  z-index: 2;
}
.image-comparison-slider .handle-line {
  width: 2px;
  flex-grow: 1;
  background-color: #fff;
}
.image-comparison-slider .handle-circle {
  width: 50px;
  height: 50px;
  border: 3px solid #3797e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-shrink: 0;
  background: transparent;
}
/* IF I WANT TO ADD MORE THAN ONE SLIDER UNCOMMENT FOLLOWING CODE */
/*.sliders-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.image-comparison-slider {
    width: calc(50% - 0.5rem);
    /* два в ряд */
    /* решта стилів слайдера */ /*
}

@media (max-width: 768px) {
    .image-comparison-slider {
        width: 100%;
    }
}*/

   /*/////////// COMPARIZON SLIDER END ///////////*/
/*/////////// SERVICES SINGLE PAGE END ///////////*/

/*/////////// CONTACT PAGE ///////////*/

.contact-info-content a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    
    margin: 0;
    font-family: "Jost", sans-serif;
    line-height: 1.2em;
}


button#SubmitButton1_10001_Itm152,
button#SubmitButton1_10001_Itm314 {
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    border-radius: 10px;
    font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 18px 54px 18px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
    max-width: 50%;
}

button#SubmitButton1_10001_Itm152:hover,
button#SubmitButton1_10001_Itm314:hover {
    background: transparent;
    color: var(--white-color);
}

button#SubmitButton1_10001_Itm152:hover::before
button#SubmitButton1_10001_Itm314:hover::before {
    transform: translate(-17px, -50%);
}

button#SubmitButton1_10001_Itm152::before,
button#SubmitButton1_10001_Itm314::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(https://html.awaikenthemes.com/diyer/images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

button#SubmitButton1_10001_Itm152:hover:after,
button#SubmitButton1_10001_Itm314:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

button#SubmitButton1_10001_Itm152::after,
button#SubmitButton1_10001_Itm314::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

button#SubmitButton1_10001_Itm152::before,
button#SubmitButton1_10001_Itm314::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(https://html.awaikenthemes.com/diyer/images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 1180px) {
    button#SubmitButton1_10001_Itm152,
    button#SubmitButton1_10001_Itm314 {
        font-size: 14px;
        padding: 16px 54px 16px 20px;
    }
}


/* Знаходимо селектор з DevTools: */
.member-contect-form .contact-form .form-control,
select#Service_IC10001_Itm152.form-control {
  
  /* Прибираємо стандартну стрілку браузера */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  /* Додаємо кастомну стрілку через background */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  
  /* Відступ щоб текст не перекривав стрілку */
  padding-right: 40px !important;
}


/* form2 */
.member-contect-form .contact-form .form-control, select#Service_IC10001_Itm314.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px !important;
}

.form2Wrapper {
    justify-content: center;
}

/*/////////// CONTACT PAGE END ///////////*/



























































