/* #region Globals */
* {
    font-family: 'Lato';
}

h1 {
    color: #fff;
    font-size: 6rem;
    line-height: 6rem;
    font-weight: 600;
    text-transform: uppercase;
}

h1 span {
    font-size: 3rem;
    line-height: 3rem;
}

h2 {
    color: #333;
    font-size: 4rem;
    line-height: 4rem;
    font-weight: normal;
    text-transform: uppercase;
}

h2 span {
    font-weight: bold;
    display: block;
}

h3 {
    font-size: 2rem;
    line-height: 2rem;
    color: #222;
}

h4 {
    font-size: 1.6rem;
    line-height: 2rem;
    color: #333;
}

.mainlink {
    border: 2px solid #333;
    padding: 15px 20px;
    font-weight: bold;
    color: #333;
    position: relative;
    z-index: 1;
}

.mainlink:before {
    content: " ";
    background-color: #f9b700;
    width: 0;
    height: 100%;
    height: calc(100% + 4px);
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: -1;
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.mainlink:hover:before {
    width: 100%;
    width: calc(100% + 4px);
}

.mainlink:hover {
    color: #222;
    border-color: #f9b700;
}

.linebox {
    border-bottom: 5px solid #f9b700;
    display: table;
    padding-left: 90px;
}

.pad {
    padding: 90px;
}

.padhalf {
    padding: 60px;
}

.padtop {
    padding-top: 90px;
    padding-bottom: 90px;
}

.padside {
    padding-left: 90px;
    padding-right: 90px;
}

.boxbox {
    width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width:1400px) {
    h1 {
        font-size: 4rem;
        line-height: 4rem;
    }

    h1 span {
        font-size: 2rem;
        line-height: 2rem;
    }

    h2 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .paddbl {
        padding: 60px;
    }

    .padside {
        padding-left: 60px;
        padding-right: 60px;
    }

    .pad {
        padding: 60px;
    }

    .linebox {
        padding-left: 60px;
    }

    .boxbox {
        width: 92%;
    }
}

@media only screen and (max-width:1100px) {
    .linebox h2 span {
        display: unset;
    }
}

@media only screen and (max-width:1000px) {
    .padside {
        padding-left: 30px;
        padding-right: 30px;
    }

    h1 {
        font-size: 3rem;
        line-height: 3rem;
    }

    h1 span {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    h2 {
        font-size: 2rem;
        line-height: 2rem;
    }

    .linebox {
        padding-left: 30px;
        margin-right: 30px;
    }
}

@media only screen and (max-width:700px) {

    .paddbl {
        padding-left: 30px;
        padding-right: 30px;
    }

    .pad {
        padding: 30px;
    }
}

/* #endregion */

/* #region Header */
.header .contact {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    font-weight: 600;
}

.header .quote {
    color: #6a7ca2;
    font-weight: 600;
}

.header .quote span {
    color: #fff;
}

.header .quote a {
    color: #f9b700;
}

.header .contact a {
    margin-left: 5px;
    color: #f9b700;
}

.header .contact a:hover {
    text-decoration: underline;
}

.header .contact span {
    color: #336b64;
}

.header {
    transition: all .3s;
}

.header .subheader {
    background-color: #272e40;
}

.header .logo img {
    height: 60px;
    margin-right: 30px;
}

.header .mainheader {
    margin-top: 20px;
    margin-bottom: 20px;
}

.scrolled {
    padding: 0;
}

.scrolled .header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: unset;
    background-color: #273353;
    z-index: 9;
    padding-left: 90px;
    padding-right: 90px;
}

.scrolled .subheader {
    display: none;
}

.scrolled .mainheader {
    margin-top: 0;
    margin-bottom: 0;
}

.scrolled .logo {
    padding-top: 15px;
    padding-bottom: 15px;
}

.scrolled .logo img {
    height: 60px;
}

@media only screen and (max-width:1400px) {
    .header .logo img {
        height: 80px;
        margin-right: 30px;
    }

    .scrolled .header {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media only screen and (max-width:1200px) {
    .header .volbox {
        display: none;
    }
}

@media only screen and (max-width:1000px) {
    .header .quote {
        padding-right: 0;
    }

    .header .quote .symbol {
        margin-left: 0;
    }

    .scrolled .header {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width:800px) {
    .header .quote div {
        display: none;
    }

    .header .quote .symbol,
    .header .quote .metal {
        display: block;
    }

    .header .contact {
        width: 100%;
        justify-content: space-evenly;
    }

    .header .logo img {
        height: 60px;
    }
}

@media only screen and (max-width:600px) {
    .header .contact .tel {
        display: none;
    }

    .header .quote .metal {
        text-align: right;
    }

    .header {
        padding-left: 0;
        padding-right: 0;
    }

    .scrolled .header {
        padding-left: 0;
        padding-right: 0;
    }

    .header .mainheader {
        padding-left: 30px;
        padding-right: 30px;
    }

    .header .subheader {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width:500px) {
    .header .quote:last-of-type {
        display: none;
    }
}

/* #endregion */

/* #region Menu */

/* #endregion */

/* #region Hero */
.hero {
    background: url('images/bg_hero_new.jpg');
    background-size: cover;
    background-position: center bottom;
    background-color: #555763;
    padding-top: 0;
}

.hero h1 {
    color: #fff;
    padding-top: 150px;
    padding-bottom: 30px;
}

.hero h1 span {
    color: #f9b700;
    display: block;
}

/* #endregion */

/* #region Home */
.home {
    color: #333;
}

.hero .overview h2 {
    color: #fff;
}

.hero .overview {
    position: relative;
    z-index: 2;
}

.hero .overview .textbox {
    background-color: #fff;
    padding: 90px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.hero .overview .textbox p {
    font-size: 1.5rem;
    line-height: 2.5rem;
}

.home .highlights {
    background-image: url('images/bg_highlights_new.jpg');
    background-size: cover;
    margin-top: -60px;
}

.home .highlights ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    padding-left: 90px;
    padding-right: 90px;
}

.home .highlights li {
    width: 49%;
    background-color: rgba(255, 255, 255, 0.75);
    list-style-type: none;
    padding: 30px;
    margin-bottom: 2%;
    font-size: 1.5rem;
}

.home .highlights li strong {
    color: #f9b700;
}

.home .highlights li:nth-child(2n) {
    margin-left: 2%;
}

.home .mfc {
    background-color: #fafafa;
}

.home .mfc .map {
    background-image: url('images/home_map_new.jpg');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    margin-left: 60px;
    margin-right: 90px;
}

.home .mfc p {
    font-size: 1.5rem;
    line-height: 2.5rem;
    padding: 30px;
    padding-left: 90px;
    position: relative;
}


.home .mfc ul li:before {
    content: "‣";
    position: absolute;
    top: -.35rem;
    left: 0;
    font-size: 3rem;
    line-height: 3rem;
    color: #f9b700;
}

.home .forward {
    background-color: #fafafa;
    padding-top: 90px;
}

.home .forward p {
    font-size: 1.5rem;
    line-height: 2.5rem;
}

.home .forward .image {
    background-color: #ccc;
    background-image: url('images/home_forward.jpg');
    background-size: cover;
    background-position: center;
}

.home .forward .textbox {
    padding-top: 0;
    padding-bottom: 180px;
}

@media only screen and (max-width:1400px) {
    .home .highlights ul {
        padding-left: 60px;
        padding-right: 60px;
    }

    .home .mfc p,
    .hero .overview .textbox p,
    .home .highlights li {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .home .mfc .map {
        margin-right: 60px;
    }

    .hero .overview .textbox {
        padding: 60px;
    }
}

@media only screen and (max-width:1200px) {
    .home .mfc {
        flex-direction: column-reverse;
    }

    .home .mfc .map {
        width: 100%;
        height: 65vw;
        margin-left: 30px;
        margin-right: 30px;
    }

    .home .mfc .padtop {
        width: 100%;
    }

    .home .mfc p {
        padding-left: 30px;
    }
}

@media only screen and (max-width:1100px) {
    .hero h1 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero .overview {
        display: block;
    }

    .hero .overview .half {
        width: 100%;
    }

    .hero .overview .textbox {
        margin-top: 30px;
    }
}

@media only screen and (max-width:1000px) {
    .home .highlights ul {
        padding-left: 30px;
        padding-right: 30px;
    }

    .home .highlights li {
        width: 100%;
        margin-left: 0 !important;
    }

    .home .mfc .map {
        margin-right: 30px;
        margin-left: 30px;
    }

    .hero .overview .textbox {
        padding: 30px;
    }
}

/* #endregion */

/* #region Content / Sidebar */

.contbox {
    background-color: #fafafa;
    padding-bottom: 90px;
}

.contbottom {
    height: 80px;
    background-image: url('images/bg_bottom.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero .pagetopside {
    font-size: 4rem;
    line-height: 4rem;
    border-bottom: 5px solid transparent;
    margin-bottom: 30px;
}

.hero .pagetopside:first-of-type {
    border-bottom: 5px solid #f9b700;
}

.hero .pagetop h1 {
    padding-top: 0;
    font-size: 4rem;
    line-height: 4rem;
    border-bottom: 5px solid #f9b700;
    display: table;
    padding: 30px 0 5px 0;
    margin-bottom: 30px;
}

#sidex {
    margin-top: 90px;
}

#sidex .sidetitle {
    margin: 0;
    font-size: 1.25rem;
    background-color: #272e40;
}

.sideproj a {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px;
    display: block;
    width: 100%;
    color: #999;
}

.sideproj a:hover {
    color: #222;
}

.sideproj a:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
}

@media only screen and (max-width:1400px) {
    .hero .pagetop h1 {
        padding-left: 60px;
    }
}

@media only screen and (max-width:1200px) {
    .content {
        flex-direction: column-reverse;
    }

    #sidex {
        width: 100%;
    }

    .hero .pagetop h1 {
        font-size: 3rem;
        line-height: 3rem;
        margin-right: 60px;
    }
}

@media only screen and (max-width:1000px) {
    .hero .pagetop h1 {
        padding-left: 30px;
    }
}

@media only screen and (max-width:800px) {
    .contbox {
        padding-left: 0;
        padding-right: 0;
    }

    .contbox .contmain {
        margin-top: 0;
    }
}

@media only screen and (max-width:600px) {
    .hero .pagetop h1 {
        font-size: 2.2rem;
        line-height: 2.2rem;
    }
}

/* #endregion */

/* #region Footer */
.footer {
    margin-top: -60px;
    background-color: #fafafa;
    background-image: url('images/footer_bg.jpg');
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.footer .latest {
    background-image: url('images/bg_footlate.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 52%;
}

.footer .latest a {
    color: #333;
    text-transform: uppercase;
    opacity: .7;
}

.footer .latest a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer .latest a span {
    color: #333;
    display: block;
    font-weight: bold;
}

.footer .latest .nonews {
    color: #333;
    text-transform: uppercase;
    opacity: .4;
}

.footer form input {
    background-color: #eee;
    font-size: 2rem;
    color: #222;
}

.footer form button {
    background-color: transparent;
    font-size: 3.5rem;
    padding-left: 15px;
    color: #222;
}

.footer form button:hover {
    opacity: .5;
}

.footer .mainfoot .logo {
    width: 300px;
}

.footer .mainfoot .logoinfo {
    color: #444;
    width: 400px;
}

.footer .mainfoot .logoinfo p {
    line-height: 2rem;
}

.footer .mainfoot .sitemap .mainmenu .top {
    font-size: 1.5rem;
    color: #bbb;
    font-weight: 600;
}

.footer .mainfoot .sitemap .toplink {
    font-size: 1.5rem;
    color: #e4b937;
    font-weight: 600;
}

.footer .mainfoot .sitemap .mainmenu .lower a {
    display: block;
    color: #e4b937;
    font-weight: 600;
}

@media only screen and (max-width:1500px) {
    .footer .latest .news .titlebox {
        display: block;
        width: 50%;
        flex-shrink: 0;
        padding: 15px;
    }

    .footer .latest .news .title,
    .footer .latest .news a {
        margin-bottom: 15px;
    }

    .footer .latest .news .line {
        display: none;
    }

    .footer .latest .news form {
        padding: 15px;
    }

    .footer .latest .news .title span {
        display: inline;
    }

    .footer .mainfoot .line {
        display: none;
    }

    .footer .mainfoot .logoinfo {
        display: block;
        max-width: 50%;
        width: unset;
        padding-bottom: 60px;
    }

    .footer .mainfoot .logoinfo .logo {
        margin-bottom: 30px;
    }

    .footer .mainfoot {
        display: block;
        padding-top: 60px;
    }
}

@media only screen and (max-width:1400px) {
    .footer form input {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width:1200px) {
    .footer .mainfoot .logoinfo {
        display: table;
    }

    .footer .mainfoot .logoinfo .info {
        text-align: center;
    }

    .footer .mainfoot .links {
        flex-direction: row;
        justify-content: space-between;
        padding: 30px;
    }

    .footer .mainfoot .presentation {
        height: 150px;
        width: 100%;
        display: block;
    }

    .footer .latebox {
        display: block;
    }

    .footer .latest {
        width: 100%;
        margin-bottom: 60px;
    }

    .footer .mailist {
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 60px;
    }
}

@media only screen and (max-width:1100px) {
    .footer {
        padding-top: 30px;
        margin-top: 0;
    }
}

@media only screen and (max-width:1000px) {
    .footer .latest .news {
        display: block;
    }

    .footer .latest .news .titlebox {
        width: 100%;
    }

    .footer .latest .news form {
        width: 100%;
        padding-top: 0;
    }

    .footer .mainfoot {
        padding-bottom: 0;
    }

    .footer .mainfoot .links {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }

    .footer .mainfoot .links a {
        background-color: #fafafa;
        padding: 5px 10px;
        text-align: center;
        margin-bottom: 5px;
        border: 1px solid #ccc;
    }

    .footer .mainfoot .links a:last-of-type {
        margin-bottom: 0;
    }

    .footer .sitemap {
        display: block;
    }

    .footer .sitemap .mainmenu {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width:800px) {
    .footer {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer .mailist {
        padding: 30px;
    }

    .footer .latest {
        padding: 30px;
    }
}

@media only screen and (max-width:600px) {
    .footer .latest .news form input[type=email] {
        font-size: 1.5rem;
    }

    .footer .mailist .formflex {
        display: block;
    }

    .footer .mailist input {
        width: 100%;
    }

    .footer .mailist button {
        width: 100%;
        background-color: #222;
        color: #fff;
        padding: 5px 15px;
        font-size: 3rem;
    }
}

@media only screen and (max-width:400px) {
    .footer .latest .news form input[type=email] {
        font-size: 1rem;
        font-weight: bold;
    }
}

/* #endregion */

/* #region Subfooter */
.subfooter {
    border-bottom: 5px solid #ebb32f;
    font-size: .9rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.subfooter .subfooterlink {
    font-weight: bold;
    color: #f9b700;
}

@media only screen and (max-width:500px) {
    .subfooter {
        flex-direction: column-reverse;
    }

    .subfooter .sublink {
        margin-bottom: 5px;
    }
}

/* #endregion */

/* #region Custom Styling */

#sedar .yearbox .active {
    background-color: #336b64;
    border-color: #336b64;
}

#sedar .item span {
    color: #f9b700;
}

#archive .newschive .newsbox {
    border-top: 0;
    border-left: 0;
}

#management .item {
    border-top: 0;
    border-left: 0;
}

#stock .item {
    border-top: 0;
    border-left: 0;
}

#subpop {
    background-color: rgba(39, 46, 64, 0.98);
}

#subpop .logo {
    background-image: url('images/silverfish_logo.png');
}

@media only screen and (max-width:1200px) {
    #management .item {}
}

/* #endregion */

/* #region Aruba Project Custom */
.content .project .arubaover .boxbox {
    background-image: url('https://www.silverfishresources.com/images/aruba_map_new.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 60px 0;
    padding-left: 850px;
}

.content .project .arubahigh {
    padding: 60px 0;
}

.content .project .arubahigh ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
}

.content .project .arubahigh ul li {
    list-style-type: none;
    width: 32%;
    margin-right: 2%;
    background-color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    padding: 30px;
    margin-top: 2%;
    margin-bottom: 0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.content .project .arubahigh ul li:nth-child(3n) {
    margin-right: 0;
}

.content .project .molopo {
    background-color: #273351;
    color: #fff;
    padding-top:60px;
}

.content .project .molopotwo {
    background-color: #273351;
    color: #fff;
    padding:60px 0;
}

.content .project .molopo h3, .content .project .molopotwo h3 {
    color: #fff;
}

.content .project .claimsimg {
    background-image: url('images/sf_big_map.jpg');
    background-position: top center;
    background-size: cover;
    height: 35vw;
}

.content .project .molopohigh {
    padding-top: 60px;
    background-color: #273351;
    color: #fff;
}

.content .project .molopohigh h3,
.content .project .molopohigh h4 {
    color: #fff;
}

.content .project .molopohigh .boxbox {
    background-color: #f9b700;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.content .project .molopo:last-of-type {
    padding-bottom: 60px;
}

.content .project .molopobot {
    padding: 60px 0;
    background-color: #273351;
    color: #fff;
    background-image: url('images/sf_mfc_bg.jpg');
    background-size: cover;
    background-position: top center;
}

.content .project .molopobot h3,
.content .project .molopohigh h4 {
    color: #fff;
}

.content .project .transvaal {
    background-color: #fff;
    padding: 60px 0;
}

.content .project .transvaalhigh,
.content .project .molopohigh {
    background-image: url('images/sf_topo_bg.png');
    background-size: 100% auto;
    background-position: center center;
    padding: 60px 0;
}

.content .project .transvaalhigh .boxbox {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    padding: 30px;
}

.content .project .transvaalhigh .boxbox img,
.content .project .molopohigh .boxbox img {
    height: 400px;
    margin-top: -120px;
    margin-bottom: -120px;
}

.content .project .plaintop {
    padding-top: 60px;
}

.content .project .plainend {
    padding: 60px 0;
}

.content .project .highlights .boxbox {
    background-color: #f9b700;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.content .project .phaseone {
    padding-top: 60px;
}

.content .project .phaseone .boxbox {
    background-image: url('https://www.silverfishresources.com/images/sf_ab_p1.jpg');
    background-size: cover;
    background-position: right center;
    color: #fff;
}

.content .project .phasetwo {
    padding: 60px 0;
}

.content .project .phasetwo .boxbox {
    background-image: url('https://www.silverfishresources.com/images/sf_ab_p2.jpg');
    background-size: cover;
    background-position: bottom center;
    color: #fff;
}

.content .project .phaseone h3,
.content .project .phasetwo h3 {
    color: #fff;
}

@media only screen and (max-width:1400px) {
    .content .project .arubaover .boxbox {
        background-size:50% auto;
        background-position:top left;
        padding-left:50%;
    }
}

@media only screen and (max-width:1000px) {
    .content .project .boxbox {
        padding:0 !important;
    }
    .content .project .arubaover .boxbox {
        background-size:100% auto;
        background-position:top center;
        padding-top:75vw !important;
    }
    .content .project .arubahigh ul li:nth-child(3n) {
        margin-right:unset;
    }
    .content .project .arubahigh ul li {
        width:49%;
        margin-right:2% !important;
    } 
    .content .project .arubahigh ul li:nth-child(2n) {
        margin-right:0 !important;
    }
    .sider > *:not(:last-child) {
        margin-right:unset;
        margin-bottom:30px;
    }
    .content .project .transvaalhigh .boxbox img,
    .content .project .molopohigh .boxbox img {
        height: 30vw;
        margin-top:0;
        margin-bottom: -10vw;
    }

    .content .project .transvaalhigh .boxbox,
    .content .project .molopohigh .boxbox, 
    .content .project .phaseone .boxbox, 
    .content .project .phasetwo .boxbox {
        padding:30px !important;
    }
}

@media only screen and (max-width:500px) {
    .content .project .arubahigh ul li {
        width:100%;
        margin-right:0 !important;
    } 
    .content .project .arubahigh ul li:nth-child(2n) {
        margin-right:0 !important;
    }
    .content .project .claimsimg {
        background-size:150% auto;
        height:50vw;
    }
    .content .project .transvaalhigh .boxbox img,
    .content .project .molopohigh .boxbox img {
        height: 50vw;
    }
    .content .project .transvaalhigh .boxbox,
    .content .project .molopohigh .boxbox, 
    .content .project .phaseone .boxbox, 
    .content .project .phasetwo .boxbox {
        padding:15px !important;
    }
}

/* #endregion */