
  @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #101010;
    --secondary-color: #EEEEEE;
    --accent-color: #FFB2B2;
}




.logo {
    height: 90px;
}

.header {
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    padding: 30px 60px;
    align-items: start;



}

.navbar {
    display: flex;
    column-gap: 30px;
}

.nav-button {
    border: 2px solid var(--secondary-color);
    padding: 10px 30px;
    border-radius: 18px;
    background-color: transparent;
    color: var(--secondary-color);
    cursor: pointer;

}

.nav-button:hover {
    background-color: #FFF;
    color: var(--primary-color);
}

.navbar a {
    color: var(--secondary-color);
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
}

.bx {
    color: #FFF;
    font-size: 40px;
    cursor: pointer;
}

.icons {
    display: none;
}

/*Main page CSS*/

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background-color: var(--primary-color);
    padding-bottom: 133px;
}

.main-h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    margin-top: 30px;
    text-align: center;
}

.main-p {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin-bottom: 35px;
    color: var(--accent-color);
}

.main-img {
    width: 400px;
    height: 400px;
}
.main-img img {
    width: 100%;
    height: 100%;
}

.floating-icons {
    display: flex;
    margin-top: 60px;
    column-gap: 10px;
   
}

.floating-icons img {
    width: 70px;
    height: 70px;
}

.floating-element {
    position: relative;
    animation: floatAnimation 3s ease-in-out infinite;
  }

  .item-2 {
    position: relative;
    animation: floatAnimation 3.2s ease-in-out infinite;
  }
  .item-3 {
    position: relative;
    animation: floatAnimation 3.3s ease-in-out infinite;
  }

  .item-4 {
    position: relative;
    animation: floatAnimation 3.4s ease-in-out infinite;
  }

  .item-5 {
    position: relative;
    animation: floatAnimation 3.5s ease-in-out infinite;
  }

  .item-6 {
    position: relative;
    animation: floatAnimation 3.6s ease-in-out infinite;
  }

  
  .item-7 {
    position: relative;
    animation: floatAnimation 3.7s ease-in-out infinite;
  }

  
  .item-8 {
    position: relative;
    animation: floatAnimation 3.8s ease-in-out infinite;
  }

  .item-9 {
    position: relative;
    animation: floatAnimation 3.9s ease-in-out infinite;
  }

  .item-10 {
    position: relative;
    animation: floatAnimation 4s ease-in-out infinite;
  }





/**Floating Element*/
@keyframes floatAnimation {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }


/*About me CSS*/

.about-me {
    background-color: var(--primary-color);
    padding-bottom: 60px;
}

.about-me-main-con {
    background-color: var(--secondary-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-con {
    width: 45%;
    margin: 60px 0px;
    height: 35vh;
}

.heading {
    font-size: 35px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    width: 90%;
}

.sub-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    text-align: left;
    width: 85%;
    color: #FFB2B2;
}

.body-copy {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 300;
    text-align: justify;
}

.services {
    background-color: #FFF;
     width: 80%;
    margin: -100px auto auto auto;
    border-radius: 18px;
    display: flex;
}

.service {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    justify-content: start;
    align-items: center;
    border-right: 1px solid #EEEEEE;
    padding: 60px 20px 60px 20px;
    width: 33%;
    
}

.service-3 {
    border: none;
}

.service-img {
    background-color: var(--accent-color);
    border-radius: 100px;
    height: 100px;
    width: 100px;
    padding: 20px 0px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.service img {
    height: 100%;
    width: 70%;    
}

.service .heading {
    width: 100%;
    margin-bottom: 0px;
    text-align: center;
    color: var(--accent-color);
}

.service .body-copy {
    width: 85%;
    font-size: 14px;
    margin-top: -15px;
}

.service span {
    font-weight: 600;
}

.service .floating-icons {
    display: flex;
    align-items: start;
    justify-content: start;
    width: 90%;
    margin-top: 0;
}

.service img {
    width: 60px;
}


/*Recent works*/

.recent-work {
    background-color: var(--secondary-color);
    padding-bottom: 60px;
}
.recent-work .heading {
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    /*margin-top: 50px;*/
}

.recent-work .sub-heading {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
}

.projects {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 60px;
    row-gap: 60px;
}

.project {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.project-img {
    width: 450px;
    height: 270px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-img img{
    width: 90%;
    height: 200px;
    display: block;
}

.graphics-img img{
  border-radius: 18px;
}

.video-con {
  height: 270px;
  width: 450px;
}


.project-desc-con {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;  
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--primary-color);
    opacity: 0;
    transition: ease 0.5s;
    border-radius: 10px;
    padding: 30px;

}

.project-desc-con:hover {
    opacity: 1;
}

.project-desc-con .body-copy {
    color: var(--accent-color);
    width: auto;
    text-align: center;
    margin-bottom: 10px;
    font-size: 13px;
}
.project-desc-con .heading {
    text-align: left;
    color: #FFF;
    width: auto;
    text-align: center;
    margin-bottom: 8px;
}

.main-btn {
    border: 2px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 18px;
    background-color: transparent;
    color: #FFF;
    cursor: pointer;
    margin-top: 10px;
}

.main-btn:hover {
    background-color: #FFF;
    color: var(--primary-color);
    transition: ease-in 0.3s;
}

.main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.main-button a {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 50px;
    border: none;
    border-radius: 28px;
    padding: 13px 40px;
    column-gap: 10px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    background-color: none;
    background-color: var(--primary-color);
}

.bxs-right-arrow {
    font-size: 20px;
    color: #fff;
}

.main-button a:hover {
    border: none;
    transition: ease 0.5s;
    column-gap: 15px;
    padding: 14px 45px;
}

/**All projects*/
/**Projects**/
.categories-con {
    padding: 30px 60px 60px 60px;
    font-family: var(--regular);
    background-color: var(--secondary-color); 
  
  }

  .project-body {
    background-color: var(--secondary-color);
  }

  .categories-con .heading {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    font-size: 40px;

  }
  .categories-con .sub-heading {
    margin-bottom: 60px;
    font-size: 30px;
    width: 100%;
    text-align: center;
  }
  .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 60px;
    row-gap: 60px;
    margin-top: 60px;
  }

  .project-btn {
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
  }

  .project-btn:hover {
    background-color: var(--accent-color);
    color: #FFF;
  }

  .project-header{
    background-color: var(--secondary-color);
  }
  

  .categories-con h1 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .filterDiv {
    float: left;
    color: #ffffff;
    width: auto;
    text-align: center;
    display: none;
    border-radius: 8px;

  }

  .prod-desc {
    background-color: var(--additional-color);
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }
  
  .bg-design {
    height: 330px;
    width: 85%;
    margin-left: auto;
    border-radius: 200px;
    background-color: var(--secondary-color);
  }

  .product-img {
    width: auto;
    height: auto;
    padding: 30px 30px 20px 30px;
    background-color: var(--primary-color);
    border-radius: 18px;
    margin-bottom: 20px;
  }
  

 
  

  .toys-img {
    background-color: var(--secondary-color);
  }

  .grooming-img {
    background-color: var(--tertiary-color);
  }

  .clothes-img {
    background-color: #000000;
  }
  
  .filterDiv img {
    height: 100%;
    width: 100%;
  }

  .product-name {
    font-size: 22px;
    color: var(--tertiary-color);
    font-weight: 600;
    text-align: left;
  }

  .product-cat {
    font-size: 16px;
    color: var(--tertiary-color);
    font-weight: 300;
    text-align: left;
  }

  .product-price {
    font-size: 35px;
    color: #000000;
    font-weight: 800;
    text-align: left;
  }

  
.extra-img {
  width: 300px;
}

  
  
  
  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }
  
  
  
  /* Style the buttons */
  .filterDiv button {
    border: 2px solid #FFF;
    outline: none;
    padding: 12px 55px;
    background-color: transparent;
    cursor: pointer;
    font-size: 12px;
    border-radius: 18px;
    width: auto;
    font-weight: 500;
     text-transform: uppercase;
  }

  #myBtnContainer {
    width: 82%;
    margin: auto;
  }

  .btn-categ {
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin-right: 20px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 400;
    
  }

  .btn-categ:hover {
    color: var(--accent-color);
    transition: ease .3s;
  }
 
  



/*Partnership CSS*/
.partnership-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
}

.partnership-main .heading {
    width:60%;
    text-align: center;
    color: var(--secondary-color);
    font-size: 30px;
    margin-top: 60px;
}

.companies {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 100px;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
    row-gap: 30px;
}

.company {
    height: 50px;
}

.company img {
    width: 100%;
    height: 100%;
}

.resuena  {
    display: flex;
    height: 80px;
    width: 170px;
    align-items: center;
    column-gap: 10px;
}

.resuena .sub-heading {
    color: #FFF;
    width: 100%;

}

.amt {
    height: 100px;
}

.partnership-main .contact-us {
    background-color: #EEEEEE;
}

/*Contact US CSS */
.contact-us{
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
}

.contact-us .heading {
    font-size: 30px;
    text-align: center;
    margin-bottom: 0px;
    color: #FFF;
}

.contact-us .sub-heading {
    margin-top: 10px;
    text-align: center;
}

.contact-us a{
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 50px;
    border: 2px solid var(--secondary-color);
    border-radius: 28px;
    padding: 10px 30px;
    column-gap: 10px;
    color: #FFF;
    font-family: 'Roboto', sans-serif;

}

.contact-us a img {
    height: 80px;
}

.bx-message-dots {
    font-size: 25px;
}


.contact-us a:hover {
    background-color: var(--accent-color);
    border: none;
    transition: ease 0.5s;
    column-gap: 15px;
    padding: 12px 30px;
}


/*FOOTER CSS*/
.footer {
    background-color: #FFF;
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .main-p {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    margin-top: 20px;
}

.footer .floating-icons {
    margin-top: 20px;
    margin-bottom: 10px;
}
.footer .sub-heading {
    width: 100%;
    text-align: center;
    color: var(--accent-color);
}

.bx-copyright {
    font-size: 20px;
    color: var(--accent-color);
}

/**Contact Us CSS*/

.contact-us-main {
  background-color: var(--secondary-color);
}


.contact-us .contact-us-img {
  width: 150px;
  height: 150px;
  background-color: var(--secondary-color);
  z-index: 1;
}

.contact-us .contact-us-img img {
  width: 100%;
  height: 100%;
}

.contact-header {
  background-color: var(--secondary-color);
  padding: 20px 60px;
}

.lines {
  background-color: #e2d1d1;
  height: 2px;
  width: 100%;
  margin-top: -75px;
}

.contact-us-form {
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  row-gap: 20;
  align-items: center;
  margin: auto;
  padding: 60px;
}

.name {
  margin-right: 60px;
}

.name-email-con {
  display: flex;
  margin-bottom: 20px;
}

#fname, #email {
  margin-top: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border: none;
  width: 300px;
}


.message-con {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#message {
  margin-top: 5px;
  padding: 15px 20px;
  border-radius: 8px;
  border: none;
  width: 650px;
  margin-bottom: 30px;
  
}



.submit-btn {
  display: flex;
  justify-content: center;
}
input, textarea {
  outline: none;
}

#submit {
  padding: 14px 55px;
  border-radius: 18px;
  background-color: var(--primary-color);
}

#submit:hover {
  background-color: #2c2828;
  color: #FFF;
}

.contact-btn {
  background-color: var(--primary-color);
}

.contact-btn:hover {
  background-color: #2c2828;
  transition: ease .5s;
}


.bxs-home {
  font-size: 23px;
  color: #fff;
}

