@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Roboto&display=swap');

body {
  /* font-family: 'Cookie', cursive; */
  font-family: 'Roboto', sans-serif;
}

/*--------- header and navbar-------- */
header .navbar .container .navbar-brand {
  font-size: 35px;
  font-family: 'Cookie', cursive;
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-size: 19px;
  text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link.active {
  color: #2701ff;
  font-size: 20px;
}

/*--------- header and navbar-------- */

/*-------- hero section css ----------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  clear: both;
  background: rgb(247, 247, 247);
  background: linear-gradient(325deg, rgba(247, 247, 247, 1) 39%, rgba(255, 255, 255, 1) 51%);
}

#hero .container .caption {
  padding-top: 100px;
}

#hero .container .caption h1 {
  font-size: 65px;
  font-weight: bold;
  font-family: 'Cookie', cursive;
  letter-spacing: 3px;
  font-style: italic;
}

#hero .container .caption h2 {
  font-size: 45px;
  font-weight: bold;
  word-spacing: 5px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

#hero .container .caption p {
  font-size: 18px;
  width: 50%;
  margin: auto;
  padding-top: 8px;
  color: #000;
}

@media screen and (max-width:765px) {
  #hero {
    height: auto;
  }

  #hero .container .caption h1 {
    font-size: 55px;
  }

  #hero .container .caption h2 {
    font-size: 38px;
  }

  #hero .container .caption p {
    width: 90%;
  }

  #hero .container .caption {
    padding-top: 50px;
  }

}

#hero .container .caption .btn {
  background: rgb(221, 74, 74);
  background: linear-gradient(325deg, rgba(221, 74, 74, 1) 43%, rgba(118, 58, 201, 1) 51%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid transparent;
  transition: .5s;
}

#hero .container .caption .btn:hover {
  background: rgb(118, 58, 201);
  background: linear-gradient(325deg, rgba(118, 58, 201, 1) 43%, rgba(221, 74, 74, 1) 53%);
  letter-spacing: 3px;

}

/*-------- hero section css ----------*/

/*------ products section-css ---------*/
#products {
  width: 100%;
  height: auto;
  overflow: hidden;
  clear: both;
}

#products .container .products-caption {
  padding-top: 80px;
}

#products .container .products-caption h2 {
  font-weight: bold;
  font-size: 35px;
  text-transform: capitalize;
  word-spacing: 4px;
}

#products .container .products-caption p {
  font-size: 18px;
  width: 60%;
  margin: auto;
}

#products .container>hr {
  height: 5px;
  width: 10%;
  margin: 20px auto;
  background-color: #666;
  display: block;
}

/* ----------filtering css------- */
#products>.row {
  /* margin: 10px -16px; */
}

/* Add padding BETWEEN each column */
#products>.row,
.row>.column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none;
  /* Hide all elements by default */
}

/* Clear floats after rows */
#products>.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
#myBtnContainer>.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #afafaf;
  cursor: pointer;
  text-transform: uppercase;
  margin-left: 10px;
  border-radius: 0;
}

#myBtnContainer>.btn:hover {
  background-color: #ddd;
}

#myBtnContainer>.btn.active {
  background-color: #666;
  color: white;
}

/* ----------filtering css------- */

/*----------- card and overlay area css--------  */
.card-1 {
  position: relative;
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.card-1:hover .overlay {
  bottom: 0;
  height: 100%;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

#products .container .row .name p {
  font-size: 28px;
  font-family: 'Cookie', cursive;
  text-transform: capitalize;
  font-weight: bold;
  word-spacing: 10px;
}

#products .overlay .text .social a {
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  padding-left: 5px;
}

/*----------- card and overlay area css--------  */

/*--------- responsive -area-------- */
@media screen and (max-width:765px) {
  .column {
    width: 50%;
  }

  #products .container .row .name p {
    font-size: 20px;
    font-family: 'Cookie', cursive;
    text-transform: capitalize;
    font-weight: bold;
    word-spacing: 6px;
  }

  #products .overlay .text .social a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding-left: 5px;
  }

  .text {
    color: white;
    font-size: 14px;
    padding-top: 5px;
  }

  #products .container>hr {
    width: 50%;
  }

  #products .container .products-caption p {

    width: 80%;
  }
}

/*--------- responsive -area-------- */

/*------ products section-css ---------*/

/*---------- call css---------- */
#call .container h2{
    text-align: center;
    font-weight: bold;
    text-transform: capitalize;
    margin: 10px 0;
}