@font-face {
    font-family: 'Urbanist';
    src: url("../fonts/Urbanist/static/Urbanist-Regular.ttf") format('truetype');
    font-weight: normal;
  }
  
  @font-face {
    font-family: 'Urbanist';
    src: url("../fonts/Urbanist/static/Urbanist-Medium.ttf") format('truetype');
    font-weight: 500; /* Medium */
  }
  
  @font-face {
    font-family: 'Urbanist';
    src: url("../fonts/Urbanist/static/Urbanist-SemiBold.ttf") format('truetype');
    font-weight: 600; /* Semi-Bold */
  }
  
  @font-face {
    font-family: 'Urbanist';
    src: url("../fonts/Urbanist/static/Urbanist-Bold.ttf") format('truetype');
    font-weight: bold;
  }
  
  @font-face {
    font-family: 'Urbanist';
    src: url("../fonts/Urbanist/static/Urbanist-ExtraBold.ttf") format('truetype');
    font-weight: 800; /* Extra-Bold */
  }
  
  @font-face {
    font-family: 'Urbanist';
    src: url("../fonts/Urbanist/static/Urbanist-Black.ttf") format('truetype');
    font-weight: 900; /* Black */
  }
  

body {
    margin: 0;
    font-family: 'Urbanist', Arial, sans-serif;
    width: 100%;
    overflow-x: hidden;
}
*{
  font-family: 'Urbanist', Arial, sans-serif;
}
button{
    font-family: 'Urbanist', Arial, sans-serif;
}


header{
    box-shadow: inset -1px -4px 11px 0px #0000001a;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch-sm {
    width: 50px;
    height: 24px;
}
.switch-sm .slider:before {
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    border-radius: 9999px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  border-radius: 0px 10px 0px 0px;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #22c55e;
}

input:focus + .slider {
  box-shadow: 0 0 1px #22c55e;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.switch-sm input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.transition-width {
    transition: width 0.3s ease;
}








.image-comparison {
    margin-right: auto;
    margin-left: auto;
}

.image-comparison__slider-wrapper {
    position: relative;
}

.image-comparison__label {
    font-size: 0;
    line-height: 0;
}

.image-comparison__label,
.image-comparison__range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    appearance: none;
    outline: none;
    cursor: ew-resize;
    z-index: 20;
}

.image-comparison__range:hover ~ .image-comparison__slider .image-comparison__thumb {
    transform: scale(1.2);
}

.image-comparison__range:active ~ .image-comparison__slider .image-comparison__thumb,
.image-comparison__range:focus ~ .image-comparison__slider .image-comparison__thumb,
.image-comparison__range--active ~ .image-comparison__slider .image-comparison__thumb {
    
    background-color: rgba(0, 97, 127, 0.5);
}

.image-comparison__image-wrapper--overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% + 1px);
    height: 100%;
    overflow: hidden;
}

.image-comparison__figure {
    margin: 0;
    height: 200px;
}

.image-comparison__figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
}

.image-comparison__figure:not(.image-comparison__figure--overlay) {
    position: relative;
    padding-top: 66.666666667%;
}

.image-comparison__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 50%;
    overflow: hidden;
}

.image-comparison__figure--overlay .image-comparison__image {
    z-index: 1;
}

.image-comparison__caption {
    position: absolute;
    top: 12px;
    min-width: max-content;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

@media screen and (max-width: 40.063em) {
    .image-comparison__caption {
        font-size: 12px;
    }
}

.image-comparison__caption--before {
    left: 12px;
    z-index: 2;
}

.image-comparison__caption--after {
    right: 12px;
    text-align: right;
}

.image-comparison__caption-body {
    max-width: 40vmin;
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.55);
}

.image-comparison__slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background-color: #fff;
    transition: background-color 0.3s ease-in-out;
    z-index: 10;
}

.image-comparison__range--active ~ .image-comparison__slider {
    background-color: rgb(255, 255, 255);
}

.image-comparison__thumb {
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0ec44b;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.5);
    transform-origin: center;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.image-comparison__range::-webkit-slider-runnable-track {
    width: 40px;
    height: 40px;
    opacity: 0;
}

.image-comparison__range::-moz-range-thumb {
    width: 40px;
    height: 40px;
    opacity: 0;
}

.image-comparison__range::-webkit-slider-thumb {
    width: 40px;
    height: 40px;
    opacity: 0;
}

.image-comparison__range::-ms-fill-lower {
    background-color: transparent;
}

.image-comparison__range::-ms-track {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    color: transparent;
    outline: none;
    cursor: col-resize;
}

.image-comparison__range::-ms-thumb {
    width: 0.5%;
    height: 100%;
    opacity: 0;
}

.image-comparison__range::-ms-tooltip {
    display: none;
}


@keyframes bounceIn {
    0% {
      transform: translateY(0);
    }
    25% {
      transform: translateY(-15px);
    }
    50% {
      transform: translateY(0);
    }
  }
  
  .animate-bouncer {
    animation: bounceIn 1s ease;
  }
  


  .accordion-header {
    cursor: pointer;
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }




.preview-container {
    position: relative;
    width: 90%; /* Adjust as needed */
    height: 150px; /* Adjust as needed */
    border: 2px solid #ccc;
    margin:0 auto;
    margin-top: 5px;
    background:url('../img/watermark-preview-back.webp');
    background-position: center;
    background-size: cover;
}
.preview-image {
    position: absolute;
    transition: all 0.3s ease;
    margin:5px;

}
.top-left { top: 0; left: 0; }
.top-center { top: 0; left: 50%; transform: translateX(-50%); }
.top-right { top: 0; right: 0; }
.middle-left { top: 50%; left: 0; transform: translateY(-50%); }
.middle-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.middle-right { top: 50%; right: 0; transform: translateY(-50%); }
.bottom-left { bottom: 0; left: 0; }
.bottom-center { bottom: 0; left: 50%; transform: translateX(-50%); }
.bottom-right { bottom: 0; right: 0; }