html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0;  }
  to { opacity: 1;}
}


.animate-on-scroll {
  opacity: 1; /* Temporarily set opacity to 1 for debugging */
  transform: translateY(0px); /* No translation, show in normal position */
  visibility: visible; /* Make sure the element is visible */
  transition: visibility 0s 1s, opacity 1s linear, transform 1s;
}
/* Define the keyframes for the "fade-in-up" animation */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* The class that gets added by the Intersection Observer API when element is in view */
.animate-on-scroll-visible {
  visibility: visible; /* Elements become visible */
  animation: fade-in-up 1s forwards; /* Run the animation and maintain the last frame state */
  transition-delay: 0s; /* Apply transitions immediately */
}





/* Class to apply to your body or main content container */
.fade-in {
  animation-name: fadeIn;
  animation-duration: 1s; /* Or however long you want the fade to be */
  animation-fill-mode: both; /* Ensures the final state (opacity: 1) is maintained after the animation completes */
}













.header-navigation a:hover,
.header-navigation .language-select select {
  font-family: 'Playful Despair', sans-serif; /* Updated the font-family here for hovered links and selects */
}


header {
  background-color: black;
  color: white;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10; 
}

.top-header {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  padding: 10px 0;
}

.sroheadertext {
  text-align: center;
  padding: 10px;
  font-size: 35px;
  flex-grow: 1;
  font-family: 'Playful Despair', sans-serif; /* Updated the font-family here */
}

@media screen and (max-width: 1150px) {

  .sroheadertext {
    font-size: 30px;
  }
}

@media screen and (max-width: 1100px) {

    .sroheadertext {
      font-size: 27px;
    }
}

@media screen and (max-width: 950px) {


  .sroheadertext {
    font-size: 24px;
  }
}

@media screen and (max-width: 840px) {

  .sroheadertext {
    font-size: 22px;
  }
}

@media screen and (max-width: 750px) {
  
  .sroheadertext {
    font-size: 22px;
  }

}

@media screen and (max-width: 700px) {
  .sroheadertext {
    font-size: 20px;
  }

}

@media screen and (max-width: 550px) {
  .sroheadertext {
    font-size: 18.5px;
  }

}

@media screen and (max-width: 500px) {
  .sroheadertext {
    font-size: 16px;
  }

}

@media screen and (max-width: 455px) {
  .sroheadertext {
    font-size: 14px;
  }

}

@media screen and (max-width: 400px) {
  .sroheadertext {
    font-size: 13px;
  }

}

@media screen and (max-width: 375px) {
  .sroheadertext {
    font-size: 13px;
  }

}

@media screen and (max-width: 350px) {
  .sroheadertext {
    font-size: 12px;
  }

}

@media screen and (max-width: 320px) {
  .sroheadertext {
    font-size: 11px;
  }

}

.header-navigation {
  width: 100%; /* Navigation bar spans the full width */
  background-color: #9d9fa3; /* Dark gray background */
  display: flex;
  justify-content: center; /* Center navigation links */
  padding: 5px 0; /* Reduced vertical padding for a smaller bar */
}

.header-navigation a {
  color: black;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 20px;
  margin: 0 20px;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: none;  /* Disables transition effects on hover */
}



/* Ensures that there are no hover effects */
.header-navigation a:hover {
  color: black; /* Keeps the color the same as the non-hover state or changes it if you want a different hover color */
  background-color: transparent; /* Ensures the background doesn't change on hover */
  text-decoration: none; /* Ensures no underline or other text decoration on hover */
}


/* Apply the same styles to both the links and the language select */
.header-navigation a,
.header-navigation .language-select select {
  color: black; /* or any color you have for your links */
  padding: 5px 10px;
  text-decoration: none;
  font-size: 20px; /* The font size of your navigation links */
  background-color: transparent; /* Or any other styles you have for your links */
  border: none; /* Assuming you don't want borders on your select */
  -webkit-appearance: none; /* Removes default browser styling */
  -moz-appearance: none;
  appearance: none;
}

/* Additional custom styles for the select element */
.header-navigation .language-select select {
  cursor: pointer; /* To indicate the element is selectable */
}

/* Custom dropdown arrow */
.header-navigation .language-select::after {
  content: '▼';
  position: absolute;
  left: 90%; /* Adjust as necessary */
  top: 50%; /* Center vertically within the select */
  transform: translateY(-50%);
  pointer-events: none; /* Makes it non-interactive */
  color: black; /* Same color as your link text for consistency */
  font-size: 0.8em; /* Smaller than the text to not dominate the visuals */
}

/* Container for the select to position the custom arrow correctly */
.header-navigation .language-select {
  position: relative;
  display: inline-block; /* Treat it as an inline element with block capabilities */
}

/* You might need to adjust the line-height if your select is not aligning well vertically */
.header-navigation .language-select select {
  line-height: normal; /* or any specific value that matches your navbar's height */
}

@media (max-width: 800px) {
  .header-navigation .language-select::after {
    content: '▼';
    position: absolute;
    left: 90%; /* Adjust as necessary */
    top: 50%; /* Center vertically within the select */
    transform: translateY(-50%);
    pointer-events: none; /* Makes it non-interactive */
    color: black; /* Same color as your link text for consistency */
    font-size: 0.55em; /* Smaller than the text to not dominate the visuals */
  }

  #language-dropdown {
    font-size: 20px;
  }
}


@media (max-width: 650px) {
  #language-dropdown {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  #language-dropdown {
    font-size: 13px;
  }
}

@media (max-width: 550px) {
  .header-navigation .language-select::after {
    content: '▼';
    position: absolute;
    left: 90%; /* Adjust as necessary */
    top: 52%; /* Center vertically within the select */
    transform: translateY(-50%);
    pointer-events: none; /* Makes it non-interactive */
    color: black; /* Same color as your link text for consistency */
    font-size: 6px; /* Smaller than the text to not dominate the visuals */
  }

  #language-dropdown {
    font-size: 12px;
  }
}

@media (max-width: 425px) {
  #language-dropdown {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  #language-dropdown {
    font-size: 10px;
  
  }

  .language-select {
    margin-top: -0.1% !important;
  }

  
}
@media screen and (max-width: 750px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 18px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 650px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 16px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 600px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 13px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 550px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 12px;
    margin: 0 10px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 500px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 12px;
    margin: 0 10px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 450px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 12px;
    margin: 0 10px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 430px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 11px;
    margin: 0 7.5px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 360px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 10px;
    margin: 0 7.5px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 350px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 10px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 340px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 9px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 315px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 9px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}











.contactustext {
  text-align: center;
  font-weight: bold;
  font-family: "Lexend", sans-serif;
  font-size: 25px;
 margin-top: 5%;
  
}

@media (max-width: 475px) {
  .contactustext p {
  font-size: 17px !important;

}
}

@media (max-width: 450px) {
  .contactustext p {
  font-size: 15px !important;

}
}

@media (max-width: 425px) {
  .contactustext p {
  font-size: 12px !important;

}
}

@media (max-width: 320px) {
  .contactustext p {
  font-size: 10px !important;

}
}

@media (max-width: 600px) {
   .safari-browser .contactustext {
      font-size: 18px !important; /* Adjust the font size as needed */
 
  }
}



.contactuspicture {
  margin-top: 1.5%;
}


@media (max-width: 1200px) {
  .contactuspicture {
    margin-top: 2.5%;
  }
}

@media (max-width: 1100px) {
  .contactuspicture {
    margin-top: 2.5% !important;
  }
}

@media (max-width: 700px) {
  .contactuspicture {
    margin-top: 1.5% !important;
  }
}

@media (max-width: 600px) {
  .contactuspicture {
    margin-top: 0% !important;
  }
}

@media (max-width: 500px) {
  .contactuspicture {
    margin-top: -1% !important;
  }
}


@media (max-width: 450px) {
  .contactuspicture {
    margin-top: -2% !important;
  }
}





.contactuspicture img {
width: 100%;
height: AUTO;
margin-top: 110px;
}

@media (max-width: 1100px) {
  .contactuspicture {
    margin-top: -1%;
  }
}

@media (max-width: 700px) {
  .contactuspicture {
    margin-top: -2%;
  }
}

@media (max-width: 600px) {
  .contactuspicture {
    margin-top: -3%;
  }
}

@media (max-width: 550px) {
  .contactuspicture {
    margin-top: -4%;
  }
}

@media (max-width: 500px) {
  .contactuspicture {
    margin-top: -4%;
  }
}

@media (max-width: 455px) {
  .contactuspicture {
    margin-top: -5%;
  }
}

@media (max-width: 450px) {
  .contactuspicture {
    margin-top: -5%;
  }
}
@media (max-width: 450px) {
  .contactuspicture {
    margin-top: -5%;
  }
}

@media (max-width: 400px) {
  .contactuspicture {
    margin-top: -6%;
  }
}

@media (max-width: 360px) {
  .contactuspicture {
    margin-top: -7%;
  }
}

@media (max-width: 350px) {
  .contactuspicture {
    margin-top: -7.5%;
  }
}

@media (max-width: 330px) {
  .contactuspicture {
    margin-top: -8%;
  }
}

@media (max-width: 325px) {
  .contactuspicture {
    margin-top: -8.5%;
  }
}





@media (max-width: 900px) {
  .content {
    margin-top: -5%;
  }
}

@media (max-width: 600px) {
  .content {
    margin-top: -10%;
  }
}












.footer-section a, .footer-section a:hover {
  color: white; /* Ensures that text color is white */
  text-decoration: none; /* Removes underline */
}

.footer-section h4 a, .footer-section h4 a:hover {
  color: white; /* Ensures that header links in footer are white */
}



body {
  font-family: 'Playful Despair', sans-serif;
  background-color: #fff;
 
  color: #8c8c8c;
  position: relative; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Playful Despair', sans-serif;
  color: #000; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.text-black {
  color: #000; }

.content {
  padding: 7rem 0; }

.heading {
  font-size: 2.5rem;
  font-weight: 900; }
  body {
    line-height: normal; /* or any other specific value you want */
  }
.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  background: none; }
  .form-control:active, .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #000; }

.col-form-label {
  color: #000;
  font-size: 13px; }

.btn, .form-control, .custom-select {
  height: 45px;
  border-radius: 0; }

.custom-select {
  border: none;
  border-bottom: 1px solid #ccc;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0; }
  .custom-select:active, .custom-select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #000; }

.btn {
  border: none;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: .2rem;
  text-transform: uppercase;
  border-radius: 30px !important; }
  .btn.btn-primary {
    border-radius: 30px;
    background: #ef4339;
    color: #fff;
    -webkit-box-shadow: 0 15px 30px 0 rgba(239, 67, 57, 0.2);
    box-shadow: 0 15px 30px 0 rgba(239, 67, 57, 0.2); }
  .btn:hover {
    color: #fff; }
  .btn:active, .btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none; }

.contact-wrap {
  -webkit-box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #efefef; }
  .contact-wrap .col-form-label {
    font-size: 14px;
    color: #b3b3b3;
    margin: 0 0 10px 0;
    display: inline-block;
    padding: 0; }
  .contact-wrap .form, .contact-wrap .contact-info {
    padding: 40px; }
  .contact-wrap .contact-info {
    color: rgba(255, 255, 255, 0.5); }
    .contact-wrap .contact-info ul li {
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.5); }
      .contact-wrap .contact-info ul li .wrap-icon {
        font-size: 20px;
        color: #fff;
        margin-top: 5px; }
  .contact-wrap .form {
    background: #fff; }
    .contact-wrap .form h3 {
      color: #000;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 30px; }
  .contact-wrap .contact-info {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
    .contact-wrap .contact-info a {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
    @media (max-width: 1199.98px) {
      .contact-wrap .contact-info {
        height: 400px !important; } }
    .contact-wrap .contact-info h3 {
      color: #fff;
      font-size: 20px;
      margin-bottom: 30px; }

label.error {
  font-size: 12px;
  color: red; }

#message {
  resize: vertical; }

#form-message-warning, #form-message-success {
  display: none; }

#form-message-warning {
  color: #B90B0B; }

#form-message-success {
  color: #55A44E;
  font-size: 18px;
  font-weight: bold; }

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000; }


/* If there's a specific class on the copyright text */
.footer .copyright-section p {
  margin-top: 0; /* or any other value you prefer */
  margin-bottom: 0; /* or any other value you prefer */
  font-size: 14px; /* Adjust font size as needed */
}

/* If there isn't a specific class, increase specificity like this */
.footer p {
  margin-top: 0; /* or any other value you prefer */
  margin-bottom: 0; /* or any other value you prefer */
  font-size: 14px; /* Adjust font size as needed */
}




.footer {
  background-color: #000; /* Black background */
  color: #fff; /* White text color */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the start of the container */
  padding: 20px;
  font-size: 14px;
  position: relative;
  padding-bottom: 3%;
}

.footer img {
  max-width: 150px; /* Adjust this value to make the logo smaller */
  height: auto; /* Ensures that the height scales proportionally to the width */
  margin-right: -5%; 
}

.footer-section {
  margin: 10px;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: flex-start; /* Align items to the start of the section */
}

.logo-section {
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: flex-start; /* Align children to the left */
}

.logo-and-text {
  display: flex;
  align-items: center; /* Align logo and brand name horizontally */
  margin-bottom: 5px; /* Space between logo/text and email */
  margin-top: -10%;
  margin-left: -17%;
}

.logo-section img {
  max-width: 150px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  margin-right: -5%; /* Space between logo and brand name */
}

.logo-section .brand-name {
  font-size: 24px; /* Adjust as needed */
  font-weight: bold; /* Bold brand name text */
}




.logo-section .email {
  font-size: 15px; /* Adjust as needed */
  color: gray; /* Email text color */
  /* Add additional styling as needed */
}



.about-section,
.mission-section,
.contact-section,
.language-section {
  flex-basis: 15%; /* Adjust the width as per your layout */
}

.language-section ul,
.mission-section ul,
.about-section ul {
  list-style: none;
  padding: 0;
  margin: 0; /* Remove default margin */
}

.footer-section h4 {
  font-size: 20px; /* Adjust the size as needed */
  color: #fff; /* This sets the text color to white */
  margin-bottom: 5px; /* Adjust as needed */
  padding-bottom: 10px;
}

.footer-section a {
  color: gray; /* White text color for links */
  text-decoration: none;
  margin-top: 2px; /* Space between links */
  
}
.footer-section ul li {
  margin-bottom: 10px; /* Adjust the bottom margin as needed for more space */
}

.footer-section.copyright-section p {
  color: white; /* This sets the text color to gray */
}





.footer .copyright-section {
  display: flex; /* Enables flexbox for this element only */
  align-items: center; /* Centers the content vertically */
  justify-content: center; /* Centers the content horizontally */
  position: absolute; /* Takes the element out of the document flow */
  bottom: 0; /* Positions it at the bottom of the footer */
  left: 0; /* Align to the left */
  right: 0; /* Align to the right */
  height: 10px; /* Give it a specific height or enough padding to ensure it's visible */

}

.footer .copyright-section:before {
  content: ""; /* This is necessary for pseudo-elements */
  display: block; /* Treat it like a block element */
  border-top: 1px solid #fff; /* White line */
  position: absolute; /* Position it absolutely within copyright-section */
  width: 100%; /* Full width */
  bottom: 140%; /* Raise it above the text */
}

@media screen and (max-width: 950px) {

  .brand-name {
    font-size: 20px !important;
  }
  .footer-section h4 {
    font-size: 18px; /* Smaller font size for headings */
  }

  .footer-section ul li a {
    font-size: 15px; /* Smaller font size for list items */
  }

  .footer-section a {
    font-size: 15px; /* Smaller font size for standalone links */
  }

  .footer-section p {
    font-size: 15px; /* Smaller font size for paragraphs */
  }

  /* If you have a class or an id for your logo, add it here */
  /* Example: */
  .footer-section .logo img {
    width: 50px; /* Adjust the width to your preference */
    height: auto; /* Maintain aspect ratio */
  }


}

@media screen and (max-width: 950px) {

  .brand-name {
    font-size: 20px !important;
  }
  .footer-section h4 {
    font-size: 16px; /* Smaller font size for headings */
  }

  .footer-section ul li a {
    font-size: 13px; /* Smaller font size for list items */
  }

  .footer-section a {
    font-size: 13px; /* Smaller font size for standalone links */
  }

  .footer-section p {
    font-size: 13px; /* Smaller font size for paragraphs */
  }

  /* If you have a class or an id for your logo, add it here */
  /* Example: */
  .footer-section .logo img {
    width: 50px; /* Adjust the width to your preference */
    height: auto; /* Maintain aspect ratio */
  }
}
@media screen and (max-width: 860px) {
.about-section,
.mission-section,
.contact-section,
.language-section {
  flex-basis: 15%; /* Adjust the width as per your layout */
  margin-left: -10%;
}

}

@media screen and (max-width: 700px) {
  .logo-section .logo-and-text img {
    display: none;
  }

  .brand-name {
    margin-left: 26%;
    margin-top: 48%;
    white-space: nowrap;
  }


}


@media screen and (max-width: 700px) {
  .email {
    font-size: 13.5px !important;
  }
}

@media screen and (max-width: 650px) {
  .footer-section h4 {
    font-size: 15px; /* Smaller font size for headings */
  }
}

@media screen and (max-width: 600px) {
  .footer-section ul li a {
    font-size: 11px; /* Smaller font size for list items */
  }

  .footer-section a {
    font-size: 11px; /* Smaller font size for standalone links */
  }

  .footer-section h4 {
    font-size: 13.5px; /* Smaller font size for headings */
  }

  .brand-name {
    font-size: 17px !important;
    margin-left: 22%;
  }
  .email {
    font-size: 10px !important;
  }
}

@media screen and (max-width: 550px) {
  .brand-name {
    font-size: 15px !important;
    margin-left: 22%;
    margin-top: 53%;
  }

  .email {
    margin-left: -2%;
  }

  .footer-section h4 {
    font-size: 12px; /* Smaller font size for headings */
  }
}

@media screen and (max-width: 500px) {
  .brand-name {
    margin-left: 15%;
    margin-top: 50%;
  }

  .email {
    margin-left: -6%;
    font-size: 9px !important;
  }
}

@media screen and (max-width: 500px) {
  .brand-name {
    margin-left: 15%;
    margin-top: 47%;
  }

  .email {
    margin-left: -6%;
    font-size: 9px !important;
  }
}

@media screen and (max-width: 450px) {
  .email {
    font-size: 7.5px !important;
  }
  .brand-name {
    margin-left: 12%;
    
  }

  

}

@media screen and (max-width: 425px) {
  .brand-name {
    font-size: 13px !important;
    margin-top: 50%;
  }
  
  .email {
    margin-left: -8%;
  }

  .footer-section ul li a {
    font-size: 9px; /* Smaller font size for list items */
  
  }

  .footer-section a {
    font-size: 9px; /* Smaller font size for standalone links */
  }

  .footer-section h4 {
    font-size: 10px; /* Smaller font size for headings */

  }
}

@Media screen and (max-width: 390px) {
  .brand-name {
    margin-top: 48%;
  }
}

@media screen and (max-width: 375px) {
  .email {
    font-size: 6.5px !important;
  }

  .brand-name {
    margin-left: 10%;
  }
}

@media screen and (max-width: 360px) {


  .footer-section h4 {
    font-size: 9px; /* Smaller font size for headings */

  }

  .brand-name {
    margin-top: 43%;
  }
}

@media screen and (max-width: 375px) {
  

  .brand-name {
    margin-left: 7%;
  }

  .email {
    font-size: 5.5px !important;
    }
  }



@media screen and (max-width: 340px) {


  .brand-name {
    margin-top: 44%;
    margin-left: 1%;
  }
  .email {
    margin-left: -16%;
  }
}




@media screen and (max-width: 325px) {


  .footer-section h4 {
    font-size: 8px; /* Smaller font size for headings */

  }

  .brand-name {
    margin-top: 43%;
  }

  .brand-name {
    font-size: 11px !important;
    margin-top: 48%;
  }

}

@media screen and (max-width: 320px) {
  .email {
    font-size: 4.5px !important;
    margin-left: -15%;
  }
}




.footer .email .email-link span:hover {
  text-decoration: underline; /* Only underline the email address on hover */
}

@media (max-width: 700px) {
  .email-link {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .email-link {
    font-size: 11px;
    margin-left: -1%;
  }
}

@media (max-width: 550px) {
  .email-link {
    font-size: 11px;
    margin-left: -3%;
  }
}

@media (max-width: 500px) {
  .email-link {
    font-size: 11px;
    margin-left: -7.5%;
  }
}

@media (max-width: 450px) {
  .email-link {
    font-size: 11px;
    margin-left: -9.5%;
  }
}

@media (max-width: 425px) {
  .email-link {
    font-size: 9px;
    margin-left: -9%;
  }
}

@media (max-width: 375px) {
  .email-link {
    font-size: 9px;
    margin-left: -12%;
  }
}

@media (max-width: 340px) {
  .email-link {
    font-size: 9px;
    margin-left: -16%;
  }
}

.footer {
  font-family: 'Playful Despair', sans-serif;
}
