*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.containers{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height:100%;
    background: #f5f5f5;
    box-shadow: 0 30px 30px #dbdbdb;
}

.containers .slide .item{
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 40px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide .item:nth-child(3){
    left: 50%;
}
.slide .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide .item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}

.item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 500px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}

    .content button:hover {
        color: #FFFFFF; /* White */
        background-color: #FF8C00; /* Dark orange */
    }




.slide .item:nth-child(2) .content{
    display: block;
}


.content .name{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size:30px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}



.button{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.button button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
}

.button button:hover{
    background: #ababab;
    color: #fff;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* body {
  min-height: 100vh;
  background: url("background.jpg") no-repeat;
  background-size: cover;
  background-position: center;
} */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:20%;
  padding: 20px 100px;
  background: rgba(255, 255, 255, 0.256);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 100;
  align-items: center;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height:5%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(88, 82, 82, 0.519),
    transparent
  );
  transition: 0.5s;
}
.header:hover::before {
  left: 100%;
}
.nav-link{
  color:black;
}
.nav-link:hover{
  color:red !important; 
}
/* @media(min-width:300px) {
  .header{
      height:10%;
     
      padding: 20px ;
  }} */
  /* @media (min-width: 480px) and (max-width: 767px) {
    .header {
        height: 400px;
    }} */

/* .navbar a {
  color: #0c0101;
  font-size: 18px;
  text-decoration: none;
  margin-left: 35px;
  transition: 0.3s;
  align-items: center;
}
.navbar a:hover {
  color: #f00;
} */
/* #menu-icon {
  font-size: 36px;
  color: #954646;
  display: none;
}
/* BREAKPOINTS */
/* @media (max-width: 992px) {
  .header {
    padding: 1.25rem 4%;
  }
}
@media (max-width: 768px) {
  #menu-icon {
    display: block;
  } */ */
  /* .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0.5rem 4%;
    display: none;
  }
  .navbar.active {
    display: block;
  }
  .navbar a {
    display: block;
    margin: 1.5rem 0;
  }
  .nav-bg {
    position: absolute;
    top: 79px;
    left: 0;
    width: 100%;
    height: 295px;
    background: rgba(192, 90, 90, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 99;
    display: none;
  }
  .nav-bg.active {
    display: block;
  } */
/* } */
/* <================================footer======================================> */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body{
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
}  */
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
  
}
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #475863;
    padding: 50px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e20813;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}
.wrapper {
    display: inline-flex;
    list-style: none;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    align-items: center;
    padding: 15px;
    margin: 10px;
    width: 30px;
    height: 30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background-color: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 40%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #000;
    color: #fff;
}
/* =====================about================= */
.anime {
  animation-name: slideLeft;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-play-state: running;
  animation-timing-function: cubic-bezier(0.28, -1.48, 0.54, 2.21);
}

@keyframes slideLeft {
  from {
      transform: translateX(300%)
  }
}

@keyframes slideRight {
  to {
      transform: translateX(300%)
  }
}

@keyframes slideUp {
  from {
      transform: translateY(300%)
  }
}

@keyframes slideDown {
  to {
      transform: translateY(300%)
  }
}

@keyframes rotate {
  50% {
      transform: rotateZ(360deg)
  }
}

@keyframes grow {
  50% {
      transform: scale(2, 2)
  }
}

@keyframes shrink {
  50% {
      transform: scale(0.5, 0.5)
  }
}

@keyframes fade {
  100% {
      opacity: 1
  }
}

@keyframes colorChange {
  0% {
      background-color: hsl(0, 100%, 62%)
  }

  20% {
      background-color: hsl(35, 100%, 62%)
  }

  40% {
      background-color: hsl(63, 100%, 62%)
  }

  60% {
      background-color: hsl(103, 100%, 62%)
  }

  80% {
      background-color: hsl(201, 100%, 62%)
  }

  100% {
      background-color: hsl(268, 100%, 62%)
  }
}

@keyframes glow {
  50% {
      box-shadow: 0px 0px 50px hsl(60, 100%, 64%)
  }
}

.btn {

  background: #ffffff;
  border: 2px solid #fff;
  outline: none;
  border-radius: 20px;
  width: 150px;
  box-shadow: 0 0 40px #b8b8b7c5;
  font-size: 20px;
  color: #131212;
  letter-spacing: 1px;
  float: right;
  cursor: pointer;
}

.btn:hover {

  filter: blur(1px);
  background-color: rgb(241, 197, 180);
  box-shadow: 0 0 40px #eceeae;
}

.containerees {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
}

.divs {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  height: 300px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #1cd8d2, #93edc7);
  color: white;
  margin: 100px 0;
  border-radius: 7px;
}

.about {

  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style:normal;
  font-size:15px;
}

.animated-element {
  animation: moveUp 2s ease-in-out forwards;
}

@keyframes moveUp {
  from {
      transform: translateY(100%);
      opacity: 0;
  }

  to {
      transform: translateY(0);
      opacity: 1;
  }
}












