@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200;300;400;500;600;700;800&amp;display=swap');

:root {
  --purple-heart: #05503e;
  --prussian-blue: #00254F;
  --cyan: #ce293c;
  --Gray: #040404;
  --Gray2: #8E8E8E;
  --Mine-Shaft: #212121;
}

* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
}

body.index {
  font-family: 'Poppins', sans-serif;
  background: url(../imgs/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom right;
}


.logo > a, .logo {
    transition: 0.3s all ease-in-out;
}

/* .logo > a:hover {
  transform: scale(1.02);
} */

body.fade-page {
  animation: fadePage 0.6s ease;
}

@keyframes fadePage {
  0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.overlay {
  background: #0319336f;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  /* transition: background 2s ease; */

}

.side-bar {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--purple-heart);
  width: 95px;
  height: 100vh;
  display: grid;
  grid-template-rows: 2fr 2fr;
  justify-content: space-between;
  align-items: center;
  z-index: 22;
}

.side-bar ul {
  list-style: none;
  transform: rotate(90deg);
  display: flex;
  padding: 0;
  margin: 0;
  color: #fff;
}

.side-bar ul li a {
  color: #fff;
  text-decoration: none;
}

.side-bar ul li:nth-child(2) {
  margin: 0 1rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: default;
}

.side-bar .lang-selector ul li.active {
  color: rgba(255, 255, 255, 0.7);
  cursor: default;
}

.side-bar .page-no ul li.total {
  color: rgba(255, 255, 255, 0.7);
}

.side-bar .page-no ul li {
  cursor: default;
}
/* end page-no */

.side-bar .pager {
  /* background: rgb(164, 158, 158); */
  width: 95px;
  height: 190px;
}
.side-bar .pager div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  overflow: hidden;
}

.side-bar .pager div:first-child {
  border-bottom: solid 1px #fff;
}

.side-bar .pager div a {
  padding: 50%;
  align-items: center;
  justify-content: center;
}

.side-bar .pager .not-active {
  background: rgba(0, 0, 0, 0.3);
}

.side-bar .pager .not-active a {
  cursor: default;
}

.side-bar .pager .active {
  background: var(--purple-heart);
}

/* .side-bar .pager .up img {
  transform: rotate(180deg);
} */

.side-bar .pager a {
  text-decoration: none;
  color: #fff;
}

.side-bar .pager a svg {
  font-size: 1.6rem;
}

/* ? header and navbar */

header {
  padding: 2.5rem 2.5rem 2rem 7.5rem;
  /* padding: 3.5rem 0.5rem; */
}

header.dark {
  border-bottom: solid 1px #00254f5d;
  padding: 2.5rem 2.5rem 2rem 7.5rem;
}

header .logo {
  padding-left: 2rem;
  z-index: 100;
}

header .navbar {
  justify-content: flex-end;
  padding-left: 3rem;
}

header .navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  /* background: #000; */
  width: 100%;
}

/* header .navbar ul li {
  margin-right: 1rem;
} */

header .navbar ul li a {
  text-decoration: none;
  /* color: #fff; */
    color: black;
  opacity: 0.8;
}

header.dark .navbar ul li a {
  text-decoration: none;
  color: var(--prussian-blue);
  opacity: 0.6;
}

header .ticket {
  justify-content: flex-end;
  text-align: right;
}

header .ticket a {
  color: #fff;
  text-decoration: none;
  background: var(--purple-heart);
  padding: 0.4rem 1.75rem;
  font-size: 0.9rem;
}

/* when nav page active */
header .navbar ul li {
  position: relative;
}

header .navbar ul li.active a {
  text-decoration: none;
  /* color: #fff; */
  color: var(--cyan);
  opacity: 1;
}

header.dark .navbar ul li.active a {
  text-decoration: none;
  color: var(--prussian-blue);
  opacity: 1;
}

header .navbar ul li:hover a {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}

header .navbar ul li.active::after {
  content: '';
  position: absolute;
  top: 1.8rem;
  left: 0;
  background: var(--cyan);
  width: 100%;
  height: 0.2rem;
  animation: nav-underline 0.4s ease-in-out 0.2s;
}

@keyframes nav-underline {
  from {
    left: -2rem;
  }
}

header .ticket a:hover {
  background: #6f39dd;
  transition: all 0.2s ease-in-out;
}

main .showcase {
  /* padding: 4rem 7rem; */
  padding: 3.5rem 4rem 1.5rem;
  width: 45rem;
  /* color: #fff; */
}

.showcase .overline {
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 1rem;
}

.showcase h1 {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-size: 2.6rem;
}

.showcase h1 span {
  color: var(--cyan);
}

.showcase .underline {
  font-size: 0.9rem;
  opacity: 1;
  line-height: 1.8;
  width: 80%;
}

.project-btns {
  margin-top: 3.5rem;
  display: flex;
}

.project-btns a {
  color: #fff;
  text-decoration: none;
}

.project-btns a:hover {
  color: var(--cyan);
  transition: all 0.2s ease-in-out;

}

.project-btns div:first-child {
  border-bottom: solid 3px var(--cyan);
  padding-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.1rem;
}

.project-btns div:last-child {
  margin-left: 2.5rem;
  opacity: 0.65;
}

.watch-video {
  margin-top: 3.5rem;

}
.watch-video a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.watch-video a
.text:hover {
  color: var(--cyan);
  transition: all 0.2s ease-in-out;

}
.watch-video .icon {
  margin-right: 1.5rem;
  background: var(--cyan);
  padding: 1rem;
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.watch-video .icon svg {
  font-size: 0.6rem;
}

footer {
  position: absolute;
  bottom: 0;
  /* padding: 2rem 10rem 0rem 10rem; */
  padding: 2rem 4rem 0rem 10rem;
  /* max-width: 1320px; */
  /* background: rgba(0, 0, 0, 0.572); */
  /* width: 80vw; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  /* z-index: 21; */
  z-index: 1;
}

.dtc {
  color: #fff;
}

.dtc .social-media {
  margin-top: 1rem;
}
.dtc .social-media ul {
  list-style: none;
  display: flex;
  position: relative;
}

.dtc .social-media ul li {
  margin-right: 3rem;
}

.dtc .social-media ul li:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: 0.65rem;
  margin-left: 0.5rem;
  /* left: 0; */
  width: 1.8rem;
  height: 0.15rem;
  background: #fff;
  opacity: 0.4;
}

.dtc .social-media ul li a {
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
}

.dtc .social-media ul li a:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.dtc .copyright span {
  color: var(--cyan);
}

.subjects {
  color: #fff;
  /* display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 0.7rem; */
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  padding: 1.5rem 2.5rem;
  position: relative;
}

.subjects a {
  color: #fff;
  text-decoration: none;
}
.subjects a:hover {
  opacity: 0.75;
}

.subjects .subject:first-child {
  border-right: solid 1px rgba(255, 255, 255, 0.3);
  padding-right: 1.9rem;
}

.subjects .subject:last-child {
  padding-left: 1.9rem;
}

.subjects .subject .title {
  text-transform: uppercase;
  font-weight: 500;
}

.subjects .subject .subtitle {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.releative {
  position: relative;
}

.video-index {
  position: absolute;
  right: -8rem;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-index img {
  width: 320px;
}

.video-index .play-btn {
  background: var(--purple-heart);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(11rem);
}

.video-index .play-btn svg {
  color: #fff;
  font-size: 0.75rem;
}

.hamburger-btn {
  display: none;
}


/*? #About page ====== */
.showcase2 {
  padding: 6rem 1rem;
  position: relative;
  /* height: 86vh; */
  /* background: #000; */
}

.decoration2-img {
  position: absolute;
  width: 120px;
  right: 0;
  top: 3rem;
  z-index: -1;
}

.showcase2 .text-section .overline {
  position: relative;
  font-size: 1.2rem;
}

.showcase2 .text-section .overline span:first-child::after {
  content: '';
  position: absolute;
  top: 0.95rem;
  left: 4.9rem;
  width: 1.75rem;
  height: 0.1rem;
  background: #000;
}

.showcase2 .text-section .overline span:last-child {
  margin-left: 2.5rem;
}

.showcase2 .text-section .overline span:last-child {
  font-family: 'Roboto Mono', monospace;
}

.showcase2 .text-section .highlight {
  margin-top: 3rem;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--cyan);
}

.showcase2 .text-section .highlight.smaller {
  font-size: 2.35rem;
}

.subject-img {
  margin-top: -1.3rem;
  z-index: -1;
  position: relative;
  left: -4.75rem;
  top: -0.1rem;
  /* position: absolute; */
  /* left: 95px; */
}
.subject-img img {
  width: 600px;
  height: auto;
}

.showcase-content {
  padding: 6rem 2rem 3rem 6rem;
}

.showcase-content h6 {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}

.showcase-content p {
  line-height: 1.9;
  color: var(--prussian-blue);
  opacity: 0.6;
}
.showcase-content .p2 {
  margin-top: 1.5rem;
}

.showcase-content .showcase-nav {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.showcase-content .showcase-nav .join-team-btn a {
  text-decoration: none;
  color: var(--cyan);
  font-weight: 600;
}

.showcase-content .showcase-nav .join-team-btn a svg {
  color: var(--Gray);
  margin-left: 1rem;
}

.showcase-content .showcase-nav .nav-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.showcase-content .showcase-nav .nav-list ul li:not(:last-child) {
  margin-bottom: 1.85rem;
}

.showcase-content .showcase-nav .nav-list ul li {
  width: 10rem;
  cursor: pointer;
  /* background: var(--cyan); */
}

.showcase-content .showcase-nav .nav-list ul li div {
  text-decoration: none;
  justify-content: space-between;
  display: flex;
  color: var(--Mine-Shaft);
  font-weight: 600;
  cursor: pointer;
  /* background: #000; */
}

.showcase-content .showcase-nav .nav-list ul li div svg {
  color: var(--Gray);
}

.showcase-content ul li div:hover {
  opacity: 0.7;
}

.back-btn:hover {
  opacity: 0.7;
}

/* .main-content {
  display: none;
} */

.vision-content, 
.mission-content,
.values-content,
.csr-content
 {
  display: none;
}


@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.showcase-content .back-btn svg {
  color: var(--Gray);
}

.showcase-content .back-btn {
  text-decoration: none;
  color: var(--Mine-Shaft);
  width: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.showcase-content p.vision {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
}

.showcase-content p.normal {
  margin-top: 2.5rem;
  /* font-size: 1.25rem; */
  line-height: 1.9;
}

.values-content .values-icons {
  margin-top: 1rem;
}

.values-content .value {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  /* justify-content: space-between; */
}

.values-content .value img {
  width: 70px;
  margin-right: 0.75rem;
}

.values-content .value .text {
  font-weight: 500;
}

.csr-content .csr-text {
  margin-top: 3rem;
}

.csr-content .csr-text p {
  color: var(--prussian-blue);
  opacity: 0.6;
}

.csr-content .csr-text ul {
  list-style: none;
  
  color: var(--prussian-blue);
  position: relative;
  opacity: 0.6;
}

.csr-content .csr-text ul li {
  margin-bottom: 1.3rem;
  line-height: 1.9;
}

.csr-content .csr-text ul li::before {
  content: '';
  border-bottom: solid 3px var(--cyan);
  width: 1.25rem;
  position: absolute;
  left: 0;
  margin-top: 0.8rem;
}

main.dark {
  padding: 0 1rem 0 8rem;
}

/* ? footer v2 */


.footer-v2 {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100vw;
}

.decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -5;
}


.copyright-v2 {
  margin-left: 5.5rem;
  width: 30rem;
  background: #fafafa6b;
  padding: 3rem 3.5rem 2rem 3.5rem;
  z-index: -5;
}

.copyright-v2 .copyright {
  text-transform: uppercase;
  color: #00254F;
  font-weight: 500;
}

.copyright-v2 .copyright span {
  color: var(--cyan);
}
.copyright-v2 .social-media {
  margin-top: 0.5rem;
}
.copyright-v2 .social-media ul {
  list-style: none;
  display: flex;
  position: relative;
}

.copyright-v2 .social-media ul li {
  margin-right: 3rem;
}

.copyright-v2 .social-media ul li:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: 0.65rem;
  margin-left: 0.5rem;
  /* left: 0; */
  width: 1.8rem;
  height: 0.15rem;
  background: #00254F;
  opacity: 0.4;
}

.copyright-v2 .social-media ul li a {
  text-decoration: none;
  color: #00254F;
}

.copyright-v2 .social-media ul li a:hover {
  opacity: 0.85;
  transition: opacity 0.3s ease-in-out;
}

.arrow-btn {
  margin: 1rem auto;
  transform: translateX(0);
  animation: tX-200px 0.5s ease;
}

@keyframes tX-200px {
  from {
    transform: translateX(700px);
  }
}

.arrow-btn a {
  text-decoration: none;
  color: var(--cyan);
  font-weight: 600;
}

.arrow-btn a svg {
  color: var(--Gray);
  margin-left: 1rem;
}

.arrow-btn a:hover {
  opacity: 0.75;
}

.showcase2 .text-section {
  z-index: 2;
}

.showcase2 .text-section .description {
  width: 75%;
  margin: 3rem 0;
  color: var(--Mine-Shaft);
  line-height: 1.9;
}

.showcase-content2 {
  padding: 6rem 0rem 3rem 2rem;
}

.bd-content .bd-icons {
  margin-top: 1rem;
}

.bd-content .domain {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  cursor: pointer;
  /* justify-content: space-between; */
}

.bd-content .domain img {
  width: 60px;
  margin-right: 1.75rem;
}

.bd-content .domain .text {
  font-weight: 500;
}

.decoration2-img.v2 {
  position: absolute;
  width: 120px;
  right: 4.5rem;
  top: 3rem;
  z-index: -1;
}

/* .bd-content {
  display: none;
} */

.domain-content {
  display: none;
}

/* #dc- {
  display: block;
} */

.domain-content p {
  margin-top: 2rem;
  color: var(--prussian-blue);
  opacity: 0.6;
}


.showcase-content2 .back-btn svg {
  color: var(--Gray);
}

.showcase-content2 .back-btn {
  text-decoration: none;
  color: var(--Mine-Shaft);
  width: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.domain-content .title {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.domain-content .text {
  margin-top: 2rem;
}

.domain-content .text p {
  color: var(--prussian-blue);
  opacity: 0.6;
}

.domain-content p.big {
  line-height: 1.9;
  font-size: 1.2rem;
}

.domain-content .text ul {
  list-style: none;
  color: var(--prussian-blue);
  position: relative;
  opacity: 0.6;
}

.domain-content .text ul.bullets li {
  margin-bottom: 0.5rem;
  line-height: 1.9;
}

.domain-content .text ul li {
  margin-bottom: 1.3rem;
  line-height: 1.9;
  padding-right: 1.5rem;
}

.domain-content .text ul li::before {
  content: '';
  border-bottom: solid 3px var(--cyan);
  width: 1.25rem;
  position: absolute;
  left: 0;
  margin-top: 0.8rem;
}

.domain-content .text ul.bullets li::before {
  content: '\2022';
  border-bottom: none;
  width: 1.25rem;
  /* height: 3rem; */
  /* background: rgba(0, 0, 0, 0.2); */
  font-size: 2rem;
  color: var(--cyan);
  position: absolute;
  left: unset;
  margin-left: -1.8rem;
  margin-top: -0.95rem;
}

.bd-content.Yscroll {
  height: 25rem;
  overflow-y: scroll;
  overflow-x: hidden;
}

.bd-content.Yscroll .domain {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  cursor: default;
  /* justify-content: space-between; */
}

.downicon {
  /* background: #000; */
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-right: 17%;
}

/* ? Clients Slider */
/* ? Splider */
.clients-contianer {
  /* background: #000; */
  /* margin: auto;
  display: flex;
  justify-content: center;
  align-items: center; */
  text-align: center;
}

.clients-contianer .col-lg-4 {
  align-items: center;
}
.clients-contianer img {
  width: 150px;
  margin-bottom: 1.5rem;
}

.splide__arrows {
  position: absolute;
  bottom: -2rem;
  right: 0;
  align-items: center;
  transform: unset;
}

.splide__arrows .splide__arrow--prev {
  position: absolute;
  left: -7.8rem;
}

.splide__arrows .splide__arrow--next {
  position: absolute;
  left: -5rem;
  background: var(--cyan);
}

.splide__arrow svg {
  width: 0.8rem;
  height: 0.8rem;
  fill: #fff;
}

.splide__pagination {
 bottom: -1rem;
 left: 50%;
}

.splide__pagination__page.is-active {
  background: var(--cyan);
  transform: scale(1.2);
  /* transform: unset; */
}

.splide__pagination li {
  margin-right: 0.5rem;
}

/* ? #Projects page ======= */
.projects-contianer {
  padding: 2rem 1rem;
}

.projects-contianer .project {
  align-items: flex-start;
  font-family: 'Karla', sans-serif;
  margin-bottom: 1.5rem;
}

.projects-contianer .project .no {
  font-size: 2rem;
  align-self: start;
  font-weight: 700;
  color: var(--cyan);
  text-align: right;
}

.projects-contianer .project .text {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 2;
  padding: 0.1rem 0.75rem;
}

.projects-contianer .project .time {
  align-self: center;
  margin-top: 1rem;
  color: var(--cyan);
  font-size: 1.1rem;
}

/* ? #Contact page ========== */
.contact-form {
  position: relative;
}

.contact-form .col-lg-6 {
  position: relative;
}

.contact-form .col-12 {
  position: relative;
}

.contact-form input {
  width: 100%;
  height: 3.5rem;
  border: 4px solid #ebeced;
  padding: 0.2rem 0.5rem 0.5rem 2.5rem;
  color: var(--Mine-shaft);
}

.contact-form input:focus {
  outline: 0;
}
.contact-form input::placeholder {
  color: #95989a;
  opacity: 1; /* Firefox */
}
.placeholder-icon {
  position: absolute;
  left: 2rem;
  top: 1rem;
  color: #95989a;
  font-size: 0.85rem;
}
.contact-form select {
  width: 100%;
  height: 3.5rem;
  border: 4px solid #ebeced;
  padding: 0.2rem 0.5rem 0.5rem 2.5rem;
  color: #95989a;
  background: url(../imgs/icons/down-icon.png) no-repeat right;
  -webkit-appearance: none;
  background-position-x: 94%;
  background-position-y: 12px;
}

.contact-form select:focus {
  outline: 0;
}
.contact-form textarea {
  width: 100%;
  /* height: 3.5rem; */
  border: 4px solid #ebeced;
  padding: 0.7rem 0.5rem 0.7rem 2.5rem;
  color: var(--Mine-shaft);
}
.contact-form textarea::placeholder {
  color: #95989a;
  opacity: 1; /* Firefox */
}
.contact-form textarea:focus {
  outline: 0;
}

.contact-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.contact-btn button {
  background: var(--cyan);
  outline: none;
  box-shadow: none;
  border: none;
  padding: 0.75rem 1.85rem;
  color: #fff;
}

a, button {
  user-select: none;
}

.contact-info {
  margin: 2.5rem 0rem 2rem 0rem;
  font-family: 'Karla', sans-serif;
  color: var(--Mine-Shaft);
}

.contact-info .item {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}

.contact-info .item .title {
  width: 5rem;
  margin-right: 0.5rem;
  font-weight: 700;
  color: var(--cyan);
}

/* .contact-info .item:first-child .title {
  margin-right: 0.5rem;
} */

.contact-info .item .info {
  text-align: left;
  font-weight: 600;
  width: 15rem;
}

.contact-info .item .info a {
  text-decoration: none;
  color: var(--Mine-Shaft);
  user-select: auto;
}

/* Adding profile */
.showcase-nav .right .profile a {
  padding: 0.5rem 1rem 0.5rem 1rem;
  margin-bottom: 2rem;
  height: 8rem;
  width: 18rem;
  border: solid 2px #ececec;
  border-radius: 5px;
  text-decoration: none;
  color: #777777;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.showcase-nav .right .profile a .text {
  width: 60%;
}

.showcase-nav .right .profile a .text .title {
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.showcase-nav .right .profile a .icon svg {
  font-size: 3rem;
  color: #c4c4c4;
}


/* ! #x ##### Media Queries ##### */
@media (max-width: 1500px) {
  header .logo {
    padding-left: 5rem;
  }
  
  header .navbar {
    justify-content: flex-end;
    padding-left: 5rem;
  }

  .video-index {
    display: none;
  }
  
  footer {
    position: relative;
    bottom: 0;
    padding: 2rem 0rem 0rem 10rem;
  }

}
/* 1500px */

@media (max-width: 1400px) {

  header .logo {
    padding-left: 3rem;
  }
  
  header .navbar {
    justify-content: flex-end;
    padding-left: 3rem;
  }

  /* .overlay {
    background: #0319336f;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  } */
}
/* 1400px */

@media (max-width: 1300px) {
  .subject-img {
    margin-top: -1.3rem;
    z-index: -1;
    position: relative;
    left: -4.75rem;
    top: -0.1rem;
    /* position: absolute; */
    /* left: 95px; */
  }
  .subject-img img {
    width: 500px;
    height: auto;
  }
}
/* 1300px */

@media (max-width: 1200px) {

}
/* 1200px */

@media (max-width: 1100px) {
  header {
    padding: 2.5rem 2.5rem 2rem 5.5rem;
    /* padding: 3rem 7rem; */
  }
}
/* 1100px */

@media (max-width: 992px) {
  header .navbar .hamburger-btn {
    display: block;
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 101;
    /* margin-top: 0.35rem; */
    right: 10%;
  }

  
  header .navbar .hamburger-btn svg {
    color: #fff;
    font-size: 1.75rem;
  }

  header {
    padding: 3rem 0rem 3rem 3rem;
  }

  header .navbar {
    justify-content: flex-end;
    padding-left: unset;
    align-items: start;
    text-align: right;
    position: relative;
  }
  
  header .navbar ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 8rem 5.5rem 5rem 1.3rem;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.95);
    width: 20rem;
    transform: translateX(500px);
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    /* backdrop-filter: blur(10px); */
    transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
    z-index: 100;
  }

  body.show-nav header .navbar ul {
    transform: translateX(0);
  }

  /* body.show-nav header .navbar .hamburger-btn {
    transform: translateX(-14.5rem);
  } */

  /* body.show-nav .overlay {
    z-index: 20;
    backdrop-filter: blur(2px);
  } */

  /* body.show-nav {
    overflow-y: hidden !important;
    position: fixed;
  } */
  
  header .navbar ul li {
    /* width: 100%; */
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }
  
  header .navbar ul li a {
    text-decoration: none;
    /* color: #fff; */
    color: black;
    opacity: 0.8;
  }

  header .navbar ul li.active::after {
    all: unset;
  }

  header .navbar ul li.ticket-li a {
    background: var(--purple-heart);
    padding: 0.5rem 0.75rem;
    opacity: 1;
  }
  
  header .ticket {
    display: none;
  }

  header.dark {
    padding: 2.5rem 2.5rem 2rem 5.5rem;
  }

  header.dark .navbar .hamburger-btn svg {
    color: var(--prussian-blue);
  }

  body.show-nav header.dark .navbar .hamburger-btn svg {
    color: #fff;
  }

  body.show-nav header.dark .navbar ul li a {
    color: #fff;
  }

  header.dark {
    position: fixed;
    width: 100vw;
    background: #fff;
    z-index: 10;
    padding: 2.5rem 2.5rem 2rem 3rem;
  }

  main.dark {
    padding: 5rem 1rem 0 4rem;
  }

  .subject-img {
    margin-top: 1.3rem;
    z-index: -1;
    position: relative;
    left: 0rem;
    top: -0.1rem;
    /* position: absolute; */
    /* left: 95px; */
  }

  .subject-img img {
    width: 100%;
    height: auto;
  }

  .showcase-content {
    padding: 6rem 2rem 3rem 0rem;
  }

  .showcase-content2 {
    padding: 0rem 0rem 3rem 0rem;
  }

  .footer-v2 {
    position: relative;
    margin-top: 5rem;
  }

  .decoration2-img.v2 {
    right: 0;
    width: 80px;
  }

  .showcase2 .text-section .description {
    width: 100%;
  }

}
/* 992px */

@media (max-width: 900px) {
  header.dark {
    position: fixed;
    width: 100vw;
    background: #fff;
    z-index: 10;
    padding: 2.5rem 2.5rem 2rem 6rem;
  }

  main {
    padding-top: 12rem;
  }

  main.dark {
    padding: 10rem 1rem 0 6rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 2rem;
  }
  .logo img {
    width: 200px;
  }
  main .showcase {
    padding: 3rem 3.5rem 3rem 5.5rem;
    width: unset;
    /* color: #fff; */
    /* transition: all 1s ease-in-out; */
  }
  .side-bar {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--purple-heart);
    width: 75px;
    height: 100vh;
    display: grid;
    grid-template-rows: 2fr 2fr;
    justify-content: space-between;
    align-items: center;
    /* overflow: hidden; */
  }
  
  /* end page-no */
  
  .side-bar .pager {
    /* background: rgb(164, 158, 158); */
    width: 75px;
    height: 150px;
  }
  
  .side-bar .pager a svg {
    font-size: 1.2rem;
  }
  header .navbar ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 8rem 4.4rem 5rem 1.3rem;
    justify-content: space-between;
    /* background: rgba(0, 0, 0, 0.566); */
    width: 18rem;
    transform: translateX(500px);
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    /* backdrop-filter: blur(10px); */
    transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
    z-index: 100;
  }

  .decoration2-img {
    position: absolute;
    width: 80px;
    right: 0;
  }

  .decoration img {
    width: 380px;
  }

  header.dark {
    position: fixed;
    width: 100vw;
    background: #fff;
    z-index: 10;
    padding: 2.5rem 2.5rem 2rem 5rem;
  }

  main.dark {
    padding: 10rem 1rem 0 5rem;
  }

  .showcase2 {
    padding: 6rem 1rem 1rem 1rem;
    position: relative;
    /* height: 86vh; */
    /* background: #000; */
  }

  .showcase2 .text-section .highlight {
    margin-top: 1.5rem;
    font-size: 3rem;
    
    font-weight: 600;
    color: var(--purple-heart);
  }

  .showcase2 .text-section .highlight.smaller {
    font-size: 2rem;
  }

  .subject-img {
    margin-top: 2.5rem;
  }

  .showcase-content {
    padding: 3rem 2rem 3rem 0rem;
  }

  .showcase-content2 {
    padding: 1rem 0rem 3rem 0rem;
  }

  .showcase-content .showcase-nav {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .showcase-content .showcase-nav .join-team-btn {
    display: none;
  }

  .showcase-nav .right .profile a {
    margin-bottom: 3.5rem;
  }
  
}
/* 768px */

@media (max-width: 576px) {

  .navbar {
    padding-top: 0.2rem;
  }

  header .logo {
    padding-left: 1rem;
    /* position: fixed; */
    /* z-index: 101; */
    /* transition: position 0.5s ease; */
  }

  .logo img {
    width: 220px;
  }

  main .showcase {
    padding: 1rem 1.5rem 2rem 3rem;
    width: unset;
    /* color: #fff; */
    /* transition: all 1s ease-in-out; */
  }

  .lang-selector, .page-no{
    display: none;
  }
  .side-bar {
    position: fixed;
    top: unset;
    bottom: 0;
    left: 0;
    background: transparent;
    width: 50px;
    height: 100vh;
    display: flex;
    grid-template-rows: unset;
    justify-content: flex-end;
    align-items: flex-end;
    /* overflow: hidden; */
  }
  .side-bar .pager {
    /* background: rgb(164, 158, 158); */
    width: 50px;
    height: 130px;
  }
  
  .side-bar .pager a svg {
    font-size: 1rem;
  }

  header .navbar ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 7rem 2.4rem 5rem 1.75rem;
    justify-content: space-between;
    /* background: rgba(0, 0, 0, 0.566); */
    width: 15rem;
    transform: translateX(500px);
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    /* backdrop-filter: blur(10px); */
    transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
    z-index: 100;
  }
  
  .project-btns {
    margin-top: 3.5rem;
    display: block;
    text-align: left;
    justify-content: flex-start;
  }
  
  .project-btns a {
    color: #fff;
    text-decoration: none;
  }
 
  .project-btns div:first-child {
    border-bottom: unset;
    padding-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
  }
  
  .project-btns div:last-child {
    margin-left: 0rem;
    opacity: 0.65;
  }

  footer {
    position: relative;
    bottom: 0;
    padding: 2rem 1rem 3rem 3.2rem;
  }

  .dtc {
    color: #fff;
  }
  
  .dtc .social-media {
    margin-top: 1rem;
    text-align: center;
  }
  .dtc .social-media ul {
    list-style: none;
    display: flex;
    position: relative;
    /* padding: 0; */
    justify-content: center;
    margin: auto;
  }
  
  .dtc .social-media ul li {
    margin-right: 1.5rem;
    font-size: 0.8rem;
  }
  
  .dtc .social-media ul li:not(:last-child):after {
    content: '';
    position: absolute;
    bottom: 0.65rem;
    margin-left: 0.35rem;
    transform: translateY(0.15rem);
    /* left: 0; */
    width: 0.8rem;
    height: 0.15rem;
    background: #fff;
    opacity: 0.4;
  }
  
  .dtc .social-media ul li a {
    text-decoration: none;
    color: #fff;
    opacity: 1;
  }
  
  .subjects {
    color: #fff;
    display: block;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 2.5rem 2.5rem;
    position: relative;
    margin: auto;
  }
  
  .subjects .subject:first-child {
    border-right: unset;
    padding-right: unset;
  }
  
  .subjects .subject:last-child {
    /* padding-left: unset; */
    padding-top: 2rem;
  }
  
  .subjects .subject .subtitle {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 0.4rem;
    margin-bottom: 0;
  }

  .dtc {
    margin-top: 2rem;
  }

  .copyright {
    text-align: center;
  }
  
  header.dark {
    position: fixed;
    width: 100vw;
    background: #fff;
    z-index: 10;
    padding: 1.5rem 2rem;
  }

  main {
    padding-top: 12rem;
  }

  main.dark {
    padding: 10rem 1rem 0 3.25rem;
  }

  .showcase-content .showcase-nav {
    margin-top: 1rem;
    padding: 0 0;
    display: block;
    justify-content: space-between;
    align-items: flex-end;
  }

  .showcase-content .showcase-nav .join-team-btn {
    margin-bottom: 2rem;
  } 

  .showcase-content .showcase-nav .nav-list ul li {
    width: 15rem;
    cursor: pointer;
  }

  .showcase-content .showcase-nav .nav-list ul li:not(:last-child) {
    margin-bottom: 2rem;
  }

  .showcase-content .showcase-nav .nav-list ul {
    padding-left: 1rem;
  }
  
  .showcase-content .showcase-nav .nav-list ul li div {
    text-decoration: none;
    justify-content: space-between;
    display: flex;
    color: var(--Mine-Shaft);
    font-weight: 600;
    cursor: pointer;
    font-size: 1.15rem;
    /* background: #000; */
  }

  .copyright-v2 {
    margin-left: 0;
    width: 100vw;
    height: 130px;
    background: #f9f8f8b1;
    padding: 2rem 1.5rem 2rem 1.5rem;
    z-index: -5;
    font-size: 0.8rem;
  }

  .copyright-v2 .copyright {
    text-align: left;
    margin-left: 2rem;
  }

  .copyright-v2 .social-media ul {
    padding-left: 0;
    margin-left: 0.8rem;
    display: flex;
    justify-content: center;
  }

  .copyright-v2 .social-media ul li a {
    text-decoration: none;
    color: #00254F;
    font-size: 0.8rem;
  }
  .copyright-v2 .social-media ul li:not(:last-child):after {
    width: 1rem;
  }

  .copyright-v2 .social-media ul li {
    margin-right: 2rem;
  }

  .showcase2 .text-section .highlight {
    margin-top: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--cyan);
  }

  .showcase2 .text-section .highlight.smaller {
    font-size: 1.5rem;
  }
  .showcase2 .text-section .overline {
    font-size: 0.9rem;
  }

  .showcase2 .text-section .overline span:first-child::after {
    content: '';
    position: absolute;
    top: 0.65rem;
    left: 3.75rem;
    width: 0.8rem;
    height: 0.1rem;
    background: #000;
  }
  
  .showcase2 .text-section .overline span:last-child {
    margin-left: 1.5rem;
  }

  .decoration2-img {
    top: 2rem;
  }

  .bd-content .domain {

    margin-bottom: 2.5rem;
  }
  .bd-content .domain img {
    width: 40px;
    margin-right: 1.75rem;
  }
  
  .bd-content .domain .text {
    font-weight: 500;
    font-size: 0.9rem;
  }

  .showcase-content2 {
    padding: 1rem 0rem 3rem 1rem;
  }

  .showcase-content2.less-padding {
    padding: 1rem 0rem 3rem 0rem;
  }

  .domain-content .title {
    margin-top: 3rem;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .domain-content .text {
    margin-top: 2rem;
    font-size: 0.9rem;

  }
  
  .domain-content .text p {
    color: var(--prussian-blue);
    opacity: 0.6;
  }
  
  .domain-content p.big {
    line-height: 1.9;
    font-size: 1rem;
  }

  .showcase2 .text-section .description {
    margin: 1.5rem 0;
  }

  .showcase2 {
    padding: 3rem 1rem 1rem 0.25rem;
    position: relative;
    /* height: 86vh; */
    /* background: #000; */
  }

  /*? splider on mobile */
  .clients-contianer img {
    width: 100px;
    margin-bottom: 0.5rem;
  }

  .clients-contianer {
    text-align: left;
  }
  
  .clients-contianer .col-lg-4 {
    align-items: center;
  }
  
  .splide__arrows {
    position: absolute;
    bottom: -8.75rem;
    right: unset;
    left: 70%;
    align-items: center;
    transform: unset;
  }
  
  .splide__arrows .splide__arrow--prev {
    position: absolute;
    left: -7.8rem;
  }
  
  .splide__arrows .splide__arrow--next {
    position: absolute;
    left: -3rem;
    background: var(--cyan);
  }

  .splide__arrow {
    width: 3rem;
    height: 3rem;
  }
  
  .splide__arrow svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: #fff;
  }
  
  .splide__pagination {
   bottom: -4.85rem;
   left: 50%;
  }

  .splide__pagination li {
    margin-right: 1.5rem;
    margin-top: 1rem;
  }

  .splide__pagination__page {
    width: 10px;
    height: 10px;
  }
  .showcase-content2.more-padding {
    padding-bottom: 10rem;
    padding-top: 3rem;
    padding-left: 0;
  }

  .decoration {
    display: none;
  }

  .bd-content.Yscroll {
    height: 100%;
    overflow-y: unset;
    overflow-x: hidden;
  }

  .downicon {
    display: none;
  }

  .bd-content.Yscroll .domain {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    cursor: default;
    /* justify-content: space-between; */
    padding-right: 0.25rem;
  }

  .bd-content.Yscroll .domain img {
    margin-right: 0.75rem;
    width: 30px;
  }

  .bd-content.Yscroll .domain .text {
    padding-right: 0.2rem;
    font-size: 0.8rem;
  }

  .projects-contianer .project {
    align-items: flex-start;
    font-family: 'Karla', sans-serif;
    margin-bottom: 2.2rem;
  }

  .projects-contianer .project .no {
    font-size: 2rem;
    align-self: start;
    font-weight: 700;
    color: var(--cyan);
    text-align: left;
  }
  
  .projects-contianer .project .text {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2;
    padding: 0.1rem 0rem;
  }
  
  .projects-contianer .project .time {
    align-self: center;
    margin-top: 1rem;
    color: var(--cyan);
    font-size: 1.1rem;
  }

  .showcase-content2.less-p {
    padding-left: 0rem;
  }

  .contact-info {
    margin: 2.5rem 0rem 1rem 0rem;
  }
  
  .contact-info .item {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
  }

  .contact-info .item .title {
    width: 5rem;
    margin-right: 0.5rem;
    font-weight: 700;
    color: var(--cyan);
    font-size: 1rem;
  }
  
  /* .contact-info .item:first-child .title {
    margin-right: 0.5rem;
  } */
  
  .contact-info .item .info {
    text-align: left;
    font-weight: 600;
    width: 100%;
    font-size: 0.9rem;
    margin-top: 0.3rem;
  }

  .showcase-nav .right .profile a {
    padding: 1rem;
    height: 100%;
    width: 100%;
    border: solid 2px #ececec;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 0.8rem;
  }

  .showcase-nav .right .profile a .icon svg {
    font-size: 2.5rem;
  }

}
/* 576px */

/* ! #h MAX HEIGHT */
@media (max-height: 920px) {
  .footer-v2 {
    position: relative;
    margin-top: 5rem;
  }
}
@media (max-height: 880px) {
  footer {
    position: relative;
    bottom: 0;
    /* padding: 5rem 10rem 0rem 10rem; */
  }
}
/* 880px */

@media (max-height: 800px) {
 
}

@media (max-height: 600px) {
  /* .decoration {
    position: relative;
    bottom: 0;
    right: 0;
    z-index: -5;
    display: flex;
    justify-content: flex-end;
  } */

  .decoration img {
    width: 380px;
  }

  header .logo {
    padding-left: 1rem;
    /* position: fixed; */
    /* z-index: 101; */
    /* transition: position 0.5s ease; */
  }

  .logo img {
    width: 200px;
  }

  main .showcase {
    padding: 0.5rem 1.5rem 2rem 1.5rem;
    width: unset;
    /* color: #fff; */
    /* transition: all 1s ease-in-out; */
  }

  header {
    padding: 1.5rem 2rem;
  }

 
  footer {
    position: relative;
    bottom: 0;
    padding: 2rem 1rem 3rem 3.2rem;
  }
  .dtc {
    margin-top: 3rem;
    padding-left: 1rem;
  }
  .dtc .social-media ul li a {
    text-decoration: none;
    color: #fff;
    opacity: 1;
  }

  .dtc .social-media ul {
    padding-left: 0;
  }

}
/* 600px */

@media (max-height: 400px) {
  header .navbar ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 5rem 5rem 5rem 1.3rem;
    justify-content: space-between;
    /* background: rgba(0, 0, 0, 0.566); */
    width: 20rem;
    transform: translateX(500px);
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    /* backdrop-filter: blur(10px); */
    transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
    z-index: 100;
    overflow-y: scroll;
  }

  
  header .navbar ul li {
    /* width: 100%; */
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  header .navbar .hamburger-btn svg {
    color: #fff;
    font-size: 1.35rem;
  }
  .lang-selector, .page-no{
    display: none;
  }
  .side-bar {
    position: fixed;
    top: unset;
    bottom: 0;
    left: 0;
    background: transparent;
    width: 50px;
    height: 100vh;
    display: flex;
    grid-template-rows: unset;
    justify-content: flex-end;
    align-items: flex-end;
    /* overflow: hidden; */
  }
  .side-bar .pager {
    /* background: rgb(164, 158, 158); */
    width: 50px;
    height: 130px;
  }
  
  .side-bar .pager a svg {
    font-size: 1rem;
  }

  .decoration {
    display: none;
  }
}
/* 400px */
