@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,
body {
    font-size: 16px;
    font-family: Sofia Sans, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e1e1e1;
    height: 100%;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
}

html {
	-webkit-text-size-adjust: 100%;
	/* Prevents font resizing */
	-ms-text-size-adjust: 100%;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}


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;
}



.sidebar {
	display: none;
}




.navbar {
    background-color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    height: 61px;
    width: 75%;
    margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
    color: rgb(255, 250, 220);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
}

.navbar .logo {
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    margin-right: auto;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
}

.navbar ul {
    list-style: none;
    display: flex;
    font-size: 1.2rem;
	
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    color:  rgb(255, 255, 255);
    text-decoration: none;
    display: block;
    padding-right: 10px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
}

.dropdown-menu a {

    padding: 15px 20px;
}

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

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

}

.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;
	margin-left: auto;
}

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


#btn {
	display: none;
}


/* header */


header {
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	box-sizing: border-box;
	width: 100%;

}


.header-block {
	width: 90%;
	justify-content: center;
	align-items: center;
	text-align: center;

	margin-left: auto;
	margin-right: auto;
	margin-top: 14rem;
}

h1 {
	font-size: 4rem;
	width: 100%;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.text-break {
	display: none;
}


.header-block p {
	font-size: 2rem;
	margin-top: 10rem;
}

/* section 1 */

.bold {
	font-weight: 900;
}

.hide {

	display: none;
}


.section1 {
	height: 920px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;

}


.s1-left {
	display: flex;
	flex-direction: column;
	width: 42%;
	margin-left: 7rem;
}

.s1-break {
	display: none;
}

.s1-left article {
	align-items: center;
}


.s1-left a {
	text-decoration: none;
	color: #F11216;
	font-weight: 700 !important;

}

.s1-left h2 {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 4rem;
}

.s1-left p {
	margin-top: 2rem;
	margin-left: 3rem;
	width: 90%;
	font-size: 1.3rem;
	text-align: left;
}

.s1-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 40%;
	margin-left: 7rem;
	margin-top: -5rem;
}

.card-container-s3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 240px;
	min-width: 400px;
	margin-top: 6rem;
}

.card-s3 {
	background-color: white;
	border-radius: 5px 5px 5px 5px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	padding: 20px;
	max-width: 400px;
	height: 100%;
	z-index: 1;
	position: relative;
}



.s4card {
	width: 27rem !important;
	text-align: center !important;
	justify-content: center !important;
}

.cardMg-s4 {
	margin-top: 1.3rem;
}

.cardMg-s4p {
	margin-top: 1rem;
}

.icon-container-s3 {
	background-color: #C80D10;
	/* Red background */
	width: 75px;
	height: 75px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.8);
}

.icon-container img {
	width: 35px;
	height: 35px;
	z-index: 500;
}

.button-wrapper-s3 {
	background-color: #333333;
	/* Light grey background behind button */
	padding: 15px 0;
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 110%;
	/* Extend the width to be wider than the card */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	border-radius: 1%;
	height: 57px;

	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button-s3 {
	background-color: #333333;
	color: white;
	border: solid 2px white;
	border-radius: 10px;
	padding: 10px 10px;
	cursor: pointer;
	font-size: 14px;
	width: 50%;
	align-items: center;
	justify-content: center;
	display: flex;
	height: 40px;
}

.cta-button-s3:hover {
	background-color: #555;
	transition: cubic-bezier(0.23, 1, 0.320, 1);
	transition-duration: 0.5s;
}


/* section 2 */


.s2-break {
	display: none;
}


.section2 {
	display: flex;
	height: 1000px;
	align-items: center;
	justify-content: center;
}


.s2-right,
.s2-left {
	display: flex;
	flex-direction: column;
	width: 40%;
	justify-content: center;
	align-items: center;
}


.s2-left article {
	width: 90%;
}

.s2-left h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 4rem;
}

.s2-left p {
	font-size: 1.15rem;
	margin-top: 1.8rem;
	font-weight: 500;
}

.s2-left .bold {
	font-size: 1.2rem;
}

.s2-left a {
	text-decoration: none;
	color: #F11216;
	font-weight: 600;
}

.s2-right {
	margin-left: 5rem;
}

.s2-right .card-container-s3 {
	margin-left: 3rem;
}

.s2-right h3 {
	margin-top: 1.5rem;
}



.s2-cards {
	display: flex !important;
}


.Web2 {
	width: 32rem;
	height: 18rem;
	margin-left: 3rem;
	border-radius: 10px;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
}



/* section 3 */


.section3 {
	height: 1100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}


.section3 h2 {
	font-size: 3.5rem;
	margin-bottom: 3rem;
}


.section3-cards {
	display: flex;
}

.section3 p {
	text-align: left;
	font-size: 0.95rem;
	margin-top: 0.9rem;

}

.cc3 {
	height: 506px !important;
	margin-top: 9.45%;
}

.s3p {
	line-height: 1.3rem;
	letter-spacing: -0.02rem;
}


.section3 .card-s3 {

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

.section3 .card-container-s3 {

	min-width: 600px;
	height: 580px;

}

.section3 .button-wrapper-s3 {
	width: 120%;

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

.section3 .cta-button-s3 {
	font-size: 12px;
	font-weight: 500;
}


.section3 .icon-container-s3 {
	display: none;
}


.line {
	border-bottom: 1px solid black;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 12px;
	margin-bottom: 40px;

}


/* section 4 */

.break1 {
	display: none;
}

.section4 {
	display: flex;
	flex-direction: column;
	height: 1250px;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.section4 h2 {
	font-size: 4rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
	font-weight: 500;
}

.section4 h3 {
	margin-top: 1.2rem;
	margin-bottom: 1rem;
}

.row4 {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 5rem;
	flex-wrap: wrap;
	gap: 60px;
}


.section4 .card-container-s3 {
	height: 275px;
}





/* faq section */



.section7 {
	width: 100%;
	height: 1350px;
	padding-top: 3.5%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 3%;
}

.section7 h2 {
	font-size: 4rem;
	text-align: center;
	margin-bottom: 5rem;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}


.faq-container {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: #fff;
	border: 1px solid #333333;
	margin-bottom: 20px;
	border-radius: 5px;
}

.faq-question {
	padding: 15px;
	font-size: 1.3rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-answer {
	display: none;
	/* Initially hidden */
	padding: 30px;
	background-color: #f1f1f1;
	border-top: 1px solid black;
	font-size: 1.2rem;
}

.icon {
	font-size: 1.5rem;
	transition: transform 0.3s;
}

.faq-item.active .icon {
	transform: rotate(45deg);
	/* Rotates when active */
}

.faq-item.active .faq-answer {
	display: block;
	/* Shows answer when active */
}


.cardMg-s3 {
	margin-top: 1.8rem !important;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}



/* footer */


footer {
	height: 70px;
	justify-content: center;
}

.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 queries */


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


	.s2-left {
		font-size: 2.8rem !important;
		width: 42% !important;
	}

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

	.s2-left p {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
}

@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: 1718px) {


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

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

	.s2-right .cardMg-s4p {
		margin-top: 0.6rem;
		font-size: 0.95rem;
		font-weight: 500;
	}

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

	.hide {
		display: block !important;
		height: 0px !important;
	}

	.section3 .card-container-s3 {
		min-width: 540px !important;
	}

	.cc3 {
		margin-top: 10.6%;
	}
}


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

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

	h1 {
		font-size: 4.5rem;
	}

	.header-block {
		margin-top: 12rem;
	}

	.s2-left p {
		font-size: 1.15rem;
	}

	.s1-left p {
		font-size: 1.15rem;
	}

	.s1-right {
		margin-left: 1rem;
	}
}


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

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

}



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

	.hide-small {
		display: none;
	}

	.cc3 {
		margin-top: 6rem !important;
		height: 580px !important;
	}

	.section4 h2 {
		font-size: 3.5rem;
	}

}

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


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

}



@media only screen and (max-width: 1510px) {
	.header-block p {
		font-size: 1.8rem;
		margin-top: 6rem;
	}

	.s1-left h2 {
		font-size: 2.7rem;
	}

	.s1-left p {
		margin-top: 1rem;
	}

	.small-text {
		font-size: 2.1rem;
	}

	.s2-cards {
		display: flex;
		flex-direction: column;
		margin-top: -2.5rem;
	}

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

	.s2-right .card-container-s3 {
		margin-left: 0rem !important;
	}

	.s2-left p {
		margin-top: 1.3rem;
		text-align: center;
	}

	.Web2 {
		margin-left: 0rem !important;
	}

}


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

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


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

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

	.section4 {
		margin-top: 23rem;
	}

	.section7 {
		height: 1800px;
		padding-top: 40%;
	}

	.break1 {
		display: block;
		height: 0px !important;
	}

	.s1-left {
		margin-left: 0rem !important;
	}
}


@media only screen and (max-width: 1254px) {
	.section1 {
		display: flex;
		flex-direction: column;
		height: 1050px;
	}

	.s1-left {
		width: 90%;
	}

	.s1-left p {
		margin-top: 2rem;
	}

	.s1-right {
		width: 90%;
		display: flex;
		flex-direction: row;
		margin-top: 2rem;
	}

	.s4card {
		width: 30rem !important;
	}

	.section2 {
		display: flex;
		flex-direction: column;
		height: 1300px;
	}

	.s2-left {
		width: 90% !important;
	}

	.s2-left p {
		text-align: left;
	}

	.s2-right {
		width: 90% !important;
		display: flex !important;
		margin-top: 5rem;
	}

	.s2-cards {
		flex-direction: row !important;
	}

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

}


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

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

}

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

	.s2-left article {
		width: 100% !important;
	}


	.s2-left {
		margin-left: auto !important;
		width: 100% !important;
	}

	.s2-left h2 {
		font-size: 2.2rem !important;
		width: 90%;
		margin-left: auto !important;
		margin-right: auto !important;
	}


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


}

@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-left: 3%;
		margin-right: auto;
	}

	.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) {


	.section1 .s4card {
		width: 26rem !important;
	}

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

	.section1,
	.section2 {
		height: 1500px;
	}

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

	.section3 {
		height: 1600px;
	}

	.small-text {
		font-size: 2rem;
		display: block;
		margin-top: -2rem !important;
	}

	.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: 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: 1750px !important;
		margin-top: 3rem !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;
	}




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

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

	.footer-class {
		width: 90% !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;
	}
}



@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 .s4card {
		width: 22rem !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;
	}

	.section1 .card-container-s3 h3 {

		font-size: 1.25rem !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;
	}
*/


	.section1 .s4card {
		width: 21rem !important;
		margin-left: 0rem !important;
	}

	.section1 .card-container-s3 {
		margin-left: 0rem !important;
	}

	.s1-right {
		margin-left: 0rem !important;
		width: 100% !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) {

	.section1 .s4card {
		width: 21rem !important;
		margin-left: 0rem !important;
	}

	.section1 .card-container-s3 {
		margin-left: 0rem !important;
	}

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

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

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



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


	.section7 {
		height: 1900px !important;
	}

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

}
