@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Raleway:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: "syne", serif;
  font-feature-settings: "pnum" on, "lnum" on;
}

h1 {
  font-weight: 800;
}

header {
  display: flex;
  padding: 30px;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  transition: 500ms;
  background-color: #192f59;
  z-index: 1099;
}

.logo-img {
  height: 5em;
}

nav {
  margin-right: 70px;
}

nav ul {
  list-style: none;
  text-align: center;
}

.nav-item {
  display: inline-block;
}

nav ul li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 200;
  margin: 0 2px;
  font-size: 0.8em;
}

.logo {
  flex: 1;
}

a,
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all 0.5s;
}

nav ul li a:hover {
  color: #555;
}

/* stroke */
.btn,
a,
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
  cursor: pointer;
}

.btn:after,
a:after,
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  height: 1px;
}

a:hover:after,
.btn:hover:after,
nav.stroke ul li a:hover:after {
  width: 100%;
}

a,
.btn,
nav.fill ul li a {
  transition: all 2s;
}

a:after,
.btn:after,
nav.fill ul li a:after {
  text-align: left;
  content: ".";
  margin: 0;
  opacity: 0;
}

a:hover,
.btn:hover,
btn nav.fill ul li a:hover {
  color: #fff;
  font-weight: 500;
  z-index: 1;
}

a:hover:after,
.btn:hover:after,
nav.fill ul li a:hover:after {
  z-index: -10;
  animation: fill 1s forwards;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  opacity: 1;
}

/* Keyframes */
@keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #007a4d;
  }
}
.nav-item {
  display: inline-block;
}

.drop-menu {
  position: relative; /* Ensures the dropdown is positioned relative to the parent */
}

.drop-menu ul {
  position: absolute; /* Removes the dropdown from the normal layout flow */
  top: 100%; /* Positions the dropdown right below the parent */
  left: 0; /* Aligns the dropdown to the left of the parent */
  background: #192f59; /* Dropdown background color */
  list-style: none;
  padding: 0;
  width: 15em;
  margin: 0;
  display: none; /* Hidden by default */
  z-index: 1000; /* Ensures the dropdown appears above other content */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* Prevents items from showing outside while animating */
}

.drop-menu ul li {
  padding: 5px 0; /* Add left padding for spacing */
  width: 100%; /* Ensure items take full width */
  text-align: left; /* Align text to the left */
  opacity: 0; /* Start invisible */
  transform: translateX(-50px); /* Start off-screen to the left */
  animation: slideIn 0.5s forwards; /* Animation defined below */
}

.drop-menu ul li:nth-child(1) {
  animation-delay: 0.1s; /* First item delay */
}

.drop-menu ul li:nth-child(2) {
  animation-delay: 0.2s; /* Second item delay */
}

.drop-menu ul li:nth-child(3) {
  animation-delay: 0.3s; /* Third item delay */
}

.drop-menu ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.drop-menu ul li a:hover {
  background: #fff;
  color: #262626;
}

.nav-item:hover > ul {
  display: block; /* Show dropdown when hovering over the parent */
}

.nav-item:hover > ul li {
  font-size: 0.8em;
  opacity: 1; /* Ensure items are visible when hovered */
  animation-play-state: running; /* Start animation on hover */
}

/* Slide-in Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px); /* Start from the left */
  }
  to {
    opacity: 1;
    transform: translateX(0); /* End at normal position */
  }
}
.bgc {
  background: rgba(25, 47, 89, 0.4);
  padding: 10px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bgc .drop-menu ul {
  background: rgba(25, 47, 89, 0.2);
}

.bgc a,
.bgc .drop-menu ul li a {
  color: #f7f8fa;
}

.bgc .logo-img {
  height: 3em;
}

.bgc nav.fill ul li a:hover {
  color: #fff;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding-right: 1em;
  z-index: 1100;
  position: relative;
}

.menu-toggle .bar {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: all 0.3s;
}

.section-2 {
  margin-top: 90vh;
}

.hero {
  min-height: 100vh;
  background: rgba(25, 47, 89, 0.2);
  overflow: hidden;
}

.hero .wrapper {
  margin-top: 15em;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  overflow: hidden;
}

.cols {
  width: calc(33.33% - 27px);
}

.home-col {
  width: 50%;
}

.cols img {
  width: 100%;
}

.cols0 {
  position: relative;
  padding: 3em 0 3em;
}

.topline h1 span {
  font-size: 1.2em;
  text-transform: uppercase;
  color: #007a4d;
}

.topline h1 {
  display: block;
  font-size: 2.8em;
  color: #192f59;
  text-transform: uppercase;
  line-height: 1em;
}

.hero-text {
  color: #192f59;
  font-size: 1.2em;
  margin: 2em 0;
  line-height: 1.5em;
  width: 50%;
}

.btn {
  text-decoration: none;
  color: #007a4d;
  border: 0.5px solid #007a4d;
  padding: 0.7em 1.5em;
  border-radius: 0.5em;
  font-weight: 200;
}

.btn:hover {
  padding: 1em;
}

.imgbox {
  position: relative;
  width: 100%;
  height: 100%;
}

.imgbox img {
  position: relative;
  height: 100%;
  width: 100%;
  right: 50px;
}

@keyframes animateUser {
  50% {
    right: 30px;
    top: -90px;
  }
}
.imgbox #saFlag {
  position: absolute;
  height: 130%;
  width: 130%;
  top: -10%;
}

.imgbox #taxis {
  height: 500px;
  width: auto;
  top: 80%;
  transition: transform 0.3s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 1000px;
  transform-origin: center center;
}

.taxiAd-container {
  background-color: #f8f9fa; /* Match the background color */
  padding: 20px; /* Add some padding */
  text-align: center; /* Center the text */
  border: 1px solid #ddd; /* Add a border */
  border-radius: 5px; /* Add rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  height: 50vh;
}

.taxiAd-container h1 {
  font-size: 24px; /* Match the font size */
  color: #333; /* Match the text color */
  margin: 10px 0;
}

.page-head {
  background: #000000;
  justify-content: center;
  position: relative;
  padding: 10em 3em 1em;
  align-items: center;
}

.page-head__title {
  font-size: 5.5vw;
  color: #fff;
  z-index: 1;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
}

.page-head__title span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px;
}

.about-intro {
  background: url(../img/about-bg.jpg);
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}

.grad-bg {
  background-image: linear-gradient(to right, black, #031029, transparent);
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 5em 0;
}

.about-intro__text {
  width: 30%;
  padding: 5em;
  color: #fff;
  font-weight: 200;
  line-height: 1.5em;
}

.page-section {
  background: rgba(25, 47, 89, 0.2);
}

.abt-second-text {
  width: 80%;
  margin: auto;
}

.abt-second-text p {
  padding: 5em;
  text-align: center;
  font-weight: 200;
  line-height: 1.5;
  color: #192f59;
}

.section-head {
  font-size: 4em;
  color: #007a4d;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.abt-goals {
  color: #192f59;
  width: 100%;
}

.abt-goals h3 {
  margin: 1.5em 0 0;
  text-transform: uppercase;
}

.section_title {
  position: relative;
  margin: 0 0 60px;
  line-height: 0.8;
  font-size: 70px;
  text-align: center;
  color: #007a4d;
  text-transform: uppercase;
}

.section_title .stroke {
  color: transparent;
  -webkit-text-stroke: 1px #007a4d;
}

.section_title-square {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 1px solid #007a4d;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.service_devider .section_title-square {
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #007a4d;
  top: 50%;
  left: 100%;
  right: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.learn_text .section_title {
  text-align: left;
}

.learn-wrapper {
  display: flex;
  justify-content: space-around;
}

.learn-intro-img,
.learn-text {
  width: 50%;
  height: auto;
}

.learn-intro-img {
  height: 100vh;
  min-width: 50vw;
  overflow: hidden;
}

.learn-intro-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.learn_text {
  padding: 0 70px;
  align-items: center;
  top: 50%;
}

.learn-intro__text {
  line-height: 1.4;
  font-size: 3.5vw;
  color: #192f59;
}

.content {
  width: 90%;
  margin: auto;
}

.benefits_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  height: auto;
}

.benefits_title {
  color: #192f59;
  margin: 0.5em 0;
}

.benefits_item {
  list-style: none;
  width: calc(33.33% - 27px);
}

.benefits_num {
  display: inline-block;
  font-size: 60px;
  font-weight: 800;
  color: #007a4d;
}

.benefits_text {
  font-weight: 100;
}

.learn-cards {
  padding: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 100vh;
}

.service_section {
  background: url(../img/service-BG.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.service_wrapper {
  width: 95%;
  margin: auto;
  padding: 5em 0;
}

.service_card {
  align-items: center;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.15);
  padding: 2.5em;
  border-radius: 1.5em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.service_card_top:first-child {
  opacity: 1 !important;
  transform: none !important;
}

.service_card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
}

.service_card_top {
  display: flex;
  gap: 5vw;
  align-items: center;
}

.service_icon {
  width: 6em;
  transition: transform 0.3s ease;
}

.service_icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.service_title {
  color: #192f59;
  margin: 0.5em 0;
  transition: color 0.3s ease;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.service_title:hover {
  color: #007a4d;
}

.service_more_info {
  margin-top: 3em;
  color: #007a4d;
  font-size: 0.8em;
  font-weight: 600;
  font-style: italic;
}

.service_more_info a {
  color: #192f59;
  text-decoration: none;
}

.service_more_info a:hover {
  color: #f0f0f0;
  padding: 0.2em;
}

.service_devider {
  margin: 5em auto;
  width: 70%;
  height: 2px;
  background: rgba(130, 151, 33, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 1px;
}

.service_devider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.form_dis {
  width: 70%;
  margin: 5em auto;
}

.form_dis p {
  color: #f7f8fa;
  text-align: center;
}

.projects {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/projectsBG.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

.contactUs {
  width: 80%;
  margin: 5em auto 0;
}

.feedback,
.projects {
  padding-bottom: 5em;
}

.contactRow {
  display: flex;
}

.contactCol {
  flex-basis: 48%;
  margin-bottom: 30px;
  margin-right: 2em;
}

.contactCol div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contactCol div .fa {
  font-size: 1em;
  color: #fff;
  margin: 10px;
  margin-right: 30px;
}

.contactCol div a,
.contactCol div p {
  text-decoration: none;
  color: #fff;
  font-weight: 100;
  transition: all 0.3s ease;
}

.contactCol div a:hover,
.contactCol div .fa:hover {
  padding: 1em;
  color: #ffb612;
  font-weight: 300;
}

.contactHeader {
  display: inline-flex;
}

.contactCol div h3 {
  font-weight: 700;
  color: #fff;
}

.contactCol input,
.contactCol textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 0px;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

footer {
  width: 100%;
  position: absolute;
  background: linear-gradient(to right, #000, #192f59);
  color: #fff;
  padding: 6.25em 0 1.875em;
  border-top-left-radius: 7.8em;
  margin-top: 2em;
}

footer .row {
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: self-start;
  justify-content: space-between;
}

footer .col {
  flex-basis: 25%;
  padding: 0.65em;
}

footer .col:nth-child(2),
footer .col:nth-child(3) {
  flex-basis: 15%;
}

.footerLogo {
  width: 10em;
  height: 100%;
  margin: -7em 0 0;
}

footer .col h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2em;
  position: relative;
  font-weight: 300;
}

.underline {
  width: 100%;
  height: 1px;
  background: #767676;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}

.underline span {
  width: 15px;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moving 2s linear infinite;
}

@keyframes moving {
  0% {
    left: -20px;
  }
  100% {
    left: 100%;
  }
}
footer .col p {
  font-size: 1em;
  font-weight: 200;
}

.emailFooter {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #fff;
  margin: 20px 0;
}

.footerItem {
  list-style: none;
}

.footerItem a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 0.8em;
  font-weight: 200;
  cursor: pointer;
}

.addressLink {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 0.8em;
  font-weight: 200;
  cursor: pointer;
  transition: all 0.3s ease;
}

.addressLink:hover,
.footerItem a:hover {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #fff;
  margin: 20px 0;
}

hr {
  width: 90%;
  border: 0;
  border-bottom: 0.5px solid #ccc;
  margin: 20px auto;
}

.bottomFooter {
  padding: 0.3em 0;
}

.copyright {
  text-align: center;
  font-size: 0.8em;
  font-weight: 200;
}

.service_text {
  color: #192f59;
  font-weight: 400;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.feedback-container {
  width: 80%;
  margin: 2em auto;
  padding: 2em;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.5em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-form {
  width: 90%;
}
.feedback-form .form-row {
  display: flex;
  gap: 5em;
  margin-bottom: 2em;
}
.feedback-form .form-group {
  position: relative;
  flex: 1;
}
.feedback-form .form-group.full-width {
  width: 100%;
}
.feedback-form .form-group input,
.feedback-form .form-group textarea {
  width: 100%;
  padding: 1em;
  background: rgba(4, 25, 83, 0.5);
  border: none;
  border-radius: 0.5em;
  font-size: 1em;
  transition: all 0.3s ease;
  color: #fff;
}
.feedback-form .form-group input:focus,
.feedback-form .form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #007a4d;
}
.feedback-form .form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.feedback-form .form-group label {
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: #817a7a;
  pointer-events: none;
  transition: all 0.3s ease;
}
.feedback-form .form-group textarea ~ label {
  top: 1em;
  transform: translateY(0);
}
.feedback-form .form-group input:focus ~ label,
.feedback-form .form-group textarea:focus ~ label,
.feedback-form .form-group input:valid ~ label,
.feedback-form .form-group textarea:valid ~ label {
  top: -0.5em;
  left: 0.5em;
  font-size: 0.85em;
  padding: 0 0.5em;
  background: #007a4d;
  color: white;
  border-radius: 0.3em;
}
.feedback-form .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #007a4d;
  color: white;
  border: none;
  padding: 1em 2em;
  border-radius: 0.5em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1em;
}
.feedback-form .btn:hover {
  background: #192f59;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.feedback-form .btn i {
  transition: transform 0.3s ease;
}
.feedback-form .btn:hover i {
  transform: translateX(5px);
}

.feedback {
  min-height: 100vh;
  padding-bottom: 5em;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/contact-BG.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-100vh);
  z-index: 9999;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #4CAF50;
  transition: transform 0.5s ease-in-out;
  min-width: 300px;
  text-align: center;
}
.notification.show {
  transform: translate(-50%, -50%);
}
.notification .notification-content {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.notification .notification-content i {
  margin-right: 10px;
  font-size: 20px;
}
.notification .notification-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.notification.error {
  background-color: #f44336;
}
.notification.info {
  background-color: #2196F3;
}

.bold_text {
  font-weight: 800;
}

.documents-head {
  min-height: 30vh;
  padding-bottom: 5em;
  width: 100%;
  background: linear-gradient(to bottom, rgba(25, 47, 89, 0), rgba(25, 47, 89, 0.5), rgba(25, 47, 89, 0.98)), url(../img/documents.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
}

.documents__title {
  padding: 2em;
  color: #fff;
  bottom: 5%;
  text-transform: uppercase;
  font-size: 2em;
}

.tab-container {
  width: 70%;
  margin: 3rem auto 3rem auto;
}

.tab-filter-container {
  padding: 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.filter-btn {
  display: inline-flex;
  padding: 0.8rem 2.5rem;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #a9a1a1;
}

.filter-btn.active {
  background: #007a4d;
  color: #fff;
}

.tab-filter-item-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 1.5em;
  border-bottom-right-radius: 1.5em;
}

.tab-item {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0rem;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  display: grid;
  background: rgba(4, 2, 32, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 32px 32px 0 rgba(31, 38, 135, 0.15);
  grid-template-columns: repeat(auto-fit, minmax(1rem, 1fr));
  place-items: center start;
}

.tab-img {
  width: 100%;
}

.tab-heading {
  padding: 2rem 0;
  font-size: 3rem;
}

.tab-item.select_tab {
  transform: translateY(0);
  transition: transform 0.5s ease-in-out;
  animation: feadIn 0.6s ease-in-out;
}

@keyframes feadIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.document_list {
  text-decoration: none;
  list-style-type: none;
  width: 100%;
  font-weight: 100;
}

.document_item {
  text-decoration: none;
  list-style: none;
  color: #ccc;
  font-weight: 100;
  padding: 1em;
  margin: 0.5em;
  border-bottom: #192f59 1px solid;
  width: 100%;
  font-weight: 100;
}

.document__link {
  text-decoration: none;
  list-style: none;
  font-size: 1em;
  font-weight: 100;
  color: #ccc;
  cursor: pointer;
}

.email-template {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
.email-template .container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.email-template .header {
  text-align: center;
  padding: 20px 0;
  background: rgba(25, 47, 89, 0.4);
  border-radius: 5px 5px 0 0;
}
.email-template .header img {
  height: 5em;
  width: auto;
}
.email-template h2 {
  color: #192f59;
  font-size: 2em;
  margin: 2em 0;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}
.email-template .content {
  padding: 20px;
  border: #031029 solid 1px;
}
.email-template .message-box {
  border: #031029 solid 1px;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 5px;
  margin-top: 400px;
  margin: 15px 0;
}
.email-template .footer {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 14px;
  border-top: 1px solid #eee;
}
.email-template .footer a {
  color: #192f59;
  text-decoration: none;
}
.email-template .footer a:hover {
  text-decoration: underline;
}
.email-template .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #192f59;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}
.email-template .btn:hover {
  background-color: #0e1a31;
}
.email-template p {
  margin-bottom: 1em;
  color: #333;
}
.email-template strong {
  color: #222;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */