*,
::after,
::before {
	box-sizing: border-box;
}
html, body {
  height: 100%; /* Ensure the body takes the full viewport height */
  margin: 0;    /* Remove default margins */
  padding: 0;   /* Remove default padding */
}

body {
  background-color:white;
  background-repeat: no-repeat;
  background-size: cover; /* Ensure the background image covers the viewport */
  background-position: center center; /* Center the image */
  color: #333; /* Text color */
  font-size: 1rem; /* Use relative units for font size */
  font-family: 'Oswald', sans-serif;
  align-items: center;
}
h2 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 100%;
	/* text-transform: uppercase; */
	text-align: center;
	
}
button {
	border-radius: 0;
}
button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}
button {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
button {
	overflow: visible;
}
button {
	/* text-transform: none; */
}
[type="button"],
button {
	-webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
button::-moz-focus-inner {
	padding: 0;
	border-style: none;
}
h2 {
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}
h2 {
	font-size: 2rem;
}
/* Base Container Styling */
.container {
    width: 100%;
    padding-right: 7px; /* Default padding */
    padding-left: 7px;  /* Default padding */
    margin-right: auto;
    margin-left: auto;
}

/* Media Queries for Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px; /* Max width for small devices */
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px; /* Max width for medium devices */
        padding-right: 30px; /* Increased padding for medium devices */
        padding-left: 30px;  /* Increased padding for medium devices */
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 960px; /* Max width for large devices */
        padding-right: 40px; /* Increased padding for large devices */
        padding-left: 40px;  /* Increased padding for large devices */
    }
}

/* Extra Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px; /* Max width for extra large devices */
        padding-right: 50px; /* Increased padding for extra large devices */
        padding-left: 50px;  /* Increased padding for extra large devices */
    }
}

.btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.35rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.btn {
		transition: none;
	}
}
.btn:hover {
	color: #212529;
	text-decoration: none;
}
.btn:focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn:disabled {
	opacity: 0.65;
}
.btn-primary {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}
.btn-primary:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
}
.btn-primary:focus {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
	box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary:disabled {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}
.btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}
.btn-secondary:hover {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
}
.btn-secondary:focus {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary:disabled {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}
.btn-info {
	color: #fff;
	background-color: darkred;
	border-color: darkred;
}
.btn-info:hover {
	color: #fff;
	background-color: darkred;
	border-color: darkred;
}
.btn-info:focus {
	color: #fff;
	background-color: rgb(219, 18, 18);
	border-color: darkred;
	box-shadow: 0 0 0 0.2rem rgba(124, 25, 25, 0.5);
}
.btn-info:disabled {
	color: #fff;
	background-color: darkred;
	border-color: darkred;
}
.btn-sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0.2rem;
}
.btn-group {
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	vertical-align: middle;
}
.btn-group > .btn {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.btn-group > .btn:hover {
	z-index: 1;
}
.btn-group > .btn:active,
.btn-group > .btn:focus {
	z-index: 1;
}
.btn-group > .btn:not(:first-child) {
	margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.bg-light {
	background-color: #f8f9fa !important;
}
.overflow-hidden {
	overflow: hidden !important;
}
.mb-2 {
	margin-bottom: 0.5rem !important;
}
.mt-3 {
	margin-top: 1rem !important;
}
/* Base style for .mb-3 */
.mb-3 {
	margin-bottom: 1rem; /* Default margin for larger devices */
  }
  
  /* Media Query for Mobile Devices */
  @media (max-width: 768px) {
	.mb-3 {
	  margin-bottom: 5rem; /* Larger margin for mobile devices */
	}
  }
  
.pt-3 {
	padding-top: 1rem !important;
}
.pb-3 {
	padding-bottom: 1rem !important;
}
.text-center {
	text-align: center !important;
}
@media print {
	*,
	::after,
	::before {
		text-shadow: none !important;
		box-shadow: none !important;
	}
	h2 {
		orphans: 3;
		widows: 3;
	}
	h2 {
		page-break-after: avoid;
	}
	.container {
		min-width: 992px !important;
	}
}
.demo-block {
	border-top: solid 1px #dcdcdc;
	border-bottom: solid 1px #dcdcdc;
}
.flip-book {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
	margin: 0 auto;
	display: none;
}
.page {
	padding: 20px;
	background-color: #fdfaf7;
	color: #785e3a;
	border: solid 1px #c2b5a3;
	overflow: hidden;
}
.page .page-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
}
.page .page-content .page-header {
	height: 30px;
	font-size: 100%;
	/* text-transform: uppercase; */
	text-align: center;
}
.page .page-content .page-image {
	height: 90%;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.page .page-content .page-text {
	height: 100%;
	flex-grow: 1;
	font-size: 80%;
	text-align: justify;
	margin-top: 10px;
	padding-top: 10px;
	box-sizing: border-box;
	border-top: solid 1px #f4e8d7;
}
.page .page-content .page-footer {
	height: 30px;
	border-top: solid 1px #f4e8d7;
	font-size: 80%;
	color: #998466;
}
.page.--left {
	border-right: 0;
	box-shadow: inset -7px 0 30px -7px rgba(0, 0, 0, 0.4);
}
.page.--right {
	border-left: 0;
	box-shadow: inset 7px 0 30px -7px rgba(0, 0, 0, 0.4);
}
.page.--right .page-footer {
	text-align: right;
}
/*! CSS Used from: Embedded */
.stf__wrapper {
	position: relative;
	display: block;
	box-sizing: border-box;
	/* transform: translateZ(0); */
}
.stf__wrapper canvas {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.stf__block {
	position: absolute;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.stf__item {
	display: none;
	position: absolute;
}
.fa {
    padding: 20px;
    font-size: 4vw; /* Font size scales with viewport width */
    width: 10vw; /* Width scales with viewport width */
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}

/* For large screens (desktops) */
@media (min-width: 1200px) {
    .fa {
        font-size: 60px; /* Fixed size for larger screens */
        width: 100px;
        padding: 18px;
    }
}

/* For medium devices (tablets) */
@media (max-width: 992px) {
    .fa {
        font-size: 55px;
        width: 90px;
        padding: 16px;
    }
}

/* For small devices (mobile) */
@media (max-width: 768px) {
    .fa {
        font-size: 50px;
        width: 80px;
        padding: 14px;
    }
}

/* For extra small devices (small phones) */
@media (max-width: 576px) {
    .fa {
        font-size: 45px;
        width: 70px;
        padding: 12px;
    }
}

  
  .fa:hover {
	opacity: 0.7;
  }
  
  .fa-facebook {
	background: #3b5998;
	color: white;
  }
  
  .fa-twitter {
	background: #55acee;
	color: white;
  }
  
  .fa-google {
	background: #dd4b39;
	color: white;
  }
  
  .fa-linkedin {
	background: #007bb5;
	color: white;
  }
  
  .fa-youtube {
	background: #bb0000;
	color: white;
  }
  
  .fa-instagram {
	background: #125688;
	color: white;
  }
  
  .fa-pinterest {
	background: #cb2027;
	color: white;
  }
  
  .fa-snapchat-ghost {
	background: #fffc00;
	color: white;
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  }
  
  .fa-skype {
	background: #00aff0;
	color: white;
  }
  
  .fa-whatsapp {
	background: #00b489;
	color: white;
  }
  
  .fa-telegram {
	background: #125688;
	color: whitesmoke;
  }
  
  .fa-map-marker {
	background: rgb(253, 109, 13);
	color: white;
  }
  
  .inputtext {
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  footer {
    background-color: purple;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 90px;
}

/* For medium devices (tablets) */
@media (max-width: 992px) {
    footer {
        padding: 15px; /* Reduce padding for medium screens */
        margin-top: 60px; /* Adjust margin for a better fit */
    }
}

/* For small devices (mobiles) */
@media (max-width: 768px) {
    footer {
        padding: 10px; /* Further reduce padding for small screens */
        margin-top: 40px; /* Adjust margin to fit smaller viewports */
    }
}

/* For extra small devices (small phones) */
@media (max-width: 576px) {
    footer {
        padding: 8px; /* Minimal padding for extra small screens */
        margin-top: 20px; /* Minimize margin for small phones */
        font-size: 14px; /* Reduce font size for better readability */
    }
}

  
  .links-container {
	margin: 0px;
  }
  
  .link-item {
	padding: 0px 0;
  }
  
  a {
    text-decoration: none;
    color: #007bff;
    font-size: 1rem; /* Use relative units */
    transition: color 0.3s ease;
}

@media only screen 
  and (device-width: 375px) 
  and (device-height: 812px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: portrait) {
    a {
        font-size: 0.9rem; /* Adjust font size specifically for iPhone X in portrait mode */
    }
}

@media only screen 
  and (device-width: 812px) 
  and (device-height: 375px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: landscape) {
    a {
        font-size: 0.7rem; /* Adjust font size specifically for iPhone X in landscape mode */
    }
}

/* General styles for smaller screens (less than 576px) */
@media (max-width: 576px) {
    a {
        font-size: 0.7rem; /* Decrease font size for very small screens */
    }
}

/* General styles for larger screens */
@media (min-width: 577px) and (max-width: 768px) {
    a {
        font-size: 0.95rem; /* Slightly smaller font size for small screens */
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    a {
        font-size: 1rem; /* Base font size for medium screens */
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    a {
        font-size: 1.1rem; /* Increase font size for large screens */
    }
}

@media (min-width: 1024px) {
    a {
        font-size: 1.2rem; /* Larger font size for extra large screens */
    }
}


.links-container h1{
	color: rgb(255,145,0); 
	margin: auto;
	font-size: 25px;
	padding-bottom: 10px; 
	/* text-transform: uppercase;  */
	font-weight: bold;
}

.links-container h2{
	color: rgb(13, 10, 10);
	 margin:auto; 
	 font-size:15px; 
	 font-weight: bold;
}
  
.checkbox {
	text-decoration: none;
	color: #222;
	font-size: 15px;
	transition: color 0.3s ease;
	font-weight: bold;
	padding-bottom: 10px;
  }
  
  @media (max-width: 768px) {
	.checkbox {
	  font-size: 13px;
	  padding-bottom: 8px;
	}
  }
  
  @media (max-width: 480px) {
	.checkbox {
	  font-size: 12px;
	  padding-bottom: 6px;
	}
  }
  
  
  a:hover {
	color: #0056b3;
  }
  
  .logo img {
	width: 20px;
	/* Different width for the logo */
	height: 20px;
	/* Maintain aspect ratio */
  }
  
  .logo-container {
	display: flex;
	/* Align items in a row */
	align-items: center;
	/* Center items vertically */
	margin: 0 auto;
	margin-left: 40px;
	/* Adjust spacing as needed */
  }
  
  .front-page p {
	font-size: 15px;
	color: orange;
  }
  
  .front-page {
	width: 300px;
	height: 300px;
	/* Different height for the front page */
	background-color: #f0f0f0;
	/* Example background color */
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	display: block;
  }
  
  iframe {
	margin-top: 5px;
	/* Space between heading and iframe */
  }
  
  .logo {
	margin: 0 auto;
	/* Centers the logo container */
	margin-bottom: 10px;
	/* Space between logo and content */
	display: flex;
    align-items: center;
    gap: 10px;
  }
  iframe {
    width: 100%;
    height: 60vh;
    max-width: 1000px; /* Sets a maximum width for larger screens */
    min-width: 300px;  /* Ensures iframe doesn't become too small */
    display: block;
    margin: 0 auto;
    border: none; /* Optional, removes iframe borders */
}

/* For devices larger than 1200px (like desktops) */
@media (min-width: 1200px) {
    iframe {
        height: 70vh;
    }
}

/* For medium devices (tablets) */
@media (max-width: 992px) {
    iframe {
        height: 50vh;
    }
}

/* For small devices (mobiles) */
@media (max-width: 768px) {
    iframe {
        height: 40vh;
    }
}

/* For extra small devices (small phones) */
@media (max-width: 576px) {
    iframe {
        height: 30vh;
    }
}

#nav {
    font-size: 1rem; /* Default font size for large screens */
}

/* For larger screens (desktops) */
@media (min-width: 1200px) {
    #nav {
        font-size: 1.7rem; /* Increase font size for larger screens */
    }
}

/* For tablets and medium devices */
@media (max-width: 992px) {
    #nav {
        font-size: 1.8rem; /* Decrease font size for medium devices */
    }
}

/* For small devices (mobile) */
@media (max-width: 768px) {
    #nav {
        font-size: 1.5rem; /* Further reduce font size for mobile devices */
    }
}

/* For extra small devices (small phones) */
@media (max-width: 576px) {
    #nav {
        font-size: 1.2rem; /* Even smaller font size for small phones */
    }
}
/* Base styles for audio toggle */
#audio-toggle img {
    width: 50px; /* Default width for large devices */
    height: 50px; /* Default height for large devices */
}

#audio-toggle {
    position: fixed;
    top: 20px; /* Position from the top */
    right: 20px; /* Position from the right */
    background-color: transparent;
    border: none;
    cursor: pointer;
	z-index: 9999;
}

/* Responsive adjustments for tablets and smaller screens */
@media (max-width: 768px) {
    #audio-toggle img {
        width: 40px; /* Adjusted width for tablets */
        height: 40px; /* Adjusted height for tablets */
    }

    #audio-toggle {
        top: 15px; /* Adjusted position from the top */
        right: 15px; /* Adjusted position from the right */
    }
}

/* Responsive adjustments for mobile devices */
@media (max-width: 480px) {
    #audio-toggle img {
        width: 30px; /* Further adjusted width for mobile devices */
        height: 30px; /* Further adjusted height for mobile devices */
    }

    #audio-toggle {
        top: 10px; /* Further adjusted position from the top */
        right: 10px; /* Further adjusted position from the right */
    }
}


  @media (max-width: 768px) {
	.icons {
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.icons a {
		font-size: 20px;
	}
}
/* Base styles */
.contact-info {
    display: flex;
    align-items: center;
    justify-content: center; /* Center items horizontally */
    flex-wrap: wrap; /* Allow items to wrap to new lines on smaller screens */
     /* Space between items */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.icon {
    width: 30px; /* Default icon size */
    height: 30px; /* Default icon size */
}

.logo-text {
    margin: 0;
    font-size: 16px; /* Default text size */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .icon {
        width: 25px; /* Smaller icon size for tablets */
        height: 25px; /* Smaller icon size for tablets */
    }

    .logo-text {
        font-size: 14px; /* Smaller text size for tablets */
    }

    .contact-info {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center; /* Center items horizontally */
    }
}

@media (max-width: 480px) {
    .icon {
        width: 20px; /* Smaller icon size for mobile devices */
        height: 20px; /* Smaller icon size for mobile devices */
    }

    .logo-text {
        font-size: 12px; /* Smaller text size for mobile devices */
    }
}
/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
	opacity: 0;
	width: 0;
	height: 0;
  }
  
  /* The slider */
  .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
  }
  
  .slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
  }
  
  input:checked + .slider {
	background-color:darkred;
	;
  }
  
  input:focus + .slider {
	box-shadow: 0 0 1px darkred;
  }
  
  input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
	border-radius: 34px;
  }
  
  .slider.round:before {
	border-radius: 50%;
  }