@import url("root.css");
:root {
  --logo: 10rem;
  --logonegative: -10rem;
}
@media (min-width: 768px) {
  :root {
    --logo: 15rem;
    --logonegative: -15rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --logo: 18rem;
    --logonegative: -18rem;
  }
}
.header {
  position: relative;
  z-index: 20;
}
.headerside {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: var(--logo);
  height: var(--logo);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
@media (min-width: 768px) {
  .logo {
    padding: 2rem;
  }
}
.mainsocialmedia {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(var(--logo) / 2);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 2rem;
  z-index: 15;
}
@media (min-width: 1200px) {
  .mainsocialmedia {
    top: var(--logo);
  }
}
.mainsocialmedia .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.8rem;
  position: relative;
}
.mainsocialmedia .content::before {
  content: "";
  position: absolute;
  left: 3.5rem;
  width: 0.1rem;
  background-color: #cfcfcf;
  bottom: 100%;
  height: 5rem;
  margin-bottom: 1rem;
  border-radius: 5rem;
}
@media (min-width: 1200px) {
  .mainsocialmedia .content::before {
    left: 4.5rem;
  }
}
.mainsocialmedia .content a {
  width: 3.5rem;
  height: 3.5rem;
  border: 0.1rem solid #cfcfcf;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  transition: all 300ms ease;
}
.mainsocialmedia .content a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
}
.mainsocialmedia .content a i {
  display: inline-block;
  line-height: 1;
}
.slide {
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-top: var(--logonegative);
}
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--maindarkcolor);
  z-index: 1;
  opacity: 0.5;
}
.slidevideo {
  height: calc(100% + var(--logo));
  left: 0;
  position: absolute !important;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.headermain {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
}
@media (min-width: 768px) {
  .headermain {
    column-gap: 1rem;
  }
}
@media (min-width: 1200px) {
  .headermain {
    column-gap: 2rem;
  }
}
.menulinks {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 4rem;
}
.maina {
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  transition: all 300ms ease;
  font-weight: 300;
  position: relative;
}
@media (min-width: 1600px) {
  .maina {
    font-size: 1.8rem;
    letter-spacing: 0.5rem;
  }
}
.maina:not(:last-child)::after {
  content: "\F3C1";
  font-family: "remixicon";
  position: absolute;
  right: -2.2rem;
  color: #fff;
  font-size: 0.4rem;
  top: 1rem;
}
.maina:hover {
  color: var(--hovercolor);
}
.maina.active,
.maina.active:hover,
.maina.active:focus {
  color: var(--hovercolor);
}
.projectboxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}
.projectboxesimage {
  width: 100%;
  overflow: hidden;
}
.projectboxesimage img {
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: all 1s ease;
}
.projectboxes:hover .projectboxesimage img {
  transform: scale(1.09, 1.09);
}
.projectboxes .content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem 4rem;
  background-color: var(--mainlightcolor);
  max-width: 80%;
  transform: translateY(100%);
  transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.projectboxes:hover .content {
  transform: translateY(0);
  transition-delay: 0.15s;
}
.projectboxes .content h3 {
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
}
@media (min-width: 1400px) {
  .projectboxes .content h3 {
    font-size: 1.6rem;
  }
}
.projectboxes .content h3 a {
  color: var(--maindarkcolor);
}
.projectboxes .content h3:hover a {
  color: var(--maindarkcolor);
}
.projectsummary {
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background-color: var(--maindarkcolor);
}
@media (min-width: 768px) {
  .projectsummary {
    position: sticky;
    top: 1rem;
  }
}
.projectsummary ul {
  width: 100%;
}
.projectsummary ul li {
  color: #fff;
  padding: 1rem 0;
  font-size: 1.4rem;
}
@media (min-width: 350px) {
  .projectsummary ul li {
    font-size: 1.5rem;
  }
}
.projectsummary ul li:not(:last-child) {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}
.projectsummary ul li span {
  font-weight: 400;
  letter-spacing: 0.2rem;
}
.projectimages {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
}
.projectimages img {
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: all 1s ease;
}
.projectimages:hover img {
  transform: scale(1.09, 1.09);
}
.projectend {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.projectenditem {
  display: flex;
  align-items: center;
}
.projectenditem figure {
  width: 3rem;
}
.projectenditem:first-child {
  flex: 1;
  justify-content: flex-start;
}
.projectenditem:last-child {
  flex: 1;
  justify-content: flex-end;
}
.projectenditem:nth-child(2) {
  flex: 1;
  justify-content: center;
}
@media (min-width: 1200px) {
  .projectenditem:nth-child(2) {
    flex: 2;
  }
}
.projectpagelinks {
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  padding: 0.3rem 0.5rem;
}
.projectpagelinks:hover {
  background-color: var(--maindarkcolor);
  color: #fff;
}
.projectpagelinks i {
  display: inline-block;
  transition: all 300ms ease;
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blogboximage {
  overflow: hidden;
}
.blogboximage img {
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: all 1s ease;
}
.blogbox:hover .blogboximage img {
  transform: scale(1.09, 1.09);
}
.blogbox .content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  padding: 2rem;
}
.blogbox .content .contentleft {
  width: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .blogbox .content .contentleft {
    width: 8rem;
  }
}
.blogbox .content .contentleft span {
  font-family: var(--fonttitle);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.3;
}
@media (min-width: 576px) {
  .blogbox .content .contentleft span {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .blogbox .content .contentleft span {
    font-size: 5rem;
  }
}
.blogbox .content .contentleft p {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 500;
  opacity: 0.8;
}
.blogbox .content .contentright {
  width: calc(100% - 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .blogbox .content .contentright {
    width: calc(100% - 8rem);
  }
}
.blogbox .content .contentright h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.blogbox .content .contentright h3 a {
  color: var(--textcolor);
  transition: all 300ms ease;
}
.bloglink {
  letter-spacing: 0.4rem;
  color: var(--maindarkcolor);
  font-weight: 300;
  font-size: 1.5rem;
  transition: color 300ms ease;
}
.bloglink:hover {
  color: var(--maindarkcolor);
}
.bloglink i {
  display: inline-block;
  transition: all 300ms ease;
}
.bloglink:hover i {
  transform: translateX(0.5rem);
}
.articleimages img {
  aspect-ratio: 16/5;
  object-fit: cover;
}
.articlemaincontent {
  display: flex;
  flex-direction: column;
}
.footersocial {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
}
.footersocial a,
.footersocial a:hover,
.footersocial a:focus {
  color: var(--maindarkcolor);
}
.categoryTabs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
@media (min-width: 768px) {
  .categoryTabs {
    flex-wrap: nowrap;
    row-gap: 0;
  }
}
.categoryTabs .slidelink {
  border: 0.1rem solid var(--maindarkcolor);
  color: var(--maindarkcolor);
  margin: 0;
  font-size: 1rem;
  padding: 0.8rem 1rem;
}
@media (min-width: 768px) {
  .categoryTabs .slidelink {
    font-size: 1.2rem;
  }
}
.categoryTabs .slidelink::after {
  background-color: var(--maindarkcolor);
}
.categoryTabs .slidelink:hover {
  color: #fff;
}
.categoryTabs .slidelink.active {
  background-color: var(--maindarkcolor) !important;
  border: 0.1rem solid var(--maindarkcolor) !important;
  color: #fff !important;
}
