/* 
Theme Name: Brandon Schubert
Author: Brandon Schubert
Version:1.0
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* user-select: none; */
}

ul {
  list-style: none;
}
@font-face {
  font-family: "BS-Slab";
  src: url("./assets/fonts/BS-Slab.ttf") format("truetype");
}

@font-face {
  font-family: "ABC-Marist";
  src: url("./assets/fonts/ABCMarist-Regular.otf") format("opentype");
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "BS-Slab";
}
a {
  text-decoration: none;
}

:root {
  /* Fonts  */
  --font-ABC-Marist: "ABC-Marist";
  --font-BS-Slab: "BS-Slab";

  /* Font Sizes */
  --font-3xl: clamp(40px, 80px, 4.167vw);
  --font-2xl: clamp(30px, 80px, 3.646vw);
  --font-xl: clamp(25px, 54px, 2.813vw);
  --font-lg: 40px;
  --font-base: 20px;
  --font-small: clamp(12px, 1rem, 0.833vw);
  --font-15: 15px;
  --font-26: 26px;
  --font-48: 48px;
  --font-24: clamp(1rem, 1.5rem, 1.25vw);

  /* Colors */
  --color-pistachio: #87c9bb;
  --color-orange: #c16b27;
  --color-nile-blue: #bce4e5;
  --color-brown: #71512f;
  --color-olympic-blue: #5b82b4;
  --color-claret: #571b1d;
  --color-seashell-pink: #fcd5bd;
  --color-olive-green: #6c7140;
  --color-yellow: #ffeead;
  --color-blackish-olive: #42523e;

  --font-line-height: 1.2;
  --grid-column-gap: 20px; /* grid column gap */
  --margins-left-right: clamp(20px, 2.083vw, 40px); /* grid side margins */
  --section-top-padding: 8rem;
}
/* 8 Columns Grid */
.grid-col-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: var(--grid-column-gap);
  padding: 0 var(--margins-left-right);
}

/* Typography */

/* Font Family */
.font-family-primary {
  font-family: var(--font-BS-Slab);
}
.font-family-secondry {
  font-family: var(--font-ABC-Marist);
}

/* Heading 1 80px */

.heading-1 {
  font-size: var(--font-3xl);
  font-weight: 400;
  /* letter-spacing: calc(-5 / 100 * var(--font-3xl)); */
  line-height: var(--font-line-height);
  vertical-align: center;
}
.heading-1-seashell-pink {
  color: var(--color-seashell-pink);
}
.heading-1-claret {
  color: var(--color-claret);
}
.heading-1-yellow {
  color: var(--color-yellow);
}
.heading-1-nile-blue {
  color: var(--color-nile-blue);
}
.heading-1-pistachio {
  color: var(--color-pistachio);
}

/* Heading 2 70px */

.heading-2 {
  font-size: var(--font-2xl);
  font-weight: 400;
  /* letter-spacing: calc(-5 / 100 * var(--font-2xl)); */
  line-height: var(--font-line-height);
  vertical-align: center;
}
.heading-2-yellow {
  color: var(--color-yellow);
}
.heading-2-seashell-pink {
  color: var(--color-seashell-pink);
}
.heading-2-orange {
  color: var(--color-orange);
}

/* Heading 3 54px */

.heading-3 {
  font-size: var(--font-xl);
  font-weight: 400;
  /* letter-spacing: calc(-5 / 100 * var(--font-xl)); */
  line-height: var(--font-line-height);
  vertical-align: center;
}
.heading-3-yellow {
  color: var(--color-yellow);
}
.heading-3-blackish-olive {
  color: var(--color-blackish-olive);
}
.heading-3-brown {
  color: var(--color-brown);
}
/* Heading 4 40px */

.heading-4 {
  font-size: var(--font-lg);
  font-weight: 400;
  /* letter-spacing: calc(-5 / 100 * var(--font-lg)); */
  line-height: var(--font-line-height);
  vertical-align: center;
}
.heading-4-orange {
  color: var(--color-orange);
}
.heading-4-yellow {
  color: var(--color-yellow);
}

/* Text 1 20px */

.text-1 {
  font-size: var(--font-base);
  font-weight: 400;
  /* letter-spacing: calc(-5 / 100 * var(--font-base)); */
  line-height: var(--font-line-height);
  vertical-align: center;
}
.text-1-yellow {
  color: var(--color-yellow);
}
.text-1-blackish-olive {
  color: var(--color-blackish-olive);
}
.text-1-seashell-pink {
  color: var(--color-seashell-pink);
}

/* Text 2 16px */

.text-2 {
  font-size: var(--font-small);
  font-weight: 400;
  /* letter-spacing: calc(-5 / 100 * var(--font-small)); */
  line-height: var(--font-line-height);
  vertical-align: center;
}
.text-2-brown {
  color: var(--color-brown);
}
.text-2-blackish-olive {
  color: var(--color-blackish-olive);
}
.text-2-seashell-pink {
  color: var(--color-seashell-pink);
}
.text-2-yellow {
  color: var(--color-yellow);
}
.text-2-nile-blue {
  color: var(--color-nile-blue);
}
.text-2-olive-green {
  color: var(--color-olive-green);
}

/* Text 24  */
.text-24 {
  font-weight: 400;
  font-size: var(--font-24);
  /* letter-spacing: calc(-5 / 100 * var(--font-24)); */
  line-height: var(--font-line-height);
  vertical-align: center;
}

/* Upper Case Letter */
.uppercase-text {
  text-transform: uppercase;
}

/* Bavel Border Classes */
.bavel-border {
  clip-path: polygon(
    1.5vw 0,
    calc(100% - 1.5vw) 0,
    100% 1.5vw,
    100% calc(100% - 1.5vw),
    calc(100% - 1.5vw) 100%,
    1.5vw 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
}

/* Preloader */

.preloader__section {
  transition: opacity 1s;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color-blackish-olive);
  z-index: 99999;
  padding: var(--margins-left-right);
  pointer-events: none;
}

.preloader__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-yellow);
}

.preloader__container img {
  width: 30%;
  height: auto;
  object-fit: contain;
}

/* Menu Header */

.header__menu {
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(5px);
  background: #11111103;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

/* Menu Box With Post */
.menu__box {
  transition: left 0.8s;
  position: relative;
  left: -110%;
  width: 100%;
  background: var(--color-nile-blue);
  grid-column: 1/6;
  margin: var(--margins-left-right) 0;
  padding: 2%;
  display: grid;
  grid-template-columns: repeat(5, 1fr) 2%;
  column-gap: var(--grid-column-gap);
  grid-template-rows: 0.1fr 1fr;
}
/* Close Btn */
.menu__close__btn {
  width: 5%;
  top: 2%;
  left: 2%;
  cursor: pointer;
  position: absolute;
}
.menu__close__btn img {
  width: 90%;
  height: auto;
  object-fit: contain;
}
.active__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.menu__close__btn:hover .active__close {
  opacity: 1;
}
.menu__close__btn:hover img {
  opacity: 0;
}
.logo__section {
  justify-self: center;
  grid-column: 4/7;
  padding-left: 10%;
}
.logo__section img {
  width: 100%;
}

.nav__menu {
  /* margin-top: -10rem; */
  grid-column: 2/3;
  align-self: center;
}

.nav__menu__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  row-gap: 1rem;
}

.nav__menu__links__wrapper {
  display: inline-block;
  width: 100%;
  height: 2.5rem;

  text-decoration: none;
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
}
.nav__menu__links {
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
  padding: 0.6rem 1rem 0.5rem 1rem;
  width: 100%;
  text-decoration: none;
  color: var(--color-blackish-olive);
  transition: all 300ms;
}
.nav__menu__links:hover {
  width: 100%;
  background-color: var(--color-blackish-olive);
  color: var(--color-nile-blue);
}

.latest__post {
  grid-column: 4/6;
  align-self: center;
}
.catogery__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1rem;
  padding-bottom: 0.8rem;
}
.catogery__wrapper {
  clip-path: polygon(
    11px 0,
    calc(100% - 11px) 0,
    100% 11px,
    100% calc(100% - 11px),
    calc(100% - 11px) 100%,
    11px 100%,
    0 calc(100% - 11px),
    0 11px
  );
  padding: 2px;
  cursor: pointer;
  background: var(--color-blackish-olive);
}

.catogery__box {
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
  padding: 0.5rem 1rem;
  background: var(--color-nile-blue);
}
.catogery__box p {
  padding-top: 4%;
}
.catogery__box:hover {
  background: var(--color-blackish-olive);
}
.catogery__box:hover p {
  color: var(--color-nile-blue);
}
.latest__post__image__box {
  width: 100%;
  clip-path: polygon(
    0px 0,
    calc(100% - 20px) 0,
    100% 0px,
    100% calc(100% - 20px),
    calc(100% - 0px) 100%,
    0px 100%,
    0 calc(100% - 20px),
    0 20px
  );
  transition: 0.2s ease;
}
.latest__post__image__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest__post:hover .latest__post__image__box {
  clip-path: polygon(
    20px 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    20px 100%,
    0 calc(100% - 20px),
    0 20px
  );
}
.latest__post__title {
  margin-top: 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
}
.latest__post__title p {
  color: var(--color-blackish-olive);
}
.latest__post__title img {
  display: flex;
  width: 1.5rem;
  margin-bottom: 0.4rem;
}
.menu__button__container {
  position: fixed;
  z-index: 998;
  width: 100%;
  pointer-events: none;
  padding: var(--margins-left-right);
}
.menu__button__home {
  position: relative;
  width: 3%;
  pointer-events: auto;
  /* z-index: 998;
  position: fixed;
  top: 4.3%;
  left: 2.1%; */
  cursor: pointer;
  /* background: url("./assets/icons/MENU\ BUTTON.svg");
  background-repeat: no-repeat;
  background-size: contain; */
}
.menu__inactive {
  transition: 0.1s;
}
.menu__active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.1s;
}
.menu__button__home:hover .menu__active {
  opacity: 1;
}
.menu__button__home:hover .menu__inactive {
  opacity: 0;
}
.about .menu__button__home .menu__inactive line {
  stroke: var(--color-seashell-pink);
}
.about .menu__button__home .menu__inactive path {
  stroke: var(--color-seashell-pink);
}
.about .menu__text {
  stroke: none !important;
  fill: var(--color-seashell-pink);
}

.project .menu__button__home .menu__inactive line {
  stroke: var(--color-orange);
}
.project .menu__button__home .menu__inactive path {
  stroke: var(--color-orange);
}
.project .menu__text {
  stroke: none !important;
  fill: var(--color-orange);
}

.explore .menu__button__home .menu__inactive line {
  stroke: var(--color-nile-blue);
}
.explore .menu__button__home .menu__inactive path {
  stroke: var(--color-nile-blue);
}
.explore .menu__text {
  stroke: none !important;
  fill: var(--color-nile-blue);
}

.news .menu__button__home .menu__inactive line {
  stroke: var(--color-blackish-olive);
}
.news .menu__button__home .menu__inactive path {
  stroke: var(--color-blackish-olive);
}
.news .menu__text {
  stroke: none !important;
  fill: var(--color-blackish-olive);
}
/* Home Screen Styles */
.home__hero__section {
  width: 100%;
  height: 100vh;
  /* background: var(--color-blackish-olive); */
  padding: var(--margins-left-right);
}
.hero__project__wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(
    1.5vw 0,
    calc(100% - 1.5vw) 0,
    100% 1.5vw,
    100% calc(100% - 1.5vw),
    calc(100% - 1.5vw) 100%,
    1.5vw 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
}
.hero__project__slider {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  position: relative;
}
.home .hero__project__background.active {
  opacity: 1;
  z-index: 1;
}
.home-page {
  transition: 0.5s linear;
  background: var(--color-blackish-olive);
}
#arrow__carousel {
  z-index: 9999;
  /* display: none; */
  display: flex;
  justify-content: center;
  align-items: center;
}
#arrow__carousel img {
  width: 2.5rem;
  height: auto;
  object-fit: contain;
  /* cursor: pointer; */
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
}
.hero__project__background {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  background-image: url("./assets/images/hero-home.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: polygon(
    1.5vw 0,
    calc(100% - 1.5vw) 0,
    100% 1.5vw,
    100% calc(100% - 1.5vw),
    calc(100% - 1.5vw) 100%,
    1.5vw 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
  padding: 1%;
}
.home .hero__project__background {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  background-image: url("./assets/images/hero-home.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: polygon(
    1.4vw 0,
    calc(100% - 1.4vw) 0,
    100% 1.4vw,
    100% calc(100% - 1.4vw),
    calc(100% - 1.4vw) 100%,
    1.4vw 100%,
    0 calc(100% - 1.4vw),
    0 1.4vw
  );
  padding: 1%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.logo__home {
  justify-self: center;
  grid-column: 4/6;
}

.logo__home img {
  width: 100%;
}
.hero__project__name {
  grid-column: 8/9;
  padding-left: 25%;
}

.scroll__down__icon {
  text-decoration: none;
  justify-self: center;
  grid-column: 4/6;
  align-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.8rem;
  cursor: pointer;
  padding-bottom: 5%;
}
.scroll__down__icon img {
  width: 10%;
}
/* Left Content Right Image Section */

.left__content__right__image__card {
  width: 100%;
  padding-top: var(--section-top-padding);
  /* background: var(--color-blackish-olive); */
}
.left__content__text {
  grid-column: 1/6;
  padding-left: 12%;
}
.left__content__text h2 {
  line-height: 90px;
}
.right__image_card {
  padding-top: var(--section-top-padding);
  grid-column: 6/8;
  grid-row: 2;
}
.right__imagebox img {
  width: 100%;
  clip-path: polygon(
    0px 0,
    calc(100% - 20px) 0,
    100% 0px,
    100% calc(100% - 20px),
    calc(100% - 0px) 100%,
    0px 100%,
    0 calc(100% - 20px),
    0 20px
  );
  transition: 0.2s ease;
}
.right__image_card:hover .right__imagebox img {
  clip-path: polygon(
    20px 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    20px 100%,
    0 calc(100% - 20px),
    0 20px
  );
}

.right__image__caption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1rem;
  margin-top: 1rem;
}
.right__image__caption p {
  color: var(--color-yellow);
}
.right__image__caption img {
  transform: rotate(-90deg);
  width: 1rem;
  margin-bottom: 0.4rem;
}
.right__image_card:hover .right__image__caption img {
  animation: bumptoRight 0.5s 1;
}

@keyframes bumptoRight {
  0% {
    transform: rotate(-90deg) translateY(0);
  }
  50% {
    transform: rotate(-90deg) translateY(10px);
  }
  100% {
    transform: rotate(-90deg) translateY(0);
  }
}
/* Project Carosel Section */
.projects__carousel__section {
  width: 100%;
  /* background: var(--color-blackish-olive); */
  padding-top: var(--section-top-padding);
  padding-left: 7%;
}
.project__title {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  margin-bottom: 5rem;
}

.project .project__title {
  margin-bottom: 0;
}

.project__title img {
  transform: rotate(-90deg);
  width: 2.3rem;
  margin-bottom: 1rem;
}
.project__carousel__pagination {
  position: relative;
}
.projects__carousel__container__wrapper {
  width: 100%;
  grid-column: 1/-1;
  overflow: hidden;
  position: relative;
}

.projects__carousel__container {
  width: 100%;
  display: flex;
  column-gap: 2rem;
  transition: transform 1s;
}
.project__carousel__card {
  flex-shrink: 0;
  width: 32%;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.project__carousel__card__imagebox {
  width: 100%;
  clip-path: polygon(
    0px 0,
    calc(100% - 30px) 0,
    100% 0px,
    100% calc(100% - 30px),
    calc(100% - 0px) 100%,
    0px 100%,
    0 calc(100% - 30px),
    0 30px
  );
  transition: 0.2s ease;
}
.project__carousel__card__imagebox img {
  width: 100%;
}
.project__carousel__card:hover .project__carousel__card__imagebox {
  clip-path: polygon(
    30px 0,
    calc(100% - 30px) 0,
    100% 30px,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    30px 100%,
    0 calc(100% - 30px),
    0 30px
  );
}

.project__carousel__card__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1rem;
}

.project__carousel__card__title p {
  color: var(--color-yellow);
}

.project__carousel__card__title img {
  transform: rotate(-90deg);
  width: 1rem;
  margin-bottom: 0.4rem;
}
.project__carousel__card:hover .project__carousel__card__title img {
  animation: bumptoRight 0.5s 1;
}

.project__carousel__card:not(:first-child) .project__carousel__card__title img {
  margin-left: 0;
  margin-bottom: 0.4rem;
}

/* About Card Left Image Right Content */
.about__card__left__image__right__content__section {
  padding-top: calc(var(--section-top-padding) * 2);
  /* background-color: var(--color-blackish-olive); */
  width: 100%;
  padding-bottom: 2rem;
}
.about__card__box {
  width: 100%;
  height: 85%;
  grid-column: 1/-1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(
    1.5vw 0,
    calc(100% - 1.5vw) 0,
    100% 1.5vw,
    100% calc(100% - 1.5vw),
    calc(100% - 1.5vw) 100%,
    1.5vw 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
}
.left__background__imagebox {
  width: 50%;
}
.left__background__imagebox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right__content__section {
  width: 50%;
  background: var(--color-seashell-pink);
  padding: 2%;
  height: 100%;
}
.right__content__box__wrapper {
  background: var(--color-brown);
  height: 100%;
  padding: 3px;
  clip-path: polygon(
    32px 0,
    calc(100% - 32px) 0,
    100% 32px,
    100% calc(100% - 32px),
    calc(100% - 32px) 100%,
    32px 100%,
    0 calc(100% - 32px),
    0 32px
  );
}
.right__content__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-seashell-pink);
  height: 100%;
  clip-path: polygon(
    30px 0,
    calc(100% - 30px) 0,
    100% 30px,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    30px 100%,
    0 calc(100% - 30px),
    0 30px
  );
}
.right__content__top {
  padding: 4%;
}
.right__content__bottom {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 0% 3% 3% 3%;
}

.right__content__bottom::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-brown);
  top: -10%;
  left: 0;
}
.right_content__botton__text {
  width: 30%;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.readmore__button__wrapper {
  width: 60%;
  height: 1.55vw;
  background: var(--color-brown);
  clip-path: polygon(
    0.7vw 0,
    calc(100% - 0.7vw) 0,
    100% 0.7vw,
    100% calc(100% - 0.7vw),
    calc(100% - 0.7vw) 100%,
    0.7vw 100%,
    0 calc(100% - 0.7vw),
    0 0.7vw
  );
  padding: 2px 1px;
}
.readmore__button__wrapper button {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: var(--color-seashell-pink);
  clip-path: polygon(
    0.7vw 0,
    calc(100% - 0.7vw) 0,
    100% 0.7vw,
    100% calc(100% - 0.7vw),
    calc(100% - 0.7vw) 100%,
    0.7vw 100%,
    0 calc(100% - 0.7vw),
    0 0.7vw
  );
  border: none;
  padding-top: 3%;
}
.readmore__button__wrapper button:hover {
  background: var(--color-brown) !important;
  color: var(--color-seashell-pink);
}
.readmore__button__wrapper button:hover a {
  color: var(--color-brown);
}
.readmore__button {
  display: flex;
}
.readmore__button img {
  width: 13%;
  /* margin-left: -1%; */
  transform: translateX(-30px);
  opacity: 0;
  z-index: -1;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.readmore__button:hover img {
  opacity: 1;
  transform: translateX(-5px);
}

/* Latest News Section */
.latest__news__section {
  width: 100%;
  padding-top: var(--section-top-padding);
  /* background: var(--color-pistachio); */
  padding-left: 8%;
  padding-right: 8%;
  padding-bottom: var(--section-top-padding);
}

.latest__news__container {
  width: 100%;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
}
.latest_news_container_second {
  width: 100%;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
}
.latest__news__card {
  width: 100%;
  height: 100%;
  display: grid;
  row-gap: 0;
  grid-template-columns: 60% 15% 25%;
  grid-template-rows: auto auto auto;
  /* border: 2px solid var(--color-blackish-olive); */
}
.latest__news__date {
  grid-column: 1/2;
  grid-row: 1 / 2;
  height: fit-content;
  padding: 1.5% 1% 1% 2%;
  border: 2px solid var(--color-blackish-olive);
}
.latest__news__info__title {
  grid-column: 1/2;
  grid-row: 2 / 4;
  height: 20vw;
  border-bottom: 2px solid var(--color-blackish-olive);
  border-right: 2px solid var(--color-blackish-olive);
  border-left: 2px solid var(--color-blackish-olive);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.latest__news__description {
  grid-column: 2/3;
  grid-row: 1/4;
  padding: 5%;
  border-bottom: 2px solid var(--color-blackish-olive);
  border-top: 2px solid var(--color-blackish-olive);
}
.news__catogery__wrapper {
  display: inline-block;
  width: 12%;
  height: 40px;
  background: var(--color-blackish-olive);
  clip-path: polygon(
    11px 0,
    calc(100% - 11px) 0,
    100% 11px,
    100% calc(100% - 11px),
    calc(100% - 11px) 100%,
    11px 100%,
    0 calc(100% - 11px),
    0 11px
  );
  padding: 2px;
}
.news__catogery {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-pistachio);
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
  color: var(--color-blackish-olive);
}
.news__catogery p {
  padding-top: 3%;
}
.latest__news__info__title h2 {
  width: 50%;
  text-align: center;
  margin-top: 1rem;
}
.latest__news__imagebox {
  grid-row: 1/4;
  grid-column: 3/4;
}

.latest__news__imagebox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest__news__section .project__title img {
  width: 3.5rem;
}
.project__title:hover img {
  animation: bumptoRight 0.5s 1;
}
.latest__news__card {
  outline: none;
}

.latest__news__card:hover {
  background: var(--color-seashell-pink);
}
.latest__news__card:hover .latest__news__date {
  border-top: 2px solid var(--color-seashell-pink);
  /* border-right: 2px solid var(--color-seashell-pink); */
  border-left: 2px solid var(--color-seashell-pink);
}
.latest__news:hover img {
  animation: bumptoRightnoRotate 0.5s 1;
}
.latest__news__card:hover .latest__news__info__title {
  border-bottom: 2px solid var(--color-seashell-pink);
  border-left: 2px solid var(--color-seashell-pink);
}
.latest__news__card:hover .latest__news__description {
  border-bottom: 2px solid var(--color-seashell-pink);
  border-top: 2px solid var(--color-seashell-pink);
}
@keyframes bumptoRightnoRotate {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
/* .latest__news__card:hover .latest__news__date {
  border-top: none;
  border-left: none;
}
.latest__news__card:hover .latest__news__info__title {
  border-bottom: none;
  border-left: none;
}
.latest__news__card:hover .latest__news__description {
  border-top: none;
  border-bottom: none;
} */

.latest__news__card:hover .latest__news__info__title .news__catogery {
  background: var(--color-blackish-olive);
  color: var(--color-seashell-pink);
}
.seeall__button img {
  position: relative;
  transform: translateX(-30px);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.seeall__button:hover img {
  transform: translateX(-5px);
  opacity: 1;
  z-index: 1;
}
.seeall__button__wrapper {
  width: 50%;
  height: 1.5vw;
  background: var(--color-blackish-olive);
  clip-path: polygon(
    0.7vw 0,
    calc(100% - 0.7vw) 0,
    100% 0.7vw,
    100% calc(100% - 0.7vw),
    calc(100% - 0.7vw) 100%,
    0.7vw 100%,
    0 calc(100% - 0.7vw),
    0 0.7vw
  );
  padding: 2px;
}
.seeall__button__wrapper button {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: var(--color-pistachio);
  clip-path: polygon(
    0.7vw 0,
    calc(100% - 0.7vw) 0,
    100% 0.7vw,
    100% calc(100% - 0.7vw),
    calc(100% - 0.7vw) 100%,
    0.7vw 100%,
    0 calc(100% - 0.7vw),
    0 0.7vw
  );
  border: none;
  padding-top: 2%;
}
.seeall__button__wrapper button:hover {
  background: var(--color-blackish-olive);
  color: var(--color-pistachio);
}
.seeall__button {
  width: 20%;
  margin: 0 auto;
  display: flex;
}
.seeall__button img {
  width: 10%;
  /* margin-left: -1%; */
}

/* Explore project Section */
.explore__project__section {
  /* background: var(--color-blackish-olive); */
  padding-top: var(--section-top-padding);
  padding-left: 8%;
}
.explore__project__section .left__content__text {
  padding-left: 0;
}
.exlpore__project__filter {
  margin: 3rem 0;
  grid-column: 1/7;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}

.project__filter__card {
  width: auto;
}
.filter__card__wrapper {
  width: 100%;
  background: var(--color-yellow);
  clip-path: polygon(
    11px 0,
    calc(100% - 11px) 0,
    100% 11px,
    100% calc(100% - 11px),
    calc(100% - 11px) 100%,
    11px 100%,
    0 calc(100% - 11px),
    0 11px
  );
  padding: 2px;
}
.filter__card {
  padding: 0.4rem 0.8rem 0.3rem 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: var(--color-blackish-olive);
  color: var(--color-yellow);
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
  border: none;
}
.filter__card p {
  padding-top: 2%;
}
.filter__card:hover {
  background: var(--color-yellow);
  color: var(--color-blackish-olive);
}
.explore__right__project__imagebox {
  grid-column: 7/-1;
  padding-top: 8rem;
}
.explore__right__project__imagebox .right__project__catogery {
  display: flex;
  column-gap: 1rem;
}
.explore__right__project__imagebox .right__image_card {
  padding-top: 0;
  margin-top: 1rem;
}

/* About Page */

.about_footer {
  background: var(--color-orange);
}
.about {
  transition: 0.5s linear;
  background: var(--color-brown);
}
.about_footer {
  padding-top: var(--margins-left-right);
}
.page__title {
  grid-column: 4/6;
  grid-row: 2/3;
  align-self: center;
  justify-self: center;
}
.left__content__right__about {
  padding-top: var(--section-top-padding);
}
.about__scroll__down {
  width: 70%;
}

.left__big__landscape__image__right__content {
  padding-top: calc(var(--section-top-padding) + 2rem);
  padding-left: 8%;
  height: 45vw;
}
.left__big__landscape__image__right__content .grid-col-8 {
  padding: 0 var(--margins-left-right) 0 2%;
}
.left__big__landscape__image__right__content .grid-col-8 {
  height: 100%;
}
.left__big__landscape__image__right__content__inner__grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
}
.left__big__landscape__image {
  width: 100%;
  grid-column: 1/9;
  height: 100%;
  background-position: center;
  background-size: cover;
  padding: 2%;
}
.bavel__frame__container__wrapper {
  width: 100%;
  height: 100%;
}
.bavel__frame__container__wrapper img {
  width: 100%;
  height: 100%;
  display: flex;
  transform: scaleY(1);
}
.right__content {
  grid-column: 9/-1;
}
.right__content__title {
  border-top: 2px solid var(--color-seashell-pink);
  border-bottom: 2px solid var(--color-seashell-pink);
  padding: 2% 0%;
  margin-bottom: 1rem;
}
.right__content__description {
  width: 50%;
}

.left__caption__right__two__image {
  padding-top: var(--section-top-padding);
  padding-left: 8%;
}
.left__caption__right__two__image__inner__grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
}
.left__caption {
  grid-column: 1/4;
  /* justify-self: center; */
  width: 90%;
  /* padding-left: 14%; */
}
.right__images {
  grid-column: 5/-1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--grid-column-gap);
}
.right__images img {
  width: 100%;
}

.left__large__landscape__right__caption {
  height: 40vw;
  padding-top: var(--section-top-padding);
  padding-left: 8%;
}

.left__large__landscape__right__caption .grid-col-8 {
  height: 100%;
}
.left__large__landscape__right__caption .bavel__frame__container__wrapper {
  background-image: none;
  padding: 2%;
}
.left__large__landscape__right__caption .bavel__frame__container__wrapper img {
  width: 100%;
  transform: scaleY(1.05);
}
.left__large__landscape__right__caption .right__content {
  grid-column: 9/-1;
}
.left__large__landscape__right__caption .right__content__description {
  width: 60%;
}
.left__image__right__text__box {
  padding-top: calc(var(--section-top-padding) * 2);
  padding-left: 8%;
}
.left__image__right__text__box__inner__grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
}
.right__image__row {
  display: grid;
  grid-column: 5/-1;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--grid-column-gap);
}
.left__imagebox img {
  width: 100%;
  height: 100%;
}
.right__contentbox {
  background: var(--color-yellow);
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 2rem;
}
.right__contentbox img {
  width: 20%;
}
.team__profile__section {
  margin-top: var(--section-top-padding);
  padding-top: var(--section-top-padding);
  /* background: var(--color-orange); */
  padding-left: 8%;
  padding-right: 8%;
  padding-bottom: var(--section-top-padding);
}

.team__title {
  grid-column: 1/-1;
  border-top: 2px solid var(--color-seashell-pink);
  padding: 1% 0;
}

.team__container {
  grid-column: 1/-1;
}
.team__member__card {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(8, 1fr);
}
.team__member__name {
  grid-column: 1/4;
  border-top: 2px solid var(--color-seashell-pink);
  border-bottom: 2px solid var(--color-seashell-pink);
  padding: 3% 0;
  height: fit-content;
}
.team__member__description {
  margin-right: 4%;
  grid-column: 4/7;
  border-top: 2px solid var(--color-seashell-pink);
  padding: 3% 3%;
  border-left: 2px solid var(--color-seashell-pink);
}
.team__member__description p {
  width: 50%;
}
.team__member__image {
  margin-bottom: 2%;
  grid-column: 7/-1;
}
.team__member__image img {
  width: 100%;
}

/* Project Page */
.project,
.news__inner,
.project_footer {
  padding-top: 0;
  background: var(--color-claret);
}
.project_footer {
  padding-top: var(--margins-left-right);
}
.project .home__hero__section {
  background: var(--color-claret);
}

.all__projects__section {
  padding-top: var(--section-top-padding);
}
.projects__container {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  width: 85%;
  margin: 0 auto;
  row-gap: 8rem;
}
.single__project__card__wrapper {
  /* background: var(--color-orange);
  clip-path: polygon(
    20px 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    20px 100%,
    0 calc(100% - 20px),
    0 20px
  );
  padding: 2px; */
}

.single__project__card {
  cursor: pointer;
  clip-path: polygon(
    20px 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    20px 100%,
    0 calc(100% - 20px),
    0 20px
  );
  display: flex;
  overflow: hidden;
}

.single__project__card:hover .project__info__box {
  background: var(--color-yellow);
}
.single__project__card:hover .project__info__box__wrapper {
  background: var(--color-yellow);
}
.single__project__card:hover .project__title {
  color: var(--color-blackish-olive);
}
.single__project__card:hover .project__date {
  color: var(--color-blackish-olive);
}
.project__title {
  color: var(--color-orange);
}
/* .single__project__card[data-color="red"] .project__info__box {
    background: red;
} */
.project__date {
  color: var(--color-orange);
}
.project__thumbnail {
  width: 60%;
  display: flex;
}
.project__info__box__wrapper {
  transition: all 0.2s;
  width: 40%;
  background: var(--color-orange);
  clip-path: polygon(
    1.5vw 0,
    calc(100% - 1.5vw) 0,
    100% 0px,
    100% calc(100% - 1.5vw),
    calc(100% - 0px) 100%,
    1.5vw 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
  padding: 2px 0px 2px 2px;
}
.project__info__box {
  clip-path: polygon(
    1.5vw 0,
    calc(100% - 1.5vw) 0,
    100% 0px,
    100% calc(100% - 1.5vw),
    calc(100% - 0px) 100%,
    1.5vw 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
  background: var(--color-claret);
  display: grid;
  grid-template-rows: 96% 4%;
  height: 100%;
  padding: 2%;
  transition: all 0.2s;
}
.single__project__card__reverse {
  flex-direction: row-reverse;
}
.single__project__card__reverse .project__info__box__wrapper {
  clip-path: polygon(
    0px 0,
    calc(100% - 1.5vw) 0,
    100% 1.5vw,
    100% calc(100% - 1.5vw),
    calc(100% - 1.5vw) 100%,
    0px 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
  padding: 2px 2px 2px 0px;
}
.single__project__card__reverse
  .project__info__box__wrapper
  .project__info__box {
  clip-path: polygon(
    0px 0,
    calc(100% - 1.5vw) 0,
    100% 1.5vw,
    100% calc(100% - 1.5vw),
    calc(100% - 1.5vw) 100%,
    0px 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
}
.project__title {
  align-self: center;
  justify-self: center;
}
.project__title h3 {
  text-align: center;
  width: 99%;
  white-space: pre-wrap;
  word-break: break-word;
}
.project__date {
  align-self: end;
  justify-self: center;
}
.project__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project .about__card__left__image__right__content__section {
  background: var(--color-claret);
  padding-bottom: 0;
}
.project .right__content__top {
  width: 90%;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.project .right__content__top p {
  width: 30%;
  letter-spacing: 1px;
}
.project .right__content__top img {
  width: 55px;
}
.project .right__content__box {
  background: var(--color-nile-blue);
  padding: 1%;
}
.project .right__content__section {
  background: var(--color-nile-blue);
}
.project .right__content__box__wrapper {
  background: var(--color-blackish-olive);
}
.project .right__content__bottom::after {
  display: none;
}
.project .right__content__bottom {
  justify-content: flex-start;
}

.project .catogery__container {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1rem;
}

/* Project Inner */
.image__fullscreen__lightbox {
  background: var(--color-blackish-olive);
  position: fixed;
  top: 0;
  backdrop-filter: blur(70px);
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999934;
  display: flex;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  align-items: center;
  transition: 0.5s;
}
.close__lightbox__button {
  position: absolute;
  top: 3%;
  right: 3%;
  cursor: pointer;
}
.close__lightbox__button:hover .svg_close_fill {
  fill: var(--color-seashell-pink);
}
.close__lightbox__button:hover .svg_close_stroke {
  stroke: var(--color-seashell-pink);
}
.close__lightbox__button:hover .svg_close_text_fill {
  fill: var(--color-blackish-olive);
}
.close__lightbox__button:hover .svg_close_xmark_fill {
  fill: var(--color-blackish-olive);
}
.image__fullscreen__imagebox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
  padding: 0 5%;
}
.image__box__fullscreen {
  width: 75%;
}
.image__box__fullscreen img {
  width: 100%;
}
.explore__title {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  width: 70%;
}
.image__fullscreen__imagebox p {
  /* width: 70%; */
  text-align: center;
}
.explore__title img {
  margin-bottom: 1%;
}
.no_project__found {
  text-align: center;
  grid-column: 1 / -1;
  margin: 10% 0;
  font-size: 1.5rem;
  color: var(--color-nile-blue);
}
.project-inner .home__hero__section {
  background: var(--color-blackish-olive);
}
.project-inner .page__title {
  text-align: center;
}
.project_inner_footer {
  background: var(--color-blackish-olive);
}
#project_description_fullscreen {
  width: 70%;
}
.project__information__box {
  padding-left: 8%;
  padding-right: 0rem;
  padding-top: var(--section-top-padding);
  background: var(--color-blackish-olive);
}

.project__information {
  grid-column: 1/-1;
  display: grid;
  height: 25rem;
  grid-template-columns: 60% 15% 25%;
  border: 2px solid var(--color-yellow);
}
.project__information__title {
  padding: 2%;
  width: 50%;
}
.project__information__details {
  padding: 8%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  border-left: 2px solid var(--color-yellow);
}
.project__information__description {
  padding: 4% 5%;
  border-left: 2px solid var(--color-yellow);
}
.two__left__row__image__section {
  width: 100%;
  background: var(--color-blackish-olive);
  padding-top: var(--section-top-padding);
  padding-left: 8%;
  padding-right: 0;
}
.two__left__row__image__section__inner__grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
}
.row__image__container {
  grid-column: 1/6;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--grid-column-gap);
}
.row__imagebox img {
  width: 100%;
}
.big__landscape__right__image {
  background: var(--color-blackish-olive);
  padding-top: var(--section-top-padding);
  padding-left: 8%;
}
.big__landscape__right__image__inner__grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
}
.big__landscape__image {
  grid-column: 4/-1;
}
.big__landscape__image img {
  width: 100%;
}

.left__row__image__content {
  background-color: var(--color-blackish-olive);
  padding-top: var(--section-top-padding);
  padding-left: 8%;
}
.left__row__image__content__inner__grid {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
}
.left__row__image__content .right__image__row {
  grid-column: 1/6;
}
.left__row__image__content .right__contentbox {
  background: var(--color-orange);
}
.right__potriat__with__caption {
  width: 100%;
  background: var(--color-blackish-olive);
  padding-top: var(--section-top-padding);
  padding-left: 8%;
}
.right__potriat__with__caption__inner__grid {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
}
.left__caption_potriat {
  grid-column: 6 / 7;
}
.right__potriat__image {
  grid-column: 7/-1;
}
.right__potriat__image img {
  width: 100%;
}
.left__potriat__caption__right__contentbox {
  background: var(--color-blackish-olive);
  padding-top: var(--section-top-padding);
  padding-left: 8%;
}
.left__potriat__caption__right__contentbox__inner__grid {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
}
.left__potriat__image {
  grid-column: 1 / 5;
  /* margin-right: 21%; */
}
.left__potriat__image img {
  width: 100%;
}
.left__potriat__caption {
  grid-column: 5/7;
  /* margin-left: -60%;
  width: 90%; */
}
.right__contentbox__potriat {
  /* margin-left: 15%; */
  grid-column: 9/-1;
  background: var(--color-yellow);
  padding: 5%;
  display: flex;
  align-items: flex-end;
}
.center__big__potriat__image {
  width: 100%;
  background: var(--color-blackish-olive);
  padding-left: 8%;
  padding-top: var(--section-top-padding);
}
.center__big__potriat__image__inner__grid{
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
}
.center__big__potriat__imagebox {
  grid-column:5 / 9;
}
.center__big__potriat__imagebox img {
  width: 100%;
}
.left__potriat__image__variant__second {
  grid-column: 6/-1;
}
.right__contentbox__potriat_variant_second {
  grid-row: 1/1;
  margin-right: 15%;
  margin-left: 0;
  grid-column: 1/4;
  background: var(--color-seashell-pink);
}
.right__image__row__varient__second {
  grid-column: 4/-1 !important;
}
.project-inner_card .about__card__box {
  flex-direction: row-reverse;
}
.project-inner_card .right__content__section {
  background: var(--color-nile-blue);
}
.project-inner_card .right__content__box__wrapper {
  background: var(--color-blackish-olive);
}
.project-inner_card .right__content__box {
  background: var(--color-nile-blue);
}
.project-inner_card .right__content__bottom {
  justify-content: flex-start;
}
.right__content__top {
  display: grid;
  height: 100%;
}

.project-inner_card .right__content__top h3 {
  justify-self: center;
  align-self: center;
  text-align: center;
  width: 50%;
}
.project-inner_card .right__content__top p {
  align-self: start;
  justify-self: center;
}
.project-inner_card .right__content__top h6 {
  align-self: end;
  justify-self: center;
}
.project-inner_card .readmore__button__wrapper {
  background: var(--color-blackish-olive);
}
.project-inner_card .readmore__button__wrapper a {
  width: 100%;
  height: 100%;
  clip-path: polygon(
    0.7vw 0,
    calc(100% - 0.7vw) 0,
    100% 0.7vw,
    100% calc(100% - 0.7vw),
    calc(100% - 0.7vw) 100%,
    0.7vw 100%,
    0 calc(100% - 0.7vw),
    0 0.7vw
  );
  background: var(--color-nile-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-inner_card .readmore__button__wrapper a:hover {
  background: var(--color-blackish-olive);
  color: var(--color-nile-blue);
}
.right__content__bottom::after {
  background: var(--color-blackish-olive);
}
.hero__explore__section {
  width: 100%;
  height: 60vh;
  padding-top: 2rem;
  background: var(--color-olive-green);
}
.hero__explore__section .grid-col-8 {
  height: 100%;
}
.explore__hero__box__wrapper {
  padding: 2px;
  grid-column: 1/-1;
  background: var(--color-nile-blue);
  clip-path: polygon(
    1.5vw 0,
    calc(100% - 1.5vw) 0,
    100% 1.5vw,
    100% calc(100% - 1.5vw),
    calc(100% - 1.5vw) 100%,
    1.5vw 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
}

.explore__hero__box {
  height: 100%;
  clip-path: polygon(
    1.45vw 0,
    calc(100% - 1.45vw) 0,
    100% 1.45vw,
    100% calc(100% - 1.45vw),
    calc(100% - 1.45vw) 100%,
    1.45vw 100%,
    0 calc(100% - 1.45vw),
    0 1.45vw
  );
  width: 100%;
  background: var(--color-olive-green);
  display: grid;
  grid-template-columns: 10% 80% 10%;
}
.explore .hero__explore__section {
  padding-top: var(--margins-left-right);
}

.explore__logo {
  justify-self: center;
  grid-column: 2/3;
  align-self: start;
  display: flex;
  justify-content: center;
  padding: 2%;
  align-items: center;
}
.explore__logo img {
  width: 80%;
  object-fit: contain;
}
.explore__page__title {
  justify-self: center;
  grid-column: 2/3;
  align-self: start;
}
.explore__description {
  grid-column: 3/4;
  grid-row: 1/3;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 10% 5%;
  align-self: end;
  position: relative;
}

.explore__description::after {
  position: absolute;
  content: "";
  top: 0;
  left: -5%;
  width: 2px;
  height: 100%;
  background: var(--color-nile-blue);
}

.explore__footer {
  background: var(--color-olive-green);
}
.filter__tags__section {
  padding-top: 4rem;
  padding-left: 5%;
  background: var(--color-olive-green);
}
.filter__tags__container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 70% 30%;
}
.filter__tag__card__wrapper {
  background: var(--color-nile-blue);
  cursor: pointer;
  clip-path: polygon(
    11px 0,
    calc(100% - 11px) 0,
    100% 11px,
    100% calc(100% - 11px),
    calc(100% - 11px) 100%,
    11px 100%,
    0 calc(100% - 11px),
    0 11px
  );
  padding: 2px;
}
.filter__tags__left {
  display: flex;
  column-gap: 0.8rem;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.filter__tag__card {
  color: var(--color-nile-blue);
  width: 100%;
  height: 100%;
  background: var(--color-olive-green);
  padding: 0.5rem 1.8rem;
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter__tag__card p {
  padding-top: 4%;
  line-height: 1;
}
.filter__tag__card:hover {
  background: var(--color-seashell-pink);
  color: var(--color-olive-green);
}
.filter__tag__card__wrapper:hover {
  background: var(--color-seashell-pink);
}
.filter__tag__card__wrapper:hover .filter__tag__card {
  background: var(--color-seashell-pink);
  color: var(--color-olive-green);
}
.filter__tag__card__wrapper_active {
  background: var(--color-seashell-pink);
}
.filter__tag__card__wrapper_active .filter__tag__card {
  background: var(--color-seashell-pink);
  color: var(--color-olive-green);
}
.filter__tags__right {
  display: flex;
  flex-direction: column;
  justify-self: flex-end;
  align-items: flex-end;
  row-gap: 1rem;
}
.filter__tag__card__variant__second {
  justify-content: flex-start;
  column-gap: 0.8rem;
  align-items: center;
  width: fit-content;
}
.filter__tag__card__wrapper__variant__second:hover svg path {
  fill: var(--color-olive-green);
}
.filter__tag__card__wrapper__variant__second {
  width: fit-content;
}
.explore__image__gallery {
  width: 100%;
  padding-left: 5.5%;
  margin-top: -1%;
  padding-top: var(--section-top-padding);
  background: var(--color-olive-green);
}
.explore__image__gallery__container {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--grid-column-gap);
  row-gap: var(--grid-column-gap);
}
.explore__gallery__imagebox {
  display: flex;
  clip-path: polygon(
    0px 0,
    calc(100% - 30px) 0,
    100% 0px,
    100% calc(100% - 30px),
    calc(100% - 0px) 100%,
    0px 100%,
    0 calc(100% - 30px),
    0 30px
  );
  transition: 0.2s ease;
}
.explore__gallery__imagebox img {
  width: 100%;
  cursor: pointer;
}
.explore__gallery__imagebox:hover {
  overflow: hidden;
  clip-path: polygon(
    30px 0,
    calc(100% - 30px) 0,
    100% 30px,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    30px 100%,
    0 calc(100% - 30px),
    0 30px
  );
}
.news .home__hero__section {
  background: var(--color-pistachio);
}
.news__footer {
  background: var(--color-pistachio);
}
.left__content__right__news {
  background: var(--color-pistachio);
}
.news__post__filter__section {
  background: var(--color-pistachio);
  width: 100%;
  padding-top: 5rem;
  padding-left: 8%;
}
.news__post__filter__container {
  grid-column: 1/-1;
  display: flex;
  column-gap: 1rem;
}
.news__post__filter__wrapper {
  background: var(--color-blackish-olive);
  clip-path: polygon(
    11px 0,
    calc(100% - 11px) 0,
    100% 11px,
    100% calc(100% - 11px),
    calc(100% - 11px) 100%,
    11px 100%,
    0 calc(100% - 11px),
    0 11px
  );
  padding: 2px;
}
.news__post__filter {
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
  cursor: pointer;
  width: 100%;
  height: 100%;
  background: var(--color-pistachio);
  padding: 0.5rem 1.2rem;
  color: var(--color-blackish-olive);
}
.news__post__filter p {
  /* padding-top: 3%; */
  line-height: 1;
}
.news__post__filter__active {
  background: var(--color-blackish-olive);
  color: var(--color-yellow);
}
.news__post__filter:hover {
  background: var(--color-blackish-olive);
  color: var(--color-yellow);
}
.news .news__section__container {
  background: var(--color-pistachio);
}
.news__section__container {
  padding-top: 4rem;
  padding-right: 5rem;
}

.news__about__section {
  padding-top: 1rem;
  background: var(--color-pistachio);
}
.news__about__section .right__content__section {
  background: var(--color-brown);
}
.news__about__section .right__content__box__wrapper {
  background: var(--color-seashell-pink);
}
.news__about__section .right__content__box {
  background: var(--color-brown);
}
.news__about__section .right__content__bottom::after {
  background: var(--color-seashell-pink);
}
.news__about__section .readmore__button__wrapper {
  background: var(--color-seashell-pink);
}
.news__about__section .readmore__button__wrapper button {
  background: var(--color-brown);
}
.news__about__section .readmore__button__wrapper button:hover {
  background: var(--color-seashell-pink) !important;
  color: var(--color-brown);
}
.news__about__section .readmore__button__wrapper button:hover a {
  /* background: var(--color-seashell-pink); */
  color: var(--color-brown);
}
.news__catogery__card__wrapper {
  width: 100%;
  display: flex;
  margin-bottom: 1rem;
  justify-content: center;
}
.news__catogery__card {
  width: fit-content;
  background: var(--color-seashell-pink);
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
  padding: 0.5rem 1.2rem;
}
.news__catogery__card p {
  padding-top: 3%;
}
.text-center {
  text-align: center;
}

.new__inner__footer {
  background: var(--color-claret);
}
.right__contentbox__second__variant {
  background: var(--color-orange);
}
.news__inner .about__card__left__image__right__content__section {
  background: var(--color-claret);
}
.news__inner .home__hero__section {
  background: var(--color-claret);
}
/* Footer  */

footer {
  padding-top: var(--margins-left-right);
  width: 100%;
  /* height: 100vh; */
  background: var(--color-blackish-olive);
  cursor: pointer;
  padding-bottom: 2rem;
}
.footer__input {
  display: none;
}
.footer__box {
  width: 100%;
  height: 50vh;
  grid-column: 1/-1;
  background: var(--color-seashell-pink);
  padding: 2%;
  transition: height 0.5s;

  clip-path: polygon(
    1.5vw 0,
    calc(100% - 1.5vw) 0,
    100% 1.5vw,
    100% calc(100% - 1.5vw),
    calc(100% - 1.5vw) 100%,
    1.5vw 100%,
    0 calc(100% - 1.5vw),
    0 1.5vw
  );
}
.footer__box .footer__label {
  cursor: pointer;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(8, 1fr);
  column-gap: var(--grid-column-gap);
  padding-bottom: 2rem;
}
.footer__contact__details {
  grid-column: 1/2;
  align-self: end;
  grid-row: 1/4;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.footer__contact__details__second {
  grid-column: 1/6;
  grid-row: 1/4;
  align-self: end;
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
  display: none;
}
.footer__site__logo {
  justify-self: center;
  justify-content: center;
  align-self: center;
  grid-column: 4 / 6;
  grid-row: 1 / 4;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__site__logo img {
  width: 60%;
}
.footer__social__links {
  grid-column: 8/-1;
  grid-row: 1/4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.social__links {
  display: flex;
  column-gap: 2rem;
}
.social__links ul {
  list-style: none;
}
.social__links ul li a {
  text-decoration: none;
}
.footer__branding {
  width: 60%;
}

.footer__input:checked + .footer__box {
  height: 92vh;
  border-image: url("./assets/images/image-frame-landscape.svg") 30 round;
}

.footer__input:checked + .footer__box .footer__contact__details {
  display: none;
}
.second__social {
  visibility: hidden;
}
.footer__input:checked + .footer__box .second__social {
  visibility: visible;
}

.footer__input:checked + .footer__box .footer__site__logo {
  align-self: start;
}
.footer__input:checked + .footer__box .footer__contact__details__second {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

@media (max-width: 1080px) {
  /* Home page Responsive */
  .project .right__content__top img {
    width: 25px;
  }
  .left__caption__right__two__image {
    padding-left: 0;
  }
  .left__large__landscape__right__caption {
    padding-left: 0;
  }
  .menu__box {
    grid-column: 1/-1;
    padding: 2%;
  }
  .menu__close__btn {
    width: 3rem;
    height: 10rem;
  }
  .menu__button__home {
    width: 8vw;
    left: 0%;
    top: 5%;
  }
  .logo__home {
    grid-column: 3/7;
  }
  .logo__section {
    padding-top: 1rem;
    grid-column: 2/5;
  }
  .hero__project__background {
    padding: 5%;
    clip-path: polygon(
      30px 0,
      calc(100% - 30px) 0,
      100% 30px,
      100% calc(100% - 30px),
      calc(100% - 30px) 100%,
      30px 100%,
      0 calc(100% - 30px),
      0 30px
    );
  }
  .scroll__down__icon {
    grid-column: 1/-1;
  }
  .latest__post {
    grid-column: 1/4;
  }
  .nav__menu {
    margin-top: 0;
    grid-column: 2/5;
  }

  /* Left Content Right Image Section */
  .left__content__text {
    grid-column: 1/-1;
    padding-left: 0;
  }
  .right__image_card {
    grid-column: 1/-1;
  }
  .right__image__caption img {
    width: 3%;
  }

  /* Project Carousel Section */
  .projects__carousel__section {
    padding-left: 0;
  }
  .project__title img {
    width: 1rem;
  }
  .project__carousel__card {
    width: 50%;
  }
  /* About Card Left Image Right Content */
  .about__card__left__image__right__content__section {
    padding-top: var(--section-top-padding);
  }
  .about__card__box {
    width: 90%;
    height: 100%;
    flex-direction: column;
    margin: 0 auto;
  }
  .left__background__imagebox {
    width: 100%;
    height: 50%;
  }
  .right__content__section {
    width: 100%;
    height: 50%;
  }
  .right_content__botton__text {
    width: 45%;
  }
  .readmore__button__wrapper {
    height: 4.5vw;
  }
  .readmore__button__wrapper {
    clip-path: polygon(
      15px 0,
      calc(100% - 15px) 0,
      100% 15px,
      100% calc(100% - 15px),
      calc(100% - 15px) 100%,
      15px 100%,
      0 calc(100% - 15px),
      0 15px
    );
  }
  .readmore__button__wrapper button {
    clip-path: polygon(
      15px 0,
      calc(100% - 15px) 0,
      100% 15px,
      100% calc(100% - 15px),
      calc(100% - 15px) 100%,
      15px 100%,
      0 calc(100% - 15px),
      0 15px
    );
  }

  .seeall__button__wrapper {
    clip-path: polygon(
      15px 0,
      calc(100% - 15px) 0,
      100% 15px,
      100% calc(100% - 15px),
      calc(100% - 15px) 100%,
      15px 100%,
      0 calc(100% - 15px),
      0 15px
    );
  }
  .seeall__button__wrapper button {
    clip-path: polygon(
      15px 0,
      calc(100% - 15px) 0,
      100% 15px,
      100% calc(100% - 15px),
      calc(100% - 15px) 100%,
      15px 100%,
      0 calc(100% - 15px),
      0 15px
    );
  }
  /* Latest News Section */
  .latest__news__section {
    width: 100%;
    padding-top: var(--section-top-padding);
    background: var(--color-pistachio);
    padding-left: 0;
  }

  .latest__news__card {
    grid-template-rows: max-content;
    grid-template-columns: 1fr;
    /* grid-template-rows: max-content; */
  }

  .latest__news__date {
    grid-column: 1/-1;
  }
  .latest__news__info__title {
    padding-top: 2rem;
    grid-column: 1/-1;
  }
  .latest__news__info__title .news__catogery__wrapper {
    height: 1.8rem;
  }
  .latest__news__description {
    padding: 2%;
    grid-column: 1/-1;
    grid-row: 2/4;
    padding-bottom: 2rem;
    /* border: 2px solid var(--color-blackish-olive); */
  }
  .latest__news__imagebox {
    grid-column: 1/-1;
  }
  .latest__news__imagebox {
    grid-column: 1/2;
    grid-row: 4/4;
  }
  .latest__news__section .project__title img {
    width: 2rem;
  }
  .latest__news__info__title {
    height: 15rem;
  }
  .seeall__button {
    width: 25%;
  }
  .seeall__button__wrapper {
    width: 100%;
    height: 4vw;
  }
  /* Explore project Section */
  .explore__project__section {
    background: var(--color-blackish-olive);
    padding-top: var(--section-top-padding);
    padding-left: 0;
  }
  .exlpore__project__filter {
    grid-column: 1/-1;
  }
  .filter__card__wrapper {
    height: 2rem;
  }
  .explore__right__project__imagebox {
    padding-top: 5rem;
    grid-column: 1/-1;
  }

  /* About Page */
  .left__big__landscape__image {
    grid-column: 1/-1;
    height: 20rem;
    padding: 0;
  }
  .left__big__landscape__image__right__content {
    padding-left: 0;
    padding-top: var(--section-top-padding);
    height: 35rem;
  }
  .left__big__landscape__image {
    padding: 5%;
  }
  .bavel__frame__container__wrapper {
    background-size: cover;
  }
  .right__content {
    grid-column: 1/-1;
    margin-top: 2rem;
  }
  .left__caption {
    justify-self: start;
    margin-top: 2rem;
    grid-column: 1/-1 !important;
  }
  .right__images {
    margin-top: 2rem;
    grid-column: 1/-1 !important;
  }
  .left__large__landscape__right__caption {
    height: 40rem;
    padding-top: var(--section-top-padding);
  }
  .left__large__landscape__right__caption .left__big__landscape__image {
    height: 30rem;
  }
  .left__large__landscape__right__caption .right__content {
    grid-column: 1/-1;
  }
  .left__image__right__text__box {
    padding-top: var(--section-top-padding);
    padding-left: 0;
  }
  .right__image__row {
    display: grid;
    grid-column: 1/-1 !important;
    align-items: stretch;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--grid-column-gap);
  }

  .team__profile__section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .team__member__card {
    grid-template-columns: repeat(1, 1fr);
  }
  .team__member__description {
    margin-right: 3%;
    margin-top: 3rem;
    border-top: none;
    padding: 3% 0%;
    border-left: none;
  }

  /* Project Page */
  .single__project__card {
    flex-direction: column !important;
  }
  .project__info__box__wrapper {
    width: 100%;
    height: 15rem;
    justify-content: center;
    clip-path: polygon(
      20px 0,
      calc(100% - 20px) 0,
      100% 20px,
      100% calc(100% - -1px),
      calc(100% - 20px) 100%,
      0px 100%,
      0 calc(100% - 20px),
      0 20px
    );
  }
  .project__info__box {
    clip-path: polygon(
      20px 0,
      calc(100% - 20px) 0,
      100% 20px,
      100% calc(100% - -1px),
      calc(100% - 20px) 100%,
      0px 100%,
      0 calc(100% - 20px),
      0 20px
    );
  }
  .single__project__card__reverse .project__info__box__wrapper {
    clip-path: polygon(
      20px 0,
      calc(100% - 20px) 0,
      100% 20px,
      100% calc(100% - -1px),
      calc(100% - 20px) 100%,
      0px 100%,
      0 calc(100% - 20px),
      0 20px
    );
  }

  .single__project__card__reverse .project__info__box {
    clip-path: polygon(
      20px 0,
      calc(100% - 20px) 0,
      100% 20px,
      100% calc(100% - -1px),
      calc(100% - 20px) 100%,
      0px 100%,
      0 calc(100% - 20px),
      0 20px
    ) !important;
  }

  .project__thumbnail {
    width: 100%;
  }
  /* Project Inner Page */
  .project__information {
    grid-template-columns: 1fr;
    height: 35rem;
  }
  .project__information__details {
    border: none;
  }
  .project__information__description {
    border: none;
  }
  .project__information__title {
    padding: 6%;
    width: 100%;
    text-align: center;
  }
  .left__row__image__content .right__image__row {
    grid-column: 1/-1;
    grid-template-columns: repeat(2, 1fr);
  }
  .left__row__image__content {
    padding-left: 0;
  }
  .right__image__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .row__image__container {
    grid-column: 1 / -1 !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--grid-column-gap);
  }
  .two__left__row__image__section {
    padding-right: 0;
  }
  .left__caption_potriat {
    grid-column: 2/6 !important;
  }
  .right__potriat__image {
    grid-column: 6/-1 !important;
  }
  .left__potriat__image {
    grid-column: 1 / 7 !important;
    /* margin-right: 21%; */
  }
  .left__potriat__caption {
    grid-column: 7 / 10 !important;
    /* margin-left: -60%;
    width: 90%; */
  }
  .right__contentbox__potriat {
    /* margin-left: 15%; */
    grid-column: 7 / -1 !important;
    background: var(--color-yellow);
    padding: 5%;
    display: flex;
    align-items: flex-end;
    height: 30rem;
    margin-top: 30rem;
  }
  .center__big__potriat__imagebox {
    grid-column: 2/8 !important;
  }
  .center__big__potriat__image{
    padding-left: 0;
  }
  .right__contentbox__potriat_variant_second {
    margin-left: 0;
    margin-bottom: 5rem;
    background: var(--color-seashell-pink);
  }
  .right__image__row__varient__second {
    grid-column: 1/-1 !important;
  }
  .center__big__potriat__imagebox {
    grid-column: 1/-1;
  }
  .center__big__potriat__caption {
    width: 100%;
    grid-column: 1/6;
    margin-top: 2rem;
  }
  .project-inner_card .about__card__box {
    flex-direction: column;
  }
  .explore__description {
    grid-column: 1/-1;
    grid-row: 3/3;
  }
  .explore__description::after {
    width: 100%;
    left: 0;
    height: 2px;
    top: 40%;
  }
  .explore__hero__box {
    height: 100%;
    width: 100%;
    background: var(--color-olive-green);
    display: grid;
    grid-template-columns: 10% 80% 10%;
    grid-template-rows: 45%;
  }
  .filter__tags__container {
    grid-template-columns: 1fr;
  }
  .filter__tags__section {
    padding-left: 0;
  }
  .filter__tags__right {
    justify-self: start;
    align-items: flex-start;
    margin-top: 2rem;
  }
  .explore__image__gallery {
    padding-left: 0;
  }
  .explore__image__gallery__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .news__section__container {
    padding-top: 4rem;
    padding-right: 0;
  }
  .news__post__filter__section {
    padding-left: 0;
  }
  .news__post__filter__container {
    flex-wrap: wrap;
    row-gap: 1rem;
  }
  /* Footer */
  .footer__box {
    height: 30vh;
  }
  .footer__site__logo {
    grid-column: 3/6;
  }
  .right__potriat__with__caption {
    padding-left: 0;
  }
  .footer__input:checked + .footer__box .footer__site__logo {
    align-self: start;
    grid-column: 4/7;
  }
}

@media (max-width: 500px) {
  /* Home page Responsive */
  .menu__box {
    grid-column: 1/-1;
    padding: 2%;
  }
  .menu__close__btn {
    width: 2rem;
    height: 6rem;
  }
  .menu__button__home {
    width: 2.5rem;
    top: 4.8%;
  }
  .logo__home {
    grid-column: 3/7;
  }
  .hero__project__name {
    grid-column: 1/-1;
  }
  .logo__section {
    padding-top: 1rem;
    grid-column: 2/6;
    width: 50%;
  }
  .hero__project__background {
    padding: 5%;
  }
  .scroll__down__icon {
    grid-column: 1/-1;
  }
  .latest__post {
    margin-top: 1rem;
    grid-column: 1/-1;
  }
  .nav__menu {
    margin-top: 0;
    grid-column: 2/5;
  }

  /* Project Carousel Section */
  .project__carousel__card {
    width: 100%;
  }

  /* About Card Left Image Right Content */
  .about__card__left__image__right__content__section {
    padding-top: var(--section-top-padding);
  }
  .about__card__box {
    width: 95%;
    height: 100%;
    flex-direction: column;
    margin: 0 auto;
  }
  .left__background__imagebox {
    width: 100%;
    height: 50%;
  }
  .right__content__section {
    width: 100%;
    height: 50%;
  }
  .right__content__top {
    padding: 8%;
  }
  .right_content__botton__text {
    width: 100%;
    padding: 5%;
  }
  .readmore__button__wrapper {
    width: 50%;
    height: 2rem;
  }
  /* Latest News Section */
  .latest__news__section .project__title img {
    width: 1.5rem;
  }
  .latest__news__info__title {
    height: 15rem;
  }
  .news__catogery__wrapper {
    width: 30%;
    height: 5rem;
  }
  .seeall__button {
    width: 50%;
  }
  .seeall__button__wrapper {
    width: 100%;
    height: 2rem;
  }

  /* About */
  .right__images {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  .left__large__landscape__right__caption .left__big__landscape__image {
    height: 15rem;
  }
  .left__large__landscape__right__caption .right__content {
    grid-column: 1/-1;
    margin-top: 0;
  }
  .right__image__row {
    display: grid;
    grid-column: 1/-1;
    justify-content: stretch;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 2rem;
    column-gap: var(--grid-column-gap);
  }
  .team__member__description p {
    width: 100%;
  }
  .left__imagebox {
    grid-column: 1 / -1 !important;
  }
  .right__contentbox {
    grid-column: 1 / -1 !important;
  }
  .team__profile__section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* Project Page */
  .single__project__card {
    flex-direction: column;
  }
  .project__info__box {
    width: 100%;
    height: 15rem;
  }
  .project__thumbnail {
    height: 20rem;
  }
  .project .about__card__left__image__right__content__section {
    background: var(--color-claret);
    padding-bottom: 3rem;
  }

  /* Project Inner Page */
  .project__information__box {
    padding-left: 0;
    padding-right: 0;
  }
  .row__image__container {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .two__left__row__image__section {
    padding-left: 0;
    padding-right: 0;
  }
  .row__image__container {
    grid-column: 1/-1 !important;
  }
  .big__landscape__image {
    grid-column: 1 / -1 !important;
  }
  .big__landscape__right__image {
    padding-left: 0;
  }
  .left__row__image__content {
    background-color: var(--color-blackish-olive);
    padding-top: var(--section-top-padding);
    padding-left: 0;
  }
  .left__row__image__content .right__image__row {
    grid-column: 1/-1;
    grid-template-columns: 1fr;
  }
  .left__caption_potriat {
    grid-column: 1/-1 !important;
  }
  .right__potriat__image {
    margin-top: 2rem;
    grid-column: 1 / -1 !important;
    /* grid-column: 1/-1; */
  }
  .left__potriat__caption__right__contentbox {
    padding-left: 0;
  }
  .left__potriat__image {
    grid-column: 1 / -1 !important;
    margin-right: 0%;
    margin-top: 4rem;
  }
  .left__potriat__caption {
    grid-column: 1/-1 !important;
    margin-left: 0;
    margin-top: 2rem;
  }
  .right__contentbox__potriat {
    margin-left: 0 ;
    margin-top: 8rem !important;
    grid-column: 1/-1 !important;
  }
  .center__big__potriat__imagebox {
    grid-column: 1/-1 !important;
  }
  .right__contentbox__potriat_variant_second {
    margin-left: 0;
    grid-column: 1/-1;
    margin-bottom: 5rem;
    margin-right: 0;
  }
  .explore__image__gallery__container {
    grid-template-columns: 1fr;
  }
  .right__content__description__second__variant {
    width: 100%;
  }
  /* Footer */

  .footer__box {
    padding: 8%;
  }
  .footer__site__logo {
    grid-column: 1 / 2;
    align-self: start;
  }
  .footer__social__links {
    grid-column: 4/-1;
  }
  .footer__input:checked + .footer__box .footer__site__logo {
    grid-column: 1/4;
  }
  .footer__input:checked + .footer__box .footer__social__links {
    grid-column: 5/8;
  }
  .footer__input:checked + .footer__box .footer__contact__details__second {
    grid-column: 1/7;
    grid-row: 4/5;
  }
  .footer__input:checked + .footer__box .footer__site__logo {
    grid-column: 1/4;
  }
  .footer__input:checked + .footer__box {
    overflow: hidden;
    height: 100vh;
  }
}

@media (max-width: 375px) {
  /* Home page Responsive */
  .latest__post {
    display: none;
  }
  .nav__menu {
    margin-top: 0;
    grid-column: 3 / 4;
  }
}

/* Animations */

@keyframes bumpRight {
  0% {
    transform: translateX(0);
  } /* Starting position */
  25% {
    transform: translateX(20px);
  } /* Move to the right */
  50% {
    transform: translateX(0);
  } /* Return to original */
  75% {
    transform: translateX(-20px);
  } /* Move slightly left */
  100% {
    transform: translateX(0);
  } /* Final position */
}
