:root {
  --color-blue: #164C9C;
  --color-blue-light: rgb(36, 115, 233);
  --color-blue-dark: rgb(12, 45, 94);
  --color-orange: #F89B1F;
  --color-orange-dark: rgb(192, 109, 0);
  --color-yellow: rgb(248, 197, 31);
  --color-grey-light: #f9f7f6;
  --color-grey-lighter: #cfcfcf;
  --color-grey: #aaa;
  --color-grey-dark: rgb(92, 92, 92);
  --color-black: #111111;
  --shadow-dark: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.2%; }
  @media screen and (max-width: 75em) {
    html {
      font-size: 50%; } }

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-image: linear-gradient(to right bottom, var(--color-yellow), var(--color-orange-dark));
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh; }

.top-heading {
  color: #fff;
  font-size: 5rem;
  padding: 14rem 10rem;
  font-weight: 400;
  text-transform: uppercase; }

.container {
  max-width: 120rem;
  margin: 8rem auto;
  background-color: var(--color-grey-light);
  box-shadow: var(--shadow-dark);
  min-height: 50rem; }
  @media screen and (max-width: 60em) {
    .container {
      margin: 0; } }

/*.header {
     height: 7rem;
     background-color: rgb(255, 255, 255);    
     position: relative;
     
} */
.logo-box {
  position: absolute;
  background-image: linear-gradient(to right bottom, var(--color-blue-light), var(--color-blue-dark));
  top: -8rem;
  bottom: -3.5rem;
  padding-top: 7rem;
  margin: 0 4.1rem;
  z-index: 100px; }

.logo {
  height: 12rem; }

.navigation {
  height: 7rem;
  background-color: white;
  position: relative;
  /* &__buttom:hover &__icon::before {
        top: -1.2rem;
    }

    &__buttom:hover &__icon::after {
        top: 1.2rem; 
    } */ }
  .navigation__nav {
    margin: 0 2.1rem; }
    @media screen and (max-width: 49.4em) {
      .navigation__nav {
        display: none;
        opacity: 0;
        width: 0;
        transition: all .8; } }
  .navigation__list {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-left: auto; }
    @media screen and (max-width: 49.4em) {
      .navigation__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1500;
        position: relative;
        padding: 17% 10%;
        text-align: center;
        position: fixed;
        width: 94%; } }
  .navigation__item {
    margin: 1.1rem 0rem;
    padding: 1.1rem; }
  .navigation__link {
    font-size: 2rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--color-grey-dark);
    text-transform: uppercase;
    padding: 1rem 1.3rem;
    margin-left: -2.5rem;
    transition: all .2s; }
    .navigation__link:hover, .navigation__link:active {
      background-color: var(--color-blue);
      color: var(--color-grey-light);
      transform: translateX(1rem); }
    @media screen and (max-width: 49.4em) {
      .navigation__link {
        display: inline-block;
        font-size: 3rem;
        font-weight: 300;
        background-color: white;
        padding: 1rem 2rem;
        transition: all .2s; }
        .navigation__link:hover, .navigation__link:active {
          background-color: var(--color-blue);
          color: var(--color-grey-light);
          transform: translateX(1rem); } }
  .navigation__checkbox:checked ~ .navigation__background {
    transform: scale(300); }
  .navigation__checkbox:checked ~ .navigation__nav {
    opacity: 1;
    display: block;
    display: initial;
    width: 100%; }
  .navigation__icon {
    position: relative;
    margin-top: 4.1rem; }
    .navigation__icon, .navigation__icon::before, .navigation__icon::after {
      width: 4rem;
      height: .4rem;
      background-color: var(--color-grey-light);
      display: inline-block; }
    .navigation__icon::before, .navigation__icon::after {
      content: "";
      position: absolute;
      left: 0;
      transition: all .2s; }
    .navigation__icon::before {
      top: -1.3rem; }
    .navigation__icon::after {
      top: 1.3rem; }
  .navigation__checkbox:checked + .navigation__button .navigation__icon {
    background-color: transparent; }
  .navigation__checkbox:checked + .navigation__button .navigation__icon::before {
    top: 0;
    transform: rotate(135deg); }
  .navigation__checkbox:checked + .navigation__button .navigation__icon::after {
    top: 0;
    transform: rotate(-135deg); }
  .navigation__logo-blue {
    display: none;
    /* @media screen and (min-width: $bp-small) {
            display: none;
            margin-right: auto;  
        } */ }
  .navigation__button {
    background-image: linear-gradient(to right bottom, var(--color-blue-light), var(--color-blue-dark));
    height: 9rem;
    width: 9rem;
    position: fixed;
    top: 2.77rem;
    right: 3.5rem;
    border-radius: 50%;
    z-index: 2000;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    opacity: 0; }
    @media screen and (max-width: 49.4em) {
      .navigation__button {
        opacity: 100; } }
  .navigation__background {
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: fixed;
    top: 5.6rem;
    right: 5.5rem;
    background-image: linear-gradient(to right bottom, var(--color-yellow), var(--color-orange-dark));
    z-index: 200;
    position: absolute;
    position: fixed;
    transition: transform .2s;
    opacity: 0; }
    @media screen and (max-width: 49.4em) {
      .navigation__background {
        opacity: 100; } }
  .navigation__checkbox {
    display: none; }

.hero-section {
  background-image: url(../img/ucbs-hero.png);
  display: relative;
  height: 441px;
  background-size: cover;
  background-position: right; }
  @media screen and (max-width: 49.4em) {
    .hero-section {
      background-image: url(../img/ucbs-hero-dark.jpg); } }

.active {
  background-color: var(--color-blue);
  color: var(--color-grey-light); }

.item-description {
  background-color: var(--color-blue);
  color: white;
  border: none;
  border-radius: none;
  font-size: 1.8rem;
  font-family: "Josefin Sans", sans-serif;
  padding: .5rem 1rem;
  text-transform: uppercase;
  width: 100%;
  margin-top: -0.5rem;
  text-align: center; }

.item-types {
  padding: .8rem 0 0 0;
  font-size: 1.6rem;
  text-align: center;
  color: var(--color-grey-dark); }

.clothing-and-headwear-gallery__item {
  padding: 1rem;
  background-color: white;
  border-bottom: 1rem solid var(--color-blue);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }

.gird {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  grid-gap: 1rem;
  padding: 5rem 5rem 5rem 5rem; }
  .gird__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    grid-gap: 4rem;
    padding-bottom: 0; }
  .gird__img {
    width: 100%; }

.contact-us {
  padding: 3rem;
  text-align: center; }
  .contact-us__text {
    padding: 0 3rem 3rem 3rem;
    text-align: center;
    font-size: 1.8rem; }

.logo-base {
  width: 20rem; }

.gift-banner {
  background-image: url(../img/gifting.jpg);
  display: relative;
  height: 30rem;
  background-size: cover;
  background-position: right; }
  @media screen and (max-width: 37.5em) {
    .gift-banner {
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/gifting.jpg); } }

.about-banner {
  background-image: url(../img/about-us.jpg);
  display: relative;
  height: 30rem;
  background-size: cover;
  background-position: right; }

.about-us__about-text {
  grid-column: 1 / 4;
  padding: 3rem; }
  @media screen and (max-width: 49.4em) {
    .about-us__about-text {
      grid-column: 1 / -1;
      padding: 3rem 3rem 0 3rem; } }

.about-us__about-img-1 {
  grid-column: 4 / 7;
  background-image: url(../img/ucbs-logo.jpg);
  background-position: center; }
  @media screen and (max-width: 49.4em) {
    .about-us__about-img-1 {
      display: none; } }

.about-us__image-2 {
  grid-column: 1 / 4;
  background-image: url(../img/production.jpg);
  background-position: center; }
  @media screen and (max-width: 49.4em) {
    .about-us__image-2 {
      display: none; } }

.about-us__method-2 {
  grid-column: 4 / 7;
  padding: 3rem; }
  @media screen and (max-width: 49.4em) {
    .about-us__method-2 {
      grid-column: 1 / -1; } }

.contact-banner {
  background-image: url(../img/contact-us.jpg);
  display: relative;
  height: 30rem;
  background-size: cover;
  background-position: center; }

.btn {
  background-color: var(--color-blue);
  color: white;
  border: none;
  border-radius: none;
  font-size: 1.8rem;
  letter-spacing: .2rem;
  padding: 1.8rem 3rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  margin-top: -0.5rem; }
  .btn:hover {
    background-color: var(--color-blue-dark); }

.footer {
  background-color: black;
  color: var(--color-grey-light);
  padding: 4rem 0;
  grid-column: full-start / full-end; }
  .footer__list {
    list-style: none;
    width: 80%;
    margin: 0 auto;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    grid-template-rows: repeat(auto-fit, 5rem); }
    @media screen and (max-width: 56.25em) {
      .footer__list {
        grid-template-columns: repeat(3, minmax(15rem, 1fr));
        grid-template-rows: repeat(auto-fit, 5rem); } }
    @media screen and (max-width: 25em) {
      .footer__list {
        grid-template-columns: repeat(2, minmax(15rem, 1fr));
        grid-template-rows: repeat(auto-fit, 5rem); } }
  .footer__item {
    margin: 1.1rem;
    padding: 1.1rem;
    text-align: center;
    transition: all .2s; }
    .footer__item .logo {
      object-fit: cover;
      width: 100%;
      height: 100%; }
      @media screen and (max-width: 56.25em) {
        .footer__item .logo {
          width: 10rem; } }
  .footer__link {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    color: var(--color-grey-light);
    text-transform: uppercase; }
    .footer__link:hover, .footer__link:active {
      color: var(--color-orange);
      transform: scale(1.2); }

.copyright {
  font-size: 1.4rem;
  color: #aaa;
  padding: 1rem;
  text-align: center; }

.catalogue__heading {
  padding: 6.5rem 0 4rem 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 3.4rem;
  font-weight: 100;
  letter-spacing: .1rem;
  color: var(--color-blue); }

.catalogue__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  grid-gap: 4rem;
  padding: 0 5rem 5rem 5rem; }

.catalogue__img {
  width: 100%; }

.our-clients {
  background-color: var(--color-blue);
  margin-bottom: 0;
  padding-bottom: 4.5rem; }
  .our-clients__logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    grid-gap: 4rem;
    padding: 0 5rem; }
  .our-clients__logo {
    background-color: var(--color-grey-light);
    height: 12.5rem; }
  .our-clients__logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  .our-clients__heading {
    padding: 6.5rem 0 4rem 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 3.4rem;
    font-weight: 100;
    letter-spacing: .1rem;
    color: var(--color-grey-light); }

.top-heading {
  color: #fff;
  font-size: 5rem;
  padding: 14rem 10rem;
  font-weight: 400;
  text-transform: uppercase; }

.top-banner {
  background-image: url(../img/hats.jpg);
  display: relative;
  height: 30rem;
  background-size: cover;
  background-position: right; }

.clothing-and-headwear-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  grid-gap: 1rem;
  padding: 5rem 5rem 5rem 5rem; }
  .clothing-and-headwear-gallery__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    grid-gap: 4rem;
    padding-bottom: 0; }
  .clothing-and-headwear-gallery__img {
    width: 100%; }

.clothing-heading {
  color: #fff;
  font-size: 5rem;
  padding: 8rem 10rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2; }
  @media screen and (max-width: 37.5em) {
    .clothing-heading {
      font-size: 4.5rem; } }
  @media screen and (max-width: 25em) {
    .clothing-heading {
      font-size: 4.5rem;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../img/gifting.jpg); } }

.branding {
  background-color: white;
  margin: 5rem;
  box-shadow: var(--shadow-dark);
  display: grid;
  grid-template-rows: repeat(2, min-content);
  grid-template-columns: repeat(6, 1fr); }

.printing__image-1 {
  grid-column: 1 / 4;
  padding: 3rem; }
  @media screen and (max-width: 49.4em) {
    .printing__image-1 {
      grid-column: 1 / -1;
      padding: 3rem 3rem 0 3rem; } }

.printing__method-1 {
  grid-column: 4 / 7;
  background-image: url(../img/embroidery.jpg);
  background-position: center; }
  @media screen and (max-width: 49.4em) {
    .printing__method-1 {
      display: none; } }

.printing__image-2 {
  grid-column: 1 / 4;
  background-image: url(../img/screenprinter.jpg);
  background-position: center; }
  @media screen and (max-width: 49.4em) {
    .printing__image-2 {
      display: none; } }

.printing__method-2 {
  grid-column: 4 / 7;
  padding: 3rem; }
  @media screen and (max-width: 49.4em) {
    .printing__method-2 {
      grid-column: 1 / -1; } }

.story-text {
  font-size: 1.6rem;
  color: var(--color-grey-dark); }

.heading-2 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  font-family: "Josefin Sans", sans-serif;
  color: var(--color-blue); }

/*.branding__img {
    background-image: url(../../img/screenprinter.jpg); 
    background-position: center;
    background-size: cover;    
      
    width: 100%;
}
*/
.branding-banner {
  background-image: url(../img/branding.jpg);
  display: relative;
  height: 30rem;
  background-size: cover;
  background-position: right; }
