/* @font-face {
  font-family: 'GoudyTitling';
  src: url('../fonts/Goudy-Titling-W05-Regular.ttf') format('truetype'); 
}   */

@font-face {
  font-family: 'Perpetua';
  src: url('../fonts/Perpetua/unicodeperpetua.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}  

@font-face {
  font-family: 'Quentin';
  src: url('../fonts/Quentin.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}  

* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #f1e8f9;
}

h1, h2, h3, h4{
  font-family: 'Perpetua';
  font-weight: 600;
}

.text-purple{
  color: #8a2be2 !important;
}

/* Top Section */

.top_sec {
  background-color: #212529;
  padding: 0 30px;
  display: flex;
  justify-content: right;
  align-items: center;
}

.icon_links {
  color: #f1e8f9;
  padding: 15px 8px;
  font-size: 1.5rem;
  margin-left: 10px;
}

/* Navigation Panel */
.navigation_panel {
  background-color: #f1e8f9;
  padding: 10px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_logo {
  width: 25%;
  min-width: 170px;
}

.top_logo img {
  width: 100%;
}

.nav_bar {
  display: flex;
}

.nav_bar a{
  transition: 0.3s;
}

.nav_link a {
  text-align: center;
  text-decoration: none;
  position: relative;
  color: #8a2be2;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 5px 5px;
  margin: 0 8px;
  transition: ease-in-out 0.2s ease-in-out;
}

.active {
  color: #deb53b !important;
}

.nav_link a:hover {
  color: #deb53b;
}

.nav_link a::after {
  content: "";
  position: absolute;
  background-color: #deb53b;
  border-radius: 10px;
  height: 3px;
  width: 100%;
  left: 0;
  top: 38px;
  transform: scale(0, 1);
  transition: transform 0.2s ease-in-out;
  pointer-events: none;
}

.nav_link a:hover::after {
  transform: scale(1, 1);
}

.top_call_us {
  background-color: #deb53b;
  border: none;
  color: #000;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 0 8px;
  font-size: 1.2rem;
  font-weight: 500;
  transition: ease-in 0.2s;
}

.top_call_us:hover {
  background-color: #a57c00;
}

/* Dropdown Menu */

.hamburger_menu {
  background-color: #f1e8f9;
  text-align: center;
  height: 100vh;
  width: 100%;
  max-width: 450px;
  position: fixed;
  right: -450px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  color: #000000;
  top: 0;
  font-size: 1.2rem;
  font-weight: 500;
  z-index: 2;
  padding: 60px 5px;
  transition: ease-in-out 0.2s ease-in-out;
}

.hamburger_menu.active {
  right: 0;
}

.hamburger_menu a {
  text-decoration: none;
}

.hamburger_menu a:hover {
  color: #deb53b;
}

/* ham menu */
.ham_menu {
  height: 50px;
  width: 35px;
  position: relative;
  display: none;
  user-select: none;
  cursor: pointer;
}

.ham_menu.active {
  position: absolute;
  top: 10px;
  z-index: 5;
  right: 14px;
}

.ham_menu span {
  height: 3px;
  width: 100%;
  background-color: #000000;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
.ham_menu span:nth-child(1) {
  top: 30%;
}
.ham_menu span:nth-child(3) {
  top: 70%;
}

.ham_menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ham_menu.active span:nth-child(2) {
  opacity: 0;
}
.ham_menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* First Section */
.hero_animation {
  position: relative;
  height: 550px;
}

.hero_animation video {
  overflow: hidden;
  position: absolute;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}

.hero_section_overlay {
  bottom: 0;
  position: absolute;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hero_section_overlay img {
  width: 100%;
}

.hero_section_logo {
  bottom: 0;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hero_section_logo img {
  width: 35%;
  min-width: 320px;
}

.hero_text {
  padding: 50px 10% 30px 10%;
}

.hero_text h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  color: #222222;
  padding: 10px 23%;
  text-align: center;
}

.hero_row{
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero_row > div{
  width: 50%;
}

.hero_text h2 {
  /* font-family: 'Open Sans'; */
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #222222;
  padding: 5px 5px;
  text-align: center;
}

.hero_text h2 b{
  color: #8a2be2;
  font-family: 'Perpetua';
}

.button_to_center_div {
  display: flex;
  justify-content: center;
}

.button_to_center {
  /* border-radius: 50px; */
}

/* Second Section */

.sec_section {
  padding: 10px 10%;
}

.sec_section_panel {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec_section_panel div {
  width: 45%;
}

.sec_section_img img {
  overflow: hidden;
  width: 100%;
}

.sec_section_text h2 {
  
  font-size: 2.2rem;
  padding: 12px 0;
  color: #222222;
  text-align: justify;
}

.sec_section_text p {
  
  font-size: 1.2rem;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
  padding: 10px 0;
  text-align: justify;
}

.more_info {
  
  background-color: #deb53b;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 10px 0;
  font-size: 1.2rem;
  font-weight: 500;
  transition: ease-in 0.2s;
}

.more_info:hover {
  background-color: #a57c00;
}

/* Third Section */

.thi_sec {
  padding: 10px 10%;
}

.thi_section_row {
  padding: 50px 0;
  justify-content: space-between;
}

.thi_section_frst_row {
  padding-right: 30%;
}

.thi_section_row h2 {
  
  font-size: 2.2rem;
  padding: 12px 0;
  color: #222222;
  line-height: 1.4;
  padding: 10px 0;
  /* text-align: justify; */
}

.thi_section_row p {
  
  font-size: 1.2rem;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
  padding: 10px 0;
  text-align: justify;
}

.thi_section_clms {
  display: flex;
  justify-content: space-between;
}

.thi_section_clm {
  width: 30%;
}

.thi_section_clm_img {
  overflow: hidden;
}

.thi_section_clm_img img {
  width: 100%;
}

.thi_section_clm_txt h2 {
  
  font-size: 1.85rem;
  margin: 20px 0;
  color: #222222;
  line-height: 1.4;
  padding: 10px 0;
  /* text-align: justify; */
}

.thi_section_clm_txt p {
  
  font-size: 1.2rem;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
  padding: 10px 0;
  text-align: justify;
}

.thi_section_clm_txt .btn {
  color: #000;
  background-color: #deb53b;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: 500;
  transition: ease-in 0.2s;
}

.thi_section_clm_txt .btn:hover {
  background-color: #a57c00;
}

/* Forth Section */

.frth_sec {
  background-image: url("../images/Message-Beyond-Psychic.png");
  background-size: cover;
  background-position: center;
  padding: 50px 10%;
  display: flex;
  justify-content: end;
  align-items: center;
  min-height: 530px;
}

.frth_sec_text {
  width: 50%;
  text-align: center;
}

.frth_sec_text h1 {
  
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

.frth_sec_text h2 {
  
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.5;
  padding: 10px 0;
}

.frth_sec_text p {
  
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  padding: 10px 0;
  text-align: center;
}

.frth_sec_text button {
  color: #000;
  background-color: #deb53b;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: 500;
  transition: ease-in 0.2s;
}

.frth_sec_text button:hover {
  background-color: #a57c00;
}

.form-stylish-heading{
  font-family: 'Quentin';
  color: #deb53b;
}

.form-group input {
  margin: 0 0 30px 0;
  padding: 6px 12px;
  width: 100%;
  box-shadow: none !important;
}

textarea{
  box-shadow: none !important;
}

input:focus, textarea:focus{
  border-color: #deb53b !important;
}

#captchaStatus{
  padding: 0.6rem;
}

.form-popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.form-popup-bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(100, 100, 100, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 10000;
}

.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.form-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 40px;
  color: #000000;
}

.captcha-cont{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
}

.captcha-cont input{
  max-width: 100px;
  margin-bottom: 0 !important;
}

.close-button {
  background: none;
  color: #000000;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  font-size: 1.75rem;
}
.close-button i{
  transition: 0.3s;
}
.close-button i:hover{
  color: #deb53b;
}

button[disabled]{
  cursor: no-drop;
}
.form-popup-bg:before {
  content: "";
  background-color: #fff;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.submit_button {
  
  background-color: #deb53b;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: 500;
  transition: ease-in 0.2s;
}

.submit_button:hover {
  background-color: #a57c00;
}

/* Footer */

.footer {
  padding: 25px 5%;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
}

.footer_logo {
  width: 30%;
}

.footer_logo img {
  width: 90%;
  max-width: 280px;
}

.footer_logo p {
  
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
  padding: 10px 0;
  /* text-align: justify; */
}

.footer_clms {
  width: 66%;
  display: flex;
  justify-content: space-between;
}

.footer_links {
  width: 32%;
}

.footer_links div {
  padding: 10px 0;
}

.footer_links h2 {
  
  font-size: 1.5rem;
  color: #212529;
  line-height: 1.5;
  padding: 10px 0;
}

.footer_links a {
  margin-left: 10px;
  display: block;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: justify;
  transition: 0.3s;
}

.footer_links a:hover {
  color: #deb53b;
}

.footer_links a.icon_links{
  margin-left: 0px;
  margin-right: 7px;
    text-decoration: none;
    font-size: 1.2rem;
    
    line-height: 1.5;
    margin-bottom: 10px;
    padding: 0;

    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #8a2be2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.footer_links a.icon_links:hover{
  color: #deb53b;
}

.footer_links a.icon_links svg path{
  transition: 0.3s;
}
.footer_links a.icon_links:hover svg path{
  fill: #deb53b;
}

/* Copyright */

.copyright_section {
  background-color: #212529;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.copyright_section p {
  
  display: block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0;
}



/* inner_page */

.inner_page{
  padding: 50px 10%;
}

.inner_page h1{
  font-size: 2.2rem;
  padding: 12px 0;
  color: #8a2be2;
  text-align: justify;
}

.inner_page h4{
  color: #8a2be2;
}

.inner_page p{
  font-size: 1.2rem;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
  padding: 10px 0;
  text-align: justify;
}


.inner_page.reviews_page p:nth-child(odd){
  font-family: 'Perpetua';
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0;
  color: #8a2be2;
}

img{
  max-width: 100%;
}

@media screen and (max-width: 1200px) {
  .nav_link {
    display: none;
  }

  .ham_menu {
    display: block;
  }

  .hero_animation {
    height: 400px;
  }

  .sec_section, .thi_sec, .navigation_panel{
    padding: 10px 5%;
  }

  .hero_text h1{
    padding: 10px 10%;
  }

  /* .hero_text h2 {
    padding: 5px 15%;
} */

.sec_section_panel div {
  width: 47.5%;
}

}

@media screen and (max-width: 992px) {

}


@media screen and (max-width: 800px) {
  .ham_menu {
    height: 45px;
    width: 30px;
  }

  .hero_text h1{
    padding: 10px 5%;
  }

  .hero_text h2 {
    font-size: 1.5rem;
}

  .hero_animation {
    height: 300px;
  }

  .sec_section_panel {
    padding: 0;
    flex-direction: column;
  }

  .sec_section_panel2 {
    flex-direction:column-reverse;
  }

  .sec_section_panel div {
    width: 100%;
    padding: 25px 0;
  }

  .thi_section_clms {
    flex-wrap: wrap;
  }

  .thi_section_clm {
    width: 47.5%;
    padding: 30px 0;
  }

  .frth_sec_text {
    width: 100%;
    text-align: end;
  }

  .footer {
    display: block;
  }

  .footer_logo {
    width: 100%;
  }

  /* .footer_logo img {
    width: 30%;
  } */

  .thi_section_frst_row {
    padding-right: 0;
  }

  .footer_clms {
    display: block;
  }

  .footer_links {
    width: 100%;
  }

  .inner_page{
    padding: 50px 5%;
  }
}

@media screen and (max-width: 650px){
  .frth_sec {
    background-size: 200vw;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: unset;
  }

  .frth_sec_mbl_img{
    display: block !important;
    width: 100%;
    margin-bottom: -5px;
  }
  .frth_sec_text {
    text-align: center !important;
}
.frth_sec_text p{
  text-align: center;
}
}

@media screen and (max-width: 550px) {
  .top_logo img {
    /* width: 70%; */
  }

  .ham_menu {
    height: 40px;
    width: 25px;
  }

  .hero_text h1{
    padding: 10px 0%;
    font-size: 1.85rem;
  }

  .hero_text h2 {
    /* padding: 5px 0%; */
    font-size: 1.25rem;
}

.hero_row .top_call_us{
  font-size: 1rem;
}

  .hero_animation {
    height: 200px;
  }

  

  .thi_section_clm {
    width: 100%;
    padding: 30px 0;
  }

  .thi_section_clm:first-child{
    padding-top: 0;
  }

  .frth_sec {
    background-size: 250vw;
  }

  .hero_section_overlay {
    bottom: -80px;
  }

  .hero_section_logo {
    bottom: -100px;
  }

  .hero_text{
    margin-top: 90px;
  }

}

@media screen and (max-width: 480px) {
  .hero_animation {
    height: 180px;
  }

  .frth_sec {
    padding: 10px;
  }
  .frth_sec {
    background-size: 300vw;
  }
}

