html {
  font-family: Inter;
  font-size: 16px;
  line-height: 1.15;
}

body {
  margin: 0;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.15;
  color: var(--dl-color-gray-black);
  background-color: var(--dl-color-gray-white);

}

* {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

* {
  scrollbar-width: auto;
  scrollbar-color: #f0f8ff #141416;
}

*::-webkit-scrollbar {
  width: 20px;

}

*::-webkit-scrollbar-track {
  background: #141416;

}

*::-webkit-scrollbar-thumb {
  background-color: #f0f8ff;
  border-radius: 23px;
  border: 8px solid #141416;
}

p,
li,
ul,
pre,
div,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote,
figcaption {
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
select {
  text-transform: none;
}


button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focus,
[type="button"]:-moz-focus,
[type="reset"]:-moz-focus,
[type="submit"]:-moz-focus {
  outline: 1px dotted ButtonText;
}

a {
  color: inherit;
  text-decoration: inherit;
}

input {
  padding: 2px 4px;
}

img {
  display: block;
}

html {
  scroll-behavior: smooth
}



body {
  width: 100%;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
  background-color: #141416;
}


.home-navigatio-bar {
  background-color: #141416;
  width: 100%;
  height: 176px;
  display: flex;
  position: relative;
  align-items: center;
  padding-top: 12px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: var(--dl-space-space-twounits);
  justify-content: space-between;
}

.home-lottie-node {
  width: 123px;
  height: 80px;
  z-index: 100;
}



.home-desktop-menu {
  display: flex;
}

.home-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  flex-direction: row;
}


.home-link1 {
  color: rgb(240, 248, 255);
  transition: 0.3s;
  font-family: Arial;
  margin-left: var(--dl-space-space-twounits);
  text-decoration: none;
}

.home-link1:hover {
  transform: scale(1.5);
  margin-left: var(--dl-space-space-fourunits);
  margin-right: var(--dl-space-space-fourunits);
}

.home-link2 {
  color: rgb(240, 248, 255);
  transition: 0.3s;
  font-family: Arial;
  margin-left: var(--dl-space-space-twounits);
  text-decoration: none;
}

.home-link2:hover {
  transform: scale(1.5);
  margin-left: var(--dl-space-space-fourunits);
  margin-right: var(--dl-space-space-fourunits);
}


.home-btn-group {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}


#languageDropdown {
  margin-right: 20px;
  font-size: 16px;
  background-color: transparent;
  color: white;
  border-bottom: 1px solid #f0f8ff;
}

#languageDropdown option {
  color: #141416;
}


@media screen and (max-width: 919px) {
  #languageDropdownMobile {
    font-size: 10px;
    background-color: transparent;
    color: white;
    border-top: none;
    border-bottom: none;
  }

  #languageDropdownMobile option {
    color: #141416;
  }
}


.what-i-do {
  width: 100%;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.what-i-do-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .what-i-do {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}


.card {
  padding: 20px;
  overflow: visible;
  width: 190px;
  height: 254px;
}

.content {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 300ms;
  box-shadow: 0px 0px 10px 1px #000000ee;
  border-radius: 5px;
}

.front,
.back {
  background-color: #151515;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
}

.back {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.back::before {
  position: absolute;
  content: ' ';
  display: block;
  width: 160px;
  height: 160%;
  background: linear-gradient(90deg, transparent, #9c27b0, #9c27b0, #9c27b0, #9c27b0, transparent);
  animation: rotation_481 5000ms infinite linear;
}

.back-content {
  position: absolute;
  width: 99%;
  height: 99%;
  background-color: #151515;
  border-radius: 5px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.card:hover .content {
  transform: rotateY(180deg);
}

@keyframes rotation_481 {
  0% {
    transform: rotateZ(0deg);
  }

  0% {
    transform: rotateZ(360deg);
  }
}

.front {
  transform: rotateY(180deg);
  color: white;
}

.front .front-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.front-content .badge {
  background-color: #00000055;
  padding: 2px 10px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
  width: fit-content;
}

.description {
  box-shadow: 0px 0px 10px 5px #00000088;
  width: 100%;
  padding: 10px;
  background-color: #00000099;
  backdrop-filter: blur(5px);
  border-radius: 5px;
}




.front .img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffbb66;
  position: relative;
  filter: blur(15px);
  animation: floating 2600ms infinite linear;
}

#bottom {
  background-color: #ff8866;
  left: 50px;
  top: 0px;
  width: 150px;
  height: 150px;
  animation-delay: -800ms;
}

#right {
  background-color: #ff2233;
  left: 160px;
  top: -80px;
  width: 30px;
  height: 30px;
  animation-delay: -1800ms;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}


.home-skills-and-experience-page {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: var(--dl-space-space-threeunits);
  padding-bottom: 200px;
  max-width: var(--dl-size-size-maxwidth);


}

.home-skills-and-experience-header {
  color: rgb(240, 248, 255);
  font-size: 3rem;
  transition: 0.3s;
  margin-bottom: 41px;
  cursor: pointer;
}

.home-skills-and-experience-header:hover {
  transform: scale(1.3);
  transition: 0.3s;
}

.home-skills-and-experience-row-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


.home-step {
  display: flex;
  padding: var(--dl-space-space-oneandhalfunits);
  margin-top: var(--dl-space-space-oneandhalfunits);
  transition: 0.3s;
  align-items: center;
  margin-left: var(--dl-space-space-oneandhalfunits);
  margin-right: var(--dl-space-space-oneandhalfunits);
  margin-bottom: var(--dl-space-space-oneandhalfunits);
  flex-direction: column;
}

.home-image {
  width: 100px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s, transform 0.5s;
}

.home-image:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@media(max-width: 825px) {
  .home-image {
    filter: none;
  }
}

.home-text05 {
  color: #f0f8ff;
  font-size: 1.15rem;
  font-weight: 500;
  padding-top: var(--dl-space-space-unit);
  padding-bottom: var(--dl-space-space-unit);
}


.home-my-previous-work {
  width: 100%;
  height: 100vh;
  display: flex;
  max-width: var(--dl-size-size-maxwidth);
  align-items: center;
  padding-top: var(--dl-space-space-twounits);
  padding-left: var(--dl-space-space-threeunits);
  padding-right: var(--dl-space-space-threeunits);
  flex-direction: column;
  padding-bottom: var(--dl-space-space-twounits);
  justify-content: center;
}

.home-my-previous-work-header {
  color: rgb(240, 248, 255);
  font-size: 3em;
  align-self: center;
  margin-bottom: var(--dl-space-space-oneandhalfunits);
}

.home-my-previous-work-content {
  width: 100%;
  height: 100%;
  margin: 2em auto;
  display: flex;
  padding: 0 1em;
  position: relative;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
}

.home-my-previous-work-content-card {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 1;
  grid-area: a;
  transition: 0.3s;
  align-items: flex-start;
  align-content: center;
  flex-direction: column;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.home-my-previous-work-content-card:hover {
  transform: scale(0.98);
}

.home-my-previous-work-content-card-header {
  color: var(--dl-color-gray-white);
  font-size: 1.5rem;
  font-weight: 600;
}

.home-my-previous-work-content-card-text {
  color: var(--dl-color-gray-white);
  margin-top: var(--dl-space-space-halfunit);
}

.home-navlink {
  display: contents;
}

.home-my-previous-work-content-card-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  background-size: contain;
  text-decoration: none;
  background-image: url("public/playground_assets/whatsapp%20image%202023-05-17%20at%2009.57.59%20%5B1%5D_iphone13blue_portrait-1400w.png");
  background-repeat: no-repeat;
  background-position: center;
}

.home-my-previous-work-content-card1 {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 1;
  grid-area: a;
  transition: 0.3s;
  align-items: flex-start;
  align-content: center;
  flex-direction: column;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.home-my-previous-work-content-card1:hover {
  transform: scale(0.98);
}

.home-my-previous-work-content-card-header1 {
  color: var(--dl-color-gray-white);
  font-size: 1.5rem;
  font-weight: 600;
}

.home-my-previous-work-content-card-text1 {
  color: var(--dl-color-gray-white);
  margin-top: var(--dl-space-space-halfunit);
}

.home-navlink1 {
  display: contents;
}

.home-my-previous-work-content-card-image1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  background-size: contain;
  text-decoration: none;
  background-image: url("public/playground_assets/whatsapp%20image%202023-05-17%20at%2012.23.27%20%5B1%5D_iphone13blue_portrait-1400w.png");
  background-repeat: no-repeat;
  background-position: center;
}

.home-my-previous-work-content-card2 {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 1;
  grid-area: a;
  transition: 0.3s;
  align-items: flex-start;
  align-content: center;
  flex-direction: column;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.home-my-previous-work-content-card2:hover {
  transform: scale(0.98);
}

.home-my-previous-work-content-card-header2 {
  color: var(--dl-color-gray-white);
  font-size: 1.5rem;
  font-weight: 600;
}

.home-my-previous-work-content-card-text2 {
  color: var(--dl-color-gray-white);
  margin-top: var(--dl-space-space-halfunit);
}

.home-navlink2 {
  display: contents;
}

.home-my-previous-work-content-card-image2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  background-size: contain;
  text-decoration: none;
  background-image: url("public/playground_assets/whatsapp%20image%202023-05-17%20at%2012.29.23_iphone13starlight_portrait-1400w.png");
  background-repeat: no-repeat;
  background-position: center;
}


/* _________________________________________________________________ */



/* ________________________________________________________________ */


/* this is todo */

[type="radio"] {
  display: none;
}

.w {
  width: 50vmin;
  height: 80vmin;
}

.showCaseImages {
  transition: transform 0.5s, bottom 0.6s, left 0.6s, width 0.3s, box-shadow 1s;
}

.showCaseImages:hover,
:checked+.showCaseImages {
  transition: transform 0.5s, bottom 0.6s, left 0.6s, width 0.3s, box-shadow 0s;
}

.showCaseImages {
  --w: 20%;
  display: block;
  width: var(--w);
  height: var(--barH);
  position: absolute;
  bottom: 0;
  left: var(--l);
  transform-origin: top left;
}

.showCaseImages img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.8);
}

:checked+label.showCaseImages {
  left: 0;
  bottom: var(--barH);
  height: calc(100% - var(--barH));
}

:checked+label.showCaseImages img {
  object-fit: contain;
}


:not(:checked)+.showCaseImages {
  transform: translate3d(0, 0, -5px);
  pointer-events: auto;
}

:not(:checked)+.showCaseImages:hover {
  transform: translate3d(0, -7px, -5px);
  box-shadow: 0 30px 30px -25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

:not(:checked)+.showCaseImages img {
  transform: scale(0.9);
}

:checked+.showCaseImages {
  box-shadow: 0 0 0 transparent;
  animation: anim 2s 1;
}






/* to do */
.td {
  width: 100%;
  height: 100%;
  position: relative;
  --barH: 10%;
}
.td {
  perspective: 100px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.td:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.1));
  transform: rotateX(90deg)scaleX(1.2);
  transform-origin: bottom center;
}


/* this is op */
.op {
  width: 100%;
  height: 100%;
  position: relative;
  --barH: 10%;
}
.op {
  perspective: 100px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.op:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.1));
  transform: rotateX(90deg)scaleX(1.2);
  transform-origin: bottom center;
}



/* this is qz */
.qz {
  width: 100%;
  height: 100%;
  position: relative;
  --barH: 10%;
}
.qz {
  perspective: 100px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.qz:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.1));
  transform: rotateX(90deg)scaleX(1.2);
  transform-origin: bottom center;
}


/* thís is for densit */
.dnst {
  width: 100%;
  height: 100%;
  position: relative;
  --barH: 10%;
}
.dnst {
  perspective: 100px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.dnst:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.1));
  transform: rotateX(90deg)scaleX(1.2);
  transform-origin: bottom center;
}



/* this is for food */
.fd {
  width: 100%;
  height: 100%;
  position: relative;
  --barH: 10%;
}
.fd {
  perspective: 100px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.fd:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.1));
  transform: rotateX(90deg)scaleX(1.2);
  transform-origin: bottom center;
}




/* meeting room css */
.bookingClassH2 {
  width: 100%;
  height: 100%;
  position: relative;
  --barH: 10%;
}
.bookingClassH2 {
  perspective: 100px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.bookingClassH2:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.1));
  transform: rotateX(90deg)scaleX(1.2);
  transform-origin: bottom center;
}



/* this is for learn kurdish */
.learnKurdishClass {
  width: 100%;
  height: 100%;
  position: relative;
  --barH: 10%;
}
.learnKurdishClass {
  perspective: 100px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.learnKurdishClass:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.1));
  transform: rotateX(90deg)scaleX(1.2);
  transform-origin: bottom center;
}
@keyframes anim {
  from {
    transform: rotateY(6deg)rotateX(3deg)
  }
}




.miniChatAppImages {
  width: 100%;
  height: 100%;
  position: relative;
  --barH: 10%;
}
.miniChatAppImages {
  perspective: 100px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.miniChatAppImages:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.1));
  transform: rotateX(90deg)scaleX(1.2);
  transform-origin: bottom center;
}

@keyframes anim {
  from {
    transform: rotateY(6deg)rotateX(3deg)
  }
}




.miniNikeStoreImages {
  width: 100%;
  height: 100%;
  position: relative;
  --barH: 10%;
}
.miniNikeStoreImages {
  perspective: 100px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.miniNikeStoreImages:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.1));
  transform: rotateX(90deg)scaleX(1.2);
  transform-origin: bottom center;
}





@keyframes anim {
  from {
    transform: rotateY(6deg)rotateX(3deg)
  }
}




















#hidden-section {
  margin-top: 10px;
}
/* ___________________________________________________________________________ */









/* ___________________________________________________________________________ */
.slider-container {
  width: 100%;
  display: flex;
  overflow: auto;
  /* height: 100vh; */
  /* min-height: 100vh; */
  align-items: center;
  padding-bottom: 200px;
  justify-content: center;
  flex-direction: column;
}

.slider-pre-work-section {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.slider-pre-work-section-header {
  color: rgb(240, 248, 255);
  align-self: center;
  font-size: 3rem;
  transition: 0.3s;
  margin-top: var(--dl-space-space-unit);
  margin-bottom: 50px;
  cursor: pointer;
}

.slider-pre-work-section-header:hover {
  transform: scale(1.3);
  transition: 0.3s;
}

.slider-pre-work-section-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 1200px) {
  .slider-pre-work-section {
    align-self: center;
    margin-right: 0px;
    justify-content: center;
  }

  .slider-pre-work-section-header {
    font-size: 3rem;
  }
}

@media(max-width: 767px) {
  .slider-pre-work-section {
    align-self: center;
    align-items: center;
    justify-content: center;
  }


  .slider-pre-work-section-header {
    font-size: 2.5rem;
  }
}

@media(max-width: 479px) {
  .slider-pre-work-section-header {
    font-size: 2rem;
  }
}


.blog-slider {
  width: 95%;
  position: relative;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all 0.3s;
}

@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 680px;
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}

.blog-slider__item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>* {
  opacity: 1;
  transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(1) {
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(2) {
  transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(3) {
  transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(4) {
  transition-delay: 0.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(5) {
  transition-delay: 0.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(6) {
  transition-delay: 0.8s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(7) {
  transition-delay: 0.9s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(8) {
  transition-delay: 1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(9) {
  transition-delay: 1.1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(10) {
  transition-delay: 1.2s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(11) {
  transition-delay: 1.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(12) {
  transition-delay: 1.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(13) {
  transition-delay: 1.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(14) {
  transition-delay: 1.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(15) {
  transition-delay: 1.7s;
}

.blog-slider__img {
  width: 200px;
  height: 360px;
  flex-shrink: 0;
  /* background-image: linear-gradient(147deg, #9c27b0 10%, #141416 74%);
   box-shadow: 4px 13px 30px 1px #9c27b0;
   border-radius: 20px; */
  transform: translateX(-80px);
  overflow: hidden;
}

.blog-slider__img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.8;
}

.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;

}

@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}

@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}

.blog-slider__content {
  padding-right: 25px;
}

@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}

@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}

.blog-slider__content>* {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}

.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}

.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}

.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #9c27b0 0%, #ab87b9 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(146, 74, 119, 0.596);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
  }
}

.blog-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #9c27b0;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}



/* ____________________________________________________________ */



.language-toggle {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.language-toggle button {
  margin: 5px;
  padding: 5px 10px;
  background-color: #f1f1f1;
  border: none;
  cursor: pointer;
}

.language-toggle button.active {
  background-color: #ddd;
}

.agree-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-bottom: 10px;
  transform: translateX(-50%);
  background-color: #141416;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  color: #f1f1f1;
  border-radius: 5px;
}


/* ________________________________________________________________ */



/* social media page ____________________________________________ */

.home-lottie-node1 {
  width: 123px;
  height: 80px;
  z-index: 100;
}

.home-separator {
  flex: 0 0 auto;
  width: 100%;
  height: 0px;
  display: flex;
  margin-top: var(--dl-space-space-twounits);
  align-items: flex-start;
  margin-left: 0px;
  border-color: var(--dl-color-gray-900);
  border-style: solid;
  border-width: 1px;
  margin-right: 0px;
  margin-bottom: var(--dl-space-space-twounits);
  flex-direction: row;
  border-top-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
}

.language-toggle {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.language-toggle button {
  margin: 5px;
  padding: 5px 10px;
  background-color: #f1f1f1;
  border: none;
  cursor: pointer;
}

.language-toggle button.active {
  background-color: #ddd;
}

@media screen and (max-width: 600px) {
  .pop-impressum {
    width: 90%;
  }
}
.home-link4 {
  display: contents;
}

.home-slide-to-top {
  z-index: 1000;
  right: var(--dl-space-space-threeunits);
  width: 50px;
  bottom: var(--dl-space-space-threeunits);
  cursor: pointer;
  height: 50px;
  position: fixed;
  align-self: flex-end;
  border-width: 1px;
  border-radius: var(--dl-radius-radius-round);
  text-decoration: none;
  background-color: white;
  display: none;
}



.dropdown {
  float: left;
  overflow: hidden;
  display: none;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;

}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
  right: 0;
  margin-right: 10px;
  transition: 0.3s;
  width: auto;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}


@media(min-width: 1200px) {
  .home-nav a {
    font-size: 1.2rem;
  }

  .home-btn-group a {
    font-size: 1.2rem;
  }
}


@media(max-width: 1200px) {

  .home-my-previous-work-content-card-header {
    font-size: 1.4rem;
  }
}

@media(max-width: 991px) {
  .home-my-previous-work-content-card-header {
    text-align: center;
  }

  .home-my-previous-work-content-card-text {
    text-align: center;
  }

  .home-my-previous-work-content-card-header1 {
    text-align: center;
  }

  .home-my-previous-work-content-card-text1 {
    text-align: center;
  }

  .home-my-previous-work-content-card-header2 {
    text-align: center;
  }

  .home-my-previous-work-content-card-text2 {
    text-align: center;
  }
}

@media(max-width: 919px) {

  .home-desktop-menu {
    display: none;
  }

  .home-btn-group {
    display: none;
  }

  .dropdown {
    display: flex;
  }

}

@media(max-width: 941px) {
  .home-link1 {
    color: #f0f8ff;
  }

  .home-link2 {
    color: #f0f8ff;
  }

  .home-social-media {
    color: #f0f8ff;
  }

  .home-skills-and-experience-header {
    font-size: 40;
    text-align: center;
  }

  .home-text05 {
    text-align: center;
  }

  .home-my-previous-work-header {
    font-size: 40;
  }

  .home-my-previous-work-content-card {
    background-position: background-position;
  }

  .home-my-previous-work-content-card-header {
    font-size: 1.3rem;
  }

  .home-my-previous-work-content-card-text {
    font-size: 0.9rem;
  }

  .home-my-previous-work-content-card-image {
    align-self: center;
  }

  .home-my-previous-work-content-card1 {
    background-position: background-position;
  }

  .home-my-previous-work-content-card-image1 {
    align-self: center;
  }

  .home-my-previous-work-content-card2 {
    background-position: background-position;
  }

  .home-my-previous-work-content-card-image2 {
    align-self: center;
  }


}

@media(max-width: 767px) {

  .home-navigatio-bar {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }


  .home-desktop-menu {
    display: none;
  }

  .home-link1 {
    margin-left: var(--dl-space-space-unit);
  }

  .home-link2 {
    margin-left: var(--dl-space-space-unit);
  }

  .home-social-media {
    margin-left: var(--dl-space-space-unit);
  }

  .home-btn-group {
    display: none;
  }


  .home-about-me-page {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }

  .home-about-me-page-content-text {
    padding-left: var(--dl-space-space-unit);
    padding-right: var(--dl-space-space-unit);
  }

  .home-skills-and-experience-header {
    font-size: 35;
  }

  .home-my-previous-work {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }

  .home-my-previous-work-header {
    font-size: 35;
  }

  .home-my-previous-work-content-card-header {
    font-size: 1.1rem;
    align-self: flex-start;
  }

  .home-my-previous-work-content-card-text {
    font-size: 0.8rem;
    align-self: flex-start;
  }

  .home-my-previous-work-content-card-image {
    width: 70%;
    height: 70%;
    align-self: center;
    align-items: center;
    background-size: contain;
    justify-content: center;
    background-image: url("public/playground_assets/whatsapp%20image%202023-05-17%20at%2009.57.59%20%5B1%5D_iphone13blue_portrait-1400w.png");
    background-position: center;
  }

  .home-my-previous-work-content-card-header1 {
    align-self: flex-start;
  }

  .home-my-previous-work-content-card-text1 {
    align-self: flex-start;
  }

  .home-my-previous-work-content-card-image1 {
    width: 70%;
    height: 70%;
    align-self: center;
    align-items: center;
    background-size: contain;
    justify-content: center;
    background-image: cdf6a82d-fc3d-4bf8-a41e-0198b2e68530;
    background-position: center;
  }

  .home-my-previous-work-content-card-header2 {
    align-self: flex-start;
  }

  .home-my-previous-work-content-card-text2 {
    align-self: flex-start;
  }

  .home-my-previous-work-content-card-image2 {
    width: 70%;
    height: 70%;
    align-self: center;
    align-items: center;
    background-size: contain;
    justify-content: center;
    background-image: cdf6a82d-fc3d-4bf8-a41e-0198b2e68530;
    background-position: center;
  }


  .home-separator {
    margin-top: var(--dl-space-space-oneandhalfunits);
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--dl-space-space-oneandhalfunits);
  }

  .home-slide-to-top {
    display: none;
  }
}

@media(max-width: 500px) {
  .home-step {
    display: flex;
    padding: 10px;
    /* margin-top: -24px; */
    transition: 0.3s;
    align-items: center;
    /* margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -24px; */
    flex-direction: column;
  }

  .home-image {
    width: 60px;
  }

  .home-text05 {
    font-size: 0.8rem;
  }

  .home-about-me-page-content-text {
    line-height: 1.5;
  }

}

@media(max-width: 479px) {
  .home-navigatio-bar {
    padding: var(--dl-space-space-unit);
  }


  .home-about-me-page {
    flex: 1;
    align-items: center;
    padding-top: var(--dl-space-space-twounits);
    padding-left: var(--dl-space-space-unit);
    padding-right: var(--dl-space-space-unit);
    flex-direction: column;
    padding-bottom: var(--dl-space-space-twounits);
    justify-content: center;
  }

  .home-skills-and-experience-header {
    font-size: 25;
  }



  .home-my-previous-work {
    padding: var(--dl-space-space-unit);
  }

  .home-my-previous-work-header {
    font-size: 25;
  }

  .home-my-previous-work-content-card-header {
    font-size: 1.0rem;
  }

  .home-my-previous-work-content-card-text {
    font-size: 0.7rem;
  }


  .home-separator {
    margin-top: var(--dl-space-space-oneandhalfunits);
    margin-bottom: var(--dl-space-space-oneandhalfunits);
  }

  .home-slide-to-top {
    display: none;
  }
}