/* COMMON REUSABLE CSS STARTS HERE */
@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");


:root {
  --header-height: 3rem;

  --hue-color: 250;
  --first-color: hsl(var(--hue-color), 69%, 61%); /* #6e57e0 */
  --first-color-second: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 57%, 53%); /* #7d6bd6 */
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%); /* #c2b6fc */
  --title-color: hsl(var(--hue-color), 8%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);

  --body-font: "Poppins", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px */
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  --font-medium: 500;
  --font-semi-bold: 600;

  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Font size for large devices */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/* Variables Dark Theme */
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 30%, 8%);
  --title-color: hsl(var(--hue-color), 8%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(218, 23%, 23%);
  --container-color: hsl(var(--hue-color), 29%, 16%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/* Button Dark/Light */
.nav_btns {
  display: flex;
  align-items: center;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1);
  cursor: pointer;
}

.change-theme:hover {
  color: var(--first-color);
}






* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  }

  .light-theme {

    --background-primary: hsl(0, 0%, 48%);
      --background-secondary: hsl(0, 0%, 97%);
    
    --action-primary: hsl(214, 32%, 91%);
    --action-secondary: hsl(210, 38%, 95%);
    
    --foreground-primary: hsl(0, 0%, 0%);
    --foreground-secondary: hsl(216, 15%, 52%);
    --foreground-tertiary: hsl(214, 20%, 69%);
    
    --accent: hsl(229, 76%, 66%);
    --box-shadow: 0 1px 4px rgba(41, 44, 46, 0.3);
    
    }
    
    .dark-theme {
          
    --background-primary: hsl(218, 23%, 23%);
    --background-secondary: hsl(220, 26%, 14%);
    
    --action-primary: hsl(216, 15%, 52%);
    --action-secondary: hsl(218, 23%, 23%);
    
    --foreground-primary: hsl(210, 38%, 95%);
    --foreground-secondary: hsl(211, 25%, 84%);
    --foreground-tertiary: hsl(214, 20%, 69%);
    
    --accent: hsl(229, 76%, 66%);
    --box-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
    
    }

  .btn{
    display: inline-block;
    padding: .2rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    background-color: #3664F4;
    border-radius: .5rem;
    text-transform: capitalize;
    text-align: center;
    margin-top: .9rem;
}
 .btn:hover{
    background-color: rgb(12, 12, 12);
 }

:root {
  --header-height: 3rem;

  --hue-color: 250;
  --first-color: #3664F4; 
  --first-color-second: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 57%, 53%);
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
  --title-color: hsl(var(--hue-color), 8%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: #f5f5f5;
  --container-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);

  --body-font:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  --font-medium: 500;
  --font-semi-bold: 600;

  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::selection {
  background-color: #8d8d8d;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0 var(--header-height);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #f5f5f5;
  color: var(--text-color);
  overflow: hidden;
  overflow-y: scroll;
 }

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  border-style: none;
  cursor: pointer;
}

.section {
  padding: 2rem 0 4rem;
}



/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #FFFFFF;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}
.section-title h1{
  color: var(--foreground-primary);
  font-size: 2rem;
}
.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
  0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
  0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}





.grid {
  display: grid;
  gap: 1.5rem;
}

.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  font-family: inherit;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button-flex {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.button_icon {
  font-size: 1.25rem;
  margin-left: var(--mb-0-5);
  transition: 0.3s;
}

.button--flex {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
@media screen and (max-width: 1000px) {
  .path-img{
    display: none;
  }
  .path-img2{
    display: none;
  }
  .path-img3{
    display: none;
  }
}
/* COMMON REUSABLE CSS ENDS HERE */


/* HEADER SECTION STARTS HERE */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.3);
}

/* NAVBAR */
.nav {
  max-width: 968px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_logo,
.nav_toggle {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.nav_logo:hover {
  color: var(--first-color);
}

.nav_toggle {
  font-size: 1.1rem;
  cursor: pointer;
}

.nav_toggle:hover {
  color: var(--first-color);
}

@media screen and (max-width: 1000px) {
  .nav_menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    padding: 2rem 1.5rem 4rem;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 1.5rem 1.5rem 0 0;
    transition: 0.3s;
  }
}

.nav_list {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nav_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  padding-top: 1.6rem;
}

.nav_link:hover {
  color: var(--first-color);
}

.nav_icon {
  font-size: 1.2rem;
}

.nav_close {
  position: absolute;
  right: 1.3rem;
  top: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--first-color);
}

.nav_close:hover {
  color: var(--first-color-alt);
}

/* Show Menu */
.show-menu {
  bottom: 0;
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/* Header Shadow */
.scroll-header {
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.3);
}

/* HEADER SECTION ENDS HERE */


/* HOME SECTION STARTS HERE */
.home-general{
  background: var(--background-primary);
 }
.home{
  margin-left: 17rem;
}
@media screen and (max-width: 1115px) {
  .home{
    margin-left: 1rem;
  }
}
.home_container {
  gap: 1rem;
}
.home_content {
  grid-template-columns: 0.5fr 3fr;
  padding-top: 3.5rem;
  align-items: center;
}

.home_social {
  display: grid;
  grid-template-columns: max-content;
  row-gap: 1rem;
}

.home_social-icon {
  font-size: 1.25rem;
  color: var(--first-color);
}

.home_social-icon:hover {
  color: var(--first-color-alt);
}

.home_blob {
  fill: var(--first-color);
  margin-left: -15rem;
}
@media (max-width: 1250px){
  .home_blob{
    margin-left: 0;
  }
  .home_scroll {
    display: none;
  }
}
.home_blob-img {
  width: 200px;
  border-radius: 5%;
}
.home_blob-img image{
  border-radius: 50%;
}

.home_data {
  grid-column: 1/3;
}

.home_title {
  font-size: var(--big-font-size);
  color: var(--foreground-primary);
}

.home_subtitle {
  font-size: var(--h3-font-size);
  color: var(--foreground-secondary);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-75);
}

.home_description {
    color: var(--foreground-tertiary);
    font-size: 1.5rem;
}

.home_scroll-button {
  color: var(--first-color);
  transition: 0.3s;
}

.home_scroll-button:hover {
  transform: translateY(0.25rem);
}

.home_scroll-mouse {
  font-size: 2rem;
}

.home_scroll-name {
  font-size: 17px;
  color: var(--foreground-primary);
  font-weight: 600;
  margin-right: var(--mb-0-25);
}

.home_scroll-arrow {
  font-size: 1.25rem;
}
/* HOME SECTION ENDS HERE */


 /* ABOUT SECTION STARTS HERE */
 .main-content {
	/* padding-top: 100px; */
	padding-bottom: 100px;
  background: var(--background-primary);
}

.service-row {
	align-items: center;
}

.section-img {
	position: relative;
	display: flex;
	justify-content: center;
}
.section-img .main-img {
	width: 100%;
	height: 550px;
	object-fit: cover;
	border-radius: 5px;
	z-index: 1;
	position: relative;
}
@media (max-width: 577px) {
  .section-img .main-img{
    display: none;
  }
}
.section-img .path-img {
	position: absolute;
	height: 150px;
	width: 150px;
	top: -50px;
	left: -50px;
	opacity: 0.5;
	z-index: 0;
}
.section-img .path-img2 {
	position: absolute;
	bottom: -25px;
	right: -25px;
	opacity: 0.5;
	z-index: 0;
}
.section-img .path-img3 {
	position: absolute;
	height: 350px;
	width: 350px;
	top: -50px;
	opacity: 0.1;
	z-index: 0;
}

.section-content .section-bit {
	color: #03a9f4;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.section-content .section-title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: capitalize;
	color: var(--foreground-primary);
}
@media (max-width: 900px){
  .section-content .section-title{
    font-size: 35px;
  }
}

.section-content .section-desc {
	color: var(--foreground-secondary);
	margin-bottom: 25px;
}

.section-content .section-services {
	font-size: 20px;
	background: #fff;
	padding: 15px 30px;
	margin-bottom: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 568px) {
  .section-content .section-services{
    font-size: 15px;
  }

}
.section-content .section-services_col {
	margin-top: 10px;
	margin-bottom: 10px;
}
.section-content .section-services_col i {
	color: #03a9f4;
	width: 20px;
	text-align: center;
	margin-right: 7px;
	transform: scale(1.2);
}
 /* ABOUT SECTION ENDS HERE */


 /* SERVICES SECTION STARTS HERE */
 .container-fluid{
  background: var(--background-primary);
  }
 .serv{
  padding-left: 4rem;
  padding-right: 4rem;
  padding-bottom: 1rem;
  
 }
 .theme-text {
  color: #474af0;
}

.card-img-top {
  height: 200px;
  width: 100%;
}
.card {
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  }
.card:hover {
  color: white;
}
.card::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0%;
  background: #474af0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
.card:hover::before {
  left: 0%;
  color: white;
}
.container-fluid {
  background-position: center;
  background-size: cover;
}
 /* SERVICES SECTION ENDS HERE */


 /* skills section starts */
 .skills-section{
  padding-top: 20px;
  background: var(--background-primary);
  }
  
  .skills-header{
  text-align: center;
  color: #fff;
  padding: 1rem;
  position: relative;
  }
  
  .skills-header:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #2ecc71;
  border-radius: 2px;
  }
  
  .skills-container{
  display: grid;
  grid-tempLate-columns: repeat(5, 1fr);
  justify-content:center;
  align-items:center;
  text-align: center;
  grid-gap:1rem;
  padding: 1rem 80px;
  font-size: 1.2rem;
  }
  .skills-box{
  padding: 1rem;
  color: #000;
  cursor:pointer;
  }
  .skills-box:hover > .skills-title :after, 
  .skills-box:hover > .skills-title:before{
  width: 50px;
  }
  .skills-box:hover .skills-img{
  transform: translateX(-20px);
  }
  
  .skills-title{
  display:flex;
  flex-direction: column;
  align-items:center;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  }
  
  /* .skills-title:after{
  content: '';
  position:absolute;
  bottom: 0;
  right: 50%;
  width:20px;
  height:4px;
  border-radius: 2px 0 0 2px;
  background-color:  #363333;
  transition: .5s;
  }
   */
  /* .skills-title:before{
  content: '';
  position:absolute;
  bottom: 0;
  left: 25%;
  width:100px;
  height:4px;
  border-radius: 0 2px 2px 0;
  background-color:  #474242;
  }
   */
  .skills-icons{
  width:50px;
  z-index:2;
  }
  
  .skills-img{
  width:90px;
  height:90px;
  position: relative;
  border-radius: 45px;
  background-color: hsl(222, 5%, 57%);
  display:flex;
  justify-content:center;
  align-items:center;
  transition: .5s;
  }
  
  .skills-img:after{
  content: '';
  position:absolute;
  top:0;
  left: 0;
  width:50%;
  height:90px;
  border-radius: 45px 0 0 45px;
  }
  .skills-title h3{
  color: var(--foreground-primary);
  margin-top: 0.5rem;
  font-size: 1.3rem;
  }
  @media screen and (max-width:990px){
   .skills-container{
   grid-tempLate-columns: repeat(2, 1fr);
   padding: 2rem 50px;
   }
  }
  
  @media screen and (max-width:650px){
   .skills-container{
   /* grid-tempLate-columns:2fr;
   padding: 2rem 50px; */
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem;
    padding: 2rem 0.2rem 2rem 0.2rem;
    gap: .2px;
   }
  }
/* skills media queries ends*/
/* skills section ends */

    


/* TIMELINE SECTION STARTS HERE */
body > h1 {
  text-align: center;
  margin-bottom: 80px;
  font-size: 2em;
  color: #3664F4;
  position: relative;
  margin-top: 40px;
  padding-bottom: 15px;
  font-weight: 300;
  font-weight: 600;
}
body > h1::after {
  content: "";
  height: 2px;
  background-color: rgba(103, 58, 183, 0.2);
  width: 160px;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  position: absolute;
}
body > h1::before {
  content: "›";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #3664F4;
  left: 50%;
  margin-left: -8px;
  transform: rotate(90deg);
  box-shadow: 0 0 0 4px rgba(103, 58, 183, 0.2);
  bottom: -25px;
  font-size: 0.7em;
  text-indent: 0px;
  color: #fff;
  line-height: 12px;
  z-index: 9;
}
.tl{
  background: var(--background-primary);
  margin-bottom: -8rem;
}
.timeline {
  padding: 0px 5%;
  max-width: 1300px;
  margin: 0 auto;
 }
.timeline > .timeline-item {
  display: flex;
  align-items: flex-start;
}
.timeline > .timeline-item > div {
  flex: 1;
  padding: 20px 40px;
}
.timeline > .timeline-item > div:last-child {
  text-align: left;
  padding-bottom: 40px !important;
}
.timeline > .timeline-item > div:first-child::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #7a97ec;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(103, 58, 183, 0.2);
}
.timeline > .timeline-item:nth-child(odd) > div:first-child {
  text-align: right;
  position: relative;
}
.timeline > .timeline-item:nth-child(odd) > div:first-child::after {
  right: -17px;
}
.timeline > .timeline-item:nth-child(odd) > div:last-child {
  text-align: left;
  border-left: 2px solid #e0e0e0;
}
.timeline > .timeline-item:nth-child(odd) > .timeline-date > div {
  margin-right: 0px;
}
.timeline > .timeline-item:nth-child(odd) > .timeline-date > img {
  right: 11%;
  left: inherit;
}
.timeline > .timeline-item:nth-child(odd) > .timeline-content > h2 {
  text-align: left !important;
  color: var(--foreground-primary);
}
.timeline > .timeline-item:nth-child(odd) > .timeline-content > p > img {
  right: 0;
}
.timeline > .timeline-item:nth-child(even) > div:first-child {
  order: 2;
  text-align: left;
  position: relative;
}
.timeline > .timeline-item:nth-child(even) > div:first-child::after {
  left: -1px;
}
.timeline > .timeline-item:nth-child(even) > div:last-child {
  order: 1;
  text-align: right;
  border-right: 2px solid #e0e0e0;
}
.timeline > .timeline-item:nth-child(even) > .timeline-date > div {
  margin-left: 0px;
}
.timeline > .timeline-item:nth-child(even) > .timeline-date > img {
  left: 11%;
  right: inherit;
}
.timeline > .timeline-item:nth-child(even) > .timeline-content > h2 {
  text-align: right !important;
  color: var(--foreground-primary);
}
.timeline > .timeline-item:nth-child(even) > .timeline-content > p > img {
  right: inherit;
  left: 0;
  transform-origin: bottom left;
}
.timeline > .timeline-item:nth-child(even) > .timeline-content > p > button {
  left: inherit;
  right: 15px;
}
.timeline > .timeline-item .timeline-date {
  position: relative;
}
.timeline > .timeline-item .timeline-date > img {
  position: absolute;
  filter: grayscale(100%);
  opacity: 0.06;
  transform: scale(1.2);
  transform-origin: center;
  left: 11%;
}
.timeline > .timeline-item .timeline-date > div {
  background-image: linear-gradient(to right, #3664F4, #6544f8, #7783f3, #a5b1f8, #c1c0f0);
  box-shadow: 0 10px 15px rgba(103, 58, 183, 0.3);
  border-radius: 50px;
  color: #ffffff;
  text-align: center;
  max-width: max-content;
  margin: auto;
  padding: 10px 30px;
}
.timeline > .timeline-item .timeline-content .fa-icon {
  font-size: 80px;
}
.timeline > .timeline-item .timeline-content > h2 {
  color: #673AB7;
  margin: 0px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 7px;
}
.timeline > .timeline-item .timeline-content > h2 span {
  color: #DC22FF;
  font-weight: bold;
  font-size: 0.6em;
  letter-spacing: 2px;
  margin-left: 5px;
}
.timeline > .timeline-item .timeline-content > p {
  font-size: 0.9em;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(103, 58, 183, 0.08);
  position: relative;
  line-height: 25px;
  padding-bottom: 60px;
  min-height: 100px;
}
.timeline > .timeline-item .timeline-content > p > img {
  width: 100px;
  opacity: 0.05;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: bottom right;
  transform: scale(1.8);
}
.timeline > .timeline-item .timeline-content > p > button {
  background: no-repeat;
  outline: none;
  color: #673AB7;
  border: none;
  padding: 7px 15px;
  position: absolute;
  bottom: 15px;
  border-radius: 30px;
  left: 15px;
  box-shadow: 0 0px 2px rgba(103, 58, 183, 0.1);
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 0.9em;
  font-weight: normal;
  transition: all 0.5s ease;
}
.timeline > .timeline-item .timeline-content > p > button:hover {
  background: rgba(103, 58, 183, 0.7);
  box-shadow: 0 5px 10px rgba(103, 58, 183, 0.1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .timeline > .timeline-item {
    flex-direction: column;
    border-left: 2px solid #e0e0e0;
  }
  .timeline > .timeline-item .timeline-date > img {
    display: none;
  }
  .timeline > .timeline-item > div {
    border-width: 0px !important;
    text-align: left !important;
    order: unset !important;
  }
  .timeline > .timeline-item > div::after {
    left: 0% !important;
  }
  .timeline > .timeline-item:nth-child(odd) > .timeline-content > h2 {
    text-align: left !important;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-content > h2 {
    text-align: left !important;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-content > p > img {
    right: 0;
    left: inherit;
    transform-origin: bottom right;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-content > p > button {
    left: 15px;
    right: inherit;
  }
}

/* TIMELINE SECTION ENDS HERE */


/* PORTFOLIO  SECTION STARTS HERE*/
.qualification section{
  background: var(--background-primary);
  margin-bottom: -2rem;
}
.portfolio_container {
  overflow: initial;
}

.portfolio_content {
  padding: 0 2.5rem;
}

.portfolio_img {
  width: 256px;
  border-radius: 0.5rem;
  justify-self: center;
}

.portfolio_title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--foreground-primary);
}

.portfolio_description {
  margin-bottom: var(--mb-0-75);
  color: var(--foreground-secondary);
}

.portfolio_button:hover .button_icon {
  transform: translateX(0.25rem);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-portfolio-icon {
  font-size: 2rem;
  color: var(--first-color);
}

.swiper-button-prev {
  left: -0.5rem;
}

.swiper-button-next {
  right: -0.5rem;
}

.swiper-pagination{
  color: var(--foreground-primary);
}
.swiper-horizontal > .swiper-pagination-bullets {
  bottom: -2.5rem;
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullet {
  outline: none;
}

 /* past work section starts here */
 .work-border h1,h2{
  font-weight: 600;
}

.work-border{
  background: rgb(255, 230, 0);
  border-radius: 5%;
  }
  .work .theme-text{
  color: #fff;
  font-size: 2rem;
  text-decoration: underline;
  }
  .work h1,h2{
  font-size: 1.2rem;
  text-align: center;
  }
  .work h2{
    font-size: 1.4rem;
  }
  @media screen and (max-width: 700px) {
    .work h2{
      font-size: 18px;

    }
  }
  .work{
  padding: 4rem;
  margin-left: 5rem;
  margin-right: 5rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  }
  @media screen and (max-width: 1200px) {
    .work{
      padding: 4rem;
      margin-left: -1.5rem;
      margin-right: .5rem;
      align-items: center;
      justify-content: center;
      align-content: center;
      }
  }
  .work img{
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem;
  box-shadow: 0 1px 4px rgba(41, 44, 46, 0.3);
  }
  
  .bd-grid{
  display: grid;
  grid-template-columns: 100%;
  grid-column-gap: 2rem;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
  }
  .work__container{
  row-gap: 2rem;
  }
  .work__img{
  box-shadow: 0 4px 25px rgba(14,36,49,.15);
  border-radius: .5rem;
  overflow: hidden;
  }
  .work__img img{
  transition: 1s;
  cursor: pointer;
  }
  .work__img img:hover{
  transform: scale(1.1);
  }
  .work .btns{
  margin-left: 3rem;
  margin-bottom: 1rem;
  }
  
  @media screen and (max-width: 1100px){
  .work{
  padding: .5rem;
  }
  }
  
  @media screen and (max-width: 500px){
    .work .btns{
    margin-left: 1.5rem;
    }
    }
  
  @media screen and (min-width: 768px){
  .work__container{
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2,1fr);
  column-gap: 2rem;
  }
  
  }
/* past work section ends here */

/* PORTFOLIO SECTION ENDS HERE */




 /* CONTACT SECTION STARTS HERE */
 .cont{
  background-size: cover;
  background-position: center;
  padding-bottom: 4rem;
  padding-top: 2rem;
}
.cont .container body {
min-height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}

.cont .container body::after {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(0,0,0,0.8);
}

.cont .container section {
position: relative;
z-index: 3;
padding-top: 50px;
padding-bottom: 50px;
}

.cont .container {
max-width: 1080px;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
}

.cont .section-header {
margin-bottom: 50px;
text-align: center;
}

.cont .section-header h2 {
color: #FFF;
font-weight: bold;
font-size: 3em;
margin-bottom: 20px;
}

.cont .section-header p {
color: #FFF;
}

.cont .row  {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}

.cont .contact-info {
width: 50%;
}

.cont .contact-info-item {
display: flex;
margin-bottom: 30px;
}

.cont .contact-info-icon {
height: 70px;
width: 70px;
background-color: #fff;
text-align: center;
border-radius: 50%;
}

.cont .contact-info-icon i {
font-size: 30px;
line-height: 70px;
}

.cont .contact-info-content {
margin-left: 20px;
}

.cont .contact-info-content h4 {
color: #1da9c0;
font-size: 1.4em;
margin-bottom: 5px;
}

.cont .contact-info-content p {
color: #FFF;
font-size: 1em;
}

.cont .contact-form {
background-color: #fff;
padding: 40px;
width: 45%;
padding-bottom: 20px;
padding-top: 20px;
border-radius: 5%;
}

.cont .contact-form h2 {
font-weight: bold;
font-size: 2em;
margin-bottom: 10px;
color: #333;
}

.cont .contact-form .input-box {
position: relative;
width: 100%;
margin-top: 10px;
}

.cont .contact-form .input-box input,
.cont .contact-form .input-box textarea{
width: 100%;
padding: 5px 0;
font-size: 16px;
margin: 10px 0;
border: none;
border-bottom: 2px solid #333;
outline: none;
resize: none;
}

.cont .contact-form .input-box span {
position: absolute;
left: 0;
padding: 5px 0;
font-size: 16px;
margin: 10px 0;
pointer-events: none;
transition: 0.5s;
color: #666;
}

.cont .contact-form .input-box input:focus ~ span,
.cont .contact-form .input-box textarea:focus ~ span{
color: #e91e63;
font-size: 12px;
transform: translateY(-20px);
}

.cont .contact-form .input-box input[type="submit"]
{
width: 100%;
background: #3664F4;
color: #FFF;
border: none;
cursor: pointer;
padding: 10px;
font-size: 18px;
border: 1px solid #3664F4;
transition: 0.5s;
}

.cont .contact-form .input-box input[type="submit"]:hover
{
background: #FFF;
color: #3664F4;
}

@media (max-width: 991px) {
.cont section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.cont .row {
  flex-direction: column;
}

.cont .contact-info {
  margin-bottom: 40px;
  width: 100%;
}

.cont .contact-form {
  width: 100%;
}
}
/* CONTACT SECTION ENDS HERE */


/* FOOTER SECTION STARTS HERE */
.container-fluid{
  background: var(--background-primary);
}
.logo-footer{
 width: 5rem;
}
/* FOOTER SECTION ENDS HERE */



/* SCROLL UP */
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -10%;
  background-color: var(--first-color);
  opacity: 0.8;
  padding: 0 0.3rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: 0.4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
}

.scrollup_icon {
  font-size: 1.5rem;
  color: #fff;
}

/* SHOW SCROLL BUTTON */
.show-scroll {
  bottom: 1.5rem;
}

/* SCROLL BAR */
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/* MEDIA QUERIES */
/* For small devices */
@media screen and (max-width: 350px) {
  /* .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  } */

  .nav_menu {
    padding: 2rem 0.25rem 4rem;
  }

  .nav_list {
    column-gap: 0;
  }

  .home_content {
    grid-template-columns: 0.25fr 3fr;
  }

  .home_blob {
    width: 180px;
  }

  .skills_title {
    font-size: var(--normal-font-size);
  }

  .qualification_data {
    gap: 0.5rem;
  }

  .portfolio-img {
    width: 200px;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .home_content {
    grid-template-columns: max-content 1fr 1fr;
  }

  .home_data {
    grid-column: initial;
  }

  .home_img {
    order: 1;
    justify-self: center;
  }

  .about_container,
  .contact_container,
  .footer_container,
  .portfolio_content {
    grid-template-columns: repeat(2, 1fr);
  }

  .qualification_sections {
    display: grid;
    grid-template-columns: 0.6fr;
    justify-content: center;
  }
}

@media screen and (max-width: 1200px) {
  .serv{
    padding-left: .5rem;
    padding-right: .5rem;
   }
   .clients {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    }
}

@media screen and (min-width: 768px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  body {
    margin: 0;
  }

  .section {
    padding: 6rem 0 2rem;
  }

  .section_subtitle {
    margin-bottom: 4rem;
  }

  .header {
    top: 0;
    bottom: initial;
  }

  .header,
  .main,
  .footer_container {
    padding: 0 1rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 1rem;
  }

  .nav_icon,
  .nav_close,
  .nav_toggle {
    display: none;
  }

  .nav_list {
    display: flex;
    column-gap: 2rem;
  }

  .nav_menu {
    margin-left: auto;
  }

  .change-theme {
    margin: 0;
  }

  .home_container {
    row-gap: 5rem;
  }

  .home_content {
    padding-top: 5.5rem;
    column-gap: 2rem;
  }

  .home_blob {
    width: 270px;
  }

  .home_scroll {
    display: block;
  }

  .home_scroll-button {
    margin-left: 3rem;
  }

  .about_container {
    column-gap: 5rem;
  }

  .about_img {
    width: 350px;
  }

  .about_description {
    text-align: initial;
  }

  .about_button {
    justify-content: initial;
  }

  .skills_container,
  .about_container {
    grid-template-columns: repeat(2, 1fr);
  }

  .qualification_tabs {
    justify-content: center;
  }

  .qualification_button {
    margin: 0 var(--mb-1);
  }

  .qualification_sections {
    grid-template-columns: 0.5fr;
  }

  .portfolio_img {
    width: 320px;
  }

  .portfolio_content {
    align-items: center;
  }

  .footer_container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer_bg {
    padding: 3rem 0 3.5rem;
  }

  .footer_links {
    flex-direction: row;
    column-gap: 1rem;
  }

  .footer_socials {
    justify-self: flex-end;
  }

  .footer_copy {
    margin-top: 4.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .header,
  .main,
  .footer_container {
    padding: 0;
  }

  .home_blob {
    width: 320px;
  }

  .home_social {
    transform: translateX(-6rem);
  }

  .portfolio_content {
    column-gap: 5rem;
  }

  .swiper-portfolio-icon {
    font-size: 3.5rem;
  }

  .swiper-button-prev {
    left: -3.5rem;
  }

  .swiper-button-next {
    right: -3.5rem;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: -4.5rem;
  }

  .contact_form {
    width: 460px;
  }

  .contact_inputs {
    grid-template-columns: repeat(2, 1fr);
  }
}
