@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");* {
  border: none;
  box-sizing: border-box;
  font-family: Poppins,sans-serif;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 0;
  resize: none;
  scroll-behavior: smooth;
  text-decoration: none
}
:root{
  --bg-color:#e3edf7;
  --gradient-white-bg:linear-gradient(0deg,#fff 0%,#edf4fa 51%,#e5eef7 100%);
  --gradient-color-bg:linear-gradient(180deg,rgba(247,1,120,1)0%,
                                              rgb(230, 57, 34)51%,
                                              rgba(99,13,178,1)100%);
  --main-color:#e6006d;
  --font-color:#90979f;
  --hover-box-shadow:rgba(0,0,0,0.19)0px 10px 20px,
                     rgba(0,0,0,0.23)0px 6px 6px;     
  --gradient-white-bg2:linear-gradient(98deg,#e5eef7 0%,#fff 100%);                                                          
}
:root {
  --first: #fff;
  --second: #c3bef7;
  --third: #d500ff;
  --fourth: #f1592a;
  --fifth: #fff7f7;
  --sixth: #2b2a29;
}
/* ===== LOADER ===== */
#page-loader{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.loader-content{
  text-align:center;
}

/* Logo + dots row */
.logo-row{
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-row img{
  width:120px;
  margin-right:10px; /* thoda gap dots ke liye */
}

/* Dots animation */
.dots span{
  color:#000;
  font-size:100px;
  font-weight:bold;
  margin-left:4px;
  opacity:0;
  animation:dots 1.5s infinite;
}

.dots span:nth-child(1){ animation-delay:0s; }
.dots span:nth-child(2){ animation-delay:0.3s; }
.dots span:nth-child(3){ animation-delay:0.6s; }

@keyframes dots{
  0%{opacity:0;}
  50%{opacity:1;}
  100%{opacity:0;}
}
a{
  color: gray !important;
  text-decoration: none !important;
}
a:hover{
  color: var(--fourth) !important;
}
html {
  font-size: 62.5%;
  overflow-x: hidden
}

@media only screen and (max-width: 900px) {
  * {
      scroll-margin:6rem
  }

  html {
      font-size: 56%;
      overflow-x: hidden
  }
}

@media only screen and (max-width: 700px) {
  * {
      scroll-margin:6rem
  }

  html {
      font-size: 50%;
      overflow-x: hidden
  }
}

::selection {
  background: var(--fourth);
  color: var(--first)
}

body {
  background-color: var(--first);
  color: var(--sixth);
  overflow-x: hidden
}

body,button {
  font-size: 1.6rem !important;
}

button {
  align-self: flex-start;
  background-color: var(--fourth);
  border: none;
  border: .2rem solid var(--fourth);
  border-radius: .5rem;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 2px 6px 2px rgba(60,64,67,.15);
  cursor: pointer;
  padding: 1rem 3rem;
  text-transform: uppercase;
  transition: .2s ease-in-out
}

a button {
  color: var(--first)
}
.bc{
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
a button:hover {
  background-color: transparent;
  border: .2rem solid var(--fourth);
  box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
  color: var(--fourth)
}
 button:hover {
  background-color: transparent;
  border: .2rem solid var(--fourth);
  box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
  color: var(--fourth)
}


button i {
  animation: arrowMove 1s infinite;
  margin-left: 1rem
}

@keyframes arrowMove {
  0% {
      transform: translateX(0)
  }

  40% {
      transform: translateX(.4rem)
  }

  90% {
      transform: translateX(-.5rem)
  }

  to {
      transform: translateX(0)
  }
}

h1 {
  color: var(--fourth) !important;
  font-size: 4rem !important;
  font-weight: 500 !important;
  margin-bottom: 3rem !important;
  position: relative;
  text-align: center;
}

h1:before {
  background-color: var(--sixth);
  border-radius: 5rem;
  bottom: -.2rem;
  content: "";
  height: .4rem;
  left: 35%;
  position: absolute;
  width: 50%
}

h1 i {
  color: var(--sixth)
}
.about-content h2{
  font-size: 24px !important;
  font-weight: bold;
}
.about-content h4{
  font-size: 16px !important;
  font-weight: bold;
}
.container {
  margin: 0 auto;
  max-width: 130rem;
  padding: 0 3rem
}

@media only screen and (max-width: 700px) {
  body {
      scroll-margin:10rem
  }
}

.navbar {
  justify-content: space-between !important;
  width: 100% !important;
}

.navbar,header {
  align-items: center !important;
  display: flex !important;
}

header {
  background: var(--first);
  box-shadow: 0 .1rem .4rem rgba(0,0,0,.2);
  height: 80px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 100
}

header .logo img {
  display: flex;
  transition: all .3s ease-in-out;
  width: 95px
}

header nav ul {
  display: flex
}

header nav ul li {
  cursor: pointer
}

header nav ul li a {
  border: .3rem solid transparent;
  color: var(--sixth) !important;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 .8rem;
  padding: .5rem 0;
  position: relative;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
  text-decoration: none;
}

header nav ul li:hover a {
  transform: translateY(-.6rem)
}

header nav ul li a.active,header nav ul li:hover a {
  border-bottom: .3rem solid var(--fourth);
  color: var(--fourth)
}

nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 99;
}

/* Dropdown links */
nav ul li .dropdown-menu li a {
    padding: 8px 16px;
    color: #333;
    white-space: nowrap;
}

nav ul li .dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #000;
}

/* Show dropdown on hover */
nav ul li:hover > .dropdown-menu {
    display: block;
}

/* Optional: arrow styling */
nav ul li.dropdown > a::after {
    content: " ▼";
    font-size: 12px;
    transition: transform 0.2s ease;
}

/* Rotate arrow when hovered */
nav ul li.dropdown:hover > a::after {
    transform: rotate(180deg);
}

#hamburger {
  cursor: pointer;
  display: none;
  font-size: 3rem
}

.fa-bars {
  animation: rotateBack .2s linear
}

@keyframes rotateBack {
  0% {
      transform: rotate(0deg)
  }

  to {
      transform: rotate(-180deg)
  }
}

@media only screen and (max-width: 900px) {
  #hamburger {
      display:block
  }

  header nav {
      background: #fff;
      height: 100vh;
      left: -100%;
      padding: 3rem;
      position: fixed;
      text-align: center;
      top: 6rem;
      transition: .3s;
      width: 60%
  }

  header nav.checked {
      left: 0
  }

  .fa-times {
      animation: rotateFront .3s linear
  }

  @keyframes rotateFront {
      0% {
          transform: rotate(0deg)
      }

      to {
          transform: rotate(1turn)
      }
  }

  header nav ul {
      display: block
  }

  header nav ul li a {
      margin: .7rem 0
  }
}

#home {
  background-color: var(--fifth)
}

.home-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh
}

.home-wrapper .home-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 60%
}

.home-wrapper .home-content .Intro {
  margin: -3rem 0
}

.home-wrapper .home-content h2 {
  color: var(--sixth);
  font-size: 5rem !important;
  font-weight: bold;
}

.home-wrapper .home-content h2 .wave i {
  color: var(--fourth);
  font-size: 4.5rem;
  margin-left: .5rem;
  transform: rotate(-45deg) rotateY(180deg)
}

.home-wrapper .home-content h2 .wave {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: wave-animation;
  display: inline-block;
  transform-origin: 85% 85%
}

@keyframes wave-animation {
  0% {
      transform: rotate(0deg)
  }

  10% {
      transform: rotate(14deg)
  }

  20% {
      transform: rotate(-8deg)
  }

  30% {
      transform: rotate(14deg)
  }

  40% {
      transform: rotate(-4deg)
  }

  50% {
      transform: rotate(10deg)
  }

  60% {
      transform: rotate(0deg)
  }

  to {
      transform: rotate(0deg)
  }
}

.home-wrapper .home-content h2 .name {
  color: var(--fourth)
}

.home-wrapper .home-content p {
  align-self: flex-start;
  font-size: 3rem;
  font-weight: 600
}

.home-wrapper .home-content p .text-type {
  color: var(--fourth)
}


.home-wrapper .social-icons {
  display: flex;
  gap: 2rem
}

.home-wrapper .home-content ul li {
  align-items: center;
  background-color: var(--sixth);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 5rem;
  justify-content: center;
  width: 5rem
}

.home-wrapper .home-content ul li a {
  color: var(--fourth) !important;
  font-size: 2.5rem;
  transition: all .1s ease-in-out
}

.home-wrapper .home-content ul li:hover a {
  color: var(--first) !important;
}

.home-wrapper .home-content ul li:hover {
  border: none
}

.home-wrapper .home-content ul li:first-child:hover,.home-wrapper .home-content ul li:nth-child(2):hover,.home-wrapper .home-content ul li:nth-child(3):hover,.home-wrapper .home-content ul li:nth-child(4):hover,.home-wrapper .home-content ul li:nth-child(5):hover {
  background-color: var(--fourth)
}

.home-wrapper .home-content ul li:nth-child(6):hover {
  background-color: #000
}

.home-wrapper .home-logo {
  align-items: center;
  animation: upDown 2s infinite alternate;
  display: flex;
  justify-content: center;
  width: 40%
}

@keyframes upDown {
  0%,to {
      transform: translateY(0)
  }

  to {
      transform: translateY(-4rem)
  }
}

.home-wrapper .home-logo img {
  width: 40rem
}

.workLinkBtn {
  width: 17.8rem
}

@media only screen and (max-width: 900px) {
  .home-wrapper {
      flex-direction:column;
      padding-top: 10rem
  }

  .home-wrapper .home-content {
      width: 100%
  }

  .home-wrapper .home-logo {
      margin: 8rem 0;
      width: 50rem
  }

  .home-wrapper .home-logo img {
      width: 100%
  }
}

@media only screen and (max-width: 700px) {
  .home-wrapper .home-logo {
      width:40rem
  }
}

.about-wrapper {
  flex-direction: column;
  margin-top: 4rem;
  min-height: 100vh
}

.about-wrapper,.about-wrapper .about-container {
  align-items: center;
  display: flex;
  justify-content: center
}

.about-wrapper .about-container {
  gap: 7rem
}

.about-wrapper .about-container .about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%
}

.about-wrapper .about-container .about-content .data {
  margin: 2rem 0;
  text-align: justify
}

.about-wrapper .about-container .about-content span {
  color: var(--fourth)
}

.about-wrapper .about-container .about-content span small {
  color: var(--sixth)
}

.about-wrapper .about-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 40%
}

.about-wrapper .about-logo img {
  width: 38rem
}

.about-wrapper .resumeBtn {
  margin-top: 2rem
}

.about-wrapper .resumeBtn i {
  animation: none
}

.resumeLinkBtn {
  width: 15rem
}

@media only screen and (max-width: 900px) {
  .about-wrapper {
      margin-top:2rem
  }

  .about-wrapper .about-container {
      flex-direction: column
  }

  .about-wrapper .about-container .about-content {
      /* margin-top: -8rem; */
      width: 100%
  }

  .about-wrapper .about-container .about-logo {
      margin: 2rem 0 5rem;
      width: 65rem
  }

  .about-wrapper .about-container .about-logo img {
      width: 64%
  }
}

@media only screen and (max-width: 700px) {
  .about-wrapper .about-container .about-logo {
      margin-top:1rem;
      width: 100%
  }

  .about-wrapper .about-container .about-content {
      width: 100%
  }

  .about-wrapper .about-container .about-logo img {
      width: 70%
  }
}
@media (max-width: 480px) {
    .home-wrapper .home-content p {
        height: 45px;
    }
    .home-wrapper .home-content{
      padding-top: 50px;
    }
}

.education-wrapper {
  min-height: 100vh
}

.education-wrapper,.education-wrapper .education-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.education-wrapper .education-container {
  min-width: 80rem
}

.education-wrapper .education-container .education-box {
  padding: 2rem 5rem;
  position: relative;
  width: 40rem
}

.education-wrapper .education-container .education-box:after {
  background-color: var(--sixth);
  content: "";
  height: 100%;
  position: absolute;
  right: -.2rem;
  top: 0;
  width: .4rem;
  z-index: -6;
  box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
}

.education-wrapper .education-container .education-box:nth-child(2):after {
  left: -.2rem
}

.education-wrapper .education-container .education-box:first-child {
  align-self: flex-start
}

.education-wrapper .education-container .education-box:nth-child(2) {
  align-self: flex-end;
  margin-left: -2rem
}

.education-wrapper .education-container .education-box:nth-child(3) {
  align-self: flex-start
}

.education-wrapper .education-container .education-box i {
  background-color: var(--fifth);
  border: .5rem solid var(--fourth);
  border-radius: 50%;
  font-size: 2rem;
  height: 5rem;
  line-height: 4rem;
  position: absolute;
  right: -6.5%;
  text-align: center;
  top: 15%;
  width: 5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
}

.education-wrapper .education-container .education-box:nth-child(2) i {
  left: -6.5%
}

.education-wrapper .education-container .education-box .box {
  border: .4rem solid var(--fourth);
  border-radius: 1rem;
  padding: 0 1rem;
  position: relative;

box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
}

.education-wrapper .education-container .education-box .box .arrow {
  background-color: var(--fourth);
  clip-path: polygon(50% 0,0 100%,100% 100%);
  content: "";
  height: 1.8rem;
  position: absolute;
  right: -9%;
  top: 15%;
  transform: rotate(90deg);
  width: 3rem
}

.education-wrapper .education-container .education-box:nth-child(2) .box .arrow {
  left: -9%;
  transform: rotate(270deg)
}

@media only screen and (max-width: 700px) {
  .education-wrapper .education-container {
      padding-right:5rem
  }

  .education-wrapper .education-container .education-box:first-child {
      align-self: center
  }

  .education-wrapper .education-container .education-box:nth-child(2) {
      align-self: center;
      margin-left: 0
  }

  .education-wrapper .education-container .education-box:nth-child(3) {
      align-self: center
  }

  .education-wrapper .education-container .education-box:nth-child(2):after {
      left: 99.5%
  }

  .education-wrapper .education-container .education-box:nth-child(2) .box .arrow {
      left: 99%;
      transform: rotate(90deg)
  }

  .education-wrapper .education-container .education-box:nth-child(2) i {
      left: 93.5%
  }
}

.skills-wrapper {
  flex-direction: column;
  min-height: 100vh;
  scroll-margin: 3rem
}

.skills-wrapper,.skills-wrapper .skills-container {
  align-items: center;
  display: flex;
  justify-content: center
}

.skills-wrapper .skills-container {
  flex-wrap: wrap;
  gap: 5rem;
  max-width: 100rem;
  padding: 1rem
}

.skills-wrapper .skills-container .skill {
  align-items: center;
  color: var(--first);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 10rem;
  justify-content: center;
  position: relative;
  width: 10rem
}

.skills-wrapper .skills-container .skill:after,.skills-wrapper .skills-container .skill:before {
  background-color: var(--sixth);
  border-radius: 2rem;
  content: "";
  height: 10rem;
  position: absolute;
  transform: rotate(45deg);
  transition: all .2s ease-in-out;
  width: 10rem;
  z-index: -6;
  box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
}

.skills-wrapper .skills-container .skill:hover:after {
  background-color: var(--fourth);
  transform: rotate(90deg);
  z-index: -99
}

.skills-wrapper .skills-container .skill img {
  margin-top: -1rem;
  width: 3rem
}

.skills-wrapper .skills-container .skill p {
  background-color: var(--first);
  border-radius: 5rem;
  color: var(--fourth);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1rem;
  margin-top: 1rem;
  padding: .2rem .6rem
}

@media only screen and (max-width: 700px) {
  .skills-wrapper {
      scroll-margin:7rem
  }
}

@media only screen and (max-width: 900px) {
  .skills-wrapper {
      scroll-margin:8rem
  }
}

.experience-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh
}

.experience-wrapper .experience-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: center;
  max-width: 120rem;
  padding: 1rem;
  transition: .3s
}

.experience-wrapper .experience-container .experience-box {
  border: .4rem solid var(--fourth);
  border-radius: 1rem;
  box-shadow: -1rem 1rem var(--sixth);
  display: flex;
  gap: 1rem;
  overflow: hidden;
  transform: translateX(.4rem) translateY(-.4rem);
  transition: all .25s ease-in-out
}

.experience-wrapper .experience-container .experience-box:hover {
  box-shadow: 0 0 transparent;
  transform: translateX(0) translateY(0)
}

.experience-wrapper .experience-container .experience-box .image {
  max-height: 15rem;
  max-width: 19rem;
  overflow: hidden
}

.experience-wrapper .experience-container .experience-box .image img {
  height: 100%;
  object-fit: cover;
  width: 100%
}

.experience-wrapper .experience-container .experience-box .box-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem
}

.p-head {
  padding-top: 100px;
  position: relative
}
.Pgallery {
  
  
  justify-content: center;
  /* max-width: 800px; */
  margin: auto;
}

/* .Pgallery img {
  width: 100%;
    height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

.hidden {
  display: none;
} */

.pd{
  padding: 150px 0;

    align-items: center;
    text-align: center;
    display: flex;
}
.projects-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center
}

.projects-wrapper .projects-container {
  gap: 10px;
  /* max-width: 120rem; */
  /* padding: 1rem */
}

.projects-wrapper .menu,.projects-wrapper .projects-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

.projects-wrapper .menu {
  margin-bottom: 2rem
}

.projects-wrapper .menu button {
  background-color: var(--first);
  color: var(--fourth);
  margin: 1rem
}

.projects-wrapper .menu .activeProject,.projects-wrapper .menu button:hover {
  background-color: var(--fourth);
  color: var(--first)
}

.projects-wrapper .projects-container .project-box {
  border-radius: .5rem;
  box-shadow: 0 0 1rem rgba(0,0,0,.4);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 30rem;
  overflow: hidden;
  position: relative;
  transition: all .3s ease-in-out;
  width: 29rem;
}

.projects-wrapper .projects-container .project-box .image-box {
  height: 100%;
  overflow: hidden;
  width: 100%
}

.projects-wrapper .projects-container .project-box .image-box img {
  object-fit: cover;
  transition: all .3s ease-in-out;
  width: 100%
}

.projects-wrapper .projects-container .project-box:hover img {
  transform: scale(1.05)
}

.projects-wrapper .projects-container .project-box .box-content {
  background-color: hsla(0,0%,100%,.9);
  height: 100%;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 100%;
  transition: all .3s ease-in-out;
  width: 100%
}

.projects-wrapper .projects-container .project-box:hover .box-content {
  top: 0
}

.projects-wrapper .projects-container .project-box .box-content .title {
  background-color: var(--sixth);
  border-radius: 5rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .1rem;
  margin-bottom: .5rem;
  padding: 1rem 2rem
}

.projects-wrapper .projects-container .project-box .box-content .description {
  text-align: left
}

.projects-wrapper .projects-container .project-box .box-content .buttons {
  align-items: center;
  bottom: 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 3.5%;
  position: absolute;
  row-gap: .5rem;
  width: 93%
}

.projects-wrapper .projects-container .project-box .box-content .buttons button {
  padding: 1rem 5rem
}

.projects-wrapper .projects-container .project-box .box-content .buttons button i {
  animation: none
}

.contact-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh
}

.contact-wrapper .content {
  align-items: center;
  display: flex;
  justify-content: space-between
}

.contact-wrapper .content .left-side {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
  width: 25%
}

.content .left-side:before {
  background: gray;
  content: "";
  height: 70%;
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: .2rem
}

.content .left-side .details {
  margin: 1.4rem;
  text-align: center
}

.content .left-side .details i {
  color: var(--fourth);
  font-size: 3rem;
  margin-bottom: 1rem
}

.content .left-side .details .topic {
  font-size: 1.8rem;
  font-weight: 500
}

.content .left-side .details .text-one,.content .left-side .details .text-two {
  color: gray;
  font-size: 1.4rem
}

.contact-wrapper .content .right-side {
  margin-left: 7.5rem;
  width: 75%
}

.content .right-side .topic-text {
  color: var(--fourth);
  font-size: 2.3rem;
  font-weight: 600
}

.right-side .input-box {
  height: 5rem;
  margin: 1.2rem 0;
  position: relative;
  width: 100%
}

.right-side .input-box i {
  left: 2rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%)
}

.right-side .input-box input:focus~i,.right-side .input-box textarea:focus~i {
  color: var(--fourth)
}

.right-side .input-box .fa-message {
  top: 2rem
}

.right-side .input-box input,.right-side .input-box textarea {
  background: var(--first);
  border: .2rem solid gray;
  border-radius: .6rem;
  font-size: 1.6rem;
  height: 100%;
  outline: none;
  padding: 0 4.5rem;
  resize: none;
  width: 100%
}

.right-side .input-box input:focus,.right-side .input-box textarea:focus {
  border-color: var(--fourth)
}

.right-side .message-box {
  min-height: 11rem
}

.right-side .input-box textarea {
  padding-top: .6rem
}

.LetsTalkBtn {
  color: var(--first)
}

.LetsTalkBtn i {
  animation: none;
  margin-left: .5rem
}

@media (max-width: 900px) {
  .contact-wrapper {
      margin-top:5rem;
      width: 100%
  }
  

  .contact-wrapper .content {
      flex-direction: column-reverse
  }

  .contact-wrapper .content .left-side {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 4rem;
      width: 100%
  }

  .contact-wrapper .content .left-side:before {
      display: none
  }

  .contact-wrapper .content .right-side {
      margin-left: 0;
      width: 100%
  }
}

#footer {
  background-color: #000;
  color: var(--first)
}

.footer-wrapper {
  align-items: center;
  display: flex;
  justify-content: center
}

.footer-wrapper h2 {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.5rem 0
}

.footer-wrapper h2 i {
  color: red;
  margin: 0 1rem
}

.scrollToTop {
  background-color: var(--fourth);
  border-radius: 50%;
  color: var(--first);
  cursor: pointer;
  font-size: 2rem;
  height: 5rem;
  line-height: 5rem;
  opacity: .9;
  position: fixed;
  right: 3rem;
  text-align: center;
  top: -50%;
  transition: all .5s ease-in-out;
  width: 5rem;
  z-index: 100
}

.scrollToTop.activeScrollToTop {
  top: 85%
}

.social_media {
  padding-top: 50px
}

.social_media h2 {
  margin: 0
}

.social_media .content {
  grid-template-columns: repeat(5,1fr)
}

.social_media .box {
  background: #19232b;
  border-radius: 5px;
  margin-top: 50px;
  padding: 20px;
  position: relative;
  transition: .5s
}

.social_media .box i {
  background: #ffc514;
  border-radius: 50%;
  height: 50px;
  line-height: 50px;
  position: absolute;
  text-align: center;
  top: -20px;
  width: 50px
}

.social_media .box span {
  cursor: pointer;
  font-size: 18px;
  transition: .5s
}

.social_media .box span:hover {
  color: #ffc514
}

.filter_container {
  margin-top: 50px
}

.filter-menu {
  margin-bottom: 20px
}

.filter-menu li {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px;
  transition: .5s
}

.filter-menu li.current,.filter-menu li:hover {
  background: #20c863
}

.filter-item li {
  float: left;
  padding: 2px;
  width: 50%
}

.filter-item li.active {
  padding: 2px;
  transition: all .5s ease;
  width: 50%
}

.filter-item li.delete {
  padding: 0;
  transition: all .5s ease;
  width: 0
}

.filter-item img {
  display: block
}

@media screen and (min-width: 768px) {
  .filter-item li,.filter-item li.active {
      width:33.33%
  }
}

@media screen and (min-width: 1280px) {
  .filter-item li,.filter-item li.active {
      width:25%
  }
}

.experience {
  padding-top: 5%
}

.experience h2 {
  margin: 0
}

.experience .heading_top {
  justify-content: center
}

.experience .left img {
  width: 80%
}

.timeline {
  position: relative
}

.timeline .line {
  background: #fff;
  height: 100%;
  left: 0;
  position: absolute;
  width: 4px
}

.timeline .icon {
  background: #ffc514;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff,;
  color: #fff;
  font-size: 30px!important;
  height: 60px;
  line-height: 60px;
  position: absolute;
  text-align: center;
  width: 60px
}

.timeline .content:nth-child(3) .icon,.timeline .content:nth-child(5) .icon {
  background: #20c863
}

.content-1 .icon {
  left: -30px;
  position: absolute;
  top: 0
}

.timeline .content section {
  border-radius: 5px;
  padding-left: 40px;
  position: relative;
  width: 100%
}

.timeline span {
  color: #ac8713;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px
}

.timeline .content:nth-child(3) span,.timeline .content:nth-child(5) span {
  color: #20c863
}

.timeline .content {
  margin-bottom: 20px
}

.timeline p {
  opacity: .5
}

#status {
  /*  width: 40%;*/
    max-width: 500px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    border-radius: 8px;
  }
  #status.success {
    background-color: var(--fourth);
    color: #fff;
    animation: status 10s ease forwards;
    text-align: left;
    text-align: center;
  }
  #status.error {
    background-color: rgb(250, 129, 92);
    color: white;
    animation: status 10s ease forwards;
    text-align: left;
  }
  @keyframes status {
    0% {
      opacity: 1;
      pointer-events: all;
    }
    90% {
      opacity: 1;
      pointer-events: all;
    }
    100% {
      opacity: 0;
      pointer-events: none;
    }
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
  }

  footer {
    background: #1A232C;
  }
  
  footer .content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* footer img {
    width: auto;
    margin-top: 50px;
  }
   */
  footer h4 {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  
  footer li {
    margin-bottom: 10px;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.5s;
  }
  
  footer .text {
    margin-top: 30px;
    background: #151d24;
    padding: 10px;
    padding-right: 30px;
    border-radius: 50px 0 50px 0;
    text-align: right;
  }
  footer .text  a{
    color: #fff;
  }
  footer .icon {
    margin-top: 30px;
    transition: 0.5s;
    margin-bottom: 15px;
   
    
  }
  
  footer .icon i {
    font-size: 20px;
    cursor: pointer;
    color: var(--first);
  }
  
  footer .box i:hover,
  footer .box li:hover {
    color: var(--fourth);
    opacity: 1;
  }
  footer .text a:hover{
    color: var(--fourth);
  }
  
.box-text{
  color: var(--first);
}

  .flex1 {
    display: flex;
    justify-content: space-between;
  }
  
  @media only screen and (max-width:768px) {
    .container {
      max-width: 90%;
      margin: auto;
    }
  
  
    
    .grid {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 30px;
    }
  
    footer .content,
    .social_media .content {
      grid-template-columns: repeat(3, 1fr);
    }
  
  }
  
  @media only screen and (max-width:511px) {
   
      .grid {
      grid-template-columns: repeat(1, 1fr);
    }
  
    .social_media {
      height: auto;
      padding-bottom: 50px;
    }
  
    footer .content,
    .social_media .content {
      grid-template-columns: repeat(1, 1fr);
    }
  
    footer {
      text-align: center;
    }
  } 
  
 


  .img-hero{
    position: relative;
    animation: floatImage 4s ease-in-out infinite;
    animation-delay: 3s;
}

.img-hero img{
    position: relative;
    width: 400px;
    height: auto;
    z-index: 10;
}

.rotate-text{
    position: absolute;
    top: 8%;
    left: -53px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    padding: 2rem;
}

.rotate-text span{
    position: relative;
    width: 442px;
    height: 442px;
    background: red;
    border: 6px solid #eaeef0;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}

.rotate-text span::before{
    content: "";
    position: absolute;
    inset: 20px;
    background: #00aaff;
    border-radius: 50%;
    z-index: 1;
}

.rotate-text span i{
    position: absolute;
    inset: 0;
    background: var(--gradient-color-bg);
    filter: blur(5px);
    animation: animate 2s linear infinite;
}


.rotate-text .text{
    position: absolute;
    width: 490px;
    height: 490px;
    background: #f2f6fb;
    border-radius: 50%;
    box-shadow: 0 1px 6px 5.94px rgba(0,0,0,0.2);
    animation: rotateText 30s linear infinite;
}

.text b{
    position: absolute;
    transform-origin: 0 247px;
    display: block;
    top: 0;
    left: 50%;
    font-size: 18px;
}

@keyframes moveText{
  0%,10%,100%{
      background-position: -24rem 0;
  }

  65%,85%{
      background-position: 0rem 0;
  }
}

@keyframes moveCursorText{
  0%,10%,100%{
      width: 0;
  }

  65%,78%,85%{
      width: 100%;
      opacity: 1;
  }

  75%,85%{
      opacity: 0;
  }
}

@keyframes animate{
  0%{
      transform: rotate(0deg);
  }
  100%{
      transform: rotate(360deg);
  }
}

@keyframes rotateText{
  0%{
      transform: rotate(360deg);
  }
  100%{
      transform: rotate(0deg);
  }
}





@media(max-width:991px){
 
 
  .img-hero{
      margin-top: 3rem;
  }
}

@media(max-width:768px){


  .home{
      grid-gap: 0;
  }
  
}

@media(max-width:530px){
  
  .rotate-text{
      display: none;
  }
  .img-hero img{
      width: 100%;
      display: none;
  }
  .text-animate{
      width: 23.8rem;
  }
  
}



a{
	outline: 0 !important;
}
.magnific-img img {
    width: 100%;
    height: auto;
}
.img-gallery-magnific{
  display: flex;
}
.magnific-img {
    display: inline-block;
    width: 24.3%;
    margin-bottom: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
}
a.image-popup-vertical-fit {
    cursor: pointer;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
	opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  /* cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out; */
  /* cursor: zoom-out; */
 }

.mfp-zoom {
  cursor: pointer;
  /* cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in; */
  cursor: zoom-in; 
}

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333;
 }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } 
  .magnific-img{
    width: 100%;
  }
  }


    .abc{
      display:none;
    }
    
 
    
    .load-more{
      
      display:inline-block;
    }
    
            .social-float-btn {
    display: flex;
    width: 200px;
    align-items: center;
    padding-left: 8px;
    border: 1px;
    border-radius: 6px;
    margin-bottom: 5px;
    position: absolute;
    right: -160px;
    transition: right 1s;
    background-color: var(--white);
    box-shadow: 0px 3px 20px #00000029;
}
.social-float2{
    top: 45px;
}
.social-float3{
    top: 90px;
}
.social-float4{
    top: 135px;
}

.social-float-btn:hover {
    right: -58px;
    transition: right 1s;
}

.social-float {
    position: fixed;
    top: 300px;
    right: 0px;
    z-index: 99 !important;
}

.social-float a {
    text-decoration: none;
}
.social-float-btn img {
    width: 40px;
}

.social-float-btn p {
    color: #d52a1a;
    margin-top: 0px;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    margin-left: 15px;
    font-weight: 500;
    min-height: 42px;
    display: flex;
    align-items: center;
}

.icons8 {
    order: 1;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.icons8-telegram-app {
    background: url(images/call-icon.png) 50% 50% no-repeat;
    background-size: 100%;
}

.icons8-instagram {
    background: url(images/email.png) 50% 50% no-repeat;
    background-size: 100%;
}

.icons8-whatsapp {
    background: url(images/email.png) 50% 50% no-repeat;
    background-size: 100%;
}

.icons8-contact {
    background: url(images/whatsapp.png) 50% 50% no-repeat;
    background-size: 100%;
}

ol, ul{
  padding: 0px !important;
}
