@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* React Select Package */

* {
  /* font-family: 'Inter', sans-serif; */
  font-family: 'Rubik', sans-serif;
}

.roboto {
  font-family: 'Roboto', sans-serif !important;
}

/* Sub Header */
.sub_header {
  background: linear-gradient(to right, #00000000, #c9b4b467),
    url('../../public/images/sub-header-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.dark .sub_header {
  background: linear-gradient(to right, #0000003f, #0000002f),
    url('../../public/images/sub-header-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

/* Toast Message */
.toast-message {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  padding: 14px 28px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px 0px #00000050;
  z-index: 99999 !important;
  overflow: hidden;
}

.toast-message .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #ddd;
  width: 100%;
  animation: toastLine 3.4s linear; /* Use the animation, change the duration as needed */
}

@keyframes toastLine {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

.toast-message.success {
  background: #16a34a;
  color: white;
}

.toast-message.error {
  background: #dc2626;
  color: white;
}

/* ----------------------------------
Css Profile Edit Dropdown
Author: iModDesign
Version: 1.0
------------------------------------ */

.profile-wrapper {
  width: 200px;
  position: relative;
}
.profile-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 10px;
  border-color: #333 transparent transparent;
  border-width: 6px;
  border-style: solid;
}
.profile-wrapper::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 10px;
  border-color: #eee transparent transparent;
  border-width: 6px;
  border-style: solid;
}
.profile-wrapper:hover::after {
  border-color: #111 transparent transparent;
}

.profile {
  padding: 10px;
  border: 1px solid #000;
  border-radius: 3px;
  box-shadow: 0 1px 0 #555 inset, 0 1px 7px #111;
  background: -webkit-linear-gradient(#222, #111);
}
.profile:hover {
  border-radius: 0px;
  cursor: pointer;
  background: -webkit-linear-gradient(#1f1f1f, #0a0a0a);
}
.profile .name {
  font-size: 12px;
  color: #fff;
  line-height: 26px;
  margin-left: 10px;
}
.profile .name:hover {
  color: #0088cc;
}
.profile img {
  width: 25px;
  display: inline;
  float: left;
  border: 1px solid #111;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset;
}

/* hide profile-menu */
.profile-menu {
  position: absolute;
  top: 100%;
  padding: 5px;
  width: 100%;
  left: 0%;
  background: -webkit-linear-gradient(#1f1f1f, #0a0a0a);
  display: none;
  clear: both;
}
.profile-menu li {
  font-size: 12px;
  margin: 0;
  padding: 10px 4px;
}
.profile-menu li a {
  color: #abd9ff;
}

.profile-menu li:hover > a {
  color: #ffffff;
}

.profile-menu li:hover {
  border-left: 1px solid #111;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  border-top: 1px solid #111;
}

/* hover profile show profile-menu */
.profile:hover .profile-menu {
  display: block;
}

.ytp-title {
  display: none !important;
}

/* sun editor */
.se-resizing-bar.sun-editor-common.se-resizing-none {
  display: none;
}

#suneditor_editor {
  height: fit-content;
}

.se-wrapper-inner.se-wrapper-wysiwyg.sun-editor-editable.se-read-only
  p:nth-of-type(1) {
  display: none;
}

.se-container {
  height: fit-content !important;
  max-height: fit-content !important;
}

.sun-editor {
  border: none !important;
}

.sun-editor * {
  font-family: 'Inter', sans-serif !important;
}

.se-wrapper-inner.se-wrapper-wysiwyg.sun-editor-editable.se-read-only {
  padding: 0px;
}

/* testmonials */
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
}
:root {
  --mon: 'Montserrat', sans-serif;
  --blue: #8a6bff;
  --darkblue: #0a0a36;
}
.container {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}
.sec-title {
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
}
.sec-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: #000;
}
.sec-title h2 {
  font-size: 60px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--blue);
}
.sec-title p {
  font-size: 18px;
  line-height: 28px;
}

/* testmonial */
body {
  background: aliceblue;
}

.gtco-testimonials {
  position: relative;
  margin-top: 30px;
}
.gtco-testimonials h2 {
  font-size: 30px;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}
.gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .owl-dots {
  text-align: center;
}
.gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #01b0f8;
  margin: 0 5px;
}
.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-testimonials .owl-dots .active span {
  background: #01b0f8;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.gtco-testimonials .card {
  background: #fff;
  box-shadow: 0 8px 30px -7px #c9dff0;
  margin: 0 20px;
  padding: 0 10px;
  border-radius: 20px;
  border: 0;
}
.gtco-testimonials .card .card-img-top {
  max-width: 60px;
  border-radius: 50%;
  margin: 15px auto 0;
  box-shadow: 0 8px 20px -4px #95abbb;
  width: 60px;
  height: 60px;
}
.gtco-testimonials .card h5 {
  color: #01b0f8;
  font-size: 21px;
  line-height: 1.3;
}
.gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666666;
}
.gtco-testimonials .card p {
  font-size: 18px;
  color: #555;
  padding-bottom: 15px;
}
.gtco-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}
.gtco-testimonials .center {
  opacity: 1;
}
.gtco-testimonials .center h5 {
  font-size: 24px;
}
.gtco-testimonials .center h5 span {
  font-size: 20px;
}

.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 70px;
  width: 70px;
}

@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
  }
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}
.owl-carousel button.owl-dot {
  outline: 0;
}

.section_intro {
  text-align: center;
}

.footer_column {
  grid-column: span 2 / span 2;
}

.footer_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer_description {
  width: fit-content;
}

.offer_desc {
  width: 30%;
}

.hero_left {
  width: 100%;
}

.hero_right {
  width: 45%;
}

.service_price {
  font-size: 24px;
  line-height: 28px;
}

.get_started_btn,
.gradient_color {
  background: linear-gradient(to right, #db2777, #6d28d9);
}

.get_started_btn:hover {
  opacity: 0.95;
}

.plan_card {
  border: 1px solid #d1d5db;
}

.gradient_top_border {
  position: relative;
  padding-top: 8px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.gradient_top_border::before {
  content: '';
  position: absolute;
  top: 0;
  left: -32px;
  width: calc(100% + 64px);
  height: 4px; /* Thickness of the top border */
  background: linear-gradient(to right, #db2777, #6d28d9);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.register_transfer_btn_active_color {
  background: linear-gradient(to right, #db2777, #6d28d9);
  color: white;
}

.register_transfer_btn_color {
  background: #2563eb;
  color: white;
}

.register_transfer_btn_container {
  padding: 2px;
}

.auth_code_search_container {
  width: 100%;
}

.search_box_title {
  color: transparent;
  background-clip: text;
}

.nav_link {
  color: white;
}

.nav_link:hover {
  color: #e2e8f0;
}

.horizontal_divider {
  display: none;
}

.header_bottom_desktop {
  display: none;
}

.header_bottom_mobile {
  display: flex;
}

.currency_dropdown {
  display: none;
}

.header_bottom_mobile_container {
  display: block;
}

.header_bottom_desktop_container {
  display: none;
}

.header_bottom_mobile_container .currency_dropdown {
  display: flex;
  background-color: white;
  color: black;
  width: fit-content;
  z-index: 99999999;
}

.login_icon,
.signup_icon {
  display: none;
}

.header_logo {
  width: 180px;
  height: auto;
}

.mobile_nav_toggle {
  display: block;
}

.plan_container {
  gap: 32px;
}

.input-container {
  position: relative;
  width: 100%;
}

.floating-input {
  width: 100%;
  padding: 12px 14px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.floating-label {
  position: absolute;
  left: 12px;
  top: 60%;
  transform: translateY(-70%);
  font-size: 16px;
  color: #888;
  pointer-events: none;
  transition: 0.2s ease all;
  background: white;
  padding: 0 4px;
}

/* Move label up when input is focused or has text */
.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
  top: 6px;
  font-size: 12px;
  color: #007bff;
}

@media (min-width: 768px) {
  .section_intro {
    text-align: left;
  }

  .footer_column {
    grid-column: span 2 / span 2;
  }

  .footer_grid {
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .offer_description {
    width: 60%;
  }

  .offer_desc {
    width: 100%;
  }

  .hero_left {
    width: 55%;
  }

  .service_price {
    font-size: 30px;
    line-height: 36px;
  }

  .auth_code_search_container {
    width: 40%;
  }

  .header_bottom_desktop {
    display: flex;
  }

  .header_bottom_mobile {
    display: none;
  }

  .horizontal_divider {
    display: block;
    width: 2px;
    height: 30px;
    background-color: #e2e8f0;
  }

  .currency_dropdown {
    display: flex;
  }

  .header_bottom_mobile_container {
    display: none;
  }

  .header_bottom_desktop_container {
    display: block;
  }

  .login_icon,
  .signup_icon {
    display: inline;
  }

  .mobile_nav_toggle {
    display: none;
  }

  .plan_container {
    gap: 16px;
  }
}

@media (min-width: 576px) {
  .header_logo {
    width: auto;
    height: 50px;
  }
}
