/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    list-style-type: none !important;
    
}
/* Button Styling */
.button-52 {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;  -webkit-user-select: none;
  touch-action: manipulation;
  margin-top: 4%;
  margin-left: 35%;
}

.button-52:after {
  content: "";
  background-color: #ffe54c;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.button-52:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .button-52 {
    padding: 13px 50px 13px;
  }
}

/* Header Styling */
header {
    height: 99vh;
    background-repeat: no-repeat;
    background-image: url(../img/HeroDesktop__2_.jpg);
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 992px) {
    header {
        background-image:url(../img/istockphoto-1400820336-612x612.jpg)
    }
}
/* Navbar Hover styling */
a.nav-link:hover{
  border-bottom: 2px solid black;
}
/* Trending Section Img Hover styling */
.trendsize img:hover{
transform: scale(1.1);
transition: 1s;
}
/*  About us Section styling*/
.long{
width: 70%;
height: 600px;
background-color: rgb(219,240,244);
}
/* Section Styling */
section{
  margin-top: 7%;
  width: 100%;
  height: 300px;
  background-image: url(../img/nav-tumi-mcclaren-1x.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: black;
}

@media screen and (max-width: 992px) {
  section {
      background-image: none;
  }
}

/* About Section Styling */
  .about{
    background: url(../img/nav-tumi-merge-1x.jpg) no-repeat left;
    background-size: 55%;
    background-color: #fdfdfd;
    overflow: hidden;
    padding: 100px 0;
}
.inner-section{
    width: 55%;
    float: right;
    background-color: #d39393;
    padding: 140px;
    box-shadow: 13px 12px 8px rgba(0,0,0,0.3);
}
.inner-section h1{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
}
.text{
    font-size: 13px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}
@media screen and (max-width:1200px){
    .inner-section{
        padding: 80px;
    }
}
@media screen and (max-width:1000px){
    .about{
        background-size: 100%;
        padding: 100px 40px;
    }
    .inner-section{
        width: 100%;
    }
}

@media screen and (max-width:600px){
    .about{
        padding: 0;
    }
    .inner-section{
        padding: 60px;
    }
    .skills button{
        font-size: 19px;
        padding: 5px;
        width: 160px;
    }
}

/* Loaders/ Spinners */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  transition: opacity 0.75s, visibility 0.75s;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #dddddd;
  border-top-color: #009578;
  border-radius: 50%;
  animation: loading 0.75s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}









