* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #F3F3F3; /* keep this colour */
}



/* copy from skskgrey only beloew here */


.container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.child {
    vertical-align: top;
} 

.column {
    flex: 0 0 calc(19% - 16px);
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wide-column {
    flex: 0 0 (30% - 16px) !important; /* Ensures this column takes up 30% */
    max-width: 30%; /* Prevents shrinking */
}


.columnarrow {
    flex: 0 0 calc(10% - 16px);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}



.columnend {
    flex: 0 0 calc(5%);
    padding: 20px;
    background-color: #BBBBBB;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-width-container {
    width: calc(100% - 10px);
    margin: 0 auto;
    padding: 0 20px;
}







@media (max-width: 768px) {
    .container {
        justify-content: center;
        flex-direction: column;
    }

    .column {
        flex-basis: 100%;
        margin-bottom: 16px;
    }

    #child img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .column {
        margin-bottom: 10px;
    }
}












#child img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.textpadtop {
    margin: 0px 0px 0px 0px;
    max-width: 99%;
    padding-top: 3%;
    padding-bottom: 5%;
}

.textpad {
    margin: 0px 0px 0px 0px;
    max-width: 99%;
    padding-top: 0%;
    padding-bottom: 5%;
}
.textpadbody {
    margin: 0px 0px 0px 0px;
    max-width: 65%;
    padding-top: 0%;
    padding-bottom: 0%;
}

.textpadart {
  margin:4px 0px 10px 40px;
      max-width: 60%;
} 

.rowhome {
  float: left;
  margin: 0px;
  padding: 1%;
  padding-left: 2%;
  padding-right: 1%;
  width: 96%;
  border: 0px solid black;

} 

.article3f {
  float: left;
  margin: 0px;
  padding: 30px;

  width: 33%;
} 

.article3 {
  float: left;
  margin: 0px;
  padding: 0px;

  width: 33.3%;
} 


.skgrey {
    font-size: 8pt;
    font-family: 'Lato', Verdana, Arial, sans-serif;
    color: #848484;
    line-height: 150%;
}

.skheader {
    font-size: 12pt;
    font-family: 'Lato', Verdana, Arial, sans-serif;
    color: #000000;
    line-height: 150%;
}

.skskgrey {
    font-size: 8pt;
    font-family: 'Lato', Verdana, Arial, sans-serif;
    color: #000000;
    line-height: 150%;
}

.sksubheader {
    font-size: 9pt;
    font-family: 'Lato', Verdana, Arial, sans-serif;
    color: #000000;

    line-height: 150%;
}


a.menu:link, a.menu:visited, a.menu:hover {
    font-size: 8pt;
    font-family: 'Lato', Verdana, Arial, sans-serif;
    color: #000000;
    text-decoration: underline;
}

a.menuarrow:link, a.menuarrow:visited, a.menuarrow:hover {
    font-size: 12pt;
    font-family: 'Lato', Verdana, Arial, sans-serif;
    color: #848484;
    text-decoration: underline;
}

/* Popover styles */
.popover {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(246, 246, 246, 1);
    justify-content: center;
    align-items: center;
}

.popover-content {
    margin: auto;
    display: block;
    width: 95%;
    max-width: 600px;
    max-height: 1000px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #000;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
   
