
/*-----------------------------------------*/
/*           DIVINE RATIO SCALE            */
/*-----------------------------------------*/

/*


11.089em    177.42px
6.854em     109.66px
4.236em     67.77px
2.618em     41.89px
1.618em     25.89px
1em         16.00px
0.618em     9.89px
0.382em     6.11px
0.236em     3.78px
            2.33
            1.44
            0.89
            0.55
            0.34
            0.21
            0.13
            0.08
            0.05
            0.03
            0.02
            0.01
            0.0


*/

/* --primary:rgba(0,93, 171); */
/*-----------------------------------------*/
/*              CSS Variables              */
/*-----------------------------------------*/

    :root {

        --dark: #424242;
        --light: #FFFFFF;

        --menuspeed: 0.75s;

        --primarylight: #039be5;
        --primary:#005dab;
        --primarydark: #00335f;
        --primaryheavy: ;

        --secondarylight:;
        --secondary:red;
        --secondarydark:;
        --secondaryheavy: ;

        --neutrallight: #f5f5f5;
        --neutralmed: #cecece;
        --neutral: #757575;
        --neutraldark: #212121;
        --neutralheavy: #424242;

        /* Special Variables */
        --shadow: 0px 0px 3px 0px var(--neutralmed);
        --buttonshadow: 1px 1px 3px 0px var(--neutralmed);
          /* [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color]; */

        --hovertext: #fff;
        --hoverbackground: red;
        --hoverlink: red;

        --sixth: 177.42px;
        --fifth: 109.66px;
        --fourth: 67.77px;
        --third: 41.89px;
        --second: 25.89px;
        --first: 16.00px;
        --regular: 12px;
        --half: 10px;
        --quarter: 2.33px;
        --eighth: 1.44px;



        /* Temporary Variables */

        --testA: lightblue;
        --testB: lightpink;
    }

.floating-home-box {
    position:fixed;
    bottom: 21px;
    right: 21px;
    padding: 10px 8px;
    border: 3px solid red;
    border-radius: 233px;
    z-index: 9999999;
    background-color: var(--neutrallight);
    }

.floating-home-button {
    font-size: 34px;
    color: var(--secondary);
    }


.send {
    margin-top: var(--half);
}

.g-recaptcha-outer{
    text-align: center;
    border-radius: 5px;
    background: none;
    border-style: solid;
    border-color: none;
    border-width: 0px;
    border-bottom-width: 0px;
}
.g-recaptcha-inner{
    width: 289px;
    height: 70px;
    overflow: hidden;
    margin: 0 auto;
}
.g-recaptcha{
    position:relative;
    left: -2px;
    top: -1px;
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}


/*-----------------------------------------*/
/*              GLOBAL STYLE               */
/*-----------------------------------------*/

      *   {
          margin: 0px;
          padding: 0px;
          -webkit-font-smoothing: antialiased;
          -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
          -moz-box-sizing: border-box;    /* Firefox, other Gecko */
          box-sizing: border-box;         /* Opera/IE 8+ */
          }

                html {
                    font-size: var(--first);
                    font-family: Helvetica, Arial, sans-serif;
                    background-color: var(--light);
                    }

                h1  {
                    text-transform: uppercase;
                    font-size: var(--second);
                    line-height: 1.618;
                    color: var(--dark);
                    }

                h2  {
                    text-transform: uppercase;
                    font-size: var(--first);
                    line-height: 1.618;
                    color: var(--dark);
                    }

                h3  {
                    text-transform: uppercase;
                    font-size: var(--half);
                    line-height: 1.618;
                    color: var(--dark);
                    }


                h4  {
                    text-transform: uppercase;
                    font-size: var(--half);
                    line-height: 1.618;
                    color: var(--dark);
                    }

                h5  {
                    text-transform: uppercase;
                    font-family: Helvetica;
                    font-weight: 100;
                    font-size: var(--regular);
                    line-height: 2.618;
                    color: var(--neutral);
                    }

                hr {
                    margin-top: var(--fourth);
                    margin-bottom: var(--third);
                }


                a   {
                    text-decoration: none;
                    color: var(--primary);
                    }

                a:link {   /* unvisited link */
                    color: var(--primary);
                    }


                a:visited {   /* visited link */
                    color: var(--primary);
                    }


                a:hover {   /* mouse over link */
                    color: var(--primary);
                    }


                a:active {   /* selected link */
                    color: var(--primary);
                    }


                p   {
                    color: var(--dark);
                    margin-bottom: var(--second);
                    line-height: 1.618;
                    font-size: var(--regular);
                    
                    }

                li {
                   font-size: var(--half);
                   }


                .emphasized {
                    font-size: var(--first);
                    line-height: 1.618;
                    font-weight: 500;
                    color: var(--neutraldark);
                    font-family: Helvetica;
                    }

                .non-emphasized {
                    font-size: var(--first);
                    line-height: 1.618;
                    font-weight: 500;
                    color: var(--neutraldark);
                    font-family: Helvetica;
                }

      .view {
          height: auto;
          display: grid;
          grid-template-columns: 100%;
          justify-items: center;
          }

      .limiter {
          min-width: 1024px;
          max-width: 1024px;
          height: auto;
          padding: 0 var(--first) 0 var(--first);
          display: grid;
          }


        .CTA-STORY {
             letter-spacing: var(--eighth);
             background: var(--secondary);
             height: 31px;
             max-width: 144px;
             display: flex;
             align-items: center;
             justify-self: center;
             justify-content: center;
             border-radius:var(--quarter);
             color: var(--light);
             }

        .CTA-STORY-A {
            font-size: var(--half);
            color: var(--light);
            letter-spacing: var(--eighth);
            text-transform: uppercase;
            font-weight: bold;
            }


/*-----------------------------------------*/
/*          MOBILE MENU STYLE              */
/*-----------------------------------------*/

    .menu-row {
      background-color: var(--light);
      min-width: 100%;
      height: 80px;
      position: fixed;
      z-index: 999;
      box-shadow: var(--shadow);
      margin: -20px -10px 0px 0px;
    }

    .menu-wrap {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .menu-wrap .toggler {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      cursor: pointer;
      width: 50px;
      height: 50px;
      opacity: 0;
      border-radius: var(--eighth);
    }

    .menu-wrap .temple {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 60px;
      height: 60px;
      padding: var(--half) var(--first);
      background-color: var(--light);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--eighth);
    }

        .menu-wrap .temple > div {
          position: relative;
          width: 100%;
          height: 1px;
          background-color: var(--neutral);
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.34s ease;
        }

        .menu-wrap .temple > div:before,
        .menu-wrap .temple > div:after {
          content: '';
          position: absolute;
          z-index: 1;
          top: -10px;
          width: 100%;
          height: 1px;
          background: inherit;
        }

        .menu-wrap .temple > div:after {
          top: 10px;
        }


            /* Toggler Animation */


            .menu-wrap .toggler:checked + .temple > div {
              transform: rotate(135deg);
            }

            /* Turn lines into buried treasure */
            .menu-wrap .toggler:checked + .temple > div:before,
            .menu-wrap .toggler:checked + .temple > div:after {
              top: 0;
              transform: rotate(90deg);
            }

            /* Rotate the buried treasure on hover */
            .menu-wrap .toggler:checked:hover + .temple > div {
              transform: rotate(225deg);
            }

      /* Show Me The MENU!!! */

      .menu-wrap .toggler:checked ~ .menu {
        visibility: visible;
      }

      .menu-wrap .toggler:checked ~ .menu > div {
        transform: scale(1);
        transition-duration: var(--menuspeed);
      }

      .menu-wrap .toggler:checked ~ .menu > div > div {
        opacity: 1;
        transition: opacity 0.34s;
      }

        .menu-wrap .menu {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          visibility: hidden;
          overflow: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .menu-wrap .menu > div {
          background-color: var(--neutrallight);
          border-radius: 50%;
          width: 200vw;
          height: 200vw;
          display: flex;
          flex: none;
          align-items: center;
          justify-content: center;
          transform: scale(0);
          transition: all 0.34s ease;
        }

        .menu-wrap .menu div > div {
          text-align: center;
          max-width: 90vh;
          max-height: 100vh;
          opacity: 0;
          transition: opacity 0.34s ease;
        }

        .menu-wrap .menu div > div > ul > li {
          list-style: none;
          color: var(--neutral);
          font-size: var(--second);
          padding: var(--first);
        }

        .menu-wrap .menu div > div > ul > li > a {
          color: inherit;
          text-decoration: none;
          transition: color 0.34s ease;
        }


              .clss-logo-mobile-menu {
                max-height: 144px;
              }





/*-----------------------------------------*/
/*              HEADER STYLE               */
/*-----------------------------------------*/

      .header-grid {
              display: grid;
              width: 100%;
              max-height: 145px;
              grid-gap: var(--first);
              grid-template-columns: 17% auto;
              margin-top: var(--fourth);
              margin-bottom: var(--third);
              }

          .logo-area {
              max-width: 100%;
              min-height: 100%;
              display: grid;
              align-items: end;
              }

                  .clss-logo {
                      height: auto;
                      width: 100%;
                      }

          .nav-area {
              display: grid;
              grid-template-rows: auto auto auto auto;
              grid-template-areas:
              'a'
              'a'
              'b'
              'c';
              grid-gap: var(--half);
              min-height:145px;
          }

                  .nav-level-a {
                      grid-area: a;
                      max-width: 805px;
                      display: grid;
                      padding-right: var(--half);
                      padding-bottom: var(--half);
                      align-items: end;
                      justify-content: end;
                  }

                          .nav-level-a li {
                              list-style:none;
                          }

                          .nav-level-a a {
                              font-size: var(--second);
                              color: var(--secondary);
                              text-decoration: none;
                              letter-spacing: var(--eighth);
                              font-weight: bold;
                          }

                          .nav-level-a a:hover {
                              color: var(--hoverlink);
                              transition: 0.34s;
                          }

                  .nav-level-b {
                      grid-area: b;
                      max-width: 805px;
                      background-color: var(--primary);
                      display: grid;
                      align-items: center;
                      word-spacing: var(--first);
                      padding-right: var(--first);
                      border-radius: var(--quarter);
                      box-shadow: var(--shadow);
                      color: var(--light);
                      font-size: var(--half);
                      letter-spacing: var(--eighth);
                  }

                      .nav-level-b ul {
                          display: grid;
                          grid-gap: var(--half);
                          grid-template-columns: max-content max-content max-content max-content;
                          align-items: center;
                          justify-content: end;
                          height: 100%;
                          list-style: none;
                      }

                          .nav-level-b a {
                              color: var(--light);
                              text-decoration: none;
                              text-transform: uppercase;
                          }

                          .nav-level-b a:hover {
                              color: var(--hoverlink);
                              transition: 0.34s;
                          }

                  .nav-level-c {
                      grid-area: c;
                      max-width: 805px;
                      letter-spacing: var(--eighth);
                        }

                          .nav-level-c ul {
                              display: grid;
                              grid-gap: var(--half);
                              grid-template-columns: auto auto auto auto auto;
                              height: 100%;
                              list-style: none;
                                }

                          .nav-box {
                              background-color: var(--primary);
                              display: grid;
                              align-items: center;
                              border-radius:var(--quarter);
                              box-shadow: var(--shadow);
                                }

                          .nav-level-c a {
                              color: var(--light);
                              text-decoration: none;
                              text-transform: uppercase;
                              text-align: center;
                              background-color: var(--primary);
                                }

                          .nav-level-c a:hover {
                              color: var(--hovertext);
                              background-color: var(--hoverbackground);
                              transition: 0.34s;
                                }

/*-----------------------------------------*/
/*             MAIN BODY STYLE             */
/*-----------------------------------------*/

    .box {
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-gap: var(--first);
      max-width: 992px;
    }

    .content {
      min-height: 377px;
      max-width: 100%;
    }


/*-----------------------------------------*/
/*             CONTENT TEMPLATES           */
/*-----------------------------------------*/


.hero-block {
    display: grid;
    grid-gap: var(--first);
    min-height: 377px;
    }

.hero-unit {
    background-color: var(--neutrallight);
    height: 233px;
    border-radius: var(--quarter);
    box-shadow: var(--shadow);
    }

.hero-image {
    max-width: 651px;
    border-radius: var(--quarter);
}

.title-unit {
    min-height: 100%;
}

.hero-block h1 {
    margin-top: var(--second);
    margin-bottom: var(--second);
    color: var(--neutral);
    font-size: 21px;
}

.hero-block p {
    color: var(--neutral);
    line-height: 1.414rem;
    font-size: 13px;
}


/*-----------------------------------------*/
/*         HOME SLIDER TEMPLATES           */
/*-----------------------------------------*/


                              /*           SUPER-SLIDER STYLE             */

                              .carousel-wrapper{
                              height:377px;
                              position:relative;
                              width:100%;
                              margin:0 auto;
                              border-radius: var(--eighth);
                              margin-bottom: var(--first);
                              box-shadow: var(--shadow);
                              }

                                  .carousel-wrapper .carousel-content {
                                    position: absolute;
                                    bottom: 0;
                                    max-width: 70%;
                                    padding: var(--second);

                                  }

                                  .carousel-wrapper .carousel-content h2 {
                                    font-size: var(--second);
                                    color: var(--neutrallight);
                                    text-shadow: 2px 2px 3px var(--neutraldark);
                                  }

                              .carousel-item{
                              position:absolute;
                              top:0;
                              bottom:0;
                              left:0;
                              right:0;
                              opacity:0;
                              transition: all 0.5s ease-in-out;
                              border-radius: var(--quarter);
                              }

                              .arrow{
                              border: solid var(--light);
                              border-width: 0 3px 3px 0;
                              display: inline-block;
                              padding: 6px;
                              }

                              .arrow-prev{
                              left: var(--second);
                              position:absolute;
                              top: 89%;
                              transform:translateY(-50%) rotate(135deg);
                              display: none;
                              }

                              .arrow-next{
                              right: var(--second);
                              position:absolute;
                              bottom: var(--second);
                              transform:translateY(-50%) rotate(-45deg);
                              }

                              .light{
                              color:white;
                              }

                              /*Select every element*/
                              [id^="item"] {
                              display: none;
                              }

                              .item-1 {
                              z-index: 2;
                              opacity: 1;
                              background:url('https://canadalightingandsign.com/assets/home/slide01.jpg');
                              background-size: cover;


                              }
                              .item-2{
                        background:url('https://canadalightingandsign.com/assets/home/slide02.jpg');
                              background-size:cover;

                              }
                              .item-3{
                        background:url('https://canadalightingandsign.com/assets/home/slide03.jpg');
                              background-size:cover;

                              }

                              *:target ~ .item-1 {
                              opacity: 0;
                              }

                              #item-1:target ~ .item-1 {
                              opacity: 1;
                              }

                              #item-2:target ~ .item-2, #item-3:target ~ .item-3 {
                              z-index: 3;
                              opacity: 1;
                              }


                              /*           SUPER-SLIDER ENDS HERE!           */

.content-grid {
  display: grid;
  grid-gap: var(--first);
  grid-template-areas:
  'x x'
  'a b';
  grid-template-columns: 1fr 1fr;
  }

    .showcase {
      grid-area: x;
      height: 240px;
      margin-bottom: var(--third);
      display: grid;
      grid-gap: var(--half);
      /* grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(2, 1fr); */
      display: grid;
      grid-template-areas:
      'mb01 mb02 mb03 mb04 mb05 mb06'
      'mb07 mb08 mb09 mb10 mb11 mb12'
      ;
      grid-template-columns: repeat(6, 1fr);
      }

        .minibox {
          background-color: var(--neutrallight);
          height: 100%;
          width: 100%;
          font-size: 8px;
          text-transform: uppercase;
          letter-spacing: 0.05rem;
          color: var(--neutral);
          text-align: center;
          transition: ease-in 0.21s;
          border-radius: var(--quarter);
          box-shadow: var(--shadow);
          }

              .grow:hover {
                  -webkit-transform: scale(1.21);
                  -ms-transform: scale(1.21);
                  transform: scale(1.21);
                  transition: 0.21s;
                  transition-duration: 0.21s;
                  }

          .minipic {
              background-color: var(--light);
              height: 80px;
              width: 100px;
              border-radius: var(--quarter) var(--quarter) 0 0;
            }

          .minilabel {
            height: 20px;
            display: grid;
            align-items: start;
            justify-content: center;
            padding: 5px 5px;
            line-height: var(--half);
            background-color: var(--neutrallight);
            border-radius: 0 0 var(--quarter) var(--quarter);
            }

              .minilabel h4 {
                font-weight: normal;;
                display: flex;
                justify-content: center;
                font-size: 8px;
                color: var(--neutral);
                text-align: center;
                }


                .mb01 {
                  grid-area: mb01;
                  }

                .mb02 {
                  grid-area: mb02;
                  }

                .mb03 {
                  grid-area: mb03;
                  }

                .mb04 {
                  grid-area: mb04;
                  }

                .mb05 {
                  grid-area: mb05;
                  }

                .mb06 {
                  grid-area: mb06;
                  }

                .mb07 {
                  grid-area: mb07;
                  }

                .mb08 {
                  grid-area: mb08;
                  }

                .mb09 {
                  grid-area: mb09;
                  }

                .mb10 {
                  grid-area: mb10;
                  }

                .mb11 {
                  grid-area: mb11;
                  }

                .mb12 {
                  grid-area: mb12;
                  }






    .information-a {
      grid-area: a;
      height: 325px;
      }

              .title-card {
                  background-color: var(--primary);
                  display: grid;
                  align-items: center;
                  justify-content: start;
                  min-height: 30.69px;
                  padding: 0 1.618rem 0 1.618rem;
                  border-radius: 0.2rem;
                  margin-bottom: 2.618rem;
                  box-shadow: var(--shadow);
                  }

              .title-card h3 {
                  font-weight: normal;
                  letter-spacing: 0.1rem;
                  font-size: 10px;
                  color: var(--light);
                  }

              .content-card {
                  padding: 0rem;
                  }

              .content-card p {
                  color: var(--neutralheavy);
                  }

              .client-card {
                  height: 217px;
                  min-width: 10px;
                  display: grid;
                  grid-template-columns: 1fr 1fr 1fr;
                  grid-template-rows: 1fr 1fr 1fr;
                  grid-gap: 0.618rem;
                  align-items: center;
                  color: var(--neutrallight);
                  }

              .client-grid-box {
                  display: grid;
                  text-align: center;
                  align-items: center;
                  border: 0.5px solid var(--neutrallight);
                  padding: 0.618rem;
                  border-radius: 0.2rem;
                  height: 100%;
                  }

                        .client-logo {
                            max-width: 100%;
                            }


    .information-b {
      grid-area: b;
      height: 325px;
      }

    .sidebar {
      height: auto;
      max-width: 100%;
      }

        .sidebar-a {
          background-color: var(--neutrallight);
          min-height: 377px;
          border-radius: var(--quarter);
          box-shadow: var(--shadow);
          padding: var(--second) var(--first) var(--first) var(--first);
          display: grid;
          grid-template-rows: max-content;
          grid-area: sda;
          }

                .sidebar-a-label h3 {
                    font-weight: normal;
                    letter-spacing: 0.1rem;
                    font-size: 10px;
                    color: var(--neutral);
                    align-self: center;
                    margin-bottom: var(--second);
                    text-align: center;
                    }

                .sidebar-a-form {
                    height: 100%;
                    background-color: none;
                    border-radius: var(--quarter);
                    align-self: end;
                    width: 100%;
                    }


                .name, .email, .message {
                    width: 100%;
                    border: none;
                    padding: var(--half);
                    margin-bottom: var(--half);
                    border-radius: var(--quarter);
                    }

                .message {
                    height: 80px;
                    -webkit-appearance: none;
                    font-family: Helvetica, Arial, sans-serif;
                    }

                .send-container {
                    text-align: center;
                    border-radius: var(--quarter);
                    }

                .send {
                    color: var(--light);
                    background-color: var(--secondary);
                    height: 30px;
                    width: 144px;
                    -webkit-appearance: none;
                    border: 0;
                    border-radius: var(--quarter);
                    text-transform: uppercase;
                    font-weight: bold;
                    font-size: var(--half);
                    letter-spacing: var(--eighth);
                }


          /* .sidebar-b {
                height: 240px;
                width: 100%;
                background-color: var(--neutrallight);
                box-shadow: var(--shadow);
                padding: 2.618rem 1.618rem 1.618rem 1.618rem;
                display: grid;
                grid-template-rows: max-content;
                margin-bottom: 4.236rem;
                }

                .badge-label h3 {
                    font-weight: normal;
                    letter-spacing: 0.1rem;
                    font-size: 0.85rem;
                    color: var(--neutraldark);
                    align-self: center;
                    margin-bottom: 1.618rem;
                    text-align: center;
                    }
*/
                .badge {
                    background-color: var(--light);
                    border-radius: 0.2rem;
                    align-self: center;
                    width: 100%;
                    border: 0.5px solid var(--neutrallight);
                    }


    .sidebar-grid {
      display: grid;
      grid-gap: var(--first);
      grid-template-areas:
      'sda'
      'sdb'
      'sdx';
      }

        .sidebar-b {
          background-color: var(--neutrallight);
          height: 240px;
          width: 100%;
          max-width: 325px;
          grid-template-rows: max-content;
          display: grid;
          margin-bottom: var(--third);
          border-radius: var(--quarter);
          box-shadow: var(--shadow);
          padding: var(--second) var(--first) var(--first) var(--first);
          grid-area: sdb;
          }

              .sidebar-b-label h3 {
                  font-weight: normal;
                  letter-spacing: 0.1rem;
                  font-size: 10px;
                  color: var(--neutral);
                  align-self: center;
                  margin-bottom: 1.618rem;
                  text-align: center;
                  }

              .sidebar-b-img {
                  height: 100%;
                  background-color: none;
                  border-radius: var(--quarter);
                  align-self: center;
                  width: 100%;
                  }



        .sidebar-x {
          background-color: pink;
          height: 325px;
          grid-area: sdx;
          height: 280px;
          width: 100%;
          max-width: 325px;
          background-color: var(--light);
          }

                        .sidebar-x .content-card {
                            display: grid;
                            grid-gap: var(--half);
                            justify-content: center;
                            }


                            .menu-card-box {
                              display: grid;
                              grid-template-columns: max-content max-content;
                              height: 30px;
                              align-items: center;
                              background-color: var(--neutrallight);
                              box-shadow: var(--buttonshadow);
                              border-radius: var(--eighth);
                              transition: ease-in 0.21s;
                              width: 280px;
                              }

                                    .menu-card-arrow {
                                        background-color: var(--primary);
                                        height: 100%;
                                        display: grid;
                                        align-items: center;
                                        padding: 0px var(--first);
                                        color: var(--light);
                                        margin-right: var(--first);
                                        box-shadow: var(--shadow);
                                        border-radius: var(--quarter) 0px 0px var(--quarter);
                                        }

                                    .menu-card-box h4 {
                                        font-weight: normal;
                                        text-transform: uppercase;
                                        letter-spacing: 0.08rem;
                                        font-size: 10px;
                                        color: var(--neutral);
                                        font-weight: normal;
                                        }

/*-----------------------------------------*/
/*              FOOTER BEGINS              */
/*-----------------------------------------*/


footer {
  margin-top: var(--fifth);
  min-height: 377px;
  background-color: var(--primary);
  display: grid;
  padding: var(--fifth) 0px var(--fifth) 0px;
  }

        .footer-grid {
          display: grid;
          grid-template-columns: 1fr 1fr 1fr 1fr;
          grid-template-rows: 144px 144px;
          grid-gap: var(--second);
          }

          .footer-grid-box a {
            font-size: var(--regular);
            color: var(--light);
            }

          .footer-grid-box h4 {
            font-size: var(--regular);
            letter-spacing: var(--eighth);
            margin-bottom: var(--first);
            color: var(--light);
            }

          .footer-list a,p{
            font-size: var(--regular);
            color: var(--light);
            line-height: 1.618;
            }

            .footer-list a:hover {
              color: var(--primarydark);
              transition: ease-out 0.21s;
              }

        .footer-grid-box {
          border: 0.0px solid white;
          }

        .footer-grid-box ul {
          list-style-type: none;
          }

.anchor {
  background-color: var(--primarydark);
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  }

.anchor p {
  color: white;
  margin: 0;
  text-align: center;
  }

.social-box {
    margin-left: 5px;
    }

.social-footer-icon {
    color: white;
    margin: 0px 2px;
    }


/*-----------------------------------------*/
/*           MAIN MEDIA QUERIES            */
/*-----------------------------------------*/
    @media(min-width: 1024px) {

      .menu-wrap, .menu-row, .spacer{
          display: none;
          }

    }

    @media(max-width: 1023px) {
        
      .limiter {
          min-width: 320px;
          width: 100%;
          padding: var(--second);
          }

      .view{
        width: 100%;
        }

      .header-grid {
          display: none;
          transition: all 0.34s;
          }

      .box {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
      }

      .carousel-wrapper {
        min-height: 100vh;
      }

          .carousel-wrapper .carousel-content h2 {
            font-size: var(--third);
          }

          .arrow {
            display: none;
          }

      .content-grid, .sidebar-grid {
        padding: 0px var(--second);
        margin-top: var(--second);
        }

      .sidebar-grid {
        grid-gap: var(--second);
        grid-template-areas:
        'sda sda'
        'sdb sdx';
        grid-template-columns: 1fr 1fr;
        }
              .sidebar-b {
                margin-bottom: 0px;
                height: 310px;
                min-width: 100%;
              }

              .sidebar-x {
                min-width: 100%;
              }

      .showcase {
        grid-gap: var(--first);
        }

        .minibox, .minipic, .minilabel {
          min-width: 100%;
          max-width: 8fr;
        }
        
        .hero-unit {
            max-width: 651px;
            margin: auto;
        }


    }

    @media(max-width: 767px) {
        
        .hero-unit {
            max-width: 100vw;
            margin: auto;
            max-height: 200px;
            padding-top: 70px;
        }
        
        .hero-image {
            max-width: 100vw;
            margin: auto;
        }
        
        .limiter {
            padding: 0px;
            }
        
        .title-unit {
            padding: var(--second)
        }
        
      .header-grid {
        display: none;
        }

      .content-grid {
        grid-template-areas:
        'x x'
        'a a'
        'b b';
        }

      .content-grid, .sidebar-grid {
        padding: var(--first) var(--first);
        margin-top: var(--third);
        }

      .showcase {
        display: none;
        }

      .anchor p {
          font-size: 10px;
        }

    }


    @media(max-width: 426px) {
        
        .grid-block-type-1-container {
            display: grid;
            grid-template-columns: 1fr !important;
            grid-template-rows: 150px !important;
        }
        
        .grid-block-type-1-a {
            border: none !important;
        }
        
        .grid-block-type-2-a {
            border: none !important;
        }
        
        .grid-block-type-2-img {
            padding-top: 38.50%;
            box-shadow: none !important;
        }
        
        .hero-unit {
            max-width: 100vw;
            margin: auto;
        }
        
        .hero-image {
            max-width: 100vw;
            margin: auto;
        }

      p {
        font-size: 16px;
      }

      .limiter {
          padding: 0px;
          }
      
      .information-a {
        height: 100%;
        text-align: center;
        margin-bottom: var(--third);
        }
      
      .content-grid {
        grid-template-areas:
        'x x'
        'a a'
        'b b';
        }

        .content-grid, .sidebar-grid {
          padding: 0px var(--first);
          margin-top: var(--third);
          }

          .sidebar-grid {
            grid-template-areas:
            'sda'
            'sdb'
            'sdx';
            grid-template-columns: 1fr;
            }

            .sidebar-x {
              margin-top: var(--third);
              }
        .anchor p {
            font-size: 8px;
            }

            }

/* Page Specific Styles */


/* CONTACT PAGE */

#map {
    height: 400px;  /* The height is 400 pixels */
    width: 100%;  /* The width is the width of the web page */
    }


/* ------------- GRID TYPE 01 ------------- */

.grid-block-type-1-container {
    display: grid;
    grid-template-columns: 1fr 1.618fr;
    grid-gap: var(--second);
    padding: var(--first) 0px;
    }

.grid-block-type-1-img {
    border-radius: var(--quarter);
    height: 100%;
    width: 100%;
    }

.grid-block-type-1-a {
    border: 1px solid var(--neutrallight);
    border-radius: var(--quarter);
    height: 100%;
    width: 243px;
    }

.grid-block-type-1-b {
    
    }

.grid-block-type-1-container h2 {
    color: var(--neutral);
    font-size: var(--first);
    line-height: 1.618;
    margin-bottom: var(--regular);
    }


/* ------------- GRID TYPE 02 ------------- */

.grid-block-type-2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--regular);
    border-radius: var(--quarter);
    }

.grid-block-type-2-container {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    grid-gap: var(--half);
    border-radius: var(--quarter);
    width: 100%;
    align-content: start;
    }

.grid-block-type-2-img {
    border-radius: var(--quarter);
    height: 200px;
    width: 100%;
    box-shadow: var(--shadow);
    }

.grid-block-type-2-a {
    border: 1px solid var(--neutrallight);
    border-radius: var(--quarter);
    height: 200px;
    width: 100%;
    }

.grid-block-type-2-b {
    width: 100%;
    min-height: 150px
    }

.grid-block-type-2-container h2 {
    color: var(--neutral);
    font-size: var(--first);
    line-height: 1.618;
    margin-bottom: var(--regular);
    }


.grid-block-type-3-container {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    grid-gap: var(--quarter);
    border-radius: var(--quarter);
    width: 100%;
    align-content: start;
    }

.title-unit h2 {
    color: var(--neutral);
    font-size: var(--first);
    line-height: 1.618;
    padding-bottom: var(--regular);
    padding-top: var(--second);
    }


.great-divide {
    margin-top: var(--first);
    margin-bottom: var(--third);
    }


.invisible-divide-1 {
    margin-top: var(--half);
    margin-bottom: var(--first);
    border-color: transparent;
}

.invisible-divide-2 {
    margin-top: var(--second);
    border-color: transparent;
}

@media(max-width: 767px) {
    
.mobile-hidden {
    display: none;
    }

.mobile-margin {
    margin-top: var(--fifth);
}

}

/* ------------- GRID TYPE 0 ------------- */

.grid-block-type-0-container {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-gap: var(--second);
    padding: var(--first) 0px;
}

.grid-block-type-0-img {
    border-radius: var(--quarter);
    height: 89px;
    width: 144px;
}

.grid-block-type-0-a {
    border: 1px solid var(--neutrallight);
    border-radius: var(--quarter);
    height: 89px;
    width: 144px;
}

.grid-block-type-0-b {
    height: 89px;
}

.grid-block-type-0-container h2 {
    color: var(--neutral);
    font-size: var(--first);
    line-height: 1.618;
    margin: 0px;
    padding: 0px;
    }
