/*=== Variable ==========================*/
:root {
  --heading-color: #21a1e2;
  --primary-color: #181b1d;
  --secondary-color: #4e4e4e;
  --text-color3: #4e4e4e;
  --text-color4: #181b1d;
  --text-color5: #21a1e2;
  --inner-text-color: #d4e0f7;
  --btn-text-color: #181b1d;
  --hover-btn-text-color: #ffffff;
  --body-bg-color: #ffffff;
  --primary-bg: #ffffff;
  --secondary-bg: linear-gradient(
    180deg,
    #fff,
    rgba(255, 255, 255, 0.6) 59%,
    transparent
  );
  --bg-color3: transparent;
  --bg-color4: #e0e0e0; /*border color*/
  --bg-color5: transparent; /*border color*/
  --bg-color6: transparent;
  --btn-bg-color: #181b1d;
  --dark-light-btn: #21a1e2;
  --border-1: #e0e0e0;
  --border-2: #e0e0e0;
  --border-3: #e0e0e0;
  --border-4: #21a1e2;
  --border-5: #e0e0e0;
}

/* Dark Theme Active Variable
---------------------------------- */
.dark-theme-active {
  --heading-color: #4fd365;
  --primary-color: #ffffff;
  --secondary-color: #999999;
  --text-color3: #6d6d6d;
  --text-color4: #dadada;
  --text-color5: #4fd365;
  --inner-text-color: #296dff28;
  --btn-text-color: #ffffff;
  --hover-btn-text-color: #ffffff;
  --body-bg-color: #000000;
  --primary-bg: #050505;
  --secondary-bg: linear-gradient(
    180deg,
    #000,
    rgba(0, 0, 0, 0.8) 59%,
    transparent
  );
  --bg-color3: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.376) 60%,
    rgb(0, 0, 0) 100%
  );
  --bg-color4: rgba(39, 39, 39, 0.4); /*border color*/
  --bg-color5: #141414; /*border color*/
  --bg-color6: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.376) 60%,
    rgb(0, 0, 0) 100%
  );
  --about-bg: url(../images/about-bg.jpg);
  --btn-bg-color: rgb(104, 154, 248, 0.1);
  --dark-light-btn: #4fd365;
  --border-1: rgba(39, 39, 39, 0.4);
  --border-2: rgb(15, 15, 15);
  --border-3: rgb(14, 14, 14);
  --border-4: #4fd365;
  --border-5: transparent;
}

* {
  margin: 0px;
  padding: 0px;
  font-family: poppins;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: poppins;
  background-color: var(--body-bg-color);
}
::-moz-selection {
  background-color: #3330fa;
  color: var(--primary-color);
}
::selection {
  background-color: #3330fa;
  color: var(--primary-color);
}
/*===hide-Scroll-Bar==========================*/
body::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
/*scroll-progress============================*/
#progress {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: fixed;
  bottom: 25px;
  right: 25px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 105;
}
#progress-value {
  display: block;
  height: calc(100% - 5px);
  width: calc(100% - 5px);
  background-color: #111111;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0px;
}
/*==Navigation====================================*/
.navigation {
  z-index: 200;
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: var(--secondary-bg);
}
.logo-container {
  max-width: 1112px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo {
  color: var(--primary-color);
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: Dancing Script;
}
.dark-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--dark-light-btn);
  border-radius: 10px;
  border: 0;
  outline: 0;
  cursor: pointer;
}
/*==main===============================*/
#main {
  max-width: 1110px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 150px auto 20px auto;
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 60px;
  position: relative;
}
/* Profile shadow layer for main profile image */
.main-img {
  position: relative;
  max-width: 350px;
  max-height: 700px;
  width: 100%;
}
.profile-shadow {
  position: absolute;
  top: 18px;   /* offset for shadow */
  left: 18px;  /* offset for shadow */
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%); /* blue gradient */
  z-index: 0;
  transition: background 0.3s;
}
.main-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  z-index: 1;
}
/* Dark mode: kelly/bright green gradient shadow */
.dark-theme-active .profile-shadow {
  background: linear-gradient(135deg, #4fd365 0%, #00ff99 100%);
}
.main-text strong {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.65rem;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.main-text {
  width: 400px;
  position: relative;
}
.main-inner-text::before {
  content: "Data Analyst";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -30px;
  font-size: 7rem;
  color: var(--inner-text-color);
  line-height: 7rem;
  font-weight: 700;
  z-index: -1;
}
.main-text h1 {
  color: var(--heading-color);
  font-size: 5rem;
  line-height: 4rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.main-text h1 span {
  color: var(--text-color5);
}
.main-text p {
  color: var(--secondary-color);
  margin: 30px 0px;
  letter-spacing: 1px;
  font-size: 1rem;
}
.main-text a,
.summery-heading a,
.about-heading a,
.dribble-btn,
.contact-btn {
  color: var(--btn-text-color);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 6px;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border-4);
  padding: 10px 10px 10px 0px;
  -webkit-transition: all 508ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 508ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 508ms cubic-bezier(0.77, 0, 0.175, 1);
}
.main-text a:hover,
.summery-heading a:hover,
.dribble-btn:hover,
.btn-c a,
.contact-btn:hover,
.about-heading a:hover {
  color: var(--hover-btn-text-color);
  padding: 10px;
  background-color: var(--btn-bg-color);
  -webkit-transition: all 508ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 508ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 508ms cubic-bezier(0.77, 0, 0.175, 1);
}
/*==summery===================================*/
#summery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1112px;
  width: 100%;
  margin: 80px auto 0px auto;
}
.summery-heading {
  max-width: 470px;
  width: 100%;
}
.summery-details {
  max-width: 470px;
  width: 100%;
  border: 1px solid var(--border-1);
  padding: 20px;
}
.summery-details .summery-link {
  color: var(--text-color5);
}
.summery-heading strong {
  color: var(--text-color5);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.summery-heading h2 {
  color: var(--primary-color);
  font-size: 2.37rem;
  line-height: 2.9rem;
  margin: 20px 0px;
}
.summery-details p {
  color: var(--secondary-color);
  font-size: 1rem;
}
/*==languages=========================*/
#languages {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  max-width: 1112px;
  width: 100%;
  margin: 80px auto 50px auto;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-2);
}
.language-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.language-box h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  letter-spacing: 1px;
  font-weight: 600;
}
.language-box h3 span {
  color: var(--text-color5);
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.3rem;
}
.language-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--primary-bg);
  padding: 10px 20px;
  border: 1px solid var(--border-1);
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.language-box ul li {
  margin-right: 20px;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.language-box ul li img {
  margin-right: 5px;
}
.language-box ul li img.dune-logo {
  width: 22px;
  height: 22px;
}
.language-box ul li span {
  color: var(--text-color4);
}
/*==projects================================*/
#projects {
  width: 100%;
  margin: 80px auto;
  padding-bottom: 50px;
  position: relative;
}
#projects::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0px;
  max-width: 1112px;
  width: 100%;
  height: 1px;
  background-color: var(--bg-color4);
}
.project-heading {
  width: 100%;
  max-width: 1112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}
.project-heading h3 {
  font-size: 3.1rem;
  color: var(--heading-color);
  font-weight: 600;
}
.project-heading h3 span {
  color: var(--text-color5);
  font-size: 1.8rem;
}
.swiper-slide .projects-slide:not(:last-child) {
  margin-bottom: 30px;
}
.projects-slide .projects-slide-img {
  border-radius: 10px;
}
.mySwiper {
  margin: 50px 0px;
  max-width: 1112px;
}
.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  margin: 10px 0px 0px 10px !important;
}
.slider-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 10px 0px 10px auto;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: 800;
  color: var(--primary-color);
}
.dribble-btn-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*==career-education=========================*/
#career-education {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1112px;
  width: 100%;
  margin: 20px auto;
  position: relative;
}
#career-education::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 30px);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 1px;
  background-color: var(--bg-color5);
}
.c-box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px 0px;
  width: 100%;
}

.career h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.1rem;
  color: var(--heading-color);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}
.career span {
  color: var(--text-color5);
  font-size: 1.6rem;
  margin-left: 10px;
}
.c-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-top: 20px;
}
.c-box h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 3px solid var(--border-4);
  padding-left: 10px;
  line-height: 1.3rem;
}
.c-box strong {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 10px;
}
.c-box span {
  color: var(--text-color3);
  font-size: 1rem;
  letter-spacing: 2px;
  padding-left: 10px;
  margin-top: 6px;
}
.c-box p {
  color: var(--secondary-color);
}
.btn-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0px auto 50px auto;
  padding-bottom: 50px;
  max-width: 1112px;
  border-bottom: 1px solid var(--border-1);
}
.btn-c a:hover {
  opacity: 0.8;
}
/*==about===============================*/
#about {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  background-image: var(--about-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 50px 0px;
}
#about::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* background: rgb(32, 32, 32); */
  background: var(--bg-color6);
}
#about::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* background: rgb(32, 32, 32); */
  background: var(--bg-color3);
}
.about-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1112px;
  width: 100%;
  z-index: 100;
  position: relative;
}
.about-heading {
  width: 380px;
}
.about-heading strong {
  color: var(--text-color5);
  font-size: 0.87rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-heading h3 {
  color: var(--primary-color);
  font-size: 2.1rem;
  margin: 15px 0px;
  line-height: 2.8rem;
  font-weight: 600;
}
.about-details {
  width: 465px;
}
.about-details p {
  color: var(--secondary-color);
  margin: 10px 0px;
}
/*==mentions========================*/
#mentions {
  margin: 50px 0 60px;
}
.mentions-container {
  width: 100%;
  max-width: 1112px;
  margin: 0 auto;
}
.mentions {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.mentions h3 {
  color: var(--heading-color);
  font-size: 2.37rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.mentions p {
  color: var(--secondary-color);
  max-width: 640px;
  margin: 15px 0px;
  letter-spacing: 1px;
}
.mentions-card {
  padding: 30px 20px;
  border-radius: 5px;
  border: 1px solid var(--border-5);
}
.mentions-card .mentions-logo {
  width: 60px;
}
/*==contact=============================*/
#contact {
  width: 100%;
  max-width: 1112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px auto;
  text-align: center;
}
.contact strong {
  color: var(--text-color5);
  font-size: 0.87rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.contact h3 {
  color: var(--heading-color);
  font-size: 2.37rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.contact p {
  color: var(--secondary-color);
  max-width: 640px;
  margin: 15px 0px;
  letter-spacing: 1px;
}
.contact p b {
  color: var(--primary-color);
  font-weight: 500;
}
.social {
  margin-top: 40px;
  padding-left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.social .social-item {
  margin: 10px 20px;
}
/*==footer========================*/
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1112px;
  width: 100%;
  margin: 100px auto 0px auto;
  padding: 20px;
  text-align: center;
}
footer span {
  color: var(--text-color3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
footer .footer-logo {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 1.3rem;
  font-family: Dancing Script;
}
.fix {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  overflow-x: hidden;
}
/*==making-resposive===============================*/
@media (max-width: 1160px) {
  #main,
  #summery,
  #languages,
  #projects,
  .dribble-btn-c,
  #career-education,
  .btn-c,
  .about-container,
  #contact,
  .logo-container,
  .mentions-container {
    width: 90%;
  }
}
@media (max-width: 940px) {
  #career-education {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #career-education::before {
    display: none;
  }
  .career {
    width: 100%;
    border-bottom: 1px solid var(--border-1);
    padding-bottom: 40px;
  }
  .edu {
    margin-top: 50px;
    border-bottom: none;
    padding-bottom: 20px;
  }
  .btn-c {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .btn-c a {
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 850px) {
  #main {
    margin-top: 110px;
    padding: 40px 0px 70px 0px;
    min-height: 550px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-img {
    margin-top: 50px;
  }
  .main-text {
    max-width: 100%;
    width: 100%;
  }
  .main-text h1 {
    font-size: 4rem;
  }
  #summery {
    flex-direction: column;
  }
  .summery-details,
  .summery-heading {
    max-width: 100%;
  }
  .summery-details {
    margin-top: 40px;
  }
  #languages {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .about-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-details,
  .about-heading {
    width: 100%;
    max-width: 100%;
  }
  .about-details {
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
  .navigation {
    height: 70px;
  }
  .logo-container {
    width: 85%;
  }
  .logo {
    font-size: 1.8rem;
  }
  #main {
    margin-top: 0px;
    padding-top: 40px;
  }
  .main-inner-text::before {
    font-size: 4rem;
    line-height: 3.5rem;
  }
  .main-img {
    margin-top: 40px;
  }
  .main-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .main-text strong {
    font-size: 1.3rem;
  }
  .main-text h1 {
    font-size: 2.3rem;
    line-height: 2.3rem;
  }
  .dribble-btn,
  .contact-btn,
  .about-heading a {
    padding: 10px;
    background-color: rgb(104, 154, 248, 0.1);
  }
  .dribble-btn:hover,
  .contact-btn:hover,
  .about-heading a:hover,
  .btn-c a:hover {
    color: var(--text-color5);
  }
  .summery-heading strong {
    font-size: 1rem;
  }
  .summery-heading h2 {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  .summery-heading a,
  .dribble-btn,
  .contact-btn,
  .about-heading a {
    padding: 10px;
    background-color: rgb(104, 154, 248, 0.1);
  }
  .summery-details {
    padding: 10px;
  }
  .language-box h3 {
    font-size: 1.2rem;
  }
  .project-heading h3,
  .career h3,
  .about-heading h3,
  .contact h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .process-box strong {
    font-size: 1.3rem;
  }
  .project-box {
    height: 330px;
  }
  .c-box h4 {
    font-size: 1.2rem;
  }
  .c-box strong {
    margin-top: 4px;
    font-size: 0.9rem;
  }
  .social .social-item {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 425px) {
  .mentions-row > * {
    width: 100%;
  }
}
@media (max-width: 410px) {
  .project-box {
    height: 230px;
  }
}
@media (max-width: 375px) {
  .social .social-item {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.project-box-bottom {
  text-align: center;
  padding: 20px 0px;
}
.project-box-top img {
  -webkit-box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.249),
    0 8px 10px -6px rgba(255, 255, 255, 0.298);
          box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.249),
    0 8px 10px -6px rgba(255, 255, 255, 0.298);
}
.project-box-bottom img {
  max-width: 150px;
  text-align: center;
  margin: auto;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1112px;
  }
}
/* Overlay for project images in swiper */
.projects-slide {
  position: relative;
  overflow: hidden;
}
.projects-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 10px;
  z-index: 2;
}
.projects-slide:hover .overlay {
  opacity: 1;
}
.projects-slide-img {
  display: block;
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}