@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');
/* Variables */

:root {
  --primary: #36004d;
  --bgcolor: #020012;
  --secondarybg: #060035;
  --whites: rgb(228, 228, 228);
  --whitish: rgb(190, 190, 190);
  --gray: #333341;
  --grays: #1a1a1c;
  --yellow: #e7bf00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  outline: none;
}

body {
  background-color: var(--bgcolor);
  width: 100%;
  overflow-x: hidden;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background: transparent;
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: var(--whitish);
}

header nav ul {
  display: flex;
  align-items: center;
}
.activeHeader {
  background-color: var(--gray);
}

header nav ul li {
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.active,
header nav ul li:hover {
  background: var(--primary);
}

.bookAppointment,
.bookAppointments {
  border: 1px solid var(--whitish);
  padding: 0 18px;
  border-radius: 3px;
  height: 40px;
  display: flex;
  font-size: 15px;
  align-items: center;
  margin-left: 5px;
  justify-content: center;
}

.bookAppointment:hover,
.bookAppointments:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 5px #b300ff;
}

.menu {
  display: none;
}

/* Banner */

.banner {
  display: block;
  height: 100vh;
  align-items: center;
  justify-content: space-around;
  display: flex;
  background: url('../images/homesAlternative.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--whitish);
  position: relative;
}
.portrait,
.bannerContent {
  flex-basis: 50%;
}
.portrait {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bannerContent h6 {
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: lighter;
}
.bannerContent h1 {
  font-family: 'Parisienne', cursive;
  font-size: 90px;
}

ul.bannerServices li {
  font-size: 20px;
  line-height: 35px;
}

/* Block Quote */

.blockQuote {
  height: 100px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--whites);
  text-align: center;
  line-height: 33px;
  letter-spacing: 2.5px;
  font-weight: lighter;
}
.blockQuote span {
  display: block;
}
/* Benefits */

.mainServices {
  height: 70vh;
  color: var(--whitish);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}
.serviceContent {
  text-align: center;
}
.serviceContent h1 {
  color: var(--yellow);
  font-size: 38px;
}
.serviceContent p {
  color: var(--whites);
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
}
.serviceCenter {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
}
.serviceCenter img {
  width: 550px;
  animation: movement 1.5s ease-in-out infinite alternate-reverse;
}
@keyframes movement {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.benifitList h1 {
  color: var(--whites);
  font-size: 35px;
  margin-bottom: 55px;
  margin-left: -5px;
}
.benifitList li {
  background-image: url(../images/check.png);
  background-position: left center;
  background-repeat: no-repeat;
  padding: 3px 0 3px 42px;
  color: var(--whitish);
  font-size: 16px;
  margin-bottom: 9px;
}

/* Content Badges */

.contextBox {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  bottom: -80px;
}
.contextBoxContent {
  display: flex;
  height: 150px;
  width: 60%;
  border-radius: 10px;
  background: var(--whites);
  overflow: hidden;
}
.contextBox1 {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  flex-basis: 25%;
  border-right: 1px solid gray;
  text-align: center;
  color: var(--gray);
}
a.contextBox1:hover {
  background: var(--yellow);
}
a.contextBox1:hover > i {
  color: var(--gray);
}

.contextBox1 i {
  color: var(--yellow);
  font-size: 50px;
}
.contextBox1 p {
  font-weight: lighter;
  font-size: 17px;
}
.contextBox1:last-child {
  border-right: 0;
}

/* Blog content */

.blog {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
}
.blog div {
  width: 70%;
  /* margin-top: 100px; */
}
.blog h1 {
  color: var(--yellow);
  font-size: 40px;
  margin-bottom: 20px;
}
.blog p {
  color: var(--whites);
  line-height: 27px;
  font-size: 18px;
}

/* Scubscribe to Mail List */

.subscription {
  height: 150px;
  background: var(--bgcolor);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  color: var(--whites);
}
.subscription form {
  display: flex;
}
.subscription form input[type='email'] {
  width: 240px;
  height: 40px;
  outline: none;
  font-size: 18px;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
}
.subscription form input[type='submit'] {
  outline: none;
  cursor: pointer;
  font-size: 15px;
  border-radius: 0 5px 5px 0;
  padding: 0 10px;
  width: fit-content;
  background: var(--yellow);
  color: black;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.subscription form input[type='submit']:hover {
  box-shadow: 0px 0px 10px var(--yellow);
}

footer {
  color: var(--whites);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footerDetails {
  /* display: none; */
  width: 350px;
}
.footerDetails h2 {
  font-weight: lighter;
  font-size: 18px;
}
.footerDetails p {
  font-size: 15px;
  line-height: 23px;
  font-weight: lighter;
  margin: 25px 0;
}
footer a:hover {
  color: var(--yellow);
}
.copyrightSection a {
  color: var(--yellow);
  font-weight: bold;
}
.logo img {
  width: 140px;
}
.footer {
  background: url(https://wordpress-364899-1259615.cloudwaysapps.com/wp-content/themes/PrakashLtd/assets/images/backgroundImg/form-bg.png);
  width: 70%;
  background-position: center;
  background-size: cover;
  height: 100%;
  border-top: 1px solid var(--whitish);
  padding: 80px 190px;
  display: flex;
  justify-content: space-between;
}
.footer ul li {
  padding: 10px 0;
}
.copyrightSection {
  height: 80px;
  background: var(--primary);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 25px;
  padding: 0 20px;
}
/* About Section */

.aboutSection {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: var(--whites);
  background: url('../images/aboutAlternative.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  /* opacity: 0.7; */
}
.aboutContent h1 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 30px;
}
.aboutContent p {
  width: 500px;
  line-height: 25px;
}
.aboutSectionButtons {
  display: flex;
}
.aboutSectionButtons a {
  margin: 10px 20px 10px 0;
}

/* About Features */

.aboutFeatures {
  display: flex;
  justify-content: space-evenly;
  padding: 40px 0;
  color: var(--whites);
  font-weight: lighter;
  letter-spacing: 2px;
}
.aboutFeaturesPoints {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 25px;
}
.aboutFeatures img {
  filter: brightness(5.5);
  margin-bottom: 15px;
  width: 100px;
}

/* About Education */

.aboutEducation {
  height: min-content;
  display: flex;
  justify-content: center;
}
.aboutEducationSection {
  background: url(https://wordpress-364899-1259615.cloudwaysapps.com/wp-content/themes/PrakashLtd/assets/images/backgroundImg/form-bg.png);
  border-top: 1px solid var(--whites);
  width: 70%;
  display: flex;
  color: White;
  background-repeat: no-repeat;
  padding-top: 150px;
}
.aboutMission,
.aboutAstrologer {
  flex-basis: 50%;
}
.aboutMission h1,
.aboutAstrologer h1 {
  color: var(--yellow);
}

.aboutMission p {
  max-width: 80%;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 2px;
  margin-top: 20px;
  font-weight: 400;
}
.aboutAstrologer ul li {
  padding: 15px 0;
  border-bottom: 1px solid var(--whites);
}
.aboutAstrologer ul li:last-child {
  border-bottom: none;
}

/* Contact Us */
.contact {
  width: 100%;
  margin-bottom: 50px;
  color: var(--whites);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 150px;
}
.contactSection {
  width: 70%;
}
.contactTitle h1 {
  text-transform: uppercase;
  font-size: 35px;
  font-weight: lighter;
  letter-spacing: 2px;
}
.contactTitle p {
  margin-top: 50px;
  font-weight: 400;
  letter-spacing: 1px;
}
.contactFormSection {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 100px;
}
.contactForm {
  position: relative;
  display: flex;
  width: 70%;
  background: #0f081e;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}
.contactDetails {
  height: fit-content;
  background: var(--yellow);
  color: var(--bgcolor);
  padding: 20px 30px;
  border-radius: 5px;
  box-shadow: 0px 0px 25px var(--yellow);
  width: fit-content;
}
.contactDetails h1 {
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.contactDetails p {
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 40px;
}
.contactDetails i {
  margin-right: 15px;
}
/* contact Form */
.contactUs h1 {
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.contactUs p {
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}

.contactUs form {
  display: flex;
  flex-direction: column;
}
.contactUs form input {
  height: calc(1.5em + 0.75rem + 2px);
}
.contactUs form input,
.contact form textarea {
  border: 1px solid var(--whites);
  padding: 7px 10px;
  outline: none;
  border-radius: 3px;
  background: transparent;
  width: 100%;
  color: var(--whites);
  width: 300px;
  margin: 10px 0;
}
.contactUs form input[type='submit'] {
  color: var(--bgcolor);
  width: fit-content;
  background: var(--whites);
  padding: 7px 15px;
  cursor: pointer;
}

.consult {
  padding-top: 180px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.consultation {
  width: 70%;
  padding: 20px 0;
  color: var(--whites);
}
.consultation .contactTitle p {
  margin-top: 20px;
  font-weight: lighter;
  letter-spacing: 2px;
}
.consultationSection {
  margin-top: 100px;
}

.consultationDiv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  flex-direction: row;
}
.consultationDiv:nth-child(2) {
  flex-direction: row-reverse;
}
.consultBanner,
.consultContact {
  flex-basis: 49%;
}
.consultBanner {
  height: 357px;
  overflow: hidden;
}
.consultContact {
  display: flex;
  height: 357px;
  flex-direction: column;
  justify-content: space-evenly;
}
.consultCall {
  background-image: url('../images/Call.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.consultVideo {
  background-image: url('../images/VideoCall.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.consultMeet {
  background-image: url('../images/InPerson.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.consultContact h1 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 35px;
  font-size: 25px;
}
.consultContact p {
  width: 70%;
  line-height: 26px;
  font-weight: lighter;
  font-size: 18px;
}
.consultContact a {
  width: 70%;
  text-align: center;
}

/* Book Consultation */

.bookConsultation {
  min-height: 400px;
  background-color: #0c0d1d;
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  border-radius: 5px;
  border: 1px solid var(--whitish);
  overflow: hidden;
}
.serviceSelect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bookConsultation form {
  display: flex;
  flex-direction: column;
  line-height: 40px;
}
.bookConsultation form select {
  width: 300px;
  padding: 10px;
  font-size: 15px;
  background-color: transparent;
  color: #fff;
  outline: none;
  border: 1px solid #fff;
  border-radius: 3px;
}
.bookConsultation label span {
  color: red;
}

.bookConsultation select option {
  background-color: var(--primary);
}
.bookConsultation select:hover {
  background-color: #220031;
}
.bookConsultation input[type='submit'] {
  background: transparent;
  color: var(--whites);
  width: fit-content;
  margin-top: 20px;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}
.bookConsultation input[type='submit']:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.serviceSelect {
  flex-basis: 100%;
  transition: 1s ease-in-out;
}
#consultCalender {
  background: linear-gradient(#56007a, #300044);
  transition: 1s ease-in-out;
  min-height: 400px;
  width: 40px;
}
#consultFinalForm {
  transition: 1s ease-in-out;
  display: none;
}
.consultFinalForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px;
}
.consultFinalForm img.serviceImage {
  margin-bottom: 20px;
}
.consultFormDetail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  padding: 30px 0;
  margin-top: 20px;
}
.consultFormDetailName,
.consultFormDetailLocation {
  display: flex;
  flex-direction: column;
}
.consultFormDetailName div {
  display: flex;
  align-items: center;
}
.consultFormDetail img {
  width: 30px;
  border-radius: 50%;
  background-color: var(--yellow);
  margin-right: 10px;
}
.consultFormDetail p {
  font-weight: lighter;
  margin-bottom: 10px;
}
.consultationForm {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row !important;
  justify-content: space-between;
  margin-top: 20px;
}

.consultFinalForm form div {
  width: fit-content;
  display: flex;
  flex-direction: column;
  width: 49%;
}
.consultationForm section {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.consultationForm section p {
  font-weight: lighter;
  font-size: 15px;
}
.consultationForm label {
  font-weight: lighter;
}
.mainCost {
  background-color: #270336;
  padding: 2px 30px;
  margin: 2px 20px;
}
.mainCost p {
  font-weight: bold !important;
  font-size: 16px !important;
}
.consultationForm input {
  outline: none;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
}
.consultationForm select {
  width: 100% !important;
}
.consultationForm input[type='reset'] {
  width: fit-content;
  cursor: pointer;
  height: fit-content;
  margin-right: 20px;
  padding: 10px 25px !important;
}
.consultationForm input[type='reset']:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px #a957cc;
}
.consultationForm input[type='submit'] {
  margin-top: 0 !important;
  padding: 10px 25px !important;
}
.consultationForm input[type='submit']:hover {
  box-shadow: 0 0 10px #a957cc;
}
::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.consultFormButtons {
  display: flex;
  justify-content: center !important;
}

/* Store */

.store {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product {
  background-color: #353042;
  flex-basis: 26%;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 40px;
}
.product img {
  width: 100%;
  height: 250px;
}
.product h1 {
  font-weight: 400;
  padding: 10px 20px;
}
.product p {
  font-weight: lighter;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 15px;
}
.product a {
  background-color: var(--yellow);
  color: var(--bgcolor);
  font-weight: bold;
  font-size: 15px;
  padding: 10px 0;
  text-align: center;
  width: 90%;
  margin: 0px 20px;
  border-radius: 5px;
  position: absolute;
  bottom: 10px;
  cursor: pointer;
}
.product a:hover {
  box-shadow: 0 0 10px yellow;
}

/* Product View */
.productSection {
  display: flex;
}
.enquiryForm,
.productInformation {
  flex-basis: 50%;
}
.productInformation {
  width: 70%;
}
.productInformation hr {
  margin: 10px 0 30px;
  width: 90%;
  height: 0.3px;
}
.productInformation p {
  font-weight: lighter;
  width: 80%;
  line-height: 25px;
  letter-spacing: 1px;
}
.productInformation img {
  width: 30%;
  margin-top: 30px;
  margin-left: 20px;
}
.enquiryForm {
  padding: 20px 40px;
  border: 1px solid var(--whites);
  border-radius: 5px;
}
.enquiryForm h2 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 20px;
}
.enquiryForm h3 {
  font-weight: lighter;
  font-size: 15px;
}

.enquiryForm form {
  padding-top: 40px;
}
.enquiryForm form p {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.enquiryForm form p label {
  flex-basis: 25%;
}
.enquiryForm form p input,
.enquiryForm form p textarea {
  flex-basis: 75%;
  background: transparent;
  border: 1px solid var(--whitish);
  outline: none;
  padding: 10px 20px;
  border-radius: 2px;
  color: #fff;
  font-size: 16px;
}
.enquiryForm form input[type='submit'] {
  background-color: var(--yellow);
  color: var(--bgcolor);
  font-weight: bold;
  font-size: 15px;
  padding: 10px 0;
  text-align: center;
  margin: 0px 20px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  border: 0;
}
.enquiryForm form input[type='submit']:hover {
  box-shadow: 0 0 10px yellow;
}
/* ----------------- */
/* ----------------- */
/* ----------------- */
/* ----------------- */

/* Media Queries */
/* ----------------- */

@media only screen and (max-width: 1600px) {
  .blog div {
    width: 80%;
    /* margin-top: 100px; */
  }
}
@media only screen and (max-width: 1500px) {
  .product {
    flex-basis: 40%;
  }
}
@media only screen and (max-width: 1400px) {
  .blog div {
    width: 90%;
  }
  .footer {
    padding: 80px 0;
  }
  .aboutEducationSection {
    width: 100%;
    padding: 150px 40px;
  }
}
@media only screen and (max-width: 1400px) {
  /* Content Badges */

  .mainServices {
    position: inherit;
    padding-top: 50px;
  }

  .contextBox {
    flex-wrap: wrap;
    position: inherit;
  }
  .contextBoxContent {
    width: 100%;
    border-radius: 0;
    flex-wrap: wrap;
  }

  /* blog */

  .blog {
    height: fit-content;
    padding: 40px 0;
  }
  .blog div {
    width: 90%;
    padding: 40px 0;
    margin-top: 0;
  }
  .aboutEducationSection {
    flex-direction: column;
    padding: 50px 40px;
  }
  .aboutAstrologer {
    margin-top: 50px;
  }
  .aboutMission p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1343px) {
  .contactForm {
    flex-direction: column;
  }

  .contactDetails {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1166px) {
  .bannerContent h1 {
    font-size: 50px;
  }
  .consultContact p {
    width: 100%;
    line-height: 26px;
    font-weight: lighter;
    font-size: 18px;
  }
  .consultBanner {
    flex-basis: 40%;
  }
  .consultContact {
    flex-basis: 55%;
  }
  .bannerContent h6 {
    letter-spacing: 2px;
    font-size: 14px;
  }
  ul.bannerServices li {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1104px) {
  .product {
    flex-basis: 46%;
  }
  .mainServices {
    height: fit-content;
    /* padding-bottom: 50px; */
  }
  .serviceCenter {
    flex-direction: column-reverse;
  }
  .serviceCenter img {
    animation: none;
  }
  .benifitList {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
  /* header */

  .footer {
    width: 100%;
    padding: 50px 40px;
  }

  .contactSection {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  header {
    position: fixed;
    background: none;
    width: 100%;
    height: 60px;
    justify-content: flex-start;
    padding: 0 2rem;
    background: var(--grays);
    z-index: 1000;
    top: 0;
  }
  .logo img {
    width: 100px;
  }
  header h1 {
    font-size: 18px;
  }
  ul.bannerServices li {
    font-size: 16px !important;
    line-height: 27px !important;
  }
  header nav ul {
    flex-direction: column;
    align-items: center;
    background-color: var(--secondarybg);
    height: calc(100vh - 60px);
  }
  #myNavbar {
    position: fixed;
    width: 100%;
    top: 60px;
    z-index: 1000;
    right: 0;
    display: none;
    transition: 0.5s ease-in-out all;
  }
  header nav ul a {
    width: 100%;
  }
  header nav ul li {
    padding: 0 20px;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 15px;
    border-bottom: 1px solid var(--gray);
  }
  .bookAppointment {
    border: none;
    border-bottom: 1px solid var(--gray);
    padding: 0 20px;
    color: var(--yellow);
    font-weight: bold;
    height: 60px;
    border-radius: 0;
    text-align: center;
  }
  .bookAppointment:hover {
    background: var(--primary);
    box-shadow: none;
  }
  .menu {
    position: fixed;
    top: 17px;
    right: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
  }
  .menu_btn {
    width: 35px;
    height: 3px;
    background: var(--whitish);
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
  }
  .menu_btn::before,
  .menu_btn::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background: var(--whitish);
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
  }
  .menu_btn::before {
    transform: translateY(-10px);
  }
  .menu_btn::after {
    transform: translateY(10px);
  }
  .menu.open .menu_btn {
    transform: translateX(-50px);
    background: transparent;
  }
  .menu.open .menu_btn::before {
    transform: rotate(45deg) translate(35px, -35px);
  }
  .menu.open .menu_btn::after {
    transform: rotate(-45deg) translate(35px, 35px);
  }
  .blog h1 {
    font-size: 30px;
  }
  .blog p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 846px) {
  .consultationDiv:nth-child(2) {
    flex-direction: row;
  }
  .consultation {
    width: 95%;
  }
  .productSection {
    flex-direction: column;
  }
  .productInformation hr {
    width: 100%;
  }
  .enquiryForm,
  .productInformation {
    width: 100%;
  }
  .productInformation {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 800px) {
  .blockQuote {
    font-size: 14px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 726px) {
  .contactForm {
    width: 100%;
  }
  .consultFinalForm form div {
    width: fit-content;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
@media only screen and (max-width: 680px) {
  .footer {
    flex-direction: column;
  }
  .footerDetails {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--whites);
    width: 100%;
  }
  footer {
    height: fit-content;
  }
  .product {
    flex-basis: 48%;
  }
  .enquiryForm form p {
    flex-direction: column;
  }
  .enquiryForm form label {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 635px) {
  .serviceContent h1 {
    font-size: 30px;
  }
  .mainServices {
    padding: 30px 20px;
  }

  .benifitList h1 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 30px;
  }
  .serviceContent p {
    color: var(--whites);
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 581px) {
  .store {
    justify-content: center;
  }
  .product {
    flex-basis: 70%;
  }
  .blockQuote {
    font-size: 12px;
    font-weight: 500;
    height: 80px;
    letter-spacing: 1px;
    line-height: 28px;
  }
  /* Banner */
  .banner {
    background-size: 180%;
    /* margin: -10px 0; */
    opacity: 0.7;
    flex-direction: column;
    background-position: left top;
    width: 100%;
    height: 70vh;
    min-height: 580px;
  }

  .aboutSection {
    background-size: 180%;
    opacity: 0.7;
    flex-direction: column;
    background-position: left top;
    width: 100%;
    height: 60vh;
    min-height: 800px;
    margin-top: 60px;
  }

  .aboutContent p {
    width: 100%;
    padding: 0 20px;
  }
  .portrait,
  .bannerContent,
  .aboutContent {
    width: 100%;
  }
  .portrait {
    display: block;
    min-height: 320px;
    /* background: yellow; */
  }
  .bannerContent,
  .aboutContent {
    background: url(../images/shadow.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    top: -80px;
    padding-top: 150px;
    color: white;
  }
  .aboutContent {
    top: -180px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .bannerContent h6 {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: lighter;
  }
  .bannerContent h1 {
    font-family: 'Parisienne', cursive;
    font-size: 70px;
  }

  ul.bannerServices li {
    font-size: 20px;
    line-height: 35px;
  }
  .serviceCenter img {
    display: none;
  }
  .blog h1 {
    font-size: 25px;
  }
  .blog p {
    font-size: 14px;
    line-height: 22px;
  }
  .aboutFeaturesPoints img {
    width: 65px;
  }
  .aboutFeaturesPoints p {
    font-size: 12px;
    letter-spacing: normal;
  }
  .aboutMission p {
    font-size: 12px;
    max-width: 100%;
    line-height: 23px;
  }
}

@media only screen and (max-width: 1546px) {
  .contactDetails p {
    font-size: 14px;
  }
  .contactDetails {
    padding: 10px 20px;
  }

  .contactForm {
    padding: 20px;
  }
  .contactFormSection {
    margin-top: 20px;
  }
  .contact {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 549px) {
  .consultationDiv {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .consultationSection {
    margin-top: 40px;
  }
  .consult {
    padding-top: 100px;
  }
  .consultationDiv:nth-child(2) {
    flex-direction: column;
  }
  .consultBanner,
  .consultContact {
    flex-basis: 100%;
  }
  .consultBanner,
  .consultMeet {
    width: 100%;
    min-height: 300px;
    margin-bottom: 30px;
  }
  .consultContact h1,
  .consultContact p {
    margin-bottom: 30px;
  }
  .consultContact h1 {
    font-size: 20px;
  }
  .consultContact a {
    width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .productInformation p {
    width: 100%;
  }
  .productInformation img {
    width: 100%;
    margin: 0;
    height: 250px;
    margin: 20px 0 10px;
  }
  .bannerContent h6 {
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: lighter;
  }
  .bannerContent h1 {
    font-family: 'Parisienne', cursive;
    font-size: 50px;
  }

  ul.bannerServices li {
    font-size: 18px;
    line-height: 35px;
  }
  .banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 459px) {
  .blockQuote span {
    display: none;
  }
  .bookConsultation form select {
    width: 230px;
  }
  .product {
    flex-basis: 90%;
  }
}
@media only screen and (max-width: 422px) {
  .aboutSection {
    background-size: 180%;
    opacity: 0.7;
    flex-direction: column;
    background-position: left top;
    width: 100%;
    height: 30vh;
    min-height: 600px;
    margin-top: 60px;
  }
}

@media only screen and (max-width: 369px) {
  .contactDetails p {
    line-height: 25px;
    letter-spacing: 1px;
  }
  .contactDetails i {
    margin-right: 10px;
  }
  .contactDetails h1 {
    margin-bottom: 20px;
  }
  .contactDetails {
    width: 100%;
  }
  .product {
    flex-basis: 98%;
  }
}