footer {
    background: radial-gradient(circle at left,var(--primary-colour), var(--secondary-colour));
}

.footer-wave {
    background-color: var(--primary-colour);
    clip-path: path('M0 67.4 C 273,183.4 822,-49.8 1920.00,106.7 V 0 H 0 Z');
    height: 10rem;
    width: 100%;
}


footer,
.footer-wave {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
}


.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center; /*vertical alignment*/
    padding: 15rem 0 0 0;
    flex-wrap: wrap;
    background: linear-gradient(var(--secondary-colour), var(--primary-colour));
    margin-top: -10rem; 
}

.footer-column-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    width: 80%; 
    flex-wrap: wrap;
    padding-bottom: 10rem;
}

.footer-column {
    flex-basis: 25%; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    text-align: center;
    text-decoration: none;
}

.footer-column p {
    margin-bottom: 2rem; 
    font-weight: bold;
}

.footer-column h2 {
    margin-top: 2rem; 
}

.footer-column img {
    width: 50px;
    height: auto;
    margin-top: 2rem; 
}


.footer-column {
    color: #ffffff;
}

.footer-column a{
    text-decoration: none;
    color: #ffffff;
}

.footer-link .tcLink {
    display: block; /*link spans the full width of its container */
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0.2rem;
}

.footer-smallprint {
    padding-bottom: 1%;
}

.smallprint {
    font-size: 0.7rem;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding: 0;
    color: #ffffff;
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); 
}

/* Modal content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
}

/* Close button */
.close-TCs {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-TCs:hover,
.close-TCs:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


@media (max-width: 1280px) {

.footer-column p {
    margin-bottom: 1rem; 
    font-size: 0.9rem;
}

.footer-column h2 {
    margin-top: 1rem; 
    font-size: var(--text-font-size)
}

.footer-column img {
    width: 25px;
    margin-top: 1rem; 
}

.footer-container {
    padding-top: 8rem;
    margin-top: -5rem; 
}

.footer-column-container {
    padding-bottom: 4rem;
}

/*.footer-wave {
    background-color: transparent;
    height: 0;
}*/

.footer-wave {
    clip-path: path('M0 42 C 73,83.4 222,-9.8 920.00,56.7 V 0 H 0 Z');
    height: 5rem;
}

}

@media (max-width: 480px) {

.footer-wave {
    clip-path: path('M0 42 C 73,83.4 222,-9.8 520.00,56.7 V 0 H 0 Z');
}

}



