*{
    margin: 0;
    padding: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif !important;
    touch-action: pan-x pan-y;
     -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}



html{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;

  scroll-behavior: smooth; /* Enables smooth scrolling */
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    height: -webkit-fill-available;
}



:root{
    --peri-color: #6666FF;
    --sage-color: #A3C6AE;
    --orange-color: #FF9966;
    --body-font: "Outfit", sans-serif;
    --background-color: #FFFEFA;
    --black-color: #000;
    --border-radius: 10px;
    --border-color: #92B4E8;
}

body {
  font-size: 16px;
  font-weight: 300;
  color: var(--black-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  outline: 0;
  overflow-wrap: anywhere;
  font-family: var(--body-font);
    overscroll-behavior: none;         /* prevent pull-to-refresh / bounce */
  -webkit-overflow-scrolling: auto;  /* disable iOS momentum overscroll */

      overflow-x : hidden !important;
    touch-action: manipulation;
            -webkit-touch-callout: none;
            overscroll-behavior: none;
            min-height: 100vh;
    min-height: -webkit-fill-available;
}

.container {
  width: 100%;
  max-width: 1380px; /* You can adjust this value */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

@media(min-width: 1660px){
    .container {
        max-width: 1540px;
    }
    body{
        font-size: 18px;
    }
}


.peri-color{
    color: var(--peri-color)
}

.sage-color{
    color: var(--sage-color)
}

.orange-color{
    color: var(--orange-color)
}

.text-white{
    color: var(--background-color);
}


.border-peri{
    border-color: var(--peri-color) !important;
}

.border-sage{
    border-color: var(--sage-color) !important;
}

.border-orange{
    border-color: var(--orange-color) !important;
}




bold{
    font-weight: 500 !important;
}
h1, h2, h3, h4, h5{
   font-family: var(--body-font);
   font-weight: 400; 
   font-optical-sizing: auto;
  font-style: normal;
}

h6{
   font-family: var(--body-font);
    font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

p{
   font-family: var(--body-font);
    font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
}

@media(max-width:1200px){
    p{
        font-size: 16px !important;
    }
}

.lh-1{
    line-height: 1;
}

.bold{
    font-weight: 500; 
}

a {
text-decoration: none;
color: unset;
transition: all 0.5s ease-in-out;
cursor: pointer;
display: inline-block;
outline: none !important;
}
a:hover {
transition: all 0.3s;
}


ul, ol{
padding: 0;
margin: 0;
}

li{
list-style-type: none;
}


input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px #FFFEFA inset !important;
}

button, button:focus{
    outline: none;
    border: 0;
    box-shadow: none !important;
}

input, textarea{
    outline: none;
    box-shadow: none !important;
}

.btn{
    border-radius: var(--border-radius);
    padding: 10px 15px;
    color: var(--background-color) !important;
}

.btn-primary{
    background-color: var(--peri-color) !important;
    border-color: var(--peri-color) !important;
    background: var(--peri-color) !important;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover{
    background-color: var(--orange-color) !important;
    border-color: var(--orange-color) !important;
    background: var(--orange-color) !important;
}


.btn-secondary{
    background-color: var(--sage-color) !important;
    border-color: var(--sage-color) !important;
    background: var(--sage-color) !important;
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover{
    background-color: var(--orange-color) !important;
    border-color: var(--orange-color) !important;
    background: var(--orange-color) !important;
}


.btn-orange{
    background-color: var(--orange-color) !important;
    border-color: var(--orange-color) !important;
    background: var(--orange-color) !important;
}

.btn-orange:active,
.btn-orange:focus,
.btn-orange:hover{
    background-color: var(--peri-color) !important;
    border-color: var(--peri-color) !important;
    background: var(--peri-color) !important;
}

section {
  padding: 5vw 0; /* Top-bottom: 4% of viewport width; Left-right: 6% */
}


.bg-section{
     padding: 5vw 0; 
}

.display-1, .display-2{
     font-weight: 400 !important;
}

.display-4{
    font-weight: 300 !important;
}

.app-btns{
    padding: 15px 10px;
    border: 1px solid var(--orange-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
}

.app-btns img{
    height: 40px;
    /* height: 50px; */
}



.button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 20px 0;
}

.button-wrapper a {
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  flex: 1 1 auto;
  min-width: 150px;
}

.mx-580{
    max-width: 580px;
}

@media(max-width:992px){
      .col-lg-6 .mx-580{
        max-width: 100%
      }
    }

.bg-position-100{
    background-size: 100% 100% !important;
}

.fs-16{
    font-size: 16px;
}

.display-2 .logo-image {
    height: 1.5em;
    vertical-align: baseline;
    display: inline-block;
    margin-left: 0.25em;
    max-width: 100%;
    margin-bottom: -10px;
}

.modal .newsletter-form input {
    border: 1.5px solid var(--border-color) !important;
}

.modal-content{
    border: 2px solid var(--sage-color);
    padding: 50px 20px 30px !important;
}


@media(max-width:567px){
    .modal-content{
        padding: 50px 10px 30px !important;
    }
}

.modal .btn-close{
    background: transparent;
    width: 50px;
    height: 50px;
    float: right;
    margin-left: 0;
    text-align: end;
    color: var(--orange-color);
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    position: absolute;
    right: 5px;
    top: -5px;
}

.card{
    border: 1px solid var(--sage-color)
}

.card-header{
    background: var(--sage-color) !important;
    border-color: var(--sage-color) !important;
    color: var(--background-color);
}


input:focus{
    border-color: var(--peri-color) !important;
}

.modal-body{
    overflow: hidden;
}

@media(max-width:567px){
    .custom-displpay-2 {
        font-size: calc(1.575rem + 1.9vw) !important;
    }
}