body{
    margin: 0px;
    padding: 0px;
    font-family: poppins;
    background-color: rgba(255, 255, 255, 0.15);
}

.parallax {
  height: 100vh;
  background-image: url('../img/parallax-1.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blur-effect {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 90;
}

.website-title {
  width: 100%;
  height: 100%;
}
.website-title h1 {
  position: relative;
  top: 350px;
  text-align: center;
  font-size: 4em;
  color: #fff;
  text-transform: uppercase;
}

.website-title h4 {
  position: relative;
  top: 400px;
  text-align: center;
  color: #fff;
  font-size: 2em;
}

#blog-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 60px;
}

.blog-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.blog-heading h3 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
}

.blog-heading h4 {
  font-size: 2rem;
  color: gray;
  font-weight: 400;
  margin-top: 25px;
}

.blog-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  flex-wrap: wrap;
}

.blog-box {
  width: 350px;
  background-color: #fff;
  border: 1px solid #ececec;
  margin: 20px 20px;
}

.blog-img {
  width: 100%;
  height: auto;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.blog-text span {
  color: var(--link);
  font-size: 0.9rem;
}

.blog-text .blog-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #272727;
}

.blog-text .blog-title:hover{
  color: var(--link);
  transition: all ease 0.3s;
}

.blog-text p {
  color: var(--text);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0px;
}


@media(max-width:1250px){

    .blog-box{
        width: 300px;
    }
}
@media(max-width:1100px){
    .blog-box{
        width:70%;
    }
}

@media(max-width:550px){

    .blog-box{
        margin: 20px 10px;
        width: 100%;
    }
    #blog{
        padding:20px;
    }
}

main.article {
  margin-top: 100px;
}



@media (min-width: 860px) {
  main.article,
  admin.article {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: calc(66.666% - 2em) 33.333%;
    margin-bottom: 2em;
  }
}

main img.article-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

article.summary img {
  margin-bottom: 0.5em;
}

article.summary img:hover {
  opacity: 0.6;
}

article.summary p {
  margin: 0 0 0.6em 0;
}

.date {
  display: block;
  margin: 0 0 1.2em 0;
}

.text h1 {
  margin-bottom: .5em;
}

.text .content {
  margin: 0 0 1em 0;
  line-height: 1.5em;
}

.credit a:hover,
a.on,
p.credit a:hover {
  color: var(--hover);
}

.date, p.credit, p.member {
  font-size: 0.7rem;
}

p.credit {
  text-transform: uppercase;
}

p.credit a {
  font-weight: bold;
  color: inherit;
}

.search-bar {
  position: relative;
  left: 670px;
}

.search-bar input {
  height: 30px;
  border-radius: 15px;
}

.categories {
  width: 400px;
  text-align: center;
}

.categories h4 {
  display: inline;

}

.container {
  margin: 0 auto 0 auto;
  max-width: 94%;
}

@media (min-width: 1240px) {
  .container {
  max-width: 1200px;
  }
}

.grid {
  display: grid;
  grid-gap: 2em;
}

.grid {
  display: grid;
  margin: 0 auto 2em auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

@media (min-width: 860px) {
  main.article,
  admin.article {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: calc(66.666% - 2em) 33.333%;
    margin-bottom: 2em;
  }
}


main img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

article.summary img {
  margin-bottom: 0.5em;
}

article.summary img:hover {
  opacity: 0.6;
}

article.summary p {
  margin: 0 0 0.6em 0;
}

.date {
  display: block;
  margin: 0 0 1.2em 0;
}

.text h1 {
  margin-bottom: .5em;
}

.text .content {
  margin: 0 0 1em 0;
  line-height: 1.5em;
}

@media (min-width: 760px) {
  header > div.container {
    display: flex;
  }
}



@media (min-width: 1240px) {
  .container {
  max-width: 1200px;
  }
}

@media (min-width: 860px) {
  main.article,
  .admin-article {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: calc(66.666% - 2em) 33.333%;
    margin-bottom: 2em;
  }
}

.profile-header {
  text-align: center;
  margin-bottom: 2em;
  text-transform: uppercase;
}

.profile-header h1 {
  color: #295073;
  border: 3px solid #295073;
  letter-spacing: 0.1em;
  display: inline-block;
  padding: .2em .5em;
}

.profile-header p {
  font-size: 80%;
  padding-top: .5em;
  position: relative;
}

.profile-header img,
img.profile {
  max-width: 70px;
  border-radius: 50%;
}

.icon:before, .icon:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: none;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.comment-count {
    text-align: right;
}
.like-count, .comment-count {
    flex-basis: 50%;
}

.social {
    font-size: .9rem;
    color: #575252;
    border-bottom: 1px solid #d9cdcd;
    height: 1.7rem;
    margin-bottom: 0.4rem;
    display: flex;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.btn,
.btn-search {
  color: #fff;
  background: #295073;
  display: inline-block;
  width: min-content;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: .1rem .5rem;
  line-height: 1.5;
  vertical-align: middle;
  text-transform: uppercase;
}

.btn {
  font-size: 0.9rem;
}

.btn:hover {
  color: #fff;
  background: #666;
  cursor: pointer;
}

.btn-primary {
  background-color: #295073;
  border-color: #295073;
}
.btn-primary:hover {
  background-color: #137ad7;
  border-color: #137ad7;
}

.btn-secondary {
  color: #333;
  background: #e1e0de;
}
.btn-secondary:hover {
  color: #fff;
  background: #717170;
}

.btn-danger {
  background-color: #a62d2d;
}
.btn-danger:hover {
  background: #666;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

label {
  display: inline-block;
}

textarea {
  min-height: 7rem;
}

textarea#summary {
    min-height: 4rem;
}
textarea#content {
    min-height: 12rem;
}

.form-membership,
.form-contact,
.narrow {
  max-width: 400px;
  margin: 0 auto;
}

.comment img {
    height: 50px;
    width: 50px;
    float: left;
    margin-right: 1rem;
    border-radius: 50%;
}

.comment {
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 1rem;
}

.comments, .orders {
    padding: 1rem;
    background-color: #fff;
    box-sizing: border-box;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.comment p {
    clear: both;
    margin: 2rem 0 1rem 0;
}

.fa-heart {
  color: #666665;
}

.fa-solid {
  color: red;
}

/*PASSWORD LOST FORM*/

.password-lost-form-container {
  display: flex;
  height: 98vh;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.password-lost-form-container .password-lost-form {
  background: #fff;
  width: 40%;
  padding: 15px 20px;
}

.password-lost-form-container .password-lost-form h2 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 19px;
}

.password-lost-form-container .password-lost-form .password-lost-form-box {
  margin: 0 0 15px;
}

.password-lost-form-container .password-lost-form .password-lost-form-box input[type="text"] {
  padding: 5px;
  border-radius: 3px;
  border: 1px solid #353535;
  width: 100%
}

.password-lost-form-container .password-lost-form .password-lost-form-submit {
  display: flex;
  justify-content: center;
}

.password-lost-form-container .password-lost-form .password-lost-form-submit input[type="submit"] {
  padding: 4px 10px;
  border: none;
  border-radius: 2px;
  background-color: var(--primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  font-size: 16px;
}

.profile-header {
  margin-top: 100px;
}

.reset-form-container {
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.reset-form-box {

  width: 350px;
  height: 500px;
  margin: auto auto;
  position: relative;
  top: 350px;

}

.reset-form {
  height: 250px;
  text-align: center;
  border: 1px solid;
  padding: 20px;
  border-radius: 5px;
}


.reset-form input {
  margin: 15px;
  font-size: 18px;
}

.reset-form input[type="submit"] {
  background-color: var(--primary);
  color: #fff;
  font-weight: 900;
  padding: 6px;
  width: 120px;
}

.reset-form input[type="submit"]:hover {
  transition: 0.3s;
  border-radius: 20px;
}

.profile-comments, .profile-order {
  margin: auto;
  width: 1000px;
}

.profile-selection-menu {
   display: block;
  background-color: rgba(0, 0, 0, 0.3);
  height: 40px;
  width: 90%;
  margin: 30px auto;
  display: flex;
  justify-content: space-around;
}

.profile-column {
  color: #fff;
  text-align: center;
  width: 200px;
}

.profile-column p {
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}

.none {
  display: none;
}

.selected {
  color: var(--primary);
}

.orders {
  column-count: 4;
  text-align: center;
}

.checkout-table {
  border-color: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  min-width: 400px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.checkout-table thead tr {
  background-color: var(--primary);
  color: #fff;
  text-align: left;
  font-weight: bold;
}

.checkout-table th,
.checkout-table td {
  padding: 12px 15px;
}

.checkout-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.checkout-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.checkout-table tbody tr:last-of-type {
  border-bottom: 2px solid var(--primary);
}

.checkout-table tbody tr.active-row {
  font-weight: bold;
  color: var(--primary);
}

.edit-profile-form {
  height: 80vh;
  width: 200px;
  margin: auto;
  line-height: 2;
}

.edit-profile-form form, .edit-profile-form h2 {
  text-align: center;
  margin-top: 100px;
}

.edit-profile-form h2 {
  width: 200px;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--primary);
}

.edit-profile-form form {
  margin-top: 15px;
}

.edit-profile-form form label{
  float: left;
}

.edit-profile-form form input[type=submit] {
  padding: 6px;
  margin-top: 20px;
  width: 100%;
  color: #fff;
  font-weight: bold;
  background-color: var(--primary);
  border: none;
  border-radius: 5px;
}

.edit-profile-form form input[type=submit]:hover {
  transition: 0.3s ease;
  transform: scale(1.05);
}

.website-title img {
  max-width: 10%;
  position: absolute;
  top: 10%;
  left: 43%;
  margin-bottom: 10px;
}

.website-title .logo img{
  width: 100%;
  margin: auto;
}
