@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --prime: #ED521C;
  --sec: #FFD706;
  --text: #2E2E2E;
  --lgr-prime: linear-gradient(to right, #ED521C, #FFD706);
  scroll-behavior: smooth;
  --base-size: clamp(0.9rem, calc(0.6rem + 0.5vw), 1.1rem);
  font-size: var(--base-font);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.63;
}
html {
  scroll-padding-top: 100px;
}

:where(*:not(.bg-prime *, .hero *, .fancybox-container *)) {
  color: var(--text);
}

.bg-prime {
  background: var(--prime);
  color: #fff;
}

.bg-prime * {
  color: #fff;
}

.hover-text-prime:hover,
.text-prime {
  color: var(--prime) !important;
}


a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
}

.readmore {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .2s ease-in-out;
}

article:hover .readmore {
  gap: 24px;
  transition: all .2s ease-in-out;
}

.blog-excerpt{
  opacity: .8;
}

.pagination {
  gap: 8px;
}

.pagination .page-numbers {
  background: var(--prime);
  border-radius: 4px;
  padding: 6px 16px;
  color: #fff;
  line-height: 1;
  transition: all .3s ease-in-out;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--sec);
  border-radius: 16px;
  transition: all .3s ease-in-out;
}

.card-image:not(.big) img{
  height: 100px !important;
  width: 100px !important;
  overflow: hidden;
}


.card {
    transition: transform 0.3s ease;
}

.card .card-image .icon {
    transition: all 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.card:hover .card-image .icon {
    transform: rotate(360deg);
    transition: transform 0.3s ease;
}


.btn-white,
.btn-prime {
  background: var(--lgr-prime);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all.3s ease-in-out;
}

.btn-white {
  background: #fff;
  color: var(--prime);
  transition: all.3s ease-in-out;
}

.custom-timepicker-box {
    width: 220px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
}

.custom-timepicker-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.custom-timepicker-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.custom-timepicker-controls input {
    width: 50px;
    font-size: 16px;
    text-align: center;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.colon {
    font-size: 24px;
    padding: 0 4px;
}

.ampm-toggle {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.ampm-toggle button {
    padding: 4px 8px;
    margin: 2px 0;
    font-size: 12px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.ampm-toggle button.active {
    background: var(--prime);
    color: #fff;
}

.time-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.clear-btn,
.ok-btn {
    background: transparent;
    border: none;
    color: var(--prime);
    cursor: pointer;
    font-weight: bold;
    padding: 4px 8px;
}

/* Dialog Modal */
dialog {
  padding: 2rem;
  margin: auto;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.sidebar-categories ul li {
  list-style-type: none;
}

.sidebar-categories ul li {
  list-style-type: none;
}
.container form .intl-tel-input{
	display:block !important;
}

.ontop{
	position:relative;
	z-index:99;
}
/* Animations - Effective if user has no preferance for reduced motion */

@media (prefers-reduced-motion: no-preference) {
  .animate-this.up {
    opacity: 0;
  }

  .animate-this.up.animated {
    animation: elastic-up 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  }

  @keyframes elastic-up {
    0% {
      opacity: 0;
      transform: translateY(60px);
    }

    50% {
      opacity: .7;
      transform: translateY(-10px);
    }

    70% {
      transform: translateY(5px);
      opacity: 1;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .animate-this.swipe {
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .animate-this.swipe.animated {
    opacity: 1;
    animation: text-slice-animation 1.2s ease-in-out forwards;
  }

  @keyframes text-slice-animation {
    0% {
      clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    100% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  }

  .animate-this.spin {
    transform: rotate(0deg);
    transition: transform 1s ease-in-out;
  }

  .animate-this.spin.animated {
    transform: rotate(90deg);
    transition: transform 1s ease-in-out;
  }
}

@media(width < 476px){
		.mailbox img{
			width:30px !important;
		}
		
		.mailbox{
			font-size:15px !important;
			width:100%;
		}

	}