* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
  
}

html {
  scroll-behavior: smooth;
	background-color: #1d3537;
}

body {
	background-color: #1d3537;
	transform: translateZ(0);
}

@font-face {
  font-family: 'inkfree';
  src: url('/font/inkfree.eot');
  src: url('/font/inkfree.woff2') format('woff2'),
       url('/font/inkfree.woff') format('woff'),
       url('/font/inkfree.ttf') format('truetype'),
       url('/font/inkfree2.svg') format('svg');
  font-weight: normal;  /* Use valid font weight value: normal, bold, etc. */
  font-style: normal;   /* Use valid font style value: normal, italic, etc. */
}


/* Navbar */

.navbar {
  background: #1d3537;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  top: 0;
  z-index: 999;
}

#navbar {
  position: sticky;
  top: 0px;
  z-index:1000;
  transition: all 752.571ms cubic-bezier(0.66, -0.06, 0.56, 1.49) 0ms;
  box-shadow: 0px -65px 60px 160px #1d3537;
  margin-bottom: 10px;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  max-width: 1300;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar__logo {
  background-color: #1d3537;
  background-image: linear-gradient(to top, #1e8ad3 0%, #40b0df 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: underline;
  font-size: 2rem;
  font-family: "inkfree";
  font-weight: bold;
}

@media screen and (max-width: 480px) {
	#navbar__logo {
		font-size: 1.8rem;
		padding-left: 15px;
	}
	
	#navbar {
		transition: all 750ms cubic-bezier(0.84, 0, 0.07, 1) 0ms;
		box-shadow: 0px -65px 15px 100px #1d3537;
		margin-bottom: 15px;
}
}

.fa-house-user {
  margin-right: 0.5rem;
  color: #1e8ad3;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
}

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: none;
  border-radius: 4px;
  background: #043bb1;
  color: #40b0df;
}

.button:hover {
  background: #40b0df;
  color: #ffd53d;
  transition: all 0.3s ease;
}

.navbar__links:hover {
  color: #e78328;
  transition: all 0.3s ease;
}

/* Users Icons */

#users__icon--link {
  color: #e2e2e2;
  font-size: 24px;
}


.users__icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.users__icons li {
  margin-right: 10px;
}

.users__icons li:last-child {
        margin-right: 0; /* Remove margin from the last item to prevent extra spacing */
    }

@media screen and (max-width: 1070px) and (min-width: 481px) {
  #navbar__logo {
    font-size: 2.5rem;
    padding-left: 0px;
    padding-right: 75px;
    text-align: center;
  }
}

@media screen and (max-width: 1070px) {
  .navbar{
    height: 100px;
  }

  .navbar__container {
    display: flex;
    justify-content: space-inbetween;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    height: 50vh;
    z-index: -1;
    background: #1d3537;
  }

  .navbar__menu.active {
    top: 0;
    opacity: 1;
    transition: all 0.5 ease;
    z-index: 99;
    height: 90vh;
    font-size: 1.6rem;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #e2e2e2;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
    transition: all 0.5s ease-in-out;
  }

  #mobile-menu {
    position: absolute;
    top: 40%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/*  Hero Section CSS */
.main, .countdowns__main, .countdowns__container {
  background-color: #1d3537;
}

.main__container, .port__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.main__container {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.361) 40%,
      rgba(0, 0, 0, 0.361) 80%
    ),
    url("/images/20220326_180634_small.jpg");
}

.port__container {
	background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.361) 40%,
      rgba(0, 0, 0, 0.361) 80%
    ),
    url("/images/20221009_160623_small.jpg");
}

.main__content h1, .port__content h1 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #043bb1 0%, #1e8ad3 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main__content h2, .port__content h2 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #8fc09b 0%, #40b0df 100%);
  background-size: 100%;
  font-family: "inkfree", Helvetica, Arial, sans-serif;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main__content p, .port__content p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #e2e2e2;
}

.main__btn {
  font-family: Helvetica, Arial, sans-serif;
  font-style: none;
  background-image: linear-gradient(to top, #0000a3 0%, #0067b3 100%);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  color: #e2e2e2;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.main__btn a {
  position: relative;
  z-index: 2;
  color: #e2e2e2;
  text-decoration: none;
  font-size: 2rem;
}



.main__btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #40b0df;
  transition: all 0.35s;
  border-radius: 4px;
}

.main__btn:hover {
  color: #e2e2e2;
}

.main__btn:hover:after {
  width: 100%;
}

.main__img--container, .port__img--container {
  text-align: center;
}

#main__img, #port__img {
  height: 75%;
  width: 75%;
  will-change: transform;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .main__container, .port__container {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    margin: 0 auto;
    height: 100vh;
  }

  .main__content, .port__content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .main__content h1, .port__content h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .main__content h2, .port__content h2 {
    font-size: 3rem;
  }

  .main__content p, .port__content p {
    margin-top: 2rem;
    font-size: 1.5rem;
  }

  .main__btn {
    padding: 12px 36px;
    margin: 2.5rem 0;
  }
}

/* Pages Section CSS */
.pages {
  background-color: #1d3537;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}

.pages h1 {
  padding-top: 25px;
  background-color: #1e8ad3;
  background-image: linear-gradient(
    to right,
    #8599ff 0%,
    #576cd5 0%,
    #5382e0 21%,
    #4b91e1 52%,
    #257bad 78%,
    #17818f 100%
  );
  background-size: 100%;
  margin-bottom: 5rem;
  font-size: 3.5rem;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.pages__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pages__card {
  margin: 1rem;
  height: 525px;
  width: 400px;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(20, 20, 20, 0.75) 80%
    ),
    url("/images/technology_small.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #e2e2e2;
}

.pages__card:nth-child(2) {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(20, 20, 20, 0.75) 80%
    ),
    url("/images/motorway_services_small.jpg");
  background-position: right;
}

.pages__card:nth-child(3) {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(20, 20, 20, 0.75) 80%
    ),
    url("/images/highways_small.jpg");
  background-position-x: 40%;
}

.pages h2 {
  position: absolute;
  top: 350px;
  left: 30px;
}

.pages__card p {
  position: absolute;
  top: 400px;
  left: 30px;
}

.pages__card button {
  color: #e2e2e2;
  padding: 10px 20px;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #40b0df;
  position: absolute;
  top: 440px;
  left: 30px;
  font-size: 1rem;
  cursor: pointer;
}

.pages__card:hover {
  transform: scale(1.075);
  transition: 0.2s ease-in;
  cursor: pointer;
}

@media screen and (max-width: 1315px) {
  .pages {
    height: 1350px;
  }
}

@media screen and (max-width: 960px) {
  .pages {
    height: 2100px;
  }

  .pages h1 {
    font-size: 2rem;
    margin-top: 12rem;
  }
}

@media screen and (max-width: 480px) {
  .pages {
    height: 2200px;
  }

  .pages h1 {
    font-size: 2.5rem;
  }

  .pages__card {
    width: 300px;
  }
}

/* Footer CSS */
.footer__container {
  background-color: #141414;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer__logo {
  color: #1e8ad3;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  font-family: inkfree;
  font-weight: bold;
}

.footer__links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.footer__link--wrapper {
  display: flex;
}

.footer__link--items {
  color: #e2e2e2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
}

.footer__link--items h2 {
  margin-bottom: 16px;
  color: #e2e2e2;
}

.footer__link--items a {
  color: #a2a2a2;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer__link--items a:hover {
  color: #e9e9e9;
  transition: 0.3s ease-out;
}

/* Social Icons */

.fa-facebook, .fa-instagram, #social__icon--link {
  color: #e2e2e2;
  font-size: 24px;
}

.social__media {
  max-width: 1000px;
  width: 100%;
}

.social__media--wrap, .social__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social__media--wrap {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  
}

.social__icons {
  width: 240px;
}

.social__logo {
  color: #e2e2e2;
  justify-self: flex-start;
  margin-left: 20px;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.website__rights {
  color: #e2e2e2;
}

.website__rights, .footer__logo, .social__icons{
  padding-left: 15px;
  padding-right: 15px;
  align-items: center;
}

@media screen and (max-width: 650px) {
  .social__media--wrap {
	  flex-direction: column;
  }
  
  .social__icons {
	  order: -1;
  }
  
  .website__rights, .footer__logo, .social__icons{
	  padding-top: 15px;
	  transition: flex-direction 0.3s ease; 
  }
  
  .social__icons {
	  width: 150px;
  }
  
  .footer__link--wrapper {
	  flex-direction: column;
  }
}

@media screen and (max-width: 820px) {
  .footer__links {
    padding-top: 2rem;
  }

  #footer__logo, .website__rights {
    margin-bottom: 2rem;
  }
}

/* NAS */

.nas__container {
  display: grid;
  grid-template-columns: 2fr;
  text-align: center;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 90vh;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.361) 40%,
    rgba(0, 0, 0, 0.361) 80%
  );
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.nas__container h1 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #043bb1 0%, #1e8ad3 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.nas__container h2 {
  font-size: 3rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #8fc09b 0%, #40b0df 100%);
  background-size: 100%;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.nas__container p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #e2e2e2;
}

.nas__container a {
  color: #e78328;
}

@media screen and (max-width: 1260px) {
  .nas__container {
    height: 120vh;
  }
}

@media screen and (max-width: 640px) {
  .nas__container {
    height: 120vh;
  }
}

.nas__img--container {
  text-align: center;
}

#nas__img {
  height: 100%;
  width: 100%;
  will-change: transform;
}

/* Login Section */

.login--main{
  background-color: #e2e2e2;
  height: auto;
}

.login--container {
  background-color: #e2e2e2;
  padding-top: 75px;
  padding-bottom: 50px;
}

.login--container h1 {
  text-align: center;
  font-size: 4rem;
  font-family: inkfree;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #043bb1 0%, #1e8ad3 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  padding-bottom: 25px;
}

.login--container a {
	color: #c4ff7b;
	font-weight; bold;
}

#login-form {
    width: 580px;
	margin: auto;
	border: 2px solid #0067B3;
    border-radius: 25px;
    padding: 1.5rem;
	background-color: #40B0DF;
}

#login-form label {
  display: block;
  margin: 0.5rem 0;
  font-size: 16px;
}

#login-form input[type="text"],
#login-form input[type="password"] {
  width: 100%;
  padding: 0.5em;
  font-size: 16px;
  border: 3px solid #10BC10;
  border-radius: 20px;
}

.login--button {
  font-size: 25px;
  color: #FFD53D;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: bold;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: 3px solid #10BC10;
  border-radius: 500px;
  background: #0067B3;
  color: #40b0df;
}

.login--button:hover {
  background: #005796;
  color: #FFD53D;
  transition: all 0.2s ease;
}

#login-form #error-message {
	color: #f00;
	font-weight: 900;
}

#success-message {
	color: #ff0;
	font-size: 32px;
	font-weight: 600;
	text-align: center;
}

@media screen and (max-width: 550px) {
	#login-form {
		border-radius: 0;
		margin: 0;
		width: 100%;
		height: 100%;
	}
	
	.login--container {
		padding-bottom: 10px;
		padding-top: 15px;
	}
	
	.login--button {
		font-size: 20px;
	}
	
	.login--container h1 {
		font-size: 3rem;
	}
}

@media screen and (max-width: 960px) and (min-width: 551px) {
	#login-form {
		width: 350px;
	}
	
	.login--button {
		font-size: 20px;
	}
	
	.login--container h1 {
		font-size: 3rem;
	}
}

/* nferr */

.nferr__container {
  display: grid;
  grid-template-columns: 2fr;
  text-align: center;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.361) 40%,
    rgba(0, 0, 0, 0.361) 80%
  );
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.nferr__container h1 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #043bb1 0%, #1e8ad3 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.nferr__container h2 {
  font-size: 3rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #8fc09b 0%, #40b0df 100%);
  background-size: 100%;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.nferr__container p {
  margin-top: 1rem;
  font-size: 2rem;
  color: #e2e2e2;
}

.nferr__container a {
  color: #e78328;
}

.nferr__img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1260px) {
  .nferr__container {
    height: auto; /* Remove fixed height */
  }
}

@media screen and (max-width: 640px) {
  .nferr__container {
    height: auto; /* Remove fixed height */
  }
}

/* Default Container */

.default__container, .terms__container {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  background-color: #1d3537; /* You can change the background color */
  color: #e2e2e2; /* Text color */
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 20px 125px;
}

.default__container h1, .terms__container h1 {
  font-size: 3rem;
  background-color: #1e8ad3; /* You can customize the background color */
  background-image: linear-gradient(to top, #043bb1 0%, #1e8ad3 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.default__container h2, .terms__container h2 {
  font-size: 2rem;
  background-color: #1e8ad3; /* You can customize the background color */
  background-image: linear-gradient(to top, #8fc09b 0%, #40b0df 100%);
  background-size: 100%;
  font-family: Helvetica, Arial, sans-serif;
  padding-top: 25px;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.default__container p, .terms__container p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: normal;
}


@media screen and (max-width: 768px) {
  .default__container, .terms__container {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 20px; 
  }

  .default__container h1, .terms__container h1 {
    font-size: 2rem;
    margin-top: 1rem;
    text-align: center;
  }

  .default__container h2, .terms__container h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .default__container p, .terms__container p {
    margin-top: 1rem;
    font-size: 0.75rem;
    text-align: left;
  }
}


/* Highways */

.hwys {
  background-color: #1d3537;
}

.hwys__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 90vh;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.361) 40%,
      rgba(0, 0, 0, 0.361) 80%
    ),
    url("/images/highways_small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.hwys__content h1 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #043bb1 0%, #1e8ad3 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.hwys__content h2 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #8fc09b 0%, #40b0df 100%);
  background-size: 100%;
  font-family: "inkfree", Helvetica, Arial, sans-serif;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.hwys__content p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #e2e2e2;
}

.hwys__btn {
  font-family: Helvetica, Arial, sans-serif;
  font-style: none;
  background-image: linear-gradient(to top, #0000a3 0%, #0067b3 100%);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  color: #e2e2e2;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.hwys__btn a {
  position: relative;
  z-index: 2;
  color: #e2e2e2;
  text-decoration: none;
  font-size: 2rem;
}

.hwys__btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #40b0df;
  transition: all 0.35s;
  border-radius: 4px;
}

.hwys__btn:hover {
  color: #e2e2e2;
}

.hwys__btn:hover:after {
  width: 100%;
}

.hwys__img--container {
  text-align: center;
}

#hwys__img {
  height: 75%;
  width: 75%;
  will-change: transform;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .hwys__container {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    margin: 0 auto;
    height: 100vh;
  }

  .hwys__content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .hwys__content h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .hwys__content h2 {
    font-size: 3rem;
  }

  .hwys__content p {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}

/* Twitter Account Selection Styles */

.tweet__embed {
	background-color: #1d3537;
}

}

.hwys__title {
  margin: 0 auto;
  max-width: 950px;
  text-align: center;
  margin-top: 20px;
  background-color: #1d3537;
}

.hwys__title h1 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #043bb1 0%, #1e8ad3 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

#twitterAccounts {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 3px solid #10BC10;
  border-radius: 20px;
  background-color: #1d3537;
  color: #fff;
}

/* Tweets Section Styles */

.tweet {
  margin: 0 auto;
  max-width: 950px; /* Adjust this percentage to control the width of the tweets */
  padding: 10px;
  margin-bottom: 10px;
  background-color: #1d3537;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hwys__btn {
  font-family: Helvetica, Arial, sans-serif;
  font-style: none;
  background-image: linear-gradient(to top, #0000a3 0%, #0067b3 100%);
  padding: 14px 32px;
  border: none;
  border-radius: 200px;
  color: #e2e2e2;
  margin-top: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
  left: 50%;
  transform: translate(-50%);
}

.hwys__btn a {
  position: relative;
  z-index: 2;
  color: #e2e2e2;
  text-decoration: none;
  font-size: 2rem;
}

.hwys__btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #40b0df;
  transition: all 0.35s;
  border-radius: 200px;
}

.hwys__btn:hover {
  color: #e2e2e2;
}

.hwys__btn:hover:after {
  width: 100%;
}


/* Highways */

.mwayreviews {
  background-color: #1d3537;
}

.mwayreviews__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 90vh;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.361) 40%,
      rgba(0, 0, 0, 0.361) 80%
    ),
    url("/images/highways_small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.mwayreviews__content h1 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #043bb1 0%, #1e8ad3 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.mwayreviews__content h2 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #8fc09b 0%, #40b0df 100%);
  background-size: 100%;
  font-family: "inkfree", Helvetica, Arial, sans-serif;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.mwayreviews__content p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #e2e2e2;
}

.mwayreviews__btn {
  font-family: Helvetica, Arial, sans-serif;
  font-style: none;
  background-image: linear-gradient(to top, #0000a3 0%, #0067b3 100%);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  color: #e2e2e2;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.mwayreviews__btn a {
  position: relative;
  z-index: 2;
  color: #e2e2e2;
  text-decoration: none;
  font-size: 2rem;
}

.mwayreviews__btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #40b0df;
  transition: all 0.35s;
  border-radius: 4px;
}

.mwayreviews__btn:hover {
  color: #e2e2e2;
}

.mwayreviews__btn:hover:after {
  width: 100%;
}

.mwayreviews__img--container {
  text-align: center;
}

#mwayreviews__img {
  height: 75%;
  width: 75%;
  will-change: transform;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .mwayreviews__container {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    margin: 0 auto;
    height: 100vh;
  }

  .mwayreviews__content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .mwayreviews__content h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .mwayreviews__content h2 {
    font-size: 3rem;
  }

  .mwayreviews__content p {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}

.review__embed {
	background-color: #1d3537;
}

.mwayreviews__title {
  margin: 0 auto;
  max-width: 950px;
  text-align: center;
  margin-top: 20px;
  background-color: #1d3537;
}

.mwayreviews__title h1 {
  font-size: 4rem;
  background-color: #1e8ad3;
  background-image: linear-gradient(to top, #043bb1 0%, #1e8ad3 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

#ServiceStation {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 3px solid #10BC10;
  border-radius: 20px;
  background-color: #1d3537;
  color: #fff;
}

/* Tweets Section Styles */

.review {
  margin: 0 auto;
  max-width: 950px; /* Adjust this percentage to control the width of the tweets */
  padding: 4px;
  margin-bottom: 10px;
  background-color: #1d3537;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  font-family: Helvetica, Arial, sans-serif;
}

.review a {
  color: #ffffff;
  font-family: Helvetica, Arial, sans-serif;
}

.review td {
  padding-right: 10px;
}

table {
    margin: 0 auto; /* Horizontally center the table */
    width: auto;   /* Allow the table to be as wide as its content */
}

td:nth-child(1), th:nth-child(1) {
    text-align: right; /* Align text in the first column to the right */
}

.mwayreviews__btn {
  font-family: Helvetica, Arial, sans-serif;
  font-style: none;
  background-image: linear-gradient(to top, #0000a3 0%, #0067b3 100%);
  padding: 14px 32px;
  border: none;
  border-radius: 200px;
  color: #e2e2e2;
  margin-top: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
  left: 50%;
  transform: translate(-50%);
}

.mwayreviews__btn a {
  position: relative;
  z-index: 2;
  color: #e2e2e2;
  text-decoration: none;
  font-size: 2rem;
}

.mwayreviews__btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #40b0df;
  transition: all 0.35s;
  border-radius: 200px;
}

.mwayreviews__btn:hover {
  color: #e2e2e2;
}

.mwayreviews__btn:hover:after {
  width: 100%;
}

/* Exam */

.countdowns {
    background-color: #ffa56e;
    margin: 0 auto;
	max-width: 1300px;
    padding: 4px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #000000;
    font-family: Helvetica, Arial, sans-serif;
	align-items: center;
	text-align: center;
}

.countdowns a, .countdowns p {
    color: #000000;
    font-family: Helvetica, Arial, sans-serif;
}

.countdowns h2 {
    font-size: 30px; 
}

.countdowns p {
    font-size: 22px;
	font-weight: bold;
}

#past h2 {
    font-size: 20px; 
}

#past p {
    font-size: 16px; 
}



@media screen and (max-width: 768px) {
    .countdowns__container {
        max-width: 100%;
    }

    .countdowns {
        max-width: 100%;
		align-items: left;
		text-align: left;
    }

    .countdowns h2 {
        font-size: 20px; 
    }

    .countdowns p {
        font-size: 16px; 
    }
	
	#past h2 {
        font-size: 14px;
    }

    #past p {
        font-size: 10px;
    }
}
