@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif, Arial, sans-serif;
  font-weight: 400;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

article {
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:visited {
  color: inherit;
}

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

ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

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

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  color: #000;
  font-size: 24px;
}

b, strong {
  font-weight: 400;
  font-size: 14px;
}

p {
  margin: 0 0 0;
}

blockquote {
  margin: 0;
  padding: 0 1em;
  border-left: 4px solid #ccc;
  color: #666;
  font-style: italic;
}

a:hover, button:hover {
  text-decoration: underline;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.form-control {
  font-size: 14px;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #bababa;
  outline: none;
}

.site-container {
  max-width: 1920px;
  padding: 0 60px;
  margin: auto;
}

.site-logo {
  padding: 8px 15px;
  max-width: 276px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.site-logo img {
  max-width: 220px;
}

.main-menu .main-item {
  display: flex;
  list-style: none;
  text-decoration: none;
  justify-content: end;
  align-items: center;
}
.main-menu .main-item .nav-item {
  margin-left: 10px;
  position: relative;
}
.main-menu .main-item .nav-item > a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 10px;
}
.main-menu .main-item .nav-item .nav-link .arrow svg {
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
}
.main-menu .main-item .nav-item .sub-menu {
  display: none;
}
.main-menu .main-item .nav-item .help-icons svg {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

#masthead {
  padding: 20px 0;
  background-color: #F09204;
  padding: 20px 0;
  background-color: #F09204;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 99999;
}
#masthead ul.icon-list-items {
  padding: 10px 30px;
  border: 1px dashed rgba(0, 0, 0, 0.5411764706);
  border-radius: 0;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  list-style: none;
}
#masthead .site-branding {
  width: 100%;
}
#masthead span.icon-list-icon svg {
  fill: #EC1D29;
  transition: fill 0.3s;
  height: 15px;
  width: 15px;
  position: relative;
  top: -1px;
}
#masthead li.icon-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#masthead li.icon-list-item span.icon-list-text {
  font-size: 13px;
  line-height: 23px;
  color: #fff;
  font-family: "Poppins", serif;
}
#masthead .site-branding a {
  outline: none;
}

header + main {
  margin-top: 80px;
}

button[type=submit] {
  background: #f09204;
  border: none;
  font-size: 14px;
  color: #fff;
  width: 100%;
  padding: 10px 12px;
  border-radius: 0;
}
button[type=submit]:hover {
  background: #cc810f;
  transition: 0.5s ease all;
}

.btn:hover {
  background: #cc810f;
  border: none;
  font-size: 14px;
  color: #fff;
  width: 100%;
  padding: 10px 12px;
  border-radius: 0;
  text-decoration: none;
  transition: 0.5s ease all;
}

.bannerSection {
  height: calc(100vh - 80px);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
.bannerSection .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.bannerSection .ekit-wid-con {
  padding: 130px 0;
  max-width: 600px;
  padding-left: 30px;
  margin-right: auto;
  color: #fff;
  position: relative;
  z-index: 99;
}
.bannerSection .ekit-wid-con h3.section-subtitle {
  color: #f09204;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 25px 0;
  position: relative;
}
.bannerSection .ekit-wid-con h3.section-subtitle::before {
  content: "";
  background-color: #f09204;
  width: 50px;
  height: 1px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -4px;
}
.bannerSection .ekit-wid-con h2.heading--title {
  color: #FFFFFF;
  margin: 0 0 30px 0;
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
}
.bannerSection .black-bg {
  padding-top: 230px;
  padding-bottom: 230px;
  padding-left: 80px;
  padding-right: 60px;
  background-color: rgba(0, 0, 0, 0.4392156863);
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.section-three h2.heading--title {
  color: #000;
  margin-bottom: 15px;
}

.heading__description p {
  color: #F9F9FB;
  font-family: "Poppins";
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5em;
  margin: 0;
}

.client-imgs {
  display: flex;
}
.client-imgs img {
  border-style: solid;
  border-width: 3px;
  border-color: #FFFFFF;
  border-radius: 50%;
}
.client-imgs img:nth-child(2),
.client-imgs img:nth-child(3),
.client-imgs img:nth-child(4),
.client-imgs img:nth-child(5) {
  margin-left: -35px;
}

.lets-begin {
  background: #fff;
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  max-width: 991px;
  margin: auto;
  padding: 20px 20px;
  border-radius: 10px;
}
.lets-begin .form-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  justify-content: start;
}
.lets-begin input, .lets-begin textarea, .lets-begin select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c4c4c4;
  border-radius: 0;
}
.lets-begin .subheading {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}
.lets-begin label {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 5px;
}
.lets-begin .input-group-text {
  height: 50px;
  border-radius: 0;
}
.lets-begin .form-group {
  width: 100%;
}
.lets-begin small {
  font-size: 13px;
  margin-top: 10px;
  display: inline-block;
  font-weight: 400;
}
.lets-begin small a {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
}

.jsr_hlp_drp_dwn2 {
  display: none;
  position: absolute;
  top: 36px;
  width: 320px;
  right: 0;
  padding: 15px 12px;
  background: #fff;
  font-size: 14px;
}
.jsr_hlp_drp_dwn2 .new_hlp_contry_contact, .jsr_hlp_drp_dwn2 .office_text, .jsr_hlp_drp_dwn2 .jsr_contact_detail {
  margin-bottom: 10px;
}
.jsr_hlp_drp_dwn2 .jsr_hlp_instant a {
  color: #cc810f;
  font-weight: 500;
}

.help-icons {
  padding: 10px;
}
.help-icons:hover ~ .jsr_hlp_drp_dwn2,
.help-icons ~ .jsr_hlp_drp_dwn2:hover {
  display: block;
}

.search-result-container {
  margin-top: 100px;
}

.search_key {
  margin-top: 15px;
  padding: 10px;
  background-color: #ffffff;
  border-left: 2px solid #f09204;
  border-radius: 0 5px 5px 0;
}
.search_key strong {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.filter-item {
  display: inline-block;
  background-color: #f09204;
  color: #fff;
  padding: 5px 10px;
  margin: 4px 6px 4px 0;
  border-radius: 20px;
  font-size: 12px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-item .close-icon {
  margin-left: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  display: inline-block;
}
.filter-item .close-icon:hover {
  color: #ffcccc;
}
.filter-item:hover {
  background-color: #c57906;
}

.profile-result {
  margin-top: 30px;
}
.profile-result .matches-not-found {
  text-align: center;
}
.profile-result .outer-content {
  display: block;
}

.search-found p {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}
.search-found strong {
  font-weight: 500;
}

.user-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}
.user-profiles .outer-content .inner-wrap {
  position: relative;
}
.user-profiles .outer-content .wrap-image {
  position: relative;
  background: #8a6328;
}
.user-profiles .outer-content .wrap-image .card-img-top {
  height: 300px;
  -o-object-fit: cover;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.user-profiles .outer-content .wrap-image::before {
  content: "";
  background-color: rgba(36, 34, 34, 0.3019607843);
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
}
.user-profiles .outer-content .no-photo-placeholder {
  height: 300px;
}
.user-profiles .outer-content .no-photo-placeholder::before {
  content: "";
  background-color: rgba(36, 34, 34, 0.3019607843);
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
}
.user-profiles .outer-content .card-text {
  position: absolute;
  right: 0;
  bottom: 0px;
  left: 0;
  padding: 20px 10px;
}
.user-profiles .card {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.user-profiles .card:hover .wrap-image {
  position: relative;
}
.user-profiles .card:hover .wrap-image::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7411764706);
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
}
.user-profiles .card .card-body p {
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
}
.user-profiles .view-profile {
  text-align: center;
}
.user-profiles .view-profile a {
  text-align: center;
  font-size: 13px;
  text-decoration: underline;
}
.user-profiles #toggleLink {
  color: blue;
  cursor: pointer;
  text-decoration: underline;
}
.user-profiles .profile-info-list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  color: #fff;
}
.user-profiles .profile-info-list li {
  position: relative;
  margin: 0;
  font-size: 12px;
  color: #ffffff;
  margin-right: 10px;
}
.user-profiles .profile-info-list li::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: #999;
}
.user-profiles .profile-info-list li:last-child::after {
  content: "";
}
.user-profiles .card-img-top {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.user-profiles .no-photo-placeholder {
  height: 300px;
  background-color: #eee;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: italic;
  font-size: 16px;
}
.user-profiles .card-body {
  height: 170px;
  padding: 15px;
}
.user-profiles .card-title {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: capitalize;
}
.user-profiles .card-title a {
  text-decoration: none;
  color: inherit;
}
.user-profiles .card-text p {
  margin: 0 0 6px;
  font-size: 14px;
  color: #555;
}
.user-profiles .card-footer {
  background-color: #f9f9f9;
  padding: 12px 15px;
  text-align: center;
}
.user-profiles .card-footer .btn {
  font-size: 14px;
  padding: 6px 14px;
}

.pagination-wrapper {
  margin-top: 30px;
  text-align: center;
}
.pagination-wrapper .page-numbers {
  display: inline-block;
  margin: 0 5px;
  background-color: #f5f5f5;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  border-radius: 0;
  padding: 10px 20px;
}
.pagination-wrapper .page-numbers.current, .pagination-wrapper .page-numbers:hover {
  background-color: #f09204;
  color: #fff;
}

.sticky-button {
  display: none;
}

.search_filter {
  background: #fff;
  padding: 15px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
}
.search_filter > b {
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
  color: #333;
  font-weight: 500;
}
.search_filter .reset {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}
.search_filter label {
  font-weight: 500;
  color: #000000;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}
.search_filter .form-group {
  margin-bottom: 12px;
}
.search_filter .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 6px 10px;
  font-size: 14px;
  margin-bottom: 0;
}
.search_filter .age,
.search_filter .height-range {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search_filter .age span,
.search_filter .height-range span {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.search_filter input[type=radio] {
  margin-right: 6px;
  margin-left: 12px;
}
.search_filter input[type=radio]:first-child {
  margin-left: 0;
}
.search_filter .btn-primary {
  background-color: #f09204;
  border-color: #f09204;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 15px;
}
.search_filter .form-group .wrap-input label {
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.search_filter .form-group .wrap-input .inner-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.search_filter .form-group .wrap-input .inner-wrap input[type=radio] {
  display: none;
}
.search_filter .form-group .wrap-input .inner-wrap input[type=radio]:checked + label {
  background-color: #f09204;
  color: #fff;
  border-color: #f09204;
}
.search_filter .form-group .wrap-input .inner-wrap label {
  display: block;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}
.search_filter .form-group .wrap-input .inner-wrap label:hover {
  border-color: #f09204;
}

header + section {
  margin-top: 140px;
}

.site-title {
  font-size: 24px;
  font-weight: 500;
}

.sticky-mobile {
  display: block;
}

.user-profile {
  margin-top: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
.user-profile .basic-information-section {
  display: flex;
  align-items: normal;
  gap: 15px;
  background: #fff;
  padding: 15px;
}
.user-profile .basic-information-section .info-about {
  width: 70%;
}
.user-profile .basic-information-section .info-about .activity ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 0;
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}
.user-profile .basic-information-section .info-about .basic-detail {
  padding-top: 15px;
}
.user-profile .basic-information-section .info-about .basic-detail .card-text .card-title {
  font-weight: 400;
  font-size: 24px;
}
.user-profile .basic-information-section .info-about .basic-detail .profile-info-list {
  margin-top: 10px;
}
.user-profile .basic-information-section .info-about .basic-detail .profile-info-list li {
  margin-bottom: 5px;
  font-size: 14px;
}
.user-profile .basic-information-section .avtar-image {
  width: 200px;
  height: 200px;
  background: #ddd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-profile .basic-information-section .profile-photo {
  display: flex;
  gap: 15px;
  width: 320px;
}
.user-profile .basic-information-section .profile-photo .single_image {
  width: 310px;
}
.user-profile .basic-information-section .profile-photo .single_image img {
  width: 100%;
}
.user-profile .basic-information-section .profile-photo img {
  cursor: pointer;
}
.user-profile .basic-information-section .profile-photo .horoscope-gallery {
  width: 40px;
  display: block;
}
.user-profile .basic-information-section .profile-info-list .gallery-item {
  text-align: center;
  width: 100%;
  max-width: 70px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-profile .basic-information-section .horoscope-gallery {
  display: grid;
  margin-top: 0;
  gap: 0;
}
.user-profile .basic-information-section .horoscope-gallery .gallery-item {
  display: inline-block;
  text-align: center;
  width: auto;
  box-shadow: none;
  border-radius: 0;
  height: 60px;
}
.user-profile .basic-information-section .horoscope-gallery .gallery-item img {
  width: 100%;
  height: 60px;
}

.site-header span.arrow {
  display: none;
}

/* Thumbnails inside modal */
.image-modal {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.image-modal .modal-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.image-modal img {
  max-width: 500px;
  border-radius: 5px;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}
.image-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
  cursor: pointer;
  z-index: 10000;
}
.image-modal .prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 24px;
  color: white;
  padding: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translateY(-50%);
  background: rgba(242, 148, 7, 0.76);
  border-radius: 50%;
  left: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-modal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 24px;
  color: white;
  padding: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translateY(-50%);
  background: rgba(242, 148, 7, 0.76);
  border-radius: 50%;
  right: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail-strip {
  display: flex;
  overflow-x: auto;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  justify-content: center;
  gap: 5px;
}
.thumbnail-strip img {
  height: 60px;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 5px;
}
.thumbnail-strip img.active {
  border-color: white;
}

.section.section-contact {
  display: flex;
  margin-top: 30px;
  gap: 15px;
  margin-bottom: 60px;
}
.section.section-contact .verified-box .verified-header i {
  color: blue;
}
.section.section-contact .verified-box .verified-link {
  color: #f09204;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}
.section.section-contact .right-content {
  background-color: #fff;
  padding: 12px;
  width: calc(100% - 300px);
}
.section.section-contact .right-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 15px;
  margin-top: 15px;
}
.section.section-contact .right-content .profile-block p strong {
  font-weight: 500;
  font-size: 14px;
}
.section.section-contact .sidebar {
  background-color: inherit;
  box-shadow: none;
  padding: 0;
}
.section.section-contact .sidebar .verified-box {
  background-color: #fff;
  padding: 15px;
}

#email-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
#email-popup .inner-pop {
  max-width: 520px !important;
  width: 100% !important;
  background: #fff;
  padding: 30px 18px;
  margin: 100px auto;
  position: relative;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, #f2cf73);
  top: 150px;
}
#email-popup .inner-pop label {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
}
#email-popup h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  color: #ff9900;
}
#email-popup button {
  padding: 15px 20px;
  background: #f09204;
  color: #fff;
  width: 100%;
  margin-top: 15px;
  transition: 0.5s;
  font-size: 14px;
  text-decoration: none;
}
#email-popup button:hover {
  background: #de911c;
}
#email-popup input[type=text], #email-popup input[type=email], #email-popup input {
  width: 100%;
  padding: 10px;
}
#email-popup #email-error {
  color: red;
  margin-top: 10px;
  text-align: center;
}

.reset-password-form {
  max-width: 400px;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff, #f2cf73);
  align-items: end;
  margin: auto;
  margin-top: 120px;
  margin-bottom: 100px;
}
.reset-password-form button[type=submit] {
  padding: 15px;
  text-decoration: none;
}
.reset-password-form h2 {
  text-align: left;
  font-size: 24px;
  color: #333;
  margin: 50px 0 0;
}
.reset-password-form p {
  text-align: left;
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 50px;
}
.reset-password-form .form-group {
  margin-bottom: 20px;
}
.reset-password-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}
.reset-password-form .form-group input[type=password] {
  width: 100%;
  padding: 12px;
  border-radius: 0;
  font-size: 15px;
  transition: border-color 0.3s;
  border: none;
}
.reset-password-form .form-group input[type=password]:focus {
  border-color: #0073aa;
  outline: none;
}
.reset-password-form #reset-response {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
.reset-password-form #reset-response p {
  color: red;
  text-align: center;
  margin: 0;
}
.reset-password-form #reset-response p.success {
  color: green;
}
.reset-password-form .site-logo {
  margin-left: auto;
  justify-content: end;
}

.contactTemplate .row {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.contactTemplate h1 {
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 0;
}

.underline h1 {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  font-weight: 500;
  color: #f09204;
}
.underline h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #f09204;
}

.top-footer h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  font-weight: 500;
  color: #fff;
  font-size: 20px;
}
.top-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.about-company p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.about-company img {
  max-width: 220px;
}

.site-footer .wrap-menu {
  display: flex;
  justify-content: center;
}

.footer-content {
  padding-left: 100px;
}

.wrap-menu h2 {
  color: #fff;
  font-weight: 400;
}
.wrap-menu #menu-header-menu {
  display: block;
  font-size: 14px;
  flex-wrap: wrap;
}
.wrap-menu #menu-header-menu li {
  margin-bottom: 10px;
}
.wrap-menu #menu-header-menu li a {
  color: #fff;
}

.bottom-footer .Copyright {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
}

.wrap-slider {
  position: relative;
}

.wrap-footer-logo {
  margin-bottom: 15px;
}

.closePopup {
  display: none;
}

#message-otp-send .success {
  font-size: 14px;
  text-align: center;
  color: green;
  font-weight: 600;
  margin-bottom: 15px;
}

#otp-message-verified .success {
  font-size: 14px;
  text-align: center;
  color: green;
  font-weight: 600;
  margin-bottom: 15px;
}

.resendotp {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

.myprofile.myprofile-frontend {
  padding: 0px;
}
.myprofile.myprofile-frontend .sidebar {
  width: 300px;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  border: none;
}
.myprofile.myprofile-frontend input[type=checkbox], .myprofile.myprofile-frontend input[type=radio] {
  width: unset !important;
}
.myprofile.myprofile-frontend .horoscope-gallery-wrapper .horoscope-gallery .gallery-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .myprofile.myprofile-frontend .outer-content .sidebar {
    width: 100%;
    position: unset;
  }
  .myprofile.myprofile-frontend .outer-content .content {
    width: 100%;
  }
}

.horoscope-gallery-wrapper p {
  text-align: center;
}

.dob-group {
  display: flex;
  max-width: 350px;
  gap: 5px;
  flex-wrap: wrap;
}

input[type=radio] {
  margin: 0 !important;
  width: unset !important;
}

.wrap-radio-type {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.wrap-radio-type .radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wrap-radio-type .radio-item input[type=radio] {
  margin: 0;
  width: unset !important;
}
.wrap-radio-type .radio-item label {
  cursor: pointer;
  font-size: 14px;
  margin: 0 !important;
}
.wrap-radio-type label {
  cursor: pointer;
  font-size: 14px;
  margin: 0 !important;
}

.dosh-options-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dosh-options-2 .checkbox-item {
  display: flex;
  align-items: center;
}
.dosh-options-2 .checkbox-item label {
  display: flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
}
.dosh-options-2 .checkbox-item input[type=checkbox] {
  margin: 0;
  width: unset;
}

.page-content, .entry-content, .entry-summary {
  margin: 0;
  margin-bottom: 60px;
}
.page-content p, .entry-content p, .entry-summary p {
  margin: 0 0 0;
  color: #222;
  font-size: 14px;
  line-height: 26px;
  margin-top: 15px;
}
.page-content p strong, .entry-content p strong, .entry-summary p strong {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #f09204;
}
.page-content .wp-block-list, .entry-content .wp-block-list, .entry-summary .wp-block-list {
  list-style-type: disc;
  padding-left: 20px;
}
.page-content .wp-block-list li, .entry-content .wp-block-list li, .entry-summary .wp-block-list li {
  position: relative;
  color: #000;
  position: relative;
  font-size: 14px;
  line-height: 26px;
}
.page-content .wp-block-list li::marker, .entry-content .wp-block-list li::marker, .entry-summary .wp-block-list li::marker {
  color: #F09204;
}

.entry-content .wp-block-heading {
  font-size: 16px;
  font-weight: 500;
  margin: 16px 0;
}

#jeevansathi-login-form .form-check {
  display: flex;
  gap: 10px;
}

.info-about .activity ul li {
  font-size: 14px;
}
.info-about .activity ul li button {
  padding: 0;
}

.site-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}

.kundli {
  padding-top: 60px;
}
.kundli .pk-astrology-form {
  padding: 30px 15px;
  border-radius: 0;
  box-shadow: none;
  max-width: 1200px;
}
.kundli .pk-astrology-form .pk-astrology-form-control {
  padding: 10px !important;
  font-size: 13px;
}
.kundli .pk-astrology-form .col-form-label {
  font-size: 13px;
}
.kundli .pk-astrology-form .pk-astrology-btn {
  padding: 15px;
  margin-top: 30px;
}
.kundli blockquote {
  text-align: center;
  margin: 20px 0;
  font-size: 14px;
  border: 0;
}
.kundli .pk-astrology-form legend.pk-astrology-form-label {
  font-weight: 500;
  font-size: 16px;
}
.kundli .pk-astrology-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.aboutUs {
  margin-bottom: 60px;
  margin-top: 150px;
  /* Tagline / Subheading */
  /* Main Heading */
  /* Optional decorative underline */
}
.aboutUs .outerContainer {
  display: flex;
  gap: 45px;
}
.aboutUs .leftContainer .siteTitle {
  margin: 30px 0;
}
.aboutUs .tagline {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e67e22;
  margin-bottom: 8px;
  display: block;
}
.aboutUs .left-heading,
.aboutUs .right-heading {
  font-size: 20px;
  font-weight: 400;
  color: #222;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}
.aboutUs .left-heading::after,
.aboutUs .right-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #e67e22; /* Accent color */
  margin-top: 8px;
}
.aboutUs .wp-block-heading {
  font-size: 18px;
  margin: 15px 0;
  color: #f09204;
  font-weight: 500;
}
.aboutUs b, .aboutUs strong {
  font-weight: 500;
  font-size: 15px;
  color: #f09204;
  font-style: italic;
  text-decoration: underline;
}

#form_contact-form .frm_submit.frm_flex button {
  width: 100%;
  border-radius: 0;
  padding: 10px;
  background: #f09204;
  border: none;
}

.wrap-links hr {
  width: 100px;
  height: 2px;
  background-color: #e18800;
  border: none;
  text-align: center;
  margin: 0 auto;
  margin-top: 6px;
  margin-bottom: 6px;
}

.swal2-actions .my-confirm-btn {
  border-radius: 0px !important;
  font-size: 14px !important;
  padding: 12px 30px !important;
  border-radius: 5px !important;
  background: #f09204;
}
.swal2-actions .my-cancel-btn {
  border-radius: 0px !important;
  font-size: 14px !important;
  padding: 12px 30px !important;
  border-radius: 5px !important;
  background: #cdcdcd;
}

.sharesocial {
  margin-top: 30px;
  color: #fff;
}
.sharesocial h6 {
  color: #fff;
  font-size: 18px;
}
.sharesocial ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.sharesocial ul li a {
  width: 30px;
  height: 30px;
  padding: 10px;
  background: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}
.sharesocial ul li a:hover {
  color: #fff;
}

.error-404 {
  text-align: center;
  padding: 80px 20px;
  font-family: sans-serif;
}
.error-404 .page-title {
  font-size: 60px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
.error-404 .error-message {
  font-size: 18px;
  color: #F09204;
  margin-bottom: 30px;
}
.error-404 .back-home-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #F09204;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.error-404 .back-home-btn:hover {
  background: rgb(189.8360655738, 115.4836065574, 3.1639344262);
}
.error-404 .error-search {
  margin-top: 40px;
}
.error-404 .error-search input[type=search] {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
}
.error-404 .error-search input[type=submit] {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
.error-404 .error-search input[type=submit]:hover {
  background: #F09204;
}

.bride-slider-section {
  padding: 60px 0;
}
.bride-slider-section .site-container {
  display: block;
}
.bride-slider-section .slick-slide {
  margin: 0 15px; /* Adds 15px space on left and right of each slide */
}
.bride-slider-section .slick-list {
  margin: 0 -15px; /* Offsets the added margin to maintain alignment */
}
.bride-slider-section .top-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.bride-slider-section .top-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #F09204;
  margin-bottom: 0.5rem;
}
.bride-slider-section .top-heading p {
  font-size: 1rem;
  color: #555;
  font-style: italic;
}
.bride-slider-section .card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.bride-slider-section .card .outer-content {
  display: block;
}
.bride-slider-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.bride-slider-section .card .wrap-image {
  overflow: hidden;
  border-radius: 10px;
  background: #e1e1e2;
}
.bride-slider-section .card .wrap-image img {
  display: block;
  width: 100%;
  height: 420px;
  transition: transform 0.4s ease;
  max-height: 420px;
  -o-object-fit: contain;
     object-fit: contain;
}
.bride-slider-section .card .wrap-image:hover img {
  transform: scale(1.1);
}
.bride-slider-section .card .card-title {
  border-bottom: 2px solid #cf1418;
  display: inline;
}
.bride-slider-section .card .no-photo-placeholder {
  height: 420px;
  max-height: 420px;
  background: #ededed;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bride-slider-section .card .card-text {
  padding: 0.8rem 1rem;
  height: 180px;
}
.bride-slider-section .card .card-text .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.bride-slider-section .card .card-text .profile-info-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  margin-top: 20px;
}
.bride-slider-section .card .card-text .profile-info-list li {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.4;
}
.bride-slider-section .card .view-profile {
  text-align: center;
  padding: 0.6rem;
  background: #F09204;
}
.bride-slider-section .card .view-profile a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.bride-slider-section .card .view-profile a:hover {
  text-decoration: underline;
}

.profile_placeholder {
  display: flex;
  justify-content: center;
  background: #eeeeee;
  border-radius: 50px;
  align-items: center;
  margin-right: 10px;
  height: 50px;
  width: 50px;
}

#searchInput {
  position: absolute;
  right: 0;
  left: 0;
  top: 80px;
  padding: 8px;
  z-index: 999;
  background: #f09204;
}
#searchInput input {
  width: 100%;
  padding: 7px 15px;
  border: none;
  border-radius: 0;
}

.searching-loader {
  display: none;
  width: 24px;
  height: 24px;
  border: 3px solid #ccc;
  border-top: 3px solid #402f90;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 5px auto;
  position: absolute;
  right: 10px;
  top: 10px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.suggestionList {
  position: absolute;
  right: 0;
  left: 0;
  background: #ffffff;
  top: 130px;
}
.suggestionList .card {
  border-radius: 0;
  padding: 15px;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
}
.suggestionList .outer-content .inner-wrap {
  display: flex;
  gap: 15px;
  align-items: center;
}
.suggestionList .outer-content .inner-wrap .wrap-image {
  max-width: 180px;
  height: 200px;
}
.suggestionList .outer-content .inner-wrap .wrap-image img {
  width: 100%;
}
.suggestionList .outer-content .inner-wrap .card-title {
  font-size: 20px;
}
.suggestionList .outer-content .inner-wrap img {
  max-width: 180px;
}
.suggestionList .outer-content .inner-wrap a {
  color: #f09204;
  font-weight: 400;
  display: block;
  margin-top: 10px;
  text-decoration: underline;
}

@media (max-width: 1500px) {
  .site-container {
    padding: 0 30px;
  }
}
@media (max-width: 1300px) {
  .site-container {
    padding: 0 15px;
  }
  .site-logo {
    padding: 0;
    border: none;
  }
  .bannerSection {
    background-size: cover;
  }
  .bannerSection .overlay {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .bannerSection {
    height: 500px;
    background-size: cover;
  }
  .bannerSection .overlay {
    width: 100%;
  }
  .bannerSection .ekit-wid-con {
    max-width: 100%;
    padding: 60px 0 15px;
  }
  .bannerSection .ekit-wid-con h3.section-subtitle {
    font-size: 14px;
    margin: 0 0 14px 0;
  }
  .bannerSection .ekit-wid-con h2.heading--title {
    font-size: 18px;
    margin: 0 0 15px 0;
  }
  .bannerSection .ekit-wid-con .heading__description p {
    font-size: 16px;
  }
  .bannerSection .lets-begin {
    margin: auto;
    max-width: 960px;
    margin: 0 15px;
  }
}
@media (max-width: 767px) {
  .myprofile.myprofile-frontend .outer-content .sidebar {
    padding: 0;
  }
  .site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 3px;
  }
  .bride-slider-section .top-heading h2 {
    font-size: 20px;
    font-weight: 500;
    color: #F09204;
    margin-bottom: 18px;
  }
  .bride-slider-section .top-heading P {
    font-size: 14px;
    color: #555;
    font-style: italic;
  }
  .bride-slider-section .slick-prev, .bride-slider-section .slick-next {
    width: 40px;
    height: 40px;
    background: #f09204 !important;
    padding: 12px;
    z-index: 99;
    top: 38%;
  }
  .bride-slider-section .slick-prev::before, .bride-slider-section .slick-next::before {
    content: unset;
  }
  .bride-slider-section .slick-prev img, .bride-slider-section .slick-next img {
    filter: invert(1);
  }
  .bride-slider-section .slick-next {
    right: -10px;
  }
  .bride-slider-section .slick-prev {
    left: -10px;
  }
}
.map-info {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding-left: 0;
}

.map-info .tagline {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #F09204;
  margin-bottom: 6px;
  display: block;
}

.map-info .map-heading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000000;
  position: relative;
}

.map-info .map-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #F09204; /* underline in theme color */
  margin-top: 6px;
  border-radius: 2px;
}

.map-info .map-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

.map {
  margin-bottom: 60px;
}

.wpcf7-form p label {
  width: 100%;
}
.wpcf7-form input {
  padding: 12px !important;
  border-radius: 5px !important;
  border-color: #f0f0f0 !important;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.wpcf7-form textarea {
  padding: 12px !important;
  border-radius: 5px !important;
  border-color: #f0f0f0 !important;
  width: 100%;
}
.wpcf7-form input.wpcf7-submit {
  width: 100%;
  border: none;
  background: #f09204;
  color: #fff;
  font-size: 14px;
  padding: 12px;
  margin-top: 12px;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 13px;
  font-weight: normal;
  display: block;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .frm_style_formidable-style.with_frm_style .form-field {
    margin-bottom: 10px;
  }
  .aboutUs .outerContainer {
    flex-direction: column-reverse;
  }
  .user-profile .basic-information-section .profile-photo .horoscope-gallery {
    display: flex;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
  }
  .user-profile .basic-information-section .info-about .basic-detail .card-text .card-title {
    font-size: 16px;
    font-weight: 500;
  }
  header + section {
    margin-top: 100px;
  }
  #masthead .site-container {
    justify-content: center;
  }
  #masthead .site-container .main-menu {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  .myprofile.myprofile-frontend .outer-content {
    display: block;
  }
  .myprofile.myprofile-frontend .outer-content .content {
    padding: 0;
    margin-top: 15px;
  }
  .top-footer {
    padding-top: 45px;
  }
  .top-footer h2 {
    font-size: 16px;
  }
  .site-footer {
    padding-left: 0;
  }
  .site-footer .wrap-menu {
    justify-content: start;
  }
  .footer-content {
    padding-left: 0;
  }
  .section.section-contact {
    display: block;
  }
  .section.section-contact .sidebar {
    width: 100%;
  }
  .section.section-contact .right-content {
    width: 100%;
  }
  .section.section-contact .sidebar .verified-box {
    margin-bottom: 15px;
    padding: 10px;
  }
  .user-profile {
    padding: 0 15px;
  }
  .user-profile .basic-information-section {
    display: block;
    padding: 0;
  }
  .user-profile .basic-information-section .profile-photo {
    width: 100%;
    display: block;
  }
  .user-profile .basic-information-section .profile-photo .single_image {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .user-profile .basic-information-section .profile-photo .single_image img {
    width: 100%;
    max-width: 100%;
  }
  .user-profile .basic-information-section .horoscope-gallery {
    margin-top: 12px;
    justify-content: start;
  }
  .user-profile .basic-information-section .info-about {
    width: 100%;
    margin-top: 15px;
  }
  .search_filter {
    padding: 15px;
  }
  .search_filter .age,
  .search_filter .height-range {
    flex-direction: column;
    align-items: stretch;
  }
  .search_filter .form-control {
    width: 100%;
  }
  .bannerSection {
    background-size: cover;
    background-position: center;
  }
  .bannerSection .ekit-wid-con {
    padding: 60px 0 15px;
  }
  .site-container {
    padding: 0 15px;
  }
  .site-logo img {
    max-width: 145px;
  }
  .main-menu .main-item {
    justify-content: flex-start;
  }
  .main-menu .main-item .nav-item > a {
    font-size: 14px;
    display: flex;
    gap: 3px;
  }
  .lets-begin {
    position: relative;
    bottom: -30px;
    margin: 0;
  }
  .lets-begin .form-row {
    flex-wrap: wrap;
  }
}
@media (max-width: 580px) {
  header + section {
    margin-top: 110px;
  }
  .site-title {
    font-size: 18px;
    font-weight: 400;
  }
  .search_filter .reset {
    position: absolute;
    right: 16px;
    top: 50px;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
  }
  .search_filter label {
    margin-top: 10px;
  }
  .bannerSection .site-container {
    display: block;
  }
  .openFilter .search_filter .form-group {
    margin-bottom: 0;
  }
  .openFilter .filterOverlay {
    content: "";
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    right: 0;
    left: auto;
    z-index: 9999999;
    width: calc(100% - 338px);
    height: 100%;
    top: 0;
    bottom: 0;
  }
  .closePopup {
    font-size: 14px;
    text-align: right;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .sticky-mobile {
    display: none;
  }
  .searchSubmit {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 9999999;
    max-width: 339px;
  }
  .searchSubmit .btn {
    margin: 0 !important;
    border-radius: 0;
    padding: 10px !important;
  }
  .sticky-button {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
  }
  .sticky-button .search {
    width: 100%;
    max-width: 100%;
    background: #f09204;
    color: white;
    text-align: center;
    padding: 10px;
    cursor: pointer;
  }
  .sticky-button .search p {
    margin: 0;
    font-size: 14px;
  }
  .sticky-mobile.open {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    z-index: 9999999;
    height: 100%;
    overflow-y: scroll;
    background-color: #fff;
  }
  .sticky-mobile.open .search_filter {
    max-width: 350px;
    border-radius: 0;
  }
  #search-form {
    padding-bottom: 100px;
  }
  #search-form .wrap-input {
    width: 100%;
    background: #fff;
  }
  .bannerSection .lets-begin {
    margin: 0;
  }
  .section-slider-top {
    padding-top: 250px;
  }
  .main-menu .main-item .nav-item > a {
    font-size: 14px;
    padding: 0 5px;
  }
  .main-menu .main-item .nav-item {
    margin-left: 0;
  }
  .main-menu .main-item .nav-item .help-icons svg {
    width: 23px;
    height: 23px;
  }
  .col-Mobile {
    padding-left: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */