* {
    padding: 0%;
    margin: 0%;
    /* font-family: "Font"; */
    box-sizing: border-box;
}

*::selection {
    color: #fff;
    background-color: black;
}

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

#cursor {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

#right-nav-links {
  gap: 25px;
  display: flex;
  align-items: center;
}

#right-nav-links li {
  list-style: none;
}

#right-nav-links li a {
  position: relative;
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 0;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* underline animation */
#right-nav-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #1a0000;
  transition: width 0.4s ease;
}

#right-nav-links li a:hover::before {
  width: 100%;
}

#right-nav-links li a.active::before {
  width: 100%;
}


html,
body {
    width: 100%;
    height: 100%;
}

#main {
    width: 100%;
    background-color: #fff;
}

#home {
    width: 100%;
    min-height: 100vh;
 }

#nav {
    align-items: center;
    justify-content: space-between;
    display: flex;
    width: 100%;
    padding: 10px 90px;
 }

#nav img {
    width: 86px;
}

li {
    list-style: none;

}

a {
    text-decoration: none;
    font-weight: 500;
}

#right-nav-links {
    gap: 25px;
    display: flex;
    align-content: center;
}

#hamburger i {
    display: none;
}

#right-nav-links a li {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-weight: 500;
    color: black;
    letter-spacing: 0px;
}

 

/*----------------Home main------------- */

#homemain {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
 }

#homemain-text {
    text-align: center;
    line-height: 1.1;
}

#homemain-text h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 70px;
    font-weight: 700;
}

#homemain-text h5 {
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: 500;
}
 
 

/* carda section */

#dev {
    width: 100%;
    padding: 5vw 20vw;
}

#dev h1 {
    font-size: 4vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 0.9;
    width: 60%;
}


#dev p {
    margin-top: 0.5vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#slides {
   /* flex-direction: column;
   align-items: center; */
    padding: 3vw 5vw;
    display: flex;
    justify-content: space-around;
}

.slide {
    
    width: 30%;
}

.slide .img {
    
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 200px;
    background-color: yellow;
}

.slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.slide .tag {
    border-radius: 100px;
    width: fit-content;
    background-color: rgb(236, 236, 236);
    padding: 10px 22px;
    margin: 15px 0;
}