@font-face {
	font-family: 'Sofia Sans';
	src: url('/fonts/SofiaSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Sofia Sans';
	src: url('/fonts/SofiaSans-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Sofia Sans';
	src: url('/fonts/SofiaSans-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Sofia Sans';
	src: url('/fonts/SofiaSans-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Sofia Sans';
	src: url('/fonts/SofiaSans-Black.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 100%;
	/* Typically 16px by default */
}

html,
body {
	font-family: Sofia Sans, sans-serif;
	margin: 0;
	padding: 0;
    background-color: #e1e1e1;
	height: 100%;
	width: 100%;
	overflow: hidden;
	overflow-y: auto;
}

body a {
	text-decoration: none;
}

.brnav {
	display: none;
}

/* NAVBAR */
/* Sidebar initially hidden */



#menuToggle {
	display: none;
	position: relative;
	top: 0px;
	left: 10px;

	z-index: 1;

	-webkit-user-select: none;
	user-select: none;
}

#menuToggle a {
	text-decoration: none;
	color: white;


	text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.2);
	transition: color 0.3s ease;
}

#menuToggle a:hover {
	color: tomato;
}


#menuToggle input {
	display: block;
	width: 60px;
	/* Increase width for a larger clickable area */
	height: 60px;
	/* Increase height for a larger clickable area */
	position: absolute;
	top: -15px;
	/* Center it around the icon */
	left: -15px;
	/* Center it around the icon */
	cursor: pointer;
	opacity: 0;
	/* Keep input invisible */
	z-index: 1;
	/* Keeps input behind the spans */
	-webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 6px;
	position: relative;
	background: white;
	border-radius: 3px;
	z-index: 2;
	/* Span is in front of input initially */
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease;
}

#menuToggle span:first-child {
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}


#menuToggle input:checked~span:nth-of-type(1) {
	opacity: 1;
	transform: rotate(45deg);
	background: white;
	z-index: 999;
}

#menuToggle input:checked~span:nth-of-type(2) {
	opacity: 0;
	transform: scale(0);
}

#menuToggle input:checked~span:nth-of-type(3) {
	opacity: 1;
	transform: rotate(-49deg);
	background: white;
	z-index: 999;
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(51, 51, 51, 0.99);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-80px);
	/* Start slightly above */
	transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
	/* Added transform transition */
	list-style: none;
}

#menuToggle input:checked~#menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	/* Slide to original position */
}

#menu li {
	padding: 15px 0;
	font-size: 22px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	text-align: center;
	opacity: 0;
	/* Start invisible */
	transform: translateY(70px);
	/* Start slightly below */
	transition: opacity 0.6s ease, transform 0.8s ease;
	/* Smooth animation */
}

/* Use a common style for all li items when checked */
#menuToggle input:checked~#menu li {
	opacity: 1;
	/* Make them visible */
	transform: translateY(0);
	/* Move to original position */
}

/* Staggered delay for all list items */
#menuToggle input:checked~#menu li:nth-child(1) {
	transition-delay: 0.2s;
}

#menuToggle input:checked~#menu li:nth-child(2) {
	transition-delay: 0.4s;
}

#menuToggle input:checked~#menu li:nth-child(3) {
	transition-delay: 0.6s;
}

#menuToggle input:checked~#menu li:nth-child(4) {
	transition-delay: 0.8s;
}

#menuToggle input:checked~#menu li:nth-child(5) {
	transition-delay: 1s;
}

#menuToggle input:checked~#menu li:nth-child(6) {
	transition-delay: 1.2s;
}

#menuToggle input:checked~#menu li:nth-child(7) {
	transition-delay: 1.4s;
}

#menuToggle input:checked~#menu li:nth-child(8) {
	transition-delay: 1.6s;
	margin-top: 3rem;
}

#menuToggle input:checked~#menu li:nth-child(9) {
	transition-delay: 1.8s;
}

.con {
	color: #65BAFF !important;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked~ul {
	opacity: 1;
	visibility: visible;
}





.navbar {
    background-color: #333333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	height: 61px;
	width: 100%;
	margin-top: 30px;
}

.navbar .logo {
	color: white;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	text-decoration: none;
}

.navbar ul {
	list-style: none;
	display: flex;
	font-size: 1.2rem;
	margin-right:5rem !important;
}

.navbar ul li {
	position: relative;
	margin-right:5rem !important;
}

.navbar ul li a {
	color: white;
	text-decoration: none;
	padding: 15px 20px;
	display: block;
}

.navbar ul li a:hover {
	background-color: #444;
}

/* Dropdown container */
.navbar ul li:hover .dropdown {
	display: block;

}

/* Dropdown styles */

.dropdown-menu {
	display: none;
	/* Hide dropdowns by default */
	position: absolute;
	/* Dropdown position */
	top: 100%;
	/* Align to the bottom of the parent */
	left: 0;
	background-color: #444;
	min-width: 200px;
	z-index: 1;
}

.dropdown-menu.show {
	display: block;
	/* Show when active */
}

.dropdown-menu a {
	padding: 10px 15px;
}

.dropdown-menu a:hover {
	background-color: #555;
	border-bottom: 1px solid white;
	padding-left: 15px;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.9);
}

/* Right side link */
.call-link {
	color: #65BAFF;
	text-decoration: none;
	font-size: 1.2rem;
}

.call-link:hover {
	text-decoration: underline;
}


/* header */


main {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	background-color: white;
}

.section1 {

	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);

	padding-top: 0.5rem;
	padding-bottom: 2rem;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-top: 5rem;
}


h1 {
	font-size: 3rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
	margin-top: 3rem;
	margin-bottom: 2rem;
}

h2,
h3,
h4 {
	margin-left: 1rem;
	font-size: 1.5rem;
}

h4 {
	font-size: 1.3rem !important;
}

p {
	margin-left: 2.5rem;
	font-size: 1.1rem;
}

a {
	color: #C80D10;
}

.section1 ul {
	margin-left: 17%;
}

/* section 1 */

.bold {
	font-weight: 900;
}




/* footer */

footer {
	height: 70px;
	justify-content: center;
	margin-top: 20rem;
}


.footer-class {
	display: flex;
	flex-direction: column;
	background-color: #333333;
	align-items: center;
	width: 85%;
	height: 90%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;

	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
}

.foo-nav {
	margin-top: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	height: 61px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;

}


.foo-nav ul {
	list-style: none !important;
	display: flex;
	font-size: 1.2rem !important;
}

.foo-nav ul li {
	position: relative;
}

.foo-nav ul li a {
	color: white !important;
	text-decoration: none !important;
	padding: 15px 35px;
	display: block;

}

.foo-nav ul li a:hover {
	color: tomato !important;
}



.mail-phone a {
	color: #FF6062
}




@media screen and (max-width: 1822px) {
	.foo-nav ul li a {
		font-size: 1rem !important;
	}
}

@media only screen and (max-width: 1774px) {

	.s2-left {
		margin-left: -4rem !important;
	}

}



@media only screen and (max-width: 1700px) {

	h1 {
		font-size: 4.5rem;
	}


	@media screen and (max-width: 1620px) {

		.foo-nav ul li a {
			font-size: 0.9rem !important;
		}

	}


	@media screen and (max-width: 1518px) {


		.foo-nav ul li a {
			font-size: 0.9rem !important;
			padding: 15px 30px
		}

	}


	@media screen and (max-width: 1375px) {

		.foo-nav ul li a {
			font-size: 0.9rem !important;
			padding: 15px 20px
		}
	}



	@media screen and (max-width: 1234px) {

		main {
			width: 95%;
		}

		.section1 {
			width: 99%;
		}

		@media screen and (max-width: 1165px) {
			footer {
				height: 300px;
			}

			.foo-nav {
				height: 100%;
			}

			.foo-nav ul {
				display: flex !important;
				flex-direction: column !important;
			}

			.footer-class {
				width: 25% !important;
				height: 98% !important;
			}
		}

		@media only screen and (max-width: 1148px) {

			.s1-break {
				display: block;
				height: 0px !important;
			}

			.s1-left h2 {
				font-size: 3rem !important;
			}
		}




		@media only screen and (max-width: 1066px) {


			.navbar ul li a {
				padding: 0px 20px !important;
			}

			.navbar {
				
				top: -33px;
				z-index: 100;

			}

			h1 {
				font-size: 4rem;
			}

			.header-block p {
				font-size: 1.4rem !important;
			}

			#menuToggle {
				display: block !important;
			}


			.navbar .logo {
				display: block !important;
				font-size: 1.4rem !important;
				margin-right: auto;
				margin-left: 3%;
			}

			.nav-links a {
				display: none !important;
			}

			.call-link {
				font-size: 1.2rem !important;
			}



			.s2-right {
				margin-left: auto !important;
				margin-right: auto !important;
			}

		}



		@media only screen and (max-width: 1038px) {


			.section3,
			.section3-cards {
				display: flex;
				flex-direction: column;
			}


			.section3 {
				height: 1500px;
			}

			.section4 {
				margin-top: 30rem !important;
			}

			.section7 {
				padding-top: 50%;
			}

		}



		@media only screen and (max-width: 1000px) {



			.s1-right,
			.s2-cards {
				display: flex !important;
				flex-direction: column !important;
			}


			.section3 h2 {
				margin-bottom: 0rem !important;
			}

			.section3 {
				height: 1600px;
			}

			.small-text {
				font-size: 2rem;
				display: block;
			}

			.s2-break {
				display: block;
				height: 0px;
			}

			.s2-left h2 {
				font-size: 2.6rem;
			}
		}



		@media only screen and (max-width: 928px) {




			h1 {
				font-size: 3.5rem !important;
			}

			.row4 {
				display: flex;
				flex-direction: column;
				gap: 0px !important;
				margin-top: 0rem !important;
			}

			.section3 {
				margin-top: 3rem !important;
			}

			.section4 {
				height: 1800px !important;
				margin-top: 29rem !important;
			}
		}



		@media screen and (max-width: 882px) {
			.footer-class {
				width: 35% !important;
			}
		}

		@media only screen and (max-width: 814px) {


			h1 {
				font-size: 3rem !important;
			}


			.header-block p {
				font-size: 1.25rem !important;
			}


			.section2 {
				height: 1550px !important;
			}

			.s1-left h2 {
				font-size: 2.4rem !important;
			}


			.section3 h2 {
				font-size: 3rem !important;
			}

			.section2 {
				height: 1650px !important;
			}

			.section4 h2 {
				font-size: 3rem !important;
			}
		}


		@media only screen and (max-width: 760px) {
			.section2 {
				height: 1800px !important;
			}
		}

		@media only screen and (max-width: 700px) {

			h1 {
				font-size: 2.4rem !important;
			}

			.header-block p {
				font-size: 1.15rem !important;
				font-weight: 500;
			}


			.section4 h2 {
				font-size: 2.4rem !important;
			}

			.s1-left h2 {
				font-size: 2.1rem !important;
			}

			.section2 {
				height: 1800px !important;
				margin-top: 10rem !important;
			}

			.section3 h2 {
				margin-left: auto !important;
				margin-right: auto !important;
				font-size: 2.5rem !important;
			}
		}


		@media screen and (max-width: 690px) {
			.footer-class {
				width: 55% !important;
			}

			.foo-nav ul li a {
				padding: 15px 10px !important;
			}

			.navbar .logo {
				font-size: 1.2rem !important;
			}

			.call-link {
				font-size: 1.1rem !important;
			}
		}



		@media only screen and (max-width: 570px) {

			#menuToggle {
				left: 1px !important;
			}



			h1 {

				font-size: 2.2rem !important;
			}

			.s1-left h2 {
				font-size: 1.9rem !important;
			}

			.s2-left h2 {
				font-size: 2rem !important;
			}

			.s1-left p {
				font-size: 1rem !important;
				margin-top: 1.3rem !important;
				margin-left: auto !important;
				margin-right: auto !important;
			}

			.s2-left p {
				font-size: 1rem !important;
			}

			.section4 h2 {
				font-size: 2.1rem !important;
			}

			.section7 h2 {
				font-size: 2rem !important;
			}


			.section7 {
				height: 1800px;
				justify-content: center;
			}

			.section3 h2 {
				font-size: 2.2rem !important;
			}


			.s2-left .bold {
				font-size: 1.1rem !important;
			}
		}


		@media only screen and (max-width: 512px) {


			.navbar .logo {
				font-size: 1.1rem !important;
				margin-left: 3.5% !important;
			}

			.call-link {
				font-size: 1rem !important;
			}



			.footer-class {
				width: 90% !important;
			}

			h1 {
				font-size: 2rem !important;
			}

			.s1-left h2 {
				font-size: 1.7rem !important;
			}


			.s2-left h2 {
				font-size: 1.8rem !important;
			}

			.small-text {
				font-size: 1.8rem !important;
			}

			.section3 h2 {
				font-size: 2rem !important;
			}

			.section7 h2 {
				font-size: 1.8rem !important;
			}


			.section4 h2 {
				font-size: 1.9rem !important;
				margin-bottom: 3rem !important;
			}


			.Web2 {
				width: 32rem !important;
				height: 17rem !important;
			}
		}



		@media only screen and (max-width: 468px) {


			.navbar .logo {
				font-size: 0.94rem !important;
				margin-left: 3.7% !important;
			}

			.call-link {
				font-size: 0.9rem !important;
			}




			h1 {
				font-size: 1.8rem !important;
			}

			.header-block p {
				font-size: 1.1rem !important;
			}

			.s1-left h2 {
				font-size: 1.55rem !important;
			}

			.s1-left p {
				font-size: 0.95rem !important;
			}


			.section1 .card-container-s3 h3 {
				font-size: 1.35rem;
			}


			.cardMg-s4p {
				font-size: 0.9rem !important;
				margin-top: 0.1rem !important;
			}


			.s2-left .bold {
				font-size: 0.99rem !important;
			}

			.s2-left h2 {
				font-size: 1.6rem !important;
			}

			.s2-right .s4card {
				width: 21rem !important;
			}

			.s2-right .cardMg-s4p {
				margin-top: 0.6rem !important;
			}

			.small-text {
				font-size: 1.6rem !important;
			}

			.section3 h2 {
				font-size: 1.8rem !important;
			}

			.section3 .s4card {
				width: 20rem !important;
			}


			.section4 h2 {
				font-size: 1.75rem !important;
			}


			.section4 .card-s3 {
				width: 21rem !important;
			}


			.section4 .card-s3 p {
				font-size: 0.9rem !important;
			}



		}



		@media only screen and (max-width: 418px) {



			.navbar .logo {
				font-size: 0.9rem !important;
				margin-left: 3.3% !important;
				margin-right: 0px;
			}

			.call-link {
				font-size: 0.87rem !important;
			}

			#menuToggle {
				left: 2px !important;
			}

			h1 {
				font-size: 1.6rem !important;
			}

			.header-block p {
				font-size: 1rem !important;
			}

			.s1-left h2 {
				font-size: 1.4rem !important;
			}


			.s2-left h2,
			.small-text {
				font-size: 1.4rem !important;
			}


			.section3 h2 {
				font-size: 1.6rem !important;
			}

			.section3 .s4card {
				width: 18rem !important;
			}

			.section3 .card-container-s3 {
				height: 620px !important;
			}

			.line {
				margin-bottom: 30px !important;
			}


			.section4 h2 {
				font-size: 1.55rem !important;
			}

			/*
	.header-block {
		margin-top: 3rem !important;
	}

	.header-block p {
		margin-top: 3rem !important;
	}
*/


			.s1-right {
				margin-left: 0rem !important;
				width: 100% !important;
			}

			.Web2 {
				width: 26rem !important;
				height: 14rem !important;
			}



		}

		@media screen and (max-width: 408px) {

			.navbar .logo {
				font-size: 0.9rem !important;
				margin-left: 3.3% !important;
				margin-right: 0px;
			}

			.brnav {
				display: block;
				margin-top: 0px !important;
				margin-bottom: 0px !important;
				height: 0px !important;
			}

			.call-link {
				font-size: 0.87rem !important;
				text-align: center;
			}

			#menuToggle {
				left: 2px !important;
			}


		}

		@media only screen and (max-width: 390px) {

			.s1-right {
				margin-left: 0rem !important;
				width: 100% !important;
			}

			.section2 {
				height: 2000px !important;
			}


			.section4 .card-container-s3 {
				min-width: 250px !important;
			}

		}



		@media screen and (max-width: 380px) {


			.section7 {
				height: 1850px !important;
			}

			.s1-left h2 {
				margin-top: 5rem !important;
			}

		}

		@media screen and (max-width: 370px) {

			.section2 {
				height: 2150px !important;
			}

			.section7 {
				height: 1920px !important;
			}
		}
	}
}
