@import "tailwindcss";
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --background: #ffffff;
  --foreground: #171717;
  --primary-color: #26A17C;
  --secondary-color: #5648D8;
  --trisory-color: #BB0066;
  --bg-color: #E2EBE4;
  --bg-grey-color:#E7E7E7;
  --bright-cryon-color: #3FB2CB;
  --dark-navy-color: #313941;
  
}

inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  
  /* Custom brand colors */
  --color-primary: var(--primary-color);
  --color-secondary: var(--secondary-color);
  --color-tertiary: var(--trisory-color);
  --color-bg: var(--bg-color);
  --color-bg-grey: var(--bg-grey-color);
  --color-cryon: var(--bright-cryon-color);
  --color-navy: var(--dark-navy-color);

}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #ffffff;
    --foreground: #171717;
  }
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-outfit);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

h1 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
}

h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
}

h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}

h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

h5 {
  font-size: 21px;
  line-height: 27px;
  font-weight: 600;
}

h6 {
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
}

p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.subtitle {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
}

.faq h3 {
  font-size: 21px;
  line-height: 27px;
  font-weight: 600;
}

/* Table Start */
.table-wrapper {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  overflow-x: auto;
}

.table-global {
  width: 100%;
  border: 1px solid var(--color-background); /* FULL OUTER BORDER = WHITE */
}

.table-global thead {
  background: var(--color-bg-grey);
}

.table-global th {
  padding: 20px;
  text-align: left;
  color: var(--color-foreground);
  border-right: 1px solid var(--color-background);
}

.table-global th:last-child, .table-global td:last-child {
  border-right: none;
}

.table-global td {
  padding: 20px;
  border-right: 1px solid var(--color-bg-grey);
  background: var(--color-background);
}

.table-global tbody tr {
  border-bottom: 1px solid var(--color-bg-grey);
}

.table-global tbody tr:last-child {
  border-bottom: none;
}

/* Table End */

/* Button Style Start */
.cus-btn {
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
  border-radius: 50px;
  padding: 12px 20px;
}

.cus-btn-style1 {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.cus-btn-style1:hover {
  background-color:transparent;
  color: var(--primary-color);
}

.cus-btn-style2 {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid #fff;
}

.cus-btn-style2:hover {
  background-color:transparent;
  color: #fff;
}

.cus-btn-style3 {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.cus-btn-style3:hover {
  background-color:transparent;
  color: #fff;
  border-color: #fff;
}
/* Button Style End */

.cornerimage {
     width: 100%;
    bottom: -30px;
    left: 0px;
} 

.icon-white {
  filter: brightness(0) invert(1);
}

.swiper-button-prev, .swiper-button-next {
  color:var(--primary-color)!important;
}
.swiper-pagination-bullet-active {
 
  background: var(--primary-color, var(--primary-color))!important;
}

.custom-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c4c4c4;
  opacity: 1;
  margin: 0 5px;
}
.custom-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color); /* indigo-600 */
}
/* sm breakpoint (≥640px) */
   @media (max-width: 480px) { 


@layer base {
  section > div:first-of-type {
    @apply p-10; /* change to p-8 p-6 etc. */
  }
}

 h1 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
}

h2 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}

h3 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

h4 {
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
}

h5 {
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
}

h6 {
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
}


.subtitle {
        font-size: 17px;
        font-weight: 400;
        line-height: 20px;
}

.faq h3 {
  font-size: 21px;
  line-height: 27px;
  font-weight: 600;
}

}

