@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* 1200 x 780 */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  margin: 0;
  font-size: 15px;
  background-color: var(--primary-color);
  font-family: Poppins;
  color: var(--secondary-color);

}

a {
  text-decoration: none;
}

svg {
  color: #fff;
}

:root {
  --width-default: min(1200px, 90vw);
  --diameter: 1432px;
  --primary-color: #1A237E;
  --primary-color2: #2979FF;
  --secondarybg-color: #00588f;
  --secondary-color: #ffffff;
  --background-color: #0A192F;
  --secondary2: #e6f5fc;
  --secondary3: #228b22;
  --secondary3x: #024e37;
  --secondary4: #d50000;
  --secondary5: #87500c;
  --secondary6: #0a1f44;

  /**
  * colors
  */

  --united-nations-blue: hsl(214, 56%, 58%);
  --bright-navy-blue: hsl(214, 57%, 51%);
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: hsl(208, 97%, 12%);
  --yale-blue: hsl(214, 72%, 33%);
  --blue-ncs: hsl(197, 100%, 36%);
  --gunmetal: hsl(206, 34%, 20%);
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 25%);
  --jet: hsl(0, 0%, 20%);
  --primary-clr: rgb(255, 132, 0);


  /**
  * typography
  */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
  * transition
  */

  --transition: 0.25s ease-in-out;

  /**
  * spacing
  */

  --section-padding: 60px;

  /**
  * border-radius
  */

  --radius-15: 15px;
  --radius-25: 25px;
}


.loader {
  position: fixed;
  background: var(--secondarybg-color);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader i {
  font-size: 65px;
  color: var(--secondary-color);
}



/* ALERTS */

/* ALERT POP UPS */


.success-alert {
  background-color: #4CAF50;
  color: white;
}

.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000009b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.alert-content {
  width: 350px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.alert-icon {
  margin-bottom: 15px;
}

.alert-icon i {
  font-size: 50px;

}

.alert-message h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.alert-message p {
  margin: 0;
  font-size: 1rem;
}

.alert-button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: #4CAF50;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.alert-button:hover {
  opacity: 0.9;
}


.error-alert {
  background-color: #F44336;
  color: white;
}

.error-alert .alert-button {
  color: #F44336;
}



.confirm-modal {
  background-color: white;
  color: #333;
}

.confirm-modal .alert-icon svg {
  stroke: #4CAF50;
}

.pinpassword-input {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.confirm-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}

.pincancel-button {
  background-color: #f1f1f1;
  color: #333;
  flex: 1;
}

.pinconfirm-button {
  background-color: #4CAF50;
  color: white;
  flex: 1;
}


/* PASSWOR MODAL */


/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
}


/* Password Modal */
.password-modal {
  background: var(--white);
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  display: block;
}



.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary3x);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary6);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--secondary4);
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.modal-header {
  background: var(--secondarybg-color);
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark-blue);
}

.modal-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
}

.modal-content {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.password-input-group {
  position: relative;
}

.password-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid var(--background-color);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  
}

.password-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
  font-size: 1rem;
}

.password-toggle:hover {
  color: var(--primary-blue);
}

.form-text {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.confirm-button {
  flex: 1;
  padding: 15px;
  background: var(--background-color);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.confirm-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.confirm-button:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cancel-button {
  flex: 1;
  padding: 15px;
  background: var(--secondary4);
  color: var(--text-light);
  border: 2px solid var(--text-light);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-button:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.error-messagepassword {
  color: var(--error-red);
  font-size: 0.9rem;
  margin-top: 10px;
  font-weight: 600;
  display: none;
}

/* Responsive Design */
@media (max-width: 576px) {
  .password-modal {
    width: 95%;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-content {
    padding: 20px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-title {
    font-size: 1.3rem;
  }
}









@keyframes bounce {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(-30px)
  }
}

.bouncepic img {
  animation: bounce 8s infinite;
}

html {
  scroll-behavior: smooth;
}


/* header */

header {
  padding: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 10px;
  background: #1a227ecd;
  border-radius: 30px;
  z-index: 100;
  backdrop-filter: blur(2px);
  width: 97%;
  left: 50%;
  transform: translateX(-50%);
}

.menu-btn,
.close-menu-btn {
  height: 37px;
  width: 37px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 1px 2px var(--secondary-color);
  cursor: pointer;
  color: var(--secondary-color);

}

.close-menu-btn {

  position: absolute;
  top: 15px;
  left: 15px;
}

.menu-btn span,
.close-menu-btn span {
  font-size: 37px;
}

.logo-holder {
  width: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: var(--secondary-color) 1px solid;
  padding: 3px;
  border-radius: 30px;
}

.logo {
  width: 23px;
  height: 23px;
  border-radius: 50%;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.logo-holder span {
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
}

/* nav */
nav {

  border: var(--secondary-color) 1px solid;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 3px 0;
  border-radius: 30px;
  height: 32px;
  transition: right 0.5s ease-in-out;
}

nav a {
  font-size: 12px;
  font-weight: 400;
  width: 80px;
  text-align: center;
  border: var(--secondary-color) 1px solid;
  padding: 3px 0;
  border-radius: 20px;
  cursor: pointer;
  color: var(--secondary-color);
}

nav a:hover {
  background: var(--primary-color2);
}

.lasthbtn {
  font-size: 12px;
  font-weight: 400;
  width: 90px;
  text-align: center;
  border: var(--primary-color2) 1px solid;
  padding: 6px 0;
  border-radius: 20px;
  cursor: pointer;
  color: var(--secondary-color);
  background: var(--primary-color2);

}

.fortopx {
  display: none;
}



/* slider first section*/
.slider {
  /* background-color: red; */
  color: #eee;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider .list .item {
  position: absolute;
  inset: 0 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
}

.slider .list .item .content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 400px);
  text-align: left;
  gap: 40px;
  font-size: 1.2em;
  text-transform: uppercase;
  font-family: Poppins;
  text-shadow: 0 0 80px #000;
  background: #1a227ecd;
  padding: 10px;
  border-radius: 10px;
}

.slider .list .item .content h2 {
  font-size: 5em;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9em;
  transform: translateY(-100%);
  transition: transform 1s;
  grid-row-start: 1;
  grid-row-end: 3;
}



.slider .list .item .content p:last-child {
  display: flex;
  justify-content: start;
  align-items: end;
  padding-bottom: 25px;
}

/* item default */
.slider .list .item .image {
  flex-shrink: 0;
  width: var(--diameter);
  height: var(--diameter);
  background-image: var(--url);
  background-size: var(--diameter) var(--diameter);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  transform: rotate(-60deg);
  position: relative;
  transition: 1s;
}

.slider .list .item .image::before,
.slider .list .item .image::after {
  position: absolute;
  width: 70%;
  height: 70%;
  content: '';
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-120deg);
  background-image:
    linear-gradient(to right, #0004, #0004),
    var(--url);
  background-size: var(--diameter) var(--diameter);
  background-position: center;
  transition: 1s;
}

.slider .list .item .image::after {
  width: 30%;
  height: 30%;
  background-image: var(--url);
  border: 3px solid #fff2;
  transform: translate(-50%, -50%) rotate(-170deg);
}

/* default  */
.slider .list .item .image {
  filter: blur(30px);
}

.slider .list .item {
  pointer-events: none;
  opacity: 0;
}

/* item active */
.slider .list .item.active {
  pointer-events: auto;
  opacity: 1;
}

.slider .item.active .image {
  filter: blur(0px);
  transform: rotate(0deg);
}

.slider .item.active .image::before,
.slider .item.active .image::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.slider .list .item.active .content h2 {
  transform: translateY(0);
}

/* item phía sau */
.slider .list .item.active~.item {
  opacity: 0;
}

.slider .item.active~.item .image {
  transform: rotate(60deg);
}

.slider .item.active~.item .image::before {
  transform: translate(-50%, -50%) rotate(120deg);
}

.slider .item.active~.item .image::after {
  transform: translate(-50%, -50%) rotate(170deg);
}

.slider .list .item.active~.item .content h2 {
  transform: translateY(100%);
}

/* arrows */
.arrows {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: var(--width-default);
  display: flex;
  justify-content: space-between;
}

.arrows button {
  all: unset;
  cursor: pointer;
}

@keyframes showModel {
  from {
    transform: translateX(-50%) scale(1.3) translateY(88px);
  }
}

.arrows button.d-none {
  opacity: 0;
  pointer-events: none;
}

@media all and (max-width: 1024px) {
  .slider .list .item .content {
    grid-template-columns: repeat(2, 300px);
  }

  .slider .list .item .content h2 {
    font-size: 8em;
  }
}

@media all and (max-width: 767px) {
  .slider .list .item .content {
    grid-template-columns: 80%;
    height: 100%;
    justify-content: center;
    gap: 20px;
    top: 70px;
  }

  .slider .list .item .content h2 {
    font-size: 2.5em;
    line-height: 70px;
  }

  .slider .list .item .content p {
    font-size: small;
  }
}


/* About section */

/*SECOND SECTION*/
.about-box {
  width: 100%;
  padding: 20px 30px;
  position: relative;
  height: 100vh;
}

.about-box .aboutimg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;


}


.about-box .aboutimg img {
  width: 40%;
  height: 500px;
  object-fit: cover;
  border-radius: 40px;
  border-radius: 3%;
  box-shadow: #d9d4ac 1px 1px 10px;

}

.hero-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-text h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.factionbtn-holder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  gap: 20px;
  margin: 10px 0;
}


.fbtn {

  background: var(--primary-color2);
  border-radius: 20px;
  padding: 5px 35px;
  box-shadow: var(--secondary-color) 1px 1px 3px;
  cursor: pointer;
}

.sxbtn {

  background: var(--primary-color2);
  border-radius: 20px;
  padding: 5px 35px;
  color: var(--secondary-color);
  border: var(--primary-color2) 2px solid;
  cursor: pointer;
}


.hero-text p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--secondary-color);
  text-align: left;
}


.hero-text p span {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--primary-color);
  margin: 10px 0;
}


.hero-text p span i {
  font-size: 20px;
  margin-right: 10px;
}


/* EXPERIENCE BOX */


.experience-box {
  height: fit-content;
  width: 100%;
  background: var(--secondarybg-color);
  border-radius: 30px;
  padding: 10px 20px;
  margin-top: 20px;

}

.experience-box h1 {
  font-size: 2.3rem;
  margin: 10px;
  color: var(--secondary-color);
}

.expr-container {
  height: fit-content;
  width: 100%;
  border: var(--secondary-color) 4px double;
  border-radius: 10px;
  margin: 10px 0;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.experience-card {
  height: 320px;
  width: 230px;
  background: var(--secondary2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -40%;
  width: 100%;
  height: 150%;
  background: rgba(0, 88, 143, 0.18);
  transform: rotate(35deg);

}

.exp-card-icon {
  position: relative;
  height: 90px;
  width: 90px;
  background: var(--secondarybg-color);
  margin: auto;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: 0 10px 0 #fff, inset 0 -8px 0 rgba(255, 255, 255, 0.28);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;

}

.exp-card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-top-right-radius: 20px;
  box-shadow: 15px -15px 0 15px var(--secondarybg-color);
}

.exp-card-icon::after {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-top-left-radius: 20px;
  box-shadow: -15px -15px 0 15px var(--secondarybg-color);
}

.exp-card-icon span {
  color: var(--secondary-color);
  position: relative;
  font-size: 60px;
  position: relative;
  z-index: 13;
}

.exp-card-icon ion-icon {
  color: var(--secondary-color);
  position: relative;
  font-size: 6em;
  z-index: 11;
}

.experience-card h1 {
  color: var(--secondary-color);
  background: var(--secondary6);
  font-size: 1.5em;
  margin: 15px 5px;
  padding: 5px;
  border-radius: 5px;
  text-align: center;

}

.experience-card p {
  color: var(--secondary-color);
  background: var(--secondary6);
  font-size: 15px;
  margin: 15px 5px;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  height: 47%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;

}


/*proess SECTION*/
.process-box {
  margin-top: 10px;
  width: 100%;
  background: url(../pix/prbg.jpg);
  padding: 20px 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: darken;
  border-radius: 30px;

}


.process-box .process-container {
  height: fit-content;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

}

.the-process {
  width: 100%;
}

.the-process h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  text-align: center;
  margin-top: 30px;
}

.the-process p {
  width: 100%;
  background: #0a192fc7;
  height: 70px;
  font-size: 17px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;

}

.how-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  background-color: #37363633;
  border: 1px solid var(--raisin-black);
  border-radius: var(--radius-24);
  padding: 5px;
  box-shadow: var(--shadow-2);

}

.how {
  padding: 18px 30px;
  width: 290px;
  border-radius: 5px;
  margin: 10px;
  background: var(--primary-color2);
  color: var(--extra-light);
  box-shadow: #eee 3px 2px 10px;
  font-size: 14px;
  height: 130px;
}

.how h4 {
  font-size: 18px;
}

.how h4 i {
  margin-right: 10px;
}

/*video section */


.video-section {

  height: 50vh;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}



.video-section video {
  width: 95%;
  height: 100%;
  margin: auto;
  object-fit: cover;
  margin: auto;
}


@media(max-width:800px) {

  /*video section*/

  .video-section {
    margin-top: 0px;
    height: 30vh;
    background: #000;
  }




}



/* why choose us */

.why-box {
  width: 100%;
  background: var(--primary-color);
  padding: 30px;
  margin-top: 20px;
  border-radius: 30px;
}

.why-box h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  text-align: center;
}

.why-box .why-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  background: #000000bb;
  padding: 10px;
  border-radius: inherit;
}

.why-box .why-box-container .reason {
  width: 300px;
  height: 270px;
  position: relative;
  box-shadow: #fce668 2px 1px 10px;
  border-radius: 10px;
}

.why-box .why-box-container .reason img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}


.why-box .why-box-container .reason .reason-desc {
  position: absolute;
  background: #000000bb;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 20px;
}

.reason-head {
  font-size: 25px;
  text-align: center;
  color: #ffffff;
  text-decoration: 3px underline;
  margin-bottom: 10px;
}

.reason-head i {
  font-size: 35px;
  text-align: center;
  color: #01d0ff;
  text-shadow: #f5a14171 2px 6px 10px;
  width: 100%;
}

.reason-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
}

/*-----------------------------------*\
  #MARKRT VIEW BOX
\*-----------------------------------*/

.market-box {
  width: 100%;
  height: 70vh;
  margin: 10px 0;
}


/*-----------------------------------*\
  #PLANS BOX
\*-----------------------------------*/

.plan-box {
  width: 100%;
  background: var(--secondarybg-color);
  margin-top: 20px;
  padding: 10px 0;
  border-radius: 30px;

}

.plan-box h1 {
  font-size: 2.3rem;
  margin: 20px 0;
  color: var(--secondary-color);
  text-align: center;
}

.plan-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.plan-container img {
  width: 500px;
  border-radius: 30%;
  box-shadow: #d3bb01 3px 3px 10px;
}

.plans {
  width: 100%;
  padding: 20px 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;

}

.plan {
  width: 280px;
  height: 420px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #000;
  box-shadow: #d8dadb 2px 3px 10px;
  margin: auto;
}

.plan-up {
  width: 100%;
  background: rgba(43, 0, 255, 0.277);
  height: 130px;
  margin-bottom: 10px;
  border-top-right-radius: 9px;
  border-top-left-radius: 9px;
}

.plan-up p {
  font-size: 25px;
  text-align: center;
  color: var(--extra-light);
  display: flex;
  align-items: center;
  flex-direction: column;
}

.plan-up p i {
  font-size: 40px;
  text-align: center;
  margin: 10px;
  color: #01d0ff;
}

.plan-up div {
  font-size: 20px;
  text-align: center;
  color: #ffc001;
}


.plan-down {
  width: 100%;
  padding: 0 10px;
}

.plan-down p {
  display: flex;
  font-size: 16px;
  text-align: left;
  align-items: center;
  border: #d8dadb 2px solid;
  border-top: none;
  margin: 10px 0;
  border-right: none;
  border-left: none;
  padding: 5px 25px;
  position: relative;
  color: #eee;

}

.plan-down p i {
  position: absolute;
  left: 0;
  color: #ffc001;
}

.plan-down p span {
  margin-right: 5px;
  color: #01d0ff;
  font-size: 16px;
  font-weight: 500;
}

.plan a {
  width: 100%;
  margin: auto;
  display: flex;
  text-decoration: none;
}

.plan button {
  background: #0b6c82;
  width: 90%;
  margin: auto;
  font-size: 18px;
  padding: 10px 0;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
}

.plan button:hover {
  background: #d4a012d8;

  color: #fff;
}


/*REVIEW BOX*/

.review-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  margin-top: 20px;
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--primary-color2) 1px 1px 6px;
  padding: 10px 0;
}

.review-box h1 {
  font-size: 2.3rem;
  margin: 20px 0;
  color: var(--secondary-color);
  padding: 10px;
}

.reviews {
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  position: relative;
  width: 80vw;
  max-width: 720px;
  height: 340px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reviews .review {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 86%;
  margin: auto;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.reviews .review p {
  color: #888;
  text-align: justify;
  font-size: 15px;
}

.reviews .review img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.reviews .review h3 {
  color: #333;
  font-size: 15px;
  margin-bottom: 2px;
  text-align: center;
}

.reviews .review h6 {
  color: #777;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
}

.reviews button {
  font-size: 28px;
  height: 48px;
  width: 48px;
  background: #fff;
  border: none;
  position: absolute;
  color: #512da8;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.reviews button#revnext {
  right: -26px;
}

.reviews button#revprev {
  left: -26px;
}

/*REFERRAL BOX*/

.referral-box {
  width: 100%;
  padding: 30px 45px;
  background: var(--secondarybg-color);
  margin-top: 20px;
  border-radius: 30px;
}

.referral-box h1 {
  font-size: 2.3rem;
  margin: 20px 0;
  color: var(--secondary-color);
  text-align: center;
}

.referral-container {
  display: flex;
  width: 100%;


}

.referral-container img {
  width: 550px;
  border-radius: 30%;
  box-shadow: #d3bb01 3px 3px 10px;
}

.referral-text {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  padding: 10px 20px;
  color: var(--secondary-color);
}


/*FOOTER*/

.footer {
  position: relative;
}

.container-footer {
  max-width: 1170px;
  margin: auto;
}

.row-footer {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: var(--secondary6);
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--primary-color);
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

.footerCopyright {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid var(--primary-color2);
  position: absolute;
  right: 0;
  left: 0;
}

.certicont img {
  width: 100%;
  object-fit: cover;
  
}

/*responsive*/
@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px) {
  .footer-col {
    width: 70%;
  }
}



/* SERVICE PAGE */

/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/



.preloader {
  display: flex;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: var(--yale-blue);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}

.preloader-container {

  display: flex;
  justify-content: center;
  align-items: center;

}

.preloader-container i {
  color: wheat;
  font-size: 80px;
}







/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/


li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span,
input,
label,
button,
ion-icon {
  display: block;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
}

ion-icon {
  pointer-events: none;
}

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}






/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--bright-navy-blue);
  border-color: var(--bright-navy-blue);
}

.btn-primary:is(:hover, :focus) {
  background: var(--yale-blue);
  border-color: var(--yale-blue);
}

.btn-secondary {
  border-color: var(--white);
}

.btn-secondary:is(:hover, :focus) {
  background: hsla(0, 0%, 100%, 0.1);
}

.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family: var(--ff-montserrat);
  text-transform: uppercase;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 {
  color: var(--gunmetal);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.section-subtitle {
  font-size: 3.3rem;
  margin: 20px 0;
  color: #e8ae1a;
  text-align: center;
}

.section-title {
  margin-bottom: 15px;
  color: #e9e9e9;
}

.section-text {
  color: #e9e9e9;
  margin-bottom: 30px;
}

.card-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
}












.hero-title {
  margin-bottom: 20px;
}

.section__subheader {
  color: hsl(214, 72%, 33%);
}

.hero-text {
  color: var(--white);
  font-size: var(--fs-5);
  margin-bottom: 40px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}




/*-----------------------------------*\
 * #PACKAGE
\*-----------------------------------*/

.package {
  padding: 10px;
  background: var(--secondarybg-color);
  margin-top: 20px;
  border-radius: 30px;
}

.px-container {
  display: flex;
  flex-direction: column;
}


.package-list {
  margin-bottom: 40px;
}

.package-list>li:not(:last-child) {
  margin-bottom: 30px;
}

.package-card {
  background: var(--cultured);
  overflow: hidden;
  border-radius: 15px;

}

.package-card .card-banner {
  height: 250px;
}

.package-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card .card-content {
  padding: 30px 20px;
}

.package-card .card-title {
  margin-bottom: 15px;
}

.package-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta-list {
  background: var(--white);
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  border-radius: 50px;
}

.card-meta-item {
  position: relative;
}

.card-meta-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -1px;
  bottom: 4px;
  width: 1px;
  background: hsla(0, 0%, 0%, 0.3);
}

.meta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  color: var(--black-coral);
  font-size: var(--fs-8);
}

.meta-box>ion-icon {
  color: var(--bright-navy-blue);
  font-size: 13px;
}

.package-card .card-price {
  background: var(--united-nations-blue);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.package-card .card-price .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}

.package-card .card-price .reviews {
  font-size: var(--fs-5);
}

.package-card .card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 14px;
}

.package-card .card-rating ion-icon:last-child {
  color: hsl(0, 0%, 80%);
}

.package-card .price {
  font-size: var(--fs-2);
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-800);
  margin-bottom: 20px;
}

.package-card .price span {
  font-size: var(--fs-7);
  font-weight: initial;
}

.package .btn {
  margin-inline: auto;
}




.hero3 {
  background: url(../pix/support.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.7);
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
}

.hero4 {
  background: url(../pix/abt22.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.7);
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
}


/* inner pages */

.readernav {
  border: none;
  display: flex;
  justify-content: flex-start;
}

.readerhead {
  background: var(--primary-color2);
  display: flex;
  justify-content: flex-start;
  padding: 7px 15px;
}

.reader-home {
  border: var(--secondary-color) 1px solid;
  padding: 8px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
}

.reader-home i {
  font-size: 20px;
}


/*Registration PAGE*/

.regbody {
  background: var(--secondarybg-color);
  background-size: cover;
  background-attachment: fixed;
  background-clip: border-box;
  background-repeat: no-repeat;
}

.log-put {
  background: #11111198;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.log-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  z-index: 10;
  padding-bottom: 100px;
}

.log-cont {
  width: 420px;
  background: transparent;
  border: #d6cfcf 2px solid;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 20px rgba(0, 0, 0);
  border-radius: 10px;
  padding: 30px 40px;
  margin-top: 100px;
}

.log-cont h1 {
  font-size: 36px;
  text-align: center;
}

.log-cont .log-input {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}

.log-input input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid #ffffff81;
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}

.log-input input::placeholder {
  color: #fff;
}

.log-input i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}


#snh {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
}

.log-cont .remember-password {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin: -15px 0 15px;
}

.remember-password label input {
  accent-color: #fff;
  margin: 5px;
}

#sex {
  margin-top: 15px;
}

#sex span {
  font-size: 17px;
  font-weight: 700;

}

.remember-password a {
  color: #fff;
  text-decoration: none;
}

.remember-password a:hover {
  text-decoration: underline;
}

.log-cont .btn {
  width: 100%;
  height: 45px;
  color: #111111;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 0 10px #111111ee;
  font-size: 18px;
  font-weight: 700;
}

.log-cont .register-link {
  font-size: 15px;
  margin: 20px 0 15px;
  text-align: center;
}

.register-link p a {
  text-decoration: none;
  color: #fff;
  font-weight: 900;
}

.register-link p a:hover {
  text-decoration: underline;
}

.infomay {
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  margin-top: -70px;
}

.log-input textarea {
  width: 90%;
  height: 70px;
  background: transparent;
  border-radius: 10px;
  color: #fff;
  outline: none;
  font-size: 16px;
  padding: 10px;
  resize: none;
}

.log-input select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid #ffffff81;
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 10px;
}

.log-input select option {
  color: #0c0b0b;
}

::-webkit-scrollbar {
  width: 10px;
}

.log-input textarea::placeholder {
  color: #fff;
  text-align: center;
  margin-top: b;
}

.cptch {
  background: #08ad03;
  color: #ffffff;
  position: absolute;
  left: 30%;
  top: -10px;
  padding: 3px 25px;
  font-size: 13px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/*DEPOSIT AND WITHDRAWAL PAGE*/
.section-title {
  margin: 20px 0;
  text-align: center;
}

.deposit-box {
  padding: 5px;
  display: flex;
  justify-content: center;

}

.copyaddress {
  background: #016bf5;
  color: #edeffd;
  padding: 5px 20px;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  outline: none;
  cursor: pointer;
  margin-top: -20px;
}

.form-container {
  width: 600px;
  border: #01edf5 3px solid;
  padding: 5px;
  margin: auto;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
}

.forplanx {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.form-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.withdrawalxx-mthd {
  background: #016bf5;
  width: 90%;
  padding: 10px;
  font-size: 20px;
  text-align: center;
  border-radius: 5px;
}

.withdrawalxx-detxxx {
  display: none;
}

#pmethodxxx {
  margin: 40px 0;
}

#theaddress {
  width: 100%;
  background: #003cf1;
  color: #e6ff03;
  font-size: 15px;
}

#methodz {
  padding: 10px 15px;
  width: 90%;
  background: #016bf5;
  font-size: 16px;
  outline: none;
  border-radius: 10px;
}

#methodz option {
  background: #38a95a;
  font-size: 20px;

}

.form-container form input {
  width: 90%;
  background: #d3e3e3;
  padding: 10px;
  margin: 15px 0;
  font-size: 20px;
  border-radius: 7px;
  color: #0d0d0d;
  outline: none;
  border: 2px #0d0d0d solid;
}

#smxbtn {
  margin: auto;
  color: #f7f9ff;
  font-size: 19px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  padding: 10px 35px;
  box-shadow: #fff 2px 3px 5px;
  cursor: pointer;
}

.innerbody {
  padding-top: 50px;
}





.deposit-page {
  height: 90vh;
}

.deposit-page h3,
.deposit-page h2 {
  text-align: center;
  margin: 10px 0;
}

.notedeposit {
  font-size: 12px;
  color: #00ffff;
  font-weight: 600;
  text-align: center;
  border: #00ffff 3px double;
  margin: 14px 0;
}

.deposit-page-cont {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;


}


.deposit-page-wrapperx {
  height: 100%;
  border: var(--primary-color2) 2px solid;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

}

.wrapperx2 {
  height: auto;
}

.wrapperx2 h3 {
  font-size: 15px;
  margin: 5px 0;
}

.deposit-page-wrapperx div {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deposit-page-wrapperx div button,
.deposit-page-wrapperx div select {
  width: 600px;
  background: var(--secondarybg-color);
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  border: none;
  outline: none;



}

.deposit-page-wrapperx div button i {
  margin: 0 15px;
  font-size: 20px;
}

.deposit-page-wrapperx div input,
.deposit-page-wrapperx div p {
  background: #f5fef6;
  color: #000;
  margin: 6px 0;
  padding: 6px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  width: 600px;
  border: none;
  outline: none;
}


@media(max-width: 1090px) {

  /*video section*/

  .video-section {
    margin-top: 0px;
    height: 40vh;
    background: #131313;
  }

  .deposit-page-wrapperx div {
    width: 100%;

  }

  .deposit-page-wrapperx div button,
  .deposit-page-wrapperx div a {
    width: 98%;



  }

  .deposit-page-wrapperx div input,
  .deposit-page-wrapperx div p {

    padding: 10px;
    font-size: 14px;
    width: 98%;
  }
}













@media(max-width: 500px) {
  .form-container {
    width: 100%;

  }


}

/* review page*/

.planx-container {
  width: 90%;
  margin: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: auto;
}

.theplan {
  border: var(--primary-color2) 2px solid;
  width: 280px;
  height: fit-content;
  border-radius: 10px;
  padding: 5px;
}

@media(max-width:420px) {
  .planx-container {
    width: 100%;

  }

  .theplan {
    width: 97%;
  }
}

.theplan h2 {
  margin-top: -5px;
}

.theplan h3 {
  margin: -2px 0;
}

.theplan span {
  margin: auto;
  width: 40px;
  height: 40px;
  background: var(--primary-color2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  border-radius: 20px;
  margin-top: -10px;
}

.theplan p {
  width: 100%;
  border: var(--secondary-color) 1px solid;
  margin: 2px 0;
  height: 40px;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.planbal {
  color: var(--background-color);
  background: var(--secondary-color);
  border: none;
  font-weight: 600;
  justify-content: center;

}

.theplan input {
  width: 100%;
  background: var(--secondary-color);
  padding: 7px;
  border: none;
  outline: none;
  border-radius: 10px;
}

.theplan button {
  background: var(--primary-color2);
  color: var(--secondary-color);
  font-weight: 500;
  width: 100%;
  width: 100%;
  border: none;
  outline: none;
  margin: 5px 0;
  height: 40px;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;

}









.rev-container {
  width: 100%;

}

.rev-row {
  border: #daa520 3px solid;
  padding: 10px;
  border-radius: 7px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rev-row span {
  background: #414652;
  padding: 10px 15px;
  border-radius: 5px;
  width: auto;
  box-shadow: #ededed 2px 3px;
}

/*INVESTMENT HISTORY*/

.history-headxxx {
  width: 100%;

}


.history-box {

  width: 100%;


}

.history-box a {
  margin-bottom: 30px;
}

.historyxx-container {
  overflow: auto;

}

.history-box h1 {
  margin-bottom: 0.8rem;
  text-align: center;
}

.history-box table {
  background-color: var(--color-white);
  width: 100%;
  padding: var(--card-padding);
  text-align: center;
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  transition: all 0.3s ease;

}

.history-box table:hover {
  box-shadow: none;
}

main table tbody td {
  height: 2.8rem;
  border-bottom: 1px solid var(--color-light);
  color: var(--color-dark-variant);
}

main table tbody tr:last-child td {
  border: none;
}

.history-box a {
  text-align: center;
  display: block;
  margin: 1rem auto;
  color: var(--color-primary);
}

.invhistorysidex {
  margin-top: 60px;
  padding: 10px;
}

/**/

/*More Page*/


.options-box {
  width: 100%;
  padding: 10px;
}

.options-container {
  margin: auto;
  width: 95%;
  display: flex;
  flex-direction: column;

}

.options-container a {
  text-decoration: none;
  font-size: 15px;
  color: #e7e7e7;
}

.profile-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-box .profile-container {
  background: #3d3f41;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 10px;
  margin: 30px 0;
  box-shadow: #fcfdfd 2px 3px 10px;
}

.profile-box .profile-container .profile-pic {
  width: 120px;
  height: 120px;
  background: url(../pix/profile.png);
  background-size: cover;
  background-position: top;
  border-radius: 30px;
}


.user-details {
  width: 100%;
  margin: 20px 0;
}

.user-details .user-details-row {
  border: #ffbb00 2px solid;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px;

}

.user-details .user-details-row p {
  font-size: 15px;
  color: #01edf5;
  display: flex;
}

.user-details .user-details-row span {
  font-size: 15px;
  color: #ffbb00;
  font-style: italic;
  margin-left: 10px;
}

.option-row {
  border: #01edf5 5px double;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  border-radius: 10px;
}


.logout-container {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}



/*mail style*/

.mail-main {
  padding: 30px 55px;
  background: #f8f9f8;
}

.mail-main .wrappermail {
  width: 500px;
  background: #09ad0358;
  height: 100vh;
}

.contactSection {
  margin-top: 2em;
}

.contactformContainer {
  display: flex;
  flex-direction: column;
  order: 1;
  padding: 30px 10px;
}

.contactPic {
  order: 0;
  width: 150px;
  background-color: rgba(241, 241, 241, .05);
  border-top-left-radius: 20%;

}

.contactPic img {
  width: 100%;
}

.contactForm div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contactInput {
  width: 100%;
  font-size: 1rem;
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 20px;
  border: none;
  outline: none;
  border: 2px solid var(--white);
  background-color: transparent;
  resize: none;
  color: var(--white);
}

.contactInput::placeholder {
  color: var(--lightgrey);
  text-transform: capitalize;
}

.sendbtn {
  width: 100%;
  height: 45px;
  color: #111111;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 0 10px #111111ee;
  font-size: 18px;
  font-weight: 700;

}
























/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/






/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {


  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }

  .section-text {
    margin-bottom: 40px;
  }

  .card-text {
    --fs-5: 15px;
  }






  /**
   * POPULAR
   */



}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {




  /**
   * REUSED STYLE
   */



  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }








  /**
   * PACKAGE
   */

  .package-list {
    margin-bottom: 50px;
  }

  .package-list>li:not(:last-child) {
    margin-bottom: 40px;
  }

  .package-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }

  .package-card .card-banner {
    height: 100%;
  }

  .package-card .card-content {
    padding: 40px;
  }

  .package-card .card-price {
    display: grid;
    place-content: center;
  }

  .package-card .card-price .wrapper {
    margin-bottom: 15px;
  }









}
























@media(max-width:950px) {
  nav {
    position: fixed;
    right: -50px;
    top: 0;
    height: 97vh;
    display: none;
    flex-direction: column;
    background: var(--secondary6);
    transition: right 0.5s ease-in-out;
    z-index: 99;

  }

  header {
    padding: 5px;
    top: 10px;
    width: 97%;
    left: 50%;
    transform: translateX(-50%);

  }



  .fortopx {
    display: block;
    padding: 5px;
  }

  .fortopx2 {
    display: none;
  }

  .prevbtn {
    display: flex;
  }

  .menu-btn,
  .close-menu-btn {
    display: flex;
  }



  .logo-holder {
    width: fit-content;
  }

  .logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }

  .logo-holder span {
    font-size: 15px;
  }


}

@media(max-width:800px) {
  body {
    padding: 5px;
    margin: 0;
  }

  /*FIRST SECTION*/





  .factionbtn-holder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  /* 
  .fbtn{
    
    background: var(--secondary3x);
    border-radius: 20px;
    padding: 5px 35px;
    box-shadow: var(--secondary-color) 1px 1px 3px;
    border: var(--primary-color2) 2px solid;
  }

  .sxbtn{
      
    background: var(--secondary2);
    border-radius: 20px;
    padding: 5px 35px;
    color: var(--secondary-color);
    border: var(--primary-color2) 2px solid;
  } */


  .about-box {
    width: 100%;
    margin-top: 5px;
    padding: 5px;
    height: auto;
    padding: 15px 10px;
  }






  .about-box .aboutimg {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

  }

  .about-box .aboutimg img {
    width: 100%;
    height: 500px;
    object-fit: cover;

  }

  .hero-text {
    width: 100%;

  }

  .hero-text h1 {
    font-size: 2rem;
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: left;
    color: var(--extra-light);
  }

  .about-box button {
    margin-right: 0;
  }

  .why-box {
    padding: 10px;

  }

  .why-box .why-box-container {
    width: 100%;
    background: #000000bb;
    padding: 20px;
    border-radius: inherit;
  }


  .plan-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .plan-container img {
    width: 100%;
  }

  .plans {

    gap: 50px;

  }

  /*ref box*/

  .referral-box {
    width: 100%;
    padding: 10px;
  }

  .referral-box h1 {
    font-size: 2rem;
  }

  .referral-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;


  }

  .referral-container img {
    width: 100%;
  }

  .referral-text {
    width: 100%;

  }
}



@media screen and (max-width: 720px) {

  .reviews {
    height: 90%;
    width: 90%;
  }

  .reviews .review {
    flex-direction: column;
  }

  .reviews .review img {
    height: 320px;
    width: 97%;

  }

  .reviews .review p {
    font-size: 13px;
  }

}


@media(max-width:400px) {
  .experience-card {

    width: 95%;

  }

  .process-box {

    width: 100%;

    padding: 20px 5px;


  }


}