* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

:root {
  --themeColor: 250, 68, 2;
  /* Theme Color in (R,G,B) format */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* 75em === 1200px */
@media (max-width: 75em) {
  html {
    font-size: 60%;
  }
}

/* 56.25em === 900px */
@media (max-width: 56.25em) {
  html {
    font-size: 58%;
  }
}

/* 37.5em === 600px */
@media (max-width: 640px) {
  html {
    font-size: 56%;
  }
}

/* 112.5em === 1600px */
/* @media (min-width: 112.5em) {
  html {
    font-size: 65%;
  }
} */

body {
  font-family: 'PT Sans', sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html, body {
  overflow-x: hidden;
}

body {
  position: relative;
}


a:hover,
.main-footer__link a:hover,
.main-footer__legal a:hover {
  color: rgba(var(--themeColor), 1);
}

/* Utils */

.btn {
  font-family: inherit;
  letter-spacing: 1px;
  font-weight: 700;
  border: none;
  box-shadow: none;
  cursor: pointer;
  padding: 1.8rem 4rem;
  font-size: 1.8rem;
  border-radius: 5px;
  border: 2px solid rgba(var(--themeColor), 1);
}

@media (max-width: 640px) {
  .btn {
    padding: 2rem 4rem;
  }
}

.btn-theme {
  background: rgba(var(--themeColor), 1);
  color: #fff;
  box-shadow: 0 5px 15px 0 rgb(0 0 0 / 15%);
  transition: 0.3s;
}

.btn-theme:hover {
  background-color: #fff;
  color: rgba(var(--themeColor), 1)
}

.btn-inv {
  color: rgba(var(--themeColor), 1);
  background: #fff;
  box-shadow: 0 5px 15px 0 rgb(0 0 0 / 15%);
  transition: 0.3s;
}

.btn-inv:hover {
  background-color: rgba(var(--themeColor), 1);
  color: #fff;
}

.btn-sm {
  padding: 1.3rem 2rem;
  font-size: 1.6rem;
  border: none;
}

.main-container {
  max-width: 120rem;
  margin: auto;
  width: 90%;
}

.main-section {
  padding: 12rem 0;
}

.main-section__content {
  margin-top: 10rem;
}

@media (max-width: 640px) {
  .main-section {
    padding: 10rem 0;
  }

  .main-section__content {
    margin-top: 9rem;
  }
}

.heading-primary {
  font-size: 4.5rem;
  letter-spacing: 1px;
  line-height: 1.3;
  color: rgba(var(--themeColor), 1);
  font-weight: bold;
  font-family: "PT Sans", sans-serif;
}

.heading-primary__main {
  font-family: "PT Sans", sans-serif;
}

.strokeme {
  color: rgba(var(--themeColor), 1);
  text-shadow: 4px 4px 4px black;
}

@media (max-width: 640px) {
  .heading-primary {
    font-size: 4rem;
  }
}

.heading-primary__sm {
  font-size: 2rem;
  display: block;
  margin-bottom: 2.5rem;
  padding-top: 2rem
}

.heading-secondary {
  font-size: 4rem;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #000;
  font-weight: 400;
}

.heading-secondary__sm {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 2.5rem;
}

.heading-tertiary {
  font-size: 3.4rem;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #000;
  font-weight: 400;
}

.heading-quaternary {
  font-size: 2.5rem;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #000;
  font-weight: 400;
}

@media (max-width: 640px) {
  .heading-secondary {
    font-size: 3.7rem;
  }

  .heading-tertiary {
    font-size: 3rem;
  }
}

.text-primary {
  font-size: 1.9rem;
  color: #444;
  line-height: 1.6;
}

.text-primary span {
  margin-bottom: 1.5rem;
  display: block;
}

.text-primary span:last-child {
  margin-bottom: 0;
}

/* Animation ( Keyframes ) */

@keyframes downToUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Header Stylings */

#projects,
#contact,
#about {
  scroll-margin-top: 4rem;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 100px -5px #eee;
  z-index: 1000;
  background: #fff;
}

.main-header__logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.main-header__logo-img-cont {
  margin-right: 1.5rem;
  height: 6rem;
  overflow: hidden;
  background: rgba(var(--themeColor), 1);
}

.main-header__sm-scr-nav-btn {
  padding: 1rem 1rem;
  display: none;
  cursor: pointer;
}

@media (max-width: 640px) {
  .main-header__sm-scr-nav-btn {
    display: block;
  }
}

.main-header__sm-scr-nav-btn-line {
  height: 1px;
  background: #000;
  width: 3rem;
  border-radius: 50px;
}

.main-header__sm-menu {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 40rem;
  transform: translateX(-100%);
  transition: transform 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-header__sm-menu-close {
  position: absolute;
  top: 3.3rem;
  right: 2.5rem;
  width: 3rem;
  height: 3rem;
}

.main-header__sm-menu-close:before,
.main-header__sm-menu-close:after {
  position: absolute;
  content: ' ';
  height: 3rem;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
}

.main-header__sm-menu-close:before {
  transform: rotate(45deg);
}

.main-header__sm-menu-close:after {
  transform: rotate(-45deg);
}

.main-header__sm-menu--active {
  transform: translateX(0);
}

.main-header__sm-menu-links {
  width: 90%;
  padding-left: 0;
}

.main-header__sm-menu-link {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 2.5rem;
  text-align: center;
  display: block;
  padding: 3rem;
  color: #555;
}

.main-header__sm-scr-nav-btn-line:first-child {
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .main-header {
    padding: 2.3rem 1.5rem;
  }

  .main-header__logo-img-cont {
    margin-right: 1rem;
  }
}

.main-header__logo-img {
  height: 100%;
  object-fit: cover;
}

.main-header__logo-text {
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: #000;
  font-weight: 400;
}

.main-header__navigation-links {
  display: flex;
  align-items: center;
  margin: 0;
  padding-left: 0;
}

.main-header__navigation-link {
  padding: 1.3rem 2rem;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #000;
  font-weight: 400;
}

@media (max-width: 56.25em) {
  .main-header__navigation-link {
    padding: 1.3rem 1.5rem;
      font-size: 1.6rem;
  }
}

@media (max-width: 640px) {
  .main-header__navigation-links {
    display: none;
  }
}

/* Hero Section Stylings */

.home-hero {
  display: flex;
  height: 100vh;
  min-height: 80rem;
  max-height: 120rem;
  background-image: url("../images/hero.jpg");
  background-attachment: fixed;
  background-position: right 25% bottom 35%;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-hero__content {
  max-width: 120rem;
  margin: auto;
  width: 90%;

  animation: downToUp 0.8s;
}

.home-hero__heading-primary {
  margin-bottom: 5rem;
  padding-top: 35vh;
}

@media (max-width: 640px) {
  .home-hero {
    height: 75vh;
    min-height: unset;
    max-height: unset;
    background-position: right 25% bottom 35%;
    background-attachment: scroll;
  }
  .home-hero__heading-primary {
  margin-bottom: 5rem;
  padding-top: 35vh;
}
}


.home-hero__btn-theme {
  margin-right: 2rem;
}

@media (max-width: 640px) {
  .home-hero__heading-primary {
    margin-bottom: 4.5rem;
  }

  .home-hero__btn-theme,
  .home-hero__btn-inv {
    width: 100%;
  }

  .home-hero__btn-theme {
    margin: 0 0 2rem 0;
  }
}

/* About */

.about__container {
  margin-top: 4rem;
}

.about__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8rem;
}

@media (max-width: 640px) {
  .about__info {
    grid-template-columns: 1fr;
    grid-gap: 6rem;
  }

  .about__btn-theme {
    width: 70%;
  }
}

.about__heading-quaternary {
  margin-bottom: 3rem;
}

.about__main-info {
  margin-bottom: 4rem;
}

.about__text-primary {
  margin-bottom: 4rem;
}

.about__info-heading {
  margin-bottom: 3rem;
  color: #555;
}

.about__skills {
  display: flex;
  flex-wrap: wrap;
}

.about__skill {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.5rem 2rem;
  margin-right: 2rem;
  margin-bottom: 2rem;

  background: #eee;
  color: #666;
  border-radius: 5px;
  font-weight: 500;
}

/* Skills Showcase */

.skills-showcase {
  background: rgba(247, 247, 247, 1);
  padding: 5rem 3rem;
}

.skills-showcase__list {
  display: flex;
  justify-content: space-around;
}

.skills-showcase__list-item {
  padding: 3rem;
  border-radius: 5px;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.skills-showcase__list-item i {
  color: rgba(var(--themeColor), 1);
  color: #999;
  font-size: 5rem;
}

@media (max-width: 75em) {
  .skills-showcase__list-item {
    padding: 1.5rem;
    border-radius: 5px;
    background: #fff;
  }

  .skills-showcase__list-item i {
    font-size: 5rem;
  }
}

@media (max-width: 56.25em) {
  .skills-showcase {
    padding: 5rem;
  }

  .skills-showcase__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5rem;
  }

  .skills-showcase__list-item {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .skills-showcase {
    padding: 4rem;
  }

  .skills-showcase__list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem;
  }
}

@media (max-width: 21.875em) {
  .skills-showcase__list-item i {
    font-size: 4rem;
  }
}

/* projects */

.projects__list-item {
  display: grid;
  grid-template-columns: 45%;
  grid-gap: 4rem;
  margin-bottom: 8rem;
}

.projects__list-item--inv {
  justify-content: flex-end;
}

@media (max-width: 75em) {
  .projects__list-item {
    grid-template-columns: 60%;
  }
}

@media (max-width: 56.25em) {
  .projects__list-item {
    grid-template-columns: 100%;
  }
}

.projects__list-item:last-child {
  margin-bottom: 0;
}

.projects__list-item-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 30rem;
  display: none;
}

.projects__list-item-count-num {
  font-size: 2rem;
  font-weight: 700;
  width: 5rem;
  height: 5rem;
  color: #fff;
  background: #000;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.projects__list-item-count-line {
  flex-grow: 1;
  width: 2px;
  background: #000;
  border-radius: 50px;
}

.projects__list-item-count-end-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50px;
  background: #000;
}

.projects__list-item--inv .projects__list-item-img-cont {
  margin: 0 0 0 auto;
}

.projects__list-item-img-cont {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.projects__list-item-img {
  width: 100%;
  display: block;
}

.projects__list-item-heading-tertiary {
  margin: 5rem 0 3rem 0;
}

@media (max-width: 640px) {
  .projects__list-item-heading-tertiary {
    margin: 5rem 0 2.5rem 0;
  }
}

.projects__title-text-divider {
  height: 5px;
  width: 3rem;
  background: rgba(var(--themeColor), 1);
  margin-bottom: 3rem;
  border-radius: 100px;
}

.projects__list-item-text-primary {
  margin-bottom: 4rem;
}

@media (max-width: 640px) {
  .projects__list-item-text-primary {
    margin-bottom: 3.7rem;
  }
}

.projects__list-item-text-primary span {
  margin-bottom: 1.5rem;
  display: block;
}

.projects__list-item-text-primary span:last-child {
  margin-bottom: 0;
}

.projects__btn-theme {
  margin-right: 2rem;
}

@media (max-width: 640px) {
  .projects__btn-theme {
    margin: 0 0 2rem 0;
  }

  .projects__btn-theme,
  .projects__btn-inv {
    width: 70%;
  }
}

/* Contact */

.contact {
  background: rgba(250, 250, 250, 1);
}

.contact-right {
  display: flex;
}

/* Main Footer */

.main-footer__upper {
  background: #000;
  padding: 10rem 0;
  overflow: clip;
}

.main-footer__legals,
.main-footer__links {
  display: flex;
  max-width: 50rem;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding-left: 0;
}

.main-footer__link a {
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}


.main-footer__mid-line {
  background: grey;
  height: 1px;
  margin-top: 6rem;
  margin-bottom: 4rem;
}

.main-footer__legal a {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.main-footer__bottom {
  padding: 2rem;
  background: #222;
}

.main-footer__bottom-txt {
  color: #eee;
  font-size: 1.3rem;
  word-spacing: 2px;
  text-align: center;
  margin: 0;
}

.main-footer__bottom-txt a {
  text-decoration: underline;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 640px) {
  .main-footer__upper {
    padding: 4rem 0;
  }

  .main-footer__legals,
  .main-footer__links {
    display: block;
  }

  .main-footer__legal,
  .main-footer__link a {
    margin-bottom: 0.5rem;
    padding: 2rem 1.5rem;
    display: block;
    text-align: center;
  }

    .main-footer__legal {
        padding: 1rem;
    }

    .main-footer__mid-line {
      margin-top: 4rem;
      margin-bottom: 2rem;
    }
}


.themeClrSelector {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 10;
  box-shadow: 0 10px 100px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .themeClrSelector {
    top: 100%;
    transform: translateY(-100%);
  }
}

.themeClrSelector__input {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  opacity: 0;
  position: relative;
  z-index: 10;
}

.themeClrSelector__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.product-container {
  padding-top: 3rem;
  border-top: 1px solid lightgrey;
  margin-top: 3rem;
}

.btn-product {
  margin-top: 1rem;
}

.products h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: rgba(var(--themeColor), 1);
}
.products h4 {
  font-size: 2rem;
  font-weight: bold;;
  margin: 0;
}

.moreImg {
  margin-top: 1rem;
  display: flex;
  justify-content: start;
}

.smallpreview img {
  width: 5rem;
  height: 3.8rem;
  border-radius: 4px;
  margin-right: 8px;
}

.smallpreview img:hover {
  outline: 1px solid rgba(var(--themeColor), 1);
}

.uk-table-small td {
  padding: 2px 12px;
}

address span {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

address span.uk-icon {
  border: 1px solid rgba(var(--themeColor), 1);
  border-radius: 30px;
  padding: 10px;
  margin-right: 10px;
}

address span.uk-icon svg {
  color: rgba(var(--themeColor), 1);
}

address .uk-width-expand {
  align-content: center;
}

@media (max-width: 640px) {
  address .uk-width-expand {
    padding-left: 5px;
  }
}

.legal-section {
  color: black;
}

.legal-section h1 {
    margin-top: 4rem;
    color: black;
    font-weight: bold;
}

.legal-section h2 {
    color: black;
    font-size: 2rem;
    font-weight: bold;
}

.legal-section h3 {
    color: black;
    font-size: 1.6rem;
    font-weight: bold;
}

.legal-section h4 {
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
}

.legal-section td,
.legal-section li,
.legal-section p{
  font-size: 1.5rem;
  color: black;
}

.legal-section ul{
  list-style-type: disc;
}

.legal-section ins{
  font-size: 1.5rem;
  color: black;
  font-weight: bold;
  background: none;
}

.legal-menu {
  display: flex !important;
}