
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  /* --default-color: #272829;  */
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #45505b; 
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0563bb; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #45505b; 
   /* The default color of the main navmenu links */
  --nav-hover-color: #0563bb; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0563bb; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  min-width: 200px;
}

@media (max-width: 1199px) {
  .header {
    background-color: var(--background-color);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    width: 300px;
    left: -100%;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .header~main {
    margin-left: 160px;
  }

  .header~main .hero {
    margin-left: -160px;
    width: 100vw;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 20px;
}

.navmenu a span,
.navmenu a:focus span {
  padding: 0 5px 0 7px;
}

@media (min-width: 992px) {

  .navmenu a,
  .navmenu a:focus {
    max-width: 56px;
  }

  .navmenu a span,
  .navmenu a:focus span {
    display: none;
  }
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
  color: var(--contrast-color);
  background: var(--nav-hover-color);
}

.navmenu a:hover,
.navmenu li:hover>a {
  max-width: 100%;
  color: var(--contrast-color);
}

.navmenu a:hover span,
.navmenu li:hover>a span {
  display: block;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
} 

 .page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
} 



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
  transform:scale(1.3);
}
.resume-btn{
    margin-top: 20px;
}

 .resume-btn1 {
  display: inline-block;
  padding: 5px 5px;
  padding-left: 10px;
  padding-right: 10px;
  background-color:#252525 ;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.resume-btn1:hover {
 color:#fff;
 transform:scale(1.2);
 box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
} 

.typed{
  font-weight: 500;
  font-style: italic;
}
@media(max-width:500px){
     .resume-btn1{
      font-size: 13px;
     } 
}


@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }
}
@media (max-width: 991px){
  #hero .container{
    margin-left: 50px;
  }
}

/* About section */

@media (min-width: 1199px) {
#about h2{
  margin-right: 150px;
}

.about-text{
   margin-left: -200px; 
    flex: 1;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

}
.about-section {
  text-align: center;
  padding: 50px 0;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-section h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #060606;
  font-weight: bold;
}

.about-description {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}
.about-text{
  padding: 10px;
  padding-right: 20px;
  text-align: justify;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  
}
.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 55%;
}

.about-text h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: black;
  font-weight: bold;
  text-align: center;
}

.about-text p {
  font-size: 1.2em;
  line-height: 1.6;
  color: grey;
  margin-bottom: 20px;
  font-weight:bolder;
}

.about1-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.about1-container img{
  width: 100%;
  height: auto;
  max-width: 500px;
}

@media (max-width:875px){
  .about-text {
  max-width: 100%;
  }
}

/* Skills2 Section        */

.skills2-section {
  margin-top: -50px;
  text-align: center;
  padding: 30px 0;
  background-color: #ffffff;
  border-top: 1p
  x solid #e0e0e0;
}

@media (min-width: 1199px) {
  .skills2-section h2{
    margin-right: 100px;
  }
}
.skills2-section h2{
font-size: 2.5em;
  margin-bottom: 10px;
  color: #060606;
  font-weight: bold;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skill2-section h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.skill2-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.skill2-text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

 .Skills2 {
  flex: 1;
  min-width: 300px;
  max-width: 55%;
  margin-top: 60px;
}
.skill2-text img{
  width: 100%;
  height: auto;
  max-width: 500px;
}

 .Skills2 h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.skills2-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.skill2 {
  background-color: #e0e0e0;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1em;
  color: #333;
  transition: background-color 0.3s;
  position: relative;
  overflow: hidden;
}


.skill2 img{
  height: 70px;
  width: 70px;
}

.skill2:hover {
  background-color: #c0c0c0;
}

@media (max-width:875px){
  .Skills2 {
  max-width: 100%;
  }
}
/* skill hover data name */
.skill2::before {
  content: attr(data-name);
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  background:  #c0c0c0;
  color:black;
  font-size: 12px;
  text-align: center;
  padding:2px;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
 }   

.skill2:hover::before {
  opacity: 1;
  z-index: 2;
  transform: scale(1.2);
} 
 
/*--------------------------------------------------------------
# Portfolio Section ---Project Section
--------------------------------------------------------------*/
@media (min-width:1199px){
  #portfolio h2{
    margin-right: 100px;
  }
}
#portfolio h2{
  font-size: 2.5em;
  color: #060606;
  font-weight: bold;
  text-align: center;
}
.portfolio-box {
  height: 250px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 box-shadow: 5px 5px 7px rgba(63, 81, 181, 0.8);
 color: white;
 background-color:#3f51b5;
}

.portfolio-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(63, 81, 181, 0.4);                   
}

#portfolio .row{
  margin-top: 50px;
}

.project-info {
  padding: 20px;
}

.project-name {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color:#ffffff;
  font-weight: bold;
  
}

.project-description {
  font-size: 14px;
  color:#c5cae9
}

.language {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.image-container {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.language img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.1);
}

.image-container::before {
  content: attr(data-name);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 12px;
  text-align: center;
  padding: 2px 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.image-container:hover::before {
  opacity: 1;
  z-index: 2;
}

.links {
  margin-top: 20px;
}

.github-link,
.preview-link {
  display: inline-block;
  padding: 8px 12px;
  margin-right: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
  transition: 0.3s;
 
}

.github-link{
  background-color:black;
  color: white;
}

.preview-link:hover {
  background-color:black;
  color: #fff;
  border-color: #333;
  transform: scale(1.1);
}

.github-link:hover{
  transform: scale(1.1);
  color: #fff;
}
.preview-link {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}


@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/*--------------------------------------------------------------
# Contact  Section
--------------------------------------------------------------*/
/* */

   @media (min-width:1199px){
    #contact h2{
           margin-right: 100px;
    }
    .contact-section{
      margin-left: 60px;
      max-width: 80%;
    }
    .contact-connect img{
       margin-right: 60px;
    }
    .contact-para{
      margin-left: -60px;
    }
    .made{
      margin-right: 130px;
    }
   }
#contact{
  margin-top: 30px;
}
.contact-section {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
}
#contact h2{
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #060606;
  font-weight: bold;
  text-align: center;
}
.contact-section h2 {
  margin: 0 0 10px;
}

.contact-section p {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 1.2em;
  line-height: 1.6;
  color: grey;
  margin-bottom: 20px;
  font-weight:bolder;
 
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.social-icons img {
  width: 50px;
  height: 50px;
  filter: invert(28%) sepia(95%) saturate(7493%) hue-rotate(185deg) brightness(90%) contrast(107%);
  transition: 0.2s;
  
}
.social-icons img:hover{
filter: invert(28%) sepia(95%) saturate(7493%) hue-rotate(185deg) brightness(110%) contrast(107%);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
transform: scale(1.2);
}

.resume-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.resume-button:hover {
  background-color: #0056b3;
}
.contact-connect{
  text-align: center;
}
.contact-para{
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
}
.contact-connect p{
  margin-top: 50px;
  text-align: center;
  border-radius: 10px;
  background-color:#6c63ff;
  color: white;
  font-size: 30px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight:400;
  padding: 10px;
}
.contact-connect img{
  max-width: 700px;
}
.made{
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 1.2em;
  line-height: 1.6;
  color: grey;
  margin-bottom: 20px;
  font-weight:bolder;
}

@media (max-width: 600px) {
  .social-icons img {
      width: 40px;
      height: 40px;
  }

  .resume-button {
      padding: 8px 16px;
  }
  .contact-connect p{
    font-size: 22px;
    padding: 5px;
  }
}

/* ------End Contact Section */

/* Footer */
.footer .copyright{
  /* background-color: grey; */
}


/* style for animation */
.animate-hero,.animate-dev, .animate-sociallinks ,.resume-btn{
  opacity: 0;
}
.animate-hero.animate__animated ,.animate-dev.animate__animated, .animate-sociallinks.animate__animated,.resume-btn.animate__animated {
  opacity: 1;
}

.animate-dev{
  animation-delay: 0.2s;
}
.animate-sociallinks{
  animation-delay: 1.10s;
}
.resume-btn{
  animation-delay: 1.10s;
}

/* about */
.animate-abouth1,.about1-container,.animate-abouth3,.animate-para1,.animate-para2,.animate-skillh1{
  opacity: 0;
}
.animate-abouth1.animate__animated,.about1-container.animate__animated,.animate-abouth3.animate__animated,
.animate-para1.animate__animated,.animate-para2.animate__animated,.animate-skillh1__animate__animated{
opacity:1;
}


/* skills */

.animate-skillimg,.animate-skillimg1,.animate-skillimg2,.animate-skillimg3,.animate-skillimg4,.animate-skillimg5,
.animate-skillimg6,.animate-skillimg7,.animate-skillimg8,.animate-skillimg9,.animate-skillimg10,.animate-skillimg11,.skill2-text{
  opacity: 0;
}

.animate-skillimg.animate__animated,.animate-skillimg1.animate__animated,.animate-skillimg2.animate__animated,.animate-skillimg3.animate__animated,
.animate-skillimg4.animate__animated,.animate-skillimg5.animate__animated,.animate-skillimg6.animate__animated,.animate-skillimg7.animate__animated,
.animate-skillimg8.animate__animated,.animate-skillimg9.animate__animated,.animate-skillimg10.animate__animated,.animate-skillimg11.animate__animated,
.skill2-text.animate__animated{
  opacity:1;
}


/* project */

.animate-projh2,#animate-proj1,#animate-proj2,#animate-proj3,#animate-proj4,#animate-proj5,#animate-proj6{
  opacity: 0;
}
.animate-projh2__animate__animated,#animate-proj1.animate__animated,#animate-proj2.animate__animated,#animate-proj3.animate__animated,
#animate-proj4.animate__animated,#animate-proj5.animate__animated,#animate-proj6.animate__animated{
  opacity: 1;
}
#animate-proj1,#animate-proj2,#animate-proj3,#animate-proj4,#animate-proj5,#animate-proj6{
  transition: 2s;
}

/* contact */

.animate-contacth2,.animate-conp,.animate-cicon1,.animate-cicon2,.animate-cicon3,.resume-button,.contact-para,#animate-contactimg,.animate-made1,
.animate-made2,.animate-made3{
  opacity: 0;
}
.animate-contacth2.animate__animated,.animate-conp.animate__animated,.animate-cicon1.animate__animated,
.animate-cicon2.animate__animated,.animate-cicon3.animate__animated,.resume-button.animate__animated,.contact-para.animate__animated,
#animate-contactimg.animate__animated,.animate-made1.animate__animated,.animate-made2.animate__animated,.animate-made3.animate__animated{
  opacity: 1;
}

.animate-made1,.animate-made3{
  transition: 1s;
}

.animate-made2{
  animation-delay: 1s;
}










