:root {
  --black: 0, 0, 0;
  --primary: 255, 219, 103;
  --white: 255, 255, 255;
}
body {
  font-family: sans-serif;
  background-color: rgb(var(--primary));
  color: rgb(var(--black));
  font-size: 16px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: rgb(var(--black));
}
p,
span,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: rgb(var(--black));
  margin-bottom: 0;
}
@media screen and (min-width: 1400px) {
  .btn {
    padding: 12px 24px;
    font-size: 18px;
  }
}
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1750px) {
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1740px;
  }
  .navigation {
    left: calc((100% - 1680px) / 2 + 1290px);
    width: 360px;
  }
}
#bg {
  position: fixed;
  background: cover;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 0.25;
  z-index: -2;
}
.grain {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 300;
  transform: translateZ(0);
}
.grain:before {
  content: "";
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  z-index: 9999;
  position: fixed;
  background-image: url(../images/Image_gaussian_noise_example.html);
  opacity: 0.12;
  pointer-events: none;
  animation: noise 1s steps(2) infinite;
}
@keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  to {
    transform: translate3d(-7rem, 0, 0);
  }
}
.header {
  padding: 14px 0;
  width: 100%;
  z-index: 10;
  left: 0;
  right: 0;
}
.header img {
  max-width: 100%;
}
.header .nav-icon {
  width: 36px;
  height: 22px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.header .nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: rgb(var(--black));
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header .nav-icon span:nth-child(1) {
  top: 0px;
}
.header .nav-icon span:nth-child(2) {
  top: 12px;
}
.header .nav-icon span:nth-child(3) {
  top: 24px;
}
.header .nav-icon.open span:nth-child(1) {
  top: 12px;
  transform: rotate(135deg);
}
.header .nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header .nav-icon.open span:nth-child(3) {
  top: 12px;
  transform: rotate(-135deg);
}
.navigation {
  position: absolute;
  --height: 0;
  z-index: 100;
}
@media (max-width: 1200px) {
  .navigation {
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 20px;
    top: 0;
    bottom: 0;
    max-width: 300px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  .navigation:dir(ltr) {
    transform: translateX(-100%);
    left: 0;
  }
  .navigation:dir(rtl) {
    transform: translateX(100%);
    right: 0;
  }
}
@media (max-width: 1200px) {
  .navigation.opened {
    transform: translateX(0);
    position: fixed;
    background-color: rgb(var(--primary));
  }
}
@media (min-width: 1200px) {
  .navigation {
    position: fixed;
    top: 0px;
    right: 0;
    display: block;
    transform: translateX(0);
  }
  .navigation:dir(rtl) {
    left: 0;
    right: auto;
  }
}
.navigation::before {
  content: "";
  position: absolute;
  top: 100px;
  width: 2px;
  height: var(--height);
  background: rgb(var(--black));
  opacity: 0.3;
}
@media (min-width: 1200px) {
  .navigation::before {
    top: 0;
  }
}
.navigation::before:dir(ltr) {
  left: 0;
}
.navigation::before:dir(rtl) {
  right: 0;
}
.navigation ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
@media (min-width: 1200px) {
  .navigation ul {
    width: 300px;
  }
}
.navigation ul li > a {
  color: rgb(var(--black));
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  transition-duration: 300ms;
  display: block;
  position: relative;
}
.navigation ul li > a:dir(ltr) {
  padding-left: 34px;
  border-left: 2px solid rgba(0, 0, 0, 0);
}
.navigation ul li > a:dir(rtl) {
  padding-right: 34px;
  border-right: 2px solid rgba(0, 0, 0, 0);
}
.navigation ul li > a span {
  font-size: 16px;
}
.navigation ul li > a::after {
  transition-duration: 600ms;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: rgb(var(--black));
  opacity: 0.15;
}
.navigation ul li > a::after:dir(rtl) {
  left: auto;
  right: 0;
}
.navigation ul li > a:hover {
  border-left: 2px solid rgb(var(--black));
}
.navigation ul li > a:hover::after {
  animation: grow 600ms ease-in-out;
  width: 100%;
}
.navigation ul li > a:hover:dir(rtl) {
  border-left: none;
  border-right: 2px solid rgb(var(--black));
}
.navigation ul li > a.active {
  border-left: 2px solid rgb(var(--black));
}
.navigation ul li > a.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  animation: grow 600ms ease-in-out;
  height: 100%;
  background: rgb(var(--black));
  opacity: 0.15;
}
.navigation ul li > a.active::after:dir(rtl) {
  left: auto;
  right: 0;
}
.navigation ul li > a.active:dir(rtl) {
  border-left: none;
  border-right: 2px solid rgb(var(--black));
}
.navigation .contact {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.navigation .contact:dir(ltr) {
  padding-left: 34px;
}
.navigation .contact:dir(rtl) {
  padding-right: 34px;
}
.navigation .contact a {
  font-size: 18px;
  color: rgb(var(--black));
}
.nav-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 12;
  opacity: 0;
  transition-duration: 500ms;
  transform: translateX(100%);
}
.navigation.opened + .nav-overlay {
  opacity: 1;
  transform: translateX(0);
}
.hero {
  min-height: 100vh;
  padding-top: 100px;
  height: auto;
}
.hero.blog-hero {
  min-height: 85vh;
}
@media (min-width: 1400px) {
  .hero {
    padding-top: 200px;
  }
}
.hero .row {
  height: 100%;
}
.hero .row:dir(rtl) .hero-content {
  text-align: right;
}
.hero .row .hero-content {
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero .row h4,
.hero .row .h4 {
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .hero .row h4,
  .hero .row .h4 {
    font-size: 40px;
  }
}
.hero .row .developer {
  font-size: 40px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .hero .row .developer {
    margin-bottom: 20px;
    font-size: 70px;
  }
}
@media (min-width: 1400px) {
  .hero .row .developer {
    font-size: 100px;
  }
}
.hero .row .description {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 40px;
}
.hero .row .img-wrapper {
  max-height: 416px;
  max-width: 416px;
  position: relative;
}
.hero .row .img-wrapper:hover .waves-top,
.hero .row .img-wrapper:hover .waves-top-sm,
.hero .row .img-wrapper:hover .waves-bottom-md,
.hero .row .img-wrapper:hover .waves-top-md,
.hero .row .img-wrapper:hover .waves-bottom,
.hero .row .img-wrapper:hover .waves-bottom-sm {
  opacity: 0;
}
.hero .row .img-wrapper .hero-img {
  border: 2px solid rgb(var(--black));
}
.hero .next-chapter {
  padding-top: 30px;
}
@media (min-width: 992px) {
  .hero .next-chapter {
    padding-top: 160px;
  }
}
.about {
  position: relative;
  padding-top: 60px;
  padding-bottom: 40px;
  z-index: 3;
}
.about .section-title-overlay-text {
  top: 80px;
}
@media (min-width: 1200px) {
  .about {
    padding-top: 120px;
  }
}
.about .about-desc h2,
.about .about-desc .h2 {
  font-size: 32px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .about .about-desc h2,
  .about .about-desc .h2 {
    font-size: 40px;
  }
}
.about .about-desc p.desc {
  margin-bottom: 40px;
}
.about .about-desc p.desc a {
  color:red;
}
@media (min-width: 1200px) {
  .about .about-desc p.desc {
    font-size: 20px;
  }
}
.about .about-contact p {
  font-size: 18px;
  font-weight: 500;
}
.about .about-contact a,
.about .about-contact span {
  font-size: 20px;
  font-weight: 500;
}
.about .experience-card {
  border: 1px solid rgb(var(--black));
  width: 100%;
  padding: 40px;
  text-align: center;
  transition-duration: 500ms;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--primary));
  position: relative;
  z-index: 3;
}
.about .experience-card::before {
  content: "";
  position: absolute;
  transition-duration: 500ms;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(var(--black));
  transform: rotate(2.5deg);
  z-index: -1;
}
.about .experience-card::after {
  content: "";
  position: absolute;
  transition-duration: 500ms;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(var(--black));
  transform: rotate(-2.5deg);
  z-index: -1;
}
.about .experience-card .card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--primary));
  z-index: 0;
}
.about .experience-card:hover::before,
.about .experience-card:hover::after {
  transform: rotate(0);
  opacity: 0;
}
.about .experience-card:hover .numbers .number-outline-one,
.about .experience-card:hover .numbers .number-outline-two {
  transform: rotate(0);
  opacity: 0;
}
.about .experience-card p {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.about .experience-card .numbers {
  z-index: 1;
  position: relative;
}
.about .experience-card .numbers span {
  font-size: 200px;
  font-weight: 700;
  line-height: 120%;
}
.about .experience-card .numbers .number-outline-one,
.about .experience-card .numbers .number-outline-two {
  position: absolute;
  top: 0;
  -webkit-text-stroke: 1px #000;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  transition-duration: 500ms;
}
.about .experience-card .numbers .number-outline-one {
  transform: rotate(6deg);
}
.about .experience-card .numbers .number-outline-two {
  transform: rotate(-6deg);
}
.about .next-chapter {
  padding-top: 100px;
}
.services {
  margin-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .services {
    margin-top: 120px;
  }
}
.services .section-title {
  padding-top: 60px;
}
.services .service-swiper {
  padding-bottom: 50px;
}
.services .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  background-color: #fff;
}
.services .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.services .next-chapter {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .services .next-chapter {
    margin-top: 4dvh;
  }
}
.services .service-card {
  position: relative;
  padding: 16px;
  border: 1px solid rgb(var(--black));
}
@media (min-width: 576px) {
  .services .service-card {
    padding: 32px;
  }
}
@media (min-width: 1200px) {
  .services .service-card {
    padding: 50px;
  }
}
.services .service-card .card-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--primary));
  z-index: 1;
}
.services .service-card .number-circle .waves-top-sm,
.services .service-card .number-circle .waves-bottom-sm {
  opacity: 0;
}
.services .service-card::before,
.services .service-card::after {
  content: "";
  position: absolute;
  transition-duration: 500ms;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 1px solid rgb(var(--black));
}
.services .service-card:hover::before {
  transform: rotate(3.5deg);
  opacity: 1;
}
.services .service-card:hover::after {
  transform: rotate(-3.5deg);
  opacity: 1;
}
.services .service-card:hover .number-circle .waves-top-sm,
.services .service-card:hover .number-circle .waves-bottom-sm {
  opacity: 1;
}
.services .service-card .content {
  position: relative;
  z-index: 2;
}
.services .service-card .number-circle {
  margin-bottom: 40px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: rgb(var(--primary));
  border: 1px solid rgb(var(--black));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.services .service-card .number-circle h2,
.services .service-card .number-circle .h2 {
  font-size: 32px;
  font-weight: 500;
}
.services .service-card h4,
.services .service-card .h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 2px solid rgb(var(--black));
}
.services .service-card .service-list {
  list-style: none;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services .service-card .service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(var(--black));
}
.services .service-card .service-list li i {
  color: #343330;
}
.attainments {
  padding: 60px 0;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .attainments {
    padding: 120px 0;
  }
}
.attainments .section-title-overlay-text {
  top: 60px;
}
.attainments .section-title-overlay-text:dir(ltr) {
  left: 6%;
}
.attainments .section-title-overlay-text:dir(ltr) {
  right: 6%;
}
.attainments .section-title-sm .top:dir(ltr) {
  padding: 20px 0 20px 32px;
  border-left: 2px solid rgb(var(--black));
}
.attainments .section-title-sm .top:dir(rtl) {
  padding: 20px 32px 20px 0;
  border-right: 2px solid rgb(var(--black));
}
.attainments .section-title-sm .top h2,
.attainments .section-title-sm .top .h2 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 500;
}
@media (min-width: 1400px) {
  .attainments .section-title-sm .top h2,
  .attainments .section-title-sm .top .h2 {
    font-size: 40px;
  }
}
@media (min-width: 1400px) {
  .attainments .section-title-sm .top span {
    font-size: 20px;
  }
}
.attainments .section-title-sm .serial {
  color: rgba(0, 0, 0, 0.5);
  transform: rotate(-90deg) translateX(-8px);
  font-size: 28px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .attainments .section-title-sm .serial {
    transform: rotate(-90deg) translate(-24px, -8px);
  }
}
@media (min-width: 992px) {
  .attainments .section-title-sm .serial {
    font-size: 40px;
  }
}
.attainments .skill .progress {
  height: 3px;
  margin-top: 8px;
  background-color: rgb(var(--white));
}
.attainments .skill .progress .progress-bar {
  background-color: rgb(var(--black));
  transition-duration: 4s;
  width: 0;
  animation-timing-function: ease-in-out;
}
.attainments .next-chapter {
  padding-top: 80px;
}
.fun_facts {
  position: relative;
  padding-bottom: 40px;
  padding-top: 20px;
}
.fun_facts .fun-fact {
  position: relative;
}
.fun_facts .fun-fact .numbers {
  z-index: 1;
  position: relative;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgb(var(--black));
}
.fun_facts .fun-fact .numbers span {
  transition-duration: 300ms;
  font-size: 80px;
  font-weight: 700;
  line-height: 120%;
}
@media (min-width: 992px) {
  .fun_facts .fun-fact .numbers span {
    font-size: 116px;
  }
}
.fun_facts .fun-fact .numbers .number-outline-one,
.fun_facts .fun-fact .numbers .number-outline-two {
  position: absolute;
  top: 0;
  -webkit-text-stroke: 1px #000;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  transition-duration: 500ms;
}
.fun_facts .fun-fact p {
  font-size: 20px;
  font-weight: 500;
  color: rgb(var(--black));
}
.fun_facts .next-chapter {
  padding-top: 90px;
}
.experience {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .experience {
    padding-top: 120px;
  }
}
.experience .section-title-overlay-text {
  top: 100px;
}
.experience .experience-wrapper {
  margin-top: 30px;
  gap: 50px;
  --height: 0;
  position: relative;
  padding-bottom: 60px;
}
.experience .experience-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: var(--height);
  background-color: rgba(0, 0, 0, 0.3);
}
.experience .experience-wrapper::before:dir(ltr) {
  left: 0;
}
.experience .experience-wrapper::before:dir(rtl) {
  right: 0;
}
@media (min-width: 1200px) {
  .experience .experience-wrapper {
    gap: 80px;
  }
}
.experience .experience-wrapper .experience-item {
  position: relative;
  --item-height: 0;
}
.experience .experience-wrapper .experience-item::before {
  content: "";
  position: absolute;
  top: 0;
  transform-origin: center;
  height: var(--item-height);
  width: 2px;
  background-color: rgb(var(--black));
}
.experience .experience-wrapper .experience-item:dir(ltr) {
  padding-left: 32px;
}
.experience .experience-wrapper .experience-item:dir(ltr)::before {
  left: 0;
}
.experience .experience-wrapper .experience-item:dir(rtl) {
  padding-right: 32px;
}
.experience .experience-wrapper .experience-item:dir(rtl)::before {
  right: 0;
}
.experience .experience-wrapper .experience-item h5,
.experience .experience-wrapper .experience-item .h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
@media (min-width: 1200px) {
  .experience .experience-wrapper .experience-item h5,
  .experience .experience-wrapper .experience-item .h5 {
    font-size: 20px;
  }
}
.experience .experience-wrapper .experience-item h3,
.experience .experience-wrapper .experience-item .h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .experience .experience-wrapper .experience-item h3,
  .experience .experience-wrapper .experience-item .h3 {
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .experience .experience-wrapper .experience-item h3,
  .experience .experience-wrapper .experience-item .h3 {
    font-size: 40px;
  }
}
.experience .experience-wrapper .experience-item p {
  color: rgb(var(--black));
}
@media (min-width: 1400px) {
  .experience .experience-wrapper .experience-item p {
    font-size: 18px;
  }
}
.experience .download-cv {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 132px;
  height: 132px;
  border: 1px solid rgb(var(--black));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 400ms;
}
@media (min-width: 768px) {
  .experience .download-cv {
    margin-top: 60px;
  }
}
.experience .download-cv:hover {
  background-color: #000;
  color: #fff;
}
.experience .download-cv:hover .waves-bottom-md,
.experience .download-cv:hover .waves-top-md {
  opacity: 0;
}
.projects {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .projects {
    padding-top: 120px;
  }
}
.projects .section-title-overlay-text {
  top: 100px;
}
.projects .project-list {
  margin-top: 40px;
}
.projects .single-project {
  cursor: pointer;
}
.projects .single-project:hover .project-card {
  transform: scale(0.97);
}
.projects .project-card {
  position: relative;
  transition-duration: 500ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
.projects .project-card .card-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--primary));
  z-index: 1;
}
.projects .project-card .card-img {
  position: relative;
  z-index: 2;
  transition-duration: 300ms;
  transform-origin: left;
}
.projects .project-card::before,
.projects .project-card::after {
  content: "";
  position: absolute;
  transition-duration: 500ms;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 1px solid rgb(var(--black));
}
.projects .project-card .card-arrow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgb(var(--black));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  transition-duration: 500ms;
  scale: 0;
  opacity: 0;
}
.projects .project-card .card-arrow .arrow-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgb(var(--primary));
  display: flex;
  justify-content: center;
  align-items: center;
}
.projects .project-card .card-arrow .arrow-inner i {
  font-size: 35px;
}
.projects .project-card:hover::before {
  transform: rotate(3.5deg);
  opacity: 1;
}
.projects .project-card:hover::after {
  transform: rotate(-3.5deg);
  opacity: 1;
}
.projects .project-card:hover .card-arrow {
  scale: 1;
  opacity: 1;
}
.projects .project-info {
  margin-top: 32px;
}
.projects .project-info h2,
.projects .project-info .h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}
.projects .project-info p {
  margin-bottom: 12px;
}
.projects .project-info .tags span {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.projects .next-chapter {
  padding-top: 80px;
}
.how-i-work {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .how-i-work {
    padding-top: 120px;
  }
}
.how-i-work .section-title-overlay-text {
  top: 120px;
}
.how-i-work .process-list {
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .how-i-work .process-list {
    margin-top: 80px;
  }
}
.how-i-work .process-list .process {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-i-work .process-list .process::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgb(var(--black));
  height: 9px;
  width: 9px;
}
.how-i-work .process-list .process .circle,
.how-i-work .process-list .process .circle-even {
  position: relative;
}
.how-i-work .process-list .process .circle::before,
.how-i-work .process-list .process .circle-even::before,
.how-i-work .process-list .process .circle::after,
.how-i-work .process-list .process .circle-even::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
}
.how-i-work .process-list .process .circle::before,
.how-i-work .process-list .process .circle-even::before {
  top: 0;
  border: 1px solid rgb(var(--black));
  border-bottom: none;
  border-top-left-radius: 216px;
  border-top-right-radius: 216px;
}
.how-i-work .process-list .process .circle::after,
.how-i-work .process-list .process .circle-even::after {
  bottom: 0;
  border: 1px dashed rgb(var(--black));
  border-top: none;
  border-bottom-left-radius: 216px;
  border-bottom-right-radius: 216px;
}
.how-i-work .process-list .process .circle-even::before {
  border-style: dashed;
  border-bottom: none;
}
.how-i-work .process-list .process .circle-even::after {
  border-style: solid;
  border-top: none;
}
.how-i-work .process-list .process p {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.more-info {
  margin-bottom: 60px;
}
@media (min-width: 1200px) {
  .more-info {
    margin-bottom: 120px;
  }
}
.more-info p {
  font-size: 20px;
  font-weight: 500;
}
.more-info .line {
  height: 1px;
  width: 140px;
  background-color: rgb(var(--black));
}
.more-info .arrow-down {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgb(var(--black));
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 400ms;
}
.more-info .arrow-down:hover {
  background-color: #000;
  color: #fff;
}
.more-info .arrow-down:hover .waves-top-md,
.more-info .arrow-down:hover .waves-bottom-md {
  opacity: 0;
}
.testimonials {
  padding-top: 60px;
  padding-bottom: 40px;
}
.testimonials .section-title-overlay-text {
  top: 100px;
}
@media (min-width: 1200px) {
  .testimonials {
    padding-top: 120px;
  }
}
.testimonials .testimonial .testimonial-card {
  width:auto;
  height:auto;
  padding: 20px;
  border: 1px solid rgb(var(--black));
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
@media (min-width: 992px) {
  .testimonials .testimonial .testimonial-card {
    padding: 40px 32px;
  }
}
@media (min-width: 768px) {
  .testimonials .testimonial .testimonial-card {
    flex-direction: row;
  }
}
.testimonials .testimonial .testimonial-card .img-wrapper {
  width: 82px;
  height: 104px;
  position: relative;
  display: flex;
  align-items: center;
}
.testimonials .testimonial .testimonial-card .img-wrapper .inner {
  position: relative;
  width: 82px;
  height: 82px;
}
.testimonials .testimonial .testimonial-card .img-wrapper img {
  border-radius: 50%;
  border: 1px solid rgb(var(--black));
}
.testimonials .testimonial .testimonial-card .content h3,
.testimonials .testimonial .testimonial-card .content .h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}
.testimonials .testimonial .testimonial-card .content p {
  font-weight: 600;
}
.testimonials .testimonial .testimonial-card .content .desc {
  font-size: 20px;
  font-weight: 400;
}
.testimonials .testimonial .testi-prev,
.testimonials .testimonial .testi-next {
  background-color: rgba(0, 0, 0, 0);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgb(var(--black));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition-duration: 500ms;
}
.testimonials .testimonial .testi-prev:hover,
.testimonials .testimonial .testi-next:hover {
  background-color: rgb(var(--black));
  color: rgb(var(--white));
}
.testimonials .testimonial .s-scrollbar {
  height: 5px;
}
.testimonials .testimonial .s-scrollbar.swiper-scrollbar-horizontal {
  height: 3px;
  background: rgba(0, 0, 0, 0.4);
  position: initial;
  border-radius: 0;
  opacity: 0.4;
}
.testimonials .testimonial .swiper-scrollbar-drag {
  background: rgb(var(--black)) !important;
  height: 5px !important;
  border-radius: 0;
  opacity: 1;
  top: -1px !important;
}
.contact {
  padding-top: 60px 0;
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .contact {
    padding-top: 120px 0;
  }
}
.contact .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 992px) {
  .contact .contact-item {
    gap: 24px;
  }
}
.contact .contact-item .icon-box {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1px solid rgb(var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .contact .contact-item .icon-box {
    width: 80px;
    height: 80px;
  }
  .contact .contact-item .icon-box i {
    font-size: 2.2rem;
  }
}
.contact .contact-item .icon-box i {
  font-size: 1.6rem;
}
.contact .contact-item p {
  font-weight: 500;
}
@media (min-width: 992px) {
  .contact .contact-item p {
    font-size: 20px;
  }
}
.contact .social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgb(var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 400ms;
}
@media (min-width: 992px) {
  .contact .social-icons a {
    width: 60px;
    height: 60px;
  }
  .contact .social-icons a i {
    font-size: 32px;
  }
}
.contact .social-icons a:hover {
  background-color: #000;
  color: #fff;
}
.contact .social-icons a i {
  font-size: 24px;
}
.contact-form {
  max-width: 856px;
}
.contact-form.full-width {
  max-width: 100%;
}
.contact-form h4,
.contact-form .h4 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .contact-form h4,
  .contact-form .h4 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 80px;
  }
}
.contact-form label {
  font-size: 20px;
  font-weight: 500;
  color: rgb(var(--black));
}
.contact-form input,
.contact-form textarea {
  margin-top: 20px;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  padding-bottom: 16px;
  width: 100%;
  border-bottom: 1px solid rgb(var(--black));
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
}
.contact-form textarea {
  height: auto;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .contact-form textarea {
    margin-bottom: 60px;
  }
}
.contact-form .submit-btn {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgb(var(--black));
  display: flex;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  transition-duration: 400ms;
}
.contact-form .submit-btn:hover {
  background-color: #000;
  color: #fff;
}
.contact-form .submit-btn:hover .waves-top-md,
.contact-form .submit-btn:hover .waves-bottom-md {
  opacity: 0;
}
.color-switcher {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 105;
  display: flex;
  align-items: center;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate(200px, -50%);
}
.color-switcher.opened {
  transform: translate(0, -50%);
}
.color-switcher:dir(rtl) {
  flex-direction: row;
  transform: translate(-200px, -50%);
}
.color-switcher:dir(rtl).opened {
  transform: translate(0px, -50%);
}
.color-switcher .color-switcher-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 0px 8px 8px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(var(--white));
}
.color-switcher .color-switcher-btn i {
  font-size: 1.5rem;
}
.color-switcher .pallets {
  width: 200px;
  background-color: rgb(var(--white));
  padding: 20px;
  border-radius: 8px;
}
.color-switcher .pallets .color-btn {
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.color-switcher .pallets .ltr,
.color-switcher .pallets .rtl {
  border-radius: 4px;
}
.color-switcher .pallets .ltr.active,
.color-switcher .pallets .rtl.active {
  background-color: rgb(var(--primary));
}
.next-chapter:hover i {
  animation: updown 0.5s linear alternate-reverse infinite;
}
.next-chapter .page {
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}
.next-chapter .next {
  color: rgb(var(--black));
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
}
.next-chapter i {
  font-size: 28px;
  display: block;
  color: rgb(var(--black));
  transform: translateY(5px) scaleX(-1);
  align-self: flex-end;
  transition-duration: 500ms;
}
.section-title {
  padding-left: 32px;
  padding-top: 24px;
  position: relative;
  padding-bottom: 20px;
  --height: 0;
  margin-bottom: 42px;
}
@media (min-width: 1200px) {
  .section-title {
    padding-top: 36px;
    padding-left: 60px;
  }
}
.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  height: var(--height);
  width: 2px;
  background-color: rgb(var(--black));
}
.section-title:dir(ltr)::before {
  left: 0;
}
.section-title:dir(rtl) {
  padding-left: 0;
  padding-right: 32px;
}
@media (min-width: 1200px) {
  .section-title:dir(rtl) {
    padding-left: 0;
    padding-right: 60px;
  }
}
.section-title:dir(rtl)::before {
  right: 0;
}
.section-title h4,
.section-title .h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .section-title h4,
  .section-title .h4 {
    font-size: 24px;
  }
}
.section-title h2,
.section-title .h2 {
  font-size: 22px;
  font-weight: 600;
}
@media (min-width: 576px) {
  .section-title h2,
  .section-title .h2 {
    font-size: 28px;
  }
}
@media (min-width: 576px) {
  .section-title h2,
  .section-title .h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .section-title h2,
  .section-title .h2 {
    font-size: 55px;
  }
}
@media (min-width: 1400px) {
  .section-title h2,
  .section-title .h2 {
    font-size: 80px;
  }
}
.section-title-overlay-text {
  color: rgb(var(--black));
  font-family: Poppins;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  opacity: 0.05;
  position: absolute;
  text-align: left;
  top: 0;
  left: 0;
}
@media (min-width: 576px) {
  .section-title-overlay-text {
    font-size: 80px;
  }
}
@media (min-width: 992px) {
  .section-title-overlay-text {
    font-size: 100px;
  }
}
@media (min-width: 1400px) {
  .section-title-overlay-text {
    font-size: 120px;
  }
}
@media (min-width: 1800px) {
  .section-title-overlay-text {
    font-size: 160px;
  }
}
.section-title-overlay-text:dir(rtl) {
  left: auto;
  right: 0;
}
.waves-top,
.waves-top-sm,
.waves-bottom-md,
.waves-top-md,
.waves-bottom,
.waves-bottom-sm {
  transition-duration: 300ms;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.waves-top span,
.waves-top-sm span,
.waves-bottom-md span,
.waves-top-md span,
.waves-bottom span,
.waves-bottom-sm span {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border-top: 1px solid rgb(var(--black));
  animation: btnWavesTop 2.1s linear infinite;
}
.waves-top span:nth-child(2),
.waves-top-sm span:nth-child(2),
.waves-bottom-md span:nth-child(2),
.waves-top-md span:nth-child(2),
.waves-bottom span:nth-child(2),
.waves-bottom-sm span:nth-child(2) {
  animation-delay: 0.5s;
}
.waves-top span:nth-child(3),
.waves-top-sm span:nth-child(3),
.waves-bottom-md span:nth-child(3),
.waves-top-md span:nth-child(3),
.waves-bottom span:nth-child(3),
.waves-bottom-sm span:nth-child(3) {
  animation-delay: 1s;
}
.waves-top span:nth-child(4),
.waves-top-sm span:nth-child(4),
.waves-bottom-md span:nth-child(4),
.waves-top-md span:nth-child(4),
.waves-bottom span:nth-child(4),
.waves-bottom-sm span:nth-child(4) {
  animation-delay: 1.5s;
}
.waves-bottom span,
.waves-bottom-sm span {
  border-top: none;
  border-bottom: 1px solid rgb(var(--black));
  animation: btnWavesBottom 2.1s linear infinite;
}
.waves-top-md span {
  border-bottom: none;
  border-top: 1px solid rgb(var(--black));
  animation: btnWavesTopMd 2.1s linear infinite;
}
.waves-bottom-md span {
  border-top: none;
  border-bottom: 1px solid rgb(var(--black));
  animation: btnWavesBottomMd 2.1s linear infinite;
}
.waves-top-sm span {
  animation: btnWavesSmTop 3.2s linear infinite;
}
.waves-top-sm span:nth-child(2) {
  animation-delay: 0.8s;
}
.waves-top-sm span:nth-child(3) {
  animation-delay: 1.6s;
}
.waves-top-sm span:nth-child(4) {
  animation-delay: 2.4s;
}
.waves-bottom-sm span {
  animation: btnWavesSmBottom 3.2s linear infinite;
}
.waves-bottom-sm span:nth-child(2) {
  animation-delay: 0.8s;
}
.waves-bottom-sm span:nth-child(3) {
  animation-delay: 1.6s;
}
.waves-bottom-sm span:nth-child(4) {
  animation-delay: 2.4s;
}
.pb-120 {
  padding-bottom: 60px;
}
@media (min-width: 1200px) {
  .pb-120 {
    padding-bottom: 120px;
  }
}
.pb-60 {
  padding-bottom: 30px;
}
@media (min-width: 1200px) {
  .pb-60 {
    padding-bottom: 60px;
  }
}
@keyframes updown {
  0% {
    transform: translateY(12px) scaleX(-1);
  }
  100% {
    transform: translateY(5px) scaleX(-1);
  }
}
@keyframes btnWavesTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-4rem);
    opacity: 0;
  }
}
@keyframes btnWavesBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(4rem);
    opacity: 0;
  }
}
@keyframes btnWavesTopMd {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-2rem);
    opacity: 0;
  }
}
@keyframes btnWavesBottomMd {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(2rem);
    opacity: 0;
  }
}
@keyframes btnWavesSmTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-1rem);
    opacity: 0;
  }
}
@keyframes btnWavesSmBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@keyframes grow {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.modal-dialog {
  overflow-y: auto;
}
.modal-content {
  background-color: rgba(var(--primary), 0.8);
}
.modal-content .modal-body {
  background-color: rgb(var(--primary));
  max-width: 1296px;
  height: 100%;
  border-radius: 12px;
  margin: 30px auto;
  position: relative;
  padding: 16px;
}
@media (min-width: 768px) {
  .modal-content .modal-body {
    padding: 32px;
  }
}
@media (min-width: 1200px) {
  .modal-content .modal-body {
    padding: 48px;
    padding-top: 120px;
  }
}
.modal-content .modal-body .btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: rgb(var(--white));
  background-color: rgb(var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
}
@media (min-width: 1200px) {
  .modal-content .modal-body .btn-close {
    right: 48px;
    width: 36px;
    height: 36px;
  }
}
.modal-content .modal-body .btn-close:hover {
  transform: rotate(180deg);
}
.modal-content .modal-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 12px;
}
.modal-content .modal-body ul.bullet {
  list-style: disc;
}
@media (min-width: 1200px) {
  .modal-content .modal-body ul {
    margin-bottom: 60px;
  }
}
.modal-content .modal-body ul.list-plus li {
  position: relative;
}
.modal-content .modal-body ul.list-plus li::before {
  content: "+";
  position: absolute;
  left: -20px;
  top: 2px;
  color: #000;
  font-size: 20px;
  line-height: 1;
}
.modal-content .modal-body .outcome {
  border-bottom: 1px solid rgb(var(--black));
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .modal-content .modal-body .outcome {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.right-bar {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(var(--black), 0.1);
  background-color: rgba(var(--white), 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1200px) {
  .right-bar {
    padding: 32px;
    gap: 24px;
  }
}
.right-bar h6,
.right-bar .h6 {
  font-size: 18px;
}
.rotate-90 {
  transform: rotate(90deg);
}
.topics-inner {
  padding: 20px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border: 1px solid rgba(var(--black), 0.1);
}
@media (min-width: 1200px) {
  .topics-inner {
    margin-bottom: 60px;
    padding: 40px 60px;
    gap: 40px;
  }
}
.topics-inner .topic-box {
  padding: 16px;
  border-radius: 12px;
  width: 196px;
  border: 1px solid rgba(var(--black), 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background-color: rgba(var(--white), 0.1);
  transition-duration: 300ms;
}
@media (min-width: 1200px) {
  .topics-inner .topic-box {
    padding: 24px;
  }
}
.topics-inner .topic-box:hover {
  background-color: rgba(var(--black), 0.05);
}
.topics-inner .topic-box .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: rgb(var(--black));
}
.topics-inner .topic-box .icon i {
  font-size: 2rem;
  color: rgb(var(--primary));
}
.topics-inner .topic-box .icon span {
  position: absolute;
  top: 0;
  right: -13px;
  display: flex;
  transform: translate(-50%, -50%);
  background-color: rgb(var(--primary));
  font-size: 14px;
  width: 24px;
  height: 24px;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
.topics-inner .topic-box p {
  font-size: 20px;
  font-weight: 500;
}
.topic-index {
  padding: 16px;
  top: 80px;
  border-radius: 12px;
  background-color: rgba(var(--white), 0.1);
  border: 1px solid rgba(var(--black), 0.1);
}
@media (min-width: 1200px) {
  .topic-index {
    padding: 20px;
  }
}
.topic-index .blog-topic {
  border: 1px solid rgba(var(--black), 0.1);
  padding: 12px;
  cursor: pointer;
  border-radius: 12px;
  transition-duration: 300ms;
}
.topic-index .blog-topic:hover {
  background-color: rgba(var(--black), 0.05);
}
.topic-index .blog-topic .title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topic-index .blog-topic .title span {
  width: 28px;
  height: 28px;
  display: flex;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  background-color: rgb(var(--black));
  color: rgb(var(--white));
}
.topic-index .blog-topic .title p {
  font-size: 18px;
}
.topic-index .blog-topic.active .list {
  max-height: 500px;
}
.topic-index .blog-topic .list {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s linear;
}
.topic-index .blog-topic .list .list-inner {
  display: flex;
  border-right: 1px solid rgba(var(--black), 0.1);
  list-style-type: none;
  padding-right: 20px;
  margin-top: 20px;
  margin-right: 12px;
  flex-direction: column;
  gap: 8px;
}
.topic-index .blog-topic .list .list-inner li a {
  font-size: 14px;
}
.pagination {
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 1200px) {
  .pagination {
    margin-top: 50px;
    margin-bottom: 100px;
  }
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(var(--white));
  color: rgb(var(--white));
  font-size: 18px;
  font-weight: 500;
  transition-duration: 300ms;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.pagination a:hover {
  background-color: rgb(var(--black));
  color: #fff;
}
.blog-details {
  padding-bottom: 60px;
}
@media (min-width: 1200px) {
  .blog-details {
    padding-bottom: 100px;
  }
}
.details-left {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.details-left .info-box {
  border-radius: 12px;
  padding: 16px;
  background-color: rgba(var(--white), 0.1);
  border: 1px solid rgba(var(--black), 0.1);
}
@media (min-width: 1400px) {
  .details-left .info-box {
    padding: 24px;
  }
}
.details-left .info-box h4,
.details-left .info-box .h4 {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(var(--black), 0.6);
}
.table-of-content {
  padding-right: 16px;
  border-right: 1px solid rgba(var(--black), 0.2);
}
.table-of-content a.active {
  position: relative;
  font-weight: 500;
}
.table-of-content a.active::before {
  content: "";
  position: absolute;
  top: 0;
  right: -17px;
  width: 2px;
  height: 100%;
  background-color: rgb(var(--black));
}
.details-container {
  max-width: 856px;
  margin: 0 auto;
}
.details-content {
  margin-top: 80px;
  padding: 12px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(var(--black), 0.15);
}
@media (min-width: 1200px) {
  .details-content {
    padding: 24px;
  }
}
@media (min-width: 1400px) {
  .details-content {
    padding: 40px;
  }
}
.blog-video .youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  background-color: rgb(var(--white));
}
.quote {
  padding: 32px 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(var(--black), 0.6);
  border-bottom: 1px solid rgba(var(--black), 0.6);
}
.quote p {
  font-size: 24px;
  font-weight: 500;
}
.share {
  border-top: 1px solid rgba(var(--black), 0.3);
  border-bottom: 1px solid rgba(var(--black), 0.3);
}
.share form {
  border-radius: 4px;
  padding: 4px;
  display: flex;
  border: 1px solid rgba(var(--black), 0.2);
  justify-content: space-between;
}
.share form input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  padding: 10px;
}
.share form input:focus {
  outline: none;
}
.share form button {
  flex-shrink: 0;
  background-color: rgb(var(--black));
  padding: 12px 20px;
  border-radius: 4px;
  color: rgb(var(--white));
  font-weight: 500;
  font-size: 20px;
}
.next-prev {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1200px) {
  .next-prev {
    gap: 60px;
  }
}
.next-prev .divider {
  height: 66px;
  width: 1px;
  background-color: rgba(var(--black), 0.2);
}
.next-prev .article-card {
  display: flex;
  align-items: center;
  max-width: 360px;
  gap: 16px;
  padding: 20px 20px 20px 20px !important;
  transition-duration: 300ms;
  border-radius: 12px;
  border: 1px solid rgba(var(--black), 0.15);
  background-color: rgba(var(--white), 0.1);
}
.next-prev .article-card p {
  opacity: 0.6;
}
.next-prev .article-card.right {
  padding: 20px 0 20px 20px;
}
.next-prev .article-card.right button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.next-prev .article-card:hover {
  background-color: rgb(var(--black));
}
.next-prev .article-card:hover p,
.next-prev .article-card:hover h5,
.next-prev .article-card:hover .h5 {
  color: rgb(var(--white));
}
.next-prev .article-card button {
  height: 62px;
  width: 62px;
  border: none;
  font-size: 1.5rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px;
  border-radius: 12px;
  background-color: rgba(var(--white), 0.1);
  border: 1px solid rgba(var(--black), 0.1);
  align-items: center;
  transition-duration: 300ms;
}
.blog-card .img-wrapper {
  flex-shrink: 0;
}
.blog-card img {
  transition-duration: 300ms;
}
.blog-card:hover {
  background-color: rgba(var(--black), 0.03);
}
.blog-card:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .blog-card img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .blog-card {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .blog-card {
    gap: 32px;
  }
}
.blog-card .details {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--black), 0.2);
}
.newsletter {
  background-color: rgba(var(--white), 0.1);
  padding: 60px 0;
}
.newsletter .content {
  max-width: 856px;
  margin: 0 auto;
}
.newsletter .content form {
  display: flex;
  gap: 12px;
}
.newsletter .content form input {
  width: 100%;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  border: 1px solid rgba(var(--black), 0.2);
}
.newsletter .content form input:focus {
  outline: none;
}
.newsletter .content form button {
  background-color: rgb(var(--black));
  color: rgb(var(--white));
  padding: 12px 20px;
  border-radius: 4px;
  border: none;
  flex-shrink: 0;
}
.newsletter .content input[type="checkbox"] {
  accent-color: rgb(var(--black));
  transform: scale(1.3);
}
footer {
  background-color: rgba(var(--black), 0.06);
  padding: 32px 0;
}
footer a {
  text-decoration: underline;
}
.underlined {
  text-decoration: underline;
}
.header-blog {
  padding: 14px 0;
  width: 100%;
  z-index: 10;
  left: 0;
  right: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: fixed;
}
.header-blog img {
  max-width: 100%;
}
.connect {
  border: 1px solid rgba(var(--black), 0.2);
  padding: 4px;
  display: flex;
  margin-bottom: 40px;
  border-radius: 4px;
  gap: 12px;
}
.connect input {
  width: 100%;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  border: none;
}
.connect input:focus {
  outline: none;
}
.connect button {
  background-color: rgb(var(--black));
  color: rgb(var(--white));
  padding: 12px 20px;
  border-radius: 4px;
  border: none;
  flex-shrink: 0;
}
