* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

::after,
::before {
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: none;
}

body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

@media(min-width: 991px) {
  .container {
    max-width: 968px;
    margin: auto;
  }
}

/* basic css end */


/* main css start */

/* === header section start === */
.page-title {
  font-size: 40px;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  background: #479aeb;
  line-height: 1.8;
  font-family: poppins;
}

/* ===//end of header section === */

/* === design_generate section start === */
#design_generate .form-control {
  color: #a3a3a3;
  border: 1px solid #a3a3a3;
  font-weight: 400;
}

#design_generate .generate_btn {
  background: #479aeb;
  color: #fff;
  font-weight: 600;
  font-weight: 22px;
  text-transform: uppercase;
  transition: all 0.2s linear;
}

#design_generate .generate_btn:hover {
  background: #2d8be9;
}

#design_generate .text h3 {
  color: #3b3c3c;
  font-size: 25px;
  font-weight: 500;
}

#design_generate .text p {
  color: #3b3c3c;
  font-size: 16px;
}

/* ===//end of design_generate section === */


/* === design_show section start === */
#design_show {
  padding: 80px 0;
}

.design_box {
  padding: 20px 15px;
  border-radius: 7px;
  margin-bottom: 30px;
  min-height: 200px;
}

.design_box .title {
  font-size: 14px;
  color: #686767;
}

.like-box,
.rating-box {
  direction: rtl !important;
}

.like-box input,
.rating-box input {
  display: none;
}

.rating-box label {
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s linear;
  color: #999;
}

.rating-box-lg label {
  font-size: 30px;
  margin-bottom: 0;
}

.rating-box label:hover,
.rating-box label:hover~label,
.rating-box input:checked~label {
  color: gold;
}

.heart-box label:hover,
.heart-box label:hover~label,
.heart-box input:checked~label {
  color: red;
}

.like-box label {
  font-size: 13px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #777;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.2s linear;
}

.like-box-lg label {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  margin-bottom: 10px;
}

.like-box label:hover,
.like-box label:hover,
.like-box input:checked+label {
  background: #479aeb;
  color: #fff;
}

.face-box label:hover,
.face-box-lg label:hover {
  transform: scale(1.1);
}

.design_box p {
  font-size: 14px;
  color: #479aeb;
  margin-bottom: .5rem;
}

.design_box .copy_btn {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background: #479aeb;
  transition: all 0.2s linear;
  margin-top: 5px;
}

.design_box .copy_btn:hover {
  background: #2d8be9;
}

.hederipbox {
  -webkit-box-shadow: 0px 17px 66px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 17px 66px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 17px 66px 0px rgba(0, 0, 0, 0.09);
  padding: 30px;
  border-radius: 10px;
}

/* ===//end of design_show section === */

/* Responsive */
@media (max-width: 575px) {
  .page-title {
    font-size: 28px;
  }
}

@media(max-width: 767px) {
  #design_show {
    padding: 40px 0
  }

  #design_generate .text h3 {
    color: #479aeb;
  }
}