@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  background-color: #DEE1E6;
}

img {
  max-width: 10%;
}

h2 {
  font-size: 36px;
  color: #3589ea;
  margin: 0;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 60px;
  }
}

h3 {
  font-size: 30px;
  color: #A91E50;
  margin: 0;
}
@media (min-width: 768px) {
  h3 {
    font-size: 40px;
  }
}

blockquote {
  font-size: 1.4em;
  margin: 15px auto;
  font-style: italic;
  color: #555555;
  padding: 1.2em 30px 1.2em 75px;
  border-left: 8px solid #A91E50;
  line-height: 1.6;
  position: relative;
  background: #DEE1E6;
}
blockquote::before {
  content: "“";
  color: #A91E50;
  font-size: 4em;
  position: absolute;
  left: 10px;
  top: -10px;
}

ol li, ul li {
  opacity: 1;
  visibility: visible;
}

header#site-header {
  background: #3c3cd4;
  padding: 10px 15px;
}
header#site-header nav {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  z-index: 10;
  transition: all 0.3s;
}

header#site-header nav #brand #logo {
    width: auto; /* Let the width adjust based on the content */
    height: 40px; /* Set a fixed height to maintain consistency */
    border-radius: 50%; /* Make it round */
    overflow: hidden; /* Ensure the image fits within the rounded container */
    cursor: pointer;
}

header#site-header nav #brand #logo img {
    width: 100%; /* Ensure the image fills the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any default inline spacing */
}

header#site-header nav #brand #logo {
    width: 60px;
    height: 60px; /* Add height to make it a perfect circle */
    border-radius: 50%; /* Make it round */
    overflow: hidden; /* Ensure the image fits within the rounded container */
    cursor: pointer;
}

header#site-header nav #brand #logo img {
    max-width: 100%; /* Ensure the image fits within the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any default inline spacing */
}

@media (min-width: 768px) {
    header#site-header nav #brand #logo img {
      max-width: 80px;
    }
}

header#site-header nav #menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

ul {
  display: flex;
  align-items: center;
}
ul li {
  list-style: none;
}

li:last-child a {
  margin-right: 0;
}
li a {
  font-family:  'Helvetica', Arial, sans-serif;
  display: block;
  color: #090942;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 700;
  transition: color 0.4s ease-in;
}
li a:hover {
  color: #cfcfcf;
}
@media (min-width: 768px) {
  li a {
    color: #FFFFFF;
    margin-right: 30px;
  }
}

#menu-toggle {
  width: 55px;
  height: 55px;
  background: #bec0bf;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
#menu-toggle:hover .bar {
  width: 25px;
}

#menu-toggle.closeMenu .bar {
  width: 25px;
}
#menu-toggle.closeMenu .bar:first-child {
  transform: translateY(7px) rotate(45deg);
}
#menu-toggle.closeMenu .bar:nth-child(2) {
  transform: scale(0);
}
#menu-toggle.closeMenu .bar:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.bar {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}
.bar:last-child {
  width: 15px;
}

@media screen and (max-width: 767px) {
  #menu-toggle {
    display: flex;
  }
  ul {
    display: inline-block;
    width: 100vw;
    height: 0;
    position: absolute;
    top: 75px;
    background: hsla(0, 0%, 100%, 0.75);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }
  ul.menu-links.showMenu {
    height: 100dvh;
    padding: 30px 0 0;
  }
  ul.menu-links.showMenu li {
    padding: 15px 0;
    opacity: 1;
    visibility: visible;
  }
  ul.menu-links li {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
  }
}
#contact {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
  }
  
  .contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff; /* Add background color */
  }
  
  .contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #8b8484; /* Change background color */
    padding: 20px; /* Add padding */
  }
  
  .greeting {
    flex: 1;
    text-align: center;
    margin-right: 20px;
    color: #333; /* Change color */
    margin-top: 150px;
  }
  
  .contact-form {
    flex: 1;
    text-align: left;
    margin-left: 20px;
    background-color: #fff; /* Add background color */
    padding: 20px; /* Add padding */
  }
  
  .contact-form h4 {
    color: #5f0707; /* Change color */
  }
  
  
  .contact-form form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
  }
  
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .contact-form button[type="submit"] {
    background-color: #121312;
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .contact-form button[type="submit"]:hover {
    background-color: #1f201f;
  }
footer.footer {
  background-color: #3b3952;
  padding: 90px 0 0;
}
footer.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  footer.footer .footer-container {
    display: flex;
    justify-content: space-between;
  }
}
footer.footer .footer-container p, footer.footer .footer-container a, footer.footer .footer-container h4 {
  color: #FFFFFF;
}
footer.footer .footer-container h4 {
  margin: 0 0 10px;
}
footer.footer .footer-container p, footer.footer .footer-container a {
  font-size: 16px;
}
footer.footer .footer-container img {
  max-width: 200px;
}
footer.footer .footer-container img.visiting-card {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Center the image horizontally */
}
  
footer.footer .footer-container .footer-col {
  margin: 0 15px 60px;
  padding: 30px;
  border-radius: 4px;
  background: #5b51b4;
  box-shadow: 2px 2px 2px #5b51b4;
  box-shadow: inset 2px 2px 2px #5b51b4(0, 0%, 100%, 0.25), inset -2px -2px 2px #5b51b4(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  footer.footer .footer-container .footer-col {
    flex-basis: 32%;
  }
}
footer.footer .footer-container .footer-col ul li {
  list-style: none;
}
footer.footer .bottombar {
  padding: 20px 15px;
  background-color: #07140a;
  text-align: center;
  font-style: italic;
  color: #FFFFFF;
  font-size: 0.9em;
  font-weight: 300;
}

/*# sourceMappingURL=test.css.map */
