/* =======================================================
* Project Name: Fortune Gold Mining website
* Project URL: https://fortunegoldminers.com/
* Author: Silvanux | Afribrainy | FinestUx
* License: GNU/
======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');

:root {
  --blue:#0090BD;
  --light-blue: #1c75bc;
  --gray: #EBEBEB; 
  --gray-light: #f5f1f1; 
  --gold: rgb(229, 159, 55);
  --white: #fff;
  --black: rgb(0, 0, 0);
  --gray-darker: #444444;
  --gray-dark: #696969;
  --maroon: #BE1E2D;
}

@gray-darker:               #444444;
@gray-dark:                 #696969;
@gray:                      #999999;
@gray-light:                #cccccc;
@gray-lighter:              #ececec;
@gray-lightest:             lighten(@gray-lighter,4%);

html {
    overflow:auto;
    scrollbar-width:none;
    overflow-x:hidden;
    font-size:clamp(6px, 6vw, 13px);
    font-family: "Titillium Web", sans-serif;
    font-weight: 300;
    font-style: normal;
  }

* {
    box-sizing:border-box;
    margin:0;
  }

::-webkit-scrollbar {
  display:none;
}

body {
    background-color:#eee;
    overflow-x:hidden;
    line-height:1.3;
    background-repeat:repeat;
    background-size:auto;
    max-width:100%}

.gold {
    background-color: var(--blue);
    color: var(--gold);
}

.container {
    max-width:1080px;
    margin:0 auto;
    overflow:auto;
    padding:0;
    box-shadow:0 0 6px rgba(0,0,0,.5);
    background-color:var(--white);
    overflow-x:hidden
}

button {
    background-color: var(--gold); /* Green */
    border: none;
    color: var(--white);
    padding: 8px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
  }

.upper_strip {
    background-color: var(--white);
    height: 4px;
}

.logo_strip {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--white);
    height: 70px;
}

.logo_left {
    display: flex;
    width: 20%;
    margin: 10px;
    margin-left: 20px;
}

.logo_right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    justify-items: center;
    width: 80%;
    margin: 10px;
    padding: 10px;
}

.logo_right p {
    color: var(--black);
}

.material-symbols-outlined {
    font-size: 48px;
}

.right_one {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: flex-end;
    color: var(--gold);
    width: 25%;
    margin: 20px;
}

.right_two {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: flex-end;
    color: var(--gold);
    width: 25%;
    margin: 20px;
    padding-right: 20px;
}

.this_box {
    display: flex;
    flex-direction: column;
    align-content: center;
}

.nav_strip {
    background-color: white;
    display: flex;
    flex-direction: row;
    align-content: space-between;
    height: 44px;
    border-bottom: 2px solid var(--gold);
    border-top: 1px solid var(--gold);
}

.left_nav {
    background-color: var(--white);
    display: flex;
    align-items: center;
    align-content: space-around;
    justify-content: center;
    width: 80%;
}

.left_nav ul {
    display: flex;
    flex-direction: row;
    color: var(--black);
    align-content: space-between;
    justify-content: space-around;
    width: 90%;
}

.left_nav li a {
    color: var(--maroon);
    font-size:clamp(8px, 6vw, 15px);
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
}

.left_nav a:hover {
    color: var(--gold);
}

.sidenav {
    display: none;
}

.humberg {
    display: none;
  }

.right_nav {
    background-color: var(--white);
    display: flex;
    align-items: center;
    align-content: space-around;
    justify-content: center;
    width: 20%;
}

.right_nav p {
    color: var(--maroon);
}

.right_nav p:hover {
    color: var(--gold);
}

.material-symbols-outlined {
    color: var(--maroon);
}

.slide_strip {
    background-color: var(--gray);
}

.slogan_strip {
    background-color: var(--gold);
}

.cards_strip {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    background-color: var(--white);
    padding: 10px;
}

.upper_card {
    display: flex;
    flex-direction: row;
    align-content: space-between;
    align-items: center;
    margin: 5px;
}

.upper_card h2 {
        font-family: "Titillium Web", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size:clamp(10px, 10vw, 25px);
        margin-right: 10px;
        margin-left: 10px;
    }

.upper_card p {
    font-family: "Titillium Web", sans-serif;
    /* font-weight: 100; */
    font-style: normal;
    font-size:clamp(10px, 6vw, 14px);
    text-align: justify;
    text-justify: inter-word;
    width: 100%;
}

.para_deco {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 10px;
}

.deco {
    background-color: var(--gold);
    height: 4px;
    margin-top: 5px;
}

.lower_card {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-areas:
        "a b c d";
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    margin: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.card_single {
    background-color: var(--white);
    width: 100%;
    grid-area: a;
}

.card_single1 {
    background-color: var(--white);
    width: 100%;
    grid-area: b;
}

.card_single2 {
    background-color: var(--white);
    width: 100%;
    grid-area: c;
}

.card_single3 {
    background-color: var(--white);
    width: 100%;
    grid-area: d;
}

.img_holder {
    aspect-ratio: 2 / 3;
}

.img_holder img {
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card_single_deco {
    background-color: var(--gold);
    height: 4px;
    margin-bottom: 0px;
    margin-top: 0;
}

.machinery_strip {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "e f";
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.machinery_left {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    background-color: var(--white);
    width: 100%;
    grid-area: e;
}

.machinery_left h2 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size:clamp(10px, 10vw, 25px);
    margin-right: 10px;
    margin-left: 10px;
}

.machinery_left p {
    font-family: "Titillium Web", sans-serif;
    /* font-weight: 100; */
    font-style: normal;
    font-size:clamp(10px, 6vw, 14px);
    text-align: justify;
    text-justify: inter-word;
    padding: 10px;
    width: 100%;
}

.machinery_left button {
    margin-bottom: 10px;
}

.machinery_right {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-evenly;
    background-color: var(--white);
    width: 100%;
    grid-area: f;
}

.machinery_right img {
    width: 100%;
    object-fit: cover;
}
/* end of machinery strip */


.whatwedo_strip {
    display: flex;
    flex-direction: column;
    background-color: var(--gray-light);
}

.upper_wedo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px;
}

.upper_wedo h2 {
        font-family: "Titillium Web", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size:clamp(10px, 10vw, 25px);
        margin-right: 10px;
        margin-left: 10px;
    }

.upper_wedo h4 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size:clamp(7px, 10vw, 18px);
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.lower_wedo {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas:
        "g h i j";
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.lower_wedo button {
    margin: 10px;
}

.lower_wedo p {
    margin: 8px;
}

.lower_wedo img {
    object-fit: cover;
}

.wedo_img_holder {
    width: 100%;
    margin-bottom: 0;
}

.card_wedo1 {
    background-color: var(--light-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
    grid-area: g;
}

/* SPECIAL STRIP HOME PAGE */

*,
*::before,
*::after { 
  box-sizing: border-box;
}

html {
  background-color: #f0f0f0;
}


img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}


.btn--block {
  display: block;
  width: 100%;
}
 
.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 10px;
  margin-right: 10px;
}

.cards__item {
  display: flex;
  padding: 1rem;
  @media(min-width: 40rem) {
    width: 33%;
  }
  @media(min-width: 56rem) {
    width: 33.3333%;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  &:hover {
    .card__image {
      filter: contrast(100%);
    }
  }
}

.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: saturate(200%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(.43,.41,.22,.91);
  &::before {
    content: "";
	display: block;
    padding-top: 56.25%; 
  }
  @media(min-width: 40rem) {
    &::before {
      padding-top: 66.6%; 
    }
  }
}

.card__image--flowers {
  background-image: url('img/home/wedo.webp');
}

.card__image--river {
  background-image: url('../img/home/wedo3.webp');
}

.card__image--record {
  background-image: url('../img/home/wedo2.webp');
}

.card__image--fence {
  background-image: url('../img/home/wedo.webp');
}


.card p {
    font-family: "Titillium Web", sans-serif;
    /* font-weight: 100; */
    font-style: normal;
    font-size:clamp(10px, 6vw, 14px);
    text-align: justify;
    text-justify: inter-word;
    color: var(--black);
    padding: 5px;
    width: 100%;
}

/* END OF SPECIAL STRIP */

.footer_strip {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--blue);
    color: var(--white);
}

.footer_strip ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer_strip ul,li, a {
    text-decoration: none;
    list-style: none;
    text-align: left;
    color: var(--white);
}

.footer_strip li, a {
    margin: 0;
    padding: 0.2em;
}

.footer_strip a:hover {
    color: var(--gold);
}

.footer_strip h3 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 100; 
    font-style: normal;
    font-size:clamp(12px, 6vw, 18px);
    text-decoration: underline 2px var(--gold);
    text-underline-offset: 5px;
    margin-bottom: 10px;
}

.footer_strip p {
    font-size:clamp(10px, 6vw, 14px);
}

.footer_one p {
    font-family: "Titillium Web", sans-serif;
    /* font-weight: 100; */
    font-style: normal;
    font-size:clamp(10px, 6vw, 14px);
    /* text-align: justify; */
    /* text-justify: inter-word; */
    padding: 5px;
    width: 100%;
}

.footer_one, .footer_two, .footer_three, .footer_four {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: left;
    justify-items: left;
    width: 25%;
}

.footer_one img {
    width: 90%;
}


.copyright_strip {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    font-size:x-small;
    background-color:var(--maroon);
    color: var(--white);
    min-height:25px;
    border-top:.01em var(--icon) solid;
    padding:1.5rem;
    }

    .copyright_strip p {
    font-family: "Titillium Web", sans-serif;
    /* font-weight: 100; */
    font-style: normal;
    font-size:clamp(8px, 4vw, 12px);
    }

    .copyright_strip a {
        color: var(--gold);
        text-decoration: none;
    }

    .menu_button {
        display: none;
    }

    .sidebar {
        display: none;
    }


/* On TABLET screens */

@media only screen and (max-width: 660px) and (min-width: 431px) {
    .logo_strip {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
        background-color: var(--white);
        height: auto;
    }
    
    .logo_left {
        display: flex;
        width: 50%;
        padding-top: 5px;
        padding-bottom: 2px;
    }
    
    .logo_right {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        justify-items: center;
        width: 100%;
        margin: 1px;
        padding: 1px;
    }

    .right_one {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-content: flex-end;
        color: var(--gold);
        width: 25%;
        margin: 5px;
    }
    
    .right_two {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-content: flex-end;
        color: var(--gold);
        width: 25%;
        margin: 5px;
        margin-right: 20px;
    }

    .right_nav {
        width: 30%;
    }

    .left_nav {
        width: 70%;
    }

    .upper_card {
        display: flex;
        flex-direction: column;
    }

    .hideOnMobile {
        display: none;
    }

    .menu_button {
        display: block;
    }


    .upper_card h2 {
        width: 100%;
        font-family: "Titillium Web", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        font-size:clamp(10px, 6vw, 30px);
        margin-right: 10px;
        margin-left: 10px;
        margin-bottom: 5px;
    }

    .upper_card p {
        font-family: "Titillium Web", sans-serif;
        /* font-weight: 100; */
        font-style: normal;
        font-size:clamp(10px, 6vw, 14px);
        text-align: justify;
        text-justify: inter-word;
        width: 100%;
    }

    .para_deco {
        width: 100%;
    }

    .lower_card {
        display: grid;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
            "a b"
            "c d";
        align-content: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
    }

    .machinery_strip {
        display: grid;
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr;
        grid-template-areas:
            "e"
             "f";
        align-content: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .machinery_strip h2 {
        text-align: center;
    }

    .lower_wedo {
        display: grid;
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "g h" 
            "i j";
        align-content: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer_strip {
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
        align-items: center;
        padding: 20px;
        background-color: var(--blue);
        color: var(--white);
        width: 100%;
    }
    
    .footer_one, .footer_two, .footer_three, .footer_four {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
        justify-items: center;
        text-align: center;
        width: 100%;
    }
    
    .footer_four p {
        margin: 0;
        padding: 0;
        text-align: center;
    }
    
    .footer_strip p {
            font-family: "Titillium Web", sans-serif;
            /* font-weight: 100; */
            font-style: normal;
            font-size:clamp(10px, 6vw, 12px);
            /* text-align: justify; */
            /* text-justify: inter-word; */
            width: 100%;
    }

.footer_strip h3 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 100; 
    font-style: normal;
    font-size:clamp(10px, 6vw, 16px);
    text-decoration: underline 2px var(--gold);
    text-underline-offset: 5px;
    margin-bottom: 10px;
    margin-top: 25px;
}

.footer_one, .footer_two, .footer_three, .footer_four {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.footer_strip img {
    width: 60%;
}


    .copyright_strip p {
        font-family: "Titillium Web", sans-serif;
        /* font-weight: 100; */
        font-style: normal;
        font-size:clamp(10px, 4vw, 12px);
        /* text-align: justify; */
        /* text-justify: inter-word; */
        width: 100%;
    }

    .sidebar {
        display: none;
    }

}


/* On SMALLER screens */

@media only screen and (max-width: 430px) and (min-width: 20px) {
    .container {
        grid-template-rows: repeat(9, auto);
        grid-template-areas: "a" "b" "c" "d" "e" "f" "g" "h" "i";
    }

    .left_nav ul {
        display: none;
    }

    .left_nav {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 60%;
    }

    .right_nav {
        width: 40%;
    }

    .right_nav p {
        display: block;
    }

    .cards_strip {
        margin: 0px;
        padding-left: 3px;
        padding-right: 3px;
    }

    .upper_card {
        display: flex;
        flex-direction: column;
    }

    .upper_card h2 {
        width: 100%;
        font-family: "Titillium Web", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-align: center;
        font-size:clamp(10px, 8vw, 30px);
        margin-right: 10px;
        margin-left: 10px;
    }

.upper_card p {
    font-family: "Titillium Web", sans-serif;
    /* font-weight: 100; */
    font-style: normal;
    font-size:clamp(12px, 4vw, 25px);
    text-align: justify;
    text-justify: inter-word;
    width: 100%;
}

.para_deco {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.deco {
    background-color: var(--gold);
    height: 6px;
    margin-top: 5px;
}

.lower_card {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        "a b"
        "c d";
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 5px;
    padding-left: 3px;
    padding-right: 3px;
    gap: 10px;
}

.img_holder {
    /* aspect-ratio: 2 / 3; */
    width: 100%;
}

.img_holder img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.machinery_strip {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    grid-template-areas:
        "e"
         "f";
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.machinery_left h2 {
    text-align: center;
}

.footer_strip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    padding: 20px;
    background-color: var(--blue);
    color: var(--white);
}

.footer_one, .footer_two, .footer_three, .footer_four {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    text-align: center;
    width: 100%;
}

.footer_four p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer_strip p {
        font-family: "Titillium Web", sans-serif;
        /* font-weight: 100; */
        font-style: normal;
        font-size:clamp(10px, 4vw, 12px);
        /* text-align: justify; */
        /* text-justify: inter-word; */
        width: 100%;
}

.copyright_strip {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items: center;
    font-size:x-small;
    background-color:var(--maroon);
    color: var(--white);
    min-height:20px;
    border-top:.01em var(--icon) solid;
    padding:1.5rem;
    }

.copyright_strip p {
        font-family: "Titillium Web", sans-serif;
        /* font-weight: 100; */
        font-style: normal;
        font-size:clamp(8px, 3vw, 12px);
        /* text-align: justify; */
        /* text-justify: inter-word; */
        width: 100%;
}
  
  /*Responsive Styles*/
  
.logo_strip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    height: auto;
}

.logo_left {
    display: flex;
    width: 80%;
    margin: 10px;
    margin: 10px;
}

.logo_right {
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    justify-items: center;
    width: 100%;
    margin: 10px;
}

.right_one {
    display: none;
}

.right_two {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    color: var(--gold);
    width: 80%;
    margin: 0;
    padding: 0;
}

.sidenav {
    display: block;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 6;
    top: 0;
    left: 0;
    background-color: #111;
    opacity: 95%;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-family: "Titillium Web", sans-serif;
    font-size:clamp(6px, 3vw, 8px);
    color: var(--gold);
    display: block;
    transition: 0.3s;
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 20px;
    margin-left: 50px;
  }

  .humberg {
    display: block;
    margin-left: 8px;
  }

  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 15px;}

}