body {
    padding: 0;
    margin: 0;
    background: #202020;
    font-family: "Overpass", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


h1, h2, h3, h4, h5, h6, p, ul, li, a, td, th {
    color: white;
    text-decoration: none;
}

/* Header Home */

header.header-home {
    display: grid;
    grid-template-columns: 65% 35%;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    height: 100vh;
    margin: 0 auto;
}

header.header-home > div.welcome {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 100%;
}

header.header-home > div.welcome > div.image{
  --size: 325px;            
  --ring: 4px;              
  --radius: 50%;            
  position: relative;
  width: var(--size);
  height: var(--size);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  isolation: isolate;  
}

header.header-home > div.welcome > div.image > img{
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.30));
}

header.header-home > div.welcome > div.image::before{
  content: "";
  position: absolute;
  inset: calc(-1 * var(--ring));
  border-radius: inherit;
  padding: var(--ring);
  background: conic-gradient(
    from 0deg,
    #7c3aed,  
    #4f46e5, 
    #2563eb,  
    #06b6d4,  
    #4f46e5,
    #7c3aed
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: blur(.2px) drop-shadow(0 0 18px rgba(99,102,241,.55));
  animation: ring-rotate 6s linear infinite;
  z-index: -1;
}

header.header-home > div.welcome > div.image::after{
  content: "";
  position: absolute;
  inset: calc(-1 * var(--ring));
  border-radius: inherit;
  pointer-events: none;
  background:
    conic-gradient(
      from 0deg,
      transparent 0 55%,
      rgba(255,255,255,.75) 62%,
      transparent 70% 100%
    );
  padding: var(--ring);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: blur(1px);
  animation: ring-rotate 2.8s linear infinite;
  opacity: .65;
  z-index: -1;
}

@keyframes ring-rotate{
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce){
  header.header-home > div.welcome > div.image::before,
  header.header-home > div.welcome > div.image::after{
    animation: none;
  }
}

header.header-home > div.welcome > div.information {
    margin-left: 75px;
}

header.header-home > div.welcome > div.information > h4 {
    font-size: 25px;
    font-weight: 100;
    margin: 0;
}

header.header-home > div.welcome > div.information > h1 {
    font-size: 70px;
    font-weight: 300;
    margin: 0;
    padding-top: 15px;
}

header.header-home > nav {
    border-left: 1px solid rgb(80, 80, 80);
    padding: 25px 0 25px 50px;
}

header.header-home > nav > h2 {
    font-size: 110px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

header.header-home > nav > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 50px;
}

header.header-home > nav > ul > li {
    line-height: 50px;
}

header.header-home > nav > ul > li > a {
    font-size: 24px;
    font-weight: 100;
    transition: .35s;
}

header.header-home > nav > ul > li > a:hover {
    border-left: 3px solid gray;
    padding-left: 20px;
}





/* Header Inner */

header.header-inner {
  width: 90%;
  margin: 50px auto;
}

header.header-inner > div.topbar {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

header.header-inner > div.topbar > div.brand > a.person-name {
  font-size: 24px;
  font-weight: 100;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}


header.header-inner > div.topbar > div.brand > a.person-name > img {
  max-width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100%;
  margin-right: 25px;
}


header.header-inner > div.topbar > nav > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
}

header.header-inner > div.topbar > nav > ul > li > a {
  padding: 10px;
  margin: 0 20px;
  font-size: 20px;
  font-weight: 100;
}

header.header-inner > div.topbar > nav > ul > li > a:hover {
  border-bottom: 2px solid white;
}

div.page-hero {
  margin-top: 75px;
}

div.page-hero > h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 70px;
  font-weight: 100;
}


/* About Page */

div.about {
  width: 80%;
  margin: 50px auto;
}

div.about > p {
  line-height: 35px;
  font-weight: 200;
}

div.about > div.images {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin: 100px 0;
  padding: 10px;
}

div.about > div.images > img {
  max-height: 35px;
  width: auto;
}

div.about > div.references {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

div.about > div.references > a {
  font-weight: 100;
  padding: 10px;
  margin: 0 10px;
}

div.about > div.references > a:hover {
  border-bottom: 3px solid rgb(80, 80, 80);
}


/* Digital Marketing Page */

div.digital-marketing  {
  width: 80%;
  margin: 0 auto;
}

div.digital-marketing > div.brand-logos {
  text-align: center;
}

div.digital-marketing > div.brand-logos > img {
  width: auto;
  height: 20px;
  margin: 0 30px;
  object-fit: contain;
}

div.digital-marketing > div.information {
  margin: 50px 0;
}

div.digital-marketing > div.information > p {
  font-size: 16px;
  font-weight: 100;
  line-height: 35px;
}

div.digital-marketing > div.information > table {
  text-align: center;
  margin: 50px auto;
  font-size: 14px;
}

/* Web Development Page */

div.web-development {
  width: 80%;
  margin: 50px auto;
}

div.web-development > div.brand-logos {
  text-align: center;
}

div.web-development > div.brand-logos > img {
  height: 25px;
  width: auto;
  object-fit: contain;
  margin: 0 20px;
}

div.web-development > div.information {
  margin: 50px 0;
}

div.web-development > div.information > p {
  font-weight: 100;
  font-size: 16px;
  line-height: 35px;
}

div.web-development > div.references {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  justify-content: center;
  gap: 5px;
}

div.web-development > div.references > a > img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  transition: .35s;
}

div.web-development > div.references > a > img:hover {
  transform: scale(1.015);
}


/* Content Creation */

div.content-creation {
  width: 80%;
  margin: 0 auto;
}

div.content-creation > div.brand-logos {
  text-align: center;
}

div.content-creation > div.brand-logos > img {
  height: 40px;
  width: auto;
  margin: 0 20px;
  object-fit: contain;
}

div.content-creation > div.posts {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  align-items: start;
  justify-content: start;
  margin: 50px 0;
}

div.content-creation > div.posts > img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: .35s;
}

div.content-creation > div.posts > img:hover {
  transform: scale(1.015);
}

div.content-creation > div.videos {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  margin: 50px 0;
}

div.content-creation > div.videos > video {
  max-width: 100%;
  height: auto;
}

div.content-creation > div.videos-wider {
    margin: 50px 0;
}

div.content-creation > div.videos-wider > video {
  width: 100%;
  height: auto;
}



















































.site-footer {
  padding: 22px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}

.site-footer__inner {
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  gap: 10px 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.site-footer__copyright {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

.site-footer__meta {
  opacity: 0.85;
}

.site-footer__nav {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.site-footer__link {
  text-decoration: none;
  opacity: 0.9;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  opacity: 1;
  text-decoration: underline;
}
