:root {
  --primary-color: #01257D;
  --secondary-color: #00FFFF;
  --accent-color: #00FFFF; 
  --text-color: #FFFFFF;
  --card-bg: #02274C;
  --bg-gradient: linear-gradient(135deg, #011A52, #01257D, #02274C);
  --bg-overlay: radial-gradient(circle at top left, rgba(0, 255, 255, 0.2), transparent 60%);
}



/* Kontakt Section Base */
.section.contact {
  background: var(--bg-gradient);
  color: var(--text-color);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  min-height: 100vh;
  width: 100%;
}

.container2 {
  padding-top: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.section.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

/* Contact Wrapper */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Embedded Map Styles */
.contact-map {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  overflow: hidden;
  border: 4px solid var(--secondary-color);
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.contact-map:hover {
  transform: scale(1.05);
}

/* Contact Info Card */
.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.contact-info a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }
}















/* Large screens (desktops) */
@media (max-width: 1200px) {
  .container2 {
    max-width: 900px;
  }

  .contact-map iframe {
    height: 350px;
  }
}

/* Medium screens (tablets & small laptops) */
@media (max-width: 992px) {
  .container2 {
    max-width: 85%;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-map {
    max-width: 90%;
  }

  .contact-info {
    max-width: 90%;
  }

  .contact-map iframe {
    height: 300px;
  }
}

/* Small screens (larger mobile phones) */
@media (max-width: 768px) {
  .contact-map iframe {
    height: 250px;
  }

  .contact-map,
  .contact-info {
    width: 95%;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 1rem;
  }
}

/* Extra small screens (compact phones) */
@media (max-width: 480px) {
  .section.contact {
    padding: 60px 15px;
  }

  .contact-map iframe {
    height: 200px;
  }

  .contact-info {
    padding: 15px;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }
}



















/* Fiksni Header & Navigacija */
.header {
  background: var(--primary-color);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0 15px #00FFFF; /* Glowing effect */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  margin-right: 10px;
}

.logo span {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-color);
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #0088AA; /* Slightly darker cyan on hover */
}
















/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--text-color);
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 3;
}

/* Scroll to Top Dugme */
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  font-size: 16px;
  background-color: var(--primary-color);
  box-shadow: 0px 0px 10px var(--accent-color);
  color: var(--text-color);
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 60;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}


.ham {
  width: 50px; /* Adjust width as needed */
  height: 50px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  left: 5px;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  user-select: none;
  z-index: 1300; /* Higher than .mobile-menu */
}


/* All lines common styles */
.ham2 .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #00FFFF;
  stroke-width: 5.5;
  stroke-linecap: round;
}

/* Set up initial dash arrays for top and bottom lines */
.ham2 .top {
  stroke-dasharray: 40 121;
}
.ham2 .bottom {
  stroke-dasharray: 40 121;
}

/* When active, animate the top and bottom lines */
.ham2.active .top {
  stroke-dashoffset: -102px;
}
.ham2.active .bottom {
  stroke-dashoffset: -102px;
}

/* (Optional) Rotation classes if you wish to combine with a rotation effect */
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}




/* --- Mobile Menu Container --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80%;
  max-width: 300px;
  background: var(--primary-color); /* Adjust as needed */
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  padding: 2rem;
  display: none; /* Hidden by default */
  padding-top: 55px;
}
.mobile-menu.active {
  transform: translateX(0);
}







.header .logo span,
.mobile-menu-header span,
.navbar p {
  color: #00FFFF;
}


.phone-number {
  color: #00FFFF;
  text-decoration: none;
  font-weight: bold; /* Optional, for better visibility */
}





/* Desktop Dropdown */
.nav-links li.dropdown {
  position: relative;
}
.nav-links li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 100;
}
.nav-links li.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
}
.dropdown-menu li a:hover {
  background: #f0f0f0;
}

/* Mobile Dropdown */
.mobile-nav-links li.dropdown-mobile {
  position: relative;
}
.mobile-nav-links li.dropdown-mobile .mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin: 0;
}
.mobile-nav-links li.dropdown-mobile.active .mobile-dropdown-menu {
  display: block;
}



/* Style for the dropdown arrow */
.dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is active (for mobile) */
.dropdown-mobile.active .dropdown-arrow {
  transform: rotate(180deg);
}



/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mobile-menu-header .logo-img {
  height: 40px;
  margin-right: 10px;
}
.mobile-menu-header span {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-color);
}

/* Mobile Navigation Links */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-links li {
  margin: 15px 0;
}
.mobile-nav-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
}
.mobile-nav-links a:hover {
  color: #0088AA;
}



/* ====== GLOBAL RESPONSIVE STYLES ====== */
/* Hide mobile menu and hamburger on larger screens */
@media (min-width: 1025px) {
  .menu-toggle,
  .mobile-menu,
  .ham { /* Hide the button too */
    display: none;
  }
}


/* For screens up to 1024px */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
  /* Hide desktop navigation if it exists */
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: block;
  }


  .container {
    width: 90%;
  }
  /* Navigation adjustments */
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--primary-color);
    position: absolute;
    top: 70px; /* below fixed header */
    left: 0;
    padding: 15px 0;
    z-index: 1100;
  }
  .nav-links.active {
    display: flex;
  }
}

/* For screens up to 768px */
@media (max-width: 768px) {
  .mobile-menu-header span {
    font-size: 20px;
  }
  .mobile-nav-links a {
    font-size: 16px;
  }
  /* Logo and header typography */
  .logo span {
    font-size: 24px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  /*
  .cta-button {
    font-size: 16px;
    padding: 8px 20px;
  }*/
  /* Single-column grids for cards */
  /* Navigation link spacing */
  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }
  /* Adjust any padding/margin in sections if needed */
}

/* For screens up to 480px */
@media (max-width: 480px) {
  .mobile-menu {
    width: 90%;
    max-width: 250px;
    padding: 1.5rem;
    padding-top: 55px;
  }
  .mobile-nav-links a {
    font-size: 15px;
  }

  .logo span {
    font-size: 20px;
  }
  /*
  .cta-button {
    font-size: 14px;
    padding: 6px 16px;
  }*/
  /* Ensure navbar stacks vertically */
  .navbar {
    flex-direction: column;
  }
  .nav-links {
    width: 100%;
  }
  /* Single column layout for grids */
  /* Stack contact details vertically */
}



.phone-container {
  display: flex;
  gap: 10px; /* Adjust spacing between numbers */
  align-items: center;
}

.separator {
  color: #00FFFF; /* Cyan color */
  font-weight: bold; /* Optional: make it stand out */
}








































/* Dodajemo margin-top ispod fiksnog headera */





/* JUNK*/






/* Globalni stilovi */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url('../../stuff/cursor/cur116.cur'), auto;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  /*background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));*/
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

.container {
  width: 90%;
  margin: 0 auto;
}


/* Fiksni Header & Navigacija */
.header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0 15px #00FFFF; /* Glowing effect */

  background: rgba(1, 37, 125, 0.9); /* Slight transparency for better UX */
  backdrop-filter: blur(10px); /* Adds a smooth glass effect */
  transition: background 0.3s ease-in-out;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  margin-right: 10px;
}

.logo span {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-color);
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #0088AA; /* Slightly darker cyan on hover */
}


/* Scroll to Top Dugme */
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  font-size: 16px;
  background-color: var(--primary-color);
  box-shadow: 0px 0px 10px var(--accent-color);
  color: var(--text-color);
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 60;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}


.ham {
  width: 50px; /* Adjust width as needed */
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 5px;
  left: 5px;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  user-select: none;
  z-index: 1300; /* Higher than .mobile-menu */
}


/* All lines common styles */
.ham2 .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #00FFFF;
  stroke-width: 5.5;
  stroke-linecap: round;
}

/* Set up initial dash arrays for top and bottom lines */
.ham2 .top {
  stroke-dasharray: 40 121;
}
.ham2 .bottom {
  stroke-dasharray: 40 121;
}

/* When active, animate the top and bottom lines */
.ham2.active .top {
  stroke-dashoffset: -102px;
}
.ham2.active .bottom {
  stroke-dashoffset: -102px;
}

/* (Optional) Rotation classes if you wish to combine with a rotation effect */
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}


/* --- Mobile Menu Container --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80%;
  max-width: 300px;
  background: linear-gradient(135deg, #01257D, #0045A5, #0088CC, #00A5C9, #00FFFF); 
  background-size: 300% 300%;
  animation: gradientAnimation 6s ease infinite;
  /*background: var(--primary-color); /* Adjust as needed */
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  padding: 2rem;
  display: none; /* Hidden by default */
  padding-top: 55px;
  border: 2px solid rgba(0, 255, 255, 0.6); /* Subtle cyan glow */
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3); /* Adds outer neon glow */
}

/* Smooth animated gradient */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mobile-menu-header .logo-img {
  height: 40px;
  margin-right: 10px;
}
.mobile-menu-header span {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-color);
}

/* Mobile Navigation Links */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-links li {
  margin: 15px 0;
}
.mobile-nav-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Adds a subtle separator */
  padding: 10px 0;
}
.mobile-nav-links li:last-child a {
  border-bottom: none; /* Remove separator from the last item */
}
.mobile-nav-links li {
  margin-bottom: 10px; /* Adds extra spacing between items */
}

.mobile-nav-links a:hover {
  color: #0088AA;
}


.header .logo span,
.mobile-menu-header span,
.navbar p {
  color: #00FFFF;
}


.phone-number {
  color: #00FFFF;
  text-decoration: none;
  font-weight: bold; /* Optional, for better visibility */
}


/* Desktop Dropdown */
.nav-links li.dropdown {
  position: relative;
}
.nav-links li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #01257D;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 100;
}
.nav-links li.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
}
.dropdown-menu li a:hover {
  background: #02274C;
}

/* Mobile Dropdown */
.mobile-nav-links li.dropdown-mobile {
  position: relative;
}
.mobile-nav-links li.dropdown-mobile .mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin: 0;
}
.mobile-nav-links li.dropdown-mobile.active .mobile-dropdown-menu {
  display: block;
}



/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* new broken Dropdown link */
.dropdown a {
  display: block;
  border-radius: 5px;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #01257D;
  box-shadow: 0px 5px 15px rgba(0, 255, 255, 0.4); /* Cyan glow effect */
  border-radius: 8px;
  border: 2px solid #00FFFF; /* Cyan border */
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  box-shadow: 0px 8px 20px rgba(0, 255, 255, 0.6); /* Stronger glow effect */
}

/* Dropdown menu items */
.dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid #00FFFF;
}

/* Remove last border */
.dropdown-menu li:last-child {
  border-bottom: none;
}

/* Dropdown links */
.dropdown-menu a {
  color: #00FFFF;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect on dropdown links */
.dropdown-menu a:hover {
  background-color: #007bff;
  color: #fff;
  border-radius: 3px;
}



/* Style for the dropdown arrow */
.dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is active (for mobile) */
.dropdown-mobile.active .dropdown-arrow {
  transform: rotate(180deg);
}



.phone-container {
  display: flex;
  gap: 10px; /* Adjust spacing between numbers */
  align-items: center;
}

.separator {
  color: #00FFFF; /* Cyan color */
  font-weight: bold; /* Optional: make it stand out */
}


.logo {
  text-decoration: none;
  color: inherit;
}



/* Apply the custom cursor on all anchor links in the navigation */
.nav-links li a,
.mobile-nav-links li a {
  cursor: url('../../stuff/cursor/finger.cur'), pointer;
}

.phone-number {
  cursor: url('../../stuff/cursor/finger.cur'), pointer;
}




/* ====== GLOBAL RESPONSIVE STYLES ====== */

@media (max-width: 1350px) {
  .nav-links li a[href="../templates/galerija.html"] {
    display: none;
  }

}

@media (max-width: 1250px) {
  .nav-links li a[href="#o-nama"],
  .nav-links li a[href="../templates/galerija.html"] {
    display: none;
  }

}

@media (max-width: 1200px) {
  .nav-links li a[href="#o-nama"],
  .nav-links li a[href="../templates/galerija.html"] {
    display: none;
  }
  .phone-container{
    display: none;
  }

}





/* Hide mobile menu and hamburger on larger screens */
@media (min-width: 1025px) {
  .menu-toggle,
  .mobile-menu,
  .ham { /* Hide the button too */
    display: none;
  }
  .logo-text2 {
    display: none;
  }
}


/* For screens up to 1024px */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
  /* Hide desktop navigation if it exists */
  .nav-links {
    display: none;
  }
  .phone-container{
    display: none;
  }
  .logo2{
    /*display: none;*/
    height: 40px; /* Adjust as needed */
    width: auto; /* Keeps aspect ratio */
  }
  .logo-text {
    display: none;
  }

  .mobile-menu {
    display: block;
  }


  /* Navigation adjustments */
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--primary-color);
    position: absolute;
    top: 70px; /* below fixed header */
    left: 0;
    padding: 15px 0;
    z-index: 1100;
  }
  .nav-links.active {
    display: flex;
  }
  /* Hero section */
  .hero {
    flex-direction: column;
    text-align: center;
    margin-top: 60px;
  }
  .hero-content, 
  .hero-image {
    max-width: 100%;
    margin: 10px 0;
  }
  /* Card grids (About, Services, Pricing, etc.) */
  .cards,
  .service-cards,
  .pricing-table {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  /* Contact details stacking */
  .contact .contact-details {
    flex-direction: column;
    align-items: center;
  }
  /* Logo and header typography */
  .logo span {
    font-size: 24px;
  }
}

/* For screens up to 768px */
@media (max-width: 768px) {
  .mobile-menu-header span {
    font-size: 20px;
  }
  .mobile-nav-links a {
    font-size: 16px;
  }
  /* Logo and header typography */
  .logo span {
    font-size: 24px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }

  /* Single-column grids for cards */
  .cards,
  .service-cards,
  .pricing-table {
    grid-template-columns: 1fr;
  }
  /* Navigation link spacing */
  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }
  /* Adjust any padding/margin in sections if needed */
  .section {
    padding: 40px 15px;
  }
}

/* For screens up to 480px */
@media (max-width: 480px) {
  .mobile-menu {
    width: 90%;
    max-width: 250px;
    padding: 1.5rem;
    padding-top: 55px;
  }
  .mobile-nav-links a {
    font-size: 15px;
  }

  .logo span {
    font-size: 20px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 14px;
  }
  
  /* Ensure navbar stacks vertically */
  .navbar {
    flex-direction: column;
  }
  .nav-links {
    width: 100%;
  }
  /* Single column layout for grids */
  .cards,
  .service-cards,
  .pricing-table {
    grid-template-columns: 1fr;
  }
  /* Stack contact details vertically */
  .contact .contact-details {
    flex-direction: column;
    align-items: center;
  }
}









a, iframe, .contact-info p a {
  cursor: url('../../stuff/cursor/finger.cur'), pointer;
}
