:root {
  --white: #fff;
  --black: #000;
  --primary: #652c91;
  --secondary: #ff5b7e;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  /* font-family: "Poppins", sans-serif; */
}

@media (min-width: 1700px) {
  .container {
    max-width: 1366px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Montserrat", sans-serif;
  /* font-family: "Poppins", sans-serif; */
}

img {
  max-width: 100%;
  height: auto;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-block;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--secondary);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary);
}
.form-inline {
  margin-left: 2rem;
}
.main-slider {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  /* align-self: flex-end; */
  align-items: flex-end;
  background-color: rgb(251 74 74/30%);
}
.main-slider h2 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
}
.main-slider h2 span {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
}
.main-slider p {
  color: var(--black);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.5;
}
.main-slider form {
  background-color: var(--white);
  border-radius: 50px;
  height: 70px;
  max-width: 450px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0rem 0 1.5rem;
}
.main-slider form input {
  border: 0;
  border-radius: 0;
  height: 100%;
  color: var(--black);
  width: calc(100% - 125px);
}
.main-slider form input:focus {
  outline: none;
  box-shadow: 0;
}
.main-slider form button {
  height: 5.9375rem;
  width: 5.9375rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--white);
  border: 0;
  background-color: var(--secondary);
  border-radius: 50%;
}
.main-slider form button:hover {
  background-color: var(--primary);
  color: var(--secondary);
}
.main-slider .outerCircle {
  height: 31.25rem;
  width: 31.25rem;
  opacity: 0.2;
  position: absolute;
  top: calc(50% - 250px);
  left: -8rem;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse infinite 3s;
}
.main-slider .outerCircleTwo {
  height: 18.75rem;
  width: 18.75rem;
  position: absolute;
  right: 7rem;
  bottom: -8rem;
  animation: pulse infinite 3s;
  background-color: var(--secondary);
  border-radius: 50%;
}
.main-slider .imgWrap {
  position: relative;
  z-index: 1;
}
.main-slider .imgWrap .bg {
  background-color: #f7921e;
  width: 49.375rem;
  height: 49.375rem;
  right: auto;
  display: block;
  position: absolute;
  bottom: 1rem;
  z-index: -1;
  border-radius: 50%;
  animation: pulse infinite 2s;
}
.main-slider .imgWrap .borderWrap {
  border: 1rem solid var(--white);
  width: 43.75rem;
  height: 50rem;
  position: absolute;
  left: 3rem;
  bottom: 0;
  z-index: -1;
  animation: wobble infinite linear 10s;
}
.main-slider .imgWrap .arrowImg {
  position: absolute;
  right: -6rem;
  top: 15rem;
}
.main-slider .borderLine {
  position: absolute;
  height: 42.5rem;
  width: 42.5rem;
  left: 12rem;
  z-index: -1;
  border-radius: 50%;
  border: 1px dashed var(--white);
}
.main-slider .borderLine span {
  background-color: var(--white);
  height: 3.75rem;
  width: 3.75rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  border-radius: 50%;
  color: var(--secondary);
  position: absolute;
  transition: 0.3s ease-in-out;
}
.main-slider .borderLine span:hover {
  background-color: var(--secondary);
  color: var(--white);
}
.main-slider .borderLine span.one {
  left: 50%;
  animation: pulse infinite 2s;
  top: -2rem;
}
.main-slider .borderLine span.two {
  right: 3rem;
  background-color: var(--secondary);
  color: var(--white);
  animation: pulse infinite 3s;
  top: 5rem;
}
.main-slider .borderLine span.third {
  right: -2rem;
  animation: pulse infinite 4s;
  top: 20rem;
}

.socialList {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  bottom: 5rem;
  left: 18rem;
}
.socialList li a {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  color: var(--black);
  text-transform: capitalize;
}
.mainCard {
  position: absolute;
  right: 1rem;
  bottom: 4rem;
  z-index: 30;
  display: flex;
  gap: 0.5rem;
  border-radius: 20px;
  padding: 1rem;
  align-items: center;
  background: rgb(0 0 0 / 20%);
  /* box-shadow: 0px 3px 6px #00000029; */
  opacity: 1;
  backdrop-filter: blur(29px);
  -webkit-backdrop-filter: blur(29px);
}
.mainCard::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 2rem;
  z-index: 1;
  bottom: -35px;
  backdrop-filter: blur(29px);
  -webkit-backdrop-filter: blur(29px);
  border-top: 35px solid #00000029;
  border-right: 35px solid transparent;
}
/* Theme Btn Style */

.themeBtn {
  display: inline-block;
  padding: 0.5em 1.25em;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  border: 1px solid var(--primary);
  text-transform: uppercase;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}
.themeBtn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--secondary);
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
.themeBtn:before,
.themeBtn:after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  z-index: -1;
  background-color: var(--secondary);
  border-radius: 50%;
}
.themeBtn:before {
  left: -20px;
  transform: translate(-50%, -50%);
}
.themeBtn:after {
  right: -20px;
  transform: translate(50%, -50%);
}
.themeBtn:hover:before {
  -webkit-animation: criss-cross-left 0.8s both;
  animation: criss-cross-left 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.themeBtn:hover:after {
  -webkit-animation: criss-cross-right 0.8s both;
  animation: criss-cross-right 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Theme Btn Style */
.secHeading {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}

.mobileFrame {
  position: relative;
  padding: 1.25rem 2.5rem 3rem 2.5rem;
  background: url(../images/frame.png) center top/cover no-repeat;
}
.mobileFrame img {
  border-radius: 40px;
}
.mobileFrame .arrowImg {
  position: absolute;
  top: -4rem;
  left: -5rem;
  transform: scaleX(-1);
  border-radius: 0;
}
.flex-row-reverse .mobileFrame .arrowImg {
  transform: unset;
  left: auto;
  right: -5rem;
}

.bgPink {
  background-color: #fdc7c7;
}
.titleHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}
.titleHead h3 {
  font-size: 3.125rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.titleHead h3 span {
  display: block;
  font-weight: 500;
  font-size: 2.1875rem;
}
.titleHead .counter {
  height: 12.5rem;
  width: 12.5rem;
  display: grid;
  place-items: center;
  font-size: 8.5rem;
  color: var(--white);
  animation: tada 2s infinite;
  font-weight: 500;
  background: url(../images/heartimg.png) center/contain no-repeat;
}

/* chooseSec */
.chooseSec {
  background-color: #fdc7c7;
  padding: 0;
}
.chooseSec .secHeading {
  font-size: 3.125rem;
  font-weight: 700;
}
.chooseImgWrap {
  margin: -5rem 0;
  position: relative;
  z-index: 1;
}
.chooseImgWrap .bg {
  background-color: #f7921e;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42.5rem;
  height: 42.5rem;
  right: 0;
  z-index: -1;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.chooseImgWrap .bg span {
  background-color: var(--secondary);
  height: 3.75rem;
  width: 3.75rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  border-radius: 50%;
  color: var(--white);
  position: absolute;
}
.chooseImgWrap .bg span.one {
  left: 1rem;
  top: 9rem;
}
.chooseImgWrap .bg span.two {
  top: -1.5rem;
  left: calc(50% - 30px);
}
.chooseImgWrap .bg span.third {
  right: 1rem;
  top: 9rem;
}

/* testimonialSec */
.testimonialSec {
  padding-top: 10rem;
}
.testiThumb {
  padding: 0 1rem;
  text-align: center;
  transition: 0.3s ease-in-out;
  position: relative;
}

.testimonialCarousel .slick-current + .slick-active .testiThumb {
  box-shadow: 0px 3px 60px #0000000a;
}
.testimonialCarousel .slick-current + .slick-active .testiThumb:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
}

.testiThumb p {
  margin-bottom: 0;
  margin: 2rem 0 1rem;
}
.testiThumb h3 {
  margin: 0.5rem 0 5px;
  display: block;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--secondary);
}
.testiThumb .star {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testiThumb .star li i {
  color: #ffc313;
}
.testiThumb .star li {
  margin: 0 3px;
}
.testiThumb .userImg {
  margin-left: auto;
  display: block;
  max-width: 5rem;
  margin-top: -3.5rem;
  border-radius: 50%;
}
/* Footer Css */
footer {
  background-color: #f8f8f8;
  padding-top: 6rem;
}
footer .socialIo {
  display: flex;
  gap: 1rem;
  margin-bottom: 5rem;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
footer .socialIo li a {
  color: var(--black);
  font-size: 1.5rem;
  height: 5.9375rem;
  width: 5.9375rem;
  background-color: var(--white);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
footer .socialIo li a:hover {
  color: var(--white);
  background-color: var(--secondary);
}

.footerMenu {
  margin: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.footerMenu li a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
}
.footerMenu li a:hover {
  color: var(--secondary);
}
.copyRight {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(112, 112, 112, 0.3);
  text-align: center;
}
.copyRight p {
  color: var(--black);
  margin-bottom: 0;
  font-size: 1rem;
}
footer .row {
  position: relative;
}
footer img.arrowImg {
  transform: scaleX(-1);
  position: absolute;
  left: 0;
}
span.heart {
  background-color: var(--secondary);
  height: 45px;
  width: 45px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  border-radius: 50%;
  position: absolute;
  right: 0;
  color: var(--white);
}
span.one.heart {
  font-size: 1.5rem;
  animation: pulse 1s infinite;
  right: 7rem;
}
span.two.heart {
  width: 4.6875rem;
  height: 4.6875rem;
  animation: pulse 2s infinite;
  top: 8rem;
}
span.third.heart {
  width: 3.75rem;
  height: 3.75rem;
  top: 20rem;
  animation: pulse 3s infinite;
  right: 6rem;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(1, 1);
  }
}

/* Inner pages css */
.main-slider.inner-slider {
  max-height: 700px;
  min-height: 450px;
}
.main-slider.inner-slider .imgWrap {
  margin-bottom: -23rem;
}
.main-slider.inner-slider .outerCircle {
  top: auto;
  bottom: -5rem;
}
.inner-slider .breadcrumb {
  background-color: transparent;
  margin-bottom: 2rem;
}
.inner-slider .breadcrumb .breadcrumb-item {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--black);
}
.inner-slider .breadcrumb .breadcrumb-item a {
  color: var(--black);
}
.inner-slider .breadcrumb .breadcrumb-item.active {
  font-weight: 800;
  pointer-events: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--black);
  font-weight: 500;
}
.aboutInner {
  padding-top: 10rem;
}

.testimonialInner .row {
  padding: 2.5rem 0 1.5rem;
}
.testimonialInner .row + .row {
  border-top: 1px solid rgb(101 44 145/20%);
}
.testimonialInner .row > .col-lg-4 + .col-lg-4 {
  border-left: 1px solid var(--primary);
}
.testimonialInner .testiThumb {
  margin-bottom: 1rem;
}

/* Team Card */
.teamCard {
  text-align: center;
}
.teamCard h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
}
.teamCard .content {
  padding: 1rem;
  transition: 0.3s ease-in-out;
  background-color: var(--white);
}
.teamCard .socialIo {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.teamCard .socialIo li:nth-child(1) a {
  transition: 0.4s ease-in-out;
}
.teamCard .socialIo li:nth-child(2) a {
  transition: 0.5s ease-in-out;
}
.teamCard .socialIo li:nth-child(3) a {
  transition: 0.6s ease-in-out;
}
.teamCard .socialIo li:nth-child(4) a {
  transition: 0.7s ease-in-out;
}
.teamCard .socialIo li a {
  color: var(--black);
  height: 35px;
  width: 35px;
  font-size: 1rem;
  background-color: var(--white);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: bottom;
}
.teamCard .socialIo li a:hover {
  color: var(--white);
  background-color: var(--secondary);
}
.teamCard:hover .content {
  transform: translateY(-4rem);
}
.teamCard:hover .socialIo li a {
  transform: scale(1);
}

/*  faq css start  */

.accordionStyle .card {
  border: none;
  background: transparent;
  border-radius: 0;
  border-left: none;
  border-top: none;
  border-right: none;
}
.accordionStyle .card .card-header {
  padding: 0;
  border-radius: 4px 4px 0 0;
  border: 0;
  background: transparent;
}
.accordionStyle .card .card-header button {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
  width: 100%;
  text-align: left;
  position: relative;
  display: flex;
  line-height: 1;
}
.accordionStyle .card .card-header button .fal {
  position: absolute;
  top: 0;
  left: 0;
  color: #424242;
  font-size: 1.125rem;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordionStyle .card .card-body {
  border-radius: 0 0 4px 4px;
  padding: 1rem 2rem;
  position: relative;
  top: 0;
}
.accordionStyle .card .card-body p {
  font-weight: 400;
  margin: 0;
  font-size: 1rem;
  color: #202020;
  width: 100%;
  line-height: 30px;
  letter-spacing: 0;
}
.accordionStyle .card .card-header button[aria-expanded="true"] span {
  color: var(--black);
}
.accordionStyle .card .card-header button[aria-expanded="true"] .fal:before {
  content: "\f068";
}
.accordionStyle .card .card-header button span {
  padding-right: 13px;
}
.faq {
  border-radius: 60px;
  background-color: #f9f9f9;
  padding: 3rem 2rem;
  overflow: hidden;
  position: relative;
}
.faq::before {
  content: "";
  max-height: 31.25rem;
  max-width: 31.25rem;
  height: 100%;
  width: 100%;
  background-color: #f7921e;
  opacity: 0.2;
  border-radius: 50%;
  position: absolute;
  right: -200px;
  bottom: -100px;
}
.faqSec .arrowImg {
  position: absolute;
  left: -10rem;
  top: 0;
  transform: scaleX(-1);
}
.faqSec form {
  position: relative;
  margin-bottom: 5rem;
}
.faqSec form input {
  border-radius: 60px;
  height: 6.25rem;
  width: 100%;
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
  border: none;
  padding-left: 5rem;
  transition: 0.5s ease-in-out;
  background-color: #f9f9f9;
}
.faqSec form i {
  position: absolute;
  top: 2rem;
  left: 1.75rem;
  font-size: 2rem;
  color: #fdc7c7;
}
.faqSec form input:focus {
  outline: none;
  background-color: var(--secondary);
}
.faqSec form input::placeholder {
  color: var(--black);
}

/* loginBody */
.loginBody footer {
  display: none;
}
.loginSection {
  height: 100%;
  overflow: hidden;
  padding: 0;
  background-color: rgb(251 74 74/30%);
}
.loginSection .chooseImgWrap {
  margin: 4rem 4rem 0 auto;
}

.loginSection .rightSide {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  align-items: center;
  padding: 2rem;
}
.loginSection .rightSide .secHeading {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 3.125rem;
}
.loginSection .rightSide h3 {
  color: var(--black);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1;
}
.loginInfo {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: rgb(255 255 255 /60%);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
}
.loginInfo form {
  width: 70%;
  margin: 0 auto;
}
.loginInfo h3 {
  color: var(--black);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}
.loginInfo p {
  font-size: 1.125rem;
  font-weight: 400;
}

.loginInfo .btn-group {
  gap: 1rem;
  padding: 1rem 0;
  width: 100%;
  margin-bottom: 3rem;
  flex-direction: column;
}
.socialLogin {
  width: 100%;
  border-radius: 50px;
  height: 5.625rem;
  display: flex;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  background-color: var(--white);
  border: 1px solid #dcdcdc;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}
.socialLogin:hover {
  background-color: #f7921e;
  color: var(--white);
}
.forgotLink {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  text-align: right;
  color: var(--black);
}
.loginInfo .form-group {
  margin: 1rem 0;
}
.loginInfo .form-group label {
  color: var(--black);
  font-weight: normal;
  font-size: 1.125rem;
  line-height: 1;
  margin-left: 2rem;
}
.loginInfo .form-group .form-control {
  width: 100%;
  border-radius: 50px;
  height: 5.625rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  padding-left: 2rem;
  color: var(--black);
  border: 3px solid #dcdcdc;
}
.loginInfo .form-group .form-control:focus {
  box-shadow: none;
  border-color: #f7921e;
}

.loginInfo form button {
  width: 100%;
  margin-top: 2rem;
  border-radius: 50px;
  height: 5.625rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  background-color: #f7921e;
  border: 1px solid #f7921e;
}
.loginInfo form button:hover {
  background-color: var(--secondary);
}

.loginSection .outerCircle {
  height: 31.25rem;
  width: 31.25rem;
  opacity: 0.6;
  position: absolute;
  top: calc(50% - 250px);
  left: -8rem;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse infinite 3s;
}
.loginSection .outerCircleTwo {
  height: 545px;
  width: 545px;
  position: absolute;
  left: 7rem;
  bottom: -12rem;
  background-color: #f7921e;
  border-radius: 50%;
}

.navbar-toggler:focus,
.navbar-toggler {
  outline: none;
}
