@charset "utf-8";
/* CSS Document */

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  margin: 0;
  padding: 0;
  background: url(/images/background-connect-pattern.png) fixed #ffffff;
  height: 100%;
  width: 100%;
}

header {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 7%;
  position: relative;
  border-bottom: 1px solid #ededed;
}

nav {
  display: flex;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav .nav-button {
  text-decoration: none;
  color: #fff;
  background-color: #00446a;
  padding: 10px 14px;
  border-radius: 6px;
}

nav .nav-button:hover {
  background-color: #64b5cc;
}

h1,h2,h3,h4,h5,h6 {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	line-height: 1em;
}

h1 {
	font-size: 2.4rem;
	color: #00446a;
}
h2 {
	font-size: 2rem;
	color: #00446a;
}
h3,h4 {
	font-size: 1.4rem;
}

img {
  width: 100%;
  height: auto;
}

p {
  padding: 12px 0;
}

strong {
  color: #64b5cc;
}

button {
	font-family: "Oswald", sans-serif;
	font-size: 1.4rem;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.05);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.3s;
}

/* Hero section */
.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 7%;
  background-color: #ffffff;
}

.hero > div {
  flex: 1;
  min-width: 250px;
}

.hero-left {
  text-align: center;
  align-content: center;
}

.hero-left h1 {
  margin-top: 0;
}

.hero-left p {
  padding-bottom: 20px;
}

.hero-left a {
  text-decoration: none;
  margin-right: 10px;
  background-color: #00446a;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
}

.hero-left a:hover {
  background-color: #64b5cc;
}

.hero-right {
  text-align: right;
}

/* Centered one-column section */
.centered-section {
  text-align: center;
  background-color: #64b5cc;
  padding: 40px 7%;
}

/* Two-column section */
.two-column-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 7%;
}

.two-column-section > div {
  flex: 1;
  min-width: 250px;
}

.three-column-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 7%;
}

.three-column-layout > div {
  min-width: 120px;
}

.column {
  box-sizing: border-box;
}

.left {
  width: 20%;
}

.middle {
  width: 60%;
}

.middle h2 {
  text-align: center;
}

.right {
  width: 20%;
}

 .left-border-heading {
  padding-left: 10px;
  border-left: 5px solid #00446a;
}

.pricing-card {
  min-height: 400px;
  padding: 40px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 24px 0 rgba(0,0,0,0.1);
  border-radius: 30px;
}

.hours {
  padding-bottom: 30px; 
}

.info-card {
  min-height: 400px;
  padding: 40px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 24px 0 rgba(0,0,0,0.1);
}

.info-card ul {
  padding: 0;
}

.info-card li {
  list-style: none;
}

.contact-info {
  align-content: center;
}

.contact-info a {
  text-decoration: none;
  margin-right: 10px;
  background-color: #00446a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
}

.contact-info a:hover {
  background-color: #64b5cc;
}

.button-link {
  text-decoration: none;
  margin-right: 10px;
  background-color: #64b5cc;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
}

.button-link:hover {
  background-color: #00446a;
}

.accordion {
  background-color: #fcfcfc;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #64b5cc; 
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: #fff;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* Footer */
footer {
  background-color: #fff;
  border-top: 1px solid #ededed;
  text-align: center;
}

footer a {
  color: #64b5cc;
  text-decoration: none;
  font-size: 20px;
}
footer p {
	margin: 0;
	padding: 8px 0;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 7%;
}

.footer-column {
  flex: 1;
  padding: 10px;
  min-width: 200px;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  background-color: #00446a;
}

/* Responsive Styles */
@media (max-width: 768px) {
	nav {
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	width: 100%;
	height: 240px;
	background-color: #00446a;
	flex-direction: column;
	align-items: center;
	display: none;
	}

	nav.active {
	display: flex;
	}

	nav ul {
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	text-align: center;
	}

	nav ul a {
	font-size: 1.7rem;
	color: #fff !important;
	}

	.menu-toggle {
	display: flex;
	}
	.middle {
	width: 100%;
	}
	.contact-info a {
	display: block;
	margin: 10px 0;
	text-align: center;
	}
}