/* 
Order -> base -> typography -> general layout -> grid -> page layout -> components
Breakpointss
0 - 600px: Phone screens
600px - 900px: tablet portrait
900px - 1200px: tablet landscape
[1200px - 1800px] normal code written
1800px ++: big desktop
*/
/* 
breakpoint choices
--phone
--tab-port
--tab-land
--big-screen
 */
 :root {
	--color-main: #007db8;
	--color-secondary: #e42022;
	--color-tertairy: #161614;
	--search-butt-hov: hsla(199, 100%, 36%, 0.541);
	--color-light-1: #fff;
	--color-light-2: #f1f1f1;
	--color-light-3: #eeeeee;
	--color-light-4: #dad6d6a1;
	--color-dark-1: #000;
	--color-dark-2: rgb(150, 148, 148);
	--color-dark-3: #2d3436;
	--color-danger: #f32013;
	--color-success: #8de02c;
	--color-pending: #f3ca3f;
	--color-active: #1795ce;
	--color-approved: #ee82ee;
	--gradient-color: linear-gradient(
		to right bottom,
		var(--color-secondary),
		var(--color-main)
	);
	--gradient-color-reverse: linear-gradient(
		to right bottom,
		var(--color-main),
		var(--color-secondary)
	);
	/* ************************************************************************************* */
	/* Headings */
	--heading-font-size: 4.5rem;
	--heading-font-size-ms-ml: 3rem;
	--heading-font-weigth: 700;
	--heading-font-family: Georgia, sans-serif, serif;
	--heading-font-transform: uppercase;
	--heading-font-spacing: 0.2rem;
	/* Subheadings */
	--subheading-font-size: 3.5rem;
	--subheading-font-size-ms-ml: 1.8rem;
	--subheading-font-weigth: 600;
	--subheading-font-family: Verdana, "Times New Roman", Times;
	--subheading-font-transform: capitalize;
	--subheading-font-spacing: 0.1rem;
	/* Body */
	--body-font-size: 1.9rem;
	--body-font-weigth: 500;
	--body-font-family: Tahoma, Arial, Helvetica;
	--body-font-transform: none;
	--body-font-spacing: 0rem;
	--body-font-color: var(--color-tertairy);

	/* Small */
	--small-font-size: 1.6rem;
	--small-font-weigth: 400;
	/* ************************************************************************************* */
	/* Buttomn Colors */
	--button-text-color-light: var(--color-light-1);
	--button-text-color-dark: var(--color-tertairy);
	--button-background-heading: var(--color-tertairy);
	--button-background-secondary: var(--color-secondary);
	--button-background-white: var(--color-light-2);
	--button-text-shadow-light: 2px 2px 0 var(--color-dark-2);
	--button-text-shadow-dark: 2px 2px 0 var(--color-light-1);
	/* Box shadow */
	--boxsh: 0 2rem 6rem rgba(var(--color-dark-2-1), 0.3);
	--box-shadow: 0 0.7rem 2.5rem rgba($color: #000, $alpha: 0.08);
	--border: 1px solid var(--border-color: );
	--form-text-color: #555353;
	/* Text shadows */
	--heading-shadow: -2.5px 2.5px #fff;
	--subheading-shadow: -2.5px 2.5px #fff;
}
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.05);
    box-shadow: var(--boxsh);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}
/* @keyframes moveInLeft{
    0%{
        opacity: 0;
        transform: translateX(-0.1rem);
    }
    80%{
        transform: translateX(1rem);
    }
    100%{
        opacity: 1;
        transform: translate(0);
    }
}
@keyframes moveInRight{
    0%{
        opacity: 0;
        transform: translateX(10rem);
    }
    80%{
        transform: translateX(-0.1rem);
    }
    100%{
        opacity: 1;
        transform: translate(0);
    }
}
@keyframes moveInBottom{
    0%{
        opacity: 0;
        transform: translateY(3rem);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
} */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  font-family: var(--body-font-family);
  /* Track */
  /* Handle */
}
html:hover {
  cursor: pointer;
}
html::before,
html::after {
  cursor: default;
}
html:active {
  cursor: grabbing;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  box-shadow: inset 1px 1px 10px var(--color-main);
  border-radius: 1rem;
}
html::-webkit-scrollbar-track:hover {
  box-shadow: inset 1px 1px 10px var(--color-secondary);
}
html::-webkit-scrollbar-thumb {
  background-image: var(--gradient-color-3);
  border-radius: 1rem;
}
html::-webkit-scrollbar-thumb:hover {
  background-image: var(--gradient-color-4);
}
head {
  cursor: initial;
}
body {
  box-sizing: border-box;
  font-family: sans-serif, Arial, Helvetica;
  line-height: 1.6;
  background-color: var(--color-dark-1);
  color: var(--text-color-dark);
  cursor: default;
}
a:focus,
a:active,
button:active,
button:focus {
  outline: none;
  text-decoration: none;
}
::selection {
  background-color: var(--color-main);
  color: var(--color-light-1);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.main-container {
  background-color: var(--color-light-2);
}
[data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
}
[data-title]:after {
  content: attr(data-title);
  position: absolute;
  bottom: -1em;
  font-size: var(--small-font-size);
  left: 70%;
  border-style: dashed double none;
  padding: 4px 4px 4px 8px;
  color: var(--color-light-1);
  white-space: nowrap;
  border-radius: 8px;
  box-shadow: 0px 0px 4px #666;
  background-color: var(--color-secondary);
  opacity: 0;
  z-index: 99999;
  visibility: hidden;
}
[data-title] {
  position: relative;
}
.heading-text {
  text-transform: var(--heading-font-transform);
  font-size: var(--heading-font-size);
  font-weight: var(--heading-font-weigth);
  font-family: var(--heading-font-family);
  color: var(--heading-font-color);
  letter-spacing: var(--heading-font-spacing);
  margin: 1rem;
  transition: all 0.2s;
  background-image: linear-gradient(to right, var(--color-main), var(--color-main));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
}
.heading-text--center-auto {
  text-align: center;
  margin: auto;
}
.heading-text--center-auto:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 37.25em) {
  .heading-text {
    text-align: center;
  }
}
.subheading-text {
  text-transform: var(--subheading-font-transform);
  font-size: var(--subheading-font-size);
  font-weight: var(--subheading-font-weigth);
  font-family: var(--subheading-font-family);
  color: var(--subheading-font-color);
  letter-spacing: var(--subheading-font-spacing);
}
@media only screen and (max-width: 37.25em) {
  .subheading-text {
    text-align: center;
  }
} 
.body-text {
  text-transform: var(--body-font-transform);
  font-size: var(--body-font-size) !important;
  font-weight: var(--body-font-weigth);
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  letter-spacing: var(--body-font-spacing);
}
.ad-text-light {
  text-transform: var(--body-font-transform);
  font-size: var(--body-font-size);
  font-weight: var(--subheading-font-weigth);
  font-family: var(--body-font-family);
  color: var(--body-font-color-ligth);
  letter-spacing: var(--body-font-spacing);
}
.small-text {
  text-transform: var(--body-font-transform);
  font-size: var(--small-font-size);
  font-weight: var(--small-font-weigth);
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  letter-spacing: var(--body-letter-spacing);
}
.u-center-text {
  text-align: center !important;
}
.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-small {
    margin-bottom: 1rem !important;
  }
}
@media only screen and (max-width: 37.25em) {
  .u-margin-bottom-small {
    margin-bottom: 0.5rem !important;
  }
}
.u-margin-bottom-med {
  margin-bottom: 5rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-med {
    margin-bottom: 1rem !important;
  }
}
@media only screen and (max-width: 37.25em) {
  .u-margin-bottom-med {
    margin-bottom: 5rem !important;
  }
}
.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}
@media only screen and (max-width: 37.25em) {
  .u-margin-bottom-big {
    margin-bottom: 3rem !important;
  }
}
.u-margin-bottom-huge {
  margin-bottom: 10rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-huge {
    margin-bottom: 7rem !important;
  }
}
.u-margin-top-big {
  margin-top: 8rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-top-big {
    margin-top: 5rem !important;
  }
}
.u-margin-top-med {
  margin-top: 5rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-top-med {
    margin-top: 2rem !important;
  }
}
.u-margin-top-huge {
  margin-top: 10rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-top-huge {
    margin-top: 7rem !important;
  }
}
.btn-center {
  text-align: center;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.alert-container {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 10px;
  margin-top: 5px;
}
.alert {
  transition: 0.5s ease-in-out;
  padding: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px var(--color-dark-1);
  width: 80%;
  background-color: var(--color-danger);
  color: var(--color-light-1);
}
.alert-two {
  transition: 0.5s ease-in-out;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.5rem;
  text-shadow: 2px 2px 4px var(--color-dark-1);
  width: 80%;
  background-color: var(--color-success);
  color: var(--color-light-1);
}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.closebtn:hover {
  color: var(--color-danger);
}
.about-post {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ***************************************************************************************************** */
  /* ***************************************************************************************************** */
  /* ***************************************************************************************************** */
  /* ***************************************************************************************************** */
  /* ***************************************************************************************************** */
  /* ***************************************************************************************************** */
}
.about-post__user {
  width: 42rem;
  background-color: var(--color-light-1);
  box-shadow: var(--boxsh);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
.about-post__user::before {
  content: "";
  background-image: url(../../img/svg/user-solid-circle.svg);
  position: absolute;
  display: inline-block;
  display: inline-block;
  height: 5rem;
  width: 5rem;
  top: 0.25rem;
  line-height: 1;
  left: 0.25rem;
  z-index: 0;
}
@supports (-webkit-mask-image: url()) or (mask-image: url()) {
  .about-post__user::before {
    background-color: var(--color-light-3);
    -webkit-mask-image: url(../../img/svg/user-solid-circle.svg);
    mask-image: url(../../img/svg/user-solid-circle.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
  }
}
@media only screen and (max-width: 68.75em) {
  .about-post__user {
    width: 32rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .about-post__user {
    width: 100%;
  }
}
.about-post__user-text {
  z-index: 1;
  margin-top: 5px;
  display: inline-block;
  font-size: var(--body-font-size);
}
.about-post__heading {
  margin-bottom: 0.5rem;
  z-index: 10;
  font-weight: var(--subheading-font-weight);
  font-size: var(--subheading-font-size);
  font-family: var(--subheading-font-weight);
  position: relative;
}
.about-post__text {
  z-index: 10;
  position: relative;
}
.about-post__user-img {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.about-post__photo {
  height: 4.5rem;
  width: 4.5rem;
  border-radius: 50%;
  margin-right: 2rem;
}
.about-post__user-info {
  flex: 0 0 55%;
}
@media only screen and (max-width: 56.25em) {
  .about-post__user-info {
    flex: 0 0 62%;
  }
}
.about-post__user-name {
  font-size: var(--small-font-size);
  font-weight: var(--body-font-weight);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.about-post__Post-date {
  font-size: var(--small-font-size);
  font-weight: var(--body-font-weight);
  color: var(--color-dark-3);
}
.about-post__active-post {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: initial;
}
.about-post__post-count {
  font-size: 4rem;
  color: var(--color-main);
  font-weight: 300;
}
.about-post__edit-post {
  text-align: center;
}
.about-post__video {
  width: 42rem;
  background-color: var(--color-light-1);
  box-shadow: var(--boxsh);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
.about-post__video::before {
  content: "";
  background-image: url(../../img/svg/youtube.svg);
  position: absolute;
  display: inline-block;
  display: inline-block;
  height: 5rem;
  width: 5rem;
  top: 0.25rem;
  line-height: 1;
  left: 0.25rem;
  z-index: 0;
}
@supports (-webkit-mask-image: url()) or (mask-image: url()) {
  .about-post__video::before {
    background-color: var(--color-light-3);
    -webkit-mask-image: url(../../img/svg/youtube.svg);
    mask-image: url(../../img/svg/youtube.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
  }
}
@media only screen and (max-width: 68.75em) {
  .about-post__video {
    width: 32rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .about-post__video {
    width: 100%;
  }
}
.about-post__video-box {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.about-post__info {
  width: 42rem;
  background-color: var(--color-light-1);
  box-shadow: var(--boxsh);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
.about-post__info::before {
  content: "";
  background-image: url(../../img/svg/info-with-circle.svg);
  position: absolute;
  display: inline-block;
  display: inline-block;
  height: 5rem;
  width: 5rem;
  top: 0.25rem;
  line-height: 1;
  left: 0.25rem;
  z-index: 0;
}
@supports (-webkit-mask-image: url()) or (mask-image: url()) {
  .about-post__info::before {
    background-color: var(--color-light-3);
    -webkit-mask-image: url(../../img/svg/info-with-circle.svg);
    mask-image: url(../../img/svg/info-with-circle.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
  }
}
@media only screen and (max-width: 68.75em) {
  .about-post__info {
    width: 32rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .about-post__info {
    width: 100%;
  }
}
.about-post__info-text {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.about-post__info-type {
  flex: 0 0 70%;
}
@media only screen and (max-width: 37.25em) {
  .about-post__info-type {
    flex: 0 0 55%;
  }
}
.about-post__info-name {
  font-size: 2.5rem;
  color: var(--color-main);
  font-weight: 300;
}
.about-post__info-type-name {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
@media only screen and (max-width: 56.25em) {
  .about-post {
    margin: 0 3rem;
  }
}
@media only screen and (max-width: 37.25em) {
  .about-post {
    margin: 0;
  }
}
.advert {
  height: 100px;
  width:100%;
  display: flex;
  align-items: center;
  background-image: var(--gradient-color-3);
  justify-content: center;
  border-top-left-radius: 3.7rem;
  border-bottom-right-radius: 3.7rem;
}

@media only screen and (max-width: 56.25em) {
  .advert {
  height: 100px;
  width:100%;
  display: flex;
  align-items: center;
 
}
}


.user-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 1rem;
}
input[type="checkbox"] {
  cursor: pointer !important;
  position: relative;
  width: 8.5rem;
  height: 4.5rem;
  -webkit-appearance: none;
  background: #c6c6c6;
  outline: none;
  border-radius: 55rem;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
input:checked[type="checkbox"] {
  background: var(--color-secondary);
}
input[type="checkbox"]:before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 2.3rem;
  top: 0;
  left: 0;
  background-size: cover;
  background-image: linear-gradient(to right bottom, var(--color-secondary), var(--color-secondary)),
    url(../../img/svg/spinner6.svg);
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
input:checked[type="checkbox"]:before {
  left: 4.5rem;
}
/* Modal Buttons */
.cta__btn-max {
  position: relative;
  background-color: var(--color-light-1);
  text-shadow: var(--button-text-shadow-light);
  border: 0;
  margin: 0.2rem;
  width: 90%;
  height: 5rem;
}
.cta__btn-max:before,
.cta__btn-max:after {
  content: "";
  position: absolute;
  inset: 0;
  transition: 0.5s;
  background: var(--color-main);
}
.cta__btn-max:nth-child(1):before,
.cta__btn-max:nth-child(1):after {
  background: linear-gradient(
    45deg,
    var(--color-main),
    var(--color-tertairy),
    var(--color-tertairy),
    var(--color-secondary)
  );
}
.cta__btn-max:hover:before {
  inset: -3px;
}
.cta__btn-max:hover:after {
  inset: -3px;
  filter: blur(1.6rem);
}
.cta__btn-max--text {
  cursor: pointer;
  position: absolute;
  color: var(--color-light-1);
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-tertairy);
  z-index: 10;
  display: flex;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  border: 1px solid var(--color-dark-2);
  overflow: hidden;
}
.cta__btn-max--text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: skew(25deg);
}
.cta__btn {
  position: relative;
  background-color: var(--color-light-1);
  text-shadow: var(--button-text-shadow-light);
  border: 0;
  margin: 0.2rem;
  width: 14rem;
  height: 4rem;
}
.cta__btn:before,
.cta__btn:after {
  content: "";
  position: absolute;
  inset: 0;
  transition: 0.5s;
  background: var(--color-main);
}
.cta__btn:nth-child(1):before,
.cta__btn:nth-child(1):after {
  background: linear-gradient(
    45deg,
    var(--color-main),
    var(--color-tertairy),
    var(--color-tertairy),
    var(--color-secondary)
  );
}
.cta__btn:hover:before {
  inset: -3px;
}
.cta__btn:hover:after {
  inset: -3px;
  filter: blur(1.6rem);
}
.cta__btn--text {
  cursor: pointer;
  position: absolute;
  color: var(--color-light-1);
  width: 100%;
  top: 0;
  left: 0;
  display: inline-block;
  height: 100%;
  background: var(--color-tertairy);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  border: 1px solid var(--color-dark-2);
  overflow: hidden;
}
.cta__btn--text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: skew(25deg);
}
.link-btn {
  position: relative;
  padding: 0.5rem 1rem;
  background-color: var(--color-secondary);
  text-decoration: none;
  color: var(--color-light-1);
  border-radius: 0.6rem;
  font-size: 1.6rem;
}
.close-btn {
  background: transparent;
  font-size: 2.5rem;
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0.5rem;
  color: var(--color-light-1);
  cursor: pointer;
  padding: 0.8rem 1.2rem;
}
button:focus {
  outline: none;
}
/* ******************************************************************************************************* */
/* Cards buttons */
.bttn,
.bttn:link,
.bttn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem 1.5rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: var(--small-font-size);
  min-width: 12rem;
  min-height: 4rem;
  font-weight: var(--subheading-font-weigth);
  text-align: center;
  border: none;
  cursor: pointer;
}
.bttn__min {
  padding: 1rem 3rem !important;
  display: inline !important;
}
.bttn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.bttn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.bttn:active,
.bttn:focus {
  outline: none;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.bttn--white {
  color: var(--color-main);
  background-color: var(--color-light-1);
}
.bttn--white::after {
  background-color: var(--color-light-1);
}
.bttn--main {
  color: var(--color-light-1);
  background-color: var(--color-main);
}
.bttn--main::after {
  background-color: var(--color-main);
}
.bttn--blue {
  color: var(--color-light-1);
  background-color: var(--color-active);
}
.bttn--blue::after {
  background-color: var(--color-active);
}
.bttn--red {
	color: var(--color-light-1);
	background-color: var(--color-danger);
}
.bttn--red::after {
	background-color: var(--color-danger);
}
.bttn--gradiant {
  color: var(--color-light-1);
  background-image: var(--gradient-color-3);
}
.bttn--gradiant::after {
  background-image: var(--gradient-color-4);
}
.bttn::after {
  content: "";
  height: 100%;
  width: 100%;
  display: inline-block;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.bttn--animated {
  animation: moveInBottom 1s ease-in-out 0.75s;
  animation-fill-mode: backwards;
}
.btn-inline,
.btn-inline-link {
  background-color: none;
  text-decoration: none;
  border: none;
  outline: none;
  color: var(--color-main);
  cursor: pointer;
}
.btn-inline span,
.btn-inline-link span {
  margin-left: 3px;
  transition: margin-left 0.3s;
}
.btn-inline:hover,
.btn-inline-link:hover {
  color: var(--dark-color-2);
}
.btn-inline:hover span,
.btn-inline-link:hover span {
  margin-left: 8px;
}
.btn-inline:focus,
.btn-inline-link:focus {
  outline: none;
  animation: pulsate 1s infinite;
}
.cta {
  text-align: center;
}
.cta__book-now {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.card-btn {
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 10rem;
  border: none;
  background-image: linear-gradient(to right bottom, var(--color-main), var(--color-main));
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--color-light-1);
  text-align: center;
  width: 15rem;
  margin: 1rem auto;
  padding: 1rem;
}
.card-btn:hover {
  background-image: linear-gradient(to left bottom, var(--color-main), var(--color-main));
}
.button {
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 10rem;
  border: none;
  background-image: linear-gradient(to right bottom, var(--color-main), var(--color-main));
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--color-light-1);
}
.button > * {
  height: 100%;
  width: 100%;
  transition: all 0.2s;
  display: inline-block;
}
.button__visible {
  padding: 2rem 6.5rem;
}
.button__invisible {
  position: absolute;
  padding: 2rem 0;
  left: 0;
  top: -100%;
  transition: all 0.2s;
}
.button:hover {
  background-image: linear-gradient(to left bottom, var(--color-main), var(--color-main));
}
.button:hover .button__visible {
  transform: translateY(100%);
}
.button:hover .button__invisible {
  top: 0;
}
.button:focus {
  outline: none;
  animation: pulsate 1s infinite;
}
.submit-button {
  background-color: var(--color-secondary) !important;
  border-radius: 0px !important;
  color: var(--color-light-1) !important;
  box-shadow: 2px 2px 6px 3px var(--color-dark-2) !important;
  outline: none;
  font-weight: bold !important;
}
.submit-button:hover {
  text-shadow: 0 0 0 0 var(--color-light-1) !important;
  transition: 0 !important;
  background-color: var(--color-secondary) !important;
}
.submit-button:focus {
  opacity: 1;
  box-shadow: -2px -2px 6px 3px var(--color-dark-2) !important;
}
.btn--block {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media only screen and (max-width: 37.25em) {
  .btn--block {
    display: block;
    position: relative;
    bottom: 0;
    right: 0;
  }
}
/* Gradiant Button */
.btns-group {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 96%;
  position: absolute;
  bottom: 2%;
  right: 2%;
}
.btns-group.last {
  bottom: 0.25%;
}
.btns-group__one {
  display: block;
}
.btns-group.btn-bottom {
  position: relative;
  bottom: 0;
  right: 0;
}
.btns-group__btn {
  font-size: 1.7rem;
  padding: 0.75rem;
  margin-top: 1rem;
  display: block;
  text-decoration: none;
  background-image: linear-gradient(to right bottom, var(--color-main), var(--color-main)) !important;
  color: #f3f3f3 !important;
  text-align: center;
  min-width: 13rem;
  max-width: 13rem;
  height: 4rem;
  box-shadow: none !important;
  border-radius: 0.25rem !important;
  cursor: pointer;
  transition: 0.3s;
}
.btns-group__btn:active {
  background-image: linear-gradient(to left bottom, var(--color-main), var(--color-main));
}
.btns-group__btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-main);
}
.btns-group__btn:last-child {
  max-height: 25rem;
}
.btns-group__btn--one {
  margin-left: auto;
}
.communication {
  display: flex;
  padding: 2rem;
  /* ************************************************************************************************** */
}
.communication__comments {
  flex: 0 0 60%;
  margin-right: 4.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 37.25em) {
  .communication__comments {
    margin: 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .communication {
    flex-direction: column;
    margin: 3rem;
  }
}
@media only screen and (max-width: 37.25em) {
  .communication {
    margin: 0rem;
  }
}
.communication__comments-form-container {
  width: 100%;
  margin-bottom: 2rem;
}
.communication__comments-form::after {
  content: "";
  clear: both;
  display: table;
}
.communication__comments-form--textbox {
  width: 90%;
  display: block;
  padding: 1rem;
  margin: 1rem 1rem;
  height: 8rem;
  resize: none;
  border: none;
  outline: none;
  transition: width 0.5s ease;
}
.communication__comments-form--textbox:focus {
  width: 98%;
}
@media only screen and (max-width: 37.25em) {
  .communication__comments-form--textbox:focus + .communication__comments-form--submit {
    width: 98%;
    margin-right: none;
  }
}
.communication__comments-form--textbox:focus + .communication__comments-form--submit {
  margin-right: 0.7rem;
}
@media only screen and (max-width: 37.25em) {
  .communication__comments-form--textbox {
    margin: 1rem 0;
  }
}
.communication__comments-form--submit {
  width: 25%;
  float: right;
  margin-right: 5.7rem;
  transition: margin-right 0.5s ease, width 0.5s ease;
}
@media only screen and (max-width: 37.25em) {
  .communication__comments-form--submit {
    width: 90%;
    float: none;
  }
}
.communication__comments-form h3 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", Times, serif;
  margin: 1rem 0;
}
.communication__comments-approved {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  margin: 0.5rem 0;
}
.communication__comments-approved-image {
  float: left;
  display: table-cell;
  vertical-align: top;
  border-radius: 50%;
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 37.25em) {
  .communication__comments-approved-image {
    float: none;
    display: block;
    margin-right: none;
  }
}
.communication__comments-approved-info {
  padding: 1rem;
  display: table-cell;
  vertical-align: top;
}
.communication__comments-approved-text {
  font-weight: 900;
  margin-bottom: 10px;
  color: darkslategrey;
  text-transform: var(--body-font-transform);
  font-size: var(--small-font-size);
  font-weight: var(--small-font-weigth);
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  letter-spacing: var(--body-letter-spacing);
}
.communication__comments-approved-icon {
  fill: var(--color-main);
  margin: 0 0.2rem;
  width: 1.2rem;
  height: 1.2rem;
}
.communication__comments-approved-comment {
  display: flex;
  justify-content: center;
  align-content: center;
}
.communication__comments-approved-comment span {
  color: var(--text-color-dark);
  flex: 0 0 85%;
  margin-left: 1rem;
}
/* ********************************************************************************************** */
.communication__contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.communication__contact svg {
  fill: var(--color-light-1);
  height: 2rem;
  width: 2rem;
  float: right;
}
.communication-container {
  width: 100%;
  padding: 0rem 1rem;
}
.communication-container .info-heading {
  display: flex;
  justify-content: center;
  padding: 3px;
  margin-bottom: 1rem;
}
.communication-container .info-heading h3 {
  font-weight: bold;
}
.communication-container .info-heading h3 {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.communication-container .contact-form {
  padding-top: 1rem;
}
.communication-container .contact-form form {
  width: 97%;
}
.communication-container .contact-form form label {
  height: 3rem;
  margin-top: 5px;
  display: block;
  font-weight: bold;
}
.communication-container .contact-form form input {
  padding: 7px;
  width: 100%;
  border: 1px solid #333;
  outline: none;
}
.communication-container .contact-form form input:focus {
  border: 1px solid #2196f3 !important;
  outline: 1px solid #2196f3;
}
.communication-container .contact-form form textarea {
  padding: 7px;
  width: 100%;
  resize: none;
  font-size: 1.6rem;
  height: 21rem;
  border: 1px solid #333;
  text-align: justify;
  font-family: monospace;
  outline: none;
}
.communication-container .contact-form form textarea:focus {
  border: 1px solid #2196f3 !important;
  outline: 1px solid #2196f3;
}
.communication-container .contact-form form .contact-submit {
  background-color: #2196f3;
  box-shadow: 2px 2px 6px 3px #333;
  color: var(--color-light-1);
  padding: 10px;
  width: 97%;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  margin: 1.5%;
  text-align: center;
}
.communication-container .contact-form form .contact-submit:hover {
  background-color: var(--color-secondary);
}
.communication-container .contact-form form .contact-submit:active {
  box-shadow: -2px -2px 6px 3px #333;
  opacity: 1;
}
.composition {
  position: relative;
}
.composition__photo {
  width: 70%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  z-index: 6;
  background-color: var(--color-light-1);
  transition: all 0.2s;
  outline-offset: 0.5rem;
}
@media only screen and (max-width: 68.75em) {
  .composition__photo {
    position: relative;
    width: 30%;
  }
}
@media only screen and (max-width: 56.25em) {
  .composition__photo {
    width: 33.3333333%;
    float: left;
    position: relative;
  }
}
.composition__photo--p1 {
  top: 50%;
  left: 50%;
  transform: translate(0%, 50%);
  z-index: 9;
  /* height: 5rem;
            width: 5rem; */
  transition-timing-function: ease-in-out;
  transition: all 0.5s;
}
@media only screen and (max-width: 68.75em) {
  .composition__photo--p1 {
    top: 0;
    left: 35%;
    transform: scale(1.1);
  }
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p1 {
    left: 33%;
  }
}
.composition__photo--p2 {
  right: 26%;
  top: 0.5rem;
  z-index: 8;
  transition-timing-function: ease-in-out;
  transition: all 0.5s;
}
@media only screen and (max-width: 68.75em) {
  .composition__photo--p2 {
    top: 2rem;
    right: 27%;
  }
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p2 {
    right: 35%;
  }
}
.composition__photo--p3 {
  right: 20%;
  top: 15rem;
  z-index: 7;
  transition-timing-function: ease-in-out;
  transition: all 0.5s;
}
@media only screen and (max-width: 68.75em) {
  .composition__photo--p3 {
    left: 5%;
    top: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p3 {
    left: 0%;
  }
}
.composition__photo:hover {
  outline: 0.8rem solid var(--color-secondary);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.4);
  z-index: 20;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo:hover {
    outline: 0.5rem solid var(--color-secondary);
    transform: scale(1.1) translate(0%, 7%);
  }
}
.dropdown {
  position: relative;
  margin: 0 1rem;
}
.dropdown__icon {
  height: 2rem;
  width: 2rem;
  fill: var(--color-secondary);
  margin-right: 1rem;
}
.dropbtn {
  font-weight: 600;
  top: -2.1rem;
  left: -8.4rem;
  transition: all 0.5s ease;
}
.dropbtn__user-img {
  margin-right: 1rem;
  width: 3.5rem;
  border-radius: 50%;
}
.dropbtn:hover {
  color: var(--color-main);
  text-shadow: 0px 0px 4px var(--color-light-1);
}
.dropbtn__user-img {
  cursor: default;
}
.dropdown-content {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  display: none;
  position: absolute;
  right: -70%;
  top: 115%;
  background-color: var(--color-light-1);
  color: #1e1e1e;
  min-width: 26rem;
  overflow: visible;
  box-shadow: 0px 8px 16px 0px #1e1e1e;
  z-index: 38;
  border-radius: 8px;
}
.dropdown-content::selection {
  background-color: var(--color-main);
  color: var(--color-light-1);
}
@media only screen and (max-width: 56.25em) {
  .dropdown-content {
    right: -100%;
  }
}
.dropdown-content a {
  color: var(--top-button);
  padding: 0.5rem 0.5rem;
  text-decoration: none;
  display: block;
}
.dropdown a:hover {
  background-color: #f3f3f3;
  border-radius: 8px;
  color: #333;
}
.show {
  display: block;
  max-height: 32rem;
  overflow-y: auto;
  overflow-x: auto;
  cursor: grab;
  /* Track */
  /* Handle */
}
.show:active {
  cursor: grabbing;
}
.show::-webkit-scrollbar {
  width: 1rem;
}
.show::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--color-main);
  border-radius: 1rem;
}
.show::-webkit-scrollbar-thumb {
  background: var(--color-secondary);  
  background-image: linear-gradient(to left bottom, var(--color-main), var(--color-secondary));
  border-radius: 1rem;
}
.show::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);  
  background-image: linear-gradient(to left bottom, var(--color-secondary), var(--color-main));

}
.show a {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.comment-info {
  display: flex;
  justify-content: stretch;
  align-content: center;
}
.author-img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
}
.appointment-info label {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
}
.appointment-btns {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 50%;
  margin-top: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .appointment-btns {
    width: 100%;
  }
}
input[type="date"],
input[type="time"] {
  padding: 0.5rem;
  width: 20rem;
  font-weight: 900;
  font-family: system-ui;
  text-shadow: 1px 1px 0rem dodgerblue;
  background-color: transparent;
  font-size: 2rem;
  color: firebrick;
  border: none;
  cursor: text;
  outline: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  font-size: 2rem;
  width: 2.5rem;
  height: 2.7rem;
  margin: auto;
  text-align: center;
  background-image: linear-gradient(to right, rgba(33, 150, 243, 0.4), rgba(33, 150, 243, 0.4)),
    url(../../img/svg/calendar1.svg);
  cursor: pointer;
}
@supports (-webkit-mask-image: url()) or (mask-image: url()) {
  input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: var(--color-secondary);
    -webkit-mask-image: url(../../img/svg/calendar1.svg);
    mask-image: url(../../img/svg/calendar1.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
  }
}
input[type="time"]::-webkit-calendar-picker-indicator {
  font-size: 2rem;
  margin: auto;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  background-image: linear-gradient(to right, rgba(33, 150, 243, 0.4), rgba(33, 150, 243, 0.4)),
    url(../../img/svg/clock4.svg);
  cursor: pointer;
}
@supports (-webkit-mask-image: url()) or (mask-image: url()) {
  input[type="time"]::-webkit-calendar-picker-indicator {
    background-color: var(--color-secondary);
    -webkit-mask-image: url(../../img/svg/clock4.svg);
    mask-image: url(../../img/svg/clock4.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
  }
}
.clientDets {
  padding: 1rem 0;
  width: 100%;
  outline: none;
  color: firebrick;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 6px;
}
.form__input {
  padding: 1rem 0 0 1.5rem;
  height: 4.5rem;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.07);
  border: none;
  border-bottom: 3px solid transparent;
  width: 100%;
  display: block;
  transition: all 0.3s;
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--color-danger);
}
.form__input::-webkit-input-placeholder {
  color: #555353;
}
.form__label {
  position: absolute;
  top: 2.8rem;
  left: 0;
  color: #555353;
  font-size: 1.2rem;
  margin-left: 1rem;
  font-weight: 400;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.5s;
}
.form__label.apply {
  top: 2.1rem;
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
}
.valid {
  position: relative;
  margin-bottom: 1rem;
}
.valid .apply {
  max-width: 50%;
}
@media only screen and (max-width: 56.25em) {
  .valid .apply {
    max-width: 100%;
  }
}
.valid.success select,
.valid.success input,
.valid.success textarea {
  box-shadow: 0 0 6px var(--color-success) !important;
  border-bottom: 3px solid var(--color-success);
}
.valid.success .icon-check {
  position: absolute;
  visibility: visible;
  fill: var(--color-success);
}
.valid.success small {
  visibility: visible;
  color: var(--color-success);
  font-size: 1.7rem;
  font-weight: 900;
}
.valid.error select,
.valid.error input,
.valid.error textarea {
  box-shadow: 0 0 6px var(--color-danger);
  border-bottom: 3px solid var(--color-danger);
}
.valid.error .icon-exclamation {
  position: absolute;
  visibility: visible;
  border-radius: 50%;
  fill: var(--color-danger);
}
.valid.error small {
  visibility: visible;
  color: var(--color-danger);
  font-size: 1.7rem;
  font-weight: 900;
}
.valid.fetch input {
  box-shadow: 0 0 6px var(--color-active);
  border-bottom: 3px solid var(--color-active);
}
.valid.fetch .icon-help {
  position: absolute;
  visibility: visible;
  border-radius: 50%;
  fill: var(--color-danger);
}
.valid.fetch small {
  visibility: visible !important;
  font-size: 1.7rem;
  font-weight: 900;
}
.valid svg {
  position: absolute;
  visibility: hidden;
  bottom: 1.8rem;
  left: 82%;
  height: 2.5rem;
  width: 2.5rem;
  background-image: var(--gradient-color-5);
  border-radius: 50%;
}
.valid svg.apply {
  left: 41%;
}
@media only screen and (max-width: 56.25em) {
  .valid svg.apply {
    left: 82%;
  }
}
.valid small {
  visibility: hidden;
  font-size: 1.8rem;
}
.valid .count {
  position: absolute;
  font-size: var(--subheading-font-size);
  font-weight: 900;
  color: var(--subheading-font-color);
}
input[type="submit"] {
  background-color: var(--color-light-1);
  border: 0;
  border-radius: 5px;
  box-shadow: 0px 0px 5px var(--color-dark-1);
  color: var(--color-dark-1);
  font-weight: bolder;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
}
input[type="submit"]:hover {
  text-shadow: 0 0 4px var(--color-dark-1);
  transition: 0.5s ease-in-out;
}
input[type="button"] {
  background-color: var(--color-light-1);
  border: 0;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #d85757;
  color: #d85757;
  font-weight: bolder;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
}
input[type="button"]:hover {
  text-shadow: 0 0 4px #d85757;
  transition: 0.5s ease-in-out;
}
.modal-container {
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  text-align: initial;
}
.modal-container.show-modal {
  display: block;
}
.modal {
  background-color: var(--color-light-1);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: 40rem;
  animation-name: modalopen;
  animation-duration: 1s;
}
.modal__header {
  background-image: var(--gradient-color);
  color: var(--color-light-1);
  padding: 15px;
}
.modal__header h3 {
  font-size: 1.7rem;
  margin: 0;
}
.modal__content {
  padding: 1rem 1rem;
}
.modal__content--invite {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #333;
  text-align: center;
}
.modal__content--legal-remember {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1.5rem;
}
.modal__form div {
  margin: 0.8rem 0;
}
.modal__form label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.modal__form .remember {
  cursor: pointer;
  font-size: 2rem;
  margin-left: 1rem;
  font-weight: 900;
}
.modal__form .form-input {
  border: none;
  box-shadow: 0 0 3px #333;
  padding: 0.8rem;
  width: 100%;
}
.modal__form .form-input:focus {
  border: none;
  box-shadow: 0 0 10px #333;
}
form > span {
  color: var(--color-danger);
  font-size: 1.2rem;
  display: block;
  text-align: center;
}
.modalX:before {
  content: "x";
  font-weight: bolder;
  text-decoration: none;
}
#username {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#uname {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#password {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#pass {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#password2 {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#email {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
.username-input {
  position: relative;
}
.username-input.success input {
  box-shadow: 0 0 0.6rem var(--color-success) !important;
}
.username-input.error > input {
  box-shadow: 0 0 0.6rem var(--color-danger);
}
.username-input small {
  visibility: hidden;
  display: block;
  font-size: 1.2rem;
}
.username-input.error small {
  visibility: visible;
  color: var(--color-danger);
}
.username-input.success small {
  visibility: visible;
  color: var(--color-success);
}
.username-input__user {
  position: absolute;
  left: 0;
  top: 0px;
  height: 3.3rem;
  width: 3.5rem;
  fill: var(--color-secondary);
  padding: 0.9rem 0.8rem;
  background-color: var(--color-light-4);
}
.username-input svg.icon-eye {
  position: absolute;
  left: 89%;
  fill: var(--color-main);
  top: 0px !important;
  width: 3.3rem;
  height: 3.29999999999rem;
  padding: 0.2rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
.username-input svg.icon-eye:hover {
  fill: var(--color-secondary);
}
.username-input svg.icon-eye-slash {
  position: absolute;
  left: 89%;
  fill: var(--color-main);
  top: 0px !important;
  width: 3.3rem;
  height: 3.3rem;
  padding: 0.3rem;
  cursor: pointer;
}
.username-input svg.icon-eye-slash:hover {
  fill: var(--color-secondary);
}
.username-input > input:focus + .username-input__user {
  background-color: var(--color-secondary);
  fill: var(--color-light-4);
}
.post-overview {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(1, 1fr);
  align-items: center;
  border-bottom: var(--line);
}
@media only screen and (max-width: 56.25em) {
  .post-overview {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, max-content);
  }
}
.post-overview__heading {
  grid-column: 1 / span 6;
  font-weight: var(--subheading-font-weight);
  letter-spacing: var(--subheading-font-spacing);
  padding: 1.5rem 1rem;
  font-size: 2.3rem;
  color: var(--subheading-font-color);
  text-transform: uppercase;
  margin-left: 1rem;
  margin-right: auto;
}
@media only screen and (max-width: 56.25em) {
  .post-overview__heading {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    margin-left: auto;
    font-size: 1.7rem;
    text-align: center;
  }
}
.post-overview__model-icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 1rem;
  fill: var(--color-main);
}
.post-overview__model-box {
  grid-column: 7 / 8;
  display: flex;
  align-items: center;
  padding: 2rem;
  font-size: 1.2rem;
}
@media only screen and (max-width: 56.25em) {
  .post-overview__model-box {
    grid-column: 1 / 2;
    grid-row: 2/ 3;
  }
}
.post-overview__model {
  font-weight: var(--body-font-weight);
  font-size: var(--body-font-size);
  align-items: center;
  text-decoration-line: overline underline;
  text-decoration-style: wavy;
}
.post-overview__comments {
  grid-column: 8 / 9;
  background-image: var(--gradient-color-3);
  color: var(--color-tertairy);
  text-align: center;
  margin-right: 1rem;
  padding: 1.5rem 1.5rem;
  align-self: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .post-overview__comments {
    grid-column: 2 / 3;
    grid-row: 2/ 3;
    justify-self: flex-end;
    padding: 0.5rem 0.5rem;
    width: 8rem;
  }
}
.post-overview__comment-count {
  font-size: 2.5rem;
  font-weight: 300;
  text-shadow: 2px 2px 100px var(--color-dark-1);
}
.post-overview__comment-text {
  font-size: var(--small-text-size);
  text-shadow: 2px 2px 200px var(--color-dark-1);
  text-transform: uppercase;
}
.slider {
  height: 100%;
  width: 100%;
}
.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.7);
  /*  @supports(-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px)){
        -webkit-backdrop-filter: blur(20px);
        -moz-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        background-color:none ;
    }
 */
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup__content {
  max-width: 75%;
  width: 75%;
  background-color: var(--color-light-1);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  display: table;
  height: 50rem;
  opacity: 0;
  transition: all 0.5s 0.2s;
  transform: translate(-50%, -50%) scale(0);
}
@media only screen and (max-width: 68.75em) {
  .popup__content {
    max-width: 85%;
    width: 85%;
    display: block;
  }
}
@media only screen and (max-width: 56.25em) {
  .popup__content {
    max-width: 90%;
    width: 90%;
  }
}
@media only screen and (max-width: 37.25em) {
  .popup__content {
    max-width: 100%;
    height: 100vh;
    width: 100%;
  }
}
.popup__left {
  padding: 1rem;
  width: 85%;
}
@media only screen and (max-width: 68.75em) {
  .popup__left {
    width: 100%;
    display: inline-block;
  }
}
.popup__right {
  width: 66.666666666666%;
  display: table-cell;
  padding: 3rem 2rem;
}
@media only screen and (max-width: 68.75em) {
  .popup__right {
    width: 100%;
    padding: 0.5rem 1.5rem;
    display: inline-block;
  }
}
.popup__img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 68.75em) {
  .popup__img {
    width: 49%;
    display: inline;
  }
}
@media only screen and (max-width: 37.25em) {
  .popup__img {
    width: 48%;
    display: inline;
  }
}
.popup__text {
  font-size: 1.5rem;
  margin-bottom: 5rem;
  -moz-column-count: 2;
  -moz-column-gap: 4rem;
  -moz-column-rule: 1px solid var(--color-light-2);
  column-count: 2;
  column-gap: 4rem;
  column-rule: 1px solid var(--color-light-2);
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
@media only screen and (max-width: 68.75em) {
  .popup__text {
    margin-bottom: 1rem;
    -moz-column-count: 1;
    -moz-column-gap: 0;
    -moz-column-rule: none;
    column-count: 1;
    column-gap: 0;
    column-rule: none;
  }
}
.popup:target .popup__content {
  opacity: 1;
  padding: 4rem 3rem;
  transform: translate(-50%, -50%) scale(1);
}
@media only screen and (max-width: 68.75em) {
  .popup:target .popup__content {
    padding: 1rem 3rem;
  }
}
.popup__close:link,
.popup__close:visited {
  color: var(--color-light-2);
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 45%;
  text-decoration: none;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 22;
  font-size: 3rem;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
  background-color: rgba(22, 22, 20, 0.5);
  transition: all 0.5s;
}
.popup__close:hover {
  color: var(--color-danger);
  background-color: var(--color-light-2);
}
.list {
  list-style: none;
  margin: 2rem 0;
  border-top: var(--line);
  border-bottom: var(--line);
  display: flex;
  padding: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 37.25em) {
  .list {
    flex-direction: column;
    padding: 2rem 0;
  }
}
.list__item {
  flex: 0 0 50%;
  margin-bottom: 2.5rem;
}
.list__item::before {
  content: "";
  display: inline-block;
  height: 1rem;
  width: 1rem;
  margin-right: 0.5rem;
  background-image: url(../../img/chevron-thin-right.svg);
  background-size: cover;
}
@supports (-webkit-mask-image: url()) or (mask-image: url()) {
  .list__item::before {
    background-color: var(--color-main);
    -webkit-mask-image: url(../../img/svg/chevron-thin-right.svg);
    mask-image: url(../../img/svg/chevron-thin-right.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
  }
}
/* Ajax Search Results  */
#search-layer {
  position: fixed;
  transition: all 0.3s;
  z-index: 34;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.9);
}
@supports (-webkit-backdrop-filter: blur()) or (backdrop-filter: blur()) {
  #search-layer {
    -webkit-backdrop-filter: blur(1rem);
    -moz-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
  }
}
/***********************************/
#livesearch {
  position: absolute;
  background: #595a5a;
  max-height: 27rem;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 35;
  width: 88.5%;
  left: 4.5%;
  box-shadow: 0px 2px 4px #444;
  margin-left: 1.2%;
  border-radius: 8px;
  cursor: grab;
  /* Track */
  /* Handle */
}
#livesearch:active {
  cursor: grabbing;
}
#livesearch::-webkit-scrollbar {
  width: 1.5rem;
}
#livesearch::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--color-secondary);
  border-radius: 1rem;
}
#livesearch::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 1rem;
}
#livesearch::-webkit-scrollbar-thumb:hover {
  background: var(--color-main);
}
/***********************************/
.live-outer {
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  z-index: 3;
  border-bottom: 1px solid #ccc;
  background: var(--color-light-1);
}
.live-outer:hover {
  background: #f3f3f3;
}
/***********************************/
.live-im {
  float: left;
  width: 10%;
  height: 6rem;
  margin: 8px;
}
@media only screen and (max-width: 37.25em) {
  .live-im {
    width: 25%;
  }
}
.live-im img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
/***********************************/
.live-product-det {
  float: left;
  width: 90%;
  height: 2.5rem;
}
/***********************************/
.live-product-name {
  width: 100%;
  height: 2.5rem;
  margin-top: 4px;
}
.live-product-name p {
  color: #333;
  text-shadow: 1px 1px 1px #dddddd;
  margin-left: 1rem;
}
.live-product-name p i {
  font-weight: 600;
}
.live-product-name p span {
  color: #2196f3;
}
/***********************************/
.live-product-price {
  width: 100%;
  height: 2.5rem;
}
.live-product-price-text {
  float: left;
  width: 50%;
}
.live-product-price-text p {
  margin-left: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  width: 200%;
}
.live-product-price-text p span {
  color: #2196f3;
}
/***********************************/
.link-p-colr {
  color: #333;
  text-decoration: none;
}
/* Styling  Search form, input and search button*/
.example {
  max-width: 100%;
  margin: auto;
  z-index: 35;
}
.example input[type="text"] {
  padding: 1rem 2rem;
  height: 4.2rem;
  font-size: 1.7rem;
  border: 0.5px solid #000;
  border-right: none;
  float: left;
  width: 100%;
  background-color: var(--color-light-1);
  transition: all 0.5s;
}
.example input[type="text"]:focus {
  box-shadow: 0 0.7rem 2.5rem rgba(0, 0, 0, 0.08);
  outline: none;
}
@media only screen and (max-width: 37.25em) {
  .example input[type="text"] {
    width: 60%;
  }
}
.example .btn {
  float: left;
  width: 33%;
  background-color: var(--color-main);
  color: white;
  z-index: 35;
  font-size: 4rem;
  border-left: none;
  cursor: pointer;
  border: none;
}
.example .btn:hover {
  background-color: var(--search-butt-hov);
}
.example .btn .search__icon {
  height: 3.5rem;
  width: 3rem;
  fill: var(--color-light-1);
}
@media only screen and (max-width: 37.25em) {
  .example .btn {
    width: 40%;
  }
}
.clear-fix {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.clear-fix::after {
  content: "";
  display: table;
}
.min-width-auto {
  width: 80%;
  margin: auto;
}
@media only screen and (max-width: 37.25em) {
  .min-width-auto {
    width: 90%;
  }
}
.textbox-clr {
  cursor: text;
  background-color: var(--color-light-1);
  border-bottom: 0.5px solid #000;
  border-top: 0.5px solid #000;
  width: 25%;
  float: left;
  z-index: 35;
  outline: none;
  border-left: none;
  border-right: none;
  text-align: center;
  height: 4.2rem;
  font-weight: 900;
  transition: all 0.5s;
}
@media only screen and (max-width: 37.25em) {
  .textbox-clr {
    width: 13%;
  }
}
.example input[type="text"]:focus + .textbox-clr {
  background-color: #fff;
  box-shadow: 0 0.7rem 2.5rem rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.example input[type="text"]:focus + .textbox-clr:hover {
  background-color: var(--color-danger);
}
/* layout */
.search-engine-container {
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.search {
  z-index: 35;
  border-radius: 0;
}
.views-share {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 5px;
  padding: 1rem;
  border-bottom: var(--line);
}
@media only screen and (max-width: 37.25em) {
  .views-share {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, max-content);
  }
}
.views-share .post-views {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--subheading-font-size);
  color: var(--subheading-font-color);
}
.views-share .post-views__icon {
  fill: var(--color-main);
  width: 3rem;
  height: 3rem;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 37.25em) {
  .views-share .post-views {
    justify-content: center;
    align-items: center;
    grid-column: 1 / -1;
    grid-row: 1 / 2;
  }
}
.views-share .shared-text {
  display: flex;
  justify-content: center;
  font-size: var(--small-font-size);
  color: var(--body-font-color);
}
@media only screen and (max-width: 37.25em) {
  .views-share .shared-text {
    grid-column: 1 / 2;
    grid-row: 2/ 3;
  }
}
.views-share .social-media-sharing {
  display: flex;
  align-content: center;
}
@media only screen and (max-width: 37.25em) {
  .views-share .social-media-sharing {
    grid-column: 2 / 3;
    grid-row: 2/ 3;
  }
}
.sharable--icon-whatsapp {
  margin-left: 2px;
  border-radius: 5px;
  fill: var(--color-light-1);
  height: 2rem;
  width: 5rem;
  background-color: var(--color-success);
}
/* Custom Nav Slider */
.slider-container {
  position: relative;
  width: 85%;
  margin: 0 auto;
}
.slider-header {
  font-size: 2rem;
  font-weight: 600;
}
.slider-wrapper {
  width: 100%;
  overflow-x: scroll;
  cursor: grab;
  overflow-y: hidden;
  white-space: nowrap;
  margin: 0 auto;
  position: relative;
}
.slider-wrapper:active {
  cursor: grabbing;
}
.products ul li {
  display: inline-block;
  padding: 5px;
}
.product-container {
  text-align: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.post__hero:hover > .post__img {
  filter: blur(0px) brightness(100%);
}
.post__hero:hover > .post__img-caption {
  transform: translate(-50%, -276%);
}
.post__img {
  background-color: var(--color-light-1);
  width: 10rem;
  height: 10rem;
  cursor: pointer;
  border-radius: 50%;
  border: 5px solid var(--color-main);
  filter: blur(1px) brightness(50%);
  transition: all 1.3s;
}
.post__img-caption {
  color: var(--color-light-1);
  font-weight: 700;
  text-shadow: 0 0 2rem var(--color-main);
  text-align: center;
  font-size: 1.55rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 174%);
  text-transform: uppercase;
  opacity: 1;
  transition: all 1.3s;
}
.slider-wrapper::-webkit-scrollbar {
  height: 7px;
}
.slider-wrapper::-webkit-scrollbar-track {
  background: #898d91;
  border: 4px solid transparent;
  background-clip: content-box;
}
.slider-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-main);
}
#click2 {
  position: absolute;
  top: 47%;
  left: 0%;
  width: 38px;
  height: 35px;
  border-left: none;
  background-color: transparent;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
}
#click {
  position: absolute;
  top: 47%;
  background-color: transparent;
  right: 0%;
  width: 38px;
  height: 35px;
  border-right: none;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
}
#click:hover,
#click2:hover {
  opacity: 1;
}
.icon-circle-left {
  width: 4rem;
  height: 3.3rem;
  border-radius: 50%;
  background-color: var(--color-light-1);
  border: 3px solid var(--color-main);
  fill: var(--color-main);
}
.icon-circle-right {
  width: 4rem;
  height: 3.3rem;
  border: 3px solid var(--color-main);
  background-color: var(--color-light-1);
  border-radius: 50%;
  fill: var(--color-main);
}
.footer {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	padding: 20px;
	margin-top: 20px;
	width: 100%;
	background-color: var(--color-dark-1);
	color: var(--color-light-1);
	font-size: 1.6rem;
}
.footer-service-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.footer-service-content > ol {
	list-style: none;
}
.footer-service-content > div {
	padding: 5px;
}
.footer-service-content > div > h3 {
	font-size: 20px;
}
.footer-service-content > ol > li > a {
	color: var(--color-light-1);
	background-color: rgba(103, 38, 130, 0);
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	transition: all 0.2s;
}
.footer-service-content > ol > li > a:hover,
.footer-service-content > ol > li > a:active {
	color: var(--color-main);
	transform: rotate(5deg) scale(1.3);
}
@media only screen and (max-width: 56.25em) {
    .footer {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	  .footer-service-content {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.footer-service-content div > ol {
		text-align: center;
	}}
	@media only screen and (max-width: 37.25em) {
	.footer {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}}
.social-link {
	text-decoration: none;
}
.social-link > * {
	display: inline-block;
	fill: var(--color-light-1);
	height: 3rem;
	width: 3rem;
}
.social-link > *:hover {
	background-color: var(--color-light-1);
	border-radius: 50%;
}
.facebook__icon:hover {
	fill: #3b5998;
}
.linkedin__icon:hover {
	fill: #0e76a8;
}
.twitter__icon:hover {
	fill: #0084b4;
}
.instagram__icon:hover {
	background: #f09433;
	background: -moz-linear-gradient(
		45deg,
		#f09433 0%,
		#e6683c 25%,
		#dc2743 50%,
		#cc2366 75%,
		#bc1888 100%
	);
	background: -webkit-linear-gradient(
		45deg,
		#f09433 0%,
		#e6683c 25%,
		#dc2743 50%,
		#cc2366 75%,
		#bc1888 100%
	);
	background: linear-gradient(
		45deg,
		#f09433 0%,
		#e6683c 25%,
		#dc2743 50%,
		#cc2366 75%,
		#bc1888 100%
	);
}
.copyright{
    color: var(--color-light-1);
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 95%;
  margin: auto;
  height: 5.3rem;
  border-bottom: 0.5px solid var(--color-light-2);
  padding: 2rem 1rem;
}
@media only screen and (max-width: 56.25em) {
  .header {
    flex-direction: column;
    height: 12.5rem;
  }
}
.header__logo {
  float: left;
}
@media only screen and (max-width: 56.25em) {
  .header__logo {
    display: block;
    float: none;
    text-align: center;
  }
}
.header__logo-text {
  position: relative;
}
.header__logo-text .logo {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--color-light-1);
  text-transform: uppercase;
}
.header .header__user-nav {
  display: flex;
  align-items: center;
  color: var(--color-light-1);
  fill: var(--color-light-1);
  float: right;
  /* signed in Navigation buttons */
}
@media only screen and (max-width: 56.25em) {
  .header .header__user-nav {
    float: none;
    text-align: center;
  }
}
.header .header__user-nav--sign-up {
  display: inline-block;
}
.header .header__user-nav--sign-in {
  margin-right: 3rem;
  display: inline-block;
}
@supports (display: flex) or (display: -webkit-flex) {
  .header .header__user-nav--sign-in {
    margin-top: 0;
  }
}
.header .header__user-nav .dash-btn a {
  text-decoration: none;
  color: var(--color-light-1);
  font-size: 1.5rem;
  text-shadow: 0px 0px 4px var(--color-light-1);
  padding: 1rem;
  transition: all 0.5s ease;
}
.header .header__user-nav .dash-btn a:hover {
  color: var(--color-main);
}
.header .header__user-nav .header-icon-wrapper {
  position: relative;
}
.header .header__user-nav .header-icon-wrapper:not(:last-child) {
  margin-right: 1rem;
}
.header .header__user-nav .header-icon-wrapper__svg {
  font-size: 3.25rem;
  text-shadow: 1px 1px 1rem var(--color-main);
  outline: none;
  transition: all 0.3s ease;
}
.header .header__user-nav .header-icon-wrapper__svg:hover {
  text-shadow: 1px 1px 1rem var(--color-secondary);
}
.header .header__user-nav .header-icon-wrapper__svg::selection {
  background-color: transparent;
  color: currentColor;
}
.header .header__user-nav .header-icon-wrapper__svg-2 {
  fill: var(--color-dark-3);
  height: 3.25rem;
  width: 3.25rem;
}

.header .header__user-nav .header-icon-wrapper__svg-2:hover {
  fill: var(--color-danger);
}

.header .header__user-nav .header-icon-wrapper__notification {
  position: absolute;
  top: -4px;
  right: -7px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-dark-3);
}
.header .header__user-nav .header-icon-wrapper__notification::selection {
  background-color: transparent;
  color: currentColor;
}
.header .header__user-nav .profile a {
  padding: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.header .header__user-nav .profile a:hover > .profile__user-name {
  color: var(--color-main);
}
.header .header__user-nav .profile__user-photo {
  height: 3.75rem;
  width: 3.75rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.header .header__user-nav .profile__user-name {
  font-size: 1.5rem;
  color: var(--color-light-1);
  transition: color 0.5s ease;
  text-shadow: 0px 0px 4px var(--color-light-1);
}
.navigation-container {
  clear: both;
}
.nav {
  /* All direct decendance of the nav class */
  width: 100%;
  margin: auto;
  /* Top navigation links */
}
.nav > * {
  width: 32.68%;
  position: relative;
  /* Top navigation links*/
}
@supports (display: flex) or (display: -webkit-flex) {
  .nav > * {
    width: initial;
  }
}
.nav > * a:link,
.nav > * a:visited {
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--color-light-3);
  text-transform: uppercase;
  display: inline-block;
  padding: 1rem 1.5rem;
  position: relative;
}
.nav > * a:link::before,
.nav > * a:visited::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 5px;
  width: 3px;
  background-color: var(--color-main);
  transform: scaleY(0);
  transition: transform 0.3s, width 0.2s cubic-bezier(1, 0, 0, 1), background-color 0.1s;
}
.nav > * a:link:hover::before,
.nav > * a:visited:hover::before {
  transform: scaleY(1);
  width: 100%;
  color: var(--light-color-1);
}
.nav > * a:focus {
  outline: none;
  animation: pulsate 1s infinite;
}
.nav > * a .link {
  z-index: 33;
  position: relative;
}
@supports (display: flex) or (display: -webkit-flex) {
  .nav > * a .link {
    display: flex;
    align-items: center;
  }
  @media only screen and (max-width: 37.25em) {
    .nav > * a .link {
      flex-direction: column;
    }
  }
}
@supports (display: flex) or (display: -webkit-flex) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.nav__link-one {
  display: inline-block;
  text-align: left;
}
.nav__link-two {
  display: inline-block;
  text-align: center;
}
.nav__link-three {
  display: inline-block;
  text-align: end;
}
.nav__icon {
  height: 1.2rem;
  width: 1.2rem;
  margin-right: 4px;
  fill: var(--color-light-1);
}
@media only screen and (max-width: 37.25em) {
  .nav__icon {
    display: block;
    margin: auto;
  }
  @supports (display: flex) or (display: -webkit-flex) {
    .nav__icon {
      display: inline-block;
      margin: initial;
    }
  }
}
.post-details {
  display: flex;
  padding: 2rem;
}
.post-details__description {
  flex: 0 0 60%;
  margin-right: 4.5rem;
}
/* _________ */
/* Accordion For PC infortmation */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 1.8rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 2rem;
  transition: 0.4s;
  & span{
    text-transform: uppercase;
    font-weight: 600;
  }
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  font-size: 1.4rem !important;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}



/* _________ */
/* Accordion For PC infortmation */
@media only screen and (max-width: 56.25em) {
  .post-details__description {
    margin: 1rem 3rem 1rem 1rem;
  }
}
@media only screen and (max-width: 37.25em) {
  .post-details__description {
    margin: 1rem;
  }
}
@media only screen and (max-width: 31.25em) {
  .post-details__description {
    margin: 0;
  }
}
.post-details__description-text {
  text-align: justify;
  max-height: 20rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .post-details {
    flex-direction: column;
  }
}

.post-container {
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background-color: var(--color-light-2);
  box-shadow: var(--boxsh);
}
@media only screen and (max-width: 68.75em) {
  .post-container {
    margin: 0;
  }
}
.header-container {
  padding: 0 1rem;
  background-color: var(--color-dark-1);
}
.nav-container {
  background-color: var(--color-dark-1);
}
