

/* ==== INCLUDE COMPONENTS STYLE HERE ===== */

@import url('componentStyle/navbarTop.css');
@import url('componentStyle/button.css');
@import url('componentStyle/sectionStyle.css');
@import url('componentStyle/bannerMain.css');
@import url('componentStyle/home.css');
@import url('componentStyle/clientCarousel.css');
@import url('componentStyle/cardCarousel.css');
@import url('componentStyle/keyFeatures.css');
@import url('componentStyle/pricing.css');
@import url('componentStyle/faq.css');
@import url('componentStyle/bookDemo.css');
@import url('componentStyle/login.css');
@import url('componentStyle/footer.css');
@import url('componentStyle/termCondition.css');

:root {
  --main-bg: #fff;
  --primary-clr: #165E5B;
  --secondary-clr: #78E2A9;
  --text-main: #000;
  --text-secondary: #4B4A4A;
  --bg-light: #F1FFF8;
  --bg-light-back: #BCF1D5;
  --accordion-border: #165E5B33;
  --section-radius: 8px;
  --btn-radius: 5px;
  --btn-secondary: linear-gradient(to right, #23827E, #32a781, #4fb37d, #23827E);
  --btn-secondary-hover: linear-gradient(86deg, #5FD495 -45.12%, #23827E 121.96%);
}

@font-face {
  font-family: Segoe UI;
  font-weight: 400;
  src: url('../fonts/SegoeUI.woff') format('woff'),
    url('../fonts/SegoeUI.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: Segoe UI;
  font-weight: 600;
  src: url('../fonts/SegoeUISemibold.woff') format('woff'),
    url('../fonts/SegoeUISemibold.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: Segoe UI;
  font-weight: 700;
  src: url('../fonts/SegoeUIBold.woff') format('woff'),
    url('../fonts/SegoeUIBold.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: Segoe UI;
  src: url('../fonts/SegoeUIBlack.ttf') format('truetype');
  font-weight: 900;
}


body {
  padding: 0;
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: var(--main-bg);
  color: var(--text-secondary);
  line-height: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-main)
}

a {
  text-decoration: none;
  outline: none;
  text-shadow: none;
}

input.form-control:focus,
input.form-control:active,
input.form-check-input:focus,
input.form-check-input:active {
  box-shadow: none;
  outline: none;
}

.btn:focus,
.btn:active {
  box-shadow: none;
}

.ripple-button {
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

.ripple-button:focus {
  outline: none;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

section.main.homePage {
  background-image: url('../images/backgrounds/banner-topBg.png');
  background-repeat: no-repeat;
  background-position: top right;
}

section.utterAi {
  background-image: url('../images/backgrounds/ai-bg.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: inherit;
}

.Ratio_Modal .modal-content {
  background-color: var(--bg-light-back);
  position: relative;
}

.Ratio_Modal .modal-content .modal-body .modal-close {
  position: absolute;
  top: -17px;
  right: -17px;
  background-color: var(--primary-clr);
  width: 30px;
  height: 30px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
}

.Ratio_Modal .modal-content .modal-body .modal-close svg {
  width: 12px;
  height: 12px;
}

.Ratio_Modal .modal-content .modal-body .modal-close svg path {
  fill: white;
}

@media (max-width: 767px) {
  .Ratio_Modal .modal-content .modal-body .modal-close {
    top: -20px;
    right: -5px;
  }

  section.utterAi {
    background-image: none;
  }

}

