@import url('https://fonts.googleapis.com/css2?family=Amaranth&family=Cabin&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: capitalize;
  outline: none;
  border: none;
  transition: all 0.5s linear;
  list-style: none;
  font-family: 'Cabin', sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
}

body {
  background-color: rgb(245, 245, 247);
  font-family: 'Cabin', sans-serif;
}
section {
  padding: 2rem 9%;
}
/* section#home{
    padding: 0rem;
} */

/* Arrow */
.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 35px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: #1f2029;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.lightScrollIcon::after {
  color: #ecedf3 !important;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  opacity: 0;
  background-image: linear-gradient(298deg, rgb(135, 115, 240), rgb(135, 115, 240));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #1f2029;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* Header section starts */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 9%;
  /* background:#fff; */
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.41);
}

.header .logo {
  font-size: 2.2rem;
  color: #322514;
  font-weight: bolder;
  font-family: 'Amaranth', sans-serif;
}

.header .logo i {
  margin-left: 1.5rem;
  color: rgb(135, 115, 240);
  font-weight: 900;
}

.header .navbar a {
  font-size: 1.6rem;
  margin-left: 2rem;
  color: #322514;
}

.header .navbar a:hover {
  color: rgb(135, 115, 240);
}

#menu-btn {
  font-size: 3rem;
  display: none;
  color: #322514;
  cursor: pointer;
}
.header .btn{
  margin-top: 0rem;
  cursor: pointer;
}
.header .btn a{
  color:white;
}
.header .btn a:hover{
  color:rgb(135, 115, 240);
}

.navbar #contact-anchor {
  display: none;
}

/* Header after scrolling starts */
.header.sticky {
  background: rgba(135, 115, 240, 0.2);
  backdrop-filter: blur(45px);
  /* padding: 1rem 3%; */
}
.header.sticky .navbar a {
  color: #322514;
}
.header.sticky .logo {
  color: #322514;
}
.header.sticky .btn{
  background-color: white;
  cursor: pointer;
}
.header.sticky .btn a{
  color: rgb(135, 115, 240);
}

.header.sticky .btn:hover {
 background:rgb(135, 115, 240);
 color:rgb(135, 115, 240);
}
.header.sticky .btn a:hover {
  color:white;
 }

.header.sticky #menu-btn {
  color: rgb(135, 115, 240);
  font-weight: 900;
}

/* Header after scrolling ends */
/* Header section ends */

/* Home section css starts */
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  /* height:fit-content; */
  padding-bottom: 7rem;
  padding-top: 12rem;
}
.home-left .welcome {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #322514;
}
.home-left {
  flex: 1 1 40rem;
}
.home-right {
  flex: 1 1 10rem;
}
.heading {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #322514;
}
.heading span#name {
  color: rgb(135, 115, 240);
  font-family: 'Amaranth', sans-serif;
}
.home-left .home-para {
  width: 70%;
  line-height: 1.8rem;
  font-size: 1.2rem;
  text-transform: none;
  margin-top: 1rem;
}

.btn {
  padding: 1rem 2rem;
  background-color: rgb(135, 115, 240);
  border-radius: 20px;
  margin-top: 2rem;
  color: white;
  box-shadow: rgba(135, 115, 240, 0.5) 0px 5px 15px;
  cursor: pointer;
}
.btn:hover {
  background-color: white;
  color: rgb(135, 115, 240);
  /* font-weight: 700;  */
}
.home-img {
  width: 300px;
  height: 350px;
  position: relative;
}
.home-img .bg {
  width: 300px;
  height: 350px;
  border-radius: 10px;
  /* border: 7px solid #8773f0; */
  background-color: #8773f0;
  box-shadow: rgba(51, 38, 20, 0.35) 0px 5px 15px;
}
.home-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5%;
  right: 5%;
  border-radius: 10px;
  box-shadow: rgba(51, 38, 20, 0.35) 0px 5px 15px;
  background-color: white;
}

.home-img .skill-box {
  width: 270px;
  height: 50px;
  background-color: white;
  border-radius: 5px;
  position: absolute;
  right: 60%;
  bottom: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border:3px solid rgb(51, 38, 20); */
  box-shadow: rgba(51, 38, 20, 0.35) 0px 5px 15px;
}
.home-img .skill-box a i {
  font-size: 1rem;
  color: #322514;
  margin: 0 0.6rem;
}
.home-img .skill-box p {
  font-size: 1.3rem;
  margin-right: 1rem;
}
.share ul {
  display: flex;
}

.share ul li {
  list-style: none;
}

.share ul li a {
  width: 3rem;
  height: 3rem;
  background-color: #322514;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 10px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  animation: fadeUp 0.4s linear 0.4s backwards;
}

.share ul li a .icon {
  position: relative;
  color: white;
  transition: 0.5s;
  z-index: 3;
}

.share ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.share ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 2;
}

.share ul li a:hover:before {
  top: 0;
  background-color: rgb(135, 115, 240);
}

/* Home section css ends */

/* About section css starts */
#about {
  margin: 4rem 0;
}
.main-heading {
  font-size: 3.4rem;
  text-align: center;
  color: #322514;
  font-family: 'Amaranth', sans-serif;
}
.main-heading span {
  color: rgb(135, 115, 240);
  font-family: 'Amaranth', sans-serif;
}
.main-para {
  text-align: center;
  width: 55%;
  margin: auto;
  line-height: 1.8rem;
  font-size: 1.3rem;
  margin-top: 1rem;
}
.main2{
  font-size: 1.5rem;
}
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  gap: 3rem;
}
.about-left {
  flex: 1 1 30rem;
}
.about-right {
  flex: 1 1 40rem;
}

.about-left img {
  width: 450px;
  height: 500px;
  border-radius: 10px;
}
.about-right .heading {
  font-size: 3.1rem;
  font-family: 'Amaranth', sans-serif;
}
.about-profession {
  margin-top: 1.5rem;
}
.about-profession h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: rgb(135, 115, 240);
}
.about-profession p {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: rgb(247, 224, 23);
}
.about-profession p i {
  font-size: 1.5rem;
}
.about-profession .about-para {
  line-height: 2rem;
  font-size: 1.3rem;
  color: #322514;
  text-transform: none;
}

.about-buttons {
  display: flex;
  gap: 1rem;
}
.about-buttons .btn {
  margin-top: 0.5rem;
  background: none;
  color: rgb(135, 115, 240);
  border: 2px solid rgb(135, 115, 240);
  font-weight: 700;
}
.about-buttons .hire {
  color: white;
  background-color: rgb(135, 115, 240);
}
.about-buttons .btn:hover {
  margin-top: 0.5rem;
  background-color: rgb(135, 115, 240);
  color: white;
  font-weight: 700;
}
.about-buttons .hire:hover {
  color: rgb(135, 115, 240);
  background: none;
  border: 2px solid rgb(135, 115, 240);
}

.journey {
  margin: 2.3rem 0;
}
.journey h1 {
  font-size: 2rem;
  color: rgb(135, 115, 240);
  margin-bottom: 1.5rem;
}
.jour-left {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 2rem;
}
.jour-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.jour-box-img {
  background-color: white;
  padding: 0.7rem;
  border-radius: 5px;
  box-shadow: rgba(51, 38, 20, 0.35) 0px 3px 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jour-box-img a i {
  font-size: 2.3rem;
  color: rgb(135, 115, 240);
}
.jour-box-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: #322514;
}
.jour-box-text p {
  font-size: 1.2rem;
  color: rgb(135, 115, 240);
}

/* About section css ends */

/* Skills section starts */
#skills {
  margin-bottom: 2rem;
}
.skills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 4rem 0;
}

/* ~ Browser ~ */
.browser {
  align-self: center;
  width: 470px;
  height: 350px;
  border: 1px solid #fff;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 20px 3px rgba(32, 35, 42, 0.14);
}

/* ~ Browser Bar ~ */
.browser-bar {
  background: #eef1f5;
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #dee0e4;
  overflow: hidden;
}

.browser-bar .options {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.options .option {
  height: 12px;
  width: 12px;
  border-radius: 50px;
  margin: 0 5px;
}

.close {
  background: #ef534a;
}

.minimise {
  background: #edc04a;
}

.expand {
  background: #97d272;
}

/* ~ Browser Content ~ */
.browser-content {
  height: 90%;
}

.row {
  padding: 14px;
  border-bottom: 1px solid #ebeff4;
  display: flex;
  flex-direction: row;
}
.row-fullstack{
  padding: 14px;
  border-bottom: 1px solid #ebeff4;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.row:hover {
  background: #ebeff4;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.row > p {
  align-self: flex-start;
  width: 190px;
}

.row i {
  margin-right: 10px;
  font-size: 2.2rem;
  font-weight: normal;
  margin-top: 3px;
  /* width: 30px; */
}

.row .heading {
  position: relative;
  top: -5px;
  color: #616b7f;
  font-size: 1.3rem;
  font-weight: 900;
}

.options h3 {
  color: #616b7f;
  font-size: 1.3rem;
  font-weight: 900;
  margin-right: 1rem;
}

.stars {
  margin: -5px 15px 0 0px;
  align-self: center;
  display: flex;
  flex-direction: row;
  /* max-width: 200px; */
}

.fas {
  font-weight: 900 !important;
}

.stars i {
  font-size: 2rem;
  color: rgb(135, 115, 240);
}
.stars i:hover {
  transform: scale(1.2);
  transition: transform 0.4s ease;
}

#html p i {
  color: #e34f26;
}

#css p i {
  color: #1b74ba;
}

#javascript p i {
  color: #f7e017;
}

#node p i {
  color: rgb(70, 69, 67);
}

#react p i {
  color: #61dafb;
}

.arrow {
  display: flex;
  align-self: center;
  justify-content: flex-end;
  /* width: 110px; */
}

.arrow i {
  font-size: 1.8rem;
  color: #c4c4c4 !important;
}

/* ~ Item Content ~ */
.item-content {
  display: flex;
  flex-direction: column;
  padding: 0px 15px;
  background: rgba(235, 239, 244, 0.4);
  transition: height 0.5s;
  height: auto;
  overflow: hidden;
}

.item-content p {
  color: #616b7f;
  line-height: 2rem;
  font-size: 1.2rem;
  text-transform: none;
}

.hidden-content {
  display: none;
  transition: height 0.5s;
  height: 0;
  overflow: hidden;
}

.hidden-content2 {
  display: none;
  transition: height 0.5s;
  height: 0;
  overflow: hidden;
}

/* ~ Other ~ */
.rotate0 {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}

.rotate90 {
  transform: rotate(90deg);
  transition: all 0.5s ease;
}

.add-overflow {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Skills section ends */

/* Services section starts */
#services {
  padding: 4rem;
}
.service-container {
  width: 100%;
  padding: 5rem 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
}

.service-container .service-box {
  width: 320px;
  text-align: center;
  padding: 0 0 20px 10px;
  position: relative;
}

.service-container .service-box::before {
  content: "";
  border: 3px dotted rgb(135, 115, 240);
  border-top-style: solid;
  border-bottom-style: solid;
  border-right: none;
  position: absolute;
  border-radius: 30px 0 0 30px;
  -webkit-border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  -o-border-radius: 30px 0 0 30px;
  width: 35%;
  top: 90px;
  bottom: 7px;
  left: 0;
}

.service-container .service-icon {
  font-size: 4rem;
  /* line-height: px; */
  background-color: #fff;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 5px 5px 10px #0000004d;
  /* position: relative; */
  color: rgb(135, 115, 240);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-container .service-content {
  background-color: #fff;
  padding: 20px 10px;
  border: 3px solid rgb(135, 115, 240);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 5px 5px 10px #0000004d;
}

.service-container .service-content::before,
.service-container .service-content::after {
  content: "";
  position: absolute;
  background: rgb(135, 115, 240);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: 86px;
  left: 35%;
}

.service-container .service-content::after {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  top: auto;
  bottom: 4px;
}

.service-container .service-title a {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(135, 115, 240);
  font-family: 'Amaranth', sans-serif;
}

.service-container p {
  color: #0e0e0e;
  font-size: 1.2rem;
  line-height: 2rem;
  margin-top: 1.3rem;
}

.service-container .service-box.red,
.service-container .service-box.red .service-title a,
.service-container .service-box.red .service-icon {
  color: #322514;
}

.service-container .service-box.red::before,
.service-container .service-box.red .service-icon,
.service-container .service-box.red .service-content {
  border-color: #322514;
}

.service-container .service-box.red .service-content::after,
.service-container .service-box.red .service-content::before {
  background-color: #322514;
}

@media (max-width: 768px) {
  .service-container {
    flex-direction: column;
  }

  .service-container .service-box {
    width: 85%;
    margin: auto;
  }
}
/* Services section ends */

/*  Education and Experience section starts */
.qualification {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 4rem 3rem;
  margin-top: 2rem;
}
#education {
  flex: 1 1 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#experience {
  flex: 1 1 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
}
.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 0px 0px 35px 90px;
}
.quali-box {
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: rgba(51, 38, 20, 0.35) 0px 5px 15px;
  background-color: white;
}
.quali-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quali-box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent white transparent transparent;
  border-width: 15px;
  position: absolute;
  left: 6.3rem;
  top: 2rem;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  margin-bottom: 0;
}
.timeline-container .vertical-scrollable-timeline li h2 {
  font-size: 1.8rem;
  margin-bottom: 3px;
  font-weight: 600;
  color: #322514;
}
.timeline-container .vertical-scrollable-timeline li h6 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgb(135, 115, 240);
}
.timeline-container .vertical-scrollable-timeline li p {
  line-height: 1.5;
  color: #322514;
  text-transform: none;
}
.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}
.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 2.7rem;
  top: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c5c3cb;
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}
.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 30px;
  height: 30px;
  border: 4px solid #fff;
  position: absolute;
  background-color: #c5c3cb;
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}
.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 1.7rem;
  color: #322514;
}
.timeline-container .vertical-scrollable-timeline li::after {
  content: "";
  position: absolute;
  height: 0;
  width: 8px;
  background-color: rgb(135, 115, 240);
  left: 48px;
  top: 34px;
  z-index: 0;
  transition: 0.4s all;
}
.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: #c5c3cb;
  left: 48px;
  z-index: 0;
}
.timeline-container .vertical-scrollable-timeline li:last-child::before {
  content: unset;
}
.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: rgb(135, 115, 240);
}
.timeline-container
  .vertical-scrollable-timeline
  li.active
  .icon-holder::before {
  background-color: rgb(135, 115, 240);
}
.timeline-container .vertical-scrollable-timeline li.active::after {
  height: 100%;
}
.timeline-container .vertical-scrollable-timeline li.active:last-child::after {
  content: unset;
}
.quali-heading {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #322514;
  font-family: 'Amaranth', sans-serif;
}
/* Education and Experience section ends  */

/* Portfolio section starts */

.swiper {
  padding: 4rem 0;
  /* width: 1200px; */
  height: fit-content;
  text-align: center;
  
}
.swiper-slide{
  background-color: rgba(255, 255, 255,0.6);
  backdrop-filter: blur(200px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-wrap: wrap; */
  gap:2rem;
  padding: 5rem;
  border-radius: 5px;
  transition: 1s linear;
  box-shadow: rgba(51, 38, 20, 0.35) 0px 5px 15px;
}
.slide-img{
  width:380px;
  height:260px;
}
.slide-img img{
  width:100%;
  height:100%;
  border-radius: 5px;
}
.slide-left{
  flex: 1 1 40rem;
}
.slide-right{
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1 1 40rem;
}
.slide-right h1{
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 3.5rem;
  font-family: 'Amaranth', sans-serif;
}
.slide-right p{
  font-size: 1.5rem;
  /* width:75%; */
  text-align: left;
  line-height: 2rem;
  margin-bottom: 1rem;
  text-transform: none;
}
:root{
  --swiper-theme-color:#8773f0;
}
.swiper-btn{
  font-weight: 900;
}

/* Portfolio section ends */

/* Contact section starts */


#contact p{
  margin-bottom:4rem;
}
.contact{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 10px;
  background-color: rgba(135, 115, 240,0.8);
  backdrop-filter: blur(200px);
  box-shadow: rgba(51, 38, 20, 0.35) 0px 5px 15px;

}

.contact-form {
  /* flex-grow: 1; */
  padding:4rem;
  background-color: #ffffff;
  flex:1 1 20rem;
}


.contact-form .heading {
  margin-bottom: 3rem;
}

.contact-form .heading h2 {
  margin-bottom: 1.2rem;
  color:rgb(135, 115, 240);
  font-size: 2.2rem;
  font-family: 'Amaranth', sans-serif;
}

.contact-form .heading p {
  color: #4b5563;
  font-size: 1.5rem;
}

.contact-form .input {
  position: relative;
  margin-bottom: 2rem;
}

.contact-form .input input,
.contact-form .input textarea {
  width: 100%;
  padding: 8px 8px 8px 30px;
  border: 1px solid #d4d4d8;
  border-radius: 4px;
  background-color: #fafafa;
  font-size: 14px;
  text-transform: lowercase;
}
.contact-form .input input::placeholder,
.contact-form .input textarea::placeholder {
  text-transform: capitalize;
}

.contact-form .input i {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #4b5563;
}

.contact-form .btn {
  margin-top: -5px;
}



.contact-info {
  padding: 5rem 3rem;
  color: white;
  /* flex:1 1 20rem; */
}

.contact-info .heading {
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color:#322514;
  margin-top: 1rem;
  font-family: 'Amaranth', sans-serif;
}

.contact-info .contacts li {
  padding-left: 24px;
  margin-bottom: 32px;
  font-size: 14px;
}

.contact-info .contacts li i {
  width: 24px;
  padding-right: 12px;
  font-size: 1.8rem;
}

.contact-logo {
  position: relative;
  padding: 24px 32px 40px 32px;
}

.contact-logo::after {
  position: absolute;
  content: "APEX";
  top: 64px;
  left: 32px;
  font-size: 14px;
  color: white;
}

@media screen and (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    margin: 0;
  }

  .contact-form {
    padding: 96px 48px;
  }
}

.contact-socials p{
  font-size: 2rem;
  margin-top: 6rem;
  color:#322514;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Amaranth', sans-serif;
}
.contact-socialIcon{
  margin-top: -1.3rem;
}
.contact-socialIcon a i{
  font-size: 2.5rem;
  margin-right:1.8rem;
  color:#fff;
  background: linear-gradient(45deg,#8773f0,#7760ed);
  width:40px;
  height:40px;
 line-height: 40px;
 text-align: center;
 border-radius: 5px;
}
.contact-socialIcon a i:hover{
 box-shadow: 0px 0px 10px #8773f0;
 transform: scale(1.02);
}

/* Contact section ends */

/* Footer section starts */
footer {
  background: white;
  height: auto;
  width: 100vw;
  padding-top: 40px;
  color:#322514;
  border-top-left-radius: 70px;
  box-shadow: rgba(135, 115, 240, 0.5) 0px 5px 15px;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.footer-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: capitalize;
  /* line-height: 3rem; */
  color:rgb(135, 115, 240)
}
.footer-content h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: capitalize;
  /* line-height: 3rem; */
  margin-bottom: 1.5rem;
  font-family: 'Amaranth', sans-serif;
}

.footer-content p {
  max-width: 500px;
  margin: 10px auto;
  line-height: 1.75rem;
  font-size: 14px;
  color: #322514;
  text-transform: none;
}

.socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 2rem 0;
}

.socials li {
  margin: 1rem 10px;
}

.socials a {
  text-decoration: none;
  color: #322514;
  padding: 5px;
}

.socials a i {
  font-size: 2.2rem;
  width: 20px;
  transition: color 0.4s ease;
}

.socials a:hover i {
  color: rgb(135, 115, 240);
}

.footer-bottom {
  background: #8773f0;
  width: 100vw;
  padding: 20px;
  padding-bottom: 40px;
  text-align: center;
}

.footer-bottom p {
  float: left;
  font-size: 14px;
  word-spacing: 0px;
  color: white;
}

.footer-bottom p a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  line-height: 2.2rem;
}

.footer-bottom span {
  text-transform: uppercase;
}

.footer-menu {
  float: right;
}

.footer-menu ul {
  display: flex;
}

.footer-menu ul li {
  padding-right: 10px;
  margin-right: 1rem;
  display: block;
}

.footer-menu ul li a {
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
}

.footer-menu ul li a:hover {
  color:#322514 ;
}

@media (max-width: 900px) {
  .footer-bottom p {
    float: none;
    /* font-size: 12px; */
    word-spacing: 0px;
  }

  .footer-menu {
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-menu ul {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 0px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  
 
 
}

/* Footer section ends */

/*  Media query  */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 2rem;
  }
  .home {
    flex-wrap: wrap;
  }
  .home-left {
    flex: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .home-right {
    flex: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .about {
    flex-wrap: wrap;
  }
  .qualification {
    flex-wrap: wrap;
  }
  .about-left {
    flex: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-right {
    flex: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .quali-box:after {
    left: 7rem;
  }
  #education {
    flex: 100%;
  }
  #experience {
    flex: 100%;
  }
  .slide-left{
    flex: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slide-right{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 40rem;
  }
  .swiper-slide{
  flex-wrap: wrap;
}
.contact-form {
  flex:100%;
}
}

@media (max-width: 905px) {
  .browser {
    height: 335px;
  }
}
@media (max-width: 705px) {
  section {
    padding: 2rem 4rem;
  }
  #menu-btn {
    display: initial;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0%;
    backdrop-filter: blur(45px);
    background:rgb(255, 255, 255);
    /* border-top: 0.6rem solid rgba(18, 16, 37, 0.1); */
    /* border-bottom: 0.6rem solid rgba(18, 16, 37, 0.1); */
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   
  }

  .header .navbar a {
    margin: 0.8rem;
    padding: 0.8rem;
    display: block;
    color: #322514;
    font-weight: bold;
    text-align: center;
  }

  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .home-left .home-para {
    width: 80%;
    line-height: 1.5rem;
  }
  .home {
    padding: 6rem 4rem;
    padding-top: 12rem;
    background-color: rgb(245, 245, 247);
  }
  .home-right .skill-box {
    display: none;
  }
  .header .btn {
    display: none;
  }
  .navbar #contact-anchor {
    display: block;
  }
  .main-para {
    width: 75%;
  }
  .qualification {
    padding: 4rem 0rem;
  }
}
@media (max-width: 530px) {
  .jour-top {
    flex-wrap: wrap;
  }
  .jour-left {
    flex-wrap: wrap;
  }
  .about-left img {
    width: 350px;
    height: 350px;
  }
  .about {
    padding: 4rem 2rem;
  }
  .slide-img{
  width:300px;
  height:200px;
}
.footer-content p {
  font-size: 12px;
  line-height: 1.7rem;
}
.footer-bottom p {
  font-size: 12px;
}
.footer-bottom p a {
  font-size: 12px;
}
.contact-form {
  padding:3rem;
}
.contact-info {
  padding:4rem 2rem;
}

}

@media (max-width: 450px) {
  .browser {
    width: 380px;
    height: 325px;
  }
  .row > p {
    align-self: flex-start;
    width: 140px;
  }
  .row i {
    margin-right: 5px;
    font-size: 1.8rem;
  }
  .row .heading {
    font-size: 1.1rem;
    /* left:-8px; */
  }
  .stars i {
    font-size: 1.6rem;
  }
  .stars {
    margin: -5px -5px 0 0px;
  }
  .row {
    padding: 15px 8px;
    justify-content: space-between;
  }
  .arrow i {
    font-size: 1.5rem;
  }
  .contact-form {
    padding:2rem;
  }
 
}
@media (max-width: 400px) {
  .home-left .home-para {
    width: 100%;
    line-height: 1.5rem;
  }
  .home {
    padding: 6rem 2rem;
    padding-top: 12rem;
    background-color: rgb(245, 245, 247);
  }
  .home-left .heading {
    font-size: 2.5rem;
  }
  .home-img {
    width: 250px;
    height: 300px;
  }
  .home-img .bg {
    width: 250px;
    height: 300px;
  }
  section {
    padding: 2rem;
  }
  .main-para {
    width: 90%;
  }

  .about-left img {
    width: 300px;
    height: 300px;
  }
    .slide-img{
  width:250px;
  height:180px;
}
.slide-right h1{
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 3rem;
}
.slide-right p{
  font-size: 1.2rem;
   margin-bottom: 0.3rem;
   margin-top: 1rem;
}
 .contact-info {
    padding:4rem 1.2rem;
  }
}

/* preloader */
#preloader{
  background: #dee0e4;
  height:100vh;
  width:100%;
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.three-body {
  --uib-size: 35px;
  --uib-speed: 0.8s;
  --uib-color: #5D3FD3;
  position: relative;
  display: inline-block;
  height: var(--uib-size);
  width: var(--uib-size);
  animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
 }
 
 .three-body__dot {
  position: absolute;
  height: 100%;
  width: 30%;
 }
 
 .three-body__dot:after {
  content: '';
  position: absolute;
  height: 0%;
  width: 100%;
  padding-bottom: 100%;
  background-color: var(--uib-color);
  border-radius: 50%;
 }
 
 .three-body__dot:nth-child(1) {
  bottom: 5%;
  left: 0;
  transform: rotate(60deg);
  transform-origin: 50% 85%;
 }
 
 .three-body__dot:nth-child(1)::after {
  bottom: 0;
  left: 0;
  animation: wobble1 var(--uib-speed) infinite ease-in-out;
  animation-delay: calc(var(--uib-speed) * -0.3);
 }
 
 .three-body__dot:nth-child(2) {
  bottom: 5%;
  right: 0;
  transform: rotate(-60deg);
  transform-origin: 50% 85%;
 }
 
 .three-body__dot:nth-child(2)::after {
  bottom: 0;
  left: 0;
  animation: wobble1 var(--uib-speed) infinite
     calc(var(--uib-speed) * -0.15) ease-in-out;
 }
 
 .three-body__dot:nth-child(3) {
  bottom: -5%;
  left: 0;
  transform: translateX(116.666%);
 }
 
 .three-body__dot:nth-child(3)::after {
  top: 0;
  left: 0;
  animation: wobble2 var(--uib-speed) infinite ease-in-out;
 }
 
 @keyframes spin78236 {
  0% {
   transform: rotate(0deg);
  }
 
  100% {
   transform: rotate(360deg);
  }
 }
 
 @keyframes wobble1 {
  0%,
   100% {
   transform: translateY(0%) scale(1);
   opacity: 1;
  }
 
  50% {
   transform: translateY(-66%) scale(0.65);
   opacity: 0.8;
  }
 }
 
 @keyframes wobble2 {
  0%,
   100% {
   transform: translateY(0%) scale(1);
   opacity: 1;
  }
 
  50% {
   transform: translateY(66%) scale(0.65);
   opacity: 0.8;
  }
 }
 
