:root {
  --primary-color: #0000ff;
  --background-color: #ffffff;
  --background-color-2: #f0f0f0;
  --secondary-color: #ffffff;
  --text-color: #000000;
  --text-color-2: #000000;
  --font-family: "Montserrat", sans-serif;
  --hover-transition: .5s;
}

::selection {
  background-color: blue;
  color: black;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 15px;
  overscroll-behavior: none;
  font-weight: 500;
  visibility: hidden;
}

.page-container {
  transition: filter .3 ease-in-out;
  overscroll-behavior: contain;
}

.page-container.mega-menu-open {
  filter: grayscale(10%) brightness(60%);
}


.notification-bar {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.notification-bar .notification-link {
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
}

.notification-bar p {
  margin: 0;
}

.notification-bar .close-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 1rem;
  margin-left: auto;
  padding: 0.25rem;
}
.navbar {
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
  background-color: var(--background-color);
  box-sizing: border-box;
  box-shadow: 0 1px #75757533;
  top: 0;
  opacity: 0;
  margin-bottom: 0;
  position: sticky;
  z-index: 1000;
}

.page-loaded .navbar {
  opacity: 1;
  transition: opacity 1s ease-out;
  transition-delay: .5s;
}

.nav-img {
  box-sizing: border-box;
  height: 35px;
  user-select: none;
  margin-top: 5px;
}

.navbar ul {
  display: flex;
  box-sizing: border-box;
  gap: 24px;
  margin-bottom: 0;
  list-style-type: none;
}

.navbar ul li a {
  box-sizing: border-box;
  text-decoration: none;
  color: var(--text-color);
  transition: color .5s ease-out;
  font-size: 15px;
}

.navbar ul li {
  padding-bottom: 15px;
}

.navbar ul li a:hover {
  box-sizing: border-box;
  color: var(--primary-color);
}

.contact {
  margin-right: 6.25rem;
}

.navbar ul li a i {
  margin-left: 5px;
  scale: 0.75;
}

.mega-menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  width: 90%;
  margin-left: 45px;
  margin-right: 1.875rem;
  border-radius: 0.25rem;
  padding: 1.25rem;
  left: 0;
  transform: translateY(12.5rem);
  z-index: 10;
  justify-content: space-between;
  transition: opacity .5s ease-out, visibility .5s ease-out, transform .5s ease-out;
  margin-top: 5px;
}

.mega-menu.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mega-menu-column h3 {
  color: #898989;
  font-size: 15px;
}

.mega-menu-link-heading {
  font-weight: bold;
  margin-bottom: 0;
  transition: color .5s ease-out;
  color: var(--text-color);
}

.mega-menu-link-description {
  margin-top: 5px;
  color: #5a5a5a;
}

a {
  text-decoration: none;
}

.mega-menu-column {
  flex: 1;
  padding-right: 1.25rem;
  margin-right: 1.25rem;
  border-right: 1px solid #f1f1f1;
}

.mega-menu-column:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.mega-menu-link-heading:hover {
  color: var(--primary-color);
}

.mega-menu-link-icon img {
  height: 32px;
}

.mega-menu-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
}

.mega-menu-link {
  border-bottom: 2px solid white;
  transition: border-bottom .5s ease-out;
}

.mega-menu-link.active {
  border-bottom: 2px solid blue;

  .nav-services a {
    color: var(--primary-color);
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in-out, visibility 0s linear .3s;
  cursor: pointer;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease-in-out, visibility 0s linear 0s;
}

.navbar-btn button {
  background-color: var(--primary-color);
  padding: 0.625rem 1.25rem;
  border-radius: 1.875rem;
  border: none;
  font-size: inherit;
  font-family: var(--font-family);
  transition: background-color 0.5s ease-out;
  color: white;
  font-weight: 500;
}

.navbar-btn button:hover {
  background-color: rgb(0, 0, 150);
}

.navbar-btn {
  align-content: center;
  margin-right: 1.25rem;
  margin-bottom: 5px;
}

/* End Of Navbar */
/* Beginning Of Section 1 */
.description {
  font-weight: normal;
  font-size: 1.25rem;
  color: white;
  margin-top: 0;
  margin-bottom: 25px;
  transform: translateY(18.75rem);
  opacity: 0;
}

.page-loaded .description {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.section_1 {
  padding-left: 3.125rem;
  padding-top: 8.5rem;
  padding-bottom: 4.25rem;
  background-image: url(images/hero-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  margin-top: 0;
}

@media screen and (max-width: 600px) {
  .section_1 {
    display: flex;
    flex-direction: column;
  }

  .paragraph1 {
    height: 45%;
  }
}

.motto1 {
  font-size: 65px;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
  color: white;
  margin-top: 0;
}

.motto-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: default;
  transform: translateY(18.75rem);
  opacity: 0;
}

.page-loaded .motto-container {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s ease-out .5s, opacity 1s ease-out .5s;
}

.motto-container .motto1 .word-holder .title-character,
.motto-container .motto2 .word-holder .title-character {
  opacity: 0;
}

.page-loaded .motto-container .motto1 .word-holder .title-character,
.page-loaded .motto-container .motto2 .word-holder .title-character {
  opacity: 1;
  transition: opacity 1s ease-out;
}

.motto2 {
  font-size: 65px;
  color: white;
  margin-top: 0;
  font-weight: 600;
  margin-bottom: 0;
}

.word-holder {
  white-space: nowrap;
  display: inline-flex;
}

.paragraph1 {
  overflow-wrap: break-word;
  width: 50rem;
  flex-wrap: wrap;
  color: white;
  text-size-adjust: 100%;
  transform: translateY(18.75rem);
  opacity: 0;
}

.page-loaded .paragraph1 {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s ease-out 1s, opacity 1s ease-out 1s;
}

.button {
  background-color: transparent;
  color: white;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 0.625rem;
  border: 2px solid white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 1em;
  margin-top: 1.25rem;
  font-family: var(--font-family);
  height: 64px;
  animation: htcc-reverse .5s forwards;
  transition: border .5s ease-out;
}

.button .arrow img {
  border-radius: 0.625rem;
}

.button:hover {
  border: 2px solid blue;
  transition: border .5s ease-out;
  animation: hover-text-color-change .5s ease-out forwards;
}

.arrow img {
  max-width: 1.25rem;
  height: 1.25rem;
  background-color: white;
  border-radius: 50%;
  margin-right: 1em;
  border: 0.625rem solid white;
}

@keyframes htcc-reverse {
  from {
    background-color: blue;
  }

  to {
    background-color: transparent;
  }
}

@keyframes hover-text-color-change {
  from {
    background-color: transparent;
  }

  to {
    background-color: blue;
  }
}

/* End Of Top Section */
/* Beginning Of About Section */

.about_section {
  background: var(--background-color-2);
  align-content: center;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 1.125rem;
  padding-bottom: 6.25rem;
}

.about_article {
  color: var(--text-color);
  align-items: flex-start;
  margin-top: 8.25rem;
  margin-right: 1.875rem;
}

.about_article h1 {
  font-size: 65px;
  margin-bottom: 0;
  padding-bottom: 0;
  user-select: none;
  font-weight: 600;
  color: var(--text-color-2);
}

.about_article h2 {
  font-size: 65px;
  color: var(--text-color-2);
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 600;
  user-select: none;
}

.about_article h3 {
  font-size: 65px;
  color: var(--text-color-2);
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 600;
  user-select: none;
}

.about_article h1 .word-holder .title-character,
.about_article h2 .word-holder .title-character,
.about_article h3 .word-holder .title-character {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.visible .about_article h1 .word-holder .title-character,
.visible .about_article h2 .word-holder .title-character,
.visible .about_article h3 .word-holder .title-character {
  opacity: 1;
  transition: opacity 1s ease-out;
}

.about-img {
  width: 25.125rem;
  height: auto;
  margin: 13.125rem 0px 0px 2.125rem;
  border-radius: 0.625rem;
  opacity: 0;
  transform: translateY(6.25rem);
}

.visible .about-img {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out, display 2s ease-out;
}

.about_article p {
  max-width: 25rem;
  text-align: left;
  opacity: 0;
  transform: translateY(6.25rem);
  color: var(--text-color-2);
}

.visible .about_article p {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.about_article .button {
  border: 2px solid #000000;
  color: var(--text-color);
  opacity: 0;
  transform: translateY(6.25rem);
}

.about_article .button:hover {
  border: 2px solid #0000ff;
}


.visible .about_article .button {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* End Of About Section */
/* Beginning Of Services Section */

.services_section {
  padding-bottom: 6.25rem;
}

.services-header h1 {
  font-size: 65px;
  font-weight: normal;
  color: var(--text-color);
  padding-top: 6.25rem;
  margin-bottom: 0px;
  text-align: center;
  user-select: none;
}

.services-list {
  display: flex;
  gap: 1.25rem;
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  margin-top: 3.125rem;
}

.services-list-2 {
  display: flex;
  gap: 1.25rem;
  margin-top: 6.25rem;
  margin-left: 1.875rem;
  margin-right: 1.875rem;
}

.service-info {
  max-width: 25rem;
  border-top: 1px solid #2b2b2b;
  padding-left: 9px;
  padding-right: 0.625rem;
  padding-top: 5px;
  opacity: 0;
  color: var(--text-color);
  transform: translateY(12.5rem);
}

.service-info div p img {
  max-width: 15px;
  height: 15px;
  margin-left: 5px;
  border-radius: 50%;
}

.visible .service-info {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.type_of_service a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
  font-family: var(--font-family);
  transition: color .5s ease-out;
}

.type_of_service a::after {
  content: "\2192";
  font-family: "Raleway", sans-serif;
  margin-left: 1.25rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity .5s ease-out, margin-left .5s ease-out;
  font-size: 130%;
}

.type_of_service a:hover {
  color: #0000ff;
}

.service-icon {
  width: 32px;
}

.img-and-service {
  display: flex;
  gap: 0.625rem;
  align-self: center;
  align-items: center;
}

.type_of_service a:hover::after {
  opacity: 1;
  margin-left: 5px;
}

.services-header h1 .word-holder-2 .title-character,
.services-header h1 .word-holder-2 .title-character {
  opacity: 0;
}

.visible .services-header h1 .word-holder-2 .title-character,
.visible .services-header h1 .word-holder-2 .title-character {
  opacity: 1;
  transition: opacity 1s ease-out;
}

.services-header h1 .word-holder .title-character,
.services-header h1 .word-holder .title-character {
  opacity: 0;
}

.visible .services-header h1 .word-holder .title-character,
.visible .services-header h1 .word-holder .title-character {
  opacity: 1;
  transition: opacity 1s ease-out;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  cursor: default;
  user-select: none;
}

.learn-more img {
  border-radius: 50%;
  margin-right: 5px;
  padding: 0.625rem 0.625rem;
  background-color: #e5e5e5;
}

footer {
  background-color: #000000;
  color: #898989;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.footer-content {
  display: flex;
  gap: 3.125rem;
  justify-content: space-between;
  border-bottom: 1px solid #2b2b2b;
  margin-right: 3.125rem;
  margin-left: 3.125rem;
  padding-bottom: 2.5rem;
}

.footer-links-container {
  display: flex;
  flex-direction: row;
  gap: 6.25rem;
  justify-content: space-between;
  margin-right: 3.125rem;
}

.footer-img {
  height: 35px;
  margin-left: 1.875rem;
}

.footer-links h3 {
  margin-left: 2.5rem;
  padding-bottom: 0.625rem;
  color: #ffffff;
  font-size: 15px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #898989;
  font-size: 15px;
}

.footer-links ul li a:hover {
  color: #ffffff;
  transition: color .1s ease-out;
}

.footer-links ul {
  list-style-type: none;
  gap: 23px;
  display: flex;
  flex-direction: column;
}

.footer-social-media {
  width: 25px;
  transition: transform .15s ease-out;
}

.footer-social-media:hover {
  transform: scale(1.2, 1.2);
  transition: transform .15s ease-out;
}

.footer-social-links h3 {
  padding-bottom: 0.625rem;
  color: #ffffff;
  font-size: 15px;
}

.footer-social-img {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  margin-top: 1.875rem;
}