

html {
	--tapp-theme-primary: #F7F7F7;
	--tapp-theme-secondary: #393E46;
	--tapp-theme-tertiary: #000000;
	--tapp-theme-quaternary: #EEEEEE;
	--tapp-theme-quinary: #525A88;
	--tapp-theme-font: Poppins;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 100%;
	width: 100%;
}

 html {
    height: 100%;
    min-height: 100%;
     scroll-behavior: smooth;
     scroll-padding-top: 10px
 }

 body {
     font-weight: 400;
     overflow-x: hidden;
     position: relative;
     font-family: 'Atami', sans-serif
 }


button {
	font-family: var(--tapp-theme-font);
}

.tapp-site-root {
	width: 100%;
	height: 100%;
}

.tapp-section {
	position: relative;
	width: 100%;
	padding: 48px;
}

.tapp-section-background {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0.5;
	transition: background-image 150ms ease-out;
}

.tapp-module-root {
	position: relative;
	width: 100%;
}

.tapp-module-horizontal {
	position: relative;
	width: 100%;
	display: flex;
	gap: 16px;
}

.tapp-module-vertical {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tapp-module-vertical>*+* {
	margin-top: 4px;
}

.tapp-block-image-wrapper {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	overflow: hidden;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.tapp-block-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

.tapp-block-spacer {
	width: 100%;
	height: 100%;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.tapp-block-text {
	width: 100%;
	padding: 0px;
}

.tapp-block-text-leaf {
	font-family: inherit;
	color: inherit;
}

.tapp-block-text-blockquote {
	text-align: inherit;
}

.tapp-block-text-ul {
	text-align: inherit;
	list-style-position: inside;
}

.tapp-block-text-li {
	text-align: inherit;
}

.tapp-block-text-ol {
	text-align: inherit;
	list-style-position: inside;
}

.tapp-block-text-h1 {
	text-align: inherit;
	font-family: inherit;
	color: inherit;
	font-size: 4rem;
	line-height: 4.5rem;
	font-weight: 400;
}

.tapp-block-text-h2 {
	text-align: inherit;
	font-family: inherit;
	color: inherit;
	font-size: 2.75rem;
	line-height: 3.25rem;
	font-weight: 400;
}

.tapp-block-text-h3 {
	text-align: inherit;
	font-family: inherit;
	color: inherit;
	font-size: 1.5rem;
	line-height: 1.75rem;
	font-weight: 400;
}

.tapp-block-text-h6 {
	text-align: inherit;
	font-family: inherit;
	color: inherit;
	font-size: 0.75rem;
	font-weight: 400;
}

.tapp-block-text-p {
	text-align: inherit;
	font-family: inherit;
	color: inherit;
	font-size: 1rem;
	font-weight: 400;
}

.tapp-block-button-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
}

.tapp-block-button {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	background-color: var(--tapp-section-text, #000);
	color: var(--tapp-section-background, #fff);
	transition: background-color 150ms linear, color 150ms linear,
		opacity 150ms linear;
}

.tapp-block-form {
	width: 100%;
}

.tapp-block-form-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tapp-block-form-row {
	width: 100%;
	display: flex;
	gap: 12px;
}

.tapp-block-form-standard {
	width: 100%;
	height: 48px;
}

.tapp-block-form-long {
	width: 100%;
	height: fit-content;
}

.tapp-block-form-area {
	width: 100%;
	resize: none;
	overflow: hidden;
	min-height: 100px;
	background-color: transparent;
	border: 1px solid;
	color: var(--secondary);
	border-color: var(--secondary);
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
	outline: none;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 400;
	opacity: 0.75;
	transition: all 0.3s;
	font-family: var(--tapp-theme-font);
	font-size: 14px;
}

.tapp-block-form-area:focus {
	border-color: #4BA5F8;
	box-shadow: inset 0 0 3px #4BA5F8;
	opacity: 1;
}

.tapp-block-form-area::placeholder {
	color: var(--secondary);
	opacity: 0.75;
}

.tapp-block-form-input {
	width: 100%;
	height: 100%;
	background-color: transparent;
	border: 1px solid;
	color: var(--secondary);
	border-color: var(--secondary);
	padding-left: 15px;
	padding-right: 15px;
	outline: none;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 400;
	opacity: 0.75;
	transition: all 0.3s;
	font-family: var(--tapp-theme-font);
	font-size: 14px;
}

.tapp-block-form-input:focus {
	border-color: #4BA5F8;
	box-shadow: inset 0 0 3px #4BA5F8;
	opacity: 1;
}

.tapp-block-form-input::placeholder {
	color: var(--secondary);
	opacity: 0.75;
}

.tapp-block-form-button {
	width: fit-content;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	background-color: var(--tapp-section-text, #000);
	color: var(--tapp-section-background, #fff);
	transition: background-color 150ms linear, color 150ms linear,
		opacity 150ms linear;
}

.tapp-block-icon-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
}

.tapp-block-icon {
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--tapp-section-text, #000);
}

.tapp-site-navbar {
	width: 100%;
	min-height: 54px;
	padding: 12px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--tapp-theme-primary);
	color: var(--tapp-theme-secondary);
	font-family: var(--tapp-theme-font);
}

.tapp-site-navbar-container {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tapp-site-navbar-title {
	font-size: 18px;
	font-weight: 600;
}

.tapp-site-navbar-pages {
	display: flex;
	gap: 24px;
	align-items: center;
}

.tapp-site-navbar-pages-button-active {
	text-decoration: none;
	color: var(--tapp-theme-secondary);
	font-size: 16px;
}

.tapp-site-navbar-pages-button {
	text-decoration: none;
	color: var(--tapp-theme-secondary);
	font-size: 14px;
}

#snackbar {
	visibility: hidden;
	min-width: 250px;
	border-radius: 4px;
	background-color: #40A851;
	color: #fff;
	text-align: left;
	padding: 16px 24px;
	position: fixed;
	z-index: 99;
	left: 16px;
	bottom: 16px;
	font-size: 16px;
	font-family: var(--tapp-theme-font, "Inter");
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
	from {
		left: 0;
		opacity: 0;
	}

	to {
		left: 16px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		left: 0;
		opacity: 0;
	}

	to {
		left: 16px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		left: 16px;
		opacity: 1;
	}

	to {
		left: 0;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		left: 16px;
		opacity: 1;
	}

	to {
		left: 0;
		opacity: 0;
	}
}

@media only screen and (max-width: 600px) {
	.tapp-module-horizontal {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
}

@media only screen and (max-width: 600px) {
  /* Adjustments for smaller screens */
  .tapp-section {
    padding: 24px; /* Reduce padding */
  }

  .tapp-site-navbar {
    padding: 8px 16px; /* Reduce padding */
  }

  .tapp-site-navbar-title {
    font-size: 16px; /* Smaller font size */
  }

  .tapp-site-navbar-pages {
    gap: 12px; /* Reduce gap between navigation links */
  }

  .tapp-site-navbar-pages-button {
    font-size: 12px; /* Smaller font size */
  }

  /* Hide background image in smaller screens */
  .tapp-section-background {
    display: none;
  }

  /* Adjustments for smaller screens in horizontal modules */
  .tapp-module-horizontal {
    flex-direction: column;
    gap: 12px;
  }
/*.icon-bar {*/
/*  position: fixed;*/
/*  top: 50%;*/
/*  -webkit-transform: translateY(-50%);*/
/*  -ms-transform: translateY(-50%);*/
/*  transform: translateY(-50%);*/
/* CSS for WhatsApp and Facebook Icon Bar */
/* CSS for WhatsApp and Facebook Icon Bar */
/* CSS for WhatsApp and Facebook Icon Bar */
/*.icon-bar {*/
/*    position: fixed;*/
/*    bottom: 20px;*/
/*    right: 20px;*/
/*    z-index: 1000;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*.icon-bar a {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    margin: 5px 0;*/
/*    background-color: rgba(255, 255, 255, 0.6);*/
/*    border-radius: 50%;*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*    transition: background-color 0.3s, transform 0.3s;*/
/*}*/

/*.icon-bar a.whatsapp i {*/
/*    font-size: 60px;*/
    color: #25D366; /* WhatsApp green color */
/*}*/

/*.icon-bar a.facebook i {*/
/*    font-size: 30px;*/
    color: #3b5998; /* Facebook blue color */
/*}*/

/*.icon-bar a:hover {*/
/*    background-color: rgba(255, 255, 255, 0.8);*/
/*    transform: scale(1.1);*/
/*}*/

/* Adjustments for smaller screens */
/*@media (max-width: 768px) {*/
/*    .icon-bar a {*/
/*        width: 50px;*/
/*        height: 50px;*/
/*    }*/
/*    .icon-bar a i {*/
/*        font-size: 24px;*/
/*    }*/
/*}*/

/* Further adjustments for very small screens */
/*@media (max-width: 480px) {*/
/*    .icon-bar {*/
/*        bottom: 10px;*/
/*        right: 10px;*/
/*    }*/
/*    .icon-bar a {*/
/*        width: 40px;*/
/*        height: 40px;*/
/*    }*/
/*    .icon-bar a i {*/
/*        font-size: 20px;*/
/*    }*/
/*}*/


