/* custom fonts  starts */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
/* custom fonts ends */
:root {
  --primary-color: #48ecf3;
  --primary-dark: hsl(182, 88%, 6%);
  --primary-dark2: hsl(182, 88%, 38%);
  --primary-dark3: hsl(185, 72%, 55%);
  --primary-dark4: #17b3cc;
  --primary-dark5: #00bfc7;
  --primary-light1: #ecfeff;
  --primary-light2: #d3fdff;
  --primary-gradient1: linear-gradient(90deg, #034b56 0%, #007384 100%);
  --gray1: #c3c3c3;
  --gray2: #495155;
  --gray3: #b9c0ce;
  --gray4: #f4f6fa;
  --gray5: #808080;
  --gray6: #f7f7f7;
  --gray7: rgba(0, 0, 0, 0.2);
  --light1: #f9f9f9;
  --light2: #f4f4f4;
  --light3: #fafafa;
  --dark1: #475569;
  --dark2: #333;
  --white: #fff;
  --black: #000;
  --red-rgb: 179, 0, 0;
  --blue: #1e293b;
  --chatbot: #034B56;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  color: #000;
}
/* custom classes starts */
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}
.fs-25 {
  font-size: 25px;
}
.fs-30 {
  font-size: 30px;
}
.fs-36 {
  font-size: 36px;
}
.fs-42 {
  font-size: 42px;
}
.fs-xl {
  font-size: 48px;
}
.fs-xxl {
  font-size: 72px;
}
/* colors  */
.bg-primary-color {
  background-color: var(--primary-color);
}
.bg-primary-dark {
  background-color: var(--primary-dark);
}
.bg-primary-light {
  background-color: var(--primary-light1);
}
.bg-primary-dark4 {
  background-color: var(--primary-dark4);
}
.bg-primary-gradient1 {
  background: var(--primary-gradient1);
}
.bg-blue-color {
  background-color: var(--blue);
}
.bg-light1 {
  background-color: var(--light1);
}
.bg-light2 {
  background-color: var(--light2);
}
.bg-light3 {
  background-color: var(--light3);
}
.bg-gray4 {
  background-color: var(--gray4);
}
.bg-gray6 {
  background-color: var(--gray6);
}
.text-primary-color {
  color: var(--primary-color);
}
.text-primary-dark3 {
  color: var(--primary-dark3);
}
.text-primary-dark4 {
  color: var(--primary-dark4);
}
.text-dark1 {
  color: var(--dark1);
}
.text-gray5 {
  color: var(--gray5);
}
.text-light-gray {
  color: var(--gray3);
}
/* flex  */
.flex-grow-unset {
  flex-grow: unset;
}
/* borders  */
.border-left-primary-dark-5 {
  border-left: 5px solid var(--primary-dark4);
}
.border-primary-image{
  border: 10px solid transparent;
  border-image: url('https://storage.googleapis.com/content.ezadtv.com/2025/04/21/optimized_680676d0251bf_border-dashed-image.webp') 20 round;
}
.border-primary-2 {
  border: 2px solid var(--primary-color);
}
.border-primary-dark3 {
  border: 1px solid var(--primary-dark2);
}
.border-10-black {
  border: 10px solid var(--black);
}
.border-red {
  border: 1px solid rgb(var(--red-rgb));
}
.text-red {
  color: rgb(var(--red));
}
/* sizes  */

.w-370 {
  width: 370px;
}
.min-w-btn {
  min-width: 131px;
}
.min-h-btn {
  min-height: 36px;
}
.size-27 {
  width: 27px;
  height: 27px;
}
.size-50 {
  width: 50px;
  height: 50px;
}
/* others  */
.add-shadow {
  box-shadow: rgba(0, 0, 0, 0.075) 0px 2px 4px 0px;
}
.z-50 {
  z-index: 50;
}
.z-1000 {
  z-index: 1000;
}
.transition {
  transition: all 0.25s ease-in-out;
}
.pointer {
  cursor: pointer;
}
.btn-hove-filter-white:hover img,
.filter-white {
  filter: brightness(0) invert(1);
}
.filter-black {
  filter: brightness(0) saturate(100%);
}
.reveal {
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: all 1s ease;
}
.reveal.active {
  transform: translateX(0);
  opacity: 1;
}
.spinner-border {
  width: 22px;
  height: 22px;
}
.btn:not(:disabled) .spinner-border {
  display: none;
}
.login-banner-height {
  height: calc(100vh - 96px);
  min-height: 585px;
}
.lh-24 {
  line-height: 24px;
}
/* custom classes ends  */
/* btns  */
.btn {
  padding: 7px 21px;
  line-height: 1.1;
}
.custom-btn.btn-primary {
  --bs-btn-color: var(--black);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--black);
  --bs-btn-hover-bg: var(--white);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-active-color: var(--primary-color);
  --bs-btn-active-bg: var(--white);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}
.btn.bg-white,
.custom-btn.btn.btn-outline-dark,
.custom-btn.btn-primary {
  border-radius: 0.375rem !important;
}
.bink-btn,
.bink-btn:hover,
.bink-btn:focus-within {
  background-color: rgb(var(--red-rgb));
  color: var(--white);
}
.bink-btn:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(var(--red-rgb), 0.5);
}
.custom-btn.btn-primary img,
.custom-btn.btn-outline-dark img {
  filter: brightness(0) saturate(100%);
}
.custom-btn.btn-primary:hover img {
  filter: none;
}
.custom-btn.btn-outline-dark:hover img {
  filter: brightness(0) invert(1);
}
.btn.btn-outline-secondary:hover,
.btn-outline-secondary {
  color: var(--black);
}
.btn.btn-outline-secondary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
/* custom dropdown  */
.custom-dropdown .custom-dropdow-menu {
  width: max-content;
  max-width: 250px;
  opacity: 0;
  pointer-events: none;
  top: 40px;
}
.custom-dropdown.mega .custom-dropdow-menu {
  max-width: unset;
  min-width: 320px;
}
.custom-dropdown:hover .custom-dropdow-menu,
.custom-dropdown:focus-within .custom-dropdow-menu {
  opacity: 1;
  pointer-events: auto;
  top: 30px;
}
.custom-dropdown .custom-dropdow-menu .custom-dropdow-item {
  color: var(--black);
}
.custom-dropdow-menu .custom-dropdow-item:hover:not(.custom-dropdown-image) {
  color: var(--primary-color);
}
.custom-dropdow-menu .custom-dropdown-image:hover {
  background-color: var(--light1);
}
.custom-bootstrap-dropdown .dropdown-toggle.show::after,
.custom-dropdown:focus-within .custom-dropdown-btn img,
.custom-dropdown:hover .custom-dropdown-btn img {
  transform: rotate(-180deg);
}
/* customzing bootstrap dropdown  */
.dropdown.custom-bootstrap-dropdown .dropdown-menu {
  min-width: 270px;
}
.custom-bootstrap-dropdown .dropdown-item:focus,
.custom-bootstrap-dropdown .dropdown-item:hover {
  background-color: var(--primary-dark3);
  color: var(--white);
}
.custom-bootstrap-dropdown .dropdown-toggle::after {
  transition: all 0.3s ease-in-out;
}
.custom-accordion-menu .accordion-button::after {
  margin-left: unset;
  background-size: 15px;
  background-position: center;
}
.custom-accordion-menu .accordion-button:not(.collapsed) {
  background-color: var(--primary-dark);
}
/* forms  */
.form-select:focus,
.form-select:focus-visible {
  outline: 0;
  box-shadow: none;
}
.custom-forms .form-select:focus,
.custom-forms .form-control:focus {
  border-color: var(--primary-dark4);
}
.form-check .form-check-input:checked {
  background-color: var(--primary-dark4);
  border-color: var(--primary-dark4);
}
.custom-forms textarea.form-control {
  min-height: 115px;
  resize: none;
}
.custom-forms .field:not(.invalid) ~ .error-message {
  display: none;
}
/* custom navbar  */
#custom-header + main,
#custom-header + section {
  margin-top: 101px;
}
#custom-header .navbar-logo {
  width: 100px;
  max-height: 38px;
}
#custom-header .navbar-link::before {
  content: "";
  position: absolute;
  bottom: -3px;
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}
#custom-header .navbar-link:not(.custom-dropdown-btn):hover::before {
  width: 100%;
}
/* menu icon  */
.menu-icon {
  width: 30px;
}
.menu-icon span {
  height: 3px;
}
.menu-icon span:not(:last-child) {
  margin-bottom: 7px;
}
.menu-icon span:nth-child(1) {
  animation: ease 0.7s top-2 forwards;
}
.menu-icon span:nth-child(2) {
  animation: ease 0.7s scaled-2 forwards;
}
.menu-icon span:nth-child(3) {
  animation: ease 0.7s bottom-2 forwards;
}
.navbar-sm {
  width: 100%;
  height: calc(100vh - 64px);
  padding-bottom: 75px;
  top: 1000%;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
/* show menu  */
body.show-menu {
  overflow: hidden;
}
body.show-menu .navbar-sm {
  top: 64px;
}
body.show-menu .menu-icon span:nth-child(1) {
  animation: ease 0.7s top forwards;
}
body.show-menu .menu-icon span:nth-child(2) {
  animation: ease 0.7s scaled forwards;
}
body.show-menu .menu-icon span:nth-child(3) {
  animation: ease 0.7s bottom forwards;
}
/* video section  */
.video_wrapper .hero-absolute-image {
  bottom: -25px;
}
/* why choose us  */

.why-choose-us .nav-pills {
  border-bottom: 1px solid var(--gray1);
}
.why-choose-us .nav-pills .nav-link {
  color: var(--gray2);
}
.why-choose-us .nav-pills .nav-link.active {
  border-bottom: 4px solid var(--primary-dark2);
  color: var(--black);
  font-weight: 500;
}
.why-choose-us .nav-pills .nav-link img {
  width: 25px;
  height: 25px;
}
.why-choose-us .nav-pills .nav-link.active img {
  filter: brightness(0);
}
/* .logos slides  */
.logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
}
.logos::before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.logos::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}
.logos .logos-slide {
  display: inline-block;
  animation: slide 45s linear infinite;
  white-space: nowrap;
}
.logos .logos-slide img {
  margin: 0 30px;
  vertical-align: middle;
}
/* unque solutions*/
.unique-solutions .accordion {
  background-color: var(--light1);
  border-radius: 30px;
}
.unique-solutions .accordion .accordion-button {
  color: var(--gray2);
}
.unique-solutions .accordion .accordion-button::after {
  content: "";
  background-image: url("https://storage.googleapis.com/content.ezadtv.com/2024/10/03/66feeb64d2b53_arrow-down.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 19px;
  height: 18px;
}
.unique-solutions .accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--black);
  font-weight: 500;
}
.unique-solutions .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("https://storage.googleapis.com/content.ezadtv.com/2024/10/03/66feebb9b5668_arrow-up.webp");
  transform: rotate(360deg);
}
.unique-solutions .accordion .accordion-button:focus {
  box-shadow: none;
}
.unique-solutions.unique-solutions--light .accordion-button.collapsed {
  color: var(--dark2);
}
.unique-solutions.unique-solutions--light
  .accordion-item:has(.accordion-button:not(.collapsed)) {
  background-color: var(--primary-light1);
}
/* faqs  */
#faq {
  scroll-margin-top: 90px;
}
.faq .accordion .accordion-item:not(:first-of-type) {
  border-top: 1px solid #dee2e6;
}
.faq .accordion .accordion-button::after {
  content: "";
  background-image: url("https://storage.googleapis.com/content.ezadtv.com/2024/10/03/66feebf45a377_plus-icon.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 30px;
  height: 30px;
}
.faq .accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--black);
}
.faq .accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(135deg);
}
.faq .accordion .accordion-button:focus {
  box-shadow: none;
}
#faq .accordion-button .text-light-gray {
  color: var(--dark2);
}
/* footer  */
.hide-faq-link .footer-links-wrapper .faq-link {
  display: none;
}
.footer-links-wrapper .footer-link {
  text-decoration: none;
  text-underline-offset: 6px;
}
.footer-links-wrapper .footer-link:hover {
  text-decoration: underline;
}
.footer .footer-logo {
  width: 120px;
  height: 21px;
}
.footer .footer-last-row ul li:first-child {
  list-style-type: none;
}
/* chatbot css  */
.ai-chatbot-box {
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 999;
}
.ai-chatbot-cont .ai-chatbot-text {
  background-color: var(--chatbot);
  color: #fff;
  padding: 5px 8px;
}
.ai-chatbot-cont .ai-chatbot-text:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 25px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--chatbot) transparent transparent transparent;
}
.ai-chatbot-cont .ai-chatbot-btn {
  background-color: var(--chatbot);
  color: #fff;
  padding: 16px 18px 12px 18px;
  right: 0;
  top: 45px;
}
/* responsive  */
@media (max-width: 1600px) {
  .fs-xl {
    font-size: 44px;
  }
}
@media (max-width: 1200.98px) {
  .fs-xl {
    font-size: 37px;
  }
  .fs-42 {
    font-size: 32px;
  }
  .fs-30 {
    font-size: 25px;
  }
  .fs-25 {
    font-size: 20px;
  }
  .fs-20 {
    font-size: 16px;
  }
  .fs-xxl {
    font-size: 48px;
  }
}
@media screen and (max-width: 1200.98px) and (min-width: 991.98px) {
  #custom-header .navbar-logo {
    width: 65px;
  }
  #custom-header .fs-14 {
    font-size: 13px;
  }
}
@media (max-width: 767.98px) {
  .fs-xxl {
    font-size: 35px;
  }
  .fs-xl {
    font-size: 26px;
  }
  .fs-42 {
    font-size: 22px;
  }
  .fs-22 {
    font-size: 18px;
  }
  .fs-18 {
    font-size: 14px;
  }
  .w-370 {
    width: 50%;
  }
  .fs-16 {
    font-size: 14px;
  }
  .ez-ad-software--wrapper .ez-ad-software--logo {
    max-width: 330px;
    transform: translatey(178px) rotate(-23deg);
  }
  .ez-ad-software--wrapper .ez-ad-software--text {
    transform: translatey(90px);
  }
  .footer .footer-last-row ul li {
    list-style-type: none;
  }
}
@media (max-width: 575.98px) {
  .fs-36 {
    font-size: 25px;
  }
  .fs-30 {
    font-size: 20px;
  }
  .fs-25 {
    font-size: 16px;
  }
  .fs-20 {
    font-size: 15px;
  }
  .logos .logos-slide img {
    margin: 0 10px;
  }
  .unique-solutions .accordion .accordion-button,
  .unique-solutions .accordion .accordion-body {
    padding-left: 0;
    padding-right: 0;
  }
  .unique-solutions .accordion .accordion-button {
    font-size: 18px;
  }
  .ez-ad-software--wrapper .ez-ad-software--logo {
    max-width: 230px;
    transform: translatey(125px) rotate(-23deg);
  }
  .ez-ad-software--wrapper .ez-ad-software--text {
    transform: translatey(60px);
  }
  .dropdown.custom-bootstrap-dropdown .dropdown-menu {
    inset: 0 auto auto -10px !important;
    width: calc(100vw - 20px);
  }
  .size-50 {
    width: 35px;
    height: 35px;
  }
  .lh-24 {
    line-height: 28px;
  }
}
@media screen and (max-width: 400px) {
  .ez-ad-software--wrapper .ez-ad-software--logo {
    max-width: 190px;
    transform: translatey(105px) rotate(-23deg);
  }
  .footer .fs-18,
  .footer .fs-14 {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200.98px) {
  .unique-solutions.unique-solutions--light .right-column {
    max-height: 500px;
  }
}
@media screen and (min-width: 768px) {
  .easy-setup figure img {
    height: 282px;
  }
  .unique-solutions .accordion {
    min-height: 568px;
  }
  .thank-you {
    min-height: calc(100vh - 80px);
  }
}
@media screen and (min-width: 1500px) {
  .custom-container {
    max-width: 1320px;
  }
}
/* custom table  */
.custom-table table th {
  color: var(--black);
}
.table-min-w-sm {
  min-width: 550px;
}
.table-min-w-md {
  min-width: 680px;
}
.comparison-table {
  --bs-table-border-color: var(--gray7);
}
.comparison-table th {
  width: 33.33%;
}
.comparison-table thead th.primary,
.comparison-table tbody td.primary {
  border-width: 2px;
  border-color: var(--primary-dark5);
}
.comparison-table thead th.primary {
  background-color: var(--primary-color);
  border-top-width: 0;
}
.comparison-table thead th.primary::after {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  width: calc(100% + 4px);
  height: 35px;
  top: -20px;
  left: -2px;
  border: 2px solid var(--primary-dark5);
  border-bottom: unset;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.comparison-table tbody td.primary {
  background-color: var(--primary-light2);
}
/* custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  height: 7px;
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--primary-color);
  background: var(--primary-light1);
  border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--primary-dark3);
  border-radius: 10px;
}
/* custom alerts  */
.custom-alerts {
  max-width: 400px;
  right: -200%;
}
.custom-alerts.show {
  right: 0;
}
/* hardware stores page  */
.top-hardware-stores ~ footer {
  margin-top: auto;
}
.top-hardware-stores .card--hardware-stores:not(:last-child) {
  border-bottom: 1px solid var(--gray4);
}
/* animations  */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }

  50% {
    top: 25px;
    transform: rotate(0);
  }

  100% {
    top: 8px;
    transform: rotate(45deg);
  }
}
@keyframes top-2 {
  0% {
    top: 22px;
    transform: rotate(45deg);
  }

  50% {
    top: 22px;
    transform: rotate(0deg);
  }

  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }

  50% {
    bottom: 22px;
    transform: rotate(0);
  }

  100% {
    bottom: 12px;
    transform: rotate(135deg);
  }
}
@keyframes bottom-2 {
  0% {
    bottom: 22px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 22px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}
.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
.w-form-done.show, .w-form-fail.show {
  display: block;
}
/* cookies tab  */
.cookies-tabs .nav-pills .nav-link {
  background-color: #f2f2f2;
}
.cookies-tabs .nav-pills .nav-link.active {
  background-color: var(--primary-light2);
}
