@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  transition: 0.3s;
}
:root {
  --secondary-color: #1a489c;

  --white-color: white;
  --black-color: black;
}
body {
  position: relative;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.col-1 {
  flex: 1;
}
.col-2 {
  flex: 2;
}
.col-3 {
  flex: 3;
}
.col-4 {
  flex: 4;
}
.col-5 {
  flex: 5;
}
.center {
  text-align: center;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: var(--white-color); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  padding: 90px 0px 0px 0px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.sidenav .content {
  padding: 0px 20px 20px 20px;
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  font-size: 17px;
  color: black;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: var(--secondary-color);
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 26px;
  left: 25px;
  font-size: 26px;
  margin-left: 0px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left 0.5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
header {
  position: sticky !important;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: var(--white-color);
  z-index: 99999;
}
header .sidenav .VideoMenu {
  margin-top: 50px;
}

header .sidenav .VideoMenu img {
  border-radius: 10px;
}

header .sidenav img.logo {
  width: 100px;
  display: block;
  margin: auto;
  margin-bottom: 20px;
}
header .sidenav .btn {
  background-color: var(--secondary-color);
  font-size: 18px;
  fill: var(--white-color);
  color: var(--white-color);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--secondary-color);
  border-radius: 25px 25px 25px 25px;
  padding: 15px 45px 15px 45px;
  display: inline-block;
  margin: auto;
  margin-bottom: 10px;
}
header .sidenav .underline {
  background-color: rgba(0, 0, 0, 0.3);
  height: 1px;
  margin: 20px 0px;
}
header .sidenav .btn:hover {
  background-color: white;
  color: var(--secondary-color);
}
header {
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
header .logo {
  width: 32%;
}
header .container {
  max-width: 1180px;
  margin: auto;
  padding: 10px 10px 0px 10px;
}
header .container span {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a489c2e;
  padding: 3px 10px 3px 10px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 5px 5px 5px 5px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
  border-color: #1a489c2e;
  cursor: pointer;
}
header .container span i {
  font-size: 20px;
  color: #1a489c;
}

.term-conditions .container {
  max-width: 841px;
  margin: auto;
  padding: 50px 0px;
}

.term-conditions .container h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}
.term-conditions .container h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.term-conditions .container p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 16px;
}
footer {
  background-color: var(--black-color);
  padding: 50px 10px;
}
footer .container {
  max-width: 1270px;
  margin: auto;
}
footer .row.topRow {
  flex-wrap: wrap;
  max-width: 1087px;
  margin: auto;
  gap: 20px;
  margin-bottom: 30px;
}
footer .box {
  padding: 14px 0px;
  max-width: 295px;
  flex-basis: 290px;
}
footer .box img {
  width: 150px;
  margin-bottom: 10px;
}
footer .box p {
  color: var(--white-color);
  line-height: 24px;
}
footer .verLine {
  width: 1px;
  background-color: #ffffffa6;
}

footer .box a {
  color: var(--white-color);
  margin-bottom: 20px;
  display: block;
  font-size: 18px;
}

footer .box a:hover {
  color: var(--secondary-color);
}
footer .topRow {
  margin-bottom: 20px;
}
footer .underline {
  background-color: #282828;
  height: 1px;
  width: 100%;
}
footer .lastContent p {
  color: #ffffff6b;
}
footer .lastContent {
  max-width: 1108px;
  margin: auto;
}
footer .boxPri {
  display: flex;
  gap: 28px;
}
footer .boxPri a {
  color: #bbbbbb;
  font-size: 17px;
  font-weight: 400;

  transition: color 0.3s;
}

/* code for hero-section section of home page  */
.hero-section {
  margin-bottom: 100px;
}
.hero-section .container {
  max-width: 1270px;
  margin: auto;
  background: url(../images/heroBg.jpg) no-repeat center center/cover;
  border-radius: 25px 25px 25px 25px;
  padding: 50px;
  margin-top: 40px !important;
}
.hero-section h1 {
  font-size: 55px;
  line-height: 55px;
  color: var(--white-color);
  margin-bottom: 26px;
}
.hero-section p {
  font-size: 21px;
  font-weight: 600;
  line-height: 32px;
  color: var(--white-color);
  max-width: 510px;
  margin: auto;
  margin-bottom: 20px;
}
.hero-section h5 {
  font-size: 25px;
  color: var(--white-color);
  font-weight: 600;
  max-width: 510px;
  margin: auto;
}
.hero-section .btn a {
  background-color: var(--secondary-color);
  font-size: 22px;
  font-weight: 500;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--secondary-color);
  /* width: 150px; */
  text-align: center;
  border-radius: 50px 50px 50px 50px;
  padding: 15px 35px 15px 35px;
  display: inline-block;
  margin-top: 20px;
  color: var(--white-color);
}
.hero-section h4 {
  font-size: 38px;
  font-weight: 600;
  color: #fffafa;
}

.flipCards {
  margin-bottom: 50px;
}

.flipCards .row {
  gap: 40px;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.flipCards .card-container {
  perspective: 1000px;
  width: 100%;
  height: 418px;
}

.flipCards .card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 25px;
}

.flipCards .card-container:hover .card {
  transform: rotateY(180deg);
}

.flipCards .card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 40px;
  box-sizing: border-box;
}

.flipCards .card-front {
  color: white;
  display: flex;
  align-items: start;
  justify-content: end;
  /* position: relative; */
}
.flipCards .card-front.firstImage {
  background: url(../images/about-1.jpg) no-repeat center center/cover;
}
.flipCards .card-front.secondImage {
  background: url(../images/about-2.jpg) no-repeat center center/cover;
}
.flipCards .card-front::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-color: #0500286E;
  border-radius: 25px;
}

.flipCards .card-back {
  background: #000841;
  color: #333;
  transform: rotateY(180deg);
  justify-content: center;
}
.flipCards .card-front p {
  font-size: 23px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.flipCards .card-back h2 {
  font-size: 2em;
  margin: 0 0 20px 0;
  color: #667eea;
}

.flipCards .card-back p {
  font-size: 1em;
  line-height: 1.6;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 30px;
}

.flipCards .flip-btn {
  background-color: #1a489c;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.flipCards .flip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.flipCards .flip-btn:active {
  transform: translateY(0);
}

.flipCards .container {
  max-width: 1270px;
  margin: auto;
}

.flipCards .rowPara {
  margin-top: 20px;

  padding: 100px 50px;
  background: url(../images/services.webp) no-repeat center center/cover;
  border-radius: 25px;
  margin-bottom: 40px;
}

.flipCards .rowPara p {
  font-size: 19px;
  line-height: 25px;
}
.flipCards .blueFlexContent {
  border-radius: 25px;
  background: url(../images/heroBg.jpg) no-repeat center center/cover;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 30px;
  padding-right: 30px;
  gap: 40px;
  flex-wrap: wrap;
}
.flipCards .blueFlexContent .col-1 {
  flex-basis: 380px;
  flex-grow: 1;
}
.flipCards .blueFlexContent img {
  border-radius: 25px;
}
.flipCards .blueFlexContent .underline {
  height: 1px;
  background-color: var(--white-color);
  margin-bottom: 20px;
}
.flipCards .blueFlexContent p {
  font-size: 17px;
  line-height: 30px;
  color: var(--white-color);
  margin-bottom: 20px;
}
.flipCards .blueFlexContent .btn a {
  background-color: var(--secondary-color);
  font-size: 18px;
  font-weight: 500;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--secondary-color);
  border-radius: 25px 25px 25px 25px;
  padding: 15px 35px 15px 35px;
  color: var(--white-color);
  display: inline-block;
}

.sellHero .container {
  max-width: 1270px;
  margin: auto;
  background: url(../images/sellHomeHero.jpg) no-repeat center center/cover;
  min-height: 513px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border-radius: 25px;

  position: relative;
}

.sellHero .container::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: rgba(11, 0, 71, 0.6);
  border-radius: 25px;
}

.sellHero .container .col-12 {
  max-width: 71%;
  margin: auto;
}
.sellHero .container .col-12 h1,
.sellHero .container .col-12 p,
.sellHero .container .col-12 .btn a {
  position: relative;
  z-index: 2;
}
.sellHero .container .col-12 h1 {
  color: var(--white-color);
  line-height: 1.4em;
  font-size: 29px;
  font-weight: 600;
  text-transform: inherit;
  margin-bottom: 20px;
}
.sellHero .container .col-12 p {
  color: var(--white-color);
  font-size: 18px;
  line-height: 37px;
  color: var(--white-color);
  margin-bottom: 20px;
}
.sellHero .container .col-12 .btn a {
  background-color: #1a489c;
  font-size: 18px;
  font-weight: 500;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--secondary-color);
  border-radius: 25px 25px 25px 25px;
  padding: 15px 35px 15px 35px;
  color: var(--white-color);
  display: inline-block;
}

.sellHero {
  margin-bottom: 20px;
}
.formSection .container {
  max-width: 1270px;
  margin: auto;
}

.formSection .container form {
  max-width: 70%;
  margin: auto;
  padding-top: 65px;
  padding-bottom: 65px;
  padding-left: 65px;
  padding-right: 65px;
  border-radius: 25px;
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.formSection .container form h1 {
  line-height: 1;
  font-weight: 600;
  text-transform: inherit;
  font-size: 32px;
  margin-bottom: 40px;
}
.formSection .container p {
  color: #333333;
  font-size: 15px;
  line-height: 1.7em;
  padding-bottom: 10px;
  font-weight: bold;
}
.formSection .container p span {
  color: #e51919;
}
.formSection .container .box {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.formSection .container .box .priBox {
  flex: 1;
}
.formSection .container .box .priBox input,
.formSection .container .box .priBox textarea {
  width: 100%;
  border: 1px solid #333333;
  font-size: 16px;
  border-radius: 25px;
  line-height: 1.3em;
  padding: 9px;
  background-color: rgba(232, 240, 254, 0.5);
  font-weight: normal;
}
.formSection .container .box .priBox textarea {
  height: 150px;
  margin-bottom: 20px;
}
.formSection .container input.btnSubmit {
  color: var(--white-color);
  background: #1a489c !important;
  color: white;
  font-size: 18px !important;
  font-weight: 500 !important;
  border: 1px solid #1a489c !important;
  border-radius: 25px !important;
  padding: 13px 40px !important;
}
.formSection {
  margin-bottom: 80px;
}

.gridTwo {
  margin-bottom: 80px;
}

.gridTwo .container {
  max-width: 1270px;
  margin: auto;
}

.gridTwo .container .row {
  gap: 50px;
  flex-wrap: wrap;
}
.gridTwo .container img {
  border-radius: 25px;
}
.gridTwo .container .col-1 p {
  margin-bottom: 1rem;
  font-size: 17px;
  line-height: 30px;
  color: #464646;
}
.joinHero .container {
  max-width: 1270px;
  margin: auto;
  margin-top: 30px;
  background: url(../images/heroBg.jpg) no-repeat center center/cover;
  padding: 30px;
  border-radius: 25px;
}
.joinHero .container img {
  border-radius: 25px;
}
.joinHero .container .row {
  gap: 30px;
  flex-wrap: wrap;
}
.joinHero .container .row .col-1 {
  flex-basis: 350px;
  flex-grow: 1;
}
.joinHero .container .row p {
  font-size: 18px;
  line-height: 30px;
  color: var(--white-color);
  margin-bottom: 2rem;
}
.joinHero .container .row .flexBtn .btn{
  flex: 0;
  padding: 0px !important;
}
.joinHero .container .row .flexBtn .btn a {
  display: inline-block;
  text-align: center;
  width: 165px;
  background-color: #1a489c;
  font-size: 18px;
  font-weight: 500;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 25px 25px 25px 25px;
  padding: 15px 15px 15px 15px;
}
.joinHero .container .row .flexBtn {
  gap: 20px;
  padding: 0px 10px;
}
.twoGridFlex {
  background-color: #f8f8f8;
  padding: 50px 10px;
}
.twoGridFlex .container {
  max-width: 1270px;
  margin: auto;
}
.twoGridFlex .container .mainPara {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 20px;
  color: #5b5b5b;
}
.twoGridFlex .container .flexCol {
  gap: 50px;
  flex-wrap: wrap;
}
.twoGridFlex .container .flexCol .box {
  flex: 1;
  flex-basis: 380px;
  flex-grow: 1;
}
.twoGridFlex .container .flexCol .box img {
  border-radius: 25px;
  margin-bottom: 15px;
}
.twoGridFlex .container .flexCol .box h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 0.5rem;
}
.twoGridFlex .container .flexCol .box p {
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}
.blurPara {
  margin-bottom: 80px !important;
}
.blurPara .container {
  max-width: 1270px;
  margin: auto;
  background: url(../images/heroBg.jpg) no-repeat center center/cover;
  padding: 50px;
  border-radius: 26px;
  margin-top: 50px;
}
.blurPara .container .row {
  flex-wrap: wrap;
  gap: 30px;
}
.blurPara .container .row .col-1 {
  flex-basis: 380px;
  flex-grow: 1;
}
.blurPara .container .row img {
  border-radius: 25px;
}
.blurPara .container .row p {
  font-size: 18px;
  line-height: 30px;
  color: var(--white-color);
}
.blurPara .container .row .btnGrid {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: start;
}
.blurPara .container .row .btnGrid .btn{
  flex: 0 !important;
  padding: 0px !important;
}
.blurPara .container .row .btnGrid .btn a {
  background-color: var(--secondary-color);
  font-size: 18px;
  font-weight: 500;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--secondary-color);
  border-radius: 25px 25px 25px 25px;
  padding: 15px 25px 15px 25px;
  color: var(--white-color);
  margin-top: 20px;
  display: inline-block;
  width: 170px;
  text-align: center;
}
.blurPara .container .row .btnGrid .btn a:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
}

.contactForm .container {
  max-width: 1270px;
  margin: auto;
}
.contactForm .container form {
  padding: 65px 65px 100px 65px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--white-color);
  max-width: 55%;
  width: 100%;
  margin: auto;
  margin-top: 40px;
  border-radius: 25px;
  margin-bottom: 30px;
}
@media screen and (max-width: 980px) {
  .contactForm .container form {
    max-width: 90%;
  }
}
@media screen and (max-width: 980px) {
  .contactForm .container form {
    padding: 40px 16px;
  }
}
.contactForm .container form h1 {
  line-height: 1;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
}
.contactForm .container form p.mainPara {
  font-size: 16px;
  margin-bottom: 2.5rem;
}
.contactForm .container form .box {
  gap: 20px;
  flex-wrap: wrap;
}
.contactForm .container form .box .priBox {
  flex: 1;
  margin-bottom: 20px;
  flex-basis: 200px;
  flex-grow: 1;
}
.contactForm .container form .box input,
.contactForm .container form .box textarea {
  width: 100%;
  border-color: #333333;
  background-color: #f5f8fa;
  color: #000000;
  font-size: 16px;

  font-weight: normal;

  outline: none;
  line-height: 1.3em;
  border-radius: 25px !important;
  padding: 9px;
  border-width: 1px;
  border-style: solid;
}
.contactForm .container form .box textarea {
  height: 150px;
  margin-bottom: 20px;
}
.contactForm .container form .box p {
  color: #333333;
  font-size: 15px;

  line-height: 1.7em;
  padding-bottom: 10px;
  font-weight: bold;
}
.contactForm .container form .box p span {
  color: #e51919;
}
.contactForm .container form input.btnSubmit {
  color: var(--white-color);
  background: var(--secondary-color) !important;
  color: white;
  font-size: 18px !important;
  font-weight: 500 !important;
  border: 1px solid var(--secondary-color) !important;
  border-radius: 25px !important;
  padding: 13px 40px !important;
  cursor: pointer;
}
.contactForm .container form input.btnSubmit:hover {
  background: transparent !important;
  color: var(--secondary-color);
}
.privacyBox .container {
  max-width: 770px;
  margin: auto;
  padding: 50px 10px;
}
.privacyBox .container h1 {
  line-height: 1;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.privacyBox .container h4 {
  font-weight: bolder;
  font-size: 15px;
  margin-bottom: 20px;
  color: #222222;
}
.privacyBox .container p {
  font-size: 15px;
  color: #222222;
  margin-bottom: 1rem;
  line-height: 24px;
}
.privacyBox .container ul {
  padding-left: 26px;
  margin-bottom: 30px;
}
.privacyBox .container ul li {
  list-style: disc;
  margin-bottom: 20px;
}
.memebership h1 {
  line-height: 1;
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.memebership .container {
  max-width: 1270px;
  margin: auto;
  padding: 50px 10px;
  color: #222222;
}
.memebership .container .mainPara {
  margin-bottom: 2rem;
  font-size: 15px;
  text-align: center;
  color: #222222;
}
.memebership .container .rowPrimary {
  max-width: 80%;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.memebership .container .rowPrimary .col-1 {
  border-radius: 15px;
  background-color: #f9f9f908;
  padding: 54px 30px 28px 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.memebership .container .rowPrimary .col-1 h2 {
  text-align: center;
  color: #2d2d2d;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 0 0 15px;
  line-height: 1.2;
}
.memebership .container .rowPrimary .col-1 h3 {
  text-align: center;
  color: #5d5d5d;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2px;
  max-width: 385px;
  width: 100%;
  margin: auto;
  line-height: 24px;
}
.memebership .container .rowPrimary .col-1 .underline {
  background-color: rgba(0, 0, 0, 0.1);
  height: 1px;
  width: 100%;
  margin: 20px auto;
  max-width: 80%;
}
.memebership .container .rowPrimary .col-1 h4 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: #222222;
  font-weight: bolder;
  line-height: 26px;
  margin-bottom: 16px;
}

.memebership .container .rowPrimary .col-1 .centantBox {
  max-width: 79%;
  width: 100%;
  margin: auto;
}
.memebership .container .rowPrimary .col-1 .centantBox p {
  color: #54595f;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1px;

  margin-bottom: 20px;
}
.memebership .container .rowPrimary .col-1 .centantBox .btn a {
  background-color: var(--secondary-color);
  color: #ffffff;
  border-color: var(--secondary-color);
  transition-duration: 0.6s;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 10px 90px 11px 90px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 30px 30px 30px 30px;
  display: inline-block;
  margin-top: 30px;
}
.memebership .container .rowPrimary .col-1 .centantBox .btn.nomargin a {
  margin-top: 0px !important;
}
.memebership .container .rowPrimary .col-1 .centantBox .btn a:hover {
  background-color: white;
  color: var(--secondary-color);
}

.onlineHero .container {
  margin-top: 40px !important;
  margin-bottom: 80px !important;
  max-width: 1270px;
  margin: auto;
  min-height: 487px;
  background: url(../images/heroBgOnline.jpg) no-repeat center center/cover;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.onlineHero .container::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 25px;
  background-color: rgba(5, 0, 39, 0.7);
}
.onlineHero .container img,
.onlineHero .container p {
  position: relative;
  z-index: 9;
}
.onlineHero .container img {
  width: 58%;
  border-radius: 25px;
  margin-bottom: 16px;
}
.onlineHero .container p {
  text-align: center;
  font-family: "Helvetica", Sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: var(--white-color);
  margin-bottom: 1rem;
}

.gridTwo {
  margin-bottom: 100px;
}
.gridTwo .container .row {
  gap: 40px;
  flex-wrap: wrap;
}
.gridTwo .container .row .col-1 {
  flex-basis: 350px;
  flex-grow: 1;
}

.gridTwo .container .row img {
  border-radius: 25px;
}

.whyGold .container {
  max-width: 1270px;
  margin: auto;
  min-height: 473px;
  background: url(../images/whyOnline.jpg) no-repeat center center/cover;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 50px 20px;
  margin-bottom: 80px !important;
}
.whyGold .container::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.45);
}
.whyGold .container h1,
.whyGold .container p {
  position: relative;
  z-index: 9;
}
.whyGold .container h1 {
  font-size: 63px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 20px;
}
.whyGold .container p {
  max-width: 844px;
  width: 100%;
  margin: auto;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  color: #ffffff;
}

.hero-section .row {
  flex-wrap: wrap;
  gap: 30px;
}
.hero-section .col-1 {
  flex-basis: 400px;
  flex-grow: 1;
}

@media screen and (max-width: 490px) {
  .flipCards .rowPara,
  .blurPara .container,
  .joinHero .container {
    padding: 50px 10px;
  }
  .memebership .container .rowPrimary,
  .memebership .container .rowPrimary .col-1 .centantBox {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .sellHero .container .col-12 {
    max-width: 100%;
    padding: 20px;
  }
  .sellHero .container .col-12 p {
    line-height: 26px;
  }
  .formSection .container form {
    max-width: 98%;
    padding: 50px 20px;
  }
  .formSection .container .box .priBox {
    flex-basis: 200px;
    flex-grow: 1;
  }
  section {
    padding: 0px 5px;
  }
  header .logo {
    max-width: 100%;
    width: 90%;
  }
  header .container span {
    right: -10px;
  }
}
@media screen and (max-width: 420px) {
  .hero-section p {
    font-size: 16px;
  }
  .hero-section h5,
  .hero-section .btn a {
    font-size: 18px;
  }
  .hero-section h4 {
    font-size: 22px;
  }
  .hero-section h1 {
    font-size: 45px;
  }
}

.faqs h2.center{
  color: #292929;
      font-size: 35px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}
.accordion .accordion-item {
  /* border-bottom: 1px solid #e5e5e5; */
  margin-bottom: 10px;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border: 1px solid var(--secondary-color);
  margin-bottom: 10px;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  border: 1px solid #E8E8E8;
  border-radius: 25px;
  padding: 1rem 20px;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  color: var(--black-color);
  font-size: 20px;
    font-weight: 500;
}
.accordion button:hover .accordion-title,
.accordion button:focus .accordion-title{
  color: var(--secondary-color);
}
.accordion .accordion-item button[aria-expanded="true"] .accordion-title{
  color: var(--secondary-color);
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 22px;
  height: 22px;
  /* border: 1px solid; */
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 20px;
  height: 5px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 2px;
  left: 13px;
  width: 4px;
  height: 20px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: var(--secondary-color);
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 500px;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  border: 1px solid var(--secondary-color);
  border-radius: 25px;
  padding: 25px;
}
.accordion button[aria-expanded="true"] + .accordion-content.somePadding{
  padding: 25px 25px 0px 25px;
  
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 400;
  margin: .5em 0;
}
.faqs .container{
  max-width: 970px;
  margin: auto;
  margin-bottom: 80px;
}
.accordion .accordion-content p strong{
  font-weight: 800;
}
.accordion .accordion-content h2{
  
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #353535;
}
.accordion .accordion-content ul li{
  list-style: disc;
  margin-bottom: 6px;
  font-size: 15px;
  color: #353525;
}
.accordion .accordion-content ul{
  padding-left: 40px;
  margin-bottom: 50px;
}

































































        /* Popup Overlay */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            animation: fadeIn 0.3s ease-in-out;
            padding: 10px;
        }

        .popup-overlay.show {
            display: flex;
            justify-content: end;
            align-items: center;
          	z-index: 999999999999 !important;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Popup Form Container */
        .popup-form {
            background: white;
            padding: 30px;
            border-radius: 25px 25px 25px 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            max-width: 343px;
            width: 90%;
            animation: slideUp 0.3s ease-out;
            position: relative;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .popup-form h2 {
          font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
    color: #011640;
    margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 6px;
        }


        .form-group input,
        .form-group textarea {
          background-color: #F6F8FF;
    border-color: #595959;
    border-radius: 25px 25px 25px 25px;
    width: 100%;
    color: #6D6D6D;
    border: 1px solid #69727d;
        flex-grow: 1;
    max-width: 100%;
    vertical-align: middle;
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
    min-height: 40px;
    padding: 5px 14px;
        font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-buttons {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit {
            background: var(--secondary-color);
            color: white;
            border-radius: 25px;
    line-height: 1;
        }

        .btn-submit:hover {
            background: #5568d3;
        }

        .btn-remove {
            position: absolute;
            left: -50px;
            top: 30px;


                background-color: var(--white-color);
    fill: var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 16px 0px 0px 16px;
    padding: 16px 16px 16px 16px;
    font-size: 20px;
        }

        /* .btn-remove:hover {
            background: #e0e0e0;
        } */