@font-face {
  font-family: 'MyFont';
  src: url('../assets/fonts/OverusedGrotesk-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal; /* Explicitly set to normal */
}

@font-face {
  font-family: 'MyFont';
  src: url('../assets/fonts/OverusedGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal; /* Explicitly set to normal */
}

@font-face {
  font-family: 'MyFont';
  src: url('../assets/fonts/OverusedGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal; /* Explicitly set to normal */
}

@font-face {
  font-family: 'MyFont';
  src: url('../assets/fonts/OverusedGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal; /* Explicitly set to normal */
}

@font-face {
  font-family: 'MyFont';
  src: url('../assets/fonts/OverusedGrotesk-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic; /* Explicitly set to normal */
}

@font-face {
  font-family: 'MyFont';
  src: url('../assets/fonts/OverusedGrotesk-Black.woff2') format('woff2');
  font-weight: 800;
  font-style: normal; /* Explicitly set to normal */
}

@font-face {
  font-family: 'MyFont';
  src: url('../assets/fonts/OverusedGrotesk-BlackItalic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic; /* Explicitly set to normal */
}

:root {
  --yellow: #ffd62c;
  --blue: #313c69;
  --red: #ff4b33;
  --white: #ffffff;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'MyFont';
}

.navbar-custom {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;

}

.client-landing {
    height: 100vh;
    background: url("../assets/teamcover.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navbar {
    --navbarheight: 75px;
    width: 100%;
    height: var(--navbarheight);
    background-color: transparent;
    top: 0;
    z-index: 999;
  }
  
  .navbar.sticky {
    position: -webkit-sticky;
    position: sticky;
    margin-bottom: calc(0px - var(--navbarheight));
  }
  
  .navbar.fixed {
    position: fixed;
  }

  /* buttons */

  .argobtn {
    border: 1px solid var(--yellow); 
    border-radius: 120px; 
    padding: 8px 35px;
    color: var(--white);
  }

  .argobtn:hover {
    background-color: var(--red);
    color: var(--white);
    border: 1px solid var(--yellow);
  }

  .argobtnfill:hover {
    background-color: var(--red);
    color: var(--white);
    border: 1px solid var(--yellow);
  }

  .argobtnfill {
    background-color: var(--red);
    color: var(--white);
    border: 1px solid var(--yellow);
    border-radius: 120px; 
    padding: 8px 35px;
  }

  .viewprojectbtn, .viewprojectbtn:hover {
    background-color: var(--blue);
    color: var(--white) !important;
    border-radius: 120px; 
    padding: 6px 20px;
    position: relative;
    margin-top: 4%;
    opacity: 0;
  }

  .argobtnwhiteoutline, .argobtnwhiteoutline:hover {
    border: 1px solid var(--white); 
    border-radius: 120px; 
    padding: 8px 30px; 
    color: var(--white);
  }

  /* buttons end */

  .client-display {
    background-color: var(--blue);
    min-height: 410px;
  }

.slide-container{
  width: 100%;
  padding: 40px 0;
  margin: 3% 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.clientcard {
  max-width: 255px;
  background-color: var(--white);
  border: 1px solid lightgray;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 10%, 90% 0);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 10%, 90% 0);
}

.clientcard a {
  color: inherit;
  text-decoration: none;
}

/**
* THUMB
**/

.clientcard__thumb {
  height: 175px;
  overflow: hidden;
  background-color: var(--blue);
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.clientcard__thumb img {
  width: 100%;
  display: block;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.clientcard:hover .clientcard__thumb {
  height: 40px;
}

.clientcard:hover .clientcard__thumb img {
  opacity: 0.5;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}


/**
* clientcard_BODY
**/

.clientcard__body {
  position: relative;
  height: 120px;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.clientcard:hover .clientcard__body {
  height: 100%;
}

.clientcard__title {
  margin: 0;
  padding: 0 0 10px 0;
  color: var(--blue);
  font-size: 20px;
  font-weight: bold;
}

.clientcard__description {
  position: relative;
  margin: 0;
  padding: 0;
  color: #000000;
  opacity: 0;
  -webkit-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.clientcard:hover .clientcard__description, .clientcard:hover .viewprojectbtn {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.swiper-navBtn{
  color: var(--blue);
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: var(--blue);
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

.btnlink {
  color: var(--white);
}
.imglink {
  filter: invert(1);
}
.nav-link {
  color: var(--white);
}
.navbar.scrolled {
  background-color: #fff !important;
  transition: background-color 200ms linear;
}
.nav-link.scrolled {
  color: black!important;
}
.btnlink.scrolled {
  color: black!important;
}
.btnlink.scrolled:hover {
  color: var(--white)!important;
}
.imglink.scrolled {
  filter: invert(0)!important;
}


/* project section */
.home-project {
  background-color: var(--white);
  min-height: calc(var(--vh) * 100);
  position: relative;
  padding-bottom: 65px;
  padding-top: 65px;
  z-index: 2;
}
@media (max-width: 699px) {
  .home-project {
    max-width: 100vw;
    overflow: hidden;
    padding-bottom: 1.25rem;
  }
}

.title-component {
  flex-direction: column;
}
.title-component__logo {
  width: 6.25rem;
}
@media (min-width: 700px) {
  .title-component__logo {
    width: 9.375rem;
  }
}
.title-component__title {
  font: 400 6.25rem/0.9 DrukHeavy;
  letter-spacing: -0.02em;
  padding: 0.9375rem 0 1.25rem;
  text-transform: uppercase;
}
.title-component__title.--center {
  text-align: center;
}
.title-component__title.--center .words {
  justify-content: center;
}
@media (min-width: 700px) {
  .title-component__title {
    font: 400 7.625rem/0.9 DrukHeavy;
    padding-top: 2.8125rem;
  }
}
@media (min-width: 1024px) {
  .title-component__title {
    font: 400 18.8125rem/0.8 DrukHeavy;
  }
}
.title-component__title.--small {
  font: 400 8rem/0.8 DrukHeavy;
}
@media (min-width: 1024px) {
  .title-component__title.--small {
    font: 400 11.0625rem/0.8 DrukHeavy;
  }
}
.title-component__title .line {
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.title-component__title .words {
  display: flex;
  flex-direction: row;
}
.title-component__title .word {
  display: flex;
  margin-right: 1.25rem;
}
.title-component__title .word:last-child {
  margin-right: 0;
}
@media (min-width: 700px) {
  .title-component__title .word {
    margin-right: 3.4375rem;
  }
}
.title-component__title .word .char {
  margin: 0 -6px;
  overflow: hidden;
}
.title-component__title .word .char .letter {
  display: block;
  padding: 0 0.375rem;
}
@media (min-width: 700px) {
  .title-component__title .word .char .letter {
    padding: 0 0.5rem;
  }
}
.title-component__subline {
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.title-component__signature {
  margin: 1.25rem 0;
}
@media (min-width: 700px) {
  .title-component__signature {
    margin: 3.0625rem 0;
  }
}
.title-component .--highlight {
  display: inline-flex;
  margin-left: 0.625rem;
  position: relative;
  transform: rotate(-5deg);
}
@media (min-width: 700px) {
  .title-component .--highlight {
    margin-left: 0.9375rem;
  }
}
.title-component .--highlight:before {
  background: #cdfb52;
  content: "";
  height: calc(100% + 0.625rem);
  left: -0.625rem;
  position: absolute;
  top: -0.3125rem;
  transform: skewX(-2deg);
  width: calc(100% + 1.25rem);
}
@media (min-width: 700px) {
  .title-component .--highlight:before {
    left: -1.5625rem;
    width: calc(100% + 3.125rem);
  }
}
.title-component .--highlight span {
  position: relative;
}
.project-mobile {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 3.125rem;
  padding: var(--page-outer-margin);
}
.project-mobile__heading {
  margin-bottom: 2.1875rem;
  position: relative;
  width: 100%;
}
.project-mobile__heading .title-component {
  color: #fffff7;
  margin-bottom: 0.625rem;
  margin-top: 0.625rem;
  position: relative;
}
.project-mobile__heading .heading-indicator {
  background: #1c1616;
  border-radius: 50%;
  bottom: -0.625rem;
  color: #fffff7;
  height: 6.875rem;
  line-height: 0.9;
  padding: 15px;
  position: absolute;
  right: 0;
  text-align: center;
  transform: rotate(15deg);
  width: 6.875rem;
  z-index: 2;
}
.project-mobile__heading .heading-sticker {
  bottom: 0.625rem;
  height: 6.25rem;
  position: absolute;
  right: 4.375rem;
  transform: rotate(25deg);
  width: auto;
  z-index: 1;
}
.project-mobile__container {
  flex-direction: column;
  justify-content: center;
}
.project-mobile__container__chapter {
  padding: 1.5625rem 0;
}
.project-mobile__container__chapter:after {
  background-image: linear-gradient(180deg, #333 40%, hsla(0, 0%, 100%, 0) 0);
  background-position: 0;
  background-repeat: repeat-y;
  background-size: 1px 3px;
  content: "";
  height: 2px;
  width: 100%;
}
.project-mobile__container__chapter figure {
  margin-bottom: 1.25rem;
  position: relative;
}
.project-mobile__container__chapter figure .thumbnail {
  border-radius: 15px;
  height: auto;
  width: 100%;
}
.project-mobile__container__chapter figure .tag {
  bottom: -10px;
  position: absolute;
  right: 10%;
}
.project-mobile__container__chapter .content {
  color: #fffff7;
}
.project-mobile__container__chapter .content h4 {
  font: 500 2.25rem/1.2 NeueHaasGrotDisp-76BoldItalic;
  letter-spacing: -0.02em;
}
.project__grid {
  margin: 0 auto;
  max-width: 1000px;
  padding: 9.375rem 0;
  width: 75%;
}
@media (max-width: 699px) {
  .project__grid {
    padding: 3.125rem var(--page-outer-margin);
  }
}
.project__grid .grid-row {
  position: relative;
  width: 100%;
}
.project__grid .grid-row .grid-row-wrap {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.project__grid .grid-row:first-of-type .grid-row-wrap {
  align-items: flex-start;
}
.project__grid .grid-row:last-of-type .grid-row-wrap {
  align-items: baseline;
}
.project__grid .grid-item:first-child {
  padding-right: 0.625rem;
}
.project__grid .static-img img {
  transform: scale(1.2);
}
.project__grid .grid-content {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.project__grid .grid-content__static {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  pointer-events: none;
}
.project__grid .grid-content.hover .grid-content__active,
.project__grid .grid-content.hover .grid-content__active > div,
.project__grid .grid-content:hover .grid-content__active,
.project__grid .grid-content:hover .grid-content__active > div {
  transform: none;
  transition-duration: 0.75s;
}
.project__grid .grid-content__border {
  z-index: 50;
}
.project__grid .grid-content .image__wrapper,
.project__grid .grid-content img {
  align-self: center;
  grid-column: 1;
  grid-row: 1;
  height: auto;
  width: 100%;
}
.project__grid .grid-content__active {
  transform: translate3d(0, 102%, 0);
  z-index: 5;
}
.project__grid .grid-content__active,
.project__grid .grid-content__active > div {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}
.project__grid .grid-content__active > div {
  align-items: center;
  background: #f19ccc;
  display: flex;
  justify-content: center;
  transform: translate3d(0, -50%, 0);
}
.project__grid .grid-content__active__text {
  bottom: 4.375rem;
  color: #fffff7;
  left: 3.125rem;
  position: absolute;
  width: 22.1875rem;
  z-index: 2;
}
.project__grid .grid-content__active__text h4 {
  font-family: NeueHaasGrotDisp-76BoldItalic;
  font-size: 2.625rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.625rem;
}
.project__grid .grid-content__active__text p {
  font: italic 500 0.875rem/120% NeueHaasGrotDisp-76BoldItalic;
  width: 85%;
}
.project__grid .grid-step {
  background: #000;
  border-radius: 50%;
  color: #fffff7;
  height: 8.5rem;
  left: 25%;
  position: absolute;
  top: -9%;
  transform: rotate(13.87deg);
  width: 8.5rem;
}
.project__grid .grid-step span {
  font: 500 1.125rem/84% NeueHaasGrotDisp-76BoldItalic;
  max-width: 80%;
  text-align: center;
}
.project__grid .grid-row-1 {
  padding-top: 50%;
}
.project__grid .grid-row-1 .grid-index {
  padding-right: 0;
  width: 75%;
}
.project__grid .grid-row-1 .grid-index .grid-content {
  -webkit-clip-path: url(#clip1);
  clip-path: url(#clip1);
  display: block;
}
.project__grid .grid-row-1 .grid-1 {
  margin-left: -3%;
  width: 182%;
}
.project__grid .grid-row-1 .grid-1 .grid-content {
  -webkit-clip-path: url(#clip2);
  clip-path: url(#clip2);
  display: block;
}
.project__grid .grid-row-1 .grid-1 .grid-content__active__text {
  bottom: 50%;
  transform: translateY(50%);
}
.project__grid .grid-row-2 {
  margin-top: -6.25rem;
  padding-top: 64%;
}
.project__grid .grid-row-2 .grid-1 {
  width: 40%;
}
.project__grid .grid-row-2 .grid-1 .grid-content {
  -webkit-clip-path: url(#clip3);
  clip-path: url(#clip3);
  display: block;
}
.project__grid .grid-row-2 .grid-1 .grid-content__active__text {
  left: 1.6875rem;
}
.project__grid .grid-row-2 .grid-2 {
  width: 60%;
}
.project__grid .grid-row-2 .grid-2 .grid-content {
  -webkit-clip-path: url(#clip4);
  clip-path: url(#clip4);
  display: block;
}
.project__grid .grid-row-2 .grid-2 .grid-content__active__text {
  bottom: 3.125rem;
}
.project__grid .grid-row-3 {
  margin-top: -2.5rem;
  padding-top: 52%;
}
.project__grid .grid-row-3 .grid-row-wrap {
  align-items: baseline;
}
.project__grid .grid-row-3 .grid-content__active__text {
  bottom: 2.5rem;
}
.project__grid .grid-row-3 .grid-1 {
  width: 55%;
}
.project__grid .grid-row-3 .grid-1 .grid-content {
  -webkit-clip-path: url(#clip5);
  clip-path: url(#clip5);
  display: block;
}
.project__grid .grid-row-3 .grid-2 {
  width: 45%;
}
.project__grid .grid-row-3 .grid-2 .grid-content {
  -webkit-clip-path: url(#clip6);
  clip-path: url(#clip6);
  display: block;
}
/* project section end*/


/*video preview*/
.video-preview {
  cursor: pointer;
  height: 8rem;
  pointer-events: auto;
  position: fixed;
  width: 15.125rem;
  bottom: 20px;
  right: 20px;
  z-index: 199;
}

.video-preview.at-bottom {
  transform: translateY(-20px);
}

.video-preview:hover .preview__play {
  transform: translateY(-50%);
}

.video-preview:hover .preview__backdrop {
  transform: none;
}

.video-preview .preview__label {
  display: none;
}

.video-preview:hover .preview__label {
  display: block;
  color: var(--white);
  left: 50%;
  margin-top: 2px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  font-size: 50px;
  font-weight: bold;
}

.video-preview .preview__background {
  background: var(--blue);
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  z-index: 1
}

.video-preview .preview__backdrop,.video-preview .preview__background {
  clip-path: inset(3% 3% 3% 3% round 10px);
  height: 100%;
  width: 100%
}

.video-preview .preview__backdrop {
  left: 0;
  position: absolute;
  top: 0;
  transform: translate(-100%);
  transition: transform .6s cubic-bezier(.34,1.56,.64,1);
  z-index: 2
}

.video-preview .preview__video {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%
}

.video-preview .preview__play {
  color: var(--red);
  display: flex;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(calc(-50% + 5px),-50%);
  transition: transform .6s cubic-bezier(.34,1.56,.64,1);
  width: 100%;
  z-index: 3
}

.video-preview:hover .preview__play {
  display: none;
}

.video-preview .preview__play svg path {
  fill: var(--white)
}

/*video preview end*/

/* footer */
footer{
  background-color: #313C69;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mobilefooter{
  display: none;
}
.footer_logo{
  height: 80px;
}
.footer_row{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 50px;
  margin-top: 25px;
  margin-bottom: 30px;
}
.mobilefooterlogo{
  display: none;
}
@media screen and (max-width:700px) {
  .footer_row{
    flex-direction:column ;
    gap: 5px;
    width: 100%;
    align-items: end;
    z-index: 1;
    margin-bottom: 50px;
  }
  footer{
    padding: 50px 25px;
  }
  .mobilefooter{
    display: block;
    height: 86%;
    width: 75%;
    position: absolute;
    bottom: 0;
    left: -5%;
    z-index: 0;
    object-fit: cover;
    object-position: top;
  }
  .footer_notice{
    z-index: 1;
  }
  .footer_logo{
    display: none;
  }
  .mobilefooterlogo{
    display: block;
    height: 30px;
    margin-bottom:30px;
  }
}
.footer_row_item{
  font-size: 18px;
  color: white;
  /*font-style: italic;*/
  font-weight: 700;
}
.footer_notice{
  font-size: 14px;
  color: white;
}
.footer_socials{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 15px;
}
.footer_socials_item{
  height: 40px;
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}
.footer_socials_item:hover{
  opacity: 1;
}
/* footer end */

/* contact css */

.contact-us {
  display: flex;
  justify-content: center;
  min-height: 500px;
}

.contactcard {
  margin: 5% 0;
  max-width: 80%;
  border-radius: 25px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0!important;
  left: 0;
  right: 0;
  top: 500px;
}

@media screen and (max-width:600px) {
  .contactcard{
    max-width: 94%;
  }
}
/* contact css end */


/* team css */

.meet-our-team {
  background-color: var(--white);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* team css end */


/* home css */

.homephoto{
  width: 100%;
  display: none;
}
.homephoto_computer{
  width: 100%!important;
}
@media screen and (max-width:900px) {
  .homephoto_computer{
    height: 100vh;
    object-fit: cover;
  }
  .homephoto{
    display: none;
    min-height: 100vh;
    object-fit: cover;
  }
}
/* homr css end */

@media screen and (max-width:540px) {
  .video-preview {
    cursor: pointer;
    height: 8rem;
    pointer-events: auto;
    position: fixed;
    width: 15.125rem;
    bottom: 20px;
    right: 0px;
    scale: 0.6;
    left: -12px;
    z-index: 199;
    bottom: -8px;
    display: none;
}
}

body {
  font-family: Monospace;
  font-size: 14pt;
}
blockquote {
  font-family: Arial;
  background-color: #F8EFBE;
  border-left-color: #F4B514;
}

#contactme {
  background-color: black;
  color: white;
  height: 180px;
}


#navbar {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
}

.top-nav {
  background-color: #671100;
}

.top-nav a {
  color: #d3e316;
}

h1.headingStatement {
  font-family: Monospace;
  font-size: 2em;
}


/* bootstrap override */

a.btn-primary:hover {
  text-decoration: none;
}

.navbar-nav li a:hover {
    background-color: #FF0000;
    border-radius: 10px;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #cccccc;
  border-radius: 1px;
}

/* navbar css */
.navbar_computer{
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: transparent; */
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  padding: 2.5rem;
  color: white;
  z-index: 250;
}
.navbar_computer_logo{
  height: 2rem;
}
.navbar_computer_flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body {
  color: blue;
}
a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}
.navbar_computer_links{
  font-weight: 700;
  /*font-style: italic;*/
  display: flex;
  gap: 1rem;
  font-size: 18px;
  letter-spacing: 0.1px;
  align-items: center;
}
.navbar_computer_icons{
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.navbar_computer_link_active, .navbar_computer_link:hover{
  padding: 0.25rem 0.8rem;  
  background-color: #FFD62C;
  color: black;
  border-radius: 2rem;
}
.navbar_computer_link:hover{
  background-color: rgba(255, 213, 44, 0.75)!important;
}
.navbar_mobile{
  display: none;
  z-index: 250;
}
@media screen and (max-width:800px) {
  .navbar_computer{
    display: none;
  }  
  .navbar_mobile{
    display: block;
  }
}
.navbar_mobile{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));

}
.navbar_mobile_flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar_mobile_logo{
  height: 25px;
}
.menu_button{
  padding: 0.25rem;
  background-color: #FFD62C;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
#checkbox {
  display: none;
}

.toggle {
  scale: 0.4;
  position: relative;
  width: 40px;
  cursor: pointer;
  margin: auto;
  display: block;
  height: calc(4px * 3 + 11px * 2);
}

.bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: calc(4px / 2);
  background: #313C69;
  color: inherit;
  opacity: 1;
  transition: none 0.35s cubic-bezier(.5,-0.35,.35,1.5) 0s;
}

/***** Spin Animation *****/

.bar--top {
  bottom: calc(50% + 11px + 4px/ 2);
  transition-property: bottom,transform;
  transition-delay: calc(0s + 0.35s),0s;
}

.bar--middle {
  top: calc(50% - 4px/ 2);
  transition-property: opacity;
  transition-delay: calc(0s + 0.35s);
}

.bar--bottom {
  top: calc(50% + 11px + 4px/ 2);
  transition-property: top,transform;
  transition-delay: calc(0s + 0.35s),0s;
}

#checkbox:checked + .toggle .bar--top {
  bottom: calc(50% - 4px/ 2);
  transform: rotate(135deg);
  transition-delay: 0s,calc(0s + 0.35s);
}

#checkbox:checked + .toggle .bar--middle {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: calc(0s + 0.35s);
}

#checkbox:checked + .toggle .bar--bottom {
  top: calc(50% - 4px/ 2);
  transform: rotate(225deg);
  transition-delay: 0s,calc(0s + 0.35s);
}

.navbar_mobile_splashscreen{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 200;
  background-color: #313C69;
  padding: 25px;
}

.navbar_mobile_splashscreen {
  display: none;
  transition: 0.3s;
}

#checkbox:checked ~ .navbar_mobile_splashscreen {
  display: block;
}

.navbar_mobile_links{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 100px;
}

.navbar_mobile_link{
  font-weight: 700;
  /*font-style: italic;*/
  color: white;
  font-size: 36px;
}

.navbar_mobile_icons{
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.trailer_button{
  background-color: transparent;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trailer_button_underline:before{
  background-color: #FFD62C;
    content: "";
    display: block;
    height: 90%;
    left: 42%;
    position: absolute;
    top: 2px;
    transform: skew(-5deg) translateX(-55%);
    width: 154%;
    z-index: 2;
}

.trailer_button_underline{
  position: relative;
}
.trailer_button_underline span{
  z-index: 10;
  position: relative;
}
.navbar_mobile_play{
  z-index: 10;
}
/* navbar css end  */

/* homepage css */
.homepage{
  position: relative;
}

/* 
@media screen and (min-width:800px) {
  .homelogo{
    width: 50vw;
  }
  .hometext{
    top: 12%;
  }
} */

.flicker-in-1{-webkit-animation:flicker-in-1 2s linear both;animation:flicker-in-1 2s linear both}
@-webkit-keyframes flicker-in-1{0%{opacity:0}10%{opacity:0}10.1%{opacity:1}10.2%{opacity:0}20%{opacity:0}20.1%{opacity:1}20.6%{opacity:0}30%{opacity:0}30.1%{opacity:1}30.5%{opacity:1}30.6%{opacity:0}45%{opacity:0}45.1%{opacity:1}50%{opacity:1}55%{opacity:1}55.1%{opacity:0}57%{opacity:0}57.1%{opacity:1}60%{opacity:1}60.1%{opacity:0}65%{opacity:0}65.1%{opacity:1}75%{opacity:1}75.1%{opacity:0}77%{opacity:0}77.1%{opacity:1}85%{opacity:1}85.1%{opacity:0}86%{opacity:0}86.1%{opacity:1}100%{opacity:1}}@keyframes flicker-in-1{0%{opacity:0}10%{opacity:0}10.1%{opacity:1}10.2%{opacity:0}20%{opacity:0}20.1%{opacity:1}20.6%{opacity:0}30%{opacity:0}30.1%{opacity:1}30.5%{opacity:1}30.6%{opacity:0}45%{opacity:0}45.1%{opacity:1}50%{opacity:1}55%{opacity:1}55.1%{opacity:0}57%{opacity:0}57.1%{opacity:1}60%{opacity:1}60.1%{opacity:0}65%{opacity:0}65.1%{opacity:1}75%{opacity:1}75.1%{opacity:0}77%{opacity:0}77.1%{opacity:1}85%{opacity:1}85.1%{opacity:0}86%{opacity:0}86.1%{opacity:1}100%{opacity:1}}
/* homepage css end */

#load{
  width:100%;
  height:100%;
  position:fixed;
  z-index:9998;
  background-color: var(--blue);
  overflow: -moz-scrollbars-vertical;
  overflow-x: hidden;
  overflow-y: hidden;
}

#loadimg {
  position: absolute;
  background-repeat: no-repeat;
  background-color: var(--blue);
  background-size: contain;
  width: 35%;
  background-position: center;
  height: auto;
  left: 32%;
  top: 34%;
}

#loadimg2 {
  position: absolute;
  background-repeat: no-repeat;
  background-color: var(--blue);
  background-size: contain;
  background-position: center;
  height: auto;
  top: 19%;
  left: 50%;
  transform: translateX(-50%);
  width: 59%;
}

.article-wrapper {
  width: 250px;
  -webkit-transition: 0.15s all ease-in-out;
  transition: 0.15s all ease-in-out;
  border-radius: 10px;
  padding: 5px;
  border: 4px solid transparent;
  cursor: pointer;
  background-color: white;
}

.article-wrapper:hover {
  -webkit-box-shadow: 10px 10px 0 var(--yellow), 20px 20px 0 var(--red);
  box-shadow: 10px 10px 0 var(--yellow), 20px 20px 0 var(--red);
  border-color: var(--white);
  -webkit-transform: translate(-20px, -20px);
  -ms-transform: translate(-20px, -20px);
  transform: translate(-20px, -20px);
}

.article-wrapper:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.types {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: flex-start;
}

.rounded-lg {
 /* class tailwind */
  border-radius: 5px;
}

.article-wrapper:hover .project-hover {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: var(--yellow);
}

.project-info {
  padding-top: 20px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.project-title {
  font-size: 1.3em;
  margin: 0;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: black;
}

.flex-pr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.project-type {
  background: #d6d6ff;
  color: var(--blue);
  font-weight: bold;
  padding: 0.3em 0.7em;
  border-radius: 15px;
  font-size: 12px;
  letter-spacing: -0.6px
}

.project-hover {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 9px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.container-project {
  width: 100%;
  height: 170px;
}

.card-wrapper {
  margin: 20px;
}



::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: #313C69;
}

/*@media screen and (min-width:1000px){*/
/*    body{*/
          transform: scale(1.); /* Adjust the number to control the zoom level */
/*    }*/
/*}*/